From owner-svn-ports-branches@freebsd.org Sun Aug 13 16:35:05 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 82D8CDC8CF4; Sun, 13 Aug 2017 16:35:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D6C6752BC; Sun, 13 Aug 2017 16:35:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7DGZ4th056598; Sun, 13 Aug 2017 16:35:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7DGZ4pn056593; Sun, 13 Aug 2017 16:35:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708131635.v7DGZ4pn056593@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 13 Aug 2017 16:35:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r447898 - in branches/2017Q3/lang: python27 python33 python34 python35 X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in branches/2017Q3/lang: python27 python33 python34 python35 X-SVN-Commit-Revision: 447898 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Aug 2017 16:35:05 -0000 Author: sunpoet Date: Sun Aug 13 16:35:04 2017 New Revision: 447898 URL: https://svnweb.freebsd.org/changeset/ports/447898 Log: MFH: r447129 r447530 Add a code block for the qemu-user enabled cross build environment. When using this environment in poudriere, CC is not set to the default of /usr/bin/cc and a cross-compile toolchain is used. We need to hand edit this so that the run time configuration for python matches what the FreeBSD base system provides. PR: 208282 Submitted by: manu Approved by: portmgr (mat) Pointyhat to me. A stray '.' somehow made it past my testing. Do *not* bump portrevision as this only affects the packaging/stage of these ports on mips/armv6 or other cross compiled targets. PR: 221202 Reported by: antoine Approved by: ports-secteam (zi) Modified: branches/2017Q3/lang/python27/Makefile branches/2017Q3/lang/python33/Makefile branches/2017Q3/lang/python34/Makefile branches/2017Q3/lang/python35/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/lang/python27/Makefile ============================================================================== --- branches/2017Q3/lang/python27/Makefile Sun Aug 13 16:30:58 2017 (r447897) +++ branches/2017Q3/lang/python27/Makefile Sun Aug 13 16:35:04 2017 (r447898) @@ -2,7 +2,7 @@ PORTNAME= python27 PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} @@ -136,6 +136,17 @@ post-patch: post-install: for i in ${STAGEDIR}${PREFIX}/lib/python2.7/lib-dynload/*.so; do \ ${STRIP_CMD} $$i; done # Strip shared extensions +# This code block exists for the qemu-user enabled cross build environment. +# When using this environment in poudriere, CC is not set to the default +# of /usr/bin/cc and a cross-compile toolchain is used. We need to hand +# edit this so that the run time configuration for python matches what the +# FreeBSD base system provides. sbruno 02Aug2017 +.if ${CC} == /nxb-bin/usr/bin/cc + @${REINPLACE_CMD} -e 's=/nxb-bin==' \ + ${STAGEDIR}${PREFIX}/lib/python2.7/_sysconfigdata.py + @${REINPLACE_CMD} -e 's=/nxb-bin==' \ + ${STAGEDIR}${PREFIX}/lib/python2.7/config/Makefile +.endif ${INSTALL_DATA} ${WRKSRC}/Tools/gdb/libpython.py \ ${STAGEDIR}${PREFIX}/lib/libpython2.7.so.1-gdb.py Modified: branches/2017Q3/lang/python33/Makefile ============================================================================== --- branches/2017Q3/lang/python33/Makefile Sun Aug 13 16:30:58 2017 (r447897) +++ branches/2017Q3/lang/python33/Makefile Sun Aug 13 16:35:04 2017 (r447898) @@ -2,7 +2,7 @@ PORTNAME= python33 PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} @@ -128,6 +128,17 @@ post-install: .endif for i in ${STAGEDIR}${PREFIX}/lib/python3.3/lib-dynload/*.so; do \ ${STRIP_CMD} $$i; done # Strip shared extensions +# This code block exists for the qemu-user enabled cross build environment. +# When using this environment in poudriere, CC is not set to the default +# of /usr/bin/cc and a cross-compile toolchain is used. We need to hand +# edit this so that the run time configuration for python matches what the +# FreeBSD base system provides. sbruno 02Aug2017 +.if ${CC} == /nxb-bin/usr/bin/cc + @${REINPLACE_CMD} -e 's=/nxb-bin==' \ + ${STAGEDIR}${PREFIX}/lib/python3.3/_sysconfigdata.py + @${REINPLACE_CMD} -e 's=/nxb-bin==' \ + ${STAGEDIR}${PREFIX}/lib/python3.3/config-3.3m/Makefile +.endif ${INSTALL_DATA} ${WRKSRC}/Tools/gdb/libpython.py \ ${STAGEDIR}${PREFIX}/lib/libpython3.3${ABIFLAGS}.so.1-gdb.py Modified: branches/2017Q3/lang/python34/Makefile ============================================================================== --- branches/2017Q3/lang/python34/Makefile Sun Aug 13 16:30:58 2017 (r447897) +++ branches/2017Q3/lang/python34/Makefile Sun Aug 13 16:35:04 2017 (r447898) @@ -3,7 +3,7 @@ PORTNAME= python34 PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} @@ -133,6 +133,17 @@ post-install: .endif for i in ${STAGEDIR}${PREFIX}/lib/python3.4/lib-dynload/*.so; do \ ${STRIP_CMD} $$i; done # Strip shared extensions +# This code block exists for the qemu-user enabled cross build environment. +# When using this environment in poudriere, CC is not set to the default +# of /usr/bin/cc and a cross-compile toolchain is used. We need to hand +# edit this so that the run time configuration for python matches what the +# FreeBSD base system provides. sbruno 02Aug2017 +.if ${CC} == /nxb-bin/usr/bin/cc + @${REINPLACE_CMD} -e 's=/nxb-bin==' \ + ${STAGEDIR}${PREFIX}/lib/python3.4/_sysconfigdata.py + @${REINPLACE_CMD} -e 's=/nxb-bin==' \ + ${STAGEDIR}${PREFIX}/lib/python3.4/config-3.4m/Makefile +.endif ${INSTALL_DATA} ${WRKSRC}/Tools/gdb/libpython.py \ ${STAGEDIR}${PREFIX}/lib/libpython3.4${ABIFLAGS}.so.1-gdb.py Modified: branches/2017Q3/lang/python35/Makefile ============================================================================== --- branches/2017Q3/lang/python35/Makefile Sun Aug 13 16:30:58 2017 (r447897) +++ branches/2017Q3/lang/python35/Makefile Sun Aug 13 16:35:04 2017 (r447898) @@ -3,7 +3,7 @@ PORTNAME= python PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PYTHON_PORTVERSION} PKGNAMESUFFIX= ${PYTHON_SUFFIX} @@ -143,6 +143,17 @@ post-install: .endif for i in ${STAGEDIR}${PREFIX}/lib/python${PYTHON_VER}/lib-dynload/*.so; do \ ${STRIP_CMD} $$i; done # Strip shared extensions +# This code block exists for the qemu-user enabled cross build environment. +# When using this environment in poudriere, CC is not set to the default +# of /usr/bin/cc and a cross-compile toolchain is used. We need to hand +# edit this so that the run time configuration for python matches what the +# FreeBSD base system provides. sbruno 02Aug2017 +.if ${CC} == /nxb-bin/usr/bin/cc + @${REINPLACE_CMD} -e 's=/nxb-bin==' \ + ${STAGEDIR}${PREFIX}/lib/python3.5/_sysconfigdata.py + @${REINPLACE_CMD} -e 's=/nxb-bin==' \ + ${STAGEDIR}${PREFIX}/lib/python3.5/config-3.5m/Makefile +.endif ${INSTALL_DATA} ${WRKSRC}/Tools/gdb/libpython.py \ ${STAGEDIR}${PREFIX}/lib/libpython${PYTHON_VER}${ABIFLAGS}.so.1.0-gdb.py From owner-svn-ports-branches@freebsd.org Sun Aug 13 16:36:28 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA8B6DC8EA7; Sun, 13 Aug 2017 16:36:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 858EF75404; Sun, 13 Aug 2017 16:36:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7DGaRgQ056853; Sun, 13 Aug 2017 16:36:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7DGaRtS056848; Sun, 13 Aug 2017 16:36:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708131636.v7DGaRtS056848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 13 Aug 2017 16:36:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r447899 - branches/2017Q3/lang/python34 X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q3/lang/python34 X-SVN-Commit-Revision: 447899 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Aug 2017 16:36:28 -0000 Author: sunpoet Date: Sun Aug 13 16:36:27 2017 New Revision: 447899 URL: https://svnweb.freebsd.org/changeset/ports/447899 Log: MFH: r447650 Update to 3.4.7 Changes: https://docs.python.org/3.4/whatsnew/changelog.html Approved by: ports-secteam (zi) Modified: branches/2017Q3/lang/python34/Makefile branches/2017Q3/lang/python34/Makefile.version branches/2017Q3/lang/python34/distinfo branches/2017Q3/lang/python34/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/lang/python34/Makefile ============================================================================== --- branches/2017Q3/lang/python34/Makefile Sun Aug 13 16:35:04 2017 (r447898) +++ branches/2017Q3/lang/python34/Makefile Sun Aug 13 16:36:27 2017 (r447899) @@ -3,7 +3,6 @@ PORTNAME= python34 PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 5 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} @@ -40,6 +39,7 @@ SUB_FILES= pkg-message SUB_LIST= PYTHON_SUFFIX=${PORTVERSION:R:S/.//g} PLIST_SUB= ABI=${ABIFLAGS} \ + XYZDOT=${PYTHON_PORTVERSION} \ OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554 OPTIONS_DEFINE= DEBUG IPV6 LIBFFI NLS PYMALLOC THREADS TSC Modified: branches/2017Q3/lang/python34/Makefile.version ============================================================================== --- branches/2017Q3/lang/python34/Makefile.version Sun Aug 13 16:35:04 2017 (r447898) +++ branches/2017Q3/lang/python34/Makefile.version Sun Aug 13 16:36:27 2017 (r447899) @@ -1,4 +1,4 @@ # Mk/Uses/python.mk includes this file, don't remove it! # $FreeBSD$ -PYTHON_PORTVERSION= 3.4.6 +PYTHON_PORTVERSION= 3.4.7 Modified: branches/2017Q3/lang/python34/distinfo ============================================================================== --- branches/2017Q3/lang/python34/distinfo Sun Aug 13 16:35:04 2017 (r447898) +++ branches/2017Q3/lang/python34/distinfo Sun Aug 13 16:36:27 2017 (r447899) @@ -1,3 +1,3 @@ -TIMESTAMP = 1484899713 -SHA256 (python/Python-3.4.6.tar.xz) = f13428bbe6aa9e3b9b6499502dc488c26096349ed7a21f7a0c1db90911115f40 -SIZE (python/Python-3.4.6.tar.xz) = 14473592 +TIMESTAMP = 1502303602 +SHA256 (python/Python-3.4.7.tar.xz) = 8714cf2b56dd36922dec8fa184d4936e1001c22fb439798cb73dda069e129d1b +SIZE (python/Python-3.4.7.tar.xz) = 14511368 Modified: branches/2017Q3/lang/python34/pkg-plist ============================================================================== --- branches/2017Q3/lang/python34/pkg-plist Sun Aug 13 16:35:04 2017 (r447898) +++ branches/2017Q3/lang/python34/pkg-plist Sun Aug 13 16:36:27 2017 (r447899) @@ -1976,9 +1976,9 @@ lib/python3.4/lib-dynload/unicodedata.so %%NO_DEBUG%%lib/python3.4/lib-dynload/xxlimited.so lib/python3.4/lib-dynload/zlib.so lib/python3.4/lib2to3/Grammar.txt -lib/python3.4/lib2to3/Grammar3.4.6.final.0.pickle +lib/python3.4/lib2to3/Grammar%%XYZDOT%%.final.0.pickle lib/python3.4/lib2to3/PatternGrammar.txt -lib/python3.4/lib2to3/PatternGrammar3.4.6.final.0.pickle +lib/python3.4/lib2to3/PatternGrammar%%XYZDOT%%.final.0.pickle lib/python3.4/lib2to3/__init__.py lib/python3.4/lib2to3/__main__.py lib/python3.4/lib2to3/__pycache__/__init__.cpython-34.pyc From owner-svn-ports-branches@freebsd.org Sun Aug 13 16:38:33 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 874FCDC90CA; Sun, 13 Aug 2017 16:38:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4FCE875525; Sun, 13 Aug 2017 16:38:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7DGcWdQ057119; Sun, 13 Aug 2017 16:38:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7DGcWnd057115; Sun, 13 Aug 2017 16:38:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708131638.v7DGcWnd057115@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 13 Aug 2017 16:38:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r447900 - branches/2017Q3/lang/python35 X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q3/lang/python35 X-SVN-Commit-Revision: 447900 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Aug 2017 16:38:33 -0000 Author: sunpoet Date: Sun Aug 13 16:38:32 2017 New Revision: 447900 URL: https://svnweb.freebsd.org/changeset/ports/447900 Log: MFH: r447651 Update to 3.5.4 - Sort PLIST Changes: https://docs.python.org/3.5/whatsnew/changelog.html Approved by: ports-secteam (zi) Modified: branches/2017Q3/lang/python35/Makefile branches/2017Q3/lang/python35/Makefile.version branches/2017Q3/lang/python35/distinfo branches/2017Q3/lang/python35/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/lang/python35/Makefile ============================================================================== --- branches/2017Q3/lang/python35/Makefile Sun Aug 13 16:36:27 2017 (r447899) +++ branches/2017Q3/lang/python35/Makefile Sun Aug 13 16:38:32 2017 (r447900) @@ -3,7 +3,6 @@ PORTNAME= python PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 5 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PYTHON_PORTVERSION} PKGNAMESUFFIX= ${PYTHON_SUFFIX} Modified: branches/2017Q3/lang/python35/Makefile.version ============================================================================== --- branches/2017Q3/lang/python35/Makefile.version Sun Aug 13 16:36:27 2017 (r447899) +++ branches/2017Q3/lang/python35/Makefile.version Sun Aug 13 16:38:32 2017 (r447900) @@ -1,4 +1,4 @@ # Mk/Uses/python.mk includes this file, don't remove it! # $FreeBSD$ -PYTHON_PORTVERSION= 3.5.3 +PYTHON_PORTVERSION= 3.5.4 Modified: branches/2017Q3/lang/python35/distinfo ============================================================================== --- branches/2017Q3/lang/python35/distinfo Sun Aug 13 16:36:27 2017 (r447899) +++ branches/2017Q3/lang/python35/distinfo Sun Aug 13 16:38:32 2017 (r447900) @@ -1,3 +1,3 @@ -TIMESTAMP = 1484903147 -SHA256 (python/Python-3.5.3.tar.xz) = eefe2ad6575855423ab630f5b51a8ef6e5556f774584c06beab4926f930ddbb0 -SIZE (python/Python-3.5.3.tar.xz) = 15213396 +TIMESTAMP = 1502303619 +SHA256 (python/Python-3.5.4.tar.xz) = 94d93bfabb3b109f8a10365a325f920f9ec98c6e2380bf228f9700a14054c84c +SIZE (python/Python-3.5.4.tar.xz) = 15332320 Modified: branches/2017Q3/lang/python35/pkg-plist ============================================================================== --- branches/2017Q3/lang/python35/pkg-plist Sun Aug 13 16:36:27 2017 (r447899) +++ branches/2017Q3/lang/python35/pkg-plist Sun Aug 13 16:38:32 2017 (r447900) @@ -2503,12 +2503,12 @@ lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_textview.cpython-%%XY%%.opt-1.pyc lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_textview.cpython-%%XY%%.opt-2.pyc lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_textview.cpython-%%XY%%.pyc -lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_warning.cpython-%%XY%%.opt-1.pyc -lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_warning.cpython-%%XY%%.opt-2.pyc -lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_warning.cpython-%%XY%%.pyc lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_undodelegator.cpython-%%XY%%.opt-1.pyc lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_undodelegator.cpython-%%XY%%.opt-2.pyc lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_undodelegator.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_warning.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_warning.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_warning.cpython-%%XY%%.pyc lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_widgetredir.cpython-%%XY%%.opt-1.pyc lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_widgetredir.cpython-%%XY%%.opt-2.pyc lib/python%%XYDOT%%/idlelib/idle_test/__pycache__/test_widgetredir.cpython-%%XY%%.pyc @@ -3253,7 +3253,6 @@ lib/python%%XYDOT%%/tabnanny.py lib/python%%XYDOT%%/tarfile.py lib/python%%XYDOT%%/telnetlib.py lib/python%%XYDOT%%/tempfile.py -lib/python%%XYDOT%%/test/185test.db lib/python%%XYDOT%%/test/Sine-1000Hz-300ms.aif lib/python%%XYDOT%%/test/__init__.py lib/python%%XYDOT%%/test/__main__.py @@ -3272,6 +3271,9 @@ lib/python%%XYDOT%%/test/__pycache__/audiotests.cpytho lib/python%%XYDOT%%/test/__pycache__/autotest.cpython-%%XY%%.opt-1.pyc lib/python%%XYDOT%%/test/__pycache__/autotest.cpython-%%XY%%.opt-2.pyc lib/python%%XYDOT%%/test/__pycache__/autotest.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/__pycache__/bisect.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/__pycache__/bisect.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/__pycache__/bisect.cpython-%%XY%%.pyc lib/python%%XYDOT%%/test/__pycache__/bytecode_helper.cpython-%%XY%%.opt-1.pyc lib/python%%XYDOT%%/test/__pycache__/bytecode_helper.cpython-%%XY%%.opt-2.pyc lib/python%%XYDOT%%/test/__pycache__/bytecode_helper.cpython-%%XY%%.pyc @@ -3338,12 +3340,15 @@ lib/python%%XYDOT%%/test/__pycache__/memory_watchdog.c lib/python%%XYDOT%%/test/__pycache__/mock_socket.cpython-%%XY%%.opt-1.pyc lib/python%%XYDOT%%/test/__pycache__/mock_socket.cpython-%%XY%%.opt-2.pyc lib/python%%XYDOT%%/test/__pycache__/mock_socket.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/__pycache__/mod_generics_cache.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/__pycache__/mod_generics_cache.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/__pycache__/mod_generics_cache.cpython-%%XY%%.pyc lib/python%%XYDOT%%/test/__pycache__/mp_fork_bomb.cpython-%%XY%%.opt-1.pyc lib/python%%XYDOT%%/test/__pycache__/mp_fork_bomb.cpython-%%XY%%.opt-2.pyc lib/python%%XYDOT%%/test/__pycache__/mp_fork_bomb.cpython-%%XY%%.pyc -lib/python%%XYDOT%%/test/__pycache__/mp_preload.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/__pycache__/mp_preload.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/__pycache__/mp_preload.cpython-35.pyc +lib/python%%XYDOT%%/test/__pycache__/mp_preload.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/__pycache__/mp_preload.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/__pycache__/mp_preload.cpython-%%XY%%.pyc lib/python%%XYDOT%%/test/__pycache__/multibytecodec_support.cpython-%%XY%%.opt-1.pyc lib/python%%XYDOT%%/test/__pycache__/multibytecodec_support.cpython-%%XY%%.opt-2.pyc lib/python%%XYDOT%%/test/__pycache__/multibytecodec_support.cpython-%%XY%%.pyc @@ -4637,6 +4642,7 @@ lib/python%%XYDOT%%/test/badsyntax_future7.py lib/python%%XYDOT%%/test/badsyntax_future8.py lib/python%%XYDOT%%/test/badsyntax_future9.py lib/python%%XYDOT%%/test/badsyntax_pep3120.py +lib/python%%XYDOT%%/test/bisect.py lib/python%%XYDOT%%/test/bytecode_helper.py lib/python%%XYDOT%%/test/capath/0e4015b9.0 lib/python%%XYDOT%%/test/capath/4e1295a3.0 @@ -4886,6 +4892,7 @@ lib/python%%XYDOT%%/test/math_testcases.txt lib/python%%XYDOT%%/test/memory_watchdog.py lib/python%%XYDOT%%/test/mime.types lib/python%%XYDOT%%/test/mock_socket.py +lib/python%%XYDOT%%/test/mod_generics_cache.py lib/python%%XYDOT%%/test/mp_fork_bomb.py lib/python%%XYDOT%%/test/mp_preload.py lib/python%%XYDOT%%/test/multibytecodec_support.py @@ -5854,39 +5861,39 @@ lib/python%%XYDOT%%/test/test_tk.py lib/python%%XYDOT%%/test/test_tokenize.py lib/python%%XYDOT%%/test/test_tools/__init__.py lib/python%%XYDOT%%/test/test_tools/__main__.py -lib/python%%XYDOT%%/test/test_tools/__pycache__/__init__.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/__init__.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/__init__.cpython-35.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/__main__.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/__main__.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/__main__.cpython-35.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_fixcid.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_fixcid.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_fixcid.cpython-35.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_gprof2html.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_gprof2html.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_gprof2html.cpython-35.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_i18n.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_i18n.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_i18n.cpython-35.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_md5sum.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_md5sum.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_md5sum.cpython-35.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pdeps.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pdeps.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pdeps.cpython-35.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pindent.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pindent.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pindent.cpython-35.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_reindent.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_reindent.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_reindent.cpython-35.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_sundry.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_sundry.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_sundry.cpython-35.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_unparse.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_unparse.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_tools/__pycache__/test_unparse.cpython-35.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/__init__.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/__init__.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/__init__.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/__main__.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/__main__.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/__main__.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_fixcid.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_fixcid.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_fixcid.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_gprof2html.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_gprof2html.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_gprof2html.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_i18n.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_i18n.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_i18n.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_md5sum.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_md5sum.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_md5sum.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pdeps.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pdeps.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pdeps.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pindent.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pindent.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_pindent.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_reindent.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_reindent.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_reindent.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_sundry.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_sundry.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_sundry.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_unparse.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_unparse.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_tools/__pycache__/test_unparse.cpython-%%XY%%.pyc lib/python%%XYDOT%%/test/test_tools/test_fixcid.py lib/python%%XYDOT%%/test/test_tools/test_gprof2html.py lib/python%%XYDOT%%/test/test_tools/test_i18n.py @@ -5932,18 +5939,18 @@ lib/python%%XYDOT%%/test/test_wait3.py lib/python%%XYDOT%%/test/test_wait4.py lib/python%%XYDOT%%/test/test_warnings/__init__.py lib/python%%XYDOT%%/test/test_warnings/__main__.py -lib/python%%XYDOT%%/test/test_warnings/__pycache__/__init__.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_warnings/__pycache__/__init__.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_warnings/__pycache__/__init__.cpython-35.pyc -lib/python%%XYDOT%%/test/test_warnings/__pycache__/__main__.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_warnings/__pycache__/__main__.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_warnings/__pycache__/__main__.cpython-35.pyc -lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/import_warning.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/import_warning.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/import_warning.cpython-35.pyc -lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/stacklevel.cpython-35.opt-1.pyc -lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/stacklevel.cpython-35.opt-2.pyc -lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/stacklevel.cpython-35.pyc +lib/python%%XYDOT%%/test/test_warnings/__pycache__/__init__.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_warnings/__pycache__/__init__.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_warnings/__pycache__/__init__.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_warnings/__pycache__/__main__.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_warnings/__pycache__/__main__.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_warnings/__pycache__/__main__.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/import_warning.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/import_warning.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/import_warning.cpython-%%XY%%.pyc +lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/stacklevel.cpython-%%XY%%.opt-1.pyc +lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/stacklevel.cpython-%%XY%%.opt-2.pyc +lib/python%%XYDOT%%/test/test_warnings/data/__pycache__/stacklevel.cpython-%%XY%%.pyc lib/python%%XYDOT%%/test/test_warnings/data/import_warning.py lib/python%%XYDOT%%/test/test_warnings/data/stacklevel.py lib/python%%XYDOT%%/test/test_wave.py @@ -6406,7 +6413,7 @@ lib/python%%XYDOT%%/venv/__pycache__/__init__.cpython- lib/python%%XYDOT%%/venv/__pycache__/__main__.cpython-%%XY%%.opt-1.pyc lib/python%%XYDOT%%/venv/__pycache__/__main__.cpython-%%XY%%.opt-2.pyc lib/python%%XYDOT%%/venv/__pycache__/__main__.cpython-%%XY%%.pyc -lib/python%%XYDOT%%/venv/scripts/posix/activate +lib/python%%XYDOT%%/venv/scripts/common/activate lib/python%%XYDOT%%/venv/scripts/posix/activate.csh lib/python%%XYDOT%%/venv/scripts/posix/activate.fish lib/python%%XYDOT%%/warnings.py From owner-svn-ports-branches@freebsd.org Mon Aug 14 22:36:25 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B493FDC5315; Mon, 14 Aug 2017 22:36:25 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 740F071A3E; Mon, 14 Aug 2017 22:36:25 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7EMaO8o099411; Mon, 14 Aug 2017 22:36:24 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7EMaOEM099408; Mon, 14 Aug 2017 22:36:24 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708142236.v7EMaOEM099408@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 14 Aug 2017 22:36:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r447968 - branches/2017Q3/net/freeradius3 X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/net/freeradius3 X-SVN-Commit-Revision: 447968 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2017 22:36:25 -0000 Author: feld Date: Mon Aug 14 22:36:24 2017 New Revision: 447968 URL: https://svnweb.freebsd.org/changeset/ports/447968 Log: MFH: r446076 r447967 - Update to 3.0.15 net/freeradius3: Disable OpenSSL version checking FreeRadius developers include a feature enabled by default which checks your OpenSSL version and refuses to run if certain CVEs are detected. This is an interesting idea but it means it's possible to upgrade FreeRadius on a production server and suddently it won't run, especially if FreeBSD's base OpenSSL doesn't report a version number that can convince the software it is free from the specified CVEs. Currently FreeRadius refuses to run on FreeBSD 10.3-RELEASE because it thinks base system OpenSSL is not patched for CVE-2016-6304, but that was in fact patched by FreeBSD-10.3-RELEASE-p9. This feature is only useful if you are using vanilla upstream versions of OpenSSL which we are not. Approved by: portmgr (with hat) Modified: branches/2017Q3/net/freeradius3/Makefile branches/2017Q3/net/freeradius3/distinfo branches/2017Q3/net/freeradius3/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/freeradius3/Makefile ============================================================================== --- branches/2017Q3/net/freeradius3/Makefile Mon Aug 14 22:32:53 2017 (r447967) +++ branches/2017Q3/net/freeradius3/Makefile Mon Aug 14 22:36:24 2017 (r447968) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= freeradius -DISTVERSION= 3.0.14 +DISTVERSION= 3.0.15 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= ftp://ftp.freeradius.org/pub/freeradius/%SUBDIR%/ \ ftp://ftp.ntua.gr/pub/net/radius/freeradius/%SUBDIR%/ \ @@ -321,7 +322,8 @@ CONFIGURE_ARGS+=--with-logdir=${LOGDIR} \ --without-rlm_securid \ --without-rlm_cache_memcached \ --with-vmps \ - --with-collectdclient-lib-dir=/dev/null + --with-collectdclient-lib-dir=/dev/null \ + --disable-openssl-version-check .if ${ARCH} == amd64 CONFIGURE_ARGS+=--with-pic Modified: branches/2017Q3/net/freeradius3/distinfo ============================================================================== --- branches/2017Q3/net/freeradius3/distinfo Mon Aug 14 22:32:53 2017 (r447967) +++ branches/2017Q3/net/freeradius3/distinfo Mon Aug 14 22:36:24 2017 (r447968) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496324608 -SHA256 (freeradius-server-3.0.14.tar.bz2) = 2771f6ecd6c816ac4d52b66bb8ae6781ca20e1e4984c5804fc4e67de3a807c59 -SIZE (freeradius-server-3.0.14.tar.bz2) = 3037721 +TIMESTAMP = 1500299843 +SHA256 (freeradius-server-3.0.15.tar.bz2) = 23267d8505e7b2909f5bdbf3938ca077c1fe122290dc969304d4f3b594f7e3ba +SIZE (freeradius-server-3.0.15.tar.bz2) = 3038070 Modified: branches/2017Q3/net/freeradius3/pkg-plist ============================================================================== --- branches/2017Q3/net/freeradius3/pkg-plist Mon Aug 14 22:32:53 2017 (r447967) +++ branches/2017Q3/net/freeradius3/pkg-plist Mon Aug 14 22:36:24 2017 (r447968) @@ -133,9 +133,9 @@ include/freeradius/vqp.h %%LIBDIR%%/rlm_dynamic_clients.a %%LIBDIR%%/rlm_dynamic_clients.la %%LIBDIR%%/rlm_dynamic_clients.so -%%EXPM%%%%LIBDIR%%/rlm_idn.a -%%EXPM%%%%LIBDIR%%/rlm_idn.la -%%EXPM%%%%LIBDIR%%/rlm_idn.so +%%RLMIDN%%%%LIBDIR%%/rlm_idn.a +%%RLMIDN%%%%LIBDIR%%/rlm_idn.la +%%RLMIDN%%%%LIBDIR%%/rlm_idn.so %%LIBDIR%%/rlm_eap.a %%LIBDIR%%/rlm_eap.la %%LIBDIR%%/rlm_eap.so From owner-svn-ports-branches@freebsd.org Tue Aug 15 19:21:30 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2BB4ADC3113; Tue, 15 Aug 2017 19:21:30 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 06C5880230; Tue, 15 Aug 2017 19:21:29 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7FJLTMZ003190; Tue, 15 Aug 2017 19:21:29 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7FJLS0V003188; Tue, 15 Aug 2017 19:21:28 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201708151921.v7FJLS0V003188@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 15 Aug 2017 19:21:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448004 - in branches/2017Q3/net/wmwifi: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in branches/2017Q3/net/wmwifi: . files X-SVN-Commit-Revision: 448004 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2017 19:21:30 -0000 Author: tobik Date: Tue Aug 15 19:21:28 2017 New Revision: 448004 URL: https://svnweb.freebsd.org/changeset/ports/448004 Log: MFH: r448001 net/wmwifi: Fix runtime on amd64 Currently wmwifi doesn't start on amd64 and simply fails with wmwifi: No wireless interface found! The code assumes that sizeof(int) == sizeof(size_t) which isn't the case on amd64 (and other architectures) and all sysctl() calls will fail because of it. While here: - Fix a build failure when automake+autoconf are installed in the build environment. By patching configure.in the build wants to regenerate configure which doesn't work correctly: gmake[1]: Entering directory '/usr/ports/net/wmwifi/work/wmwifi-0.4-bsd' cd . && aclocal aclocal-1.15: warning: autoconf input should be named 'configure.ac', not 'configure.in' /usr/local/share/aclocal/gdk-pixbuf.m4:12: warning: underquoted definition of AM_PATH_GDK_PIXBUF /usr/local/share/aclocal/gdk-pixbuf.m4:12: run info Automake 'Extending aclocal' /usr/local/share/aclocal/gdk-pixbuf.m4:12: or see http://www.gnu.org/software/automake/manual/automake.html#Extending-aclocal cd . && automake --gnu Makefile automake-1.15: warning: autoconf input should be named 'configure.ac', not 'configure.in' configure.in:3: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: configure.in:3: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation configure.in:6: error: required file './compile' not found configure.in:6: 'automake --add-missing' can install 'compile' gmake[1]: *** [Makefile:82: Makefile.in] Error 1 gmake[1]: Leaving directory '/usr/ports/net/wmwifi/work/wmwifi-0.4-bsd' *** Error code 1 Remove files/patch-configure.in and pass CFLAGS through CONFIGURE_ENV instead. - Add LICENSE, LICENSE_FILE - Add missing dependency on libXext [1] https://forums.freebsd.org/threads/61981/ PR: 221531 Reported by: forester on the FreeBSD forums [1] Approved by: uqs (maintainer) Approved by: ports-secteam (blanket) Deleted: branches/2017Q3/net/wmwifi/files/patch-configure.in Modified: branches/2017Q3/net/wmwifi/Makefile branches/2017Q3/net/wmwifi/files/patch-wireless.c Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/wmwifi/Makefile ============================================================================== --- branches/2017Q3/net/wmwifi/Makefile Tue Aug 15 19:18:15 2017 (r448003) +++ branches/2017Q3/net/wmwifi/Makefile Tue Aug 15 19:21:28 2017 (r448004) @@ -4,7 +4,7 @@ PORTNAME= wmwifi PORTVERSION= 0.4 DISTVERSIONSUFFIX=-bsd -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MASTER_SITES= http://digitalssg.net/debian/ \ LOCAL/uqs @@ -12,11 +12,14 @@ MASTER_SITES= http://digitalssg.net/debian/ \ MAINTAINER= uqs@FreeBSD.org COMMENT= Dockapp displaying the signal strength of WiFi connection -GNU_CONFIGURE= yes -USE_XORG= x11 xpm -USES= gmake +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING -CPPFLAGS+= -I${LOCALBASE}/include +USES= gmake localbase +USE_XORG= x11 xext xpm + +CONFIGURE_ENV= X_CFLAGS="${CFLAGS}" +GNU_CONFIGURE= yes PLIST_FILES= bin/wmwifi Modified: branches/2017Q3/net/wmwifi/files/patch-wireless.c ============================================================================== --- branches/2017Q3/net/wmwifi/files/patch-wireless.c Tue Aug 15 19:18:15 2017 (r448003) +++ branches/2017Q3/net/wmwifi/files/patch-wireless.c Tue Aug 15 19:21:28 2017 (r448004) @@ -1,5 +1,5 @@ ---- src/wireless.c.orig 2004-03-09 20:39:17.000000000 +0100 -+++ src/wireless.c 2007-11-01 17:58:13.170763665 +0100 +--- src/wireless.c.orig 2004-03-09 19:39:17 UTC ++++ src/wireless.c @@ -25,7 +25,13 @@ #include #include @@ -14,7 +14,14 @@ #else #error "sorry, your OS is not supported yet" #endif -@@ -143,6 +149,7 @@ +@@ -138,11 +144,13 @@ int get_wlaniface(int old, int dir) + int i, max, step, found, index; + struct ifmibdata ifmd; + struct ifmediareq ifmr; +- int name[6], len, s; ++ int name[6], s; ++ size_t len; + char *iface[IFNAMSIZ]; max = get_max_ifs(); step = 0; @@ -22,7 +29,7 @@ if (old > max) old = max; /* just be sure to not be out of bounds */ -@@ -178,8 +185,8 @@ +@@ -178,8 +186,8 @@ int get_wlaniface(int old, int dir) len = sizeof(ifmd); sysctl(name, 6, &ifmd, &len, NULL, 0); @@ -33,7 +40,7 @@ continue; s = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); -@@ -193,9 +200,11 @@ +@@ -193,9 +201,11 @@ int get_wlaniface(int old, int dir) if (ioctl(s, SIOCGIFMEDIA, (caddr_t) &ifmr) < 0) { @@ -47,7 +54,7 @@ } close(s); /* we cannot monitor interfaces in hostap mode, so just -@@ -207,6 +216,10 @@ +@@ -207,12 +217,17 @@ int get_wlaniface(int old, int dir) found++; } } @@ -58,7 +65,21 @@ return index; } /* how many interfaces do we have? this includes non-wireless! */ -@@ -224,9 +237,18 @@ + int get_max_ifs(void) + { +- int count, len; ++ int count; ++ size_t len; + + len = sizeof(count); + sysctlbyname("net.link.generic.system.ifcount", &count, &len, NULL, 0); +@@ -220,13 +235,23 @@ int get_max_ifs(void) + } + int wifi_info(struct wifi *wfi) + { +- int name[6], len; /* interface name */ ++ int name[6]; /* interface name */ ++ size_t len; struct ifmibdata ifmd; struct ifreq ifr; /* interface stats */ @@ -77,7 +98,7 @@ /* lets find the current interface name */ name[0] = CTL_NET; name[1] = PF_LINK; -@@ -247,13 +269,38 @@ +@@ -247,13 +272,38 @@ int wifi_info(struct wifi *wfi) perror("socket"); exit(1); } @@ -117,7 +138,7 @@ strncpy(ifr.ifr_name, wfi->ifname, strlen(wfi->ifname)); wireq.wi_type = WI_RID_COMMS_QUALITY; wireq.wi_len = WI_MAX_DATALEN; -@@ -272,7 +319,7 @@ +@@ -272,7 +322,7 @@ int wifi_info(struct wifi *wfi) * wi_val[2] = noise */ wfi->link = (int) wireq.wi_val[1]; From owner-svn-ports-branches@freebsd.org Wed Aug 16 00:07:59 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8AD27DD6ED2; Wed, 16 Aug 2017 00:07:59 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51BD565AA2; Wed, 16 Aug 2017 00:07:59 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7G07w7Y021606; Wed, 16 Aug 2017 00:07:58 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7G07wWW021605; Wed, 16 Aug 2017 00:07:58 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708160007.v7G07wWW021605@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 16 Aug 2017 00:07:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448018 - branches/2017Q3/irc/weechat X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/irc/weechat X-SVN-Commit-Revision: 448018 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2017 00:07:59 -0000 Author: feld Date: Wed Aug 16 00:07:58 2017 New Revision: 448018 URL: https://svnweb.freebsd.org/changeset/ports/448018 Log: MFH: r447942 irc/weechat: Depend on libunwind for RUBY - Ruby on amd64/i386 uses libunwind causing weechat to link it as well Reported by: koobs Approved by: port-secteam (with hat) Modified: branches/2017Q3/irc/weechat/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/irc/weechat/Makefile ============================================================================== --- branches/2017Q3/irc/weechat/Makefile Tue Aug 15 23:43:24 2017 (r448017) +++ branches/2017Q3/irc/weechat/Makefile Wed Aug 16 00:07:58 2017 (r448018) @@ -97,6 +97,10 @@ CMAKE_ARGS+= -DENABLE_PYTHON3:BOOL=true \ -DPYTHON_LIBRARY:FILEPATH=${LOCALBASE}/lib/libpython${PYTHON_VER}m.so .endif +.if !empty(PORT_OPTIONS:MRUBY) && (${ARCH} == "amd64" || ${ARCH} == "i386") +LIB_DEPENDS+= libunwind.so:devel/libunwind +.endif + post-patch: @${REINPLACE_CMD} -e 's|$${LIBDIR}/../pkgconfig|$${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|' \ ${WRKSRC}/CMakeLists.txt From owner-svn-ports-branches@freebsd.org Thu Aug 17 05:05:16 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DAD3DCC433; Thu, 17 Aug 2017 05:05:16 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBC252B26; Thu, 17 Aug 2017 05:05:15 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7H55FZu032154; Thu, 17 Aug 2017 05:05:15 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7H55EVI032152; Thu, 17 Aug 2017 05:05:14 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201708170505.v7H55EVI032152@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Thu, 17 Aug 2017 05:05:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448079 - branches/2017Q3/www/dokuwiki X-SVN-Group: ports-branches X-SVN-Commit-Author: delphij X-SVN-Commit-Paths: branches/2017Q3/www/dokuwiki X-SVN-Commit-Revision: 448079 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 05:05:16 -0000 Author: delphij Date: Thu Aug 17 05:05:14 2017 New Revision: 448079 URL: https://svnweb.freebsd.org/changeset/ports/448079 Log: MFH: r448078 Update to 2017-02-19c "Frusterick Manners", fixes XSS vulnerability. Approved by: ports-secteam Modified: branches/2017Q3/www/dokuwiki/Makefile branches/2017Q3/www/dokuwiki/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/dokuwiki/Makefile ============================================================================== --- branches/2017Q3/www/dokuwiki/Makefile Thu Aug 17 05:04:16 2017 (r448078) +++ branches/2017Q3/www/dokuwiki/Makefile Thu Aug 17 05:05:14 2017 (r448079) @@ -12,7 +12,7 @@ COMMENT= Simple and easy to use wiki, no database requ LICENSE= GPLv2 -DIST_VER= ${PORTNAME}-2017-02-19b +DIST_VER= ${PORTNAME}-2017-02-19c USE_PHP= gd mbstring openssl pcre session xml zlib NO_ARCH= YES NO_BUILD= YES Modified: branches/2017Q3/www/dokuwiki/distinfo ============================================================================== --- branches/2017Q3/www/dokuwiki/distinfo Thu Aug 17 05:04:16 2017 (r448078) +++ branches/2017Q3/www/dokuwiki/distinfo Thu Aug 17 05:05:14 2017 (r448079) @@ -1,3 +1,3 @@ -TIMESTAMP = 1488956971 -SHA256 (dokuwiki-2017-02-19b.tgz) = 88a4d6c83283a1059e9765477667262f15d443f50e48f583c7dc5d55c2abcdb6 -SIZE (dokuwiki-2017-02-19b.tgz) = 3505444 +TIMESTAMP = 1502941963 +SHA256 (dokuwiki-2017-02-19c.tgz) = 5a51973020384d0dab3f2d22b4a1764cf7571c834ff32aed12c8af5c74fbc40f +SIZE (dokuwiki-2017-02-19c.tgz) = 3505474 From owner-svn-ports-branches@freebsd.org Thu Aug 17 12:50:59 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A12D0DE06E6; Thu, 17 Aug 2017 12:50:59 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7807F7057A; Thu, 17 Aug 2017 12:50:59 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HCow1s019804; Thu, 17 Aug 2017 12:50:58 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HCowA3019802; Thu, 17 Aug 2017 12:50:58 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708171250.v7HCowA3019802@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 17 Aug 2017 12:50:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448092 - in branches/2017Q3/textproc/py-sphinx: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in branches/2017Q3/textproc/py-sphinx: . files X-SVN-Commit-Revision: 448092 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 12:50:59 -0000 Author: feld Date: Thu Aug 17 12:50:58 2017 New Revision: 448092 URL: https://svnweb.freebsd.org/changeset/ports/448092 Log: MFH: r447275 Backport fix for issue #3212 PR: 221116 Submitted by: pgj Approved by: araujo (maintainer) Obtained from: https://github.com/sphinx-doc/sphinx/issues/3212 Approved by: ports-secteam (with hat) Added: branches/2017Q3/textproc/py-sphinx/files/patch-sphinx_writers_html.py - copied unchanged from r447275, head/textproc/py-sphinx/files/patch-sphinx_writers_html.py Modified: branches/2017Q3/textproc/py-sphinx/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/textproc/py-sphinx/Makefile ============================================================================== --- branches/2017Q3/textproc/py-sphinx/Makefile Thu Aug 17 12:29:52 2017 (r448091) +++ branches/2017Q3/textproc/py-sphinx/Makefile Thu Aug 17 12:50:58 2017 (r448092) @@ -3,7 +3,7 @@ PORTNAME= sphinx PORTVERSION= 1.4.8 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP Copied: branches/2017Q3/textproc/py-sphinx/files/patch-sphinx_writers_html.py (from r447275, head/textproc/py-sphinx/files/patch-sphinx_writers_html.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/textproc/py-sphinx/files/patch-sphinx_writers_html.py Thu Aug 17 12:50:58 2017 (r448092, copy of r447275, head/textproc/py-sphinx/files/patch-sphinx_writers_html.py) @@ -0,0 +1,27 @@ +--- sphinx/writers/html.py.orig 2016-10-01 15:14:37 UTC ++++ sphinx/writers/html.py +@@ -16,6 +16,7 @@ import copy + import warnings + + from six import string_types ++import docutils + from docutils import nodes + from docutils.writers.html4css1 import Writer, HTMLTranslator as BaseTranslator + +@@ -497,6 +498,16 @@ class HTMLTranslator(BaseTranslator): + if 'height' not in node: + node['height'] = str(size[1]) + BaseTranslator.visit_image(self, node) ++ ++ # overwritten ++ def depart_image(self, node): ++ if docutils.__version__ >= "0.13": ++ # since docutils-0.13, HTMLWriter does not push context data on visit_image() ++ if node['uri'].lower().endswith(('svg', 'svgz')): ++ self.body.append(self.context.pop()) ++ else: ++ # docutils-0.12 or below, HTML Writer always push context data on visit_image() ++ self.body.append(self.context.pop()) + + def visit_toctree(self, node): + # this only happens when formatting a toc from env.tocs -- in this From owner-svn-ports-branches@freebsd.org Thu Aug 17 13:04:13 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CFCCDE0F14; Thu, 17 Aug 2017 13:04:13 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0424570CFE; Thu, 17 Aug 2017 13:04:12 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HD4CIF027758; Thu, 17 Aug 2017 13:04:12 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HD4BGb027753; Thu, 17 Aug 2017 13:04:11 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708171304.v7HD4BGb027753@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 17 Aug 2017 13:04:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448093 - in branches/2017Q3/security: py-acme py-certbot X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in branches/2017Q3/security: py-acme py-certbot X-SVN-Commit-Revision: 448093 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 13:04:13 -0000 Author: feld Date: Thu Aug 17 13:04:11 2017 New Revision: 448093 URL: https://svnweb.freebsd.org/changeset/ports/448093 Log: MFH: r445423 r447458 security/py-{acme,certbot}: Update to 0.16.0 Common: - Update PORTVERSION and distinfo checksum (0.16.0) Changelog: https://github.com/certbot/certbot/blob/master/CHANGELOG.md#0160---2017-07-05 Reviewed by: koobs (maintainer, py-certbot) Approved by: koobs (maintainer, py-certbot) Differential Revision: https://reviews.freebsd.org/D11517 security/py-certbot: Relax Python version-spec, support Python 3.x certbot has supported Python 3 (3.3+) since the 0.14.0 release [1]. Update the USES=python: to match, allowing Python 3 builds. [2] Update acme (security/py-acme) RUN_DEPENDS entry to use PORTVERSION not PKGVERSION (that includes PORTEPOCH/PORTREVISION) which caused the dependency to be incorrectly reported as unsatisfied if either was defined. Further, since *_DEPENDS version-specifiers compare against installed package versions, only a version that includes PORTEPOCH and/or PORTREVISION is available, so use >= not ==. [3] While I'm here, enable 'concurrent' to automatically produce version-suffixed files. [1] https://github.com/certbot/certbot/issues/4507 PR: 220469 221043 [3] Submitted by: Kamigishi Rei [2] Reported by: amdmi3 [3] Approved by: ports-secteam (with hat) Modified: branches/2017Q3/security/py-acme/Makefile branches/2017Q3/security/py-acme/distinfo branches/2017Q3/security/py-certbot/Makefile branches/2017Q3/security/py-certbot/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/security/py-acme/Makefile ============================================================================== --- branches/2017Q3/security/py-acme/Makefile Thu Aug 17 12:50:58 2017 (r448092) +++ branches/2017Q3/security/py-acme/Makefile Thu Aug 17 13:04:11 2017 (r448093) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= acme -PORTVERSION= 0.15.0 -PORTREVISION= 1 +PORTVERSION= 0.16.0 PORTEPOCH= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP Modified: branches/2017Q3/security/py-acme/distinfo ============================================================================== --- branches/2017Q3/security/py-acme/distinfo Thu Aug 17 12:50:58 2017 (r448092) +++ branches/2017Q3/security/py-acme/distinfo Thu Aug 17 13:04:11 2017 (r448093) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498041540 -SHA256 (acme-0.15.0.tar.gz) = 9fadd63322a1eb95f58e6cda8ca2095c750e828ae470bc6e3925ef618c7cfc87 -SIZE (acme-0.15.0.tar.gz) = 93083 +TIMESTAMP = 1499421068 +SHA256 (acme-0.16.0.tar.gz) = 538b69134cc50bdcdcc081b844c85158509022c61d7abc1f44216beeb95de9cd +SIZE (acme-0.16.0.tar.gz) = 94118 Modified: branches/2017Q3/security/py-certbot/Makefile ============================================================================== --- branches/2017Q3/security/py-certbot/Makefile Thu Aug 17 12:50:58 2017 (r448092) +++ branches/2017Q3/security/py-certbot/Makefile Thu Aug 17 13:04:11 2017 (r448093) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= certbot -PORTVERSION= 0.15.0 +PORTVERSION= 0.16.0 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= security python @@ -15,7 +15,7 @@ COMMENT= Let's Encrypt client LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}acme==${PKGVERSION}:security/py-acme \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}acme>=${PORTVERSION}:security/py-acme \ ${PYTHON_PKGNAMEPREFIX}configargparse>=0.9.3:devel/py-configargparse \ ${PYTHON_PKGNAMEPREFIX}configobj>0:devel/py-configobj \ ${PYTHON_PKGNAMEPREFIX}cryptography>=1.2:security/py-cryptography \ @@ -29,8 +29,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}acme==${PKGVERSION ${PYTHON_PKGNAMEPREFIX}zope.interface>0:devel/py-zope.interface TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock -USES= python:-2.7 -USE_PYTHON= autoplist distutils +# Actually 2.7,3.3+ +USES= python +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes Modified: branches/2017Q3/security/py-certbot/distinfo ============================================================================== --- branches/2017Q3/security/py-certbot/distinfo Thu Aug 17 12:50:58 2017 (r448092) +++ branches/2017Q3/security/py-certbot/distinfo Thu Aug 17 13:04:11 2017 (r448093) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498041767 -SHA256 (certbot-0.15.0.tar.gz) = b8c4043b2b8df39660d4ce4a2a6eca590f98ece0e1b97eba53ab95f3bbac3beb -SIZE (certbot-0.15.0.tar.gz) = 268504 +TIMESTAMP = 1499421236 +SHA256 (certbot-0.16.0.tar.gz) = 795801fd6b06b32060e364ac045312e6b26c6272d5ca32878277e5a2afdee186 +SIZE (certbot-0.16.0.tar.gz) = 269600 From owner-svn-ports-branches@freebsd.org Thu Aug 17 13:15:27 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65212DE17A0; Thu, 17 Aug 2017 13:15:27 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B5A87152D; Thu, 17 Aug 2017 13:15:27 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HDFQva032160; Thu, 17 Aug 2017 13:15:26 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HDFQ6X032157; Thu, 17 Aug 2017 13:15:26 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708171315.v7HDFQ6X032157@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 17 Aug 2017 13:15:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448094 - branches/2017Q3/devel/git X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/devel/git X-SVN-Commit-Revision: 448094 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 13:15:27 -0000 Author: feld Date: Thu Aug 17 13:15:25 2017 New Revision: 448094 URL: https://svnweb.freebsd.org/changeset/ports/448094 Log: MFH: r445615 r446083 r447205 r447721 r447759 Update devel/git to 2.13.3 Sponsored by: Rubicon Communications, LLC (Netgate) - Add diff-highlight back to package when CONTRIB option is set - While here, remove unnecessary lines from pkg-plist - Bump PORTREVISION PR: 220804 Submitted by: martin@sugioarto.com Sponsored by: Rubicon Communications, LLC (Netgate) Update devel/git to 2.13.4 Update devel/git to 2.14.1 This version fixes a security issue: A "ssh://..." URL can result in a "ssh" command line with a hostname that begins with a dash "-", which would cause the "ssh" command to instead (mis)treat it as an option. This is now prevented by forbidding such a hostname (which will not be necessary in the real world). Sponsored by: Rubicon Communications, LLC (Netgate) Fix packaging WITH=HTMLDOCS. Pointy hat: garga Sponsored by: Absolight Approved by: ports-secteam (with hat) Modified: branches/2017Q3/devel/git/Makefile branches/2017Q3/devel/git/distinfo branches/2017Q3/devel/git/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/git/Makefile ============================================================================== --- branches/2017Q3/devel/git/Makefile Thu Aug 17 13:04:11 2017 (r448093) +++ branches/2017Q3/devel/git/Makefile Thu Aug 17 13:15:25 2017 (r448094) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= git -DISTVERSION= 2.13.2 +DISTVERSION= 2.14.1 CATEGORIES= devel MASTER_SITES= KERNEL_ORG/software/scm/git DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ @@ -42,7 +42,6 @@ SHEBANG_FILES= *.perl */*.perl */*/*.perl */*.pl */*/* contrib/remote-helpers/git-remote-bzr \ contrib/remote-helpers/git-remote-hg \ contrib/credential/netrc/git-credential-netrc \ - contrib/diff-highlight/diff-highlight \ contrib/buildsystems/generate contrib/contacts/git-contacts \ contrib/svn-fe/svnrdump_sim.py TEST_TARGET= test @@ -155,6 +154,10 @@ post-patch: .endfor @${REINPLACE_CMD} -e 's|share/man/man3|man/man3|' ${WRKSRC}/perl/Makefile.PL +post-patch-CONTRIB-on: + @${REINPLACE_CMD} -e "s,/usr/bin/perl,${PERL}," \ + ${WRKSRC}/contrib/diff-highlight/Makefile + post-patch-CVS-off: @${REINPLACE_CMD} -e '/git-cvsexportcommit.perl/d; \ /git-cvsimport.perl/d; \ @@ -179,6 +182,10 @@ post-patch-P4-off: post-build: @${FIND} ${WRKSRC} -name "*.bak" -delete .endif + +post-build-CONTRIB-on: + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC}/contrib/diff-highlight + ${RM} ${WRKSRC}/contrib/diff-highlight/shebang.perl post-install: (cd ${WRKDIR}/man1/ && ${COPYTREE_SHARE} . ${STAGEDIR}${MANPREFIX}/man/man1) Modified: branches/2017Q3/devel/git/distinfo ============================================================================== --- branches/2017Q3/devel/git/distinfo Thu Aug 17 13:04:11 2017 (r448093) +++ branches/2017Q3/devel/git/distinfo Thu Aug 17 13:15:25 2017 (r448094) @@ -1,7 +1,7 @@ -TIMESTAMP = 1498482405 -SHA256 (git-2.13.2.tar.xz) = 0d10ac3751466f81652b62cbda83cc8d8ffd014911462138e039f176e413dde5 -SIZE (git-2.13.2.tar.xz) = 4751380 -SHA256 (git-manpages-2.13.2.tar.xz) = 30e1e1313000eb81f0e348e5083758a33703941a60ab111057b46c3dad968b6e -SIZE (git-manpages-2.13.2.tar.xz) = 407684 -SHA256 (git-htmldocs-2.13.2.tar.xz) = 54f0d36d375e7f71441994e60c18b6e2cc43581d5827e806e0bddb6904e17dfc -SIZE (git-htmldocs-2.13.2.tar.xz) = 1109048 +TIMESTAMP = 1502396019 +SHA256 (git-2.14.1.tar.xz) = 6f724c6d0e9e13114ab35db6f67e1b2c1934b641e89366e6a0e37618231f2cc6 +SIZE (git-2.14.1.tar.xz) = 4791876 +SHA256 (git-manpages-2.14.1.tar.xz) = 7ebce1e0e862af1367e24f14765c7b67f08b63fb01b80949f55479c562d414f2 +SIZE (git-manpages-2.14.1.tar.xz) = 410400 +SHA256 (git-htmldocs-2.14.1.tar.xz) = 9c1970c7f87f37c8b3044e01e0500d84d8bc4eb4dfa5ca881c32c351f20769fb +SIZE (git-htmldocs-2.14.1.tar.xz) = 1115176 Modified: branches/2017Q3/devel/git/pkg-plist ============================================================================== --- branches/2017Q3/devel/git/pkg-plist Thu Aug 17 13:04:11 2017 (r448093) +++ branches/2017Q3/devel/git/pkg-plist Thu Aug 17 13:15:25 2017 (r448094) @@ -387,6 +387,7 @@ man/man7/giteveryday.7.gz man/man7/gitglossary.7.gz man/man7/gitnamespaces.7.gz man/man7/gitrevisions.7.gz +man/man7/gitsubmodules.7.gz man/man7/gittutorial-2.7.gz man/man7/gittutorial.7.gz man/man7/gitworkflows.7.gz @@ -626,16 +627,24 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.3.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.2.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.3.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.2.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.3.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.4.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.5.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.14.0.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.14.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.2.txt @@ -685,17 +694,20 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.5.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.6.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.5.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.6.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.4.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.5.txt %%HTMLDOCS%%%%DOCSDIR%%/blame-options.txt %%HTMLDOCS%%%%DOCSDIR%%/cmds-ancillaryinterrogators.txt %%HTMLDOCS%%%%DOCSDIR%%/cmds-ancillarymanipulators.txt @@ -1051,6 +1063,8 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/gitrepository-layout.txt %%HTMLDOCS%%%%DOCSDIR%%/gitrevisions.html %%HTMLDOCS%%%%DOCSDIR%%/gitrevisions.txt +%%HTMLDOCS%%%%DOCSDIR%%/gitsubmodules.html +%%HTMLDOCS%%%%DOCSDIR%%/gitsubmodules.txt %%HTMLDOCS%%%%DOCSDIR%%/gittutorial-2.html %%HTMLDOCS%%%%DOCSDIR%%/gittutorial-2.txt %%HTMLDOCS%%%%DOCSDIR%%/gittutorial.html @@ -1131,12 +1145,12 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/technical/api-gitattributes.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-grep.html %%HTMLDOCS%%%%DOCSDIR%%/technical/api-grep.txt -%%HTMLDOCS%%%%DOCSDIR%%/technical/api-hashmap.html -%%HTMLDOCS%%%%DOCSDIR%%/technical/api-hashmap.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-history-graph.html %%HTMLDOCS%%%%DOCSDIR%%/technical/api-history-graph.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-index-skel.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-index.html +%%HTMLDOCS%%%%DOCSDIR%%/technical/api-sub-process.html +%%HTMLDOCS%%%%DOCSDIR%%/technical/api-sub-process.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-index.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-merge.html %%HTMLDOCS%%%%DOCSDIR%%/technical/api-merge.txt @@ -1227,7 +1241,6 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/completion/git-completion.tcsh %%CONTRIB%%share/git-core/contrib/completion/git-completion.zsh %%CONTRIB%%share/git-core/contrib/completion/git-prompt.sh -@comment share/git-core/contrib/contacts/.gitignore %%CONTRIB%%share/git-core/contrib/contacts/Makefile %%CONTRIB%%share/git-core/contrib/contacts/git-contacts %%CONTRIB%%share/git-core/contrib/contacts/git-contacts.txt @@ -1248,8 +1261,9 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/credential/wincred/git-credential-wincred.c %%CONTRIB%%share/git-core/contrib/diff-highlight/Makefile %%CONTRIB%%share/git-core/contrib/diff-highlight/README +%%CONTRIB%%share/git-core/contrib/diff-highlight/DiffHighlight.pm +%%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight.perl %%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight -@comment share/git-core/contrib/diff-highlight/t/.gitignore %%CONTRIB%%share/git-core/contrib/diff-highlight/t/Makefile %%CONTRIB%%share/git-core/contrib/diff-highlight/t/t9400-diff-highlight.sh %%CONTRIB%%share/git-core/contrib/emacs/.gitignore From owner-svn-ports-branches@freebsd.org Thu Aug 17 13:16:33 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7EAB9DE18B8; Thu, 17 Aug 2017 13:16:33 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5425071671; Thu, 17 Aug 2017 13:16:33 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HDGWCl032400; Thu, 17 Aug 2017 13:16:32 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HDGWs7032397; Thu, 17 Aug 2017 13:16:32 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708171316.v7HDGWs7032397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 17 Aug 2017 13:16:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448095 - branches/2017Q3/www/axis2 X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/www/axis2 X-SVN-Commit-Revision: 448095 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 13:16:33 -0000 Author: feld Date: Thu Aug 17 13:16:31 2017 New Revision: 448095 URL: https://svnweb.freebsd.org/changeset/ports/448095 Log: MFH: r447729 www/axis2: Update to 1.7.6, Fixes security vulnerability - Add TOMCAT85 as new option Changes: http://axis.apache.org/axis2/java/core/release-notes/1.7.6.html Security: c1265e85-7c95-11e7-93af-005056925db4 Approved by: ports-secteam (with hat) Modified: branches/2017Q3/www/axis2/Makefile branches/2017Q3/www/axis2/distinfo branches/2017Q3/www/axis2/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/axis2/Makefile ============================================================================== --- branches/2017Q3/www/axis2/Makefile Thu Aug 17 13:15:25 2017 (r448094) +++ branches/2017Q3/www/axis2/Makefile Thu Aug 17 13:16:31 2017 (r448095) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= axis2 -PORTVERSION= 1.7.5 +PORTVERSION= 1.7.6 CATEGORIES= www java MASTER_SITES= APACHE/axis/${PORTNAME}/java/core/${PORTVERSION}/ DISTNAME= ${PORTNAME}-${PORTVERSION}-bin @@ -19,7 +19,7 @@ NO_BUILD= yes NO_ARCH= yes OPTIONS_SINGLE= AS -OPTIONS_SINGLE_AS= TOMCAT6 TOMCAT7 +OPTIONS_SINGLE_AS= TOMCAT6 TOMCAT7 TOMCAT85 OPTIONS_DEFAULT= TOMCAT6 OPTIONS_DEFINE= EXAMPLES @@ -29,6 +29,9 @@ TOMCAT6_RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www TOMCAT7_VARS= APPHOME=${LOCALBASE}/apache-tomcat-7.0 TOMCAT7_RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www/tomcat7 + +TOMCAT85_VARS= APPHOME=${LOCALBASE}/apache-tomcat-8.5 +TOMCAT85_RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www/tomcat85 USE_JAVA= yes JAVA_VERSION= 1.6+ Modified: branches/2017Q3/www/axis2/distinfo ============================================================================== --- branches/2017Q3/www/axis2/distinfo Thu Aug 17 13:15:25 2017 (r448094) +++ branches/2017Q3/www/axis2/distinfo Thu Aug 17 13:16:31 2017 (r448095) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495071325 -SHA256 (axis2-1.7.5-bin.zip) = 14fe5b267a5c2dee6d7ba7df3103d4764e9e5ff6ba49ed54b01ddacc397327d0 -SIZE (axis2-1.7.5-bin.zip) = 22755053 +TIMESTAMP = 1502238679 +SHA256 (axis2-1.7.6-bin.zip) = 2f9d7acfbe366930ef87c4dc5764cef2dda8464e467dcef5d4a8649e848405d5 +SIZE (axis2-1.7.6-bin.zip) = 22741359 Modified: branches/2017Q3/www/axis2/pkg-plist ============================================================================== --- branches/2017Q3/www/axis2/pkg-plist Thu Aug 17 13:15:25 2017 (r448094) +++ branches/2017Q3/www/axis2/pkg-plist Thu Aug 17 13:16:31 2017 (r448095) @@ -74,9 +74,9 @@ %%APPHOME%%/webapps/axis2/WEB-INF/lib/bcel-findbugs-6.0.jar %%APPHOME%%/webapps/axis2/WEB-INF/lib/commons-cli-1.2.jar %%APPHOME%%/webapps/axis2/WEB-INF/lib/commons-cli-LICENSE.txt -%%APPHOME%%/webapps/axis2/WEB-INF/lib/commons-codec-1.3.jar +%%APPHOME%%/webapps/axis2/WEB-INF/lib/commons-codec-1.2.jar %%APPHOME%%/webapps/axis2/WEB-INF/lib/commons-codec-LICENSE.txt -%%APPHOME%%/webapps/axis2/WEB-INF/lib/commons-fileupload-1.3.1.jar +%%APPHOME%%/webapps/axis2/WEB-INF/lib/commons-fileupload-1.3.3.jar %%APPHOME%%/webapps/axis2/WEB-INF/lib/commons-fileupload-LICENSE.txt %%APPHOME%%/webapps/axis2/WEB-INF/lib/commons-httpclient-3.1.jar %%APPHOME%%/webapps/axis2/WEB-INF/lib/commons-httpclient-LICENSE.txt From owner-svn-ports-branches@freebsd.org Thu Aug 17 13:21:18 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A4DA6DE1B75; Thu, 17 Aug 2017 13:21:18 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C47671ABC; Thu, 17 Aug 2017 13:21:18 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HDLH05035769; Thu, 17 Aug 2017 13:21:17 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HDLHjq035767; Thu, 17 Aug 2017 13:21:17 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708171321.v7HDLHjq035767@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 17 Aug 2017 13:21:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448096 - branches/2017Q3/databases/mariadb100-server X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/databases/mariadb100-server X-SVN-Commit-Revision: 448096 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 13:21:18 -0000 Author: feld Date: Thu Aug 17 13:21:17 2017 New Revision: 448096 URL: https://svnweb.freebsd.org/changeset/ports/448096 Log: MFH: r447811 databases/mariadb100-server: Security update to 10.0.32 - Update to security 10.0.32 Security: cda2f3c2-6c8b-11e7-867f-b499baebfeaf Approved by: ports-secteam (with hat) Modified: branches/2017Q3/databases/mariadb100-server/Makefile branches/2017Q3/databases/mariadb100-server/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/databases/mariadb100-server/Makefile ============================================================================== --- branches/2017Q3/databases/mariadb100-server/Makefile Thu Aug 17 13:16:31 2017 (r448095) +++ branches/2017Q3/databases/mariadb100-server/Makefile Thu Aug 17 13:21:17 2017 (r448096) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 10.0.31 -PORTREVISION?= 1 +PORTVERSION= 10.0.32 +PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \ http://mirrors.supportex.net/${SITESDIR}/ \ Modified: branches/2017Q3/databases/mariadb100-server/distinfo ============================================================================== --- branches/2017Q3/databases/mariadb100-server/distinfo Thu Aug 17 13:16:31 2017 (r448095) +++ branches/2017Q3/databases/mariadb100-server/distinfo Thu Aug 17 13:21:17 2017 (r448096) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495565124 -SHA256 (mariadb-10.0.31.tar.gz) = 371f2dae0b9e1a92939fba1efca77ac83ba15b6b6dcfd389ca5cbf79eb8b842a -SIZE (mariadb-10.0.31.tar.gz) = 63461177 +TIMESTAMP = 1502136321 +SHA256 (mariadb-10.0.32.tar.gz) = f7a8d9ba88b01d426f5d69e5044e505e444a5ce73e22c9c50913dade43725936 +SIZE (mariadb-10.0.32.tar.gz) = 63567828 From owner-svn-ports-branches@freebsd.org Thu Aug 17 13:24:13 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E047DE1E91; Thu, 17 Aug 2017 13:24:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBC8171D6C; Thu, 17 Aug 2017 13:24:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HDOCvI036704; Thu, 17 Aug 2017 13:24:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HDOCUE036703; Thu, 17 Aug 2017 13:24:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708171324.v7HDOCUE036703@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 17 Aug 2017 13:24:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448097 - branches/2017Q3/databases/py-sqlalchemy11 X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q3/databases/py-sqlalchemy11 X-SVN-Commit-Revision: 448097 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 13:24:13 -0000 Author: sunpoet Date: Thu Aug 17 13:24:11 2017 New Revision: 448097 URL: https://svnweb.freebsd.org/changeset/ports/448097 Log: MFH: r447709 Update RUN_DEPENDS of MSSQL option - Bump PORTREVISION for dependency change PR: 221381 Submitted by: David Wahlund Approved by: ports-secteam (feld) Modified: branches/2017Q3/databases/py-sqlalchemy11/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/databases/py-sqlalchemy11/Makefile ============================================================================== --- branches/2017Q3/databases/py-sqlalchemy11/Makefile Thu Aug 17 13:21:17 2017 (r448096) +++ branches/2017Q3/databases/py-sqlalchemy11/Makefile Thu Aug 17 13:24:11 2017 (r448097) @@ -2,6 +2,7 @@ PORTNAME= sqlalchemy PORTVERSION= 1.1.11 +PORTREVISION= 1 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -31,7 +32,7 @@ USES= python PORTDOCS= * PORTEXAMPLES= * -MSSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mssql>=0:databases/py-mssql +MSSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mssql>=0:databases/py-pymssql MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pymysql>=0:databases/py-pymysql PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>=2.5.0:databases/py-psycopg2 SQLITE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3 From owner-svn-ports-branches@freebsd.org Thu Aug 17 13:53:15 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C79BADE3170; Thu, 17 Aug 2017 13:53:15 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9133D72F9B; Thu, 17 Aug 2017 13:53:15 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HDrESU049259; Thu, 17 Aug 2017 13:53:14 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HDrEeA049257; Thu, 17 Aug 2017 13:53:14 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201708171353.v7HDrEeA049257@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 17 Aug 2017 13:53:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448100 - branches/2017Q3/databases/tcl-sqlite3 X-SVN-Group: ports-branches X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: branches/2017Q3/databases/tcl-sqlite3 X-SVN-Commit-Revision: 448100 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 13:53:15 -0000 Author: madpilot Date: Thu Aug 17 13:53:14 2017 New Revision: 448100 URL: https://svnweb.freebsd.org/changeset/ports/448100 Log: MFH: r447817 Update databases/tcl-sqlite3 to 3.20.0 PR: 221368 Submitted by: me Approved by: Pavel Volkov (maintainer) Approved by: ports-secteam (feld) Modified: branches/2017Q3/databases/tcl-sqlite3/Makefile branches/2017Q3/databases/tcl-sqlite3/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/databases/tcl-sqlite3/Makefile ============================================================================== --- branches/2017Q3/databases/tcl-sqlite3/Makefile Thu Aug 17 13:44:33 2017 (r448099) +++ branches/2017Q3/databases/tcl-sqlite3/Makefile Thu Aug 17 13:53:14 2017 (r448100) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sqlite3 -PORTVERSION= 3.19.3 +PORTVERSION= 3.20.0 CATEGORIES= databases tcl MASTER_SITES= https://www.sqlite.org/2017/ http://www2.sqlite.org/2017/ http://www3.sqlite.org/2017/ PKGNAMEPREFIX= tcl- Modified: branches/2017Q3/databases/tcl-sqlite3/distinfo ============================================================================== --- branches/2017Q3/databases/tcl-sqlite3/distinfo Thu Aug 17 13:44:33 2017 (r448099) +++ branches/2017Q3/databases/tcl-sqlite3/distinfo Thu Aug 17 13:53:14 2017 (r448100) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497080522 -SHA256 (sqlite-autoconf-3190300.tar.gz) = 06129c03dced9f87733a8cba408871bd60673b8f93b920ba8d815efab0a06301 -SIZE (sqlite-autoconf-3190300.tar.gz) = 2542682 +TIMESTAMP = 1502286131 +SHA256 (sqlite-autoconf-3200000.tar.gz) = 3814c6f629ff93968b2b37a70497cfe98b366bf587a2261a56a5f750af6ae6a0 +SIZE (sqlite-autoconf-3200000.tar.gz) = 2565548 From owner-svn-ports-branches@freebsd.org Thu Aug 17 14:40:44 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E141DE4F6C; Thu, 17 Aug 2017 14:40:44 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9ADB749B9; Thu, 17 Aug 2017 14:40:43 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HEeho9066716; Thu, 17 Aug 2017 14:40:43 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HEegui066714; Thu, 17 Aug 2017 14:40:42 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201708171440.v7HEegui066714@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Thu, 17 Aug 2017 14:40:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448107 - branches/2017Q3/devel/gcc-arm-embedded X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: branches/2017Q3/devel/gcc-arm-embedded X-SVN-Commit-Revision: 448107 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 14:40:44 -0000 Author: tz Date: Thu Aug 17 14:40:42 2017 New Revision: 448107 URL: https://svnweb.freebsd.org/changeset/ports/448107 Log: MFH: r447629 devel/gcc-arm-embedded: Remove unnecessary LIB_DEPENDS on libelf Also: - added missing plist entries - add missing gettext-runtime to USES - corrected minor spelling mistake PR: 220782 Submitted by: Jonathan Chen Approved by: portmgr (maintainer timeout, 2 weeks) Approved by: ports-secteam (feld) Modified: branches/2017Q3/devel/gcc-arm-embedded/Makefile branches/2017Q3/devel/gcc-arm-embedded/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/gcc-arm-embedded/Makefile ============================================================================== --- branches/2017Q3/devel/gcc-arm-embedded/Makefile Thu Aug 17 14:37:18 2017 (r448106) +++ branches/2017Q3/devel/gcc-arm-embedded/Makefile Thu Aug 17 14:40:42 2017 (r448107) @@ -2,7 +2,7 @@ PORTNAME= gcc-arm-embedded PORTVERSION= 6.3.20170223 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://developer.arm.com/-/media/Files/downloads/gnu-rm/6_1-2017q1/ DISTNAME= ${ORIGINAL_PACKAGE_NAME}-src @@ -20,7 +20,7 @@ OPTIONS_DEFAULT=PYGDB PURE_DESC= Use all libraries from bundle, do not depend on anything HTML_DESC= Install HTML documentation PDF_DESC= Install PDF documentation (requires TeX, it is huge) -PYGDB_DESC= Build and install pyhon-enabled gdb in addition to standard one +PYGDB_DESC= Build and install python-enabled gdb in addition to standard one PURE_LIB_DEPENDS_OFF= \ libexpat.so:textproc/expat2 \ @@ -40,7 +40,13 @@ NOT_FOR_ARCHS= aarch64 arm armeb armv6 \ mips mips64 mips64el mipsel mipsn32 NOT_FOR_ARCHS_REASON= Very slow to build on emulator -USES= bison compiler cpe gmake iconv makeinfo tar:bzip2 +LIB_DEPENDS= libexpat.so:textproc/expat2 \ + libgmp.so:math/gmp \ + libmpfr.so:math/mpfr \ + libmpc.so:math/mpc \ + libisl.so:devel/isl + +USES= bison compiler cpe gmake gettext-runtime iconv makeinfo tar:bzip2 GNU_CONFIGURE= yes Modified: branches/2017Q3/devel/gcc-arm-embedded/pkg-plist ============================================================================== --- branches/2017Q3/devel/gcc-arm-embedded/pkg-plist Thu Aug 17 14:37:18 2017 (r448106) +++ branches/2017Q3/devel/gcc-arm-embedded/pkg-plist Thu Aug 17 14:40:42 2017 (r448107) @@ -2639,6 +2639,8 @@ gcc-arm-embedded-%%FULL_VERSION%%/share/gcc-%%TARGET%% gcc-arm-embedded-%%FULL_VERSION%%/share/gcc-%%TARGET%%/libstdcxx/v6/__init__.py gcc-arm-embedded-%%FULL_VERSION%%/share/gcc-%%TARGET%%/libstdcxx/v6/printers.py gcc-arm-embedded-%%FULL_VERSION%%/share/gcc-%%TARGET%%/libstdcxx/v6/xmethods.py +%%PYGDB%%%%PORTDOCS%%%%DOCSDIR%%/man/man1/%%TARGET%%-gcov-dump.1.gz +%%PYGDB%%%%PORTDOCS%%%%DOCSDIR%%/man/man1/%%TARGET%%-gcov-tool.1.gz %%PYGDB%%%%PORTDOCS%%%%DOCSDIR%%/man/man1/%%TARGET%%-gdb.1-py.gz %%PYGDB%%%%PORTDOCS%%%%DOCSDIR%%/man/man1/%%TARGET%%-gdbserver.1-py.gz %%PYGDB%%%%PORTDOCS%%%%DOCSDIR%%/man/man5/%%TARGET%%-gdbinit.5-py.gz From owner-svn-ports-branches@freebsd.org Thu Aug 17 15:30:55 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A62CDB637A; Thu, 17 Aug 2017 15:30:55 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5AA27741B; Thu, 17 Aug 2017 15:30:54 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HFUrNA092477; Thu, 17 Aug 2017 15:30:53 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HFUri5092474; Thu, 17 Aug 2017 15:30:53 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708171530.v7HFUri5092474@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 17 Aug 2017 15:30:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448129 - branches/2017Q3/devel/mercurial X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/devel/mercurial X-SVN-Commit-Revision: 448129 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 15:30:55 -0000 Author: feld Date: Thu Aug 17 15:30:53 2017 New Revision: 448129 URL: https://svnweb.freebsd.org/changeset/ports/448129 Log: MFH: r445182 r447854 Update to 4.2.2 Changes: https://www.mercurial-scm.org/wiki/WhatsNew Update to 4.3.1 - Strip shared library - Use PORTDOCS Changes: https://www.mercurial-scm.org/wiki/WhatsNew Security: 1d33cdee-7f6b-11e7-a9b5-3debb10a6871 Approved by: ports-secteam (with hat) Modified: branches/2017Q3/devel/mercurial/Makefile branches/2017Q3/devel/mercurial/distinfo branches/2017Q3/devel/mercurial/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/mercurial/Makefile ============================================================================== --- branches/2017Q3/devel/mercurial/Makefile Thu Aug 17 15:05:29 2017 (r448128) +++ branches/2017Q3/devel/mercurial/Makefile Thu Aug 17 15:30:53 2017 (r448129) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mercurial -PORTVERSION= 4.2.1 +PORTVERSION= 4.3.1 CATEGORIES= devel python MASTER_SITES= https://www.mercurial-scm.org/release/ @@ -52,14 +52,12 @@ CONTRIB_FILES= bash_completion \ vim/hgtest.vim \ vim/patchreview.txt \ vim/patchreview.vim -DOCS= CONTRIBUTORS README +PORTDOCS= CONTRIBUTORS README post-install: ${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${STAGEDIR}${PREFIX}/man/man1/ ${INSTALL_MAN} ${WRKSRC}/doc/*.5 ${STAGEDIR}${PREFIX}/man/man5/ - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/*.so - ${STRIP_CMD} \ - ${STAGEDIR}${PYTHON_SITELIBDIR}/hgext/fsmonitor/pywatchman/*.so + ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/ -name '*.so' -exec ${STRIP_CMD} {} + post-install-DATA-on: .for d in hgsh vim @@ -74,6 +72,6 @@ post-install-DATA-on: post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include Modified: branches/2017Q3/devel/mercurial/distinfo ============================================================================== --- branches/2017Q3/devel/mercurial/distinfo Thu Aug 17 15:05:29 2017 (r448128) +++ branches/2017Q3/devel/mercurial/distinfo Thu Aug 17 15:30:53 2017 (r448129) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496638165 -SHA256 (mercurial-4.2.1.tar.gz) = d7d5572f5aa0797fbf2168440eaa51149df88645fe37af8b15fa660d9a8158a0 -SIZE (mercurial-4.2.1.tar.gz) = 5317692 +TIMESTAMP = 1502528542 +SHA256 (mercurial-4.3.1.tar.gz) = 2b12f02e3a452adff4ec9cf007017bab0cadb3f37eaf12f4b25a662df73618a2 +SIZE (mercurial-4.3.1.tar.gz) = 5475042 Modified: branches/2017Q3/devel/mercurial/pkg-plist ============================================================================== --- branches/2017Q3/devel/mercurial/pkg-plist Thu Aug 17 15:05:29 2017 (r448128) +++ branches/2017Q3/devel/mercurial/pkg-plist Thu Aug 17 15:30:53 2017 (r448129) @@ -1,10 +1,22 @@ bin/hg +%%PYTHON_SITELIBDIR%%/hgdemandimport/__init__.py +%%PYTHON_SITELIBDIR%%/hgdemandimport/__init__.pyc +%%PYTHON_SITELIBDIR%%/hgdemandimport/__init__.pyo +%%PYTHON_SITELIBDIR%%/hgdemandimport/demandimportpy2.py +%%PYTHON_SITELIBDIR%%/hgdemandimport/demandimportpy2.pyc +%%PYTHON_SITELIBDIR%%/hgdemandimport/demandimportpy2.pyo +%%PYTHON_SITELIBDIR%%/hgdemandimport/demandimportpy3.py +%%PYTHON_SITELIBDIR%%/hgdemandimport/demandimportpy3.pyc +%%PYTHON_SITELIBDIR%%/hgdemandimport/demandimportpy3.pyo %%PYTHON_SITELIBDIR%%/hgext/__init__.py %%PYTHON_SITELIBDIR%%/hgext/__init__.pyc %%PYTHON_SITELIBDIR%%/hgext/__init__.pyo %%PYTHON_SITELIBDIR%%/hgext/acl.py %%PYTHON_SITELIBDIR%%/hgext/acl.pyc %%PYTHON_SITELIBDIR%%/hgext/acl.pyo +%%PYTHON_SITELIBDIR%%/hgext/amend.py +%%PYTHON_SITELIBDIR%%/hgext/amend.pyc +%%PYTHON_SITELIBDIR%%/hgext/amend.pyo %%PYTHON_SITELIBDIR%%/hgext/automv.py %%PYTHON_SITELIBDIR%%/hgext/automv.pyc %%PYTHON_SITELIBDIR%%/hgext/automv.pyo @@ -26,9 +38,9 @@ bin/hg %%PYTHON_SITELIBDIR%%/hgext/clonebundles.py %%PYTHON_SITELIBDIR%%/hgext/clonebundles.pyc %%PYTHON_SITELIBDIR%%/hgext/clonebundles.pyo -%%PYTHON_SITELIBDIR%%/hgext/color.py -%%PYTHON_SITELIBDIR%%/hgext/color.pyc -%%PYTHON_SITELIBDIR%%/hgext/color.pyo +%%PYTHON_SITELIBDIR%%/hgext/commitextras.py +%%PYTHON_SITELIBDIR%%/hgext/commitextras.pyc +%%PYTHON_SITELIBDIR%%/hgext/commitextras.pyo %%PYTHON_SITELIBDIR%%/hgext/convert/__init__.py %%PYTHON_SITELIBDIR%%/hgext/convert/__init__.pyc %%PYTHON_SITELIBDIR%%/hgext/convert/__init__.pyo @@ -198,6 +210,9 @@ bin/hg %%PYTHON_SITELIBDIR%%/hgext/record.py %%PYTHON_SITELIBDIR%%/hgext/record.pyc %%PYTHON_SITELIBDIR%%/hgext/record.pyo +%%PYTHON_SITELIBDIR%%/hgext/releasenotes.py +%%PYTHON_SITELIBDIR%%/hgext/releasenotes.pyc +%%PYTHON_SITELIBDIR%%/hgext/releasenotes.pyo %%PYTHON_SITELIBDIR%%/hgext/relink.py %%PYTHON_SITELIBDIR%%/hgext/relink.pyc %%PYTHON_SITELIBDIR%%/hgext/relink.pyo @@ -213,6 +228,9 @@ bin/hg %%PYTHON_SITELIBDIR%%/hgext/show.py %%PYTHON_SITELIBDIR%%/hgext/show.pyc %%PYTHON_SITELIBDIR%%/hgext/show.pyo +%%PYTHON_SITELIBDIR%%/hgext/sparse.py +%%PYTHON_SITELIBDIR%%/hgext/sparse.pyc +%%PYTHON_SITELIBDIR%%/hgext/sparse.pyo %%PYTHON_SITELIBDIR%%/hgext/strip.py %%PYTHON_SITELIBDIR%%/hgext/strip.pyc %%PYTHON_SITELIBDIR%%/hgext/strip.pyo @@ -249,8 +267,6 @@ bin/hg %%PYTHON_SITELIBDIR%%/mercurial/archival.py %%PYTHON_SITELIBDIR%%/mercurial/archival.pyc %%PYTHON_SITELIBDIR%%/mercurial/archival.pyo -%%PYTHON_SITELIBDIR%%/mercurial/base85.so -%%PYTHON_SITELIBDIR%%/mercurial/bdiff.so %%PYTHON_SITELIBDIR%%/mercurial/bookmarks.py %%PYTHON_SITELIBDIR%%/mercurial/bookmarks.pyc %%PYTHON_SITELIBDIR%%/mercurial/bookmarks.pyo @@ -266,6 +282,45 @@ bin/hg %%PYTHON_SITELIBDIR%%/mercurial/byterange.py %%PYTHON_SITELIBDIR%%/mercurial/byterange.pyc %%PYTHON_SITELIBDIR%%/mercurial/byterange.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cext/__init__.py +%%PYTHON_SITELIBDIR%%/mercurial/cext/__init__.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cext/__init__.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cext/base85.so +%%PYTHON_SITELIBDIR%%/mercurial/cext/bdiff.so +%%PYTHON_SITELIBDIR%%/mercurial/cext/diffhelpers.so +%%PYTHON_SITELIBDIR%%/mercurial/cext/mpatch.so +%%PYTHON_SITELIBDIR%%/mercurial/cext/osutil.so +%%PYTHON_SITELIBDIR%%/mercurial/cext/parsers.so +%%PYTHON_SITELIBDIR%%/mercurial/cffi/__init__.py +%%PYTHON_SITELIBDIR%%/mercurial/cffi/__init__.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cffi/__init__.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cffi/base85.py +%%PYTHON_SITELIBDIR%%/mercurial/cffi/base85.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cffi/base85.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cffi/bdiff.py +%%PYTHON_SITELIBDIR%%/mercurial/cffi/bdiff.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cffi/bdiff.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cffi/bdiffbuild.py +%%PYTHON_SITELIBDIR%%/mercurial/cffi/bdiffbuild.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cffi/bdiffbuild.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cffi/diffhelpers.py +%%PYTHON_SITELIBDIR%%/mercurial/cffi/diffhelpers.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cffi/diffhelpers.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cffi/mpatch.py +%%PYTHON_SITELIBDIR%%/mercurial/cffi/mpatch.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cffi/mpatch.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cffi/mpatchbuild.py +%%PYTHON_SITELIBDIR%%/mercurial/cffi/mpatchbuild.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cffi/mpatchbuild.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cffi/osutil.py +%%PYTHON_SITELIBDIR%%/mercurial/cffi/osutil.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cffi/osutil.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cffi/osutilbuild.py +%%PYTHON_SITELIBDIR%%/mercurial/cffi/osutilbuild.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cffi/osutilbuild.pyo +%%PYTHON_SITELIBDIR%%/mercurial/cffi/parsers.py +%%PYTHON_SITELIBDIR%%/mercurial/cffi/parsers.pyc +%%PYTHON_SITELIBDIR%%/mercurial/cffi/parsers.pyo %%PYTHON_SITELIBDIR%%/mercurial/changegroup.py %%PYTHON_SITELIBDIR%%/mercurial/changegroup.pyc %%PYTHON_SITELIBDIR%%/mercurial/changegroup.pyo @@ -290,6 +345,9 @@ bin/hg %%PYTHON_SITELIBDIR%%/mercurial/config.py %%PYTHON_SITELIBDIR%%/mercurial/config.pyc %%PYTHON_SITELIBDIR%%/mercurial/config.pyo +%%PYTHON_SITELIBDIR%%/mercurial/configitems.py +%%PYTHON_SITELIBDIR%%/mercurial/configitems.pyc +%%PYTHON_SITELIBDIR%%/mercurial/configitems.pyo %%PYTHON_SITELIBDIR%%/mercurial/context.py %%PYTHON_SITELIBDIR%%/mercurial/context.pyc %%PYTHON_SITELIBDIR%%/mercurial/context.pyo @@ -299,6 +357,9 @@ bin/hg %%PYTHON_SITELIBDIR%%/mercurial/crecord.py %%PYTHON_SITELIBDIR%%/mercurial/crecord.pyc %%PYTHON_SITELIBDIR%%/mercurial/crecord.pyo +%%PYTHON_SITELIBDIR%%/mercurial/dagop.py +%%PYTHON_SITELIBDIR%%/mercurial/dagop.pyc +%%PYTHON_SITELIBDIR%%/mercurial/dagop.pyo %%PYTHON_SITELIBDIR%%/mercurial/dagparser.py %%PYTHON_SITELIBDIR%%/mercurial/dagparser.pyc %%PYTHON_SITELIBDIR%%/mercurial/dagparser.pyo @@ -309,13 +370,9 @@ bin/hg %%PYTHON_SITELIBDIR%%/mercurial/debugcommands.pyc %%PYTHON_SITELIBDIR%%/mercurial/debugcommands.pyo %%PYTHON_SITELIBDIR%%/mercurial/default.d/mergetools.rc -%%PYTHON_SITELIBDIR%%/mercurial/demandimport.py -%%PYTHON_SITELIBDIR%%/mercurial/demandimport.pyc -%%PYTHON_SITELIBDIR%%/mercurial/demandimport.pyo %%PYTHON_SITELIBDIR%%/mercurial/destutil.py %%PYTHON_SITELIBDIR%%/mercurial/destutil.pyc %%PYTHON_SITELIBDIR%%/mercurial/destutil.pyo -%%PYTHON_SITELIBDIR%%/mercurial/diffhelpers.so %%PYTHON_SITELIBDIR%%/mercurial/dirstate.py %%PYTHON_SITELIBDIR%%/mercurial/dirstate.pyc %%PYTHON_SITELIBDIR%%/mercurial/dirstate.pyo @@ -495,7 +552,6 @@ bin/hg %%PYTHON_SITELIBDIR%%/mercurial/minirst.py %%PYTHON_SITELIBDIR%%/mercurial/minirst.pyc %%PYTHON_SITELIBDIR%%/mercurial/minirst.pyo -%%PYTHON_SITELIBDIR%%/mercurial/mpatch.so %%PYTHON_SITELIBDIR%%/mercurial/namespaces.py %%PYTHON_SITELIBDIR%%/mercurial/namespaces.pyc %%PYTHON_SITELIBDIR%%/mercurial/namespaces.pyo @@ -505,11 +561,12 @@ bin/hg %%PYTHON_SITELIBDIR%%/mercurial/obsolete.py %%PYTHON_SITELIBDIR%%/mercurial/obsolete.pyc %%PYTHON_SITELIBDIR%%/mercurial/obsolete.pyo -%%PYTHON_SITELIBDIR%%/mercurial/osutil.so +%%PYTHON_SITELIBDIR%%/mercurial/obsutil.py +%%PYTHON_SITELIBDIR%%/mercurial/obsutil.pyc +%%PYTHON_SITELIBDIR%%/mercurial/obsutil.pyo %%PYTHON_SITELIBDIR%%/mercurial/parser.py %%PYTHON_SITELIBDIR%%/mercurial/parser.pyc %%PYTHON_SITELIBDIR%%/mercurial/parser.pyo -%%PYTHON_SITELIBDIR%%/mercurial/parsers.so %%PYTHON_SITELIBDIR%%/mercurial/patch.py %%PYTHON_SITELIBDIR%%/mercurial/patch.pyc %%PYTHON_SITELIBDIR%%/mercurial/patch.pyo @@ -594,6 +651,9 @@ bin/hg %%PYTHON_SITELIBDIR%%/mercurial/scmwindows.py %%PYTHON_SITELIBDIR%%/mercurial/scmwindows.pyc %%PYTHON_SITELIBDIR%%/mercurial/scmwindows.pyo +%%PYTHON_SITELIBDIR%%/mercurial/selectors2.py +%%PYTHON_SITELIBDIR%%/mercurial/selectors2.pyc +%%PYTHON_SITELIBDIR%%/mercurial/selectors2.pyo %%PYTHON_SITELIBDIR%%/mercurial/server.py %%PYTHON_SITELIBDIR%%/mercurial/server.pyc %%PYTHON_SITELIBDIR%%/mercurial/server.pyo @@ -609,6 +669,9 @@ bin/hg %%PYTHON_SITELIBDIR%%/mercurial/smartset.py %%PYTHON_SITELIBDIR%%/mercurial/smartset.pyc %%PYTHON_SITELIBDIR%%/mercurial/smartset.pyo +%%PYTHON_SITELIBDIR%%/mercurial/sparse.py +%%PYTHON_SITELIBDIR%%/mercurial/sparse.pyc +%%PYTHON_SITELIBDIR%%/mercurial/sparse.pyo %%PYTHON_SITELIBDIR%%/mercurial/sshpeer.py %%PYTHON_SITELIBDIR%%/mercurial/sshpeer.pyc %%PYTHON_SITELIBDIR%%/mercurial/sshpeer.pyo @@ -852,8 +915,6 @@ bin/hg man/man1/hg.1.gz man/man5/hgignore.5.gz man/man5/hgrc.5.gz -%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTORS -%%PORTDOCS%%%%DOCSDIR%%/README %%DATA%%%%DATADIR%%/contrib/bash_completion %%DATA%%%%DATADIR%%/contrib/casesmash.py %%DATA%%%%DATADIR%%/contrib/check-code.py From owner-svn-ports-branches@freebsd.org Thu Aug 17 15:33:32 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F661DB6765; Thu, 17 Aug 2017 15:33:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 193EC777E0; Thu, 17 Aug 2017 15:33:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HFXVT1093538; Thu, 17 Aug 2017 15:33:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HFXVPn093536; Thu, 17 Aug 2017 15:33:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708171533.v7HFXVPn093536@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 17 Aug 2017 15:33:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448130 - branches/2017Q3/benchmarks/iperf X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q3/benchmarks/iperf X-SVN-Commit-Revision: 448130 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 15:33:32 -0000 Author: sunpoet Date: Thu Aug 17 15:33:30 2017 New Revision: 448130 URL: https://svnweb.freebsd.org/changeset/ports/448130 Log: MFH: r447849 Update to 2.0.10 Changes: https://sourceforge.net/projects/iperf2/files/readme.txt/view Approved by: ports-secteam (feld) Modified: branches/2017Q3/benchmarks/iperf/Makefile branches/2017Q3/benchmarks/iperf/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/benchmarks/iperf/Makefile ============================================================================== --- branches/2017Q3/benchmarks/iperf/Makefile Thu Aug 17 15:30:53 2017 (r448129) +++ branches/2017Q3/benchmarks/iperf/Makefile Thu Aug 17 15:33:30 2017 (r448130) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= iperf -PORTVERSION= 2.0.9 +PORTVERSION= 2.0.10 CATEGORIES= benchmarks MASTER_SITES= SF/${PORTNAME}2 Modified: branches/2017Q3/benchmarks/iperf/distinfo ============================================================================== --- branches/2017Q3/benchmarks/iperf/distinfo Thu Aug 17 15:30:53 2017 (r448129) +++ branches/2017Q3/benchmarks/iperf/distinfo Thu Aug 17 15:33:30 2017 (r448130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1479828112 -SHA256 (iperf-2.0.9.tar.gz) = db02911f35686e808ed247160dfa766e08ae3f59d1e7dcedef0ffb2a6643f0bf -SIZE (iperf-2.0.9.tar.gz) = 279153 +TIMESTAMP = 1502528492 +SHA256 (iperf-2.0.10.tar.gz) = 7fe4348dcca313b74e0aa9c34a8ccd713b84a5615b8578f4aa94cedce9891ef2 +SIZE (iperf-2.0.10.tar.gz) = 290282 From owner-svn-ports-branches@freebsd.org Thu Aug 17 15:34:20 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3ED1EDB6832; Thu, 17 Aug 2017 15:34:20 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 08FF9778D9; Thu, 17 Aug 2017 15:34:19 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HFYJWO093806; Thu, 17 Aug 2017 15:34:19 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HFYIHY093804; Thu, 17 Aug 2017 15:34:18 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708171534.v7HFYIHY093804@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 17 Aug 2017 15:34:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448131 - branches/2017Q3/databases/mariadb101-server X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/databases/mariadb101-server X-SVN-Commit-Revision: 448131 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 15:34:20 -0000 Author: feld Date: Thu Aug 17 15:34:18 2017 New Revision: 448131 URL: https://svnweb.freebsd.org/changeset/ports/448131 Log: MFH: r445089 r445170 r446504 r447873 databases/mariadb101-server: Update to 10.1.25 - update to bugfix release 10.1.25 databases/mariadb101-server: Fix extra change in prev commit - i386 still does not build with clang databases/mariadb101-server: Fix re-definition of OPTIONS_DEFINE - Fix double definition of OPTIONS_DEFINE PR: 220527 Submitted by: Naram Qashat databases/mariadb101-server: Security update to 10.1.26 - Register libedit dependency Security: cda2f3c2-6c8b-11e7-867f-b499baebfeaf Approved by: ports-secteam (with hat) Modified: branches/2017Q3/databases/mariadb101-server/Makefile branches/2017Q3/databases/mariadb101-server/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/databases/mariadb101-server/Makefile ============================================================================== --- branches/2017Q3/databases/mariadb101-server/Makefile Thu Aug 17 15:33:30 2017 (r448130) +++ branches/2017Q3/databases/mariadb101-server/Makefile Thu Aug 17 15:34:18 2017 (r448131) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 10.1.24 +PORTVERSION= 10.1.26 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \ @@ -28,7 +28,7 @@ SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message SLAVEDIRS= databases/mariadb101-client -USES= bison:build cmake compiler:c++11-lib cpe execinfo ncurses \ +USES= bison:build cmake compiler:c++11-lib cpe execinfo libedit ncurses \ shebangfix ssl USE_LDCONFIG= ${PREFIX}/lib/mysql SHEBANG_FILES= scripts/*.sh Modified: branches/2017Q3/databases/mariadb101-server/distinfo ============================================================================== --- branches/2017Q3/databases/mariadb101-server/distinfo Thu Aug 17 15:33:30 2017 (r448130) +++ branches/2017Q3/databases/mariadb101-server/distinfo Thu Aug 17 15:34:18 2017 (r448131) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496303663 -SHA256 (mariadb-10.1.24.tar.gz) = b3df99ae5b1ec8cf6cede4cbc4ae3f54ce66464549cba6d56d9ff4d24e4d551e -SIZE (mariadb-10.1.24.tar.gz) = 61780687 +TIMESTAMP = 1502489306 +SHA256 (mariadb-10.1.26.tar.gz) = ba88b1cb9967dea2909938a34ba89373b162b0d83e5c98a0f1c94540156bf73d +SIZE (mariadb-10.1.26.tar.gz) = 61887132 From owner-svn-ports-branches@freebsd.org Thu Aug 17 15:58:56 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0395DC6BF7; Thu, 17 Aug 2017 15:58:56 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A96837C70D; Thu, 17 Aug 2017 15:58:56 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HFwtPc003656; Thu, 17 Aug 2017 15:58:55 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HFwt5n003655; Thu, 17 Aug 2017 15:58:55 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201708171558.v7HFwt5n003655@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 17 Aug 2017 15:58:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448133 - branches/2017Q3/games/critterding/files X-SVN-Group: ports-branches X-SVN-Commit-Author: rakuco X-SVN-Commit-Paths: branches/2017Q3/games/critterding/files X-SVN-Commit-Revision: 448133 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 15:58:57 -0000 Author: rakuco Date: Thu Aug 17 15:58:55 2017 New Revision: 448133 URL: https://svnweb.freebsd.org/changeset/ports/448133 Log: MFH: r447874 Add patch to fix a wrong assignment in the code. In addition to fixing an actual bug, this also allows the port to build with GCC 6: brainz.cpp: In member function 'void Brainz::processTillAnswer()': brainz.cpp:140:24: error: cannot convert 'bool' to 'bool*' in assignment Outputs[i].output = false; PR: 219287 Approved by: maintainer timeout (amdmi3, 16 days) Approved by: ports-secteam (feld) Added: branches/2017Q3/games/critterding/files/patch-src_brainz_brainz.cpp - copied unchanged from r447874, head/games/critterding/files/patch-src_brainz_brainz.cpp Modified: Directory Properties: branches/2017Q3/ (props changed) Copied: branches/2017Q3/games/critterding/files/patch-src_brainz_brainz.cpp (from r447874, head/games/critterding/files/patch-src_brainz_brainz.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/games/critterding/files/patch-src_brainz_brainz.cpp Thu Aug 17 15:58:55 2017 (r448133, copy of r447874, head/games/critterding/files/patch-src_brainz_brainz.cpp) @@ -0,0 +1,14 @@ +brainz.cpp: In member function 'void Brainz::processTillAnswer()': +brainz.cpp:140:24: error: cannot convert 'bool' to 'bool*' in assignment + Outputs[i].output = false; +--- src/brainz/brainz.cpp.orig 2017-07-28 12:12:16 UTC ++++ src/brainz/brainz.cpp +@@ -137,7 +137,7 @@ Brainz::Brainz() + + // clear Motor Outputs + for ( unsigned int i=0; i < numberOfOutputs; i++ ) +- Outputs[i].output = false; ++ *Outputs[i].output = false; + + // clear Neurons + for ( unsigned int i=0; i < totalNeurons; i++ ) From owner-svn-ports-branches@freebsd.org Thu Aug 17 16:00:07 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B89D3DC6CE6; Thu, 17 Aug 2017 16:00:07 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 832CA7C886; Thu, 17 Aug 2017 16:00:07 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HG06it003945; Thu, 17 Aug 2017 16:00:06 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HG06QP003944; Thu, 17 Aug 2017 16:00:06 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201708171600.v7HG06QP003944@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 17 Aug 2017 16:00:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448134 - branches/2017Q3/games/critterding X-SVN-Group: ports-branches X-SVN-Commit-Author: rakuco X-SVN-Commit-Paths: branches/2017Q3/games/critterding X-SVN-Commit-Revision: 448134 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 16:00:07 -0000 Author: rakuco Date: Thu Aug 17 16:00:06 2017 New Revision: 448134 URL: https://svnweb.freebsd.org/changeset/ports/448134 Log: MFH: r447875 Bump PORTREVISION after r447874. The new patch changes the code, this should have been committed together with the previous change. PR: 219287 Approved by: ports-secteam (feld) Modified: branches/2017Q3/games/critterding/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/games/critterding/Makefile ============================================================================== --- branches/2017Q3/games/critterding/Makefile Thu Aug 17 15:58:55 2017 (r448133) +++ branches/2017Q3/games/critterding/Makefile Thu Aug 17 16:00:06 2017 (r448134) @@ -3,7 +3,7 @@ PORTNAME= critterding DISTVERSION= beta12 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/sources From owner-svn-ports-branches@freebsd.org Thu Aug 17 16:01:07 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B598FDC6DD0; Thu, 17 Aug 2017 16:01:07 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CEB67CAD8; Thu, 17 Aug 2017 16:01:07 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HG165j004825; Thu, 17 Aug 2017 16:01:06 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HG16BC004824; Thu, 17 Aug 2017 16:01:06 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201708171601.v7HG16BC004824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 17 Aug 2017 16:01:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448135 - branches/2017Q3/lang/cint X-SVN-Group: ports-branches X-SVN-Commit-Author: rakuco X-SVN-Commit-Paths: branches/2017Q3/lang/cint X-SVN-Commit-Revision: 448135 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 16:01:07 -0000 Author: rakuco Date: Thu Aug 17 16:01:06 2017 New Revision: 448135 URL: https://svnweb.freebsd.org/changeset/ports/448135 Log: MFH: r447876 Make the port respect CFLAGS and CXXFLAGS. Bump PORTREVISION since this changes the flags the port is built with. This is step 1 towards making the port build with GCC 6. PR: 217008 Approved by: maintainer timeout (fjoe, 16 days) Approved by: ports-secteam (feld) Modified: branches/2017Q3/lang/cint/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/lang/cint/Makefile ============================================================================== --- branches/2017Q3/lang/cint/Makefile Thu Aug 17 16:00:06 2017 (r448134) +++ branches/2017Q3/lang/cint/Makefile Thu Aug 17 16:01:06 2017 (r448135) @@ -3,7 +3,7 @@ PORTNAME= cint PORTVERSION= 5.18.00 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= lang MASTER_SITES= http://root.cern.ch/drupal/sites/default/files/ @@ -15,7 +15,8 @@ BROKEN_powerpc64= does not build: cint/include/iosenum BUILD_DEPENDS= bash:shells/bash HAS_CONFIGURE= yes -CONFIGURE_ENV= CC="${CC}" CXX="${CXX}" LDFLAGS="${LDFLAGS}" +CONFIGURE_ENV= CC="${CC}" CXX="${CXX}" LDFLAGS="${LDFLAGS}" \ + CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" USE_GCC= yes USES= gmake readline tar:tgz USE_LDCONFIG= ${PREFIX}/lib/cint From owner-svn-ports-branches@freebsd.org Thu Aug 17 16:07:14 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3190EDC7393; Thu, 17 Aug 2017 16:07:14 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFFF97D046; Thu, 17 Aug 2017 16:07:13 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HG7D71008192; Thu, 17 Aug 2017 16:07:13 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HG7C1m008190; Thu, 17 Aug 2017 16:07:12 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708171607.v7HG7C1m008190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 17 Aug 2017 16:07:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448136 - branches/2017Q3/www/gitlab X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/www/gitlab X-SVN-Commit-Revision: 448136 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 16:07:14 -0000 Author: feld Date: Thu Aug 17 16:07:12 2017 New Revision: 448136 URL: https://svnweb.freebsd.org/changeset/ports/448136 Log: MFH: r447947 www/gitlab: fix pkg-plist A %%RUBY_SUFFIX%% got into the plist and makes it invalid PR: 221523 Submitted by: max@mober.at Approved by: ports-secteam (with hat) Modified: branches/2017Q3/www/gitlab/Makefile branches/2017Q3/www/gitlab/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/gitlab/Makefile ============================================================================== --- branches/2017Q3/www/gitlab/Makefile Thu Aug 17 16:01:06 2017 (r448135) +++ branches/2017Q3/www/gitlab/Makefile Thu Aug 17 16:07:12 2017 (r448136) @@ -4,6 +4,7 @@ PORTNAME= gitlab PORTVERSION= 9.2.10 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= www devel MAINTAINER= tz@FreeBSD.org Modified: branches/2017Q3/www/gitlab/pkg-plist ============================================================================== --- branches/2017Q3/www/gitlab/pkg-plist Thu Aug 17 16:01:06 2017 (r448135) +++ branches/2017Q3/www/gitlab/pkg-plist Thu Aug 17 16:07:12 2017 (r448136) @@ -5172,7 +5172,7 @@ %%WWWDIR%%/db/post_migrate/20170425121605_migrate_trigger_schedules_to_pipeline_schedules.rb %%WWWDIR%%/db/post_migrate/20170425130047_drop_ci_trigger_schedules_table.rb %%WWWDIR%%/db/post_migrate/20170503004427_update_retried_for_ci_build.rb -%%WWWDIR%%/db/post_migrate/20170516165%%RUBY_SUFFIX%%8_cleanup_trigger_for_issues.rb +%%WWWDIR%%/db/post_migrate/20170516165238_cleanup_trigger_for_issues.rb %%WWWDIR%%/db/post_migrate/20170516181025_add_constraints_to_issue_assignees_table.rb %%WWWDIR%%/db/post_migrate/20170518200835_rename_users_with_renamed_namespace.rb %%WWWDIR%%/db/post_migrate/20170518231126_fix_wrongly_renamed_routes.rb From owner-svn-ports-branches@freebsd.org Thu Aug 17 16:10:21 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B38ADC74E0; Thu, 17 Aug 2017 16:10:21 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 311D87D168; Thu, 17 Aug 2017 16:10:21 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HGAKss008606; Thu, 17 Aug 2017 16:10:20 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HGAJNm008601; Thu, 17 Aug 2017 16:10:19 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201708171610.v7HGAJNm008601@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Thu, 17 Aug 2017 16:10:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448137 - in branches/2017Q3/emulators/xen-kernel: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: royger X-SVN-Commit-Paths: in branches/2017Q3/emulators/xen-kernel: . files X-SVN-Commit-Revision: 448137 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 16:10:21 -0000 Author: royger (src committer) Date: Thu Aug 17 16:10:19 2017 New Revision: 448137 URL: https://svnweb.freebsd.org/changeset/ports/448137 Log: MFH: r447987 xen-kernel: apply XSA-{226,227,228,230} Approved by: ports-secteam (feld) Added: branches/2017Q3/emulators/xen-kernel/files/xsa226-4.7.patch - copied unchanged from r447987, head/emulators/xen-kernel/files/xsa226-4.7.patch branches/2017Q3/emulators/xen-kernel/files/xsa227.patch - copied unchanged from r447987, head/emulators/xen-kernel/files/xsa227.patch branches/2017Q3/emulators/xen-kernel/files/xsa228-4.8.patch - copied unchanged from r447987, head/emulators/xen-kernel/files/xsa228-4.8.patch branches/2017Q3/emulators/xen-kernel/files/xsa230.patch - copied unchanged from r447987, head/emulators/xen-kernel/files/xsa230.patch Modified: branches/2017Q3/emulators/xen-kernel/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/emulators/xen-kernel/Makefile ============================================================================== --- branches/2017Q3/emulators/xen-kernel/Makefile Thu Aug 17 16:07:12 2017 (r448136) +++ branches/2017Q3/emulators/xen-kernel/Makefile Thu Aug 17 16:10:19 2017 (r448137) @@ -2,7 +2,7 @@ PORTNAME= xen PORTVERSION= 4.7.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators MASTER_SITES= http://downloads.xenproject.org/release/xen/${PORTVERSION}/ PKGNAMESUFFIX= -kernel @@ -59,7 +59,11 @@ EXTRA_PATCHES= ${FILESDIR}/0001-xen-logdirty-prevent-p ${FILESDIR}/0001-gnttab-Fix-handling-of-dev_bus_addr-during-unmap.patch:-p1 \ ${FILESDIR}/0002-gnttab-never-create-host-mapping-unless-asked-to.patch:-p1 \ ${FILESDIR}/0003-gnttab-correct-logic-to-get-page-references-during-m.patch:-p1 \ - ${FILESDIR}/0004-gnttab-__gnttab_unmap_common_complete-is-all-or-noth.patch:-p1 + ${FILESDIR}/0004-gnttab-__gnttab_unmap_common_complete-is-all-or-noth.patch:-p1 \ + ${FILESDIR}/xsa226-4.7.patch:-p1 \ + ${FILESDIR}/xsa227.patch:-p1 \ + ${FILESDIR}/xsa228-4.8.patch:-p1 \ + ${FILESDIR}/xsa230.patch:-p1 .include Copied: branches/2017Q3/emulators/xen-kernel/files/xsa226-4.7.patch (from r447987, head/emulators/xen-kernel/files/xsa226-4.7.patch) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/emulators/xen-kernel/files/xsa226-4.7.patch Thu Aug 17 16:10:19 2017 (r448137, copy of r447987, head/emulators/xen-kernel/files/xsa226-4.7.patch) @@ -0,0 +1,133 @@ +From: Andrew Cooper +Subject: grant_table: Default to v1, and disallow transitive grants + +The reference counting and locking discipline for transitive grants is broken. +Their use is therefore declared out of security support. + +This is XSA-226. + +Transitive grants are expected to be unconditionally available with grant +table v2. Hiding transitive grants alone is an ABI breakage for the guest. +Modern versions of Linux and the Windows PV drivers use grant table v1, but +older versions did use v2. + +In principle, disabling gnttab v2 entirely is the safer way to cause guests to +avoid using transitive grants. However, some older guests which defaulted to +using gnttab v2 don't tolerate falling back from v2 to v1 over migrate. + +This patch introduces a new command line option to control grant table +behaviour. One suboption allows a choice of the maximum grant table version +Xen will allow the guest to use, and defaults to v2. A different suboption +independently controls whether transitive grants can be used. + +The default case is: + + gnttab=max_ver:2 + +To disable gnttab v2 entirely, use: + + gnttab=max_ver:1 + +To allow gnttab v2 and transitive grants, use: + + gnttab=max_ver:2,transitive + +Reported-by: Jan Beulich +Signed-off-by: Andrew Cooper +diff --git a/docs/misc/xen-command-line.markdown b/docs/misc/xen-command-line.markdown +index 73f5265..b792abf 100644 +--- a/docs/misc/xen-command-line.markdown ++++ b/docs/misc/xen-command-line.markdown +@@ -758,6 +758,22 @@ Controls EPT related features. + + Specify which console gdbstub should use. See **console**. + ++### gnttab ++> `= List of [ max_ver:, transitive ]` ++ ++> Default: `gnttab=max_ver:2,no-transitive` ++ ++Control various aspects of the grant table behaviour available to guests. ++ ++* `max_ver` Select the maximum grant table version to offer to guests. Valid ++version are 1 and 2. ++* `transitive` Permit or disallow the use of transitive grants. Note that the ++use of grant table v2 without transitive grants is an ABI breakage from the ++guests point of view. ++ ++*Warning:* ++Due to XSA-226, the use of transitive grants is outside of security support. ++ + ### gnttab\_max\_frames + > `= ` + +diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c +index f06b664..109c552 100644 +--- a/xen/common/grant_table.c ++++ b/xen/common/grant_table.c +@@ -50,6 +50,42 @@ integer_param("gnttab_max_nr_frames", max_nr_grant_frames); + unsigned int __read_mostly max_grant_frames; + integer_param("gnttab_max_frames", max_grant_frames); + ++static unsigned int __read_mostly opt_gnttab_max_version = 2; ++static bool_t __read_mostly opt_transitive_grants; ++ ++static void __init parse_gnttab(char *s) ++{ ++ char *ss; ++ ++ do { ++ ss = strchr(s, ','); ++ if ( ss ) ++ *ss = '\0'; ++ ++ if ( !strncmp(s, "max_ver:", 8) ) ++ { ++ long ver = simple_strtol(s + 8, NULL, 10); ++ ++ if ( ver >= 1 && ver <= 2 ) ++ opt_gnttab_max_version = ver; ++ } ++ else ++ { ++ bool_t val = !!strncmp(s, "no-", 3); ++ ++ if ( !val ) ++ s += 3; ++ ++ if ( !strcmp(s, "transitive") ) ++ opt_transitive_grants = val; ++ } ++ ++ s = ss + 1; ++ } while ( ss ); ++} ++ ++custom_param("gnttab", parse_gnttab); ++ + /* The maximum number of grant mappings is defined as a multiplier of the + * maximum number of grant table entries. This defines the multiplier used. + * Pretty arbitrary. [POLICY] +@@ -2188,6 +2224,10 @@ __acquire_grant_for_copy( + } + else if ( (shah->flags & GTF_type_mask) == GTF_transitive ) + { ++ if ( !opt_transitive_grants ) ++ PIN_FAIL(unlock_out_clear, GNTST_general_error, ++ "transitive grant disallowed by policy\n"); ++ + if ( !allow_transitive ) + PIN_FAIL(unlock_out_clear, GNTST_general_error, + "transitive grant when transitivity not allowed\n"); +@@ -3156,7 +3196,10 @@ do_grant_table_op( + } + case GNTTABOP_set_version: + { +- rc = gnttab_set_version(guest_handle_cast(uop, gnttab_set_version_t)); ++ if ( opt_gnttab_max_version == 1 ) ++ rc = -ENOSYS; /* Behave as before set_version was introduced. */ ++ else ++ rc = gnttab_set_version(guest_handle_cast(uop, gnttab_set_version_t)); + break; + } + case GNTTABOP_get_status_frames: Copied: branches/2017Q3/emulators/xen-kernel/files/xsa227.patch (from r447987, head/emulators/xen-kernel/files/xsa227.patch) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/emulators/xen-kernel/files/xsa227.patch Thu Aug 17 16:10:19 2017 (r448137, copy of r447987, head/emulators/xen-kernel/files/xsa227.patch) @@ -0,0 +1,52 @@ +From fa7268b94f8a0a7792ee12d5b8e23a60e52a3a84 Mon Sep 17 00:00:00 2001 +From: Andrew Cooper +Date: Tue, 20 Jun 2017 19:18:54 +0100 +Subject: [PATCH] x86/grant: Disallow misaligned PTEs + +Pagetable entries must be aligned to function correctly. Disallow attempts +from the guest to have a grant PTE created at a misaligned address, which +would result in corruption of the L1 table with largely-guest-controlled +values. + +This is XSA-227 + +Signed-off-by: Andrew Cooper +Reviewed-by: Jan Beulich +--- + xen/arch/x86/mm.c | 13 +++++++++++++ + 1 file changed, 13 insertions(+) + +diff --git a/xen/arch/x86/mm.c b/xen/arch/x86/mm.c +index 97b3b4b..00f517a 100644 +--- a/xen/arch/x86/mm.c ++++ b/xen/arch/x86/mm.c +@@ -3763,6 +3763,9 @@ static int create_grant_pte_mapping( + l1_pgentry_t ol1e; + struct domain *d = v->domain; + ++ if ( !IS_ALIGNED(pte_addr, sizeof(nl1e)) ) ++ return GNTST_general_error; ++ + adjust_guest_l1e(nl1e, d); + + gmfn = pte_addr >> PAGE_SHIFT; +@@ -3819,6 +3822,16 @@ static int destroy_grant_pte_mapping( + struct page_info *page; + l1_pgentry_t ol1e; + ++ /* ++ * addr comes from Xen's active_entry tracking so isn't guest controlled, ++ * but it had still better be PTE-aligned. ++ */ ++ if ( !IS_ALIGNED(addr, sizeof(ol1e)) ) ++ { ++ ASSERT_UNREACHABLE(); ++ return GNTST_general_error; ++ } ++ + gmfn = addr >> PAGE_SHIFT; + page = get_page_from_gfn(d, gmfn, NULL, P2M_ALLOC); + +-- +2.1.4 + Copied: branches/2017Q3/emulators/xen-kernel/files/xsa228-4.8.patch (from r447987, head/emulators/xen-kernel/files/xsa228-4.8.patch) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/emulators/xen-kernel/files/xsa228-4.8.patch Thu Aug 17 16:10:19 2017 (r448137, copy of r447987, head/emulators/xen-kernel/files/xsa228-4.8.patch) @@ -0,0 +1,198 @@ +From cb91f4c43bd4158daa6561c73921a6455176f278 Mon Sep 17 00:00:00 2001 +From: Jan Beulich +Date: Mon, 31 Jul 2017 15:17:56 +0100 +Subject: [PATCH] gnttab: split maptrack lock to make it fulfill its purpose + again + +The way the lock is currently being used in get_maptrack_handle(), it +protects only the maptrack limit: The function acts on current's list +only, so races on list accesses are impossible even without the lock. + +Otoh list access races are possible between __get_maptrack_handle() and +put_maptrack_handle(), due to the invocation of the former for other +than current from steal_maptrack_handle(). Introduce a per-vCPU lock +for list accesses to become race free again. This lock will be +uncontended except when it becomes necessary to take the steal path, +i.e. in the common case there should be no meaningful performance +impact. + +When in get_maptrack_handle adds a stolen entry to a fresh, empty, +freelist, we think that there is probably no concurrency. However, +this is not a fast path and adding the locking there makes the code +clearly correct. + +Also, while we are here: the stolen maptrack_entry's tail pointer was +not properly set. Set it. + +This is XSA-228. + +Reported-by: Ian Jackson +Signed-off-by: Jan Beulich +Signed-off-by: Ian Jackson +--- + docs/misc/grant-tables.txt | 7 ++++++- + xen/common/grant_table.c | 30 ++++++++++++++++++++++++------ + xen/include/xen/grant_table.h | 2 +- + xen/include/xen/sched.h | 1 + + 4 files changed, 32 insertions(+), 8 deletions(-) + +diff --git a/docs/misc/grant-tables.txt b/docs/misc/grant-tables.txt +index 417ce2d..64da5cf 100644 +--- a/docs/misc/grant-tables.txt ++++ b/docs/misc/grant-tables.txt +@@ -87,7 +87,8 @@ is complete. + inconsistent grant table state such as current + version, partially initialized active table pages, + etc. +- grant_table->maptrack_lock : spinlock used to protect the maptrack free list ++ grant_table->maptrack_lock : spinlock used to protect the maptrack limit ++ v->maptrack_freelist_lock : spinlock used to protect the maptrack free list + active_grant_entry->lock : spinlock used to serialize modifications to + active entries + +@@ -102,6 +103,10 @@ is complete. + The maptrack free list is protected by its own spinlock. The maptrack + lock may be locked while holding the grant table lock. + ++ The maptrack_freelist_lock is an innermost lock. It may be locked ++ while holding other locks, but no other locks may be acquired within ++ it. ++ + Active entries are obtained by calling active_entry_acquire(gt, ref). + This function returns a pointer to the active entry after locking its + spinlock. The caller must hold the grant table read lock before +diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c +index f9654f1..593121c 100644 +--- a/xen/common/grant_table.c ++++ b/xen/common/grant_table.c +@@ -304,11 +304,16 @@ __get_maptrack_handle( + { + unsigned int head, next, prev_head; + ++ spin_lock(&v->maptrack_freelist_lock); ++ + do { + /* No maptrack pages allocated for this VCPU yet? */ + head = read_atomic(&v->maptrack_head); + if ( unlikely(head == MAPTRACK_TAIL) ) ++ { ++ spin_unlock(&v->maptrack_freelist_lock); + return -1; ++ } + + /* + * Always keep one entry in the free list to make it easier to +@@ -316,12 +321,17 @@ __get_maptrack_handle( + */ + next = read_atomic(&maptrack_entry(t, head).ref); + if ( unlikely(next == MAPTRACK_TAIL) ) ++ { ++ spin_unlock(&v->maptrack_freelist_lock); + return -1; ++ } + + prev_head = head; + head = cmpxchg(&v->maptrack_head, prev_head, next); + } while ( head != prev_head ); + ++ spin_unlock(&v->maptrack_freelist_lock); ++ + return head; + } + +@@ -380,6 +390,8 @@ put_maptrack_handle( + /* 2. Add entry to the tail of the list on the original VCPU. */ + v = currd->vcpu[maptrack_entry(t, handle).vcpu]; + ++ spin_lock(&v->maptrack_freelist_lock); ++ + cur_tail = read_atomic(&v->maptrack_tail); + do { + prev_tail = cur_tail; +@@ -388,6 +400,8 @@ put_maptrack_handle( + + /* 3. Update the old tail entry to point to the new entry. */ + write_atomic(&maptrack_entry(t, prev_tail).ref, handle); ++ ++ spin_unlock(&v->maptrack_freelist_lock); + } + + static inline int +@@ -411,10 +425,6 @@ get_maptrack_handle( + */ + if ( nr_maptrack_frames(lgt) >= max_maptrack_frames ) + { +- /* +- * Can drop the lock since no other VCPU can be adding a new +- * frame once they've run out. +- */ + spin_unlock(&lgt->maptrack_lock); + + /* +@@ -426,8 +436,12 @@ get_maptrack_handle( + handle = steal_maptrack_handle(lgt, curr); + if ( handle == -1 ) + return -1; ++ spin_lock(&curr->maptrack_freelist_lock); ++ maptrack_entry(lgt, handle).ref = MAPTRACK_TAIL; + curr->maptrack_tail = handle; +- write_atomic(&curr->maptrack_head, handle); ++ if ( curr->maptrack_head == MAPTRACK_TAIL ) ++ write_atomic(&curr->maptrack_head, handle); ++ spin_unlock(&curr->maptrack_freelist_lock); + } + return steal_maptrack_handle(lgt, curr); + } +@@ -460,12 +474,15 @@ get_maptrack_handle( + smp_wmb(); + lgt->maptrack_limit += MAPTRACK_PER_PAGE; + ++ spin_unlock(&lgt->maptrack_lock); ++ spin_lock(&curr->maptrack_freelist_lock); ++ + do { + new_mt[i - 1].ref = read_atomic(&curr->maptrack_head); + head = cmpxchg(&curr->maptrack_head, new_mt[i - 1].ref, handle + 1); + } while ( head != new_mt[i - 1].ref ); + +- spin_unlock(&lgt->maptrack_lock); ++ spin_unlock(&curr->maptrack_freelist_lock); + + return handle; + } +@@ -3474,6 +3491,7 @@ grant_table_destroy( + + void grant_table_init_vcpu(struct vcpu *v) + { ++ spin_lock_init(&v->maptrack_freelist_lock); + v->maptrack_head = MAPTRACK_TAIL; + v->maptrack_tail = MAPTRACK_TAIL; + } +diff --git a/xen/include/xen/grant_table.h b/xen/include/xen/grant_table.h +index 4e77899..100f2b3 100644 +--- a/xen/include/xen/grant_table.h ++++ b/xen/include/xen/grant_table.h +@@ -78,7 +78,7 @@ struct grant_table { + /* Mapping tracking table per vcpu. */ + struct grant_mapping **maptrack; + unsigned int maptrack_limit; +- /* Lock protecting the maptrack page list, head, and limit */ ++ /* Lock protecting the maptrack limit */ + spinlock_t maptrack_lock; + /* The defined versions are 1 and 2. Set to 0 if we don't know + what version to use yet. */ +diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h +index 1fbda87..ff0f38f 100644 +--- a/xen/include/xen/sched.h ++++ b/xen/include/xen/sched.h +@@ -223,6 +223,7 @@ struct vcpu + int controller_pause_count; + + /* Maptrack */ ++ spinlock_t maptrack_freelist_lock; + unsigned int maptrack_head; + unsigned int maptrack_tail; + +-- +2.1.4 + Copied: branches/2017Q3/emulators/xen-kernel/files/xsa230.patch (from r447987, head/emulators/xen-kernel/files/xsa230.patch) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/emulators/xen-kernel/files/xsa230.patch Thu Aug 17 16:10:19 2017 (r448137, copy of r447987, head/emulators/xen-kernel/files/xsa230.patch) @@ -0,0 +1,38 @@ +From: Jan Beulich +Subject: gnttab: correct pin status fixup for copy + +Regardless of copy operations only setting GNTPIN_hst*, GNTPIN_dev* +also need to be taken into account when deciding whether to clear +_GTF_{read,writ}ing. At least for consistency with code elsewhere the +read part better doesn't use any mask at all. + +This is XSA-230. + +Signed-off-by: Jan Beulich +Reviewed-by: Andrew Cooper +diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c +index ae34547..9c9d33c 100644 +--- a/xen/common/grant_table.c ++++ b/xen/common/grant_table.c +@@ -2107,10 +2107,10 @@ __release_grant_for_copy( + static void __fixup_status_for_copy_pin(const struct active_grant_entry *act, + uint16_t *status) + { +- if ( !(act->pin & GNTPIN_hstw_mask) ) ++ if ( !(act->pin & (GNTPIN_hstw_mask | GNTPIN_devw_mask)) ) + gnttab_clear_flag(_GTF_writing, status); + +- if ( !(act->pin & GNTPIN_hstr_mask) ) ++ if ( !act->pin ) + gnttab_clear_flag(_GTF_reading, status); + } + +@@ -2318,7 +2318,7 @@ __acquire_grant_for_copy( + + unlock_out_clear: + if ( !(readonly) && +- !(act->pin & GNTPIN_hstw_mask) ) ++ !(act->pin & (GNTPIN_hstw_mask | GNTPIN_devw_mask)) ) + gnttab_clear_flag(_GTF_writing, status); + + if ( !act->pin ) From owner-svn-ports-branches@freebsd.org Thu Aug 17 16:25:21 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 127B6DC8320; Thu, 17 Aug 2017 16:25:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DCE8D7DE23; Thu, 17 Aug 2017 16:25:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HGPJpr017281; Thu, 17 Aug 2017 16:25:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HGPJ0n017278; Thu, 17 Aug 2017 16:25:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708171625.v7HGPJ0n017278@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 17 Aug 2017 16:25:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448142 - branches/2017Q3/ftp/curl X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q3/ftp/curl X-SVN-Commit-Revision: 448142 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 16:25:21 -0000 Author: sunpoet Date: Thu Aug 17 16:25:19 2017 New Revision: 448142 URL: https://svnweb.freebsd.org/changeset/ports/448142 Log: MFH: r447959 Update to 7.55.1 Changes: https://curl.haxx.se/changes.html Approved by: ports-secteam (feld) Modified: branches/2017Q3/ftp/curl/Makefile branches/2017Q3/ftp/curl/distinfo branches/2017Q3/ftp/curl/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/ftp/curl/Makefile ============================================================================== --- branches/2017Q3/ftp/curl/Makefile Thu Aug 17 16:24:50 2017 (r448141) +++ branches/2017Q3/ftp/curl/Makefile Thu Aug 17 16:25:19 2017 (r448142) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= curl -PORTVERSION= 7.55.0 +PORTVERSION= 7.55.1 CATEGORIES= ftp net www MASTER_SITES= http://curl.haxx.se/download/ \ LOCAL/sunpoet @@ -143,8 +143,6 @@ post-patch: post-install: ${INSTALL_DATA} ${WRKSRC}/docs/libcurl/libcurl.m4 ${STAGEDIR}${PREFIX}/share/aclocal/ - make -C${WRKSRC}/docs/libcurl install-man DESTDIR=${STAGEDIR} - make -C${WRKSRC}/docs/libcurl/opts install-man DESTDIR=${STAGEDIR} post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ ${STAGEDIR}${DOCSDIR}/libcurl/ Modified: branches/2017Q3/ftp/curl/distinfo ============================================================================== --- branches/2017Q3/ftp/curl/distinfo Thu Aug 17 16:24:50 2017 (r448141) +++ branches/2017Q3/ftp/curl/distinfo Thu Aug 17 16:25:19 2017 (r448142) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502264312 -SHA256 (curl-7.55.0.tar.xz) = cdd58522f8607fd4e871df79d73acb3155075e2134641e5adab12a0962df059d -SIZE (curl-7.55.0.tar.xz) = 2228476 +TIMESTAMP = 1502726803 +SHA256 (curl-7.55.1.tar.xz) = 3eafca6e84ecb4af5f35795dee84e643d5428287e88c041122bb8dac18676bb7 +SIZE (curl-7.55.1.tar.xz) = 2230768 Modified: branches/2017Q3/ftp/curl/pkg-plist ============================================================================== --- branches/2017Q3/ftp/curl/pkg-plist Thu Aug 17 16:24:50 2017 (r448141) +++ branches/2017Q3/ftp/curl/pkg-plist Thu Aug 17 16:25:19 2017 (r448142) @@ -21,7 +21,9 @@ man/man3/CURLINFO_CERTINFO.3.gz man/man3/CURLINFO_CONDITION_UNMET.3.gz man/man3/CURLINFO_CONNECT_TIME.3.gz man/man3/CURLINFO_CONTENT_LENGTH_DOWNLOAD.3.gz +man/man3/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3.gz man/man3/CURLINFO_CONTENT_LENGTH_UPLOAD.3.gz +man/man3/CURLINFO_CONTENT_LENGTH_UPLOAD_T.3.gz man/man3/CURLINFO_CONTENT_TYPE.3.gz man/man3/CURLINFO_COOKIELIST.3.gz man/man3/CURLINFO_EFFECTIVE_URL.3.gz @@ -55,9 +57,13 @@ man/man3/CURLINFO_RTSP_SERVER_CSEQ.3.gz man/man3/CURLINFO_RTSP_SESSION_ID.3.gz man/man3/CURLINFO_SCHEME.3.gz man/man3/CURLINFO_SIZE_DOWNLOAD.3.gz +man/man3/CURLINFO_SIZE_DOWNLOAD_T.3.gz man/man3/CURLINFO_SIZE_UPLOAD.3.gz +man/man3/CURLINFO_SIZE_UPLOAD_T.3.gz man/man3/CURLINFO_SPEED_DOWNLOAD.3.gz +man/man3/CURLINFO_SPEED_DOWNLOAD_T.3.gz man/man3/CURLINFO_SPEED_UPLOAD.3.gz +man/man3/CURLINFO_SPEED_UPLOAD_T.3.gz man/man3/CURLINFO_SSL_ENGINES.3.gz man/man3/CURLINFO_SSL_VERIFYRESULT.3.gz man/man3/CURLINFO_STARTTRANSFER_TIME.3.gz @@ -262,6 +268,7 @@ man/man3/CURLOPT_SERVICE_NAME.3.gz man/man3/CURLOPT_SHARE.3.gz man/man3/CURLOPT_SOCKOPTDATA.3.gz man/man3/CURLOPT_SOCKOPTFUNCTION.3.gz +man/man3/CURLOPT_SOCKS5_AUTH.3.gz man/man3/CURLOPT_SOCKS5_GSSAPI_NEC.3.gz man/man3/CURLOPT_SOCKS5_GSSAPI_SERVICE.3.gz man/man3/CURLOPT_SSH_AUTH_TYPES.3.gz @@ -372,6 +379,7 @@ man/man3/curl_share_strerror.3.gz man/man3/curl_slist_append.3.gz man/man3/curl_slist_free_all.3.gz man/man3/curl_strequal.3.gz +man/man3/curl_strnequal.3.gz man/man3/curl_unescape.3.gz man/man3/curl_version.3.gz man/man3/curl_version_info.3.gz From owner-svn-ports-branches@freebsd.org Thu Aug 17 16:27:14 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A1130DC84E1; Thu, 17 Aug 2017 16:27:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B6197DF67; Thu, 17 Aug 2017 16:27:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HGRDAK017534; Thu, 17 Aug 2017 16:27:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HGRDas017533; Thu, 17 Aug 2017 16:27:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708171627.v7HGRDas017533@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 17 Aug 2017 16:27:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448143 - branches/2017Q3/ftp/curl X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q3/ftp/curl X-SVN-Commit-Revision: 448143 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 16:27:14 -0000 Author: sunpoet Date: Thu Aug 17 16:27:13 2017 New Revision: 448143 URL: https://svnweb.freebsd.org/changeset/ports/448143 Log: MFH: r448108 Change RESOLV from RADIO to SINGLE cURL 7.55.1 use the threaded resolver (THREADED_RESOLVER) backend if c-ares (CARES) is not available. That means you must enable either CARES or THREADED_RESOLVER (default) option. Reference: https://github.com/curl/curl/pull/1647 Approved by: ports-secteam (feld) Modified: branches/2017Q3/ftp/curl/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/ftp/curl/Makefile ============================================================================== --- branches/2017Q3/ftp/curl/Makefile Thu Aug 17 16:25:19 2017 (r448142) +++ branches/2017Q3/ftp/curl/Makefile Thu Aug 17 16:27:13 2017 (r448143) @@ -14,11 +14,11 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING OPTIONS_DEFINE= CA_BUNDLE COOKIES CURL_DEBUG DEBUG DOCS EXAMPLES HTTP2 IDN IPV6 LDAP LDAPS LIBSSH2 METALINK PROXY PSL RTMP SMB TLS_SRP -OPTIONS_RADIO= RESOLV SSL -OPTIONS_SINGLE= GSSAPI -OPTIONS_RADIO_RESOLV= CARES THREADED_RESOLVER +OPTIONS_RADIO= SSL +OPTIONS_SINGLE= GSSAPI RESOLV OPTIONS_RADIO_SSL= GNUTLS NSS OPENSSL POLARSSL WOLFSSL OPTIONS_SINGLE_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT GSSAPI_NONE +OPTIONS_SINGLE_RESOLV= CARES THREADED_RESOLVER OPTIONS_DEFAULT= CA_BUNDLE COOKIES GSSAPI_${${SSL_DEFAULT} == base :?BASE :NONE} HTTP2 OPENSSL PROXY RESOLV THREADED_RESOLVER TLS_SRP CA_BUNDLE_DESC= Install CA bundle for OpenSSL CA_BUNDLE_IMPLIES= OPENSSL From owner-svn-ports-branches@freebsd.org Thu Aug 17 16:28:16 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C129DC8596; Thu, 17 Aug 2017 16:28:16 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 531EE7E055; Thu, 17 Aug 2017 16:28:16 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HGSFh4017756; Thu, 17 Aug 2017 16:28:15 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HGSFmf017754; Thu, 17 Aug 2017 16:28:15 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201708171628.v7HGSFmf017754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 17 Aug 2017 16:28:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448144 - in branches/2017Q3/science/massxpert: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: rakuco X-SVN-Commit-Paths: in branches/2017Q3/science/massxpert: . files X-SVN-Commit-Revision: 448144 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 16:28:16 -0000 Author: rakuco Date: Thu Aug 17 16:28:15 2017 New Revision: 448144 URL: https://svnweb.freebsd.org/changeset/ports/448144 Log: MFH: r447878 Add patch to drop a wrong ';' in an if check. In addition to fixing an actual bug, this also fixes the build with GCC 6: /wrkdirs/usr/ports/science/massxpert/work/massxpert-3.4.0/lib/propListHolder.cpp: In member function 'bool massXpert::PropListHolder::removeProp(const QString&)': /wrkdirs/usr/ports/science/massxpert/work/massxpert-3.4.0/lib/propListHolder.cpp:216:2: error: this 'if' clause does not guard... [-Werror=misleading-indentation] if(m_propList.at(iter)->name() == name); ^~ /wrkdirs/usr/ports/science/massxpert/work/massxpert-3.4.0/lib/propListHolder.cpp:217:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if' { PR: 219293 Approved by: maintainer timeout (vg, 18 days) Approved by: ports-secteam (feld) Added: branches/2017Q3/science/massxpert/files/patch-lib_propListHolder.cpp - copied unchanged from r447878, head/science/massxpert/files/patch-lib_propListHolder.cpp Modified: branches/2017Q3/science/massxpert/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/science/massxpert/Makefile ============================================================================== --- branches/2017Q3/science/massxpert/Makefile Thu Aug 17 16:27:13 2017 (r448143) +++ branches/2017Q3/science/massxpert/Makefile Thu Aug 17 16:28:15 2017 (r448144) @@ -3,7 +3,7 @@ PORTNAME= massxpert PORTVERSION= 3.4.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= science MASTER_SITES= http://download.tuxfamily.org/massxpert/source/ Copied: branches/2017Q3/science/massxpert/files/patch-lib_propListHolder.cpp (from r447878, head/science/massxpert/files/patch-lib_propListHolder.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/science/massxpert/files/patch-lib_propListHolder.cpp Thu Aug 17 16:28:15 2017 (r448144, copy of r447878, head/science/massxpert/files/patch-lib_propListHolder.cpp) @@ -0,0 +1,19 @@ +Fixes the build with GCC 6 (in addition to fixing an actual bug). + +/wrkdirs/usr/ports/science/massxpert/work/massxpert-3.4.0/lib/propListHolder.cpp: In member function 'bool massXpert::PropListHolder::removeProp(const QString&)': +/wrkdirs/usr/ports/science/massxpert/work/massxpert-3.4.0/lib/propListHolder.cpp:216:2: error: this 'if' clause does not guard... [-Werror=misleading-indentation] + if(m_propList.at(iter)->name() == name); + ^~ +/wrkdirs/usr/ports/science/massxpert/work/massxpert-3.4.0/lib/propListHolder.cpp:217:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if' + { +--- lib/propListHolder.cpp.orig 2017-07-26 17:06:18 UTC ++++ lib/propListHolder.cpp +@@ -213,7 +213,7 @@ namespace massXpert + { + for (int iter = 0; iter < m_propList.size(); ++iter) + { +- if(m_propList.at(iter)->name() == name); ++ if(m_propList.at(iter)->name() == name) + { + m_propList.removeAt(iter); + From owner-svn-ports-branches@freebsd.org Thu Aug 17 16:38:31 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 085CADC8DD6; Thu, 17 Aug 2017 16:38:31 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C56D47E73C; Thu, 17 Aug 2017 16:38:30 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HGcTAq022192; Thu, 17 Aug 2017 16:38:29 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HGcTvQ022189; Thu, 17 Aug 2017 16:38:29 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201708171638.v7HGcTvQ022189@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Thu, 17 Aug 2017 16:38:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448147 - branches/2017Q3/dns/libidn2 X-SVN-Group: ports-branches X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: branches/2017Q3/dns/libidn2 X-SVN-Commit-Revision: 448147 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 16:38:31 -0000 Author: mandree Date: Thu Aug 17 16:38:29 2017 New Revision: 448147 URL: https://svnweb.freebsd.org/changeset/ports/448147 Log: MFH: r446595 r447146 Update to 2.0.3, in order to fix dns/dnsmasq serving SRV records with underscores properly. Changes: https://gitlab.com/libidn/libidn2/blob/master/NEWS Approved by: ports-secteam@ (zi) Modified: branches/2017Q3/dns/libidn2/Makefile branches/2017Q3/dns/libidn2/distinfo branches/2017Q3/dns/libidn2/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/dns/libidn2/Makefile ============================================================================== --- branches/2017Q3/dns/libidn2/Makefile Thu Aug 17 16:31:48 2017 (r448146) +++ branches/2017Q3/dns/libidn2/Makefile Thu Aug 17 16:38:29 2017 (r448147) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libidn2 -PORTVERSION= 2.0.2 +PORTVERSION= 2.0.3 CATEGORIES= dns MASTER_SITES= GNU/libidn @@ -15,7 +15,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libunistring.so:devel/libunistring CONFIGURE_ARGS= --disable-nls \ - --with-libunistring-prefix=${LOCALBASE} + --with-libunistring-prefix=${LOCALBASE} \ + ac_cv_prog_RONN=${TRUE} GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_LDCONFIG= yes Modified: branches/2017Q3/dns/libidn2/distinfo ============================================================================== --- branches/2017Q3/dns/libidn2/distinfo Thu Aug 17 16:31:48 2017 (r448146) +++ branches/2017Q3/dns/libidn2/distinfo Thu Aug 17 16:38:29 2017 (r448147) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493449801 -SHA256 (libidn2-2.0.2.tar.gz) = 8cd62828b2ab0171e0f35a302f3ad60c3a3fffb45733318b3a8205f9d187eeab -SIZE (libidn2-2.0.2.tar.gz) = 1925342 +TIMESTAMP = 1500989930 +SHA256 (libidn2-2.0.3.tar.gz) = 4335149ce7a5c615edb781574d38f658672780331064fb17354a10e11a5308cd +SIZE (libidn2-2.0.3.tar.gz) = 1801001 Modified: branches/2017Q3/dns/libidn2/pkg-plist ============================================================================== --- branches/2017Q3/dns/libidn2/pkg-plist Thu Aug 17 16:31:48 2017 (r448146) +++ branches/2017Q3/dns/libidn2/pkg-plist Thu Aug 17 16:38:29 2017 (r448147) @@ -3,7 +3,7 @@ include/idn2.h lib/libidn2.a lib/libidn2.so lib/libidn2.so.0 -lib/libidn2.so.0.3.1 +lib/libidn2.so.0.3.2 libdata/pkgconfig/libidn2.pc man/man1/idn2.1.gz man/man3/idn2_check_version.3.gz From owner-svn-ports-branches@freebsd.org Thu Aug 17 17:03:53 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED6ABDCA380; Thu, 17 Aug 2017 17:03:53 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9D3C37FC30; Thu, 17 Aug 2017 17:03:53 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HH3qGd034899; Thu, 17 Aug 2017 17:03:52 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HH3qOs034896; Thu, 17 Aug 2017 17:03:52 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201708171703.v7HH3qOs034896@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 17 Aug 2017 17:03:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448152 - in branches/2017Q3/net-mgmt: zabbix22-agent zabbix22-server X-SVN-Group: ports-branches X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in branches/2017Q3/net-mgmt: zabbix22-agent zabbix22-server X-SVN-Commit-Revision: 448152 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 17:03:54 -0000 Author: dbaio Date: Thu Aug 17 17:03:52 2017 New Revision: 448152 URL: https://svnweb.freebsd.org/changeset/ports/448152 Log: MFH: r448070 net-mgmt/zabbix22-*: Update to 2.2.19, Fixes security vulnerability Changes: https://www.zabbix.com/rn2.2.19 PR: 221562 Submitted by: pg@pakhom.spb.ru (maintainer) Security: 5df8bd95-8290-11e7-93af-005056925db4 Approved by: ports-secteam (feld) Modified: branches/2017Q3/net-mgmt/zabbix22-agent/Makefile branches/2017Q3/net-mgmt/zabbix22-server/Makefile branches/2017Q3/net-mgmt/zabbix22-server/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net-mgmt/zabbix22-agent/Makefile ============================================================================== --- branches/2017Q3/net-mgmt/zabbix22-agent/Makefile Thu Aug 17 16:59:03 2017 (r448151) +++ branches/2017Q3/net-mgmt/zabbix22-agent/Makefile Thu Aug 17 17:03:52 2017 (r448152) @@ -2,7 +2,6 @@ # $FreeBSD$ PORTNAME= zabbix22 -PORTREVISION= 1 CATEGORIES= net-mgmt PKGNAMESUFFIX= -agent Modified: branches/2017Q3/net-mgmt/zabbix22-server/Makefile ============================================================================== --- branches/2017Q3/net-mgmt/zabbix22-server/Makefile Thu Aug 17 16:59:03 2017 (r448151) +++ branches/2017Q3/net-mgmt/zabbix22-server/Makefile Thu Aug 17 17:03:52 2017 (r448152) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= zabbix22 -PORTVERSION= 2.2.18 +PORTVERSION= 2.2.19 +PORTREVISION?= 0 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} PKGNAMESUFFIX?= -server Modified: branches/2017Q3/net-mgmt/zabbix22-server/distinfo ============================================================================== --- branches/2017Q3/net-mgmt/zabbix22-server/distinfo Thu Aug 17 16:59:03 2017 (r448151) +++ branches/2017Q3/net-mgmt/zabbix22-server/distinfo Thu Aug 17 17:03:52 2017 (r448152) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495711408 -SHA256 (zabbix-2.2.18.tar.gz) = b87e7dadec65d04711fcd66dba398b213452453c5f0c3fc5490d1ab68a41abde -SIZE (zabbix-2.2.18.tar.gz) = 15495920 +TIMESTAMP = 1502890028 +SHA256 (zabbix-2.2.19.tar.gz) = 311d70a1d0868eeda752b3e9555afbbdf3f37b380e79b0b0ee138e4be488873c +SIZE (zabbix-2.2.19.tar.gz) = 15497840 From owner-svn-ports-branches@freebsd.org Thu Aug 17 17:05:40 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A0E1DCA4AC; Thu, 17 Aug 2017 17:05:40 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 543D37FD44; Thu, 17 Aug 2017 17:05:40 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HH5dbE035142; Thu, 17 Aug 2017 17:05:39 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HH5dqm035140; Thu, 17 Aug 2017 17:05:39 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201708171705.v7HH5dqm035140@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 17 Aug 2017 17:05:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448153 - branches/2017Q3/net-mgmt/zabbix3-server X-SVN-Group: ports-branches X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: branches/2017Q3/net-mgmt/zabbix3-server X-SVN-Commit-Revision: 448153 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 17:05:40 -0000 Author: dbaio Date: Thu Aug 17 17:05:39 2017 New Revision: 448153 URL: https://svnweb.freebsd.org/changeset/ports/448153 Log: MFH: r448071 net-mgmt/zabbix3-*: Update to 3.0.10, Fixes security vulnerability Changes: https://www.zabbix.com/rn3.0.10 PR: 221564 Submitted by: pg@pakhom.spb.ru (maintainer) Security: 5df8bd95-8290-11e7-93af-005056925db4 Approved by: ports-secteam (feld) Modified: branches/2017Q3/net-mgmt/zabbix3-server/Makefile branches/2017Q3/net-mgmt/zabbix3-server/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net-mgmt/zabbix3-server/Makefile ============================================================================== --- branches/2017Q3/net-mgmt/zabbix3-server/Makefile Thu Aug 17 17:03:52 2017 (r448152) +++ branches/2017Q3/net-mgmt/zabbix3-server/Makefile Thu Aug 17 17:05:39 2017 (r448153) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= zabbix3 -PORTVERSION= 3.0.9 +PORTVERSION= 3.0.10 PORTREVISION?= 0 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} Modified: branches/2017Q3/net-mgmt/zabbix3-server/distinfo ============================================================================== --- branches/2017Q3/net-mgmt/zabbix3-server/distinfo Thu Aug 17 17:03:52 2017 (r448152) +++ branches/2017Q3/net-mgmt/zabbix3-server/distinfo Thu Aug 17 17:05:39 2017 (r448153) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495705716 -SHA256 (zabbix-3.0.9.tar.gz) = 4445f26c025009681c29c9b350aa6c4ee7b124ddcaf1609ae36c55997bcb8cf2 -SIZE (zabbix-3.0.9.tar.gz) = 15516440 +TIMESTAMP = 1502890189 +SHA256 (zabbix-3.0.10.tar.gz) = 49ab7a69352fc07c88e08f10e20ef714adde6d08e44df8af81edb82e26c7c772 +SIZE (zabbix-3.0.10.tar.gz) = 15573988 From owner-svn-ports-branches@freebsd.org Thu Aug 17 17:07:08 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C29B0DCA5E4; Thu, 17 Aug 2017 17:07:08 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C9DF7FE77; Thu, 17 Aug 2017 17:07:08 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HH7748035403; Thu, 17 Aug 2017 17:07:07 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HH77Np035401; Thu, 17 Aug 2017 17:07:07 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201708171707.v7HH77Np035401@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 17 Aug 2017 17:07:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448154 - branches/2017Q3/net-mgmt/zabbix32-server X-SVN-Group: ports-branches X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: branches/2017Q3/net-mgmt/zabbix32-server X-SVN-Commit-Revision: 448154 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 17:07:08 -0000 Author: dbaio Date: Thu Aug 17 17:07:07 2017 New Revision: 448154 URL: https://svnweb.freebsd.org/changeset/ports/448154 Log: MFH: r448072 net-mgmt/zabbix32-*: Update to 3.2.7, Fixes security vulnerability Changes: https://www.zabbix.com/rn3.2.7 PR: 221563 Submitted by: pg@pakhom.spb.ru (maintainer) Security: 5df8bd95-8290-11e7-93af-005056925db4 Approved by: ports-secteam (feld) Modified: branches/2017Q3/net-mgmt/zabbix32-server/Makefile branches/2017Q3/net-mgmt/zabbix32-server/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net-mgmt/zabbix32-server/Makefile ============================================================================== --- branches/2017Q3/net-mgmt/zabbix32-server/Makefile Thu Aug 17 17:05:39 2017 (r448153) +++ branches/2017Q3/net-mgmt/zabbix32-server/Makefile Thu Aug 17 17:07:07 2017 (r448154) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= zabbix32 -PORTVERSION= 3.2.6 +PORTVERSION= 3.2.7 PORTREVISION?= 0 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} Modified: branches/2017Q3/net-mgmt/zabbix32-server/distinfo ============================================================================== --- branches/2017Q3/net-mgmt/zabbix32-server/distinfo Thu Aug 17 17:05:39 2017 (r448153) +++ branches/2017Q3/net-mgmt/zabbix32-server/distinfo Thu Aug 17 17:07:07 2017 (r448154) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495705486 -SHA256 (zabbix-3.2.6.tar.gz) = 98f025b39515b196552b8a23e2fe20a8180b5e99e613ce7378725a46ed8b62d6 -SIZE (zabbix-3.2.6.tar.gz) = 16008047 +TIMESTAMP = 1502890246 +SHA256 (zabbix-3.2.7.tar.gz) = 3ea0c299bd69bc728177128740f0476bc1a2c1de438330df5bbd8f5fc6090712 +SIZE (zabbix-3.2.7.tar.gz) = 16016367 From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:03:02 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C063DCD207; Thu, 17 Aug 2017 18:03:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CFF6682559; Thu, 17 Aug 2017 18:03:01 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HI31lZ060756; Thu, 17 Aug 2017 18:03:01 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HI30h0060752; Thu, 17 Aug 2017 18:03:00 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201708171803.v7HI30h0060752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 17 Aug 2017 18:03:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448161 - in branches/2017Q3/www: firefox firefox-i18n X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q3/www: firefox firefox-i18n X-SVN-Commit-Revision: 448161 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:03:02 -0000 Author: jbeich Date: Thu Aug 17 18:03:00 2017 New Revision: 448161 URL: https://svnweb.freebsd.org/changeset/ports/448161 Log: MFH: r448030 www/firefox: update to 55.0.2 Changes: https://www.mozilla.org/firefox/55.0.2/releasenotes/ Approved by: ports-secteam (feld) Modified: branches/2017Q3/www/firefox-i18n/Makefile branches/2017Q3/www/firefox-i18n/distinfo branches/2017Q3/www/firefox/Makefile branches/2017Q3/www/firefox/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/firefox-i18n/Makefile ============================================================================== --- branches/2017Q3/www/firefox-i18n/Makefile Thu Aug 17 18:00:36 2017 (r448160) +++ branches/2017Q3/www/firefox-i18n/Makefile Thu Aug 17 18:03:00 2017 (r448161) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 55.0.1 +PORTVERSION= 55.0.2 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build2/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: branches/2017Q3/www/firefox-i18n/distinfo ============================================================================== --- branches/2017Q3/www/firefox-i18n/distinfo Thu Aug 17 18:00:36 2017 (r448160) +++ branches/2017Q3/www/firefox-i18n/distinfo Thu Aug 17 18:03:00 2017 (r448161) @@ -1,191 +1,191 @@ -TIMESTAMP = 1502312473 -SHA256 (xpi/firefox-i18n-55.0.1/ach.xpi) = dd7814ceae9dfc8bb5f2f753caa4e1fe1710fd7acbfa561fda51a923c42a9c93 -SIZE (xpi/firefox-i18n-55.0.1/ach.xpi) = 447504 -SHA256 (xpi/firefox-i18n-55.0.1/af.xpi) = 45aec05be03e03c73e2d0179de621149dea373eb4622d956a2c54f1fc6b60a4a -SIZE (xpi/firefox-i18n-55.0.1/af.xpi) = 448924 -SHA256 (xpi/firefox-i18n-55.0.1/an.xpi) = 1c67b5ae972779f2208654272eca345a549c1e6aa5c59b15fd6e4c04785c3857 -SIZE (xpi/firefox-i18n-55.0.1/an.xpi) = 468638 -SHA256 (xpi/firefox-i18n-55.0.1/ar.xpi) = e15ae3685880f75b0dde0d691a6e6204698440192fc7136604c76d2dda08c3e2 -SIZE (xpi/firefox-i18n-55.0.1/ar.xpi) = 492760 -SHA256 (xpi/firefox-i18n-55.0.1/as.xpi) = bbd45adb073034d86bf520aae2aa78d2278489d20ebe359bd19dd9767aeafbfc -SIZE (xpi/firefox-i18n-55.0.1/as.xpi) = 501508 -SHA256 (xpi/firefox-i18n-55.0.1/ast.xpi) = 2b6aadfd0101ed1285fc5b6354a15cf7479c25b47a1819cdd80c94fcb26b66c3 -SIZE (xpi/firefox-i18n-55.0.1/ast.xpi) = 460841 -SHA256 (xpi/firefox-i18n-55.0.1/az.xpi) = d359f699a19722c0a65c1b3c2174c7c6219f01c366f156f036d23021831b4300 -SIZE (xpi/firefox-i18n-55.0.1/az.xpi) = 475368 -SHA256 (xpi/firefox-i18n-55.0.1/be.xpi) = 10dbc632413696bebec7a8c857ec37d121611a6ac3296df3155e17d6b156e9af -SIZE (xpi/firefox-i18n-55.0.1/be.xpi) = 522575 -SHA256 (xpi/firefox-i18n-55.0.1/bg.xpi) = 255ede1bcd7927e69c6a3f2c901abb33f567e7f77b017360bf93bd19509d61d4 -SIZE (xpi/firefox-i18n-55.0.1/bg.xpi) = 520012 -SHA256 (xpi/firefox-i18n-55.0.1/bn-BD.xpi) = 734613c4adb723ad3087db4921ac3c6b25ec2cb2834a34b42653ad373399e508 -SIZE (xpi/firefox-i18n-55.0.1/bn-BD.xpi) = 535107 -SHA256 (xpi/firefox-i18n-55.0.1/bn-IN.xpi) = d75e6896d2c8b83cc8bd63ea6c577a3dcccc9c4cebb12f56c3bfda5fb79daf5a -SIZE (xpi/firefox-i18n-55.0.1/bn-IN.xpi) = 526354 -SHA256 (xpi/firefox-i18n-55.0.1/br.xpi) = 528391063bff3899380fbdd6863434f340d089a5f800dae286929dd6ca2510c8 -SIZE (xpi/firefox-i18n-55.0.1/br.xpi) = 457060 -SHA256 (xpi/firefox-i18n-55.0.1/bs.xpi) = 88cc4aa3891e66397b01d7b750b3e932af677086c13d04c400e9b5966afed573 -SIZE (xpi/firefox-i18n-55.0.1/bs.xpi) = 465026 -SHA256 (xpi/firefox-i18n-55.0.1/ca.xpi) = daaa7ce4903db429821ba25889e75b9e7b11f7e320e2ae2e6c03ca1e20e01751 -SIZE (xpi/firefox-i18n-55.0.1/ca.xpi) = 473018 -SHA256 (xpi/firefox-i18n-55.0.1/cak.xpi) = 38bada639ddfb0d9abd166617363c2e333d7aa2e63c3d75f6856cd2eb0d31dee -SIZE (xpi/firefox-i18n-55.0.1/cak.xpi) = 481774 -SHA256 (xpi/firefox-i18n-55.0.1/cs.xpi) = 66196782f7151a01df153b9d763f25f49f035766342874577f586daacbe3a4f3 -SIZE (xpi/firefox-i18n-55.0.1/cs.xpi) = 476809 -SHA256 (xpi/firefox-i18n-55.0.1/cy.xpi) = ac9be82a4f0afdee6febc7cb4581c7f0ce3e900b48e27f00d6e2eb9b5a1e4618 -SIZE (xpi/firefox-i18n-55.0.1/cy.xpi) = 458725 -SHA256 (xpi/firefox-i18n-55.0.1/da.xpi) = 9829fe4ddb635f857b0b299bc752d554c00433750203a0e79d522db44a563ce1 -SIZE (xpi/firefox-i18n-55.0.1/da.xpi) = 452604 -SHA256 (xpi/firefox-i18n-55.0.1/de.xpi) = 1c8620fb483079be896c6a219429e0c13858d80678054bcaf9dc870ba783e5c4 -SIZE (xpi/firefox-i18n-55.0.1/de.xpi) = 465990 -SHA256 (xpi/firefox-i18n-55.0.1/dsb.xpi) = f1603c97d0ba802cce4563fb2107cce5197ff20abe6b1458767173f711d96916 -SIZE (xpi/firefox-i18n-55.0.1/dsb.xpi) = 482081 -SHA256 (xpi/firefox-i18n-55.0.1/el.xpi) = 8cb410e71bf96bc1e78fb9e1362ee9f6cc9622a5ad2041f100d2979f40b23d00 -SIZE (xpi/firefox-i18n-55.0.1/el.xpi) = 539777 -SHA256 (xpi/firefox-i18n-55.0.1/en-GB.xpi) = 2f5f058a2a721928bbd12c768765938d87ad6c37c072584d4811012bcbaa4fbe -SIZE (xpi/firefox-i18n-55.0.1/en-GB.xpi) = 439269 -SHA256 (xpi/firefox-i18n-55.0.1/en-US.xpi) = 7078baf35f5c02299683b1dcb3767bc796c9dc26a9dd649729ed4109b91fa8f4 -SIZE (xpi/firefox-i18n-55.0.1/en-US.xpi) = 439814 -SHA256 (xpi/firefox-i18n-55.0.1/en-ZA.xpi) = d0447449b12ce3c5325807b9a3f056be3815c58c839f11ea55c754f3bc87da86 -SIZE (xpi/firefox-i18n-55.0.1/en-ZA.xpi) = 438621 -SHA256 (xpi/firefox-i18n-55.0.1/eo.xpi) = b435b855b02c92bb80ab9f7388312c39c1b936ec3242b525ca50e8df41a9811c -SIZE (xpi/firefox-i18n-55.0.1/eo.xpi) = 461140 -SHA256 (xpi/firefox-i18n-55.0.1/es-AR.xpi) = 0712140958edc68a3050faa589cff1ac5525887d3309ed8ba24dda8f5b594fcf -SIZE (xpi/firefox-i18n-55.0.1/es-AR.xpi) = 467619 -SHA256 (xpi/firefox-i18n-55.0.1/es-CL.xpi) = 1b9162658325c6a3686056138ff5106f9829ddf842d9036ddc760b86c2d2b32a -SIZE (xpi/firefox-i18n-55.0.1/es-CL.xpi) = 471599 -SHA256 (xpi/firefox-i18n-55.0.1/es-ES.xpi) = c457a10bf90ea59af66f809fea67513a3762d3aacd9c8a0cd82235108b316959 -SIZE (xpi/firefox-i18n-55.0.1/es-ES.xpi) = 359824 -SHA256 (xpi/firefox-i18n-55.0.1/es-MX.xpi) = faea86e9b5f7c9e4e262108b27fe44a449859c9855c0d16b5e3ff2a78d67dd90 -SIZE (xpi/firefox-i18n-55.0.1/es-MX.xpi) = 474245 -SHA256 (xpi/firefox-i18n-55.0.1/et.xpi) = 8621792549cf4f6e7ae677577081727d95cd2108145e1396e6a7d6da5de74ee9 -SIZE (xpi/firefox-i18n-55.0.1/et.xpi) = 454471 -SHA256 (xpi/firefox-i18n-55.0.1/eu.xpi) = fb38c68ff5a351cba4c0e64ba0502328323241fc3393e0762674ce46cc419053 -SIZE (xpi/firefox-i18n-55.0.1/eu.xpi) = 460419 -SHA256 (xpi/firefox-i18n-55.0.1/fa.xpi) = 7b2b3856a1b6e02cf9671a5847aab6d2367bc1b44a576dca6b93824aec2f7561 -SIZE (xpi/firefox-i18n-55.0.1/fa.xpi) = 511561 -SHA256 (xpi/firefox-i18n-55.0.1/ff.xpi) = cae40f92930db2172446b5a33e8e3e8564738f615834e4485006ec930173530b -SIZE (xpi/firefox-i18n-55.0.1/ff.xpi) = 455294 -SHA256 (xpi/firefox-i18n-55.0.1/fi.xpi) = f57de383c38a423887b9b57f8a0cd8f861067bd1d86eea0a33b83928e8e3faeb -SIZE (xpi/firefox-i18n-55.0.1/fi.xpi) = 453945 -SHA256 (xpi/firefox-i18n-55.0.1/fr.xpi) = 202df2c44b9c248819c41b411f3380edad69244e506c1ec77e7833e75841e232 -SIZE (xpi/firefox-i18n-55.0.1/fr.xpi) = 476668 -SHA256 (xpi/firefox-i18n-55.0.1/fy-NL.xpi) = b7f9c5f0d4ffbaa29bf7b16e1f712e430fc489e5aa8c71f2e9d73ae97dc5a119 -SIZE (xpi/firefox-i18n-55.0.1/fy-NL.xpi) = 469971 -SHA256 (xpi/firefox-i18n-55.0.1/ga-IE.xpi) = e685e0d0c60499b209f4334d54cb45f947448edf24f7208804f81dc0fa6f5665 -SIZE (xpi/firefox-i18n-55.0.1/ga-IE.xpi) = 481440 -SHA256 (xpi/firefox-i18n-55.0.1/gd.xpi) = 6c05773dff34bc8175dbb517e79052ec18dbe4d3afc8fc2954bb1d4078f3bd9b -SIZE (xpi/firefox-i18n-55.0.1/gd.xpi) = 469055 -SHA256 (xpi/firefox-i18n-55.0.1/gl.xpi) = 10174252a20cd7cbceb587e2dc949a61fd9a43fce94c4e0629a7d6c9e295ef87 -SIZE (xpi/firefox-i18n-55.0.1/gl.xpi) = 459111 -SHA256 (xpi/firefox-i18n-55.0.1/gn.xpi) = 9963eac39e177d798969daa1559a54908f90234ef25c68061407661976482fbe -SIZE (xpi/firefox-i18n-55.0.1/gn.xpi) = 476201 -SHA256 (xpi/firefox-i18n-55.0.1/gu-IN.xpi) = decf4ce02bf2079beca9d91ce56c4be2cc806a6854170ffc203aa31880c83459 -SIZE (xpi/firefox-i18n-55.0.1/gu-IN.xpi) = 498986 -SHA256 (xpi/firefox-i18n-55.0.1/he.xpi) = 98cef48c565a8150dbe31aecbcaf3a63c541715ade1220ba37a68105e83556cb -SIZE (xpi/firefox-i18n-55.0.1/he.xpi) = 479882 -SHA256 (xpi/firefox-i18n-55.0.1/hi-IN.xpi) = 43859e5074151ba5571c2ea2a3a9b1957d4ca99e056c305da3e30d111b4d1ca1 -SIZE (xpi/firefox-i18n-55.0.1/hi-IN.xpi) = 530571 -SHA256 (xpi/firefox-i18n-55.0.1/hr.xpi) = 22fff17ae146db6f313fbde5f429d9b35e9a88fbade7351239e4054e6fb9da42 -SIZE (xpi/firefox-i18n-55.0.1/hr.xpi) = 467992 -SHA256 (xpi/firefox-i18n-55.0.1/hsb.xpi) = e38d8d9952a2be7f3bbf0cb15ecc1eb4f529e4c36c9f507d795a7fa99a0af156 -SIZE (xpi/firefox-i18n-55.0.1/hsb.xpi) = 479798 -SHA256 (xpi/firefox-i18n-55.0.1/hu.xpi) = 062b955c742a543d2b653e4879c90b7c2ff96372d3f55b1486c1953c9d7fd470 -SIZE (xpi/firefox-i18n-55.0.1/hu.xpi) = 481645 -SHA256 (xpi/firefox-i18n-55.0.1/hy-AM.xpi) = ea10f974acaf0006c851fc7879321f02900b6ba574e2cd1117a701e790ffef7a -SIZE (xpi/firefox-i18n-55.0.1/hy-AM.xpi) = 520879 -SHA256 (xpi/firefox-i18n-55.0.1/id.xpi) = 48a99906a98d0bc7f9220c4c648e6ebc5428a1b1fdf8041f7d8d17730efeafa1 -SIZE (xpi/firefox-i18n-55.0.1/id.xpi) = 450290 -SHA256 (xpi/firefox-i18n-55.0.1/is.xpi) = f3d8af34fb48721d53e06ddefe88047b5004e10640d0e0b9924bfbf535b7fed3 -SIZE (xpi/firefox-i18n-55.0.1/is.xpi) = 464373 -SHA256 (xpi/firefox-i18n-55.0.1/it.xpi) = b77325ec71144fbe280e369ec0e1dcf72867aff8602eb14102889e09d087822d -SIZE (xpi/firefox-i18n-55.0.1/it.xpi) = 352941 -SHA256 (xpi/firefox-i18n-55.0.1/ja.xpi) = 6b174b01ae0d4cd9101d88c8d5ec30a7394387e13ad8b1462a886368395de6d1 -SIZE (xpi/firefox-i18n-55.0.1/ja.xpi) = 519764 -SHA256 (xpi/firefox-i18n-55.0.1/ka.xpi) = e69009c27b8810db9e4f9327d7a85c9c07cf4fa1b650999ee71b2706257b3a7e -SIZE (xpi/firefox-i18n-55.0.1/ka.xpi) = 493535 -SHA256 (xpi/firefox-i18n-55.0.1/kab.xpi) = aaf82a38798f0a0af99fe3c0a66024d604ab62dcab1839ea8b92d1d7dc6b8cc1 -SIZE (xpi/firefox-i18n-55.0.1/kab.xpi) = 470044 -SHA256 (xpi/firefox-i18n-55.0.1/kk.xpi) = 3e52fb9036d0dacf71d831b472816eec29114b018da2ba2a7a64eafef70e9b2d -SIZE (xpi/firefox-i18n-55.0.1/kk.xpi) = 526707 -SHA256 (xpi/firefox-i18n-55.0.1/km.xpi) = e45c29be853d66afcd3b43f7d78cca8a4db7f1731d487161b57a043bf6f4d951 -SIZE (xpi/firefox-i18n-55.0.1/km.xpi) = 540646 -SHA256 (xpi/firefox-i18n-55.0.1/kn.xpi) = 6be0a26c8fae5e461fa45b6a3c574bce7689d0fed0571fdd12e738288d2341a2 -SIZE (xpi/firefox-i18n-55.0.1/kn.xpi) = 538860 -SHA256 (xpi/firefox-i18n-55.0.1/ko.xpi) = 8d2ba62b56df3e43c20e04d0920ca4608c4956e3590a6a23abe243ad8c597655 -SIZE (xpi/firefox-i18n-55.0.1/ko.xpi) = 494547 -SHA256 (xpi/firefox-i18n-55.0.1/lij.xpi) = f2d68cfb84305f9dc72b6fb04fe0f3bdfbdbc549d683cf2b8229263d97d565a1 -SIZE (xpi/firefox-i18n-55.0.1/lij.xpi) = 458698 -SHA256 (xpi/firefox-i18n-55.0.1/lt.xpi) = 275ff3a72b128b9db0413e0cade162a179a3a0fd702a41c94411bf74a69b97cd -SIZE (xpi/firefox-i18n-55.0.1/lt.xpi) = 481082 -SHA256 (xpi/firefox-i18n-55.0.1/lv.xpi) = 6c9c5244a1c5ba078c9740851b43f0de6d0d79afcd5c83b3b6dd81e3165fc9ef -SIZE (xpi/firefox-i18n-55.0.1/lv.xpi) = 473736 -SHA256 (xpi/firefox-i18n-55.0.1/mai.xpi) = 9b5b30fcc3f64e95c073c65cfb857bdbec62e3af630b5443220963b507f28fc4 -SIZE (xpi/firefox-i18n-55.0.1/mai.xpi) = 517894 -SHA256 (xpi/firefox-i18n-55.0.1/mk.xpi) = 1d33aacc5f3db9272a53b77c7aaab17cb03d3bba2480e90e9f4ae88ed178f277 -SIZE (xpi/firefox-i18n-55.0.1/mk.xpi) = 500207 -SHA256 (xpi/firefox-i18n-55.0.1/ml.xpi) = 585d1321d9e765203b1c693609001ed978868aadaa19c4a0f25ad1162c66f8bb -SIZE (xpi/firefox-i18n-55.0.1/ml.xpi) = 540982 -SHA256 (xpi/firefox-i18n-55.0.1/mr.xpi) = f567327d23cc88411c3dadb17744988ad4bc9157dcbb8d63d4e9013213fa5cd3 -SIZE (xpi/firefox-i18n-55.0.1/mr.xpi) = 528249 -SHA256 (xpi/firefox-i18n-55.0.1/ms.xpi) = 20e472acc73826653d0f6d73472919736b12cd682fc589cd65108878a0288f07 -SIZE (xpi/firefox-i18n-55.0.1/ms.xpi) = 459191 -SHA256 (xpi/firefox-i18n-55.0.1/my.xpi) = 6127217183acbd6272073ba7d2d63f27204a56cc91b0f6fe27a1a835cc3f879a -SIZE (xpi/firefox-i18n-55.0.1/my.xpi) = 528097 -SHA256 (xpi/firefox-i18n-55.0.1/nb-NO.xpi) = 951bc707774b4772115302e5e17f1951100eb818ecc663c472af3e214a1eae64 -SIZE (xpi/firefox-i18n-55.0.1/nb-NO.xpi) = 457645 -SHA256 (xpi/firefox-i18n-55.0.1/nl.xpi) = 4e79c3c23e2dc8612f94e8df7e535fe31b33996f974ddbb390b3531bfef38d80 -SIZE (xpi/firefox-i18n-55.0.1/nl.xpi) = 461510 -SHA256 (xpi/firefox-i18n-55.0.1/nn-NO.xpi) = e9f20af1ce0ba6b36dd79746292dfd900f939d8ce48b5d11147b66777738e415 -SIZE (xpi/firefox-i18n-55.0.1/nn-NO.xpi) = 458457 -SHA256 (xpi/firefox-i18n-55.0.1/or.xpi) = b4320830c582c73acee3e79d363c1867a136b36f2ebba32cf1f8a7b530218830 -SIZE (xpi/firefox-i18n-55.0.1/or.xpi) = 511354 -SHA256 (xpi/firefox-i18n-55.0.1/pa-IN.xpi) = fe4cc1ed5e1289b18eedf6d102a88460fd2cdb84eb60f7fc02588f5d18b1815b -SIZE (xpi/firefox-i18n-55.0.1/pa-IN.xpi) = 498453 -SHA256 (xpi/firefox-i18n-55.0.1/pl.xpi) = 0c7d6483a1240dadb2897dd47157456bede2a4387ff193032881db9b5bdbdee0 -SIZE (xpi/firefox-i18n-55.0.1/pl.xpi) = 372430 -SHA256 (xpi/firefox-i18n-55.0.1/pt-BR.xpi) = ac62ce753a160e25b5fd44a0e335fdd79bc392d870e6ac900768ab1781e66064 -SIZE (xpi/firefox-i18n-55.0.1/pt-BR.xpi) = 462717 -SHA256 (xpi/firefox-i18n-55.0.1/pt-PT.xpi) = 7426dd1a89ba871da9d966b29b9168ff345964b7d68d2163c86c1655c47e60e3 -SIZE (xpi/firefox-i18n-55.0.1/pt-PT.xpi) = 465237 -SHA256 (xpi/firefox-i18n-55.0.1/rm.xpi) = 864dca54a7dc2c6974bebaedf9042cbfbcced0a85de2aee0f9d80a232074df9f -SIZE (xpi/firefox-i18n-55.0.1/rm.xpi) = 458265 -SHA256 (xpi/firefox-i18n-55.0.1/ro.xpi) = 6cb6e1634a235fb2e46e2ff25f33f89c1c61114782a1c58f620d49d55de748ef -SIZE (xpi/firefox-i18n-55.0.1/ro.xpi) = 462973 -SHA256 (xpi/firefox-i18n-55.0.1/ru.xpi) = 39997f59a5710be0428496edbe6954625f3c321cb89a20c4eb1901a621cf2c3a -SIZE (xpi/firefox-i18n-55.0.1/ru.xpi) = 530901 -SHA256 (xpi/firefox-i18n-55.0.1/si.xpi) = c4cfa062a266c3ff7f5847dc060c78be9dd91a792f79a2092122ac377270876f -SIZE (xpi/firefox-i18n-55.0.1/si.xpi) = 508353 -SHA256 (xpi/firefox-i18n-55.0.1/sk.xpi) = 52e71b9050686130559e511c877bb06d76e7765903f31014b63621056e882eb1 -SIZE (xpi/firefox-i18n-55.0.1/sk.xpi) = 487583 -SHA256 (xpi/firefox-i18n-55.0.1/sl.xpi) = b9702991ebd8035610c341bc1b08136ac7711101632f5136dc7a1ea883e474f6 -SIZE (xpi/firefox-i18n-55.0.1/sl.xpi) = 465760 -SHA256 (xpi/firefox-i18n-55.0.1/son.xpi) = 779b7d472496361a860910ce86f7e7281bedf6bddef001923951b52f80e9ff1f -SIZE (xpi/firefox-i18n-55.0.1/son.xpi) = 456959 -SHA256 (xpi/firefox-i18n-55.0.1/sq.xpi) = 899db3ff59388671fef58e60add6f9fe349d0812c2bc4483637ddbe651943e54 -SIZE (xpi/firefox-i18n-55.0.1/sq.xpi) = 470631 -SHA256 (xpi/firefox-i18n-55.0.1/sr.xpi) = 97c5c450ddd4fb92da585011da59e962522bca2f731b739cd5c002012a607673 -SIZE (xpi/firefox-i18n-55.0.1/sr.xpi) = 494878 -SHA256 (xpi/firefox-i18n-55.0.1/sv-SE.xpi) = 28793b25536173166d37e248aeeb4f0374923a78e7401d906c9a206b68794a92 -SIZE (xpi/firefox-i18n-55.0.1/sv-SE.xpi) = 466011 -SHA256 (xpi/firefox-i18n-55.0.1/ta.xpi) = 3c261563af14eaacb71b18cec93c6bac8b52c4c8b2c6f8daa450ca999b59dd1d -SIZE (xpi/firefox-i18n-55.0.1/ta.xpi) = 519998 -SHA256 (xpi/firefox-i18n-55.0.1/te.xpi) = 836b79bf5d691cec5e6893b58b22d1c995d20627698dba516851e98c96d6e895 -SIZE (xpi/firefox-i18n-55.0.1/te.xpi) = 542539 -SHA256 (xpi/firefox-i18n-55.0.1/th.xpi) = 9fbce74883162f9330f38f5da6ed2c4b81e8a0eefd78b9bf59cc919714bfa343 -SIZE (xpi/firefox-i18n-55.0.1/th.xpi) = 511903 -SHA256 (xpi/firefox-i18n-55.0.1/tr.xpi) = df231571df6ce29eee1885630e9544ca333f33d7e09a14d93eea7c3e06ac5395 -SIZE (xpi/firefox-i18n-55.0.1/tr.xpi) = 472160 -SHA256 (xpi/firefox-i18n-55.0.1/uk.xpi) = 3373ec3addc81d5177157d3f16ab0e37c0ca7f97ddc56027a72bb5632314e95d -SIZE (xpi/firefox-i18n-55.0.1/uk.xpi) = 526436 -SHA256 (xpi/firefox-i18n-55.0.1/ur.xpi) = 0153a5af7e98c8a6e8afafb0bfd989ed71f05f12c05215bb3ff467af8614f7e6 -SIZE (xpi/firefox-i18n-55.0.1/ur.xpi) = 520753 -SHA256 (xpi/firefox-i18n-55.0.1/uz.xpi) = a15d82f940f696d6c70cb9d3d8b81d458c0936ccc95ff79d7d2e786536b9bf1e -SIZE (xpi/firefox-i18n-55.0.1/uz.xpi) = 467671 -SHA256 (xpi/firefox-i18n-55.0.1/vi.xpi) = 718514a6874900e2d8b78a3f5b71335ee4d67a42345bc1e101abada9f461bf89 -SIZE (xpi/firefox-i18n-55.0.1/vi.xpi) = 476527 -SHA256 (xpi/firefox-i18n-55.0.1/xh.xpi) = 33183835d979284be68c7904ec717fe1f92938a5dba067c7b7fb5e3eb5b0991c -SIZE (xpi/firefox-i18n-55.0.1/xh.xpi) = 470719 -SHA256 (xpi/firefox-i18n-55.0.1/zh-CN.xpi) = 56e42000a5528515e26962fe288c1571ca40cb671189a2496ab8d3a6de097472 -SIZE (xpi/firefox-i18n-55.0.1/zh-CN.xpi) = 490383 -SHA256 (xpi/firefox-i18n-55.0.1/zh-TW.xpi) = e5b94d27d2ef86e1945f4b8757a2f7149125b998f9a3316d0b4d1732646384c1 -SIZE (xpi/firefox-i18n-55.0.1/zh-TW.xpi) = 489347 +TIMESTAMP = 1502835004 +SHA256 (xpi/firefox-i18n-55.0.2/ach.xpi) = bfb4a7cdabd4de84f0fb9afd7088c63a5bf9fabcf029043ce29ca31e5445aa99 +SIZE (xpi/firefox-i18n-55.0.2/ach.xpi) = 447504 +SHA256 (xpi/firefox-i18n-55.0.2/af.xpi) = 9a184de60398afbb2ebc295bdeab3d380d279f10058e740f24a3698f58352ff9 +SIZE (xpi/firefox-i18n-55.0.2/af.xpi) = 448924 +SHA256 (xpi/firefox-i18n-55.0.2/an.xpi) = 0a2c0635cb5c93ee19f1349ee030deda1eb8424712139ea7dac907c6802163a5 +SIZE (xpi/firefox-i18n-55.0.2/an.xpi) = 468638 +SHA256 (xpi/firefox-i18n-55.0.2/ar.xpi) = 59fec790b299d60a79ff1c65f33badbc72ec35996415e556886c89c8eabf162f +SIZE (xpi/firefox-i18n-55.0.2/ar.xpi) = 492759 +SHA256 (xpi/firefox-i18n-55.0.2/as.xpi) = d86959041861745cf4ab092099a4589efc0e92c1e108fa4742a6df38d68bbf62 +SIZE (xpi/firefox-i18n-55.0.2/as.xpi) = 501507 +SHA256 (xpi/firefox-i18n-55.0.2/ast.xpi) = dd59a8c8f8b98da06f4d396e7fda15321b4997cd56b74a68ad92d99bc587c9cc +SIZE (xpi/firefox-i18n-55.0.2/ast.xpi) = 460841 +SHA256 (xpi/firefox-i18n-55.0.2/az.xpi) = afc69881d209ee9fbb6132ae6fa6aeb419d97ef59ff11947b49a1639b8ecd7d0 +SIZE (xpi/firefox-i18n-55.0.2/az.xpi) = 475368 +SHA256 (xpi/firefox-i18n-55.0.2/be.xpi) = c6bf8ca17e8fd12fa043c2467ee64aff590c30afa8739479faff4b1cffe1da38 +SIZE (xpi/firefox-i18n-55.0.2/be.xpi) = 522575 +SHA256 (xpi/firefox-i18n-55.0.2/bg.xpi) = 40a1381e347e117dc1bdf153ac5edd58b4afd9326dcebc7305f795e2ec87c3dc +SIZE (xpi/firefox-i18n-55.0.2/bg.xpi) = 520012 +SHA256 (xpi/firefox-i18n-55.0.2/bn-BD.xpi) = b005201e63d39f880940e925e3b3d4b3db2ceedcf778568ddbf56547a3570e10 +SIZE (xpi/firefox-i18n-55.0.2/bn-BD.xpi) = 535107 +SHA256 (xpi/firefox-i18n-55.0.2/bn-IN.xpi) = 762820b3c1761f164a4fdd19988f12469804d79b01baf1acdfc72aca1ff279cf +SIZE (xpi/firefox-i18n-55.0.2/bn-IN.xpi) = 526354 +SHA256 (xpi/firefox-i18n-55.0.2/br.xpi) = 93f2788cf935f8e911f36f83762a31c28b01acddff46061cc0aab9124fe4909a +SIZE (xpi/firefox-i18n-55.0.2/br.xpi) = 457060 +SHA256 (xpi/firefox-i18n-55.0.2/bs.xpi) = b999ef74b583a07afaf37f9287ac71a571fbc18b0575220f2a45c55b5ccd785c +SIZE (xpi/firefox-i18n-55.0.2/bs.xpi) = 465026 +SHA256 (xpi/firefox-i18n-55.0.2/ca.xpi) = 9659631f5e6758339352b709393c449bb64b83313bb8d7884d260dff9bd03a6d +SIZE (xpi/firefox-i18n-55.0.2/ca.xpi) = 473018 +SHA256 (xpi/firefox-i18n-55.0.2/cak.xpi) = afe2e530b011c42c6016b29a275393f6cc2f5759f77fda142d0cebf9656f5549 +SIZE (xpi/firefox-i18n-55.0.2/cak.xpi) = 481774 +SHA256 (xpi/firefox-i18n-55.0.2/cs.xpi) = 747555a52c9a2730b1758bdb6b292e0763f348b8edd63981de5359edfda64a66 +SIZE (xpi/firefox-i18n-55.0.2/cs.xpi) = 476809 +SHA256 (xpi/firefox-i18n-55.0.2/cy.xpi) = 05c9a6af92169e3c96e6ec086f9208701ab343e4ae2bd5e9cab2ef2e1847063d +SIZE (xpi/firefox-i18n-55.0.2/cy.xpi) = 458725 +SHA256 (xpi/firefox-i18n-55.0.2/da.xpi) = 9e51e34764588b9568d1bae8c10a78bd093af240707fd1da99bdbcc73ca24891 +SIZE (xpi/firefox-i18n-55.0.2/da.xpi) = 452604 +SHA256 (xpi/firefox-i18n-55.0.2/de.xpi) = f976be213b1bd161a3dc8429580e2565490781c6dfe63d7660a9c929680dbda0 +SIZE (xpi/firefox-i18n-55.0.2/de.xpi) = 465990 +SHA256 (xpi/firefox-i18n-55.0.2/dsb.xpi) = f9b1e337d9bd37392729dcea8817c57091bc651b9725cb5f283ac803a3bc1a90 +SIZE (xpi/firefox-i18n-55.0.2/dsb.xpi) = 482081 +SHA256 (xpi/firefox-i18n-55.0.2/el.xpi) = f850003853c1c93c560ba48df4f208292c2a6b7e69d3b24ca4fdb54c03d11023 +SIZE (xpi/firefox-i18n-55.0.2/el.xpi) = 539777 +SHA256 (xpi/firefox-i18n-55.0.2/en-GB.xpi) = f2e5be6fef803229bd6d46bbf6ac6a53cd48995aecb4089055846a2116a09875 +SIZE (xpi/firefox-i18n-55.0.2/en-GB.xpi) = 439269 +SHA256 (xpi/firefox-i18n-55.0.2/en-US.xpi) = 4821f12b5a7543d4284a091425b8edbde0877d7c58ec5bea8483e055f2a4f695 +SIZE (xpi/firefox-i18n-55.0.2/en-US.xpi) = 439814 +SHA256 (xpi/firefox-i18n-55.0.2/en-ZA.xpi) = 3d9ae4ae510bac83e8afd780b392648d840a668daa6c8aaa053239c0aeb08cd9 +SIZE (xpi/firefox-i18n-55.0.2/en-ZA.xpi) = 438621 +SHA256 (xpi/firefox-i18n-55.0.2/eo.xpi) = 8b5aec1fa22944e6b03f0afc3a20ead5068c3a11331c36e6648f19d3d9f8bd49 +SIZE (xpi/firefox-i18n-55.0.2/eo.xpi) = 461140 +SHA256 (xpi/firefox-i18n-55.0.2/es-AR.xpi) = 35d65264214e1ec2fd29a63657d83bfb0f5c39e494414e6188572457244daec6 +SIZE (xpi/firefox-i18n-55.0.2/es-AR.xpi) = 467619 +SHA256 (xpi/firefox-i18n-55.0.2/es-CL.xpi) = 8832427bf10acdc2862b7c40b188da515969644347b789834b762fe48e40eddb +SIZE (xpi/firefox-i18n-55.0.2/es-CL.xpi) = 471599 +SHA256 (xpi/firefox-i18n-55.0.2/es-ES.xpi) = ca9c14ff64cf4e4350d1fa3988cd62ff2af9442fd3b9f29db27717acd1f2048b +SIZE (xpi/firefox-i18n-55.0.2/es-ES.xpi) = 359824 +SHA256 (xpi/firefox-i18n-55.0.2/es-MX.xpi) = de81730bc1342b46f1b4efd492e1ad34f68d87d8b08fd6c18a9ef7d593f9d950 +SIZE (xpi/firefox-i18n-55.0.2/es-MX.xpi) = 474245 +SHA256 (xpi/firefox-i18n-55.0.2/et.xpi) = 82528a4430d928f43fb22e230d84f40ad2dce69a1de05167911dc34f40f161ae +SIZE (xpi/firefox-i18n-55.0.2/et.xpi) = 454471 +SHA256 (xpi/firefox-i18n-55.0.2/eu.xpi) = 408570b28e435c5a13fd680cfd5c935ce7e368366ff1ad8d83b1a36153b5797a +SIZE (xpi/firefox-i18n-55.0.2/eu.xpi) = 460419 +SHA256 (xpi/firefox-i18n-55.0.2/fa.xpi) = d0e74715212faa1aec8802830bb2a7345be88cbf9e40e809a0dd3dc9dd5f70ea +SIZE (xpi/firefox-i18n-55.0.2/fa.xpi) = 511561 +SHA256 (xpi/firefox-i18n-55.0.2/ff.xpi) = 7d1f12435a321403c4126455ac765ae672d38f9b7de7e712dde01b1a36be032b +SIZE (xpi/firefox-i18n-55.0.2/ff.xpi) = 455294 +SHA256 (xpi/firefox-i18n-55.0.2/fi.xpi) = 508a3b31e1640ad526679fc88f8a4880e961702647e69a1a729c59be6aa508a1 +SIZE (xpi/firefox-i18n-55.0.2/fi.xpi) = 453945 +SHA256 (xpi/firefox-i18n-55.0.2/fr.xpi) = f7a9ae993e3ddba9059ca908feb09c789f589c849144d97e0510796fd9698401 +SIZE (xpi/firefox-i18n-55.0.2/fr.xpi) = 476667 +SHA256 (xpi/firefox-i18n-55.0.2/fy-NL.xpi) = c6195293c22ee63afc93c013b6812d5b8916e5bfcb5d69d435c96cf767aa6c4e +SIZE (xpi/firefox-i18n-55.0.2/fy-NL.xpi) = 469971 +SHA256 (xpi/firefox-i18n-55.0.2/ga-IE.xpi) = f30b15373157cc539e337edbad29b79e0397049bb00eff6cdbbbbc5bc22ab15d +SIZE (xpi/firefox-i18n-55.0.2/ga-IE.xpi) = 481440 +SHA256 (xpi/firefox-i18n-55.0.2/gd.xpi) = e0ef3361910c4c78ad273be5a3169619d6aac11d47b9aba94d5e526aea920b75 +SIZE (xpi/firefox-i18n-55.0.2/gd.xpi) = 469055 +SHA256 (xpi/firefox-i18n-55.0.2/gl.xpi) = 412cebca178f8c1ebef5da9d55051ade5ca61f57d298ed97d1f83e23d3d786b1 +SIZE (xpi/firefox-i18n-55.0.2/gl.xpi) = 459111 +SHA256 (xpi/firefox-i18n-55.0.2/gn.xpi) = 6f6e6db35e1dfd8e9d321fea75ad2e263f78d66119d0fc57639fb83aa6ba6373 +SIZE (xpi/firefox-i18n-55.0.2/gn.xpi) = 476201 +SHA256 (xpi/firefox-i18n-55.0.2/gu-IN.xpi) = d64031df09998b827aa09977ee9c07b50054f4caf864608077eeeddef2f4a8d3 +SIZE (xpi/firefox-i18n-55.0.2/gu-IN.xpi) = 498986 +SHA256 (xpi/firefox-i18n-55.0.2/he.xpi) = f692107175337753f8cd153576142211d0ac380539a660481dc2fd15883390c9 +SIZE (xpi/firefox-i18n-55.0.2/he.xpi) = 479882 +SHA256 (xpi/firefox-i18n-55.0.2/hi-IN.xpi) = 766c2eaa8cf73a033b6beb9001b8e19f97e7c4464aa543fc25ea53eb41c19514 +SIZE (xpi/firefox-i18n-55.0.2/hi-IN.xpi) = 530572 +SHA256 (xpi/firefox-i18n-55.0.2/hr.xpi) = 69c20124670aafdd216f7b4982f55771603a72efd007420a1baec299d6fc616d +SIZE (xpi/firefox-i18n-55.0.2/hr.xpi) = 467992 +SHA256 (xpi/firefox-i18n-55.0.2/hsb.xpi) = 22723b8195eeb0d93d98e8b47f296982e6b34021b7313107b1f14200d4ba6fc8 +SIZE (xpi/firefox-i18n-55.0.2/hsb.xpi) = 479798 +SHA256 (xpi/firefox-i18n-55.0.2/hu.xpi) = b6813598a6018f993bf69b0a507d3f66986a36c47987d6068a305afa3ae85ef3 +SIZE (xpi/firefox-i18n-55.0.2/hu.xpi) = 481645 +SHA256 (xpi/firefox-i18n-55.0.2/hy-AM.xpi) = aae9cfb28813295d1d511dc26c790dc88b13f8781612c8f14556ff01505df73e +SIZE (xpi/firefox-i18n-55.0.2/hy-AM.xpi) = 520878 +SHA256 (xpi/firefox-i18n-55.0.2/id.xpi) = ac15a346d6f85d96e9df737346f5103955d72ef3ead75676ab228e4c208c35af +SIZE (xpi/firefox-i18n-55.0.2/id.xpi) = 450290 +SHA256 (xpi/firefox-i18n-55.0.2/is.xpi) = 4247bb15e96239ec7c04020b3581afd573b2700a1e36180f296b4b182f984cae +SIZE (xpi/firefox-i18n-55.0.2/is.xpi) = 464372 +SHA256 (xpi/firefox-i18n-55.0.2/it.xpi) = 2d80c0646508e0b8c7ca749fd5d48a9ccd585a5f8a0f4d50bc37826dfd37fcb2 +SIZE (xpi/firefox-i18n-55.0.2/it.xpi) = 352941 +SHA256 (xpi/firefox-i18n-55.0.2/ja.xpi) = 32453552cb85c7507bfec4ddddbe6eedc11edd73a816d49f3c7c6ac37b5cc294 +SIZE (xpi/firefox-i18n-55.0.2/ja.xpi) = 519764 +SHA256 (xpi/firefox-i18n-55.0.2/ka.xpi) = a4b6a2ddb9a6136e989370d7f350d44b96e2f19336bc0d7e53e15261cc7a733a +SIZE (xpi/firefox-i18n-55.0.2/ka.xpi) = 493535 +SHA256 (xpi/firefox-i18n-55.0.2/kab.xpi) = 436e7b2ef41c8737b1ed6f2d962ed8f57b15a4f3f69ac7c1c016d7dae919fb67 +SIZE (xpi/firefox-i18n-55.0.2/kab.xpi) = 470044 +SHA256 (xpi/firefox-i18n-55.0.2/kk.xpi) = 2f4e1c23eb506e12e43097c7338896c0bbab3c31508ffb393bcedb0a5e3318b8 +SIZE (xpi/firefox-i18n-55.0.2/kk.xpi) = 526707 +SHA256 (xpi/firefox-i18n-55.0.2/km.xpi) = 052c64e85a5c8f212de6b2a2343949ed9fc71d0b576af9e758ed1a6d7aac6180 +SIZE (xpi/firefox-i18n-55.0.2/km.xpi) = 540646 +SHA256 (xpi/firefox-i18n-55.0.2/kn.xpi) = 2769feec48f1e8d5c4102c9c7178e021df31c38229c293f2ba54502b6adbddac +SIZE (xpi/firefox-i18n-55.0.2/kn.xpi) = 538859 +SHA256 (xpi/firefox-i18n-55.0.2/ko.xpi) = b4e1eb8a9f1f97e04c929f3068c5bc5d6915747b8680aa8bdd22cdb82cebb775 +SIZE (xpi/firefox-i18n-55.0.2/ko.xpi) = 494547 +SHA256 (xpi/firefox-i18n-55.0.2/lij.xpi) = ce352cbea0b218e852d09f7c644ddd4470906d8a6dc69fc91f1a20fd915788a0 +SIZE (xpi/firefox-i18n-55.0.2/lij.xpi) = 458698 +SHA256 (xpi/firefox-i18n-55.0.2/lt.xpi) = b8ecfbdad46ce8ecdf6dd3c640010873ea0dfffaf8709a9a9a5b09c47e417e34 +SIZE (xpi/firefox-i18n-55.0.2/lt.xpi) = 481082 +SHA256 (xpi/firefox-i18n-55.0.2/lv.xpi) = 1fdf44120ccac809cef11e96e2ab905bcb2cdd299bfb0ef47f86dba7bed10779 +SIZE (xpi/firefox-i18n-55.0.2/lv.xpi) = 473736 +SHA256 (xpi/firefox-i18n-55.0.2/mai.xpi) = e5821456e92e43fb5a4e55d1fb9ed5233ea73c5d00fda1dac7c3aa79d41ca78b +SIZE (xpi/firefox-i18n-55.0.2/mai.xpi) = 517894 +SHA256 (xpi/firefox-i18n-55.0.2/mk.xpi) = 3ec887c7024eb954f0c89edf51e521ed57e209f388bcbab4b79c8fccc18e4d8e +SIZE (xpi/firefox-i18n-55.0.2/mk.xpi) = 500207 +SHA256 (xpi/firefox-i18n-55.0.2/ml.xpi) = 2a704d9f28bf3b2b08bc4bcfbdcd452d0400d7823ec0e727f3040519264b76be +SIZE (xpi/firefox-i18n-55.0.2/ml.xpi) = 540982 +SHA256 (xpi/firefox-i18n-55.0.2/mr.xpi) = fc983bfffff3f06b43f3c8104dcb1f828a28e312696f428e74ab9756fcdb7cea +SIZE (xpi/firefox-i18n-55.0.2/mr.xpi) = 528249 +SHA256 (xpi/firefox-i18n-55.0.2/ms.xpi) = 0763c540529962b74bd829eab79d56a126a57002f00b65a7b4ddeb429c4b6b96 +SIZE (xpi/firefox-i18n-55.0.2/ms.xpi) = 459191 +SHA256 (xpi/firefox-i18n-55.0.2/my.xpi) = c9f07b8943758282bcadea50afca33c8a63ded415e2649b0ca18166ef066f966 +SIZE (xpi/firefox-i18n-55.0.2/my.xpi) = 528097 +SHA256 (xpi/firefox-i18n-55.0.2/nb-NO.xpi) = 0d81e93a7a696677a6a0acf390ffce22de063919e7e1aa3ceaf83692685f0e38 +SIZE (xpi/firefox-i18n-55.0.2/nb-NO.xpi) = 457645 +SHA256 (xpi/firefox-i18n-55.0.2/nl.xpi) = ae947b30da46fd27b36257aa021dad16810ad053195aa0e5e6e7e353fc3caf94 +SIZE (xpi/firefox-i18n-55.0.2/nl.xpi) = 461510 +SHA256 (xpi/firefox-i18n-55.0.2/nn-NO.xpi) = e5b7c72907e19605a1415d2c3787e9fd36409545e7189b4afa7311db061e0923 +SIZE (xpi/firefox-i18n-55.0.2/nn-NO.xpi) = 458457 +SHA256 (xpi/firefox-i18n-55.0.2/or.xpi) = 277b31996462cfd1a001a333b99c538b409b89643aff7649090d37b14ea5ca44 +SIZE (xpi/firefox-i18n-55.0.2/or.xpi) = 511354 +SHA256 (xpi/firefox-i18n-55.0.2/pa-IN.xpi) = a2f6eacf6f683c01b74adaab8335db7d2aeb38829f0129b8b3bd22a2c5ccbc35 +SIZE (xpi/firefox-i18n-55.0.2/pa-IN.xpi) = 498453 +SHA256 (xpi/firefox-i18n-55.0.2/pl.xpi) = b308601a27898eb4cceeb6ca853fbc34bf152ee805921d05a17e72fb9dfa091b +SIZE (xpi/firefox-i18n-55.0.2/pl.xpi) = 372429 +SHA256 (xpi/firefox-i18n-55.0.2/pt-BR.xpi) = 44f369e06bc35ad5c99d01fac8852e8c1ae0597a3355814e8f1bd3430ed38434 +SIZE (xpi/firefox-i18n-55.0.2/pt-BR.xpi) = 462717 +SHA256 (xpi/firefox-i18n-55.0.2/pt-PT.xpi) = 24d9d9bd2264331368d7e384ea48d3ab2f5c5083e74b33a45c3e377c036276c4 +SIZE (xpi/firefox-i18n-55.0.2/pt-PT.xpi) = 465239 +SHA256 (xpi/firefox-i18n-55.0.2/rm.xpi) = 2cbd0b9bd38b563dd3a95b0e687992efbbc0d4370fe3cebdb10a782fff4669c7 +SIZE (xpi/firefox-i18n-55.0.2/rm.xpi) = 458265 +SHA256 (xpi/firefox-i18n-55.0.2/ro.xpi) = 1e0d626207c035571e8af87245b71aa236f16546d96588af624558fe04754248 +SIZE (xpi/firefox-i18n-55.0.2/ro.xpi) = 462973 +SHA256 (xpi/firefox-i18n-55.0.2/ru.xpi) = 9c800ccd0779e7b07fc8f9752c6555671c0debc234989ceac982529b1caba112 +SIZE (xpi/firefox-i18n-55.0.2/ru.xpi) = 530901 +SHA256 (xpi/firefox-i18n-55.0.2/si.xpi) = c177b9c277b2ae3d127fc5dea23bf1de78885a2305c7a336c15201adac858f1b +SIZE (xpi/firefox-i18n-55.0.2/si.xpi) = 508353 +SHA256 (xpi/firefox-i18n-55.0.2/sk.xpi) = d7c6e8ee51b34e4de7a71f74f000f10318ba7198906f879ae3c722d0502aefa9 +SIZE (xpi/firefox-i18n-55.0.2/sk.xpi) = 487582 +SHA256 (xpi/firefox-i18n-55.0.2/sl.xpi) = 6730ca8f59d766b368a233a5fef21833b2a577ec9d08191820ee499fc64badb3 +SIZE (xpi/firefox-i18n-55.0.2/sl.xpi) = 465760 +SHA256 (xpi/firefox-i18n-55.0.2/son.xpi) = 43f3607e7945c355048feed882b5368f8711d06d8b4b91940dc47368d9c861e6 +SIZE (xpi/firefox-i18n-55.0.2/son.xpi) = 456958 +SHA256 (xpi/firefox-i18n-55.0.2/sq.xpi) = 0b6613125d4a4bb9b48727f4b01f9d457ff90cf7456fc2b8fa3a460e0aa9e0a1 +SIZE (xpi/firefox-i18n-55.0.2/sq.xpi) = 470630 +SHA256 (xpi/firefox-i18n-55.0.2/sr.xpi) = 1eca19fd55f485b4536bb3c09da1427f6def8a8e04d202259abc396e73188997 +SIZE (xpi/firefox-i18n-55.0.2/sr.xpi) = 494878 +SHA256 (xpi/firefox-i18n-55.0.2/sv-SE.xpi) = 97fe6567c451504c4fd09ffba935ec7baa9c0d484f17b82b930ffbb43d601bb7 +SIZE (xpi/firefox-i18n-55.0.2/sv-SE.xpi) = 466011 +SHA256 (xpi/firefox-i18n-55.0.2/ta.xpi) = b8caa6fdb34281b2d71cf05d4dc15e0982cb26b2aaa83e3f7057e84a5034e13a +SIZE (xpi/firefox-i18n-55.0.2/ta.xpi) = 519998 +SHA256 (xpi/firefox-i18n-55.0.2/te.xpi) = c44d952fa3c941d9670b677c8dcd41ecb589b9cb258df7e397c0df5c982ce1d6 +SIZE (xpi/firefox-i18n-55.0.2/te.xpi) = 542539 +SHA256 (xpi/firefox-i18n-55.0.2/th.xpi) = f9f873e91f5254e265bae5203d8b49494d68111ca2f45d3a71388c5c1c0eb266 +SIZE (xpi/firefox-i18n-55.0.2/th.xpi) = 511903 +SHA256 (xpi/firefox-i18n-55.0.2/tr.xpi) = 634f87351c726dd08127d7e6687b2d86cf255806fc98be9505e50080e4330d33 +SIZE (xpi/firefox-i18n-55.0.2/tr.xpi) = 472160 +SHA256 (xpi/firefox-i18n-55.0.2/uk.xpi) = 08e005c5cc4b7c8b61e3a2df65119c3e4e3239b557af1386997bf75d27935e22 +SIZE (xpi/firefox-i18n-55.0.2/uk.xpi) = 526436 +SHA256 (xpi/firefox-i18n-55.0.2/ur.xpi) = 8079eb4e652f56773bad1470eaf383f45be4808ff0baa141138539d67af555c7 +SIZE (xpi/firefox-i18n-55.0.2/ur.xpi) = 520753 +SHA256 (xpi/firefox-i18n-55.0.2/uz.xpi) = 61c08b0f2c59e5709caff710265fe854e540c8d1bb4da1e5505f59a3f9dd5cff +SIZE (xpi/firefox-i18n-55.0.2/uz.xpi) = 467671 +SHA256 (xpi/firefox-i18n-55.0.2/vi.xpi) = 6fd1f6e564b23a91a34667bfca528696b09e4aa4adcfa168286de55eb7f938cb +SIZE (xpi/firefox-i18n-55.0.2/vi.xpi) = 476527 +SHA256 (xpi/firefox-i18n-55.0.2/xh.xpi) = 0a8c5541b5e084e64ded93f94c19b5ad483cea9425cbc7519082f3fd6886a377 +SIZE (xpi/firefox-i18n-55.0.2/xh.xpi) = 470719 +SHA256 (xpi/firefox-i18n-55.0.2/zh-CN.xpi) = a77bff1d91123cf255192e6d9998a879af2c4e8fff8bb228ff9c3df9229d62fe +SIZE (xpi/firefox-i18n-55.0.2/zh-CN.xpi) = 490383 +SHA256 (xpi/firefox-i18n-55.0.2/zh-TW.xpi) = 5f3ed7ac4cd06305dab1b484716eecc067a97d2b6f2cfe16f82108b991b1a943 +SIZE (xpi/firefox-i18n-55.0.2/zh-TW.xpi) = 489347 Modified: branches/2017Q3/www/firefox/Makefile ============================================================================== --- branches/2017Q3/www/firefox/Makefile Thu Aug 17 18:00:36 2017 (r448160) +++ branches/2017Q3/www/firefox/Makefile Thu Aug 17 18:03:00 2017 (r448161) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 55.0.1 +DISTVERSION= 55.0.2 DISTVERSIONSUFFIX=.source PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla Modified: branches/2017Q3/www/firefox/distinfo ============================================================================== --- branches/2017Q3/www/firefox/distinfo Thu Aug 17 18:00:36 2017 (r448160) +++ branches/2017Q3/www/firefox/distinfo Thu Aug 17 18:03:00 2017 (r448161) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502312473 -SHA256 (firefox-55.0.1.source.tar.xz) = 827c26ed1940ce22aeeec98120cbe1a415365929a9186a0bc3c4c17726a9a9d3 -SIZE (firefox-55.0.1.source.tar.xz) = 236278024 +TIMESTAMP = 1502835004 +SHA256 (firefox-55.0.2.source.tar.xz) = 0b747822063dc4d7cbbbfccb44e5e7865441378c524032d4de7e94bfa1f475b7 +SIZE (firefox-55.0.2.source.tar.xz) = 234450696 From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:04:29 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 29656DCD2F8; Thu, 17 Aug 2017 18:04:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0B2A82669; Thu, 17 Aug 2017 18:04:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HI4RIk060960; Thu, 17 Aug 2017 18:04:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HI4R2R060958; Thu, 17 Aug 2017 18:04:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201708171804.v7HI4R2R060958@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 17 Aug 2017 18:04:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448162 - branches/2017Q3/multimedia/ffmpeg X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/multimedia/ffmpeg X-SVN-Commit-Revision: 448162 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:04:29 -0000 Author: jbeich Date: Thu Aug 17 18:04:27 2017 New Revision: 448162 URL: https://svnweb.freebsd.org/changeset/ports/448162 Log: MFH: r448015 multimedia/ffmpeg: update to 3.3.3 Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.3.3:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ Security: CVE-2017-9608 CVE-2017-11399 CVE-2017-11665 CVE-2017-11665 CVE-2017-11719 Approved by: ports-secteam (feld) Modified: branches/2017Q3/multimedia/ffmpeg/Makefile branches/2017Q3/multimedia/ffmpeg/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/multimedia/ffmpeg/Makefile ============================================================================== --- branches/2017Q3/multimedia/ffmpeg/Makefile Thu Aug 17 18:03:00 2017 (r448161) +++ branches/2017Q3/multimedia/ffmpeg/Makefile Thu Aug 17 18:04:27 2017 (r448162) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ffmpeg -PORTVERSION= 3.3.2 -PORTREVISION= 1 +PORTVERSION= 3.3.3 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://ffmpeg.org/releases/ Modified: branches/2017Q3/multimedia/ffmpeg/distinfo ============================================================================== --- branches/2017Q3/multimedia/ffmpeg/distinfo Thu Aug 17 18:03:00 2017 (r448161) +++ branches/2017Q3/multimedia/ffmpeg/distinfo Thu Aug 17 18:04:27 2017 (r448162) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496884845 -SHA256 (ffmpeg-3.3.2.tar.xz) = 1998de1ab32616cbf2ff86efc3f1f26e76805ec5dc51e24c041c79edd8262785 -SIZE (ffmpeg-3.3.2.tar.xz) = 8279740 +TIMESTAMP = 1502831570 +SHA256 (ffmpeg-3.3.3.tar.xz) = d2a9002cdc6b533b59728827186c044ad02ba64841f1b7cd6c21779875453a1e +SIZE (ffmpeg-3.3.3.tar.xz) = 8285032 From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:11:33 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13442DCDA0A; Thu, 17 Aug 2017 18:11:33 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E61BF82C07; Thu, 17 Aug 2017 18:11:32 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 2A69615D16; Thu, 17 Aug 2017 18:11:32 +0000 (UTC) From: Jan Beich To: Mark Felder Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: Re: svn commit: r448094 - branches/2017Q3/devel/git References: <201708171315.v7HDFQ6X032157@repo.freebsd.org> Date: Thu, 17 Aug 2017 20:11:13 +0200 In-Reply-To: <201708171315.v7HDFQ6X032157@repo.freebsd.org> (Mark Felder's message of "Thu, 17 Aug 2017 13:15:26 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:11:33 -0000 --=-=-= Content-Type: text/plain Mark Felder writes: > Author: feld > Date: Thu Aug 17 13:15:25 2017 > New Revision: 448094 > URL: https://svnweb.freebsd.org/changeset/ports/448094 > > Log: > MFH: r445615 r446083 r447205 r447721 r447759 [...] > Update devel/git to 2.14.1 Why did you ignore devel/git-cinnabar regression this causes and my patch for 2.13.5 sent to ports-secteam@ ? --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQF8BAEBCgBmBQJZldxBXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREQjQ0MzY3NEM3RDIzNTc4NkUxNDkyQ0VF NEM3Nzg4MzQ3OURCRERCAAoJEOTHeINHnb3bCXUIANIQ0ArTQAZ+AW8SaYkT25zP fj9W6zFO10SWmNC41B8ZEmt/nLOgq8ggHQ1OTLv/RPzEAwjB8SOS4F8DxutUr0Yw I78vn5n+D8yg7gL8m7ViBH4uq0rQOVvjejKS/Q5q/MmRCqM8f+bkI0qmw7mFtwgB GISXWIbA8+0b0uQtvVTMd96GOqK8QmXRKbQiIgShEvtUK0OCEilMZoaknw3kkHBC p/U27+zcF9TtWzOeleXgGVQTnIa5WLH3aABdJq/Xo2UgWs6uR1NbFMmhYjUgfwbz h9ZaLst1hOpiYYX8X+kGSCeV1jR9v7DE9GbtoMcHb5Wxo0rd2/CXl0UKXCGdL1g= =TqtL -----END PGP SIGNATURE----- --=-=-=-- From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:16:02 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 824F2DCDD99; Thu, 17 Aug 2017 18:16:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B94382F55; Thu, 17 Aug 2017 18:16:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HIG1cr065383; Thu, 17 Aug 2017 18:16:01 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HIG1Pu065381; Thu, 17 Aug 2017 18:16:01 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201708171816.v7HIG1Pu065381@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 17 Aug 2017 18:16:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448164 - in branches/2017Q3/www: firefox firefox-esr X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q3/www: firefox firefox-esr X-SVN-Commit-Revision: 448164 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:16:02 -0000 Author: jbeich Date: Thu Aug 17 18:16:01 2017 New Revision: 448164 URL: https://svnweb.freebsd.org/changeset/ports/448164 Log: MFH: r447892 www/firefox: document a few known issues Approved by: ports-secteam (feld) Modified: branches/2017Q3/www/firefox-esr/pkg-message branches/2017Q3/www/firefox/pkg-message Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/firefox-esr/pkg-message ============================================================================== --- branches/2017Q3/www/firefox-esr/pkg-message Thu Aug 17 18:06:43 2017 (r448163) +++ branches/2017Q3/www/firefox-esr/pkg-message Thu Aug 17 18:16:01 2017 (r448164) @@ -1,5 +1,15 @@ ====================================================================== +Some features available on other platforms are not implemented: +- Native audio (OSS backend is incomplete, doesn't support WebRTC) +- Encrypted Media Extensions (requires Widevine CDM binary) +- Process sandboxing (requires Capsicum backend) +- Reduced memory usage (requires mozjemalloc) +- Performance profiling (requires GeckoProfiler) +- Gamepad API (requires libusbhid backend) + +====================================================================== + smb:// issues (Gvfs/GIO option): Network group, machine, and share browsing does not work correctly. Modified: branches/2017Q3/www/firefox/pkg-message ============================================================================== --- branches/2017Q3/www/firefox/pkg-message Thu Aug 17 18:06:43 2017 (r448163) +++ branches/2017Q3/www/firefox/pkg-message Thu Aug 17 18:16:01 2017 (r448164) @@ -1,5 +1,16 @@ ====================================================================== +Some features available on other platforms are not implemented: +- Native audio (OSS backend is incomplete, doesn't support WebRTC) +- Encrypted Media Extensions (requires Widevine CDM binary) +- Process sandboxing (requires Capsicum backend) +- Reduced memory usage (requires mozjemalloc) +- Performance profiling (requires GeckoProfiler) +- Gamepad API (requires libusbhid backend) +- WebVR (requires open source runtime) + +====================================================================== + smb:// issues (Gvfs/GIO option): Network group, machine, and share browsing does not work correctly. From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:21:03 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41C60DCE035; Thu, 17 Aug 2017 18:21:03 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B5D6831FF; Thu, 17 Aug 2017 18:21:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HIL2tm066442; Thu, 17 Aug 2017 18:21:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HIL2aL066440; Thu, 17 Aug 2017 18:21:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201708171821.v7HIL2aL066440@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 17 Aug 2017 18:21:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448165 - branches/2017Q3/print/harfbuzz X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/print/harfbuzz X-SVN-Commit-Revision: 448165 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:21:03 -0000 Author: jbeich Date: Thu Aug 17 18:21:01 2017 New Revision: 448165 URL: https://svnweb.freebsd.org/changeset/ports/448165 Log: MFH: r447538 print/harfbuzz: update to 1.4.7 Changes: https://github.com/behdad/harfbuzz/releases/tag/1.4.7 ABI: https://abi-laboratory.pro/tracker/timeline/harfbuzz/ Approved by: ports-secteam (feld) Modified: branches/2017Q3/print/harfbuzz/Makefile branches/2017Q3/print/harfbuzz/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/print/harfbuzz/Makefile ============================================================================== --- branches/2017Q3/print/harfbuzz/Makefile Thu Aug 17 18:16:01 2017 (r448164) +++ branches/2017Q3/print/harfbuzz/Makefile Thu Aug 17 18:21:01 2017 (r448165) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= harfbuzz -PORTVERSION= 1.4.6 -PORTREVISION= 1 +PORTVERSION= 1.4.7 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ @@ -22,7 +21,7 @@ CONFIGURE_ARGS= --with-graphite2 --with-gobject=yes INSTALL_TARGET= install-strip TEST_TARGET= check -PLIST_SUB+= LIBVER=0.10400.6 +PLIST_SUB+= LIBVER=0.10400.7 HARFBUZZ_SLAVE?= no Modified: branches/2017Q3/print/harfbuzz/distinfo ============================================================================== --- branches/2017Q3/print/harfbuzz/distinfo Thu Aug 17 18:16:01 2017 (r448164) +++ branches/2017Q3/print/harfbuzz/distinfo Thu Aug 17 18:21:01 2017 (r448165) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491399519 -SHA256 (harfbuzz-1.4.6.tar.bz2) = 21a78b81cd20cbffdb04b59ac7edfb410e42141869f637ae1d6778e74928d293 -SIZE (harfbuzz-1.4.6.tar.bz2) = 1475086 +TIMESTAMP = 1500402353 +SHA256 (harfbuzz-1.4.7.tar.bz2) = b85f6627425d54f32118308e053b939c63a388de9bf455b3830f68cad406bc6d +SIZE (harfbuzz-1.4.7.tar.bz2) = 1592693 From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:25:24 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07BDDDCE421; Thu, 17 Aug 2017 18:25:24 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C3ECC8344E; Thu, 17 Aug 2017 18:25:23 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HIPMjJ069729; Thu, 17 Aug 2017 18:25:22 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HIPMOe069719; Thu, 17 Aug 2017 18:25:22 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201708171825.v7HIPMOe069719@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Thu, 17 Aug 2017 18:25:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448166 - in branches/2017Q3/audio/jack: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in branches/2017Q3/audio/jack: . files X-SVN-Commit-Revision: 448166 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:25:24 -0000 Author: riggs Date: Thu Aug 17 18:25:21 2017 New Revision: 448166 URL: https://svnweb.freebsd.org/changeset/ports/448166 Log: MFH: r447818 Enable COOKEDMODE for more versatile soundcard support; use GitHub Detailed log: * Add COOKEDMODE option that turns on SNDCTL_DSP_COOKEDMODE. Without the cooked mode Jack's OSS driver currently fails for some soundcards (it chooses wrong sample rate). It's better to have COOKEDMODE=on by default since it often appears broken otherwise. Professionals probably want COOKEDMODE=off, after they make sure their soundcard works with jack. * Switch to github for fetching the sources. * Include the merged upstream pull request #60 to enable the realtime mode (-R). * Add USES=autoreconf (github source doesn't include a configure script) * Install more manpages. PR: 220785 Submitted by: yuri@rawbw.com Approved by: portmgr (feld) Added: branches/2017Q3/audio/jack/files/patch-configure.ac - copied unchanged from r447818, head/audio/jack/files/patch-configure.ac branches/2017Q3/audio/jack/files/patch-jackd_jackd.c - copied unchanged from r447818, head/audio/jack/files/patch-jackd_jackd.c branches/2017Q3/audio/jack/pkg-message - copied unchanged from r447818, head/audio/jack/pkg-message Modified: branches/2017Q3/audio/jack/Makefile branches/2017Q3/audio/jack/distinfo branches/2017Q3/audio/jack/files/jackd.in branches/2017Q3/audio/jack/files/patch-drivers_oss_oss__driver.c branches/2017Q3/audio/jack/files/patch-libjack_client.c branches/2017Q3/audio/jack/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/audio/jack/Makefile ============================================================================== --- branches/2017Q3/audio/jack/Makefile Thu Aug 17 18:21:01 2017 (r448165) +++ branches/2017Q3/audio/jack/Makefile Thu Aug 17 18:25:21 2017 (r448166) @@ -3,10 +3,8 @@ PORTNAME= jackit PORTVERSION= 0.125.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio -MASTER_SITES= http://jackaudio.org/downloads/ -DISTNAME= jack-audio-connection-kit-${PORTVERSION} MAINTAINER= multimedia@FreeBSD.org COMMENT= Low latency audio server @@ -19,22 +17,36 @@ LIB_DEPENDS= libsndfile.so:audio/libsndfile \ libcelt0.so:audio/celt \ libuuid.so:misc/e2fsprogs-libuuid -GNU_CONFIGURE= yes +USES= autoreconf gmake pathfix pkgconfig libtool localbase bdb +USE_GITHUB= yes +GH_ACCOUNT= jackaudio +GH_PROJECT= jack1 +GH_TAGNAME= 90f9dd3 +GH_TUPLE= jackaudio:headers:07f1ecf:h/jack +GH_TUPLE+= jackaudio:tools:8d13c31:t/tools +GH_TUPLE+= jackaudio:example-clients:7fa0890:e/example-clients USE_LDCONFIG= yes -USES= gmake pathfix pkgconfig libtool localbase bdb +GNU_CONFIGURE= yes USE_RC_SUBR= jackd CONFIGURE_ARGS= --disable-portaudio \ + --enable-optimize \ --enable-force-install \ --with-default-tmpdir=/tmp -CFLAGS+= -I${BDB_INCLUDE_DIR} -LIBS+= -L${BDB_LIB_DIR} -INSTALL_TARGET= install-strip +CFLAGS+= -I${BDB_INCLUDE_DIR} +LIBS+= -L${BDB_LIB_DIR} +INSTALL_TARGET= install-strip -OPTIONS_DEFINE= ALSA DOXYGEN READLINE SNDIO -OPTIONS_DEFAULT=READLINE -OPTIONS_SUB= yes +OPTIONS_DEFINE= ALSA DOXYGEN READLINE SNDIO COOKEDMODE +OPTIONS_DEFINE_i386= DYNSIMD +OPTIONS_DEFINE_amd64= DYNSIMD +OPTIONS_DEFAULT= READLINE COOKEDMODE +OPTIONS_DEFAULT_i386= DYNSIMD +OPTIONS_DEFAULT_amd64= DYNSIMD +OPTIONS_SUB= yes +COOKEDMODE_DESC= Use OSS COOKEDMODE (OSS driver is broken without it) +DYNSIMD_DESC= Use dynamic SIMD selection (only i386/amd64) ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_CONFIGURE_ENABLE= alsa @@ -50,21 +62,11 @@ READLINE_CONFIGURE_ENV_OFF= ac_cv_lib_readline_readlin SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio SNDIO_CONFIGURE_ENABLE= sndio +COOKEDMODE_CFLAGS= -DOPTION_COOKEDMODE + +DYNSIMD_CONFIGURE_ENABLE=dynsimd + post-patch: - @${REINPLACE_CMD} -e 's|define USE_MLOCK|undef USE_MLOCK|' \ - -e 's|alloca.h||' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e "s,-lpthread,-pthread," \ - ${WRKSRC}/configure ${WRKSRC}/libjack/Makefile.in \ - ${WRKSRC}/jackd/Makefile.in \ - ${WRKSRC}/example-clients/Makefile.in ${WRKSRC}/jack.pc.in - @${REINPLACE_CMD} -e "s,-lrt,," ${WRKSRC}/libjack/Makefile.in \ - ${WRKSRC}/jackd/Makefile.in \ - ${WRKSRC}/example-clients/Makefile.in - @${REINPLACE_CMD} -e "s,-ldl,," ${WRKSRC}/jackd/Makefile.in \ - ${WRKSRC}/example-clients/Makefile.in - @${REINPLACE_CMD} -e 's|md5sum|md5 -q|g' \ - ${WRKSRC}/jackd/Makefile.in @${RM} ${WRKSRC}/doc/reference/html/* post-build: Modified: branches/2017Q3/audio/jack/distinfo ============================================================================== --- branches/2017Q3/audio/jack/distinfo Thu Aug 17 18:21:01 2017 (r448165) +++ branches/2017Q3/audio/jack/distinfo Thu Aug 17 18:25:21 2017 (r448166) @@ -1,3 +1,9 @@ -TIMESTAMP = 1491234945 -SHA256 (jack-audio-connection-kit-0.125.0.tar.gz) = 3517b5bff82139a76b2b66fe2fd9a3b34b6e594c184f95a988524c575b11d444 -SIZE (jack-audio-connection-kit-0.125.0.tar.gz) = 1217977 +TIMESTAMP = 1500250305 +SHA256 (jackaudio-jack1-0.125.0-90f9dd3_GH0.tar.gz) = e0ba7dcf58fa934af51329cd329f466fe8d2bc180d07e4ab8be21ed80c60aa8a +SIZE (jackaudio-jack1-0.125.0-90f9dd3_GH0.tar.gz) = 392822 +SHA256 (jackaudio-headers-07f1ecf_GH0.tar.gz) = 04a3bb87d278923985ba44045b7a27439c90776cc5d4a6016d062fc7a6aa5023 +SIZE (jackaudio-headers-07f1ecf_GH0.tar.gz) = 36704 +SHA256 (jackaudio-tools-8d13c31_GH0.tar.gz) = 23e6bc60c8cef4283677206f2687a408367203a725c091c923f48554ae6e8cc8 +SIZE (jackaudio-tools-8d13c31_GH0.tar.gz) = 45544 +SHA256 (jackaudio-example-clients-7fa0890_GH0.tar.gz) = 79e2ac1d38d7d77b1afb71aa97414c339e8c00613a5d9b725861232b5c995223 +SIZE (jackaudio-example-clients-7fa0890_GH0.tar.gz) = 16174 Modified: branches/2017Q3/audio/jack/files/jackd.in ============================================================================== --- branches/2017Q3/audio/jack/files/jackd.in Thu Aug 17 18:21:01 2017 (r448165) +++ branches/2017Q3/audio/jack/files/jackd.in Thu Aug 17 18:25:21 2017 (r448166) @@ -27,8 +27,10 @@ start_jackd() { if [ $jackd_rtprio = "YES" ]; then local rt="rtprio 1" fi + # log the date and parameters + echo -e "\n[`date`] Starting the daemon, user=$jackd_user rtprio=$jackd_rtprio args=\"$jackd_args\"" >> /var/log/${name}.log # daemon(8) should be able to set the realtime priority, but it isn't - $rt daemon -p /var/run/${name}.pid -u ${jackd_user} %%PREFIX%%/bin/jackd ${jackd_args} >/var/log/${name}.log 2>&1 + $rt daemon -p /var/run/${name}.pid -o /var/log/${name}.log -u "${jackd_user}" %%PREFIX%%/bin/jackd ${jackd_args} } load_rc_config ${name} Copied: branches/2017Q3/audio/jack/files/patch-configure.ac (from r447818, head/audio/jack/files/patch-configure.ac) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/audio/jack/files/patch-configure.ac Thu Aug 17 18:25:21 2017 (r448166, copy of r447818, head/audio/jack/files/patch-configure.ac) @@ -0,0 +1,10 @@ +--- configure.ac.orig 2017-01-10 10:20:51 UTC ++++ configure.ac +@@ -172,6 +172,7 @@ case "${host_os}" in + # barrier code, this may be fixed in 5.3, stay tuned. + USE_BARRIER="no" + USE_MD5SUM=0 ++ JACK_DO_NOT_MLOCK=0 + ;; + openbsd*) + # pthread_barrier* not implemented Modified: branches/2017Q3/audio/jack/files/patch-drivers_oss_oss__driver.c ============================================================================== --- branches/2017Q3/audio/jack/files/patch-drivers_oss_oss__driver.c Thu Aug 17 18:21:01 2017 (r448165) +++ branches/2017Q3/audio/jack/files/patch-drivers_oss_oss__driver.c Thu Aug 17 18:25:21 2017 (r448166) @@ -1,4 +1,4 @@ ---- drivers/oss/oss_driver.c.orig 2016-02-23 15:13:53 UTC +--- drivers/oss/oss_driver.c.orig 2017-01-10 10:20:51 UTC +++ drivers/oss/oss_driver.c @@ -23,6 +23,7 @@ @@ -83,7 +83,20 @@ dstidx += chcount; } break; -@@ -441,19 +454,7 @@ static int oss_driver_start (oss_driver_ +@@ -429,7 +442,11 @@ static int oss_driver_detach (oss_driver + + static int oss_driver_start (oss_driver_t *driver) + { +- int flags = 0; ++#if defined(OPTION_COOKEDMODE) ++ int cookedmode = 1; ++#else ++ int cookedmode = 0; ++#endif + int format; + int channels; + int samplerate; +@@ -441,19 +458,7 @@ static int oss_driver_start (oss_driver_ const char *indev = driver->indev; const char *outdev = driver->outdev; @@ -104,7 +117,52 @@ driver->trigger = 0; if (strcmp (indev, outdev) != 0) { if (driver->capture_channels > 0) { -@@ -705,7 +706,9 @@ static int oss_driver_start (oss_driver_ +@@ -464,7 +469,7 @@ static int oss_driver_start (oss_driver_ + indev, __FILE__, __LINE__, errno); + } + #ifndef OSS_NO_COOKED_MODE +- ioctl (infd, SNDCTL_DSP_COOKEDMODE, &flags); ++ ioctl (infd, SNDCTL_DSP_COOKEDMODE, &cookedmode); + #endif + fragsize = driver->period_size * + driver->capture_channels * samplesize; +@@ -479,7 +484,7 @@ static int oss_driver_start (oss_driver_ + outdev, __FILE__, __LINE__, errno); + } + #ifndef OSS_NO_COOKED_MODE +- ioctl (outfd, SNDCTL_DSP_COOKEDMODE, &flags); ++ ioctl (outfd, SNDCTL_DSP_COOKEDMODE, &cookedmode); + #endif + fragsize = driver->period_size * + driver->playback_channels * samplesize; +@@ -497,7 +502,7 @@ static int oss_driver_start (oss_driver_ + return -1; + } + #ifndef OSS_NO_COOKED_MODE +- ioctl (infd, SNDCTL_DSP_COOKEDMODE, &flags); ++ ioctl (infd, SNDCTL_DSP_COOKEDMODE, &cookedmode); + #endif + } else if (driver->capture_channels == 0 && + driver->playback_channels != 0) { +@@ -510,7 +515,7 @@ static int oss_driver_start (oss_driver_ + return -1; + } + #ifndef OSS_NO_COOKED_MODE +- ioctl (outfd, SNDCTL_DSP_COOKEDMODE, &flags); ++ ioctl (outfd, SNDCTL_DSP_COOKEDMODE, &cookedmode); + #endif + } else { + infd = outfd = open (indev, O_RDWR | O_EXCL); +@@ -521,7 +526,7 @@ static int oss_driver_start (oss_driver_ + return -1; + } + #ifndef OSS_NO_COOKED_MODE +- ioctl (infd, SNDCTL_DSP_COOKEDMODE, &flags); ++ ioctl (infd, SNDCTL_DSP_COOKEDMODE, &cookedmode); + #endif + } + if (infd >= 0 && outfd >= 0) { +@@ -705,7 +710,9 @@ static int oss_driver_start (oss_driver_ sem_post (&driver->sem_start); } @@ -115,7 +173,7 @@ driver->next_periodtime = 0; driver->iodelay = 0.0F; -@@ -1143,6 +1146,23 @@ jack_driver_t * driver_initialize (jack_ +@@ -1143,6 +1150,23 @@ jack_driver_t * driver_initialize (jack_ pnode = jack_slist_next (pnode); } @@ -139,7 +197,7 @@ driver->sample_rate = sample_rate; driver->period_size = period_size; driver->nperiods = nperiods; -@@ -1163,58 +1183,6 @@ jack_driver_t * driver_initialize (jack_ +@@ -1163,58 +1187,6 @@ jack_driver_t * driver_initialize (jack_ } driver->infd = -1; driver->outfd = -1; Copied: branches/2017Q3/audio/jack/files/patch-jackd_jackd.c (from r447818, head/audio/jack/files/patch-jackd_jackd.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/audio/jack/files/patch-jackd_jackd.c Thu Aug 17 18:25:21 2017 (r448166, copy of r447818, head/audio/jack/files/patch-jackd_jackd.c) @@ -0,0 +1,22 @@ +--- jackd/jackd.c.orig 2017-07-17 17:10:09 UTC ++++ jackd/jackd.c +@@ -521,11 +521,17 @@ jack_drivers_load () + + static void copyright (FILE* file) + { +- fprintf (file, "jackd " VERSION "\n" ++ fprintf (file, "jackd " VERSION " (COOKEDMODE=%s)\n" + "Copyright 2001-2009 Paul Davis, Stephane Letz, Jack O'Quinn, Torben Hohn and others.\n" + "jackd comes with ABSOLUTELY NO WARRANTY\n" + "This is free software, and you are welcome to redistribute it\n" +- "under certain conditions; see the file COPYING for details\n\n"); ++ "under certain conditions; see the file COPYING for details\n\n", ++#if defined(OPTION_COOKEDMODE) ++ "on" ++#else ++ "off" ++#endif ++ ); + } + + static void usage (FILE *file) Modified: branches/2017Q3/audio/jack/files/patch-libjack_client.c ============================================================================== --- branches/2017Q3/audio/jack/files/patch-libjack_client.c Thu Aug 17 18:21:01 2017 (r448165) +++ branches/2017Q3/audio/jack/files/patch-libjack_client.c Thu Aug 17 18:25:21 2017 (r448166) @@ -1,6 +1,6 @@ ---- libjack/client.c.orig 2016-09-14 17:41:53 UTC +--- libjack/client.c.orig 2017-01-10 10:20:51 UTC +++ libjack/client.c -@@ -69,6 +69,30 @@ +@@ -68,6 +68,30 @@ static pthread_mutex_t client_lock; static pthread_cond_t client_ready; @@ -31,7 +31,7 @@ static int jack_client_close_aux(jack_client_t *client); -@@ -252,7 +276,7 @@ oop_client_deliver_request (void *ptr, j +@@ -251,7 +275,7 @@ oop_client_deliver_request (void *ptr, j int wok, rok; jack_client_t *client = (jack_client_t*)ptr; @@ -40,7 +40,7 @@ == sizeof(*req)); /* if necessary, add variable length key data after a PropertyChange request -@@ -260,7 +284,7 @@ oop_client_deliver_request (void *ptr, j +@@ -259,7 +283,7 @@ oop_client_deliver_request (void *ptr, j if (req->type == PropertyChangeNotify) { if (req->x.property.keylen) { @@ -49,7 +49,7 @@ jack_error ("cannot send property key of length %d to server", req->x.property.keylen); req->status = -1; -@@ -269,7 +293,7 @@ oop_client_deliver_request (void *ptr, j +@@ -268,7 +292,7 @@ oop_client_deliver_request (void *ptr, j } } @@ -58,7 +58,7 @@ == sizeof(*req)); if (wok && rok) { /* everything OK? */ -@@ -838,14 +862,14 @@ server_event_connect (jack_client_t *cli +@@ -837,14 +861,14 @@ server_event_connect (jack_client_t *cli jack_uuid_copy (&req.client_id, client->control->uuid); @@ -76,7 +76,7 @@ jack_error ("cannot read event connect result from server (%s)", strerror (errno)); close (fd); -@@ -1110,14 +1134,14 @@ jack_request_client (ClientType type, +@@ -1109,14 +1133,14 @@ jack_request_client (ClientType type, snprintf (req.object_data, sizeof(req.object_data), "%s", va->load_init); @@ -93,7 +93,7 @@ if (errno == 0) { /* server shut the socket */ -@@ -1513,7 +1537,7 @@ jack_internal_client_close (const char * +@@ -1512,7 +1536,7 @@ jack_internal_client_close (const char * return; } @@ -102,7 +102,7 @@ jack_error ("cannot deliver ClientUnload request to JACK " "server."); } -@@ -1649,7 +1673,7 @@ jack_session_notify (jack_client_t* clie +@@ -1648,7 +1672,7 @@ jack_session_notify (jack_client_t* clie request.x.session.type = code; @@ -111,7 +111,7 @@ != sizeof(request)) ) { jack_error ("cannot send request type %d to server", request.type); -@@ -1659,7 +1683,7 @@ jack_session_notify (jack_client_t* clie +@@ -1658,7 +1682,7 @@ jack_session_notify (jack_client_t* clie while ( 1 ) { jack_uuid_t uid; @@ -120,7 +120,7 @@ jack_error ("cannot read result for request type %d from" " server (%s)", request.type, strerror (errno)); goto out; -@@ -1681,19 +1705,19 @@ jack_session_notify (jack_client_t* clie +@@ -1680,19 +1704,19 @@ jack_session_notify (jack_client_t* clie break; } @@ -143,7 +143,7 @@ != sizeof(retval[num_replies - 1].flags) ) { jack_error ("cannot read result for request type %d from" " server (%s)", request.type, strerror (errno)); -@@ -1812,7 +1836,7 @@ jack_client_process_events (jack_client_ +@@ -1811,7 +1835,7 @@ jack_client_process_events (jack_client_ /* server has sent us an event. process the * event and reply */ @@ -152,7 +152,7 @@ != sizeof(event)) { jack_error ("cannot read server event (%s)", strerror (errno)); -@@ -1822,7 +1846,7 @@ jack_client_process_events (jack_client_ +@@ -1821,7 +1845,7 @@ jack_client_process_events (jack_client_ if (event.type == PropertyChange) { if (event.y.key_size) { key = (char*)malloc (event.y.key_size); @@ -161,7 +161,7 @@ event.y.key_size) { jack_error ("cannot read property change key (%s)", strerror (errno)); -@@ -1941,7 +1965,7 @@ jack_client_process_events (jack_client_ +@@ -1940,7 +1964,7 @@ jack_client_process_events (jack_client_ DEBUG ("client has dealt with the event, writing " "response on event fd"); @@ -170,7 +170,7 @@ != sizeof(status)) { jack_error ("cannot send event response to " "engine (%s)", strerror (errno)); -@@ -1961,7 +1985,7 @@ jack_wake_next_client (jack_client_t* cl +@@ -1960,7 +1984,7 @@ jack_wake_next_client (jack_client_t* cl int pret = 0; char c = 0; @@ -179,7 +179,7 @@ != sizeof(c)) { DEBUG ("cannot write byte to fd %d", client->graph_next_fd); jack_error ("cannot continue execution of the " -@@ -1989,7 +2013,7 @@ jack_wake_next_client (jack_client_t* cl +@@ -1988,7 +2012,7 @@ jack_wake_next_client (jack_client_t* cl } if (pret > 0 && (pfds[0].revents & POLLIN)) { Copied: branches/2017Q3/audio/jack/pkg-message (from r447818, head/audio/jack/pkg-message) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/audio/jack/pkg-message Thu Aug 17 18:25:21 2017 (r448166, copy of r447818, head/audio/jack/pkg-message) @@ -0,0 +1,26 @@ +====================================================================== +It is recommended to run Jack with real-time priority (-R). + +The recommended way to start Jack is to add the following +lines to /etc/rc.conf: + +jackd_enable="YES" +jackd_user="{your-jack-user}" +jackd_rtprio="YES" +jackd_args="-R -doss -r{sample-rate} -p1024 -n3 -w16 \ + --capture /dev/dsp{N} --playback /dev/dsp{N}" + +Where: +- your-jack-user: is the user who is going to use jack; currently + only one user is supported +- sample-rate: can be 44100, 48000, etc. +- /dev/dsp{N}: your OSS devices, usually /dev/dsp0 + +Please note that the port option COOKEDMODE is "on" by default, which +makes your system to automatically scale the sample-rate between +Jack and audio hardware. One reason COOKEDMODE=on is because +Jack's OSS driver doesn't support some sample-rate and hardware +combinations when COOKEDMODE=off. To achieve the best sound quality +please make sure your hardware natively supports the sample-rate set +in jackd_args, and set COOKEDMODE=off. +====================================================================== Modified: branches/2017Q3/audio/jack/pkg-plist ============================================================================== --- branches/2017Q3/audio/jack/pkg-plist Thu Aug 17 18:21:01 2017 (r448165) +++ branches/2017Q3/audio/jack/pkg-plist Thu Aug 17 18:25:21 2017 (r448166) @@ -61,7 +61,28 @@ lib/libjackserver.so lib/libjackserver.so.0 lib/libjackserver.so.0.0.28 libdata/pkgconfig/jack.pc +man/man1/alsa_in.1.gz +man/man1/alsa_out.1.gz +man/man1/jack_bufsize.1.gz +man/man1/jack_connect.1.gz +man/man1/jack_disconnect.1.gz +man/man1/jack_freewheel.1.gz +man/man1/jack_impulse_grabber.1.gz +man/man1/jack_iodelay.1.gz +man/man1/jack_load.1.gz +man/man1/jack_load_test.1.gz +man/man1/jack_lsp.1.gz +man/man1/jack_metro.1.gz +man/man1/jack_monitor_client.1.gz +man/man1/jack_netsource.1.gz +man/man1/jack_property.1.gz +man/man1/jack_samplerate.1.gz +man/man1/jack_showtime.1.gz +man/man1/jack_transport.1.gz +man/man1/jack_unload.1.gz +man/man1/jack_wait.1.gz man/man1/jackd.1.gz +man/man1/jackrec.1.gz man/man1/jackstart.1.gz %%DOXYGEN%%share/jack-audio-connection-kit/reference/html/annotated.html %%DOXYGEN%%share/jack-audio-connection-kit/reference/html/classes.html From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:32:07 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A709FDCE959; Thu, 17 Aug 2017 18:32:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7DCDB83841; Thu, 17 Aug 2017 18:32:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HIW6cq073870; Thu, 17 Aug 2017 18:32:06 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HIW6r6073867; Thu, 17 Aug 2017 18:32:06 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201708171832.v7HIW6r6073867@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 17 Aug 2017 18:32:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448167 - branches/2017Q3/games/manaplus X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/games/manaplus X-SVN-Commit-Revision: 448167 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:32:07 -0000 Author: jbeich Date: Thu Aug 17 18:32:06 2017 New Revision: 448167 URL: https://svnweb.freebsd.org/changeset/ports/448167 Log: MFH: r447054 r447582 games/manaplus: update to 1.7.8.5 - Move BROKEN_* line to pacify portlint Changes: https://manaplus.org/changelog#new_release_1785 PR: 220999 221345 Submitted by: Thibault Payet (maintainer) Approved by: ports-secteam (feld) Modified: branches/2017Q3/games/manaplus/Makefile branches/2017Q3/games/manaplus/distinfo branches/2017Q3/games/manaplus/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/games/manaplus/Makefile ============================================================================== --- branches/2017Q3/games/manaplus/Makefile Thu Aug 17 18:25:21 2017 (r448166) +++ branches/2017Q3/games/manaplus/Makefile Thu Aug 17 18:32:06 2017 (r448167) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= manaplus -PORTVERSION= 1.7.7.8 +PORTVERSION= 1.7.8.5 CATEGORIES= games MASTER_SITES= http://download.evolonline.org/manaplus/download/${PORTVERSION}/ @@ -12,11 +12,11 @@ COMMENT= Free open source 2D MMORPG client for athena LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to install: zip.cpp: 'bswap_16' was not declared in this scope + LIB_DEPENDS= libxml2.so:textproc/libxml2 \ libpng.so:graphics/png \ libcurl.so:ftp/curl - -BROKEN_powerpc64= fails to install: zip.cpp: 'bswap_16' was not declared in this scope USES= autoreconf pkgconfig:build tar:xz USE_XORG= x11 Modified: branches/2017Q3/games/manaplus/distinfo ============================================================================== --- branches/2017Q3/games/manaplus/distinfo Thu Aug 17 18:25:21 2017 (r448166) +++ branches/2017Q3/games/manaplus/distinfo Thu Aug 17 18:32:06 2017 (r448167) @@ -1,3 +1,3 @@ -TIMESTAMP = 1499616495 -SHA256 (manaplus-1.7.7.8.tar.xz) = 4c9473c5423076e9b7010e78dbb85d2c0aa63edcf7577fe4048adba6b6adbea5 -SIZE (manaplus-1.7.7.8.tar.xz) = 14860880 +TIMESTAMP = 1502213122 +SHA256 (manaplus-1.7.8.5.tar.xz) = 0247a7cefb519cb6cf7af44bb61383f54179976dbe41fee3f9d357689c6565c1 +SIZE (manaplus-1.7.8.5.tar.xz) = 14896112 Modified: branches/2017Q3/games/manaplus/pkg-plist ============================================================================== --- branches/2017Q3/games/manaplus/pkg-plist Thu Aug 17 18:25:21 2017 (r448166) +++ branches/2017Q3/games/manaplus/pkg-plist Thu Aug 17 18:32:06 2017 (r448167) @@ -254,6 +254,7 @@ share/applications/manaplustest.desktop %%DATADIR%%/data/perserver/default/defaultcommands.xml %%DATADIR%%/data/perserver/default/features.xml %%DATADIR%%/data/perserver/default/gmcommands.txt +%%DATADIR%%/data/perserver/default/groups.xml %%DATADIR%%/data/perserver/default/weapons.xml %%DATADIR%%/data/sfx/system/attention.ogg %%DATADIR%%/data/sfx/system/book.ogg From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:33:19 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79C4ADCEAA1; Thu, 17 Aug 2017 18:33:19 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42AD7839BE; Thu, 17 Aug 2017 18:33:19 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HIXIgj074102; Thu, 17 Aug 2017 18:33:18 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HIXIBT074100; Thu, 17 Aug 2017 18:33:18 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201708171833.v7HIXIBT074100@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Thu, 17 Aug 2017 18:33:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448168 - branches/2017Q3/www/gitea X-SVN-Group: ports-branches X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: branches/2017Q3/www/gitea X-SVN-Commit-Revision: 448168 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:33:19 -0000 Author: joneum Date: Thu Aug 17 18:33:18 2017 New Revision: 448168 URL: https://svnweb.freebsd.org/changeset/ports/448168 Log: MFH: r447946 - www/gitea: Update from 1.1.2 to 1.1.3 - Changelog: https://github.com/go-gitea/gitea/releases/tag/v1.1.3 PR: 221371 Submitted by: stb@lassitu.de (maintainer) Approved by: rene (mentor) Differential Revision: https://reviews.freebsd.org/D11939 Approved by: ports-secteam (feld) Modified: branches/2017Q3/www/gitea/Makefile branches/2017Q3/www/gitea/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/gitea/Makefile ============================================================================== --- branches/2017Q3/www/gitea/Makefile Thu Aug 17 18:32:06 2017 (r448167) +++ branches/2017Q3/www/gitea/Makefile Thu Aug 17 18:33:18 2017 (r448168) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gitea -PORTVERSION= 1.1.2 +PORTVERSION= 1.1.3 DISTVERSIONPREFIX= v CATEGORIES= www Modified: branches/2017Q3/www/gitea/distinfo ============================================================================== --- branches/2017Q3/www/gitea/distinfo Thu Aug 17 18:32:06 2017 (r448167) +++ branches/2017Q3/www/gitea/distinfo Thu Aug 17 18:33:18 2017 (r448168) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497557744 -SHA256 (go-gitea-gitea-v1.1.2_GH0.tar.gz) = cd2504bd9554f55175518f103f0b38c89d72d44c176fdb999aa3a3dedcb29eb4 -SIZE (go-gitea-gitea-v1.1.2_GH0.tar.gz) = 13014082 +TIMESTAMP = 1502317856 +SHA256 (go-gitea-gitea-v1.1.3_GH0.tar.gz) = 094022c3e1d1fd1514936d06674e3450871bed2a41c629a39c57c1db2d18a2a4 +SIZE (go-gitea-gitea-v1.1.3_GH0.tar.gz) = 13017122 From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:44:15 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14C1ADCF411; Thu, 17 Aug 2017 18:44:15 +0000 (UTC) (envelope-from ultima1252@gmail.com) Received: from mail-yw0-x234.google.com (mail-yw0-x234.google.com [IPv6:2607:f8b0:4002:c05::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C3C4384257; Thu, 17 Aug 2017 18:44:14 +0000 (UTC) (envelope-from ultima1252@gmail.com) Received: by mail-yw0-x234.google.com with SMTP id s143so46345851ywg.1; Thu, 17 Aug 2017 11:44:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=9a4vU8xhqX1GUprlPXJaevV8JpNuGIDB6QxCsKKDk7s=; b=anEDHLaimtHFG5S0KQRrtCI416uY8aFI8L59m/SQKemGBKwwb51AuubKT4WN1Q9rpu l1W9fTIGj4eCRTccx5LX5CIRnoh6357tOK1A3oJCdKpQJhylVN6L5SG3h2pJVuvwzmoI UspapMnV0zcPzBdXCTAlnePqEZvFR1vSAyS3npalSlz8cLbV3EDdxaN8R1GsZ8CHZYbI 7HcUd12bQKRXQwQAqbHM8EEyvMExB1YmDX43W9JWVGUtDaBckIsAV2iRgoIWd/VJOTzo C3wW/8L+7WpWnMKiuJBzf5i5j4a99aiTm0aSpcLtvkpxVo1LezPcCUp6Quqrj4pl3Rey paWg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=9a4vU8xhqX1GUprlPXJaevV8JpNuGIDB6QxCsKKDk7s=; b=TOm/UROaiQEpEEybvClGPlAhrnh6/jApLMn/sMOQ3B/jRXgcP3SoKevB5UT0w7pcU4 MhcI+zFqYk30PgTL4ylDWj/z/DKCSKbYF0F8dyXW7+tiE7+HT5+krmw9+RicPmwuZNci C72LzKN9y3yYs4UdW60MVtY2Lm6nmXteoNUozs8AcP/V9rqxMyNHd46Wu6lfn6mBqbuV Sd3/qAC2/hpHUQqSlMwn+QZvFSfiATNua6bNYVuU4YTl616dYxdTOzhyeRZiS+YMmqZu S6VVTAn+fKi3OL2h4Lcqd6yVelYaQtotiLT74YUX7nWNyzm81I1s4TKtE8hHWX6r8COm EUUQ== X-Gm-Message-State: AHYfb5iBs0xQIZlPVptDrTAI5BQ2AiQFwKamMrCcPp/dkMSgfT8isEGc ddjBNHRvgHW/eMbhVa55/VBnAVSjbqCE X-Received: by 10.37.37.73 with SMTP id l70mr5826107ybl.189.1502995453665; Thu, 17 Aug 2017 11:44:13 -0700 (PDT) MIME-Version: 1.0 Received: by 10.13.203.5 with HTTP; Thu, 17 Aug 2017 11:44:12 -0700 (PDT) In-Reply-To: <201708171832.v7HIW6r6073867@repo.freebsd.org> References: <201708171832.v7HIW6r6073867@repo.freebsd.org> From: Ultima Date: Thu, 17 Aug 2017 11:44:12 -0700 Message-ID: Subject: Re: svn commit: r448167 - branches/2017Q3/games/manaplus To: Jan Beich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:44:15 -0000 Thanks Jan, have been working on improving my commit log messages. On Thu, Aug 17, 2017 at 11:32 AM, Jan Beich wrote: > Author: jbeich > Date: Thu Aug 17 18:32:06 2017 > New Revision: 448167 > URL: https://svnweb.freebsd.org/changeset/ports/448167 > > Log: > MFH: r447054 r447582 > > games/manaplus: update to 1.7.8.5 > > - Move BROKEN_* line to pacify portlint > > Changes: https://manaplus.org/changelog#new_release_1785 > PR: 220999 221345 > Submitted by: Thibault Payet (maintainer) > Approved by: ports-secteam (feld) > > Modified: > branches/2017Q3/games/manaplus/Makefile > branches/2017Q3/games/manaplus/distinfo > branches/2017Q3/games/manaplus/pkg-plist > Directory Properties: > branches/2017Q3/ (props changed) > > Modified: branches/2017Q3/games/manaplus/Makefile > ============================================================ > ================== > --- branches/2017Q3/games/manaplus/Makefile Thu Aug 17 18:25:21 2017 > (r448166) > +++ branches/2017Q3/games/manaplus/Makefile Thu Aug 17 18:32:06 2017 > (r448167) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= manaplus > -PORTVERSION= 1.7.7.8 > +PORTVERSION= 1.7.8.5 > CATEGORIES= games > MASTER_SITES= http://download.evolonline.org/manaplus/download/${ > PORTVERSION}/ > > @@ -12,11 +12,11 @@ COMMENT= Free open source 2D MMORPG client for > athena > LICENSE= GPLv2+ > LICENSE_FILE= ${WRKSRC}/COPYING > > +BROKEN_powerpc64= fails to install: zip.cpp: 'bswap_16' was not > declared in this scope > + > LIB_DEPENDS= libxml2.so:textproc/libxml2 \ > libpng.so:graphics/png \ > libcurl.so:ftp/curl > - > -BROKEN_powerpc64= fails to install: zip.cpp: 'bswap_16' was not > declared in this scope > > USES= autoreconf pkgconfig:build tar:xz > USE_XORG= x11 > > Modified: branches/2017Q3/games/manaplus/distinfo > ============================================================ > ================== > --- branches/2017Q3/games/manaplus/distinfo Thu Aug 17 18:25:21 2017 > (r448166) > +++ branches/2017Q3/games/manaplus/distinfo Thu Aug 17 18:32:06 2017 > (r448167) > @@ -1,3 +1,3 @@ > -TIMESTAMP = 1499616495 > -SHA256 (manaplus-1.7.7.8.tar.xz) = 4c9473c5423076e9b7010e78dbb85d > 2c0aa63edcf7577fe4048adba6b6adbea5 > -SIZE (manaplus-1.7.7.8.tar.xz) = 14860880 > +TIMESTAMP = 1502213122 > +SHA256 (manaplus-1.7.8.5.tar.xz) = 0247a7cefb519cb6cf7af44bb61383 > f54179976dbe41fee3f9d357689c6565c1 > +SIZE (manaplus-1.7.8.5.tar.xz) = 14896112 > > Modified: branches/2017Q3/games/manaplus/pkg-plist > ============================================================ > ================== > --- branches/2017Q3/games/manaplus/pkg-plist Thu Aug 17 18:25:21 2017 > (r448166) > +++ branches/2017Q3/games/manaplus/pkg-plist Thu Aug 17 18:32:06 2017 > (r448167) > @@ -254,6 +254,7 @@ share/applications/manaplustest.desktop > %%DATADIR%%/data/perserver/default/defaultcommands.xml > %%DATADIR%%/data/perserver/default/features.xml > %%DATADIR%%/data/perserver/default/gmcommands.txt > +%%DATADIR%%/data/perserver/default/groups.xml > %%DATADIR%%/data/perserver/default/weapons.xml > %%DATADIR%%/data/sfx/system/attention.ogg > %%DATADIR%%/data/sfx/system/book.ogg > > From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:49:30 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9DABBDCF84A; Thu, 17 Aug 2017 18:49:30 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 736BB84533; Thu, 17 Aug 2017 18:49:30 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HInTvc079128; Thu, 17 Aug 2017 18:49:29 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HInT4A079125; Thu, 17 Aug 2017 18:49:29 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201708171849.v7HInT4A079125@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Thu, 17 Aug 2017 18:49:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448173 - branches/2017Q3/www/nginx-devel X-SVN-Group: ports-branches X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: branches/2017Q3/www/nginx-devel X-SVN-Commit-Revision: 448173 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:49:30 -0000 Author: joneum Date: Thu Aug 17 18:49:29 2017 New Revision: 448173 URL: https://svnweb.freebsd.org/changeset/ports/448173 Log: MFH: r447740 - www/nginx-devel: Update from 1.13.3 to 1.13.4 - pet Portlint - Changelog: *) Feature: the ngx_http_mirror_module. *) Bugfix: client connections might be dropped during configuration testing when using the "reuseport" parameter of the "listen" directive on Linux. *) Bugfix: request body might not be available in subrequests if it was saved to a file and proxying was used. *) Bugfix: cleaning cache based on the "max_size" parameter did not work on Windows. *) Bugfix: any shared memory allocation required 4096 bytes on Windows. *) Bugfix: nginx worker might be terminated abnormally when using the "zone" directive inside the "upstream" block on Windows. Approved by: osa (maintainer) Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D11951 Approved by: ports-secteam (feld) Modified: branches/2017Q3/www/nginx-devel/Makefile branches/2017Q3/www/nginx-devel/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/nginx-devel/Makefile ============================================================================== --- branches/2017Q3/www/nginx-devel/Makefile Thu Aug 17 18:46:18 2017 (r448172) +++ branches/2017Q3/www/nginx-devel/Makefile Thu Aug 17 18:49:29 2017 (r448173) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nginx -PORTVERSION= 1.13.3 +PORTVERSION= 1.13.4 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ MASTER_SITES+= LOCAL/osa @@ -241,9 +241,9 @@ WANT_GNOME= yes .include .if ${PORT_OPTIONS:MX11} -IMAGEMAGICK_LIB_DEPENDS= libMagickWand-6.so:graphics/ImageMagick +IMAGEMAGICK_LIB_DEPENDS= libMagickWand-6.so:graphics/ImageMagick .else -IMAGEMAGICK_LIB_DEPENDS= libMagickWand-6.so:graphics/ImageMagick-nox11 +IMAGEMAGICK_LIB_DEPENDS= libMagickWand-6.so:graphics/ImageMagick-nox11 .endif .if ${PORT_OPTIONS:MPASSENGER} @@ -262,10 +262,10 @@ HTTP_PORT?= 80 NGINX_ACCESSLOG?= ${NGINX_LOGDIR}/access.log NGINX_ERRORLOG?= ${NGINX_LOGDIR}/error.log -CONFLICTS?= nginx-1.* \ - nginx-full-1.* \ - nginx-lite-1.* \ - nginx-naxsi-1.* +CONFLICTS?= nginx-1.* \ + nginx-full-1.* \ + nginx-lite-1.* \ + nginx-naxsi-1.* USE_RC_SUBR= nginx SUB_FILES= pkg-message SUB_LIST+= WWWOWN=${WWWOWN} \ @@ -467,11 +467,11 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-ngx_http_echo_ .endif .if ${PORT_OPTIONS:MFASTDFS} -NGINX_FASTDFS_VERSION= 5a8110f -GH_ACCOUNT+= happyfish100:fastdfs -GH_PROJECT+= fastdfs-nginx-module:fastdfs -GH_TAGNAME+= ${NGINX_FASTDFS_VERSION}:fastdfs -EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-fastdfs-src-config +NGINX_FASTDFS_VERSION= 5a8110f +GH_ACCOUNT+= happyfish100:fastdfs +GH_PROJECT+= fastdfs-nginx-module:fastdfs +GH_TAGNAME+= ${NGINX_FASTDFS_VERSION}:fastdfs +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-fastdfs-src-config BUILD_DEPENDS+= ${LOCALBASE}/include/fastcommon/logger.h:devel/libfastcommon \ ${LOCALBASE}/include/fastdfs/fdfs_client.h:ftp/fastdfs LIB_DEPENDS+= libfastcommon.so:devel/libfastcommon \ @@ -763,7 +763,7 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-ngx_http_stick .if ${PORT_OPTIONS:MHTTP_VIDEO_THUMBEXTRACTOR} NGINX_VIDEO_THUMBEXTRACTOR_VERSION= 0.7.0 -LIB_DEPENDS+= libavformat.so:multimedia/ffmpeg \ +LIB_DEPENDS+= libavformat.so:multimedia/ffmpeg \ libavcodec.so:multimedia/ffmpeg \ libavutil.so:multimedia/ffmpeg \ libswscale.so:multimedia/ffmpeg Modified: branches/2017Q3/www/nginx-devel/distinfo ============================================================================== --- branches/2017Q3/www/nginx-devel/distinfo Thu Aug 17 18:46:18 2017 (r448172) +++ branches/2017Q3/www/nginx-devel/distinfo Thu Aug 17 18:49:29 2017 (r448173) @@ -1,6 +1,6 @@ -TIMESTAMP = 1499818490 -SHA256 (nginx-1.13.3.tar.gz) = 5b73f98004c302fb8e4a172abf046d9ce77739a82487e4873b39f9b0dcbb0d72 -SIZE (nginx-1.13.3.tar.gz) = 985931 +TIMESTAMP = 1502363751 +SHA256 (nginx-1.13.4.tar.gz) = de21f3c49ba65c611329d8759a63d72e5fcf719bc6f2a3270e2541348ef1fbba +SIZE (nginx-1.13.4.tar.gz) = 988415 SHA256 (ngx_cache_purge-2.3.tar.gz) = 279e0d8a46d3b1521fd43b3f78bc1c08b263899142a7cc5058c1c0361a92c89c SIZE (ngx_cache_purge-2.3.tar.gz) = 12248 SHA256 (nginx_mogilefs_module-1.0.4.tar.gz) = 7ac230d30907f013dff8d435a118619ea6168aa3714dba62c6962d350c6295ae From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:55:54 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46220DCFD01; Thu, 17 Aug 2017 18:55:54 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F1CC84918; Thu, 17 Aug 2017 18:55:53 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HItrrJ083419; Thu, 17 Aug 2017 18:55:53 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HItrtQ083417; Thu, 17 Aug 2017 18:55:53 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201708171855.v7HItrtQ083417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Thu, 17 Aug 2017 18:55:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448174 - branches/2017Q3/www/typo3-7 X-SVN-Group: ports-branches X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: branches/2017Q3/www/typo3-7 X-SVN-Commit-Revision: 448174 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:55:54 -0000 Author: joneum Date: Thu Aug 17 18:55:52 2017 New Revision: 448174 URL: https://svnweb.freebsd.org/changeset/ports/448174 Log: MFH: r447698 - www/typo3-7: Update from 7.6.20 to 7.6.21 - Changelog: https://typo3.org/news/article/typo3-874-and-7621-released/ PR: 221388 Submitted by: Helmut Ritter (maintainer) Approved by: tz (mentor) Differential Revision: https://reviews.freebsd.org/D11952 Approved by: ports-secteam (feld) Modified: branches/2017Q3/www/typo3-7/Makefile branches/2017Q3/www/typo3-7/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/typo3-7/Makefile ============================================================================== --- branches/2017Q3/www/typo3-7/Makefile Thu Aug 17 18:49:29 2017 (r448173) +++ branches/2017Q3/www/typo3-7/Makefile Thu Aug 17 18:55:52 2017 (r448174) @@ -4,7 +4,7 @@ PORTNAME= typo3 PORTVERSION= ${PORT_V_MAJOR}.${PORT_V_MINOR}.${PORT_V_PATCH} CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} +MASTER_SITES= https://typo3.azureedge.net/typo3/${PORTVERSION}/ PKGNAMESUFFIX= -${PORT_V_MAJOR} MAINTAINER= freebsd-ports@charlieroot.de @@ -27,7 +27,7 @@ WRKSRC= ${WRKDIR}/${TYPO3SRC} PORT_V_MAJOR= 7 PORT_V_MINOR= 6 -PORT_V_PATCH= 19 +PORT_V_PATCH= 21 TYPO3WWW= www TYPO3SRC= ${PORTNAME}_src-${PORTVERSION} Modified: branches/2017Q3/www/typo3-7/distinfo ============================================================================== --- branches/2017Q3/www/typo3-7/distinfo Thu Aug 17 18:49:29 2017 (r448173) +++ branches/2017Q3/www/typo3-7/distinfo Thu Aug 17 18:55:52 2017 (r448174) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498138091 -SHA256 (typo3_src-7.6.19.tar.gz) = 4496c606e179a996636a33fbc681bd649fcd1021ea60fcb295dbdfee9750483f -SIZE (typo3_src-7.6.19.tar.gz) = 21696774 +TIMESTAMP = 1502367066 +SHA256 (typo3_src-7.6.21.tar.gz) = 8ba70e31ca46b07dfc3afab8097130f7296c2f88b0d8b0ec42fe058987d79176 +SIZE (typo3_src-7.6.21.tar.gz) = 20470284 From owner-svn-ports-branches@freebsd.org Thu Aug 17 18:57:52 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19A41DCFEB5; Thu, 17 Aug 2017 18:57:52 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7A4384A5F; Thu, 17 Aug 2017 18:57:51 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HIvosw083661; Thu, 17 Aug 2017 18:57:51 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HIvo5G083659; Thu, 17 Aug 2017 18:57:50 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201708171857.v7HIvo5G083659@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Thu, 17 Aug 2017 18:57:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448175 - branches/2017Q3/www/typo3-8 X-SVN-Group: ports-branches X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: branches/2017Q3/www/typo3-8 X-SVN-Commit-Revision: 448175 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 18:57:52 -0000 Author: joneum Date: Thu Aug 17 18:57:50 2017 New Revision: 448175 URL: https://svnweb.freebsd.org/changeset/ports/448175 Log: MFH: r447696 - www/typo3-8: Update from 8.7.3 to 8.7.4 - Changelog: https://typo3.org/news/article/typo3-874-and-7621-released/ PR: 221389 Submitted by: Helmut Ritter (maintainer) Approved by: tz (mentor) Differential Revision: https://reviews.freebsd.org/D11954 Approved by: ports-secteam (feld) Modified: branches/2017Q3/www/typo3-8/Makefile branches/2017Q3/www/typo3-8/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/typo3-8/Makefile ============================================================================== --- branches/2017Q3/www/typo3-8/Makefile Thu Aug 17 18:55:52 2017 (r448174) +++ branches/2017Q3/www/typo3-8/Makefile Thu Aug 17 18:57:50 2017 (r448175) @@ -4,7 +4,7 @@ PORTNAME= typo3 PORTVERSION= ${PORT_V_MAJOR}.${PORT_V_MINOR}.${PORT_V_PATCH} CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} +MASTER_SITES= https://typo3.azureedge.net/typo3/${PORTVERSION}/ PKGNAMESUFFIX= -${PORT_V_MAJOR} MAINTAINER= freebsd-ports@charlieroot.de @@ -26,7 +26,7 @@ WRKSRC= ${WRKDIR}/${TYPO3SRC} PORT_V_MAJOR= 8 PORT_V_MINOR= 7 -PORT_V_PATCH= 2 +PORT_V_PATCH= 4 TYPO3WWW= www TYPO3SRC= ${PORTNAME}_src-${PORTVERSION} Modified: branches/2017Q3/www/typo3-8/distinfo ============================================================================== --- branches/2017Q3/www/typo3-8/distinfo Thu Aug 17 18:55:52 2017 (r448174) +++ branches/2017Q3/www/typo3-8/distinfo Thu Aug 17 18:57:50 2017 (r448175) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498138025 -SHA256 (typo3_src-8.7.2.tar.gz) = e1afbfcc97f60b201d2de334f5d5f9ad523543338891ec1ba1c2f1df5958d97f -SIZE (typo3_src-8.7.2.tar.gz) = 19089981 +TIMESTAMP = 1502368288 +SHA256 (typo3_src-8.7.4.tar.gz) = b0ba9a2cb09d5855b557f220ca1c535ffc9eb5f458bb48bd275ee647664b64d8 +SIZE (typo3_src-8.7.4.tar.gz) = 18431446 From owner-svn-ports-branches@freebsd.org Thu Aug 17 20:22:58 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F86EDD4A6A; Thu, 17 Aug 2017 20:22:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E79103D2E; Thu, 17 Aug 2017 20:22:57 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id B0B4E20B6C; Thu, 17 Aug 2017 16:22:56 -0400 (EDT) Received: from web4 ([10.202.2.214]) by compute3.internal (MEProxy); Thu, 17 Aug 2017 16:22:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=9uxJYA IM5RA95sBoxh1k+Z15j6hmCuDAuJegaWTCCDQ=; b=IvF3xNMFBXFNh+LX9FXxQV wn+qLsoas3yeRZe74eTBq9HhqijXluOMZNANQ7cZxR/zihiIF1at86lEKHgy/GXq p6Og7Hmj+hZgK6v98fiIA0av0b/SWuqwP+T44+V7i90ntrOQ1IWHtvv1HQS20aj0 mBAhuXPvxvLPJo5B0E95Pn6unw4eC0bVkCA7+SfUdrlM3hLqXXdD8Kod37ijMn4S 2tZ3uV1sFfZsjxg7rjKHBRtpIJ06juJ7Ug3OAUpidNfn3VrPX8om9fp9uskFhqjF 1N4ynZJv0/QV/LaqEKGhj6ITszB7rC4o7XZIvXdpDRIRderPftHNyGoA0L7tokNQ == X-ME-Sender: Received: by mailuser.nyi.internal (Postfix, from userid 99) id 852F1BAB71; Thu, 17 Aug 2017 16:22:56 -0400 (EDT) Message-Id: <1503001376.1287709.1076855896.46E0771B@webmail.messagingengine.com> From: Mark Felder To: Jan Beich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org, ports-secteam@FreeBSD.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-21c69044 Subject: Re: svn commit: r448094 - branches/2017Q3/devel/git References: <201708171315.v7HDFQ6X032157@repo.freebsd.org> Date: Thu, 17 Aug 2017 15:22:56 -0500 In-Reply-To: X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 20:22:58 -0000 On Thu, Aug 17, 2017, at 13:11, Jan Beich wrote: > Mark Felder writes: > > > Author: feld > > Date: Thu Aug 17 13:15:25 2017 > > New Revision: 448094 > > URL: https://svnweb.freebsd.org/changeset/ports/448094 > > > > Log: > > MFH: r445615 r446083 r447205 r447721 r447759 > [...] > > Update devel/git to 2.14.1 > > Why did you ignore devel/git-cinnabar regression this causes > and my patch for 2.13.5 sent to ports-secteam@ ? > For some reason I cannot find this email you're talking about... What's the current status of the 2017Q3 branch for devel/git-cinnabar then? What is the best solution for resolving the regression? -- Mark Felder ports-secteam & portmgr member feld@FreeBSD.org From owner-svn-ports-branches@freebsd.org Thu Aug 17 21:12:47 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0E4BDD78B9; Thu, 17 Aug 2017 21:12:47 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7B0A64EF7; Thu, 17 Aug 2017 21:12:47 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HLCkE6043390; Thu, 17 Aug 2017 21:12:46 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HLCk64043389; Thu, 17 Aug 2017 21:12:46 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201708172112.v7HLCk64043389@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Thu, 17 Aug 2017 21:12:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448191 - branches/2017Q3/dns/opendnssec2 X-SVN-Group: ports-branches X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: branches/2017Q3/dns/opendnssec2 X-SVN-Commit-Revision: 448191 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 21:12:48 -0000 Author: ultima Date: Thu Aug 17 21:12:46 2017 New Revision: 448191 URL: https://svnweb.freebsd.org/changeset/ports/448191 Log: MFH: r447554 * Bump Revision * Fix typo in the Port's Makefile, causes a failure in a conversion script * Added license file * Cleanup Makefile PR: 221144 Submitted by: (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11898 Approved by: ports-secteam (feld) Modified: branches/2017Q3/dns/opendnssec2/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/dns/opendnssec2/Makefile ============================================================================== --- branches/2017Q3/dns/opendnssec2/Makefile Thu Aug 17 20:50:34 2017 (r448190) +++ branches/2017Q3/dns/opendnssec2/Makefile Thu Aug 17 21:12:46 2017 (r448191) @@ -3,6 +3,7 @@ PORTNAME= opendnssec PORTVERSION= 2.1.1 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= http://dist.opendnssec.org/source/ PKGNAMESUFFIX= 2 @@ -11,20 +12,22 @@ MAINTAINER= jaap@NLnetLabs.nl COMMENT= Tool suite for maintaining DNSSEC LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ldns>=1.6.16:dns/ldns LIB_DEPENDS= libldns.so:dns/ldns -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --localstatedir="${PREFIX}/var" \ - --with-ssl=${OPENSSLBASE} +USES= ssl USE_RC_SUBR= opendnssec USE_GNOME= libxml2 -USES= ssl USE_LDCONFIG= yes -SUB_FILES+= pkg-message +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --localstatedir="${PREFIX}/var" \ + --with-ssl=${OPENSSLBASE} +SUB_FILES= pkg-message + CONFLICTS= opendnssec-1.[0-4]* USERS= opendnssec @@ -38,13 +41,12 @@ CONVERT= convert_mysql_to_sqlite convert_sqlite_to_mys SCHEMAS= schema.mysql schema.sqlite OPTIONS_DEFINE= SOFTHSM DOCS +OPTIONS_DEFAULT= SQLITE OPTIONS_SUB= yes OPTIONS_SINGLE= DB OPTIONS_SINGLE_DB= SQLITE MYSQL -OPTIONS_DEFAULT= SQLITE - SOFTHSM_DESC= SoftHSM cryptographic store for PKCS \#11 interface MYSQL_DESC= Use MYSQL backend @@ -82,12 +84,12 @@ post-install-DOCS-on: ${INSTALL_DATA} \ ${SCHEMAS:S|^|${WRKSRC}/enforcer/src/db/|} \ ${STAGEDIR}${DOCSDIR} - ${REINPLACE_CMD} -e 's|../src/db/schema|${DOCSDIR}/shema|' \ + ${REINPLACE_CMD} -e 's|../src/db/schema|${DOCSDIR}/schema|' \ -e 's|mysql_convert.sql|${DOCSDIR}/1.4-2.0_db_convert/&|' \ -e 's|sqlite_convert.sql|${DOCSDIR}/1.4-2.0_db_convert/&|' \ -e 's|find_problematic_zones.sql|${DOCSDIR}/1.4-2.0_db_convert/&|' \ ${STAGEDIR}${DOCSDIR}/convert_* - ${REINPLACE_CMD} -e 's|../../src/db/schema|${DOCSDIR}/shema|' \ + ${REINPLACE_CMD} -e 's|../../src/db/schema|${DOCSDIR}/schema|' \ -e 's|mysql_convert.sql|${DOCSDIR}/1.4-2.0_db_convert/&|' \ -e 's|sqlite_convert.sql|${DOCSDIR}/1.4-2.0_db_convert/&|' \ -e 's|find_problematic_zones.sql|${DOCSDIR}/1.4-2.0_db_convert/&|' \ From owner-svn-ports-branches@freebsd.org Thu Aug 17 21:14:41 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E6DFDD7A39; Thu, 17 Aug 2017 21:14:41 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 24D8D65020; Thu, 17 Aug 2017 21:14:41 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HLEePR043683; Thu, 17 Aug 2017 21:14:40 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HLEdA5043678; Thu, 17 Aug 2017 21:14:39 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201708172114.v7HLEdA5043678@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Thu, 17 Aug 2017 21:14:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448192 - in branches/2017Q3/net/xrdp-devel: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in branches/2017Q3/net/xrdp-devel: . files X-SVN-Commit-Revision: 448192 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 21:14:41 -0000 Author: ultima Date: Thu Aug 17 21:14:39 2017 New Revision: 448192 URL: https://svnweb.freebsd.org/changeset/ports/448192 Log: MFH: r447713 * Updated to 0.9.3 * Cleanup Makefile * Regenerated patch for portlint Changes: https://github.com/neutrinolabs/xrdp/releases/tag/v0.9.3Changes: https://github.com/neutrinolabs/xrdp/releases/tag/v0.9.3 PR: 220820 Submitted by: Koichiro IWAO (maintainer) Reviewed by: lifanov (mentor) Approved by: lifanov (mentor) Differential Revision: https://reviews.freebsd.org/D11956 Approved by: ports-secteam (feld) Deleted: branches/2017Q3/net/xrdp-devel/files/patch-xrdp_xrdp.ini Modified: branches/2017Q3/net/xrdp-devel/Makefile branches/2017Q3/net/xrdp-devel/distinfo branches/2017Q3/net/xrdp-devel/files/patch-configure.ac branches/2017Q3/net/xrdp-devel/files/patch-sesman_sesman.ini branches/2017Q3/net/xrdp-devel/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/xrdp-devel/Makefile ============================================================================== --- branches/2017Q3/net/xrdp-devel/Makefile Thu Aug 17 21:12:46 2017 (r448191) +++ branches/2017Q3/net/xrdp-devel/Makefile Thu Aug 17 21:14:39 2017 (r448192) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= xrdp -PORTVERSION= 0.9.1 +PORTVERSION= 0.9.3 DISTVERSIONPREFIX= v -PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net PKGNAMESUFFIX= -devel @@ -28,9 +27,9 @@ USE_LDCONFIG= ${PREFIX}/lib/xrdp USE_GITHUB= yes GH_ACCOUNT= neutrinolabs GH_PROJECT= xrdp librfxcodec:librfxcodec libpainter:libpainter -GH_TAGNAME= v0.1.0:librfxcodec v0.1.0:libpainter +GH_TAGNAME= v0.1.2:librfxcodec v0.1.1:libpainter -CONFIGURE_ARGS= --localstatedir=/var \ +CONFIGURE_ARGS= --localstatedir=/var --enable-strict-locations \ --with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig \ --enable-jpeg --enable-pixman --enable-rfxcodec --enable-painter LDFLAGS+= -L${LOCALBASE}/lib -L${OPENSSLLIB} -lssl @@ -49,6 +48,7 @@ OPUS_DESC= Enable Opus for audio redirection IPV6_CONFIGURE_ENABLE= ipv6 DEBUG_CONFIGURE_ENABLE= xrdpdebug FUSE_CONFIGURE_ENABLE= fuse +FUSE_USES= fuse MP3LAME_CONFIGURE_ENABLE= mp3lame MP3LAME_LIB_DEPENDS= libmp3lame.so:audio/lame OPUS_CONFIGURE_ENABLE= opus @@ -58,12 +58,6 @@ OPUS_LIB_DEPENDS= libopus.so:audio/opus PULSE_VERSION= ${MAKE} -C ${PORTSDIR}/audio/pulseaudio -VPORTVERSION PULSE_WRKSRC= ${MAKE} -C ${PORTSDIR}/audio/pulseaudio -VWRKSRC -.include - -.if ${PORT_OPTIONS:MFUSE} -USES+= fuse -.endif - post-extract: # librfxcodec is provided as git submodule @${CP} -r ${WRKSRC_librfxcodec}/ ${WRKSRC}/librfxcodec/ @@ -100,7 +94,7 @@ post-stage: @${RM} ${STAGEDIR}${PREFIX}/etc/xrdp/rsakeys.ini @${RM} ${STAGEDIR}${PREFIX}/etc/xrdp/cert.pem @${RM} ${STAGEDIR}${PREFIX}/etc/xrdp/key.pem -.for f in sesman.ini startwm.sh xrdp.ini xrdp_keyboard.ini +.for f in sesman.ini startwm.sh reconnectwm.sh xrdp.ini xrdp_keyboard.ini @${MV} ${STAGEDIR}${PREFIX}/etc/xrdp/$f ${STAGEDIR}${PREFIX}/etc/xrdp/$f.sample .endfor Modified: branches/2017Q3/net/xrdp-devel/distinfo ============================================================================== --- branches/2017Q3/net/xrdp-devel/distinfo Thu Aug 17 21:12:46 2017 (r448191) +++ branches/2017Q3/net/xrdp-devel/distinfo Thu Aug 17 21:14:39 2017 (r448192) @@ -1,7 +1,7 @@ -TIMESTAMP = 1482726509 -SHA256 (xrdp/neutrinolabs-xrdp-v0.9.1_GH0.tar.gz) = 9bfafb0277b07e8242bfdbede2928423d28c5714efb0c226118759fab06c42ab -SIZE (xrdp/neutrinolabs-xrdp-v0.9.1_GH0.tar.gz) = 1885192 -SHA256 (xrdp/neutrinolabs-librfxcodec-v0.1.0_GH0.tar.gz) = b05c1812e2daef373bf5e647bc86ee11f136adbe7ea999b5109180f406071f0a -SIZE (xrdp/neutrinolabs-librfxcodec-v0.1.0_GH0.tar.gz) = 38590 -SHA256 (xrdp/neutrinolabs-libpainter-v0.1.0_GH0.tar.gz) = 9fd2a3a85ba4f3e311cea34e9824bd38f3673e60951906c06744cf6b8f73397a -SIZE (xrdp/neutrinolabs-libpainter-v0.1.0_GH0.tar.gz) = 9859 +TIMESTAMP = 1500361123 +SHA256 (xrdp/neutrinolabs-xrdp-v0.9.3_GH0.tar.gz) = 36f096d013b2cf09324cc1bf9c27caadc733001f2bcbe24e67f93233260afe5b +SIZE (xrdp/neutrinolabs-xrdp-v0.9.3_GH0.tar.gz) = 1866654 +SHA256 (xrdp/neutrinolabs-librfxcodec-v0.1.2_GH0.tar.gz) = f4aa7f4247a42f6f5e49fc56eb70589a1d26cae7c8d5d4e32f75200d5c473a42 +SIZE (xrdp/neutrinolabs-librfxcodec-v0.1.2_GH0.tar.gz) = 46139 +SHA256 (xrdp/neutrinolabs-libpainter-v0.1.1_GH0.tar.gz) = 6caee8444fbd72677ac5e125c7ac99490688474975451668e751a9d9187ee5e6 +SIZE (xrdp/neutrinolabs-libpainter-v0.1.1_GH0.tar.gz) = 13929 Modified: branches/2017Q3/net/xrdp-devel/files/patch-configure.ac ============================================================================== --- branches/2017Q3/net/xrdp-devel/files/patch-configure.ac Thu Aug 17 21:12:46 2017 (r448191) +++ branches/2017Q3/net/xrdp-devel/files/patch-configure.ac Thu Aug 17 21:14:39 2017 (r448192) @@ -1,22 +1,40 @@ -diff --git configure.ac configure.ac -index 5c73168a..abbf4135 100644 ---- configure.ac +--- configure.ac.orig 2017-07-14 12:22:02 UTC +++ configure.ac -@@ -138,8 +138,15 @@ AC_CHECK_FUNC(dlopen, [], +@@ -152,11 +152,35 @@ AC_CHECK_FUNC(dlopen, [], AC_SUBST(DLOPEN_LIBS) - + # checking for openssl --PKG_CHECK_MODULES([OPENSSL], [openssl >= 0], [], -- [AC_MSG_ERROR([please install libssl-dev or openssl-devel])]) +-PKG_CHECK_MODULES([OPENSSL], [openssl >= 0.9.8], [], +if test "x$freebsd" = "xyes"; then -+ # FreeBSD base doesn't supply "*.pc" -+ AC_CHECK_HEADER([openssl/rc4.h], [], -+ [AC_MSG_ERROR([please install libssl-dev or openssl-devel])], -+ [#include ]) ++ # FreeBSD may have two OpenSSL, base and port however ++ # base OpenSSL doesn.t have openssl.pc file. ++ PKG_CHECK_MODULES( ++ [OPENSSL], ++ [openssl >= 0], ++ [freebsd_openssl=port], ++ [ ++ AC_CHECK_HEADER( ++ [openssl/rc4.h], ++ [freebsd_openssl=base], ++ [AC_MSG_ERROR([please install libssl-dev or openssl-devel])], ++ [#include ]) ++ ] ++ ) ++ ++ if test "x$freebsd_openssl" = "xport"; then ++ OPENSSL_BIN=`$PKG_CONFIG --variable=exec_prefix openssl`/bin ++ elif test "x$freebsd_openssl" = "xbase"; then ++ OPENSSL_BIN=/usr/bin ++ fi +else ++ # OpenSSL detection for other OS + PKG_CHECK_MODULES([OPENSSL], [openssl >= 0], [], -+ [AC_MSG_ERROR([please install libssl-dev or openssl-devel])]) + [AC_MSG_ERROR([please install libssl-dev or openssl-devel])]) ++ OPENSSL_BIN=`$PKG_CONFIG --variable=exec_prefix openssl`/bin +fi - + + # look for openssl binary +-OPENSSL_BIN=`$PKG_CONFIG --variable=exec_prefix openssl`/bin + AC_PATH_PROGS([OPENSSL], [openssl], [:], [$OPENSSL_BIN:$PATH]) + # checking for pam variation - # Linux-PAM is used in Linux systems Modified: branches/2017Q3/net/xrdp-devel/files/patch-sesman_sesman.ini ============================================================================== --- branches/2017Q3/net/xrdp-devel/files/patch-sesman_sesman.ini Thu Aug 17 21:12:46 2017 (r448191) +++ branches/2017Q3/net/xrdp-devel/files/patch-sesman_sesman.ini Thu Aug 17 21:14:39 2017 (r448192) @@ -1,8 +1,6 @@ -diff --git sesman/sesman.ini sesman/sesman.ini -index 674665e9..45929d6d 100644 ---- sesman/sesman.ini +--- sesman/sesman.ini.orig 2017-07-14 12:22:02 UTC +++ sesman/sesman.ini -@@ -84,8 +84,8 @@ param=xrdp/xorg.conf +@@ -77,8 +77,8 @@ param=xrdp/xorg.conf param=-noreset param=-nolisten param=tcp @@ -10,6 +8,6 @@ index 674665e9..45929d6d 100644 -param=.xorgxrdp.%s.log +#param=-logfile +#param=.xorgxrdp.%s.log - + [Chansrv] ; drive redirection, defaults to xrdp_client if not set Modified: branches/2017Q3/net/xrdp-devel/pkg-plist ============================================================================== --- branches/2017Q3/net/xrdp-devel/pkg-plist Thu Aug 17 21:12:46 2017 (r448191) +++ branches/2017Q3/net/xrdp-devel/pkg-plist Thu Aug 17 21:14:39 2017 (r448192) @@ -3,7 +3,6 @@ bin/xrdp-genkeymap bin/xrdp-keygen bin/xrdp-sesadmin bin/xrdp-sesrun -bin/rfxcodectest lib/libpainter.a lib/libpainter.so lib/libpainter.so.0 @@ -19,6 +18,7 @@ include/rfxcodec_encode.h include/xrdp_client_info.h include/xrdp_constants.h include/xrdp_rail.h +include/xrdp_sockets.h lib/pulse-%%PULSE_VERSION%%/modules/module-xrdp-sink.so lib/pulse-%%PULSE_VERSION%%/modules/module-xrdp-source.so libdata/pkgconfig/libpainter.pc @@ -30,28 +30,18 @@ lib/xrdp/libcommon.so.0 lib/xrdp/libcommon.so.0.0.0 lib/xrdp/libmc.a lib/xrdp/libmc.so -lib/xrdp/libmc.so.0 -lib/xrdp/libmc.so.0.0.0 -lib/xrdp/librdp.a -lib/xrdp/librdp.so -lib/xrdp/librdp.so.0 -lib/xrdp/librdp.so.0.0.0 lib/xrdp/libscp.a lib/xrdp/libscp.so lib/xrdp/libscp.so.0 lib/xrdp/libscp.so.0.0.0 lib/xrdp/libvnc.a lib/xrdp/libvnc.so -lib/xrdp/libvnc.so.0 -lib/xrdp/libvnc.so.0.0.0 lib/xrdp/libxrdp.a lib/xrdp/libxrdp.so lib/xrdp/libxrdp.so.0 lib/xrdp/libxrdp.so.0.0.0 lib/xrdp/libxup.a lib/xrdp/libxup.so -lib/xrdp/libxup.so.0 -lib/xrdp/libxup.so.0.0.0 lib/xrdp/libxrdpapi.so lib/xrdp/libxrdpapi.a lib/xrdp/libxrdpapi.so.0 @@ -80,10 +70,12 @@ etc/rc.d/xrdp %%ETCDIR%%/pulse/default.pa @postunexec if cmp -s %D/etc/xrdp/sesman.ini.sample %D/etc/xrdp/sesman.ini; then rm -f %D/etc/xrdp/sesman.ini; fi @postunexec if cmp -s %D/etc/xrdp/startwm.sh.sample %D/etc/xrdp/startwm.sh; then rm -f %D/etc/xrdp/startwm.sh; fi +@postunexec if cmp -s %D/etc/xrdp/reconnectwm.sh.sample %D/etc/xrdp/reconnectwm.sh; then rm -f %D/etc/xrdp/reconnectwm.sh; fi @postunexec if cmp -s %D/etc/xrdp/xrdp.ini.sample %D/etc/xrdp/xrdp.ini; then rm -f %D/etc/xrdp/xrdp.ini; fi @postunexec if cmp -s %D/etc/xrdp/xrdp_keyboard.ini.sample %D/etc/xrdp/xrdp_keyboard.ini; then rm -f %D/etc/xrdp/xrdp_keyboard.ini; fi @sample %%ETCDIR%%/sesman.ini.sample @sample %%ETCDIR%%/startwm.sh.sample +@sample %%ETCDIR%%/reconnectwm.sh.sample @sample %%ETCDIR%%/xrdp.ini.sample @sample %%ETCDIR%%/xrdp_keyboard.ini.sample man/man1/xrdp-dis.1.gz @@ -96,11 +88,9 @@ man/man8/xrdp-keygen.8.gz man/man8/xrdp-sesadmin.8.gz man/man8/xrdp-sesman.8.gz man/man8/xrdp-sesrun.8.gz -man/man8/xrdp-sessvc.8.gz sbin/xrdp sbin/xrdp-chansrv sbin/xrdp-sesman -sbin/xrdp-sessvc %%DATADIR%%/ad24b.bmp %%DATADIR%%/ad256.bmp %%DATADIR%%/cursor0.cur From owner-svn-ports-branches@freebsd.org Thu Aug 17 21:18:19 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85635DD7DE9; Thu, 17 Aug 2017 21:18:19 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E29E65253; Thu, 17 Aug 2017 21:18:19 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HLIIK6043980; Thu, 17 Aug 2017 21:18:18 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HLII0f043978; Thu, 17 Aug 2017 21:18:18 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201708172118.v7HLII0f043978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Thu, 17 Aug 2017 21:18:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448193 - in branches/2017Q3/multimedia/motion: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in branches/2017Q3/multimedia/motion: . files X-SVN-Commit-Revision: 448193 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 21:18:19 -0000 Author: ultima Date: Thu Aug 17 21:18:18 2017 New Revision: 448193 URL: https://svnweb.freebsd.org/changeset/ports/448193 Log: MFH: r447919 * Bump Revision to fix ioctl sign-extension warning * Cleanup Makefile PR: 221241 Submitted by: Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11993 Approved by: ports-secteam (feld) Added: branches/2017Q3/multimedia/motion/files/patch-video2.c - copied unchanged from r447919, head/multimedia/motion/files/patch-video2.c Modified: branches/2017Q3/multimedia/motion/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/multimedia/motion/Makefile ============================================================================== --- branches/2017Q3/multimedia/motion/Makefile Thu Aug 17 21:14:39 2017 (r448192) +++ branches/2017Q3/multimedia/motion/Makefile Thu Aug 17 21:18:18 2017 (r448193) @@ -3,8 +3,8 @@ PORTNAME= motion PORTVERSION= 4.0.1 -PORTREVISION= 3 DISTVERSIONPREFIX= release- +PORTREVISION= 4 CATEGORIES= multimedia MAINTAINER= ports@FreeBSD.org @@ -13,10 +13,11 @@ COMMENT= Motion detection application LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +USES= autoreconf gmake jpeg localbase pkgconfig USE_GITHUB= yes GH_ACCOUNT= Motion-Project +USE_RC_SUBR= ${PORTNAME} -USES= autoreconf gmake jpeg localbase pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-linuxthreads \ --without-jpeg-mmx @@ -26,7 +27,6 @@ KMODDIR?= /boot/modules KMODDIR= /boot/modules .endif -USE_RC_SUBR= ${PORTNAME} SUB_FILES= pkg-message PLIST_FILES= bin/motion \ Copied: branches/2017Q3/multimedia/motion/files/patch-video2.c (from r447919, head/multimedia/motion/files/patch-video2.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/multimedia/motion/files/patch-video2.c Thu Aug 17 21:18:18 2017 (r448193, copy of r447919, head/multimedia/motion/files/patch-video2.c) @@ -0,0 +1,11 @@ +--- video2.c.orig 2017-08-11 20:05:27 UTC ++++ video2.c +@@ -184,7 +184,7 @@ typedef struct { + /** + * xioctl + */ +-#ifdef __OpenBSD__ ++#if defined (__OpenBSD__) || defined (__FreeBSD__) + static int xioctl(src_v4l2_t *vid_source, unsigned long request, void *arg) + #else + static int xioctl(src_v4l2_t *vid_source, int request, void *arg) From owner-svn-ports-branches@freebsd.org Thu Aug 17 21:19:43 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AB12DD7F38; Thu, 17 Aug 2017 21:19:43 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5ADE65359; Thu, 17 Aug 2017 21:19:42 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HLJfAX044182; Thu, 17 Aug 2017 21:19:41 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HLJfpx044181; Thu, 17 Aug 2017 21:19:41 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201708172119.v7HLJfpx044181@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Thu, 17 Aug 2017 21:19:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448194 - branches/2017Q3/audio/dssi X-SVN-Group: ports-branches X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: branches/2017Q3/audio/dssi X-SVN-Commit-Revision: 448194 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 21:19:43 -0000 Author: ultima Date: Thu Aug 17 21:19:41 2017 New Revision: 448194 URL: https://svnweb.freebsd.org/changeset/ports/448194 Log: MFH: r447920 * Add license file * Cleanup Makefile * Bump PORTREVISION for added USE_XORG depend PR: 221239 Submitted by: Yuri Victorovich Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11992 Approved by: ports-secteam (feld) Modified: branches/2017Q3/audio/dssi/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/audio/dssi/Makefile ============================================================================== --- branches/2017Q3/audio/dssi/Makefile Thu Aug 17 21:18:18 2017 (r448193) +++ branches/2017Q3/audio/dssi/Makefile Thu Aug 17 21:19:41 2017 (r448194) @@ -3,7 +3,7 @@ PORTNAME= dssi PORTVERSION= 1.1.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= audio MASTER_SITES= SF @@ -11,6 +11,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= API for audio processing plugins LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa LIB_DEPENDS= libdssialsacompat.so:audio/libdssialsacompat \ @@ -20,34 +21,24 @@ LIB_DEPENDS= libdssialsacompat.so:audio/libdssialsacom libjack.so:audio/jack RUN_DEPENDS= ${LOCALBASE}/include/ladspa.h:audio/ladspa -USES= gmake pathfix pkgconfig libtool +USES= gmake pathfix pkgconfig localbase libtool GNU_CONFIGURE= yes +USE_XORG= x11 -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib - PORTDOCS= ChangeLog README PORTEXAMPLES= * +EXAMPLESSRCDIR= ${WRKSRC}/examples +EXAMPLES_FILES1=dssi_analyse_plugin dssi_list_plugins \ + dssi_osc_send dssi_osc_update +EXAMPLES_FILES2=LTS_qt trivial_sampler_qt -EXAMPLESSRCDIR= ${WRKSRC}/examples - -EXAMPLES_FILES1= dssi_analyse_plugin dssi_list_plugins \ - dssi_osc_send dssi_osc_update - -EXAMPLES_FILES2= LTS_qt trivial_sampler_qt - OPTIONS_DEFINE= DOCS EXAMPLES QT4 -OPTIONS_DEFAULT= QT4 - +OPTIONS_DEFAULT=QT4 OPTIONS_SUB= yes -.include - -.if ${PORT_OPTIONS:MQT4} -USE_QT4= corelib gui moc_build +QT4_USE= QT4=corelib,gui,moc_build QT_NONSTANDARD= yes -.endif post-patch: @${REINPLACE_CMD} -e \ @@ -59,26 +50,22 @@ post-patch: @${REINPLACE_CMD} -e \ '/alsa >=/s|$$PKG_CONFIG|${FALSE}|' ${WRKSRC}/configure -.if ! ${PORT_OPTIONS:MQT4} +post-patch-QT4-off: @${REINPLACE_CMD} -e \ '/QtCore >=/s|$$PKG_CONFIG|${FALSE}|' ${WRKSRC}/configure -.endif post-install: .for l in trivial_synth less_trivial_synth trivial_sampler karplong ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/dssi/${l}.so .endfor - @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_PROGRAM} ${EXAMPLES_FILES1:S|^|${EXAMPLESSRCDIR}/|} \ ${STAGEDIR}${EXAMPLESDIR} -.if ${PORT_OPTIONS:MQT4} +post-install-QT4-on: ${INSTALL_PROGRAM} ${EXAMPLES_FILES2:S|^|${EXAMPLESSRCDIR}/|} \ ${STAGEDIR}${EXAMPLESDIR} -.endif .include From owner-svn-ports-branches@freebsd.org Thu Aug 17 21:27:47 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0974ADD8609; Thu, 17 Aug 2017 21:27:47 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4B62657D5; Thu, 17 Aug 2017 21:27:46 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HLRjbK048513; Thu, 17 Aug 2017 21:27:45 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HLRjdf048511; Thu, 17 Aug 2017 21:27:45 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201708172127.v7HLRjdf048511@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Thu, 17 Aug 2017 21:27:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448195 - branches/2017Q3/x11-drivers/xorgxrdp X-SVN-Group: ports-branches X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: branches/2017Q3/x11-drivers/xorgxrdp X-SVN-Commit-Revision: 448195 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 21:27:47 -0000 Author: ultima Date: Thu Aug 17 21:27:45 2017 New Revision: 448195 URL: https://svnweb.freebsd.org/changeset/ports/448195 Log: MFH: r445301 r447735 * Updated to 0.2.3 * Removed append flag on LIBS and CONFIGURE_ENV, these are not required * Modernized post-patch target PR: 220442 Submitted by: Koichiro IWAO (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11499, https://reviews.freebsd.org/D11965 Approved by: ports-secteam (feld) Modified: branches/2017Q3/x11-drivers/xorgxrdp/Makefile branches/2017Q3/x11-drivers/xorgxrdp/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/x11-drivers/xorgxrdp/Makefile ============================================================================== --- branches/2017Q3/x11-drivers/xorgxrdp/Makefile Thu Aug 17 21:19:41 2017 (r448194) +++ branches/2017Q3/x11-drivers/xorgxrdp/Makefile Thu Aug 17 21:27:45 2017 (r448195) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xorgxrdp -PORTVERSION= 0.2.1 +PORTVERSION= 0.2.3 DISTVERSIONPREFIX= v CATEGORIES= x11-drivers DIST_SUBDIR= xrdp @@ -23,22 +23,18 @@ USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= neutrinolabs GH_PROJECT= xrdp:xrdp -GH_TAGNAME= v0.9.2:xrdp +GH_TAGNAME= v0.9.3:xrdp GNU_CONFIGURE= yes INSTALL_TARGET= install-strip CFLAGS+= -I${LOCALBASE}/include -LIBS+= -I${LOCALBASE}/lib -CONFIGURE_ENV+= XRDP_CFLAGS=-I${WRKSRC_xrdp}/common +LIBS= -I${LOCALBASE}/lib +CONFIGURE_ENV= XRDP_CFLAGS=-I${WRKSRC_xrdp}/common OPTIONS_DEFINE= DEBUG -.include - -post-patch: -.if ${PORT_OPTIONS:MDEBUG} +post-patch-DEBUG-on: ${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} -e 's|#define LOG_LEVEL [0-9]*|#define LOG_LEVEL 20|' -.endif pre-configure: @cd ${WRKSRC} && ./bootstrap Modified: branches/2017Q3/x11-drivers/xorgxrdp/distinfo ============================================================================== --- branches/2017Q3/x11-drivers/xorgxrdp/distinfo Thu Aug 17 21:19:41 2017 (r448194) +++ branches/2017Q3/x11-drivers/xorgxrdp/distinfo Thu Aug 17 21:27:45 2017 (r448195) @@ -1,5 +1,5 @@ -TIMESTAMP = 1490934966 -SHA256 (xrdp/neutrinolabs-xorgxrdp-v0.2.1_GH0.tar.gz) = 43800cd1fec03a24a2e0f0c51716e87570bc1c700f23c5b4ff0f0efd1bc4bf56 -SIZE (xrdp/neutrinolabs-xorgxrdp-v0.2.1_GH0.tar.gz) = 83010 -SHA256 (xrdp/neutrinolabs-xrdp-v0.9.2_GH0.tar.gz) = 41d3abf64f95c527cc0e91bf32d744518a0dcfaefddbace13b44ece0314cbcdc -SIZE (xrdp/neutrinolabs-xrdp-v0.9.2_GH0.tar.gz) = 1861921 +TIMESTAMP = 1500126402 +SHA256 (xrdp/neutrinolabs-xorgxrdp-v0.2.3_GH0.tar.gz) = 86dcf411dfef256b924b1f4e864dde4a6700932b5710231e102d4dfe0d2db544 +SIZE (xrdp/neutrinolabs-xorgxrdp-v0.2.3_GH0.tar.gz) = 86311 +SHA256 (xrdp/neutrinolabs-xrdp-v0.9.3_GH0.tar.gz) = 36f096d013b2cf09324cc1bf9c27caadc733001f2bcbe24e67f93233260afe5b +SIZE (xrdp/neutrinolabs-xrdp-v0.9.3_GH0.tar.gz) = 1866654 From owner-svn-ports-branches@freebsd.org Thu Aug 17 21:34:57 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AEC54DD8D34; Thu, 17 Aug 2017 21:34:57 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8603965D18; Thu, 17 Aug 2017 21:34:57 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7HLYuIO052798; Thu, 17 Aug 2017 21:34:56 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7HLYuRA052794; Thu, 17 Aug 2017 21:34:56 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201708172134.v7HLYuRA052794@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Thu, 17 Aug 2017 21:34:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448196 - in branches/2017Q3/devel/bazel: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in branches/2017Q3/devel/bazel: . files X-SVN-Commit-Revision: 448196 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2017 21:34:57 -0000 Author: ultima Date: Thu Aug 17 21:34:56 2017 New Revision: 448196 URL: https://svnweb.freebsd.org/changeset/ports/448196 Log: MFH: r445987 r446868 r447714 * Update to 0.5.3 * Fix build on i386 * Cleanup Makefile PR: 221114 Submitted by: Klaus Aehlig (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11937 Approved by: ports-secteam (feld) Added: branches/2017Q3/devel/bazel/files/extra-i386_src_BUILD - copied unchanged from r447714, head/devel/bazel/files/extra-i386_src_BUILD branches/2017Q3/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt - copied unchanged from r446868, head/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt Deleted: branches/2017Q3/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_stub__template.txt Modified: branches/2017Q3/devel/bazel/Makefile branches/2017Q3/devel/bazel/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/bazel/Makefile ============================================================================== --- branches/2017Q3/devel/bazel/Makefile Thu Aug 17 21:27:45 2017 (r448195) +++ branches/2017Q3/devel/bazel/Makefile Thu Aug 17 21:34:56 2017 (r448196) @@ -2,28 +2,27 @@ # $FreeBSD$ PORTNAME= bazel -PORTVERSION= 0.5.0 +PORTVERSION= 0.5.3 CATEGORIES= devel java MASTER_SITES= https://storage.googleapis.com/bazel/${PORTVERSION}/rc${FINALRC}/ DISTNAME= bazel-${PORTVERSION}rc${FINALRC}-dist -MAINTAINER= aehlig@linta.de +MAINTAINER?= aehlig@linta.de COMMENT= Fast and correct build system LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_armv6= fails to package: cp: bazel: No such file or directory + BUILD_DEPENDS= bash:shells/bash \ zip:archivers/zip -BROKEN_armv6= fails to package: cp: bazel: No such file or directory - # In bazel, a release is always code-wise identical to the final release candidate. # Hence we can also download that one and so have a simple way to also test earlier release # candidates. -FINALRC= 9 +FINALRC= 4 -NO_WRKSUBDIR= YES USES= shebangfix zip SHEBANG_REGEX= .*(sh|txt|_stub|stub_.*|bazel|get_workspace_status|protobuf_support|_so) USE_JAVA= yes @@ -32,6 +31,21 @@ JAVA_VERSION= 1.8 JAVA_BUILD= yes JAVA_RUN= yes +NO_WRKSUBDIR= YES + +CONFLICTS_INSTALL?= bazel-clang38 + +OPTIONS_DEFINE= CLANG38 +CLANG38_DESC= Use clang38 as default crosstool +CLANG38_BUILD_DEPENDS= clang38:devel/llvm38 +CLANG38_RUN_DEPENDS= clang38:devel/llvm38 + +.include + +.if ${ARCH} == "i386" +EXTRA_PATCHES= ${FILESDIR}/extra-i386_src_BUILD +.endif + # Have the location of the system-wide rc file reside ${ETCDIR}. # Also adapt the sample file to disable persistent java workers as they # do not work reliably on FreeBSD. @@ -41,6 +55,10 @@ post-patch: ${WRKSRC}/src/main/cpp/blaze_util_posix.cc @${ECHO_CMD} build --strategy=Javac=standalone >> ${WRKSRC}/scripts/packages/debian/bazel.bazelrc +post-patch-CLANG38-on: + @${REINPLACE_CMD} -e 's=/usr/lib/clang=${LOCALBASE}/llvm38/lib/clang=' \ + -e 's=/usr/bin/clang=${LOCALBASE}/bin/clang38=' ${WRKSRC}/tools/cpp/CROSSTOOL + do-build: @${MKDIR} ${WRKDIR}/bazel_tmp (if [ -z "$${SOURCE_DATE_EPOCH}" ] ; \ @@ -60,4 +78,4 @@ do-install: @${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/scripts/packages/debian/bazel.bazelrc ${STAGEDIR}${ETCDIR}/bazel.bazelrc.sample -.include +.include Modified: branches/2017Q3/devel/bazel/distinfo ============================================================================== --- branches/2017Q3/devel/bazel/distinfo Thu Aug 17 21:27:45 2017 (r448195) +++ branches/2017Q3/devel/bazel/distinfo Thu Aug 17 21:34:56 2017 (r448196) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495581096 -SHA256 (bazel-0.5.0rc9-dist.zip) = b2b2f2e399cd341d91d27f3df0f9862ef0c4c51cc256fd2bda6ca93c0f00e27f -SIZE (bazel-0.5.0rc9-dist.zip) = 98166774 +TIMESTAMP = 1501141783 +SHA256 (bazel-0.5.3rc4-dist.zip) = 41d70a98366256a20ddf0b0f2aab826913cd332d90c4f245b2c2e83a66f3d846 +SIZE (bazel-0.5.3rc4-dist.zip) = 100445883 Copied: branches/2017Q3/devel/bazel/files/extra-i386_src_BUILD (from r447714, head/devel/bazel/files/extra-i386_src_BUILD) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/devel/bazel/files/extra-i386_src_BUILD Thu Aug 17 21:34:56 2017 (r448196, copy of r447714, head/devel/bazel/files/extra-i386_src_BUILD) @@ -0,0 +1,32 @@ +--- src/BUILD.orig 2017-07-31 10:06:21.426927000 +0200 ++++ src/BUILD 2017-07-31 10:06:44.279345000 +0200 +@@ -179,7 +179,7 @@ + "//src/java_tools/singlejar:SingleJar_deploy.jar", + ], + "//conditions:default": [ +- "//src/tools/singlejar:singlejar", ++ "//src/java_tools/singlejar:SingleJar_deploy.jar", + ], + }) + select({ + "//tools/jdk:jdk7": [], +--- src/main/cpp/blaze_util_posix.cc.orig ++++ src/main/cpp/blaze_util_posix.cc +@@ -29,6 +29,7 @@ + #include + #include + #include ++#include + + #include + #include +@@ -648,8 +649,8 @@ + } + + void TrySleep(unsigned int milliseconds) { +- unsigned int seconds_part = milliseconds / 1000; +- unsigned int nanoseconds_part = (milliseconds % 1000) * 1000 * 1000; ++ time_t seconds_part = (time_t) (milliseconds / 1000); ++ long nanoseconds_part = ((long)(milliseconds % 1000)) * 1000 * 1000; + struct timespec sleeptime = {seconds_part, nanoseconds_part}; + nanosleep(&sleeptime, NULL); + } Copied: branches/2017Q3/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt (from r446868, head/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt Thu Aug 17 21:34:56 2017 (r448196, copy of r446868, head/devel/bazel/files/patch-src_main_java_com_google_devtools_build_lib_bazel_rules_python_python__stub__template.txt) @@ -0,0 +1,11 @@ +--- src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt.orig 2017-07-25 04:58:01 UTC ++++ src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt +@@ -38,7 +38,7 @@ if IsWindows() and not PYTHON_BINARY.end + + # Find a file in a given search path. + def SearchPath(name): +- search_path = os.getenv('PATH', os.defpath).split(os.pathsep) ++ search_path = os.getenv('PATH', os.defpath + ":/usr/local/bin").split(os.pathsep) + for directory in search_path: + if directory == '': continue + path = os.path.join(directory, name) From owner-svn-ports-branches@freebsd.org Fri Aug 18 12:48:29 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF825DDF2A7; Fri, 18 Aug 2017 12:48:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB01D1CBD; Fri, 18 Aug 2017 12:48:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7ICmS4x022918; Fri, 18 Aug 2017 12:48:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7ICmSVT022913; Fri, 18 Aug 2017 12:48:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201708181248.v7ICmSVT022913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 18 Aug 2017 12:48:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448227 - in branches/2017Q3/mail: thunderbird thunderbird-i18n X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q3/mail: thunderbird thunderbird-i18n X-SVN-Commit-Revision: 448227 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 12:48:30 -0000 Author: jbeich Date: Fri Aug 18 12:48:28 2017 New Revision: 448227 URL: https://svnweb.freebsd.org/changeset/ports/448227 Log: MFH: r448223 mail/thunderbird: update to 52.3.0 Changes: https://www.mozilla.org/thunderbird/52.3.0/releasenotes/ Security: 555b244e-6b20-4546-851f-d8eb7d6c1ffa Approved by: ports-secteam (feld) Modified: branches/2017Q3/mail/thunderbird-i18n/Makefile branches/2017Q3/mail/thunderbird-i18n/distinfo branches/2017Q3/mail/thunderbird/Makefile branches/2017Q3/mail/thunderbird/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/mail/thunderbird-i18n/Makefile ============================================================================== --- branches/2017Q3/mail/thunderbird-i18n/Makefile Fri Aug 18 12:45:46 2017 (r448226) +++ branches/2017Q3/mail/thunderbird-i18n/Makefile Fri Aug 18 12:48:28 2017 (r448227) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 52.2.1 +PORTVERSION= 52.3.0 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi Modified: branches/2017Q3/mail/thunderbird-i18n/distinfo ============================================================================== --- branches/2017Q3/mail/thunderbird-i18n/distinfo Fri Aug 18 12:45:46 2017 (r448226) +++ branches/2017Q3/mail/thunderbird-i18n/distinfo Fri Aug 18 12:48:28 2017 (r448227) @@ -1,119 +1,119 @@ -TIMESTAMP = 1498295116 -SHA256 (xpi/thunderbird-i18n-52.2.1/ar.xpi) = 22dcd3e9f50ba3defcf53f182f86005bba5ebd828449a875017fc053d7c756cd -SIZE (xpi/thunderbird-i18n-52.2.1/ar.xpi) = 604235 -SHA256 (xpi/thunderbird-i18n-52.2.1/ast.xpi) = 22cc9023901ca23806d6c481deb14666d0bb226292d1b5429b75dbccf38ad4a5 -SIZE (xpi/thunderbird-i18n-52.2.1/ast.xpi) = 541173 -SHA256 (xpi/thunderbird-i18n-52.2.1/be.xpi) = f48ae00c57d88a255d98c0fe75d918666e6018c07664f5572b9b446638989230 -SIZE (xpi/thunderbird-i18n-52.2.1/be.xpi) = 570931 -SHA256 (xpi/thunderbird-i18n-52.2.1/bg.xpi) = 3f501d2929ba3993ac26ef0987b8906d2f829dcf490547465622ab1165662787 -SIZE (xpi/thunderbird-i18n-52.2.1/bg.xpi) = 634897 -SHA256 (xpi/thunderbird-i18n-52.2.1/bn-BD.xpi) = 57e97e4bec110fb91c06f0ec547e56f3ef206dee6c72bcd0d247ad90bfd9f7ae -SIZE (xpi/thunderbird-i18n-52.2.1/bn-BD.xpi) = 676900 -SHA256 (xpi/thunderbird-i18n-52.2.1/br.xpi) = 52275f916bf5aac503fcb318ab5b7ada2a9c8bbdbf1e0a51255c1f56d14c3971 -SIZE (xpi/thunderbird-i18n-52.2.1/br.xpi) = 559380 -SHA256 (xpi/thunderbird-i18n-52.2.1/ca.xpi) = fbfb9924784cdd0fb447701bcd24901d982ce540f5b962c8200ded9247fffca0 -SIZE (xpi/thunderbird-i18n-52.2.1/ca.xpi) = 569910 -SHA256 (xpi/thunderbird-i18n-52.2.1/cs.xpi) = 238e9bac5c4d380e0776d042f6748b6913a9144601b0bad2e876b034be021227 -SIZE (xpi/thunderbird-i18n-52.2.1/cs.xpi) = 579149 -SHA256 (xpi/thunderbird-i18n-52.2.1/cy.xpi) = 1f1cc60b8f7b54663fabc2ce548ad054ef7ecc9827430897ac999fbf2d41d90e -SIZE (xpi/thunderbird-i18n-52.2.1/cy.xpi) = 554858 -SHA256 (xpi/thunderbird-i18n-52.2.1/da.xpi) = bfe1f5791408a9b547c06800245f8517ecb3e13a2274e641eca56a9755af26c0 -SIZE (xpi/thunderbird-i18n-52.2.1/da.xpi) = 543334 -SHA256 (xpi/thunderbird-i18n-52.2.1/de.xpi) = 3969772d76c2ca21f4c10c485c8fcbc5fad915659c9caa57a192130bb5eb54ce -SIZE (xpi/thunderbird-i18n-52.2.1/de.xpi) = 555743 -SHA256 (xpi/thunderbird-i18n-52.2.1/dsb.xpi) = 3bbb66c4ce25ea950362612d5947f335205063b27b2410751d8b31da5a3e04a3 -SIZE (xpi/thunderbird-i18n-52.2.1/dsb.xpi) = 584581 -SHA256 (xpi/thunderbird-i18n-52.2.1/el.xpi) = d51574ad11023b9f67ee3312ccf21899af65bbcdfe27bed19195ac601a20aeed -SIZE (xpi/thunderbird-i18n-52.2.1/el.xpi) = 662964 -SHA256 (xpi/thunderbird-i18n-52.2.1/en-GB.xpi) = f5f3d2e933290af5a3b02c9a22ad5ae9ab6d00fa359bd57395cbfdbc1d09beb1 -SIZE (xpi/thunderbird-i18n-52.2.1/en-GB.xpi) = 531233 -SHA256 (xpi/thunderbird-i18n-52.2.1/en-US.xpi) = 935e3e388e2d32ae364755e3611103eb82c7096253e9624e3a6bd1cab2e5bd88 -SIZE (xpi/thunderbird-i18n-52.2.1/en-US.xpi) = 529123 -SHA256 (xpi/thunderbird-i18n-52.2.1/es-AR.xpi) = 768e99b9103fd2ff64a9fe124d40250559b14e279091e0b092ebcc4d0b11c450 -SIZE (xpi/thunderbird-i18n-52.2.1/es-AR.xpi) = 565995 -SHA256 (xpi/thunderbird-i18n-52.2.1/es-ES.xpi) = 6b912064fd85bb45af5ef0197a7643666839b3007928df69fc42ae23b447cd90 -SIZE (xpi/thunderbird-i18n-52.2.1/es-ES.xpi) = 445464 -SHA256 (xpi/thunderbird-i18n-52.2.1/et.xpi) = 5dfbc14d1cd32243fe763cd48bc98dbafcf592f9ed5dcaff4fe39998b745aae6 -SIZE (xpi/thunderbird-i18n-52.2.1/et.xpi) = 551661 -SHA256 (xpi/thunderbird-i18n-52.2.1/eu.xpi) = 44d7e61ceeac53a923f84e06807aec44080c36d2a6d676a527db76efb4011349 -SIZE (xpi/thunderbird-i18n-52.2.1/eu.xpi) = 555536 -SHA256 (xpi/thunderbird-i18n-52.2.1/fi.xpi) = dcc53c8de93779ecca4a4591ce24bfccffbea8d9323ae8121928ebcd1eb26378 -SIZE (xpi/thunderbird-i18n-52.2.1/fi.xpi) = 550669 -SHA256 (xpi/thunderbird-i18n-52.2.1/fr.xpi) = 8bd2d255398ea7f4c64d506edccf7466f8a730604a4ee52343aa423faad5ffc3 -SIZE (xpi/thunderbird-i18n-52.2.1/fr.xpi) = 577560 -SHA256 (xpi/thunderbird-i18n-52.2.1/fy-NL.xpi) = a3501bfdc368011e05bc1a3453a1970fd3f8a1d0c21ac45bf1588352c70eb5b4 -SIZE (xpi/thunderbird-i18n-52.2.1/fy-NL.xpi) = 563632 -SHA256 (xpi/thunderbird-i18n-52.2.1/ga-IE.xpi) = 3dc2f7b8ce9bd9441517a7972216f7cee5c490d20dbef3e7b393298f59dfce20 -SIZE (xpi/thunderbird-i18n-52.2.1/ga-IE.xpi) = 583556 -SHA256 (xpi/thunderbird-i18n-52.2.1/gd.xpi) = 3c9bbc6e543caa0bca0585d5eaf1d4ea600bda07b2ba4446c5df8d8158bb168c -SIZE (xpi/thunderbird-i18n-52.2.1/gd.xpi) = 574065 -SHA256 (xpi/thunderbird-i18n-52.2.1/gl.xpi) = 68ede5ad952e2fd2f8dae3820c252c163955dd278a81e277cb74c1db6da14e66 -SIZE (xpi/thunderbird-i18n-52.2.1/gl.xpi) = 575150 -SHA256 (xpi/thunderbird-i18n-52.2.1/he.xpi) = 324a1922900e6344a61ffd174063a027c261795e571eb839043d3c41f1c0504b -SIZE (xpi/thunderbird-i18n-52.2.1/he.xpi) = 592566 -SHA256 (xpi/thunderbird-i18n-52.2.1/hr.xpi) = 7e437a6f7bfaf6e156cd4280630595ae02b4fd91b6cecdecf7fa59d73f498056 -SIZE (xpi/thunderbird-i18n-52.2.1/hr.xpi) = 564778 -SHA256 (xpi/thunderbird-i18n-52.2.1/hsb.xpi) = 9104b228eaa26cf8bd7406da01c518886a444ac4b7eb0440a683b1c51209e0db -SIZE (xpi/thunderbird-i18n-52.2.1/hsb.xpi) = 582241 -SHA256 (xpi/thunderbird-i18n-52.2.1/hu.xpi) = 2f50db9573f031a6e91c5f7221c97857d561e781f97bfc15dcd4eb5c466624f9 -SIZE (xpi/thunderbird-i18n-52.2.1/hu.xpi) = 586446 -SHA256 (xpi/thunderbird-i18n-52.2.1/hy-AM.xpi) = 49dd57063086b8c51b212ce38833ca458843b3b4176dbf232db31f9ed0225f1f -SIZE (xpi/thunderbird-i18n-52.2.1/hy-AM.xpi) = 629879 -SHA256 (xpi/thunderbird-i18n-52.2.1/id.xpi) = 07b0bb412779ba5a6a2da009247519d3fd6c6ccae3b17cd01cf37b74cb289af7 -SIZE (xpi/thunderbird-i18n-52.2.1/id.xpi) = 546526 -SHA256 (xpi/thunderbird-i18n-52.2.1/is.xpi) = 6ff308e59bf9e6728e9343bfa7fe54161c16fc98c5b675b48f500c5dd7dcd4b7 -SIZE (xpi/thunderbird-i18n-52.2.1/is.xpi) = 555712 -SHA256 (xpi/thunderbird-i18n-52.2.1/it.xpi) = dc6fc7d3f3e9f90b92c50e3eb55d2b4484c61778e3c87207e4da273e8935abfa -SIZE (xpi/thunderbird-i18n-52.2.1/it.xpi) = 455407 -SHA256 (xpi/thunderbird-i18n-52.2.1/ja.xpi) = a0a623c874b16b6aac4c10d5ee6017c8542549aa1c843b448e0372ca432a6095 -SIZE (xpi/thunderbird-i18n-52.2.1/ja.xpi) = 630052 -SHA256 (xpi/thunderbird-i18n-52.2.1/kab.xpi) = a4af3805d00f1687feb629eeb5d68071c437492381f4e17a9397aff019f9d4dd -SIZE (xpi/thunderbird-i18n-52.2.1/kab.xpi) = 568691 -SHA256 (xpi/thunderbird-i18n-52.2.1/ko.xpi) = 027327ac1b6b41c719ffe63118e53101ea44d89e66e865c2ff35d74ed8cd260c -SIZE (xpi/thunderbird-i18n-52.2.1/ko.xpi) = 595517 -SHA256 (xpi/thunderbird-i18n-52.2.1/lt.xpi) = f14380b74c91e07677d5f7a79c8da55602ea9609c61eb5558000d31cf3cdf55e -SIZE (xpi/thunderbird-i18n-52.2.1/lt.xpi) = 580598 -SHA256 (xpi/thunderbird-i18n-52.2.1/nb-NO.xpi) = 207bdd8e6845c0b440264b60daeaa9a177114ceefe004876b4b4dc1e7b3b5dc6 -SIZE (xpi/thunderbird-i18n-52.2.1/nb-NO.xpi) = 551103 -SHA256 (xpi/thunderbird-i18n-52.2.1/nl.xpi) = 4b23e0699b73a43a9dba2914d5b30265f0c80ef9912114afca73b10be84d4e37 -SIZE (xpi/thunderbird-i18n-52.2.1/nl.xpi) = 557956 -SHA256 (xpi/thunderbird-i18n-52.2.1/nn-NO.xpi) = d4829c4fc544b29d09ae7ec908d6036fb2fa74d6705023d5a5bd69bbdf29089a -SIZE (xpi/thunderbird-i18n-52.2.1/nn-NO.xpi) = 551891 -SHA256 (xpi/thunderbird-i18n-52.2.1/pa-IN.xpi) = a3205a13e40f975de5f741b00d74a12ca5165719b0c627a4307024521efb5d7b -SIZE (xpi/thunderbird-i18n-52.2.1/pa-IN.xpi) = 646568 -SHA256 (xpi/thunderbird-i18n-52.2.1/pl.xpi) = 41593d6ed0e2a90f40bcb3e52fd1e44b9f9177f4c8fdb069a38d7e9612e5c44e -SIZE (xpi/thunderbird-i18n-52.2.1/pl.xpi) = 469901 -SHA256 (xpi/thunderbird-i18n-52.2.1/pt-BR.xpi) = 3436a3b5c304134490501d9aec86803e9d2a19c8d417e546bea4e79e0c580fce -SIZE (xpi/thunderbird-i18n-52.2.1/pt-BR.xpi) = 558223 -SHA256 (xpi/thunderbird-i18n-52.2.1/pt-PT.xpi) = f50616dcf2608c7221a83dc1a9736b87b82e2d20e807b31e0fa52267838a01f9 -SIZE (xpi/thunderbird-i18n-52.2.1/pt-PT.xpi) = 565623 -SHA256 (xpi/thunderbird-i18n-52.2.1/rm.xpi) = 5436ec4567d8f9a3f456ed1dad8d5e99b20e17478d452f481b94d86951a4a962 -SIZE (xpi/thunderbird-i18n-52.2.1/rm.xpi) = 557605 -SHA256 (xpi/thunderbird-i18n-52.2.1/ro.xpi) = 7da7e3e2ec1fa3e7df8b2b1d8a886f25f642299b2b48acfd286c14b286d9238f -SIZE (xpi/thunderbird-i18n-52.2.1/ro.xpi) = 570529 -SHA256 (xpi/thunderbird-i18n-52.2.1/ru.xpi) = 2ec8ee1cc3f4b9467a6252ee9b0b07e21d73c570f4df32da3398ef145969e713 -SIZE (xpi/thunderbird-i18n-52.2.1/ru.xpi) = 530670 -SHA256 (xpi/thunderbird-i18n-52.2.1/si.xpi) = 528d8810eec40fd7bf7d7f8963177f510498401518f6152ba0d9954d768deb62 -SIZE (xpi/thunderbird-i18n-52.2.1/si.xpi) = 649010 -SHA256 (xpi/thunderbird-i18n-52.2.1/sk.xpi) = 4d4ed62d2eb370bae612e91387374c96abb45bb753d25a8af2ada2317daedb3b -SIZE (xpi/thunderbird-i18n-52.2.1/sk.xpi) = 583882 -SHA256 (xpi/thunderbird-i18n-52.2.1/sl.xpi) = a24004dac5fd3dbfe888b7946392b3a362725fbeb202f70ed05a525dc8ff3f40 -SIZE (xpi/thunderbird-i18n-52.2.1/sl.xpi) = 562834 -SHA256 (xpi/thunderbird-i18n-52.2.1/sq.xpi) = 5bcee7dd135c22f288066df7550f6bebca7fd84ddaf9c0c7fab8cb421b17cbab -SIZE (xpi/thunderbird-i18n-52.2.1/sq.xpi) = 570617 -SHA256 (xpi/thunderbird-i18n-52.2.1/sr.xpi) = d91e167f296c877bc0f0dd5fbd608050fb4875e11b7a69728998b0af4dce57e9 -SIZE (xpi/thunderbird-i18n-52.2.1/sr.xpi) = 609019 -SHA256 (xpi/thunderbird-i18n-52.2.1/sv-SE.xpi) = 1b8585d1c6204272c628944b7ec753256dc929a61cb915ca666feed4b8f4f985 -SIZE (xpi/thunderbird-i18n-52.2.1/sv-SE.xpi) = 565777 -SHA256 (xpi/thunderbird-i18n-52.2.1/ta-LK.xpi) = f0338196052609f2fd24ca5c68c4845993760683b77932a8995c3045d55dcc31 -SIZE (xpi/thunderbird-i18n-52.2.1/ta-LK.xpi) = 675039 -SHA256 (xpi/thunderbird-i18n-52.2.1/tr.xpi) = 984bb440a6d6fa3846badf719a45d0f07e3bb48717debed90cf039b1265702b1 -SIZE (xpi/thunderbird-i18n-52.2.1/tr.xpi) = 569926 -SHA256 (xpi/thunderbird-i18n-52.2.1/uk.xpi) = 11d0136bf683349c56e1eab3fe9a023be6b0057d48a63a5e7cebce1d818e6b92 -SIZE (xpi/thunderbird-i18n-52.2.1/uk.xpi) = 652854 -SHA256 (xpi/thunderbird-i18n-52.2.1/vi.xpi) = aee7710f39671f1265170641090064cb42ed1f1591298624c7e16ef14640e5c2 -SIZE (xpi/thunderbird-i18n-52.2.1/vi.xpi) = 637163 -SHA256 (xpi/thunderbird-i18n-52.2.1/zh-CN.xpi) = acc4de2e34fe171f6bb2d1d798c29fb90d841fc1034b80cb9cbdb2c4a58237eb -SIZE (xpi/thunderbird-i18n-52.2.1/zh-CN.xpi) = 593611 -SHA256 (xpi/thunderbird-i18n-52.2.1/zh-TW.xpi) = e1a8319aa85f8488b509742e5856d4455ebf1379a6bd3f5a2936636b5124ed7e -SIZE (xpi/thunderbird-i18n-52.2.1/zh-TW.xpi) = 595728 +TIMESTAMP = 1502795268 +SHA256 (xpi/thunderbird-i18n-52.3.0/ar.xpi) = a96dbaed8c14e113c2e2295422c4346ed97cbba349f6464532d4585ab6a5be88 +SIZE (xpi/thunderbird-i18n-52.3.0/ar.xpi) = 604235 +SHA256 (xpi/thunderbird-i18n-52.3.0/ast.xpi) = eb2614092cebafb0d326ac318bbd76d5e35a6865fe4f0be72bad871bc703584f +SIZE (xpi/thunderbird-i18n-52.3.0/ast.xpi) = 541173 +SHA256 (xpi/thunderbird-i18n-52.3.0/be.xpi) = b412a5cb7f2752d1d72325356b9d0fa124af03f29e45ceeafe3b0b9fc0c7e28b +SIZE (xpi/thunderbird-i18n-52.3.0/be.xpi) = 570932 +SHA256 (xpi/thunderbird-i18n-52.3.0/bg.xpi) = ff093e353378ae63727aca8b95578d89d369c6b86e48a030d893a9cd8ad77922 +SIZE (xpi/thunderbird-i18n-52.3.0/bg.xpi) = 634897 +SHA256 (xpi/thunderbird-i18n-52.3.0/bn-BD.xpi) = eaebfde95c33aafa0c7aa649fca093a25ed93db58e8fed3485589b9326806270 +SIZE (xpi/thunderbird-i18n-52.3.0/bn-BD.xpi) = 676900 +SHA256 (xpi/thunderbird-i18n-52.3.0/br.xpi) = 87819d6762d57ce02564ec3cdb195158eed635ba27a3165dfc862553f53f188a +SIZE (xpi/thunderbird-i18n-52.3.0/br.xpi) = 559380 +SHA256 (xpi/thunderbird-i18n-52.3.0/ca.xpi) = 9dffc936fd1dda855d19eb464ce01b22bfb667585b983b3c7b0a74ea10e298ce +SIZE (xpi/thunderbird-i18n-52.3.0/ca.xpi) = 569910 +SHA256 (xpi/thunderbird-i18n-52.3.0/cs.xpi) = eb0412f1fcf7a7c96e434d114d5763c56322317633bb8790dfa3362df03be870 +SIZE (xpi/thunderbird-i18n-52.3.0/cs.xpi) = 579150 +SHA256 (xpi/thunderbird-i18n-52.3.0/cy.xpi) = 1a000f677941f4c28186d4e58bf6df79f4d8a47e2a7a338005bad91604e8c388 +SIZE (xpi/thunderbird-i18n-52.3.0/cy.xpi) = 554858 +SHA256 (xpi/thunderbird-i18n-52.3.0/da.xpi) = 583fd8b1d6034739477cc5d935a766242b7d1e4bdb869545645f893d4d80cd70 +SIZE (xpi/thunderbird-i18n-52.3.0/da.xpi) = 543335 +SHA256 (xpi/thunderbird-i18n-52.3.0/de.xpi) = 48cf4ae0856b286f4f5788abcfec66b8817dbd836102236907e826cb2ed555b3 +SIZE (xpi/thunderbird-i18n-52.3.0/de.xpi) = 555744 +SHA256 (xpi/thunderbird-i18n-52.3.0/dsb.xpi) = 7e4333f45af142b59c401b303cd4111bd5e92a4f3a4aaf0a9287a224283087b3 +SIZE (xpi/thunderbird-i18n-52.3.0/dsb.xpi) = 584582 +SHA256 (xpi/thunderbird-i18n-52.3.0/el.xpi) = 554a62ec5d5ae4cca3d093273b8df7357b649f0b853a05714a7990667d1e8e7c +SIZE (xpi/thunderbird-i18n-52.3.0/el.xpi) = 662964 +SHA256 (xpi/thunderbird-i18n-52.3.0/en-GB.xpi) = 2cf73f099a49cba6301ac60da05e6bafa495e9363d6c0bf84caecc1a928bde8e +SIZE (xpi/thunderbird-i18n-52.3.0/en-GB.xpi) = 531234 +SHA256 (xpi/thunderbird-i18n-52.3.0/en-US.xpi) = fb145187f2917838897130f23159e6a643cd134aaea1278f0e968436cdf6c30c +SIZE (xpi/thunderbird-i18n-52.3.0/en-US.xpi) = 529123 +SHA256 (xpi/thunderbird-i18n-52.3.0/es-AR.xpi) = f4b32effba6b458346067eb3ccf1c0de6d30cc4170d0918b013e43cac476037f +SIZE (xpi/thunderbird-i18n-52.3.0/es-AR.xpi) = 565995 +SHA256 (xpi/thunderbird-i18n-52.3.0/es-ES.xpi) = ba01837ab8f6e520fab791c65b9897e7194e2297a073c9c1388e45f02f2cd9a4 +SIZE (xpi/thunderbird-i18n-52.3.0/es-ES.xpi) = 445464 +SHA256 (xpi/thunderbird-i18n-52.3.0/et.xpi) = 1fab98e403dae9cc5a890b5f36759e6c9c10c88d150f5c0d1fa97dc5f822b0df +SIZE (xpi/thunderbird-i18n-52.3.0/et.xpi) = 551661 +SHA256 (xpi/thunderbird-i18n-52.3.0/eu.xpi) = 891ca411246628ac63e41cc5e1316afcf9ace1c62eaf69e2a23777f24f4b2c29 +SIZE (xpi/thunderbird-i18n-52.3.0/eu.xpi) = 555537 +SHA256 (xpi/thunderbird-i18n-52.3.0/fi.xpi) = 83944d311d4230f8e17682f1a1248cab3713e7825b87ab0511d5293772c053bf +SIZE (xpi/thunderbird-i18n-52.3.0/fi.xpi) = 550669 +SHA256 (xpi/thunderbird-i18n-52.3.0/fr.xpi) = e9a81424c9af8e0fe21abc94deb53a20f83d6ec7f4484ae4ab2816cd4aa9022f +SIZE (xpi/thunderbird-i18n-52.3.0/fr.xpi) = 577561 +SHA256 (xpi/thunderbird-i18n-52.3.0/fy-NL.xpi) = 671f0d00c544b500b420375c385e8232354fe364f4e78dbf027ba319745ed61b +SIZE (xpi/thunderbird-i18n-52.3.0/fy-NL.xpi) = 563632 +SHA256 (xpi/thunderbird-i18n-52.3.0/ga-IE.xpi) = 5fbc249bff62b9cd732fd3ed26af3308ac25bb7ca71e5522e1b9213e22ff8e21 +SIZE (xpi/thunderbird-i18n-52.3.0/ga-IE.xpi) = 583556 +SHA256 (xpi/thunderbird-i18n-52.3.0/gd.xpi) = fc384ea05422569d075e13c8e4063fc613f37cec50e99a63deb8c0b88c12af8a +SIZE (xpi/thunderbird-i18n-52.3.0/gd.xpi) = 574065 +SHA256 (xpi/thunderbird-i18n-52.3.0/gl.xpi) = c4d9c4c7ab51985e265b7f4aaa9af7f7f798923dc9cc2796409cd912a437526e +SIZE (xpi/thunderbird-i18n-52.3.0/gl.xpi) = 575150 +SHA256 (xpi/thunderbird-i18n-52.3.0/he.xpi) = d9d6cc59c40257d7b4f47ffec7e0f8b7025f219ac08a45e5b30f645c68ebce9e +SIZE (xpi/thunderbird-i18n-52.3.0/he.xpi) = 592566 +SHA256 (xpi/thunderbird-i18n-52.3.0/hr.xpi) = a72bfb410e1a492a1f43cfa44b851b659d275a49ea930063c977501799f3367e +SIZE (xpi/thunderbird-i18n-52.3.0/hr.xpi) = 564779 +SHA256 (xpi/thunderbird-i18n-52.3.0/hsb.xpi) = d9972fe797d7b30b642ef8950dbccc81f8ef4f7230df6d9f49983528edbcac84 +SIZE (xpi/thunderbird-i18n-52.3.0/hsb.xpi) = 582241 +SHA256 (xpi/thunderbird-i18n-52.3.0/hu.xpi) = a10bb179def63b0795e871268396e8091583adaff141b06ae1ea84caf014814d +SIZE (xpi/thunderbird-i18n-52.3.0/hu.xpi) = 586446 +SHA256 (xpi/thunderbird-i18n-52.3.0/hy-AM.xpi) = b78d7432de20a474bcdbb847a35c60622ec48af5a9d17692b3d5d4b06514b9b5 +SIZE (xpi/thunderbird-i18n-52.3.0/hy-AM.xpi) = 629879 +SHA256 (xpi/thunderbird-i18n-52.3.0/id.xpi) = 06de6a7000509f8f1a9aaf1438a5ff1133a00b513a6ef868c861256463e7fff2 +SIZE (xpi/thunderbird-i18n-52.3.0/id.xpi) = 546526 +SHA256 (xpi/thunderbird-i18n-52.3.0/is.xpi) = 8dafb8e5fd1c967ce613893c12e553aca11d82a5880822e010941f7d02e3e457 +SIZE (xpi/thunderbird-i18n-52.3.0/is.xpi) = 555712 +SHA256 (xpi/thunderbird-i18n-52.3.0/it.xpi) = 3987ec1092b72806eddad880b5ee25d1fd930be2ade91c8277fca50de21f8322 +SIZE (xpi/thunderbird-i18n-52.3.0/it.xpi) = 455408 +SHA256 (xpi/thunderbird-i18n-52.3.0/ja.xpi) = 7024ed0f72065e103dc72c388162f4dba5102bcb96b2fb6384b46503fdc28057 +SIZE (xpi/thunderbird-i18n-52.3.0/ja.xpi) = 630053 +SHA256 (xpi/thunderbird-i18n-52.3.0/kab.xpi) = c4996d2ac0ca0622fc68af5154b5a8105156d72aacdbe8c971c6dcd169ae9647 +SIZE (xpi/thunderbird-i18n-52.3.0/kab.xpi) = 568691 +SHA256 (xpi/thunderbird-i18n-52.3.0/ko.xpi) = 816fbb26a0a21a88633b1ffd236a73c5fb31da5a21a28d3bfb9d4cb5f9c2b7c8 +SIZE (xpi/thunderbird-i18n-52.3.0/ko.xpi) = 595516 +SHA256 (xpi/thunderbird-i18n-52.3.0/lt.xpi) = a8505ea9138478c30e839fffe1949d63e536f2a812c2777a315a59f30bd1ddb2 +SIZE (xpi/thunderbird-i18n-52.3.0/lt.xpi) = 580598 +SHA256 (xpi/thunderbird-i18n-52.3.0/nb-NO.xpi) = c1c15dc37d85a4912ab467e9bf9aef814ae432eff338032b41c1fd49eae13010 +SIZE (xpi/thunderbird-i18n-52.3.0/nb-NO.xpi) = 551104 +SHA256 (xpi/thunderbird-i18n-52.3.0/nl.xpi) = c713a6dbeebb1c8dd77634dfba6b7dda3b422fb28a55329e2d8afa8ce60484ce +SIZE (xpi/thunderbird-i18n-52.3.0/nl.xpi) = 557957 +SHA256 (xpi/thunderbird-i18n-52.3.0/nn-NO.xpi) = a0b5cc0aa1c7017e8030fbc8c4b6573ddd3db4d6f15c97e9aa2eeeacba9c95e5 +SIZE (xpi/thunderbird-i18n-52.3.0/nn-NO.xpi) = 551891 +SHA256 (xpi/thunderbird-i18n-52.3.0/pa-IN.xpi) = bcb38080fe3aed04631029947050f12a5c5abf3a9a8710d36ef10f2186108c52 +SIZE (xpi/thunderbird-i18n-52.3.0/pa-IN.xpi) = 646568 +SHA256 (xpi/thunderbird-i18n-52.3.0/pl.xpi) = b67d804febd8b5c2ac18fd1eb16e958113b8b240d69ce4b80bcd14f9b3afd220 +SIZE (xpi/thunderbird-i18n-52.3.0/pl.xpi) = 469901 +SHA256 (xpi/thunderbird-i18n-52.3.0/pt-BR.xpi) = 01e6248cfd1939ef66a8f7f1ad682a5735392b6ee41fdefe92e7cfa5aafed5a6 +SIZE (xpi/thunderbird-i18n-52.3.0/pt-BR.xpi) = 558224 +SHA256 (xpi/thunderbird-i18n-52.3.0/pt-PT.xpi) = f02da1da4e3d5edc7b1f903470c7bf02f06026d0acfce6d064a15233a21c0e00 +SIZE (xpi/thunderbird-i18n-52.3.0/pt-PT.xpi) = 565623 +SHA256 (xpi/thunderbird-i18n-52.3.0/rm.xpi) = 3df2eb933ed20ccd66c8da61bdb74670e7b5e5a2def1c8a9a45fc2a25c55a03c +SIZE (xpi/thunderbird-i18n-52.3.0/rm.xpi) = 557605 +SHA256 (xpi/thunderbird-i18n-52.3.0/ro.xpi) = 4bbeb7ea8eedfc8e0a5bf2517d38fdd9aab6a29a7d88cb68c454e3fdf80d3413 +SIZE (xpi/thunderbird-i18n-52.3.0/ro.xpi) = 570530 +SHA256 (xpi/thunderbird-i18n-52.3.0/ru.xpi) = 0692791c71ff37b7b1c141f68ffb985d2a565edd4085b2dc3456ef3a3c45e2e3 +SIZE (xpi/thunderbird-i18n-52.3.0/ru.xpi) = 530670 +SHA256 (xpi/thunderbird-i18n-52.3.0/si.xpi) = 09af36243360b498a6352f10eb28c78f855d87ce0ef5fbfbc11f13bb45465462 +SIZE (xpi/thunderbird-i18n-52.3.0/si.xpi) = 649011 +SHA256 (xpi/thunderbird-i18n-52.3.0/sk.xpi) = 6450c19ddad79bab8b059a992b844fd362d4e6cdd58e31d63bafe25f7e73ab31 +SIZE (xpi/thunderbird-i18n-52.3.0/sk.xpi) = 583882 +SHA256 (xpi/thunderbird-i18n-52.3.0/sl.xpi) = 190ed15658855a1438b46614209d723bf27fb90864ca64dc21482fb52f5718b4 +SIZE (xpi/thunderbird-i18n-52.3.0/sl.xpi) = 562831 +SHA256 (xpi/thunderbird-i18n-52.3.0/sq.xpi) = a68c843f7d755ab2b03a8c23018f17be1664279659f9fa9bcbae207ad27d309c +SIZE (xpi/thunderbird-i18n-52.3.0/sq.xpi) = 570616 +SHA256 (xpi/thunderbird-i18n-52.3.0/sr.xpi) = 194e63cc0eac946214adeb1a45b046a07ce5f7dbe3d16c1dc960dae07f3215ef +SIZE (xpi/thunderbird-i18n-52.3.0/sr.xpi) = 609019 +SHA256 (xpi/thunderbird-i18n-52.3.0/sv-SE.xpi) = ab9811adb9abf588119d7854ba79a6fb6204eeef3724a0a615a3815fbe8ebfd8 +SIZE (xpi/thunderbird-i18n-52.3.0/sv-SE.xpi) = 565777 +SHA256 (xpi/thunderbird-i18n-52.3.0/ta-LK.xpi) = 62d4a70fc6b8c93a44e9de6d810a3c62561eead83b8abfb545b0bb22f500fec3 +SIZE (xpi/thunderbird-i18n-52.3.0/ta-LK.xpi) = 675039 +SHA256 (xpi/thunderbird-i18n-52.3.0/tr.xpi) = 4ef6bcf07c756a4da0c3aabe41c8d32962b72fb224ff93ea475d2f1270ceb061 +SIZE (xpi/thunderbird-i18n-52.3.0/tr.xpi) = 569926 +SHA256 (xpi/thunderbird-i18n-52.3.0/uk.xpi) = b6eaa27d994bb265b621f5df1b288d4d97e0f543e1806d9fd988c7a563f683a1 +SIZE (xpi/thunderbird-i18n-52.3.0/uk.xpi) = 652855 +SHA256 (xpi/thunderbird-i18n-52.3.0/vi.xpi) = 98fa9c475af8c5a4dfe132ef5f27bf3ae0b550cce46c6bf7125608beb965aa06 +SIZE (xpi/thunderbird-i18n-52.3.0/vi.xpi) = 637163 +SHA256 (xpi/thunderbird-i18n-52.3.0/zh-CN.xpi) = 2c5beb3ba1bebc339ae4124fcee79fad375ebba7d97251dac83ff1eed1042bad +SIZE (xpi/thunderbird-i18n-52.3.0/zh-CN.xpi) = 593612 +SHA256 (xpi/thunderbird-i18n-52.3.0/zh-TW.xpi) = 2279205d7288313d59be7c2eadcc572988e063fbb570e76802cb681bdc262e0e +SIZE (xpi/thunderbird-i18n-52.3.0/zh-TW.xpi) = 595729 Modified: branches/2017Q3/mail/thunderbird/Makefile ============================================================================== --- branches/2017Q3/mail/thunderbird/Makefile Fri Aug 18 12:45:46 2017 (r448226) +++ branches/2017Q3/mail/thunderbird/Makefile Fri Aug 18 12:48:28 2017 (r448227) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 52.2.1 +DISTVERSION= 52.3.0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: branches/2017Q3/mail/thunderbird/distinfo ============================================================================== --- branches/2017Q3/mail/thunderbird/distinfo Fri Aug 18 12:45:46 2017 (r448226) +++ branches/2017Q3/mail/thunderbird/distinfo Fri Aug 18 12:48:28 2017 (r448227) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498217453 -SHA256 (thunderbird-52.2.1.source.tar.xz) = 8b9e4b787f9059973bb3cae41c3957d6907e13e5f0b2310f3730d59ce7d8779a -SIZE (thunderbird-52.2.1.source.tar.xz) = 228498164 +TIMESTAMP = 1502795268 +SHA256 (thunderbird-52.3.0.source.tar.xz) = 050acc320a9c50365a53e4faa6538a0ad7f9a302d5f2cfb6edf0c6fe1b573b18 +SIZE (thunderbird-52.3.0.source.tar.xz) = 228532004 From owner-svn-ports-branches@freebsd.org Fri Aug 18 15:03:41 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D60A5DE6D4A; Fri, 18 Aug 2017 15:03:41 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AFB44673C3; Fri, 18 Aug 2017 15:03:41 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7IF3edr080580; Fri, 18 Aug 2017 15:03:40 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7IF3eJS080576; Fri, 18 Aug 2017 15:03:40 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201708181503.v7IF3eJS080576@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 18 Aug 2017 15:03:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448237 - in branches/2017Q3/java: linux-oracle-jdk18 linux-oracle-jre18 X-SVN-Group: ports-branches X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: in branches/2017Q3/java: linux-oracle-jdk18 linux-oracle-jre18 X-SVN-Commit-Revision: 448237 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 15:03:42 -0000 Author: jkim Date: Fri Aug 18 15:03:40 2017 New Revision: 448237 URL: https://svnweb.freebsd.org/changeset/ports/448237 Log: MFH: r447701 Update to 8u144. Approved by: ports-secteam (feld) Modified: branches/2017Q3/java/linux-oracle-jdk18/Makefile branches/2017Q3/java/linux-oracle-jdk18/distinfo branches/2017Q3/java/linux-oracle-jre18/Makefile branches/2017Q3/java/linux-oracle-jre18/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/java/linux-oracle-jdk18/Makefile ============================================================================== --- branches/2017Q3/java/linux-oracle-jdk18/Makefile Fri Aug 18 14:53:41 2017 (r448236) +++ branches/2017Q3/java/linux-oracle-jdk18/Makefile Fri Aug 18 15:03:40 2017 (r448237) @@ -29,7 +29,7 @@ ONLY_FOR_ARCHS= i386 amd64 JDK_VENDOR= oracle JDK_VERSION= 8 JDK_INTERNAL_VERSION= 1.${JDK_VERSION}.0 -JDK_UPDATE_VERSION= 131 +JDK_UPDATE_VERSION= 144 .if ${JDK_UPDATE_VERSION} == 0 DL_JDK_VERSION= ${JDK_INTERNAL_VERSION} .elif ${JDK_UPDATE_VERSION} <= 9 Modified: branches/2017Q3/java/linux-oracle-jdk18/distinfo ============================================================================== --- branches/2017Q3/java/linux-oracle-jdk18/distinfo Fri Aug 18 14:53:41 2017 (r448236) +++ branches/2017Q3/java/linux-oracle-jdk18/distinfo Fri Aug 18 15:03:40 2017 (r448237) @@ -1,5 +1,5 @@ -TIMESTAMP = 1492576712 -SHA256 (jdk-8u131-linux-i586.tar.gz) = 0069a2b1b1cddbefa45f1ff12933fca3b114b6544d536ec0e2d4861a830d7154 -SIZE (jdk-8u131-linux-i586.tar.gz) = 188105480 -SHA256 (jdk-8u131-linux-i586-demos.tar.gz) = e75eff66cc8f0fbec43bc18c3392eac39b8f7fc3db19367fa214091f61c00ad2 -SIZE (jdk-8u131-linux-i586-demos.tar.gz) = 55065450 +TIMESTAMP = 1502382949 +SHA256 (jdk-8u144-linux-i586.tar.gz) = 624c090647629394ef0ee08d9d8ac5d3d5a9a60fa245fefb2eb417c36c7cb7c4 +SIZE (jdk-8u144-linux-i586.tar.gz) = 188157665 +SHA256 (jdk-8u144-linux-i586-demos.tar.gz) = 3e8f02f32b129d681f5f2a0178373d750f4c2352acf55785fdca70c8f9aaf595 +SIZE (jdk-8u144-linux-i586-demos.tar.gz) = 55071167 Modified: branches/2017Q3/java/linux-oracle-jre18/Makefile ============================================================================== --- branches/2017Q3/java/linux-oracle-jre18/Makefile Fri Aug 18 14:53:41 2017 (r448236) +++ branches/2017Q3/java/linux-oracle-jre18/Makefile Fri Aug 18 15:03:40 2017 (r448237) @@ -27,7 +27,7 @@ ONLY_FOR_ARCHS= i386 amd64 JRE_VENDOR= oracle JRE_VERSION= 8 JRE_INTERNAL_VERSION= 1.${JRE_VERSION}.0 -JRE_UPDATE_VERSION= 131 +JRE_UPDATE_VERSION= 144 .if ${JRE_UPDATE_VERSION} == 0 DL_JRE_VERSION= ${JRE_INTERNAL_VERSION} .elif ${JRE_UPDATE_VERSION} <= 9 Modified: branches/2017Q3/java/linux-oracle-jre18/distinfo ============================================================================== --- branches/2017Q3/java/linux-oracle-jre18/distinfo Fri Aug 18 14:53:41 2017 (r448236) +++ branches/2017Q3/java/linux-oracle-jre18/distinfo Fri Aug 18 15:03:40 2017 (r448237) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492577191 -SHA256 (jre-8u131-linux-i586.tar.gz) = a773f2fe17061ef637ed2094b06313a99c0b45ba3d3cb7f8f1ebf18448495aeb -SIZE (jre-8u131-linux-i586.tar.gz) = 78620957 +TIMESTAMP = 1502383119 +SHA256 (jre-8u144-linux-i586.tar.gz) = 9ac5b0d6cda9279a4959a6eb635d849d745a37dafc24666539d1c8f7d76ab77a +SIZE (jre-8u144-linux-i586.tar.gz) = 78658631 From owner-svn-ports-branches@freebsd.org Fri Aug 18 15:09:09 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4B49DE7245; Fri, 18 Aug 2017 15:09:09 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A190B677BD; Fri, 18 Aug 2017 15:09:09 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7IF98WJ081014; Fri, 18 Aug 2017 15:09:08 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7IF98s9081013; Fri, 18 Aug 2017 15:09:08 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708181509.v7IF98s9081013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 18 Aug 2017 15:09:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448239 - branches/2017Q3/net/ostinato/files X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/net/ostinato/files X-SVN-Commit-Revision: 448239 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 15:09:09 -0000 Author: feld Date: Fri Aug 18 15:09:08 2017 New Revision: 448239 URL: https://svnweb.freebsd.org/changeset/ports/448239 Log: MFH: r448238 net/ostinato: Fix building on 11.1-RELEASE and HEAD 11.1-RELEASE and HEAD include libpcap 1.8 which doesn't ensure the experimental remote packet capture feature only available to WIN32 isn't picked up by builds on Unix. This solves the build error of the missing remote-ext.h header file. Approved by: portmgr (with hat) Added: branches/2017Q3/net/ostinato/files/patch-libpcap18fix - copied unchanged from r448238, head/net/ostinato/files/patch-libpcap18fix Modified: Directory Properties: branches/2017Q3/ (props changed) Copied: branches/2017Q3/net/ostinato/files/patch-libpcap18fix (from r448238, head/net/ostinato/files/patch-libpcap18fix) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/net/ostinato/files/patch-libpcap18fix Fri Aug 18 15:09:08 2017 (r448239, copy of r448238, head/net/ostinato/files/patch-libpcap18fix) @@ -0,0 +1,24 @@ +Patch to fix building with libpcap 1.8 branch which doesn't properly +ensure HAVE_REMOTE declarations are only for WIN32 systems +--- rpc/pbrpc.pro.orig 2017-08-18 15:00:23 UTC ++++ rpc/pbrpc.pro +@@ -1,7 +1,7 @@ + TEMPLATE = lib + CONFIG += qt staticlib + QT += network +-DEFINES += HAVE_REMOTE ++#DEFINES += HAVE_REMOTE + LIBS += -lprotobuf + HEADERS += rpcserver.h rpcconn.h pbrpccontroller.h pbrpcchannel.h pbqtio.h + SOURCES += rpcserver.cpp rpcconn.cpp pbrpcchannel.cpp +--- server/drone.pro.orig 2017-08-18 15:00:47 UTC ++++ server/drone.pro +@@ -2,7 +2,7 @@ TEMPLATE = app + CONFIG += qt ver_info + QT += network script xml + QT -= gui +-DEFINES += HAVE_REMOTE WPCAP ++#DEFINES += HAVE_REMOTE WPCAP + linux*:system(grep -q IFLA_STATS64 /usr/include/linux/if_link.h): \ + DEFINES += HAVE_IFLA_STATS64 + INCLUDEPATH += "../rpc" From owner-svn-ports-branches@freebsd.org Fri Aug 18 16:23:34 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92A01DB60E5; Fri, 18 Aug 2017 16:23:34 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5F63A6B457; Fri, 18 Aug 2017 16:23:34 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7IGNXYB015381; Fri, 18 Aug 2017 16:23:33 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7IGNXCZ015380; Fri, 18 Aug 2017 16:23:33 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708181623.v7IGNXCZ015380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 18 Aug 2017 16:23:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448256 - branches/2017Q3/www/swish-e X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/www/swish-e X-SVN-Commit-Revision: 448256 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 16:23:34 -0000 Author: feld Date: Fri Aug 18 16:23:33 2017 New Revision: 448256 URL: https://svnweb.freebsd.org/changeset/ports/448256 Log: MFH: r448255 www/swish-e: Fix building on FreeBSD 11.1 and HEAD Newer zlib has its own uncompress2 function, so hot-patch the source to rename uncompress2 to swishe_uncompress2. I could not devise a better way to do this at the moment. Cleaner patch would be welcomed. Approved by: portmgr (with hat) Modified: branches/2017Q3/www/swish-e/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/swish-e/Makefile ============================================================================== --- branches/2017Q3/www/swish-e/Makefile Fri Aug 18 16:22:45 2017 (r448255) +++ branches/2017Q3/www/swish-e/Makefile Fri Aug 18 16:23:33 2017 (r448256) @@ -10,11 +10,9 @@ MASTER_SITES= http://swish-e.org/distribution/ MAINTAINER= ports@FreeBSD.org COMMENT= Simple web indexing for humans - enhanced -BROKEN_FreeBSD_12= fails to compile: zlib.h: conflicting types for 'uncompress2' - +USES= gmake libtool perl5 shebangfix USE_LDCONFIG= yes USE_GNOME= libxml2 -USES= gmake libtool perl5 shebangfix SHEBANG_FILES= src/swishspider GNU_CONFIGURE= yes MAKE_ARGS+= pkgconfigdir="${PREFIX}/libdata/pkgconfig" \ @@ -36,5 +34,8 @@ post-patch: ${WRKSRC}/${p}/Makefile.in .endfor .endif + # Rename uncompress2 to swishe_uncompress2 to fix building with newer zlib which exports + # its own uncompress2 + ${FIND} ${WRKSRC}/src -type f -exec ${REINPLACE_CMD} 's,uncompress2,swishe_uncompress2,g' {} \+ .include From owner-svn-ports-branches@freebsd.org Fri Aug 18 19:34:00 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A6BCDD1716; Fri, 18 Aug 2017 19:34:00 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D1BB9725C8; Fri, 18 Aug 2017 19:33:59 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 1845F8B3D; Fri, 18 Aug 2017 19:33:59 +0000 (UTC) From: Jan Beich To: Mark Felder Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org, ports-secteam@FreeBSD.org Subject: Re: svn commit: r448094 - branches/2017Q3/devel/git References: <201708171315.v7HDFQ6X032157@repo.freebsd.org> <1503001376.1287709.1076855896.46E0771B@webmail.messagingengine.com> Date: Fri, 18 Aug 2017 21:33:53 +0200 In-Reply-To: <1503001376.1287709.1076855896.46E0771B@webmail.messagingengine.com> (Mark Felder's message of "Thu, 17 Aug 2017 15:22:56 -0500") Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===-=-=" X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 19:34:00 -0000 --===-=-= Content-Type: text/plain Mark Felder writes: > On Thu, Aug 17, 2017, at 13:11, Jan Beich wrote: >> Mark Felder writes: >> >> > Author: feld >> > Date: Thu Aug 17 13:15:25 2017 >> > New Revision: 448094 >> > URL: https://svnweb.freebsd.org/changeset/ports/448094 >> > >> > Log: >> > MFH: r445615 r446083 r447205 r447721 r447759 >> [...] >> > Update devel/git to 2.14.1 >> >> Why did you ignore devel/git-cinnabar regression this causes >> and my patch for 2.13.5 sent to ports-secteam@ ? >> > > For some reason I cannot find this email you're talking about... Attached at the end. > What's the current status of the 2017Q3 branch for devel/git-cinnabar then? Broken. > What is the best solution for resolving the regression? Backporting upstream fix from `master` branch. Simply updating to `master` snapshot is risky due to metadata upgrade which would obviously make a clone incompatible with git-cinnabar from `release` branch. $ pkg install git-cinnabar # 0.5.0.b2_3 $ git clone hg::https://hg.mozilla.org/projects/nss $ pkg upgrade git-cinnabar # master snapshot $ (cd nss; git fetch) ERROR Git-cinnabar metadata needs upgrade. Please run `git cinnabar upgrade`. --===-=-= Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 8bit From: Jan Beich To: Renato Botelho Cc: ports-secteam@freebsd.org, portmgr@freebsd.org Subject: Re: svn commit: r447721 - head/devel/git References: <201708102043.v7AKhTW4089326@repo.freebsd.org> <378z-6si3-wny@FreeBSD.org> <7eyb-5bzd-wny@FreeBSD.org> X-Draft-From: ("nnmaildir:mail.sent" 3250) Date: Fri, 11 Aug 2017 00:04:55 +0200 In-Reply-To: <7eyb-5bzd-wny@FreeBSD.org> (Jan Beich's message of "Thu, 10 Aug 2017 23:50:14 +0200") Message-ID: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Jan Beich writes: > Jan Beich writes: > >> Renato Botelho writes: >> >>> Author: garga >>> Date: Thu Aug 10 20:43:28 2017 >>> New Revision: 447721 >>> URL: https://svnweb.freebsd.org/changeset/ports/447721 >>> >>> Log: >>> Update devel/git to 2.14.1 >>>=20=20=20 >>> This version fixes a security issue: >>>=20=20=20 >>> A "ssh://..." URL can result in a "ssh" command line with a >>> hostname that begins with a dash "-", which would cause the "ssh" >>> command to instead (mis)treat it as an option. This is now >>> prevented by forbidding such a hostname (which will not be >>> necessary in the real world). >>>=20=20=20 >>> MFH: 2017Q3 >>> Sponsored by: Rubicon Communications, LLC (Netgate) >> >> Hold on on MFH. 2.13.5 also includes security fixes but you've jumped to >> 2.14.1 and broke devel/git-cinnabar. I've asked[1] upstream to backport >> 2.14.* API update but doing so myself is a bit too error-prone. > > How about updating devel/git on 2017Q3 to 2.13.5 instead? I need > approval from both you and ports-secteam/portmgr. Oops, my previous patch missed intermediate commits. --=-=-= Content-Type: text/plain Content-Disposition: attachment; filename=git-2.13.5.diff Content-Transfer-Encoding: quoted-printable Content-Description: Update git to 2.13.5 on MFH 2017Q3 From=203307eba031292104e857bc940f6de3618c8066c5 Mon Sep 17 00:00:00 2001 From: garga Date: Wed, 12 Jul 2017 23:38:06 +0000 Subject: [PATCH] MFH: r445615, r446083, r447205 devel/git: update to 2.13.5 (direct commit) This version fixes a security issue: A "ssh://..." URL can result in a "ssh" command line with a hostname that begins with a dash "-", which would cause the "ssh" command to instead (mis)treat it as an option. This is now prevented by forbidding such a hostname (which will not be necessary in the real world). Approved by: ??? (maintainer) Approved by: ports-secteam (???) =2D-- devel/git-cinnabar/Makefile | 2 +- devel/git/Makefile | 11 +++++++++-- devel/git/distinfo | 14 +++++++------- devel/git/pkg-plist | 13 +++++++++++-- 4 files changed, 28 insertions(+), 12 deletions(-) diff --git a/devel/git-cinnabar/Makefile b/devel/git-cinnabar/Makefile index 357e0dad2781..f50b94b38820 100644 =2D-- a/devel/git-cinnabar/Makefile +++ b/devel/git-cinnabar/Makefile @@ -2,7 +2,7 @@ =20 PORTNAME=3D git-cinnabar DISTVERSION=3D 0.5.0b2 =2DPORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D devel =20 MAINTAINER=3D jbeich@FreeBSD.org diff --git a/devel/git/Makefile b/devel/git/Makefile index 82e0ad5b579d..353d1bb9e188 100644 =2D-- a/devel/git/Makefile +++ b/devel/git/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ =20 PORTNAME=3D git =2DDISTVERSION=3D 2.13.2 +DISTVERSION=3D 2.13.5 CATEGORIES=3D devel MASTER_SITES=3D KERNEL_ORG/software/scm/git DISTFILES=3D ${DISTNAME}${EXTRACT_SUFX} \ @@ -42,7 +42,6 @@ SHEBANG_FILES=3D *.perl */*.perl */*/*.perl */*.pl */*/*.= pl */*/*/*.pl \ contrib/remote-helpers/git-remote-bzr \ contrib/remote-helpers/git-remote-hg \ contrib/credential/netrc/git-credential-netrc \ =2D contrib/diff-highlight/diff-highlight \ contrib/buildsystems/generate contrib/contacts/git-contacts \ contrib/svn-fe/svnrdump_sim.py TEST_TARGET=3D test @@ -155,6 +154,10 @@ post-patch: .endfor @${REINPLACE_CMD} -e 's|share/man/man3|man/man3|' ${WRKSRC}/perl/Makefile= .PL =20 +post-patch-CONTRIB-on: + @${REINPLACE_CMD} -e "s,/usr/bin/perl,${PERL}," \ + ${WRKSRC}/contrib/diff-highlight/Makefile + post-patch-CVS-off: @${REINPLACE_CMD} -e '/git-cvsexportcommit.perl/d; \ /git-cvsimport.perl/d; \ @@ -180,6 +183,10 @@ post-build: @${FIND} ${WRKSRC} -name "*.bak" -delete .endif =20 +post-build-CONTRIB-on: + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC}/contrib/diff-highlight + ${RM} ${WRKSRC}/contrib/diff-highlight/shebang.perl + post-install: (cd ${WRKDIR}/man1/ && ${COPYTREE_SHARE} . ${STAGEDIR}${MANPREFIX}/man/ma= n1) (cd ${WRKDIR}/man5/ && ${COPYTREE_SHARE} . ${STAGEDIR}${MANPREFIX}/man/ma= n5) diff --git a/devel/git/distinfo b/devel/git/distinfo index be33e63cdbf2..3bb98a22475b 100644 =2D-- a/devel/git/distinfo +++ b/devel/git/distinfo @@ -1,7 +1,7 @@ =2DTIMESTAMP =3D 1498482405 =2DSHA256 (git-2.13.2.tar.xz) =3D 0d10ac3751466f81652b62cbda83cc8d8ffd01491= 1462138e039f176e413dde5 =2DSIZE (git-2.13.2.tar.xz) =3D 4751380 =2DSHA256 (git-manpages-2.13.2.tar.xz) =3D 30e1e1313000eb81f0e348e5083758a3= 3703941a60ab111057b46c3dad968b6e =2DSIZE (git-manpages-2.13.2.tar.xz) =3D 407684 =2DSHA256 (git-htmldocs-2.13.2.tar.xz) =3D 54f0d36d375e7f71441994e60c18b6e2= cc43581d5827e806e0bddb6904e17dfc =2DSIZE (git-htmldocs-2.13.2.tar.xz) =3D 1109048 +TIMESTAMP =3D 1502308395 +SHA256 (git-2.13.5.tar.xz) =3D 21c9e29caac86d244ac7af78bc3422746dabb903cb3= 952a1ceefd801020ad1a1 +SIZE (git-2.13.5.tar.xz) =3D 4756436 +SHA256 (git-manpages-2.13.5.tar.xz) =3D 1dde688dda9162605ae27e4ad1b55c65c0= 56b3e7cd70972b7e1d6bd2b743394d +SIZE (git-manpages-2.13.5.tar.xz) =3D 407640 +SHA256 (git-htmldocs-2.13.5.tar.xz) =3D f5f10d821544446547dc91798772f36d75= 15a824c9a28f22521f0094e1a4dc08 +SIZE (git-htmldocs-2.13.5.tar.xz) =3D 1110236 diff --git a/devel/git/pkg-plist b/devel/git/pkg-plist index 7ca57e1570f2..34cf03c648f9 100644 =2D-- a/devel/git/pkg-plist +++ b/devel/git/pkg-plist @@ -626,16 +626,22 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.3.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.2.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.3.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.2.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.3.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.4.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.5.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.2.txt @@ -685,17 +691,20 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.5.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.6.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.5.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.6.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.4.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.5.txt %%HTMLDOCS%%%%DOCSDIR%%/blame-options.txt %%HTMLDOCS%%%%DOCSDIR%%/cmds-ancillaryinterrogators.txt %%HTMLDOCS%%%%DOCSDIR%%/cmds-ancillarymanipulators.txt @@ -1227,7 +1236,6 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/completion/git-completion.tcsh %%CONTRIB%%share/git-core/contrib/completion/git-completion.zsh %%CONTRIB%%share/git-core/contrib/completion/git-prompt.sh =2D@comment share/git-core/contrib/contacts/.gitignore %%CONTRIB%%share/git-core/contrib/contacts/Makefile %%CONTRIB%%share/git-core/contrib/contacts/git-contacts %%CONTRIB%%share/git-core/contrib/contacts/git-contacts.txt @@ -1248,8 +1256,9 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/credential/wincred/git-credential-wincre= d.c %%CONTRIB%%share/git-core/contrib/diff-highlight/Makefile %%CONTRIB%%share/git-core/contrib/diff-highlight/README +%%CONTRIB%%share/git-core/contrib/diff-highlight/DiffHighlight.pm +%%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight.perl %%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight =2D@comment share/git-core/contrib/diff-highlight/t/.gitignore %%CONTRIB%%share/git-core/contrib/diff-highlight/t/Makefile %%CONTRIB%%share/git-core/contrib/diff-highlight/t/t9400-diff-highlight.sh %%CONTRIB%%share/git-core/contrib/emacs/.gitignore --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQF8BAEBCgBmBQJZjNiOXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREQjQ0MzY3NEM3RDIzNTc4NkUxNDkyQ0VF NEM3Nzg4MzQ3OURCRERCAAoJEOTHeINHnb3bTkgIAMaUxqRphiP6Ap+rASX3WBzv 9cDT+d3swrUJYgvt11xzomfNwb0vh8CO3zV9PPE8+zdlIb2Xr2JmIbRW+pb1UCHw /JD2AMvAfH1RSYcwC8b0c8S131eZHfrisaQdmqytY5B1c/tgQLjLF9wFogKa47IF +ymK0N6L+lQl5QKoTjKNKzmbfyr5z8/pvhqpSQzxBafS4KVDk74tceLK2HxBMYVd v0YePzBvxmnWE0FzB/cqbVehsebBMxNmvsfBafFPBvJQ7MStLB6LimHnwJIr8Q0y FxsMWT9ke5lNFj6q07Vp1Vu9ZgqeI0qIpAvVm3fzJ4EVZJgg37JXTZ3hz+hXKXE= =jiVv -----END PGP SIGNATURE----- --==-=-=-- --===-=-= Content-Type: text/plain -- [1] https://github.com/glandium/git-cinnabar/commit/0fad12ddedc5#commitcomment-23507145 --===-=-=-- From owner-svn-ports-branches@freebsd.org Fri Aug 18 20:12:15 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70D16DD3D9D; Fri, 18 Aug 2017 20:12:15 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C80B7370F; Fri, 18 Aug 2017 20:12:15 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7IKCEVR008550; Fri, 18 Aug 2017 20:12:14 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7IKCDAU008546; Fri, 18 Aug 2017 20:12:13 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708182012.v7IKCDAU008546@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 18 Aug 2017 20:12:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448270 - branches/2017Q3/devel/git X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/devel/git X-SVN-Commit-Revision: 448270 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 20:12:15 -0000 Author: feld Date: Fri Aug 18 20:12:13 2017 New Revision: 448270 URL: https://svnweb.freebsd.org/changeset/ports/448270 Log: devel/git: Direct commit to revert to 2.13.2 The 2.14.1 upgrade breaks devel/git-cinnabar. Very few if any users build 2017Q3 branch from source. Last packages built for 2017Q3 was r448018. The 2.14.1 package has not hit the mirror yet for quarterly. This should be safe. I do expect to have my ear pulled by other portmgr members. Approved by: portmgr (with a pointy hat) Modified: branches/2017Q3/devel/git/Makefile branches/2017Q3/devel/git/distinfo branches/2017Q3/devel/git/pkg-plist Modified: branches/2017Q3/devel/git/Makefile ============================================================================== --- branches/2017Q3/devel/git/Makefile Fri Aug 18 19:34:29 2017 (r448269) +++ branches/2017Q3/devel/git/Makefile Fri Aug 18 20:12:13 2017 (r448270) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= git -DISTVERSION= 2.14.1 +DISTVERSION= 2.13.2 CATEGORIES= devel MASTER_SITES= KERNEL_ORG/software/scm/git DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ @@ -42,6 +42,7 @@ SHEBANG_FILES= *.perl */*.perl */*/*.perl */*.pl */*/* contrib/remote-helpers/git-remote-bzr \ contrib/remote-helpers/git-remote-hg \ contrib/credential/netrc/git-credential-netrc \ + contrib/diff-highlight/diff-highlight \ contrib/buildsystems/generate contrib/contacts/git-contacts \ contrib/svn-fe/svnrdump_sim.py TEST_TARGET= test @@ -154,10 +155,6 @@ post-patch: .endfor @${REINPLACE_CMD} -e 's|share/man/man3|man/man3|' ${WRKSRC}/perl/Makefile.PL -post-patch-CONTRIB-on: - @${REINPLACE_CMD} -e "s,/usr/bin/perl,${PERL}," \ - ${WRKSRC}/contrib/diff-highlight/Makefile - post-patch-CVS-off: @${REINPLACE_CMD} -e '/git-cvsexportcommit.perl/d; \ /git-cvsimport.perl/d; \ @@ -182,10 +179,6 @@ post-patch-P4-off: post-build: @${FIND} ${WRKSRC} -name "*.bak" -delete .endif - -post-build-CONTRIB-on: - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC}/contrib/diff-highlight - ${RM} ${WRKSRC}/contrib/diff-highlight/shebang.perl post-install: (cd ${WRKDIR}/man1/ && ${COPYTREE_SHARE} . ${STAGEDIR}${MANPREFIX}/man/man1) Modified: branches/2017Q3/devel/git/distinfo ============================================================================== --- branches/2017Q3/devel/git/distinfo Fri Aug 18 19:34:29 2017 (r448269) +++ branches/2017Q3/devel/git/distinfo Fri Aug 18 20:12:13 2017 (r448270) @@ -1,7 +1,7 @@ -TIMESTAMP = 1502396019 -SHA256 (git-2.14.1.tar.xz) = 6f724c6d0e9e13114ab35db6f67e1b2c1934b641e89366e6a0e37618231f2cc6 -SIZE (git-2.14.1.tar.xz) = 4791876 -SHA256 (git-manpages-2.14.1.tar.xz) = 7ebce1e0e862af1367e24f14765c7b67f08b63fb01b80949f55479c562d414f2 -SIZE (git-manpages-2.14.1.tar.xz) = 410400 -SHA256 (git-htmldocs-2.14.1.tar.xz) = 9c1970c7f87f37c8b3044e01e0500d84d8bc4eb4dfa5ca881c32c351f20769fb -SIZE (git-htmldocs-2.14.1.tar.xz) = 1115176 +TIMESTAMP = 1498482405 +SHA256 (git-2.13.2.tar.xz) = 0d10ac3751466f81652b62cbda83cc8d8ffd014911462138e039f176e413dde5 +SIZE (git-2.13.2.tar.xz) = 4751380 +SHA256 (git-manpages-2.13.2.tar.xz) = 30e1e1313000eb81f0e348e5083758a33703941a60ab111057b46c3dad968b6e +SIZE (git-manpages-2.13.2.tar.xz) = 407684 +SHA256 (git-htmldocs-2.13.2.tar.xz) = 54f0d36d375e7f71441994e60c18b6e2cc43581d5827e806e0bddb6904e17dfc +SIZE (git-htmldocs-2.13.2.tar.xz) = 1109048 Modified: branches/2017Q3/devel/git/pkg-plist ============================================================================== --- branches/2017Q3/devel/git/pkg-plist Fri Aug 18 19:34:29 2017 (r448269) +++ branches/2017Q3/devel/git/pkg-plist Fri Aug 18 20:12:13 2017 (r448270) @@ -387,7 +387,6 @@ man/man7/giteveryday.7.gz man/man7/gitglossary.7.gz man/man7/gitnamespaces.7.gz man/man7/gitrevisions.7.gz -man/man7/gitsubmodules.7.gz man/man7/gittutorial-2.7.gz man/man7/gittutorial.7.gz man/man7/gitworkflows.7.gz @@ -627,24 +626,16 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.3.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.10.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.2.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.11.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.3.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.12.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.2.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.3.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.4.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.5.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.14.0.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.14.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.2.txt @@ -694,20 +685,17 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.5.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.6.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.5.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.6.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.4.txt -%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.5.txt %%HTMLDOCS%%%%DOCSDIR%%/blame-options.txt %%HTMLDOCS%%%%DOCSDIR%%/cmds-ancillaryinterrogators.txt %%HTMLDOCS%%%%DOCSDIR%%/cmds-ancillarymanipulators.txt @@ -1063,8 +1051,6 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/gitrepository-layout.txt %%HTMLDOCS%%%%DOCSDIR%%/gitrevisions.html %%HTMLDOCS%%%%DOCSDIR%%/gitrevisions.txt -%%HTMLDOCS%%%%DOCSDIR%%/gitsubmodules.html -%%HTMLDOCS%%%%DOCSDIR%%/gitsubmodules.txt %%HTMLDOCS%%%%DOCSDIR%%/gittutorial-2.html %%HTMLDOCS%%%%DOCSDIR%%/gittutorial-2.txt %%HTMLDOCS%%%%DOCSDIR%%/gittutorial.html @@ -1145,12 +1131,12 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/technical/api-gitattributes.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-grep.html %%HTMLDOCS%%%%DOCSDIR%%/technical/api-grep.txt +%%HTMLDOCS%%%%DOCSDIR%%/technical/api-hashmap.html +%%HTMLDOCS%%%%DOCSDIR%%/technical/api-hashmap.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-history-graph.html %%HTMLDOCS%%%%DOCSDIR%%/technical/api-history-graph.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-index-skel.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-index.html -%%HTMLDOCS%%%%DOCSDIR%%/technical/api-sub-process.html -%%HTMLDOCS%%%%DOCSDIR%%/technical/api-sub-process.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-index.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/api-merge.html %%HTMLDOCS%%%%DOCSDIR%%/technical/api-merge.txt @@ -1241,6 +1227,7 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/completion/git-completion.tcsh %%CONTRIB%%share/git-core/contrib/completion/git-completion.zsh %%CONTRIB%%share/git-core/contrib/completion/git-prompt.sh +@comment share/git-core/contrib/contacts/.gitignore %%CONTRIB%%share/git-core/contrib/contacts/Makefile %%CONTRIB%%share/git-core/contrib/contacts/git-contacts %%CONTRIB%%share/git-core/contrib/contacts/git-contacts.txt @@ -1261,9 +1248,8 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/credential/wincred/git-credential-wincred.c %%CONTRIB%%share/git-core/contrib/diff-highlight/Makefile %%CONTRIB%%share/git-core/contrib/diff-highlight/README -%%CONTRIB%%share/git-core/contrib/diff-highlight/DiffHighlight.pm -%%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight.perl %%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight +@comment share/git-core/contrib/diff-highlight/t/.gitignore %%CONTRIB%%share/git-core/contrib/diff-highlight/t/Makefile %%CONTRIB%%share/git-core/contrib/diff-highlight/t/t9400-diff-highlight.sh %%CONTRIB%%share/git-core/contrib/emacs/.gitignore From owner-svn-ports-branches@freebsd.org Fri Aug 18 20:24:34 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B7F2DD4AB0; Fri, 18 Aug 2017 20:24:34 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D968173F5A; Fri, 18 Aug 2017 20:24:33 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7IKOWTZ015399; Fri, 18 Aug 2017 20:24:32 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7IKOWqD015396; Fri, 18 Aug 2017 20:24:32 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708182024.v7IKOWqD015396@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 18 Aug 2017 20:24:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448271 - branches/2017Q3/devel/git X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/devel/git X-SVN-Commit-Revision: 448271 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 20:24:34 -0000 Author: feld Date: Fri Aug 18 20:24:32 2017 New Revision: 448271 URL: https://svnweb.freebsd.org/changeset/ports/448271 Log: MFH: r445615 Update devel/git to 2.13.3 Sponsored by: Rubicon Communications, LLC (Netgate) Approved by: ports-secteam (with hat) Modified: branches/2017Q3/devel/git/Makefile branches/2017Q3/devel/git/distinfo branches/2017Q3/devel/git/pkg-plist Modified: branches/2017Q3/devel/git/Makefile ============================================================================== --- branches/2017Q3/devel/git/Makefile Fri Aug 18 20:12:13 2017 (r448270) +++ branches/2017Q3/devel/git/Makefile Fri Aug 18 20:24:32 2017 (r448271) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= git -DISTVERSION= 2.13.2 +DISTVERSION= 2.13.3 CATEGORIES= devel MASTER_SITES= KERNEL_ORG/software/scm/git DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ @@ -42,7 +42,7 @@ SHEBANG_FILES= *.perl */*.perl */*/*.perl */*.pl */*/* contrib/remote-helpers/git-remote-bzr \ contrib/remote-helpers/git-remote-hg \ contrib/credential/netrc/git-credential-netrc \ - contrib/diff-highlight/diff-highlight \ + contrib/diff-highlight/diff-highlight.perl \ contrib/buildsystems/generate contrib/contacts/git-contacts \ contrib/svn-fe/svnrdump_sim.py TEST_TARGET= test Modified: branches/2017Q3/devel/git/distinfo ============================================================================== --- branches/2017Q3/devel/git/distinfo Fri Aug 18 20:12:13 2017 (r448270) +++ branches/2017Q3/devel/git/distinfo Fri Aug 18 20:24:32 2017 (r448271) @@ -1,7 +1,7 @@ -TIMESTAMP = 1498482405 -SHA256 (git-2.13.2.tar.xz) = 0d10ac3751466f81652b62cbda83cc8d8ffd014911462138e039f176e413dde5 -SIZE (git-2.13.2.tar.xz) = 4751380 -SHA256 (git-manpages-2.13.2.tar.xz) = 30e1e1313000eb81f0e348e5083758a33703941a60ab111057b46c3dad968b6e -SIZE (git-manpages-2.13.2.tar.xz) = 407684 -SHA256 (git-htmldocs-2.13.2.tar.xz) = 54f0d36d375e7f71441994e60c18b6e2cc43581d5827e806e0bddb6904e17dfc -SIZE (git-htmldocs-2.13.2.tar.xz) = 1109048 +TIMESTAMP = 1499901619 +SHA256 (git-2.13.3.tar.xz) = 91aa23be428f67eb19616f43fa0229d567e9acf4f08fba33eb0b627e4d323e62 +SIZE (git-2.13.3.tar.xz) = 4754532 +SHA256 (git-manpages-2.13.3.tar.xz) = 1128db0302a41b55132bfd507863a7921b995d9ad308396ff2c4ca91177481c2 +SIZE (git-manpages-2.13.3.tar.xz) = 407640 +SHA256 (git-htmldocs-2.13.3.tar.xz) = c5f8ad546724b8712286dd7814ea46abf829b14f2de8f6e565b8775469880c66 +SIZE (git-htmldocs-2.13.3.tar.xz) = 1109392 Modified: branches/2017Q3/devel/git/pkg-plist ============================================================================== --- branches/2017Q3/devel/git/pkg-plist Fri Aug 18 20:12:13 2017 (r448270) +++ branches/2017Q3/devel/git/pkg-plist Fri Aug 18 20:24:32 2017 (r448271) @@ -636,6 +636,7 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.2.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.2.txt @@ -1248,7 +1249,8 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/credential/wincred/git-credential-wincred.c %%CONTRIB%%share/git-core/contrib/diff-highlight/Makefile %%CONTRIB%%share/git-core/contrib/diff-highlight/README -%%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight +%%CONTRIB%%share/git-core/contrib/diff-highlight/DiffHighlight.pm +%%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight.perl @comment share/git-core/contrib/diff-highlight/t/.gitignore %%CONTRIB%%share/git-core/contrib/diff-highlight/t/Makefile %%CONTRIB%%share/git-core/contrib/diff-highlight/t/t9400-diff-highlight.sh From owner-svn-ports-branches@freebsd.org Fri Aug 18 20:26:54 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51612DD4D15; Fri, 18 Aug 2017 20:26:54 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C894740BC; Fri, 18 Aug 2017 20:26:54 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7IKQr5o015638; Fri, 18 Aug 2017 20:26:53 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7IKQrsn015636; Fri, 18 Aug 2017 20:26:53 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708182026.v7IKQrsn015636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 18 Aug 2017 20:26:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448272 - branches/2017Q3/devel/git X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/devel/git X-SVN-Commit-Revision: 448272 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 20:26:54 -0000 Author: feld Date: Fri Aug 18 20:26:52 2017 New Revision: 448272 URL: https://svnweb.freebsd.org/changeset/ports/448272 Log: MFH: r446083 - Add diff-highlight back to package when CONTRIB option is set - While here, remove unnecessary lines from pkg-plist - Bump PORTREVISION PR: 220804 Submitted by: martin@sugioarto.com Sponsored by: Rubicon Communications, LLC (Netgate) Approved by: ports-secteam (with hat) Modified: branches/2017Q3/devel/git/Makefile branches/2017Q3/devel/git/pkg-plist Modified: branches/2017Q3/devel/git/Makefile ============================================================================== --- branches/2017Q3/devel/git/Makefile Fri Aug 18 20:24:32 2017 (r448271) +++ branches/2017Q3/devel/git/Makefile Fri Aug 18 20:26:52 2017 (r448272) @@ -3,6 +3,7 @@ PORTNAME= git DISTVERSION= 2.13.3 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= KERNEL_ORG/software/scm/git DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ @@ -42,7 +43,6 @@ SHEBANG_FILES= *.perl */*.perl */*/*.perl */*.pl */*/* contrib/remote-helpers/git-remote-bzr \ contrib/remote-helpers/git-remote-hg \ contrib/credential/netrc/git-credential-netrc \ - contrib/diff-highlight/diff-highlight.perl \ contrib/buildsystems/generate contrib/contacts/git-contacts \ contrib/svn-fe/svnrdump_sim.py TEST_TARGET= test @@ -155,6 +155,10 @@ post-patch: .endfor @${REINPLACE_CMD} -e 's|share/man/man3|man/man3|' ${WRKSRC}/perl/Makefile.PL +post-patch-CONTRIB-on: + @${REINPLACE_CMD} -e "s,/usr/bin/perl,${PERL}," \ + ${WRKSRC}/contrib/diff-highlight/Makefile + post-patch-CVS-off: @${REINPLACE_CMD} -e '/git-cvsexportcommit.perl/d; \ /git-cvsimport.perl/d; \ @@ -179,6 +183,10 @@ post-patch-P4-off: post-build: @${FIND} ${WRKSRC} -name "*.bak" -delete .endif + +post-build-CONTRIB-on: + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC}/contrib/diff-highlight + ${RM} ${WRKSRC}/contrib/diff-highlight/shebang.perl post-install: (cd ${WRKDIR}/man1/ && ${COPYTREE_SHARE} . ${STAGEDIR}${MANPREFIX}/man/man1) Modified: branches/2017Q3/devel/git/pkg-plist ============================================================================== --- branches/2017Q3/devel/git/pkg-plist Fri Aug 18 20:24:32 2017 (r448271) +++ branches/2017Q3/devel/git/pkg-plist Fri Aug 18 20:26:52 2017 (r448272) @@ -1228,7 +1228,6 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/completion/git-completion.tcsh %%CONTRIB%%share/git-core/contrib/completion/git-completion.zsh %%CONTRIB%%share/git-core/contrib/completion/git-prompt.sh -@comment share/git-core/contrib/contacts/.gitignore %%CONTRIB%%share/git-core/contrib/contacts/Makefile %%CONTRIB%%share/git-core/contrib/contacts/git-contacts %%CONTRIB%%share/git-core/contrib/contacts/git-contacts.txt @@ -1251,7 +1250,7 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/diff-highlight/README %%CONTRIB%%share/git-core/contrib/diff-highlight/DiffHighlight.pm %%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight.perl -@comment share/git-core/contrib/diff-highlight/t/.gitignore +%%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight %%CONTRIB%%share/git-core/contrib/diff-highlight/t/Makefile %%CONTRIB%%share/git-core/contrib/diff-highlight/t/t9400-diff-highlight.sh %%CONTRIB%%share/git-core/contrib/emacs/.gitignore From owner-svn-ports-branches@freebsd.org Fri Aug 18 20:29:14 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA357DD4EA1; Fri, 18 Aug 2017 20:29:14 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward102p.mail.yandex.net (forward102p.mail.yandex.net [IPv6:2a02:6b8:0:1472:2741:0:8b7:102]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A07E5741D3; Fri, 18 Aug 2017 20:29:14 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from mxback5g.mail.yandex.net (mxback5g.mail.yandex.net [IPv6:2a02:6b8:0:1472:2741:0:8b7:166]) by forward102p.mail.yandex.net (Yandex) with ESMTP id DD9D14302BB1; Fri, 18 Aug 2017 23:29:10 +0300 (MSK) Received: from smtp3o.mail.yandex.net (smtp3o.mail.yandex.net [2a02:6b8:0:1a2d::27]) by mxback5g.mail.yandex.net (nwsmtp/Yandex) with ESMTP id HVQNFYiD9J-TAoSCw9t; Fri, 18 Aug 2017 23:29:10 +0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=passap.ru; s=mail; t=1503088150; bh=wLJxI+TibeZLqX5NneaMjArTiDbPXWqYnWCmLKJaLNE=; h=Subject:To:References:From:Message-ID:Date:In-Reply-To; b=N8V6wsTwwJJK8uRK/e391hCOBsJN2tR6OZwcvVCU9SSmLbWscgSFYfxrj1aIfSNKs /U0czSORrfI5SrsiGkuug5nX5XTfBj0MkIQwStaeNJc8tMSxJVFeCuTOvrCbF4La3Z lLxyUy0JBf2lDfWGaxJ8fOTkhI+3DbsLZgBWvw/o= Received: by smtp3o.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id IeMhRKbthV-TAW4noOZ; Fri, 18 Aug 2017 23:29:10 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=passap.ru; s=mail; t=1503088150; bh=wLJxI+TibeZLqX5NneaMjArTiDbPXWqYnWCmLKJaLNE=; h=Subject:To:References:From:Message-ID:Date:In-Reply-To; b=N8V6wsTwwJJK8uRK/e391hCOBsJN2tR6OZwcvVCU9SSmLbWscgSFYfxrj1aIfSNKs /U0czSORrfI5SrsiGkuug5nX5XTfBj0MkIQwStaeNJc8tMSxJVFeCuTOvrCbF4La3Z lLxyUy0JBf2lDfWGaxJ8fOTkhI+3DbsLZgBWvw/o= Authentication-Results: smtp3o.mail.yandex.net; dkim=pass header.i=@passap.ru Subject: Re: svn commit: r448270 - branches/2017Q3/devel/git To: Mark Felder , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org References: <201708182012.v7IKCDAU008546@repo.freebsd.org> From: Boris Samorodov Message-ID: <3c210e9f-145e-a434-6fb3-eb4bf8814c06@passap.ru> Date: Fri, 18 Aug 2017 23:29:09 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <201708182012.v7IKCDAU008546@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Language: ru-RU Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 20:29:15 -0000 18.08.2017 23:12, Mark Felder пишет: > -DISTVERSION= 2.14.1 > +DISTVERSION= 2.13.2 PORTEPOCH bump? -- WBR, bsam From owner-svn-ports-branches@freebsd.org Fri Aug 18 20:34:27 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74EC0DD553B; Fri, 18 Aug 2017 20:34:27 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3ECE974758; Fri, 18 Aug 2017 20:34:27 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7IKYQK8019818; Fri, 18 Aug 2017 20:34:26 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7IKYQNQ019815; Fri, 18 Aug 2017 20:34:26 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708182034.v7IKYQNQ019815@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 18 Aug 2017 20:34:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448273 - branches/2017Q3/devel/git X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/devel/git X-SVN-Commit-Revision: 448273 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 20:34:27 -0000 Author: feld Date: Fri Aug 18 20:34:25 2017 New Revision: 448273 URL: https://svnweb.freebsd.org/changeset/ports/448273 Log: MFH: r447205 Update devel/git to 2.13.4 Approved by: ports-secteam (with hat) Modified: branches/2017Q3/devel/git/Makefile branches/2017Q3/devel/git/distinfo branches/2017Q3/devel/git/pkg-plist Modified: branches/2017Q3/devel/git/Makefile ============================================================================== --- branches/2017Q3/devel/git/Makefile Fri Aug 18 20:26:52 2017 (r448272) +++ branches/2017Q3/devel/git/Makefile Fri Aug 18 20:34:25 2017 (r448273) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= git -DISTVERSION= 2.13.3 -PORTREVISION= 1 +DISTVERSION= 2.13.4 CATEGORIES= devel MASTER_SITES= KERNEL_ORG/software/scm/git DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ Modified: branches/2017Q3/devel/git/distinfo ============================================================================== --- branches/2017Q3/devel/git/distinfo Fri Aug 18 20:26:52 2017 (r448272) +++ branches/2017Q3/devel/git/distinfo Fri Aug 18 20:34:25 2017 (r448273) @@ -1,7 +1,7 @@ -TIMESTAMP = 1499901619 -SHA256 (git-2.13.3.tar.xz) = 91aa23be428f67eb19616f43fa0229d567e9acf4f08fba33eb0b627e4d323e62 -SIZE (git-2.13.3.tar.xz) = 4754532 -SHA256 (git-manpages-2.13.3.tar.xz) = 1128db0302a41b55132bfd507863a7921b995d9ad308396ff2c4ca91177481c2 -SIZE (git-manpages-2.13.3.tar.xz) = 407640 -SHA256 (git-htmldocs-2.13.3.tar.xz) = c5f8ad546724b8712286dd7814ea46abf829b14f2de8f6e565b8775469880c66 -SIZE (git-htmldocs-2.13.3.tar.xz) = 1109392 +TIMESTAMP = 1501687751 +SHA256 (git-2.13.4.tar.xz) = 371a592a52d240a6350d4ec6b63cd8301e1fab6dd03388a339a8c7429305afda +SIZE (git-2.13.4.tar.xz) = 4755472 +SHA256 (git-manpages-2.13.4.tar.xz) = 674fa9a299cbcb91e49affd7dfd69952be1ee88cb7a3d5ee5b294e7da29b5d52 +SIZE (git-manpages-2.13.4.tar.xz) = 407656 +SHA256 (git-htmldocs-2.13.4.tar.xz) = 1dbb459cf47f0023456fde9d0155aa858540479e258fbf2c808c5c4fd9f44f93 +SIZE (git-htmldocs-2.13.4.tar.xz) = 1109720 Modified: branches/2017Q3/devel/git/pkg-plist ============================================================================== --- branches/2017Q3/devel/git/pkg-plist Fri Aug 18 20:26:52 2017 (r448272) +++ branches/2017Q3/devel/git/pkg-plist Fri Aug 18 20:34:25 2017 (r448273) @@ -637,6 +637,7 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.3.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.13.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.2.txt From owner-svn-ports-branches@freebsd.org Fri Aug 18 21:00:07 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C1A63DD6D6A; Fri, 18 Aug 2017 21:00:07 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98C177553B; Fri, 18 Aug 2017 21:00:07 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7IL068q028734; Fri, 18 Aug 2017 21:00:06 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7IL06f4028731; Fri, 18 Aug 2017 21:00:06 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708182100.v7IL06f4028731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 18 Aug 2017 21:00:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448275 - branches/2017Q3/devel/git X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/devel/git X-SVN-Commit-Revision: 448275 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 21:00:07 -0000 Author: feld Date: Fri Aug 18 21:00:06 2017 New Revision: 448275 URL: https://svnweb.freebsd.org/changeset/ports/448275 Log: devel/git: Direct commit update to 2.13.5 Submitted by: jbeich Modified: branches/2017Q3/devel/git/Makefile branches/2017Q3/devel/git/distinfo branches/2017Q3/devel/git/pkg-plist Modified: branches/2017Q3/devel/git/Makefile ============================================================================== --- branches/2017Q3/devel/git/Makefile Fri Aug 18 20:49:16 2017 (r448274) +++ branches/2017Q3/devel/git/Makefile Fri Aug 18 21:00:06 2017 (r448275) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= git -DISTVERSION= 2.13.4 +DISTVERSION= 2.13.5 CATEGORIES= devel MASTER_SITES= KERNEL_ORG/software/scm/git DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ Modified: branches/2017Q3/devel/git/distinfo ============================================================================== --- branches/2017Q3/devel/git/distinfo Fri Aug 18 20:49:16 2017 (r448274) +++ branches/2017Q3/devel/git/distinfo Fri Aug 18 21:00:06 2017 (r448275) @@ -1,7 +1,5 @@ -TIMESTAMP = 1501687751 -SHA256 (git-2.13.4.tar.xz) = 371a592a52d240a6350d4ec6b63cd8301e1fab6dd03388a339a8c7429305afda -SIZE (git-2.13.4.tar.xz) = 4755472 -SHA256 (git-manpages-2.13.4.tar.xz) = 674fa9a299cbcb91e49affd7dfd69952be1ee88cb7a3d5ee5b294e7da29b5d52 -SIZE (git-manpages-2.13.4.tar.xz) = 407656 -SHA256 (git-htmldocs-2.13.4.tar.xz) = 1dbb459cf47f0023456fde9d0155aa858540479e258fbf2c808c5c4fd9f44f93 -SIZE (git-htmldocs-2.13.4.tar.xz) = 1109720 +TIMESTAMP = 1503088710 +SHA256 (git-2.13.5.tar.xz) = 21c9e29caac86d244ac7af78bc3422746dabb903cb3952a1ceefd801020ad1a1 +SIZE (git-2.13.5.tar.xz) = 4756436 +SHA256 (git-manpages-2.13.5.tar.xz) = 1dde688dda9162605ae27e4ad1b55c65c056b3e7cd70972b7e1d6bd2b743394d +SIZE (git-manpages-2.13.5.tar.xz) = 407640 Modified: branches/2017Q3/devel/git/pkg-plist ============================================================================== --- branches/2017Q3/devel/git/pkg-plist Fri Aug 18 20:49:16 2017 (r448274) +++ branches/2017Q3/devel/git/pkg-plist Fri Aug 18 21:00:06 2017 (r448275) @@ -687,17 +687,20 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.5.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.7.6.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.5.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.8.6.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.4.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.9.5.txt %%HTMLDOCS%%%%DOCSDIR%%/blame-options.txt %%HTMLDOCS%%%%DOCSDIR%%/cmds-ancillaryinterrogators.txt %%HTMLDOCS%%%%DOCSDIR%%/cmds-ancillarymanipulators.txt From owner-svn-ports-branches@freebsd.org Fri Aug 18 21:02:10 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19142DD70FF; Fri, 18 Aug 2017 21:02:10 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC1F0758BF; Fri, 18 Aug 2017 21:02:09 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7IL299U031849; Fri, 18 Aug 2017 21:02:09 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7IL29Hc031848; Fri, 18 Aug 2017 21:02:09 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201708182102.v7IL29Hc031848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 18 Aug 2017 21:02:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448276 - branches/2017Q3/devel/git-cinnabar X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/devel/git-cinnabar X-SVN-Commit-Revision: 448276 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 21:02:10 -0000 Author: feld Date: Fri Aug 18 21:02:08 2017 New Revision: 448276 URL: https://svnweb.freebsd.org/changeset/ports/448276 Log: devel/git-cinnabar: Direct commit Rebuild after 448275 Submitted by: jbeich Modified: branches/2017Q3/devel/git-cinnabar/Makefile Modified: branches/2017Q3/devel/git-cinnabar/Makefile ============================================================================== --- branches/2017Q3/devel/git-cinnabar/Makefile Fri Aug 18 21:00:06 2017 (r448275) +++ branches/2017Q3/devel/git-cinnabar/Makefile Fri Aug 18 21:02:08 2017 (r448276) @@ -2,7 +2,7 @@ PORTNAME= git-cinnabar DISTVERSION= 0.5.0b2 -PORTREVISION= 1 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= jbeich@FreeBSD.org From owner-svn-ports-branches@freebsd.org Fri Aug 18 21:13:31 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3ECFEDD7C4E; Fri, 18 Aug 2017 21:13:31 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13F5D75E3C; Fri, 18 Aug 2017 21:13:30 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 5614A21FB4; Fri, 18 Aug 2017 17:13:29 -0400 (EDT) Received: from web4 ([10.202.2.214]) by compute3.internal (MEProxy); Fri, 18 Aug 2017 17:13:29 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=xp9F8p lAPignEAjzaOCIHlcZYc0b4+4wQRYSEVTgNm4=; b=jwSjDGvLK+oon38eic5yVL GSEe9hrVqZtP62xV83JlSeZAl/ojRLAeezHpIYZciPrVUf8UgQ1JAei3kOpxReYv yDM7jLr5Cn5aHdj6cW/vhqhIvcUberVWlrDATt6wnFELA1dI6SAZR2SpPWz4DYL1 lKc0FTHz8YUk4ki/d11LoMViCwWgjvp6zZ3C6fsIzqKnSN8cR6T6K9sQ6vHHnUVr A+yVdpTsQBuBGdHpEJ053/jFHFzf8j9u7s8ziluaXUf1DM1U3FafKYlbB30KRn/V UFjlA9Jv6Oao5E2TuLGTylOAIP388BfqzS9DfUkUOENycl4U72QZS7o+aIWoEKuQ == X-ME-Sender: Received: by mailuser.nyi.internal (Postfix, from userid 99) id 270EDBAB71; Fri, 18 Aug 2017 17:13:29 -0400 (EDT) Message-Id: <1503090809.2638339.1078004064.204EA724@webmail.messagingengine.com> From: Mark Felder To: Boris Samorodov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-21c69044 Subject: Re: svn commit: r448270 - branches/2017Q3/devel/git Date: Fri, 18 Aug 2017 16:13:29 -0500 References: <201708182012.v7IKCDAU008546@repo.freebsd.org> <3c210e9f-145e-a434-6fb3-eb4bf8814c06@passap.ru> In-Reply-To: <3c210e9f-145e-a434-6fb3-eb4bf8814c06@passap.ru> X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 21:13:31 -0000 On Fri, Aug 18, 2017, at 15:29, Boris Samorodov wrote: > 18.08.2017 23:12, Mark Felder =D0=BF=D0=B8=D1=88=D0=B5=D1=82: > > -DISTVERSION=3D 2.14.1 > > +DISTVERSION=3D 2.13.2 >=20 > PORTEPOCH bump? >=20 > Unfortunately you can't do a PORTEPOCH bump in a quarterly branch unless you do it in HEAD as well or it will break upgrades in the future. This was intentionally reverted without a PORTREVISION bump due to the following factors: 1) The 2.14.x update to git breaks devel/git-cinnabar as reported by jbeich@. It should not have been merged to quarterly but there was a miscommunication. 2) Quarterly branches are 99% of the time (fake but plausible statistic I made up) consumed as packages only 3) This package has not yet hit our mirrors. Last package set build was on 448018 I expect nobody to notice. This is not a wise gamble, but PORTEPOCH is a painful scar and I'm hoping we can avoid it. If we get reports this has actually affected someone I don't think we have a choice but to do a PORTEPOCH. --=20 Mark Felder ports-secteam & portmgr member feld@FreeBSD.org From owner-svn-ports-branches@freebsd.org Fri Aug 18 21:42:50 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18DFEDD98E2; Fri, 18 Aug 2017 21:42:50 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA1107702B; Fri, 18 Aug 2017 21:42:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7ILgntp049618; Fri, 18 Aug 2017 21:42:49 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7ILgnp5049617; Fri, 18 Aug 2017 21:42:49 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201708182142.v7ILgnp5049617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 18 Aug 2017 21:42:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448279 - branches/2017Q3/mail/thunderbird/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/mail/thunderbird/files X-SVN-Commit-Revision: 448279 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 21:42:50 -0000 Author: jbeich Date: Fri Aug 18 21:42:48 2017 New Revision: 448279 URL: https://svnweb.freebsd.org/changeset/ports/448279 Log: MFH: r448277 mail/thunderbird: unbreak with RUST=on env CARGO_TARGET_DIR=. RUSTC=/usr/local/bin/rustc /usr/local/bin/cargo build --release --frozen --manifest-path /wrkdirs/usr/ports/mail/thunderbird/work/thunderbird-52.3.0/mozilla/toolkit/library/gtest/rust/Cargo.toml --target=x86_64-unknown-freebsd --verbose -- error: failed to load source for a dependency on `mp4parse_capi` Caused by: Unable to update file:///wrkdirs/usr/ports/mail/thunderbird/work/thunderbird-52.3.0/mozilla/media/libstagefright/binding/mp4parse_capi Caused by: failed to parse manifest at `/wrkdirs/usr/ports/mail/thunderbird/work/thunderbird-52.3.0/mozilla/media/libstagefright/binding/mp4parse_capi/Cargo.toml` Caused by: could not parse input as TOML Caused by: duplicate key: `build` for key `package` cf. https://hg.mozilla.org/releases/mozilla-esr52/shortlog/THUNDERBIRD_52_VERBRANCH Reported by: YuryG @ forums.freebsd.org Approved by: ports-secteam blanket Deleted: branches/2017Q3/mail/thunderbird/files/patch-bug1338655 Modified: Directory Properties: branches/2017Q3/ (props changed) From owner-svn-ports-branches@freebsd.org Sat Aug 19 04:48:50 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACC8BDCEC17; Sat, 19 Aug 2017 04:48:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B8E5650A0; Sat, 19 Aug 2017 04:48:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7J4mn3T020262; Sat, 19 Aug 2017 04:48:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7J4mnR2020260; Sat, 19 Aug 2017 04:48:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708190448.v7J4mnR2020260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 19 Aug 2017 04:48:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448282 - in branches/2017Q3/benchmarks/iperf: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in branches/2017Q3/benchmarks/iperf: . files X-SVN-Commit-Revision: 448282 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 04:48:50 -0000 Author: sunpoet Date: Sat Aug 19 04:48:49 2017 New Revision: 448282 URL: https://svnweb.freebsd.org/changeset/ports/448282 Log: MFH: r448243 Add upstream patch to fix 32 bit constant - Bump PORTREVISION for package change Obtained from: https://sourceforge.net/p/iperf2/code/ci/33812baeb46fce55e45b5ebc7da9dbdd8112a386/ Notified by: Robert McMahon Approved by: ports-secteam (feld) Added: branches/2017Q3/benchmarks/iperf/files/patch-src-Client.cpp - copied unchanged from r448243, head/benchmarks/iperf/files/patch-src-Client.cpp Modified: branches/2017Q3/benchmarks/iperf/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/benchmarks/iperf/Makefile ============================================================================== --- branches/2017Q3/benchmarks/iperf/Makefile Sat Aug 19 04:13:45 2017 (r448281) +++ branches/2017Q3/benchmarks/iperf/Makefile Sat Aug 19 04:48:49 2017 (r448282) @@ -3,6 +3,7 @@ PORTNAME= iperf PORTVERSION= 2.0.10 +PORTREVISION= 1 CATEGORIES= benchmarks MASTER_SITES= SF/${PORTNAME}2 Copied: branches/2017Q3/benchmarks/iperf/files/patch-src-Client.cpp (from r448243, head/benchmarks/iperf/files/patch-src-Client.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/benchmarks/iperf/files/patch-src-Client.cpp Sat Aug 19 04:48:49 2017 (r448282, copy of r448243, head/benchmarks/iperf/files/patch-src-Client.cpp) @@ -0,0 +1,11 @@ +--- src/Client.cpp.orig 2017-08-09 03:54:14 UTC ++++ src/Client.cpp +@@ -680,7 +680,7 @@ void Client::Run( void ) { + + // store datagram ID into buffer + if (isSeqNo64b(mSettings)) { +- mBuf_UDP->id = htonl((reportstruct->packetID & 0xFFFFFFFFFL)); ++ mBuf_UDP->id = htonl((reportstruct->packetID & 0xFFFFFFFFL)); + mBuf_UDP->id2 = htonl((((reportstruct->packetID & 0xFFFFFFFF00000000LL) >> 32) | 0x80000000L)); + } else { + mBuf_UDP->id = htonl(((reportstruct->packetID & 0xFFFFFFFFL) | 0x80000000L)); From owner-svn-ports-branches@freebsd.org Sat Aug 19 10:17:00 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E83EDDF9BF; Sat, 19 Aug 2017 10:17:00 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward105p.mail.yandex.net (forward105p.mail.yandex.net [IPv6:2a02:6b8:0:1472:2741:0:8b7:108]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B7E396E94D; Sat, 19 Aug 2017 10:16:59 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from mxback10o.mail.yandex.net (mxback10o.mail.yandex.net [IPv6:2a02:6b8:0:1a2d::24]) by forward105p.mail.yandex.net (Yandex) with ESMTP id D50D44081731; Sat, 19 Aug 2017 13:16:46 +0300 (MSK) Received: from smtp4j.mail.yandex.net (smtp4j.mail.yandex.net [2a02:6b8:0:1619::15:6]) by mxback10o.mail.yandex.net (nwsmtp/Yandex) with ESMTP id UM072NnIqy-Gkpqm2FG; Sat, 19 Aug 2017 13:16:46 +0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=passap.ru; s=mail; t=1503137806; bh=2sgCrPCBKdFclbXhlhbZGQW6RvsttO4gojmMOOZ/9Ls=; h=Subject:To:References:From:Message-ID:Date:In-Reply-To; b=nFM106hFqIi+dPvkafjQRwluIkRQJVZQfcsG/c/QSr4CubFoNAgc00mHcB8rFmE21 FYngCoof+1uMHnYTdWu0IAncjkEz97kYDaNgNqWzCBgRkhSHiPbH0CDPUqPCDQdoT1 yKA3RyR8PoDd38CFLvvH11ezRpySgO+OU45V4k2A= Received: by smtp4j.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id gM63z4AsDN-Gk8CxxMU; Sat, 19 Aug 2017 13:16:46 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=passap.ru; s=mail; t=1503137806; bh=2sgCrPCBKdFclbXhlhbZGQW6RvsttO4gojmMOOZ/9Ls=; h=Subject:To:References:From:Message-ID:Date:In-Reply-To; b=nFM106hFqIi+dPvkafjQRwluIkRQJVZQfcsG/c/QSr4CubFoNAgc00mHcB8rFmE21 FYngCoof+1uMHnYTdWu0IAncjkEz97kYDaNgNqWzCBgRkhSHiPbH0CDPUqPCDQdoT1 yKA3RyR8PoDd38CFLvvH11ezRpySgO+OU45V4k2A= Authentication-Results: smtp4j.mail.yandex.net; dkim=pass header.i=@passap.ru Subject: Re: svn commit: r448270 - branches/2017Q3/devel/git To: Mark Felder , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org References: <201708182012.v7IKCDAU008546@repo.freebsd.org> <3c210e9f-145e-a434-6fb3-eb4bf8814c06@passap.ru> <1503090809.2638339.1078004064.204EA724@webmail.messagingengine.com> From: Boris Samorodov Message-ID: <0037cbd8-0a02-c28c-0d61-9559e5aad34e@passap.ru> Date: Sat, 19 Aug 2017 13:16:45 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <1503090809.2638339.1078004064.204EA724@webmail.messagingengine.com> Content-Type: text/plain; charset=utf-8 Content-Language: ru-RU Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 10:17:00 -0000 19.08.2017 00:13, Mark Felder пишет: > > > On Fri, Aug 18, 2017, at 15:29, Boris Samorodov wrote: >> 18.08.2017 23:12, Mark Felder пишет: >>> -DISTVERSION= 2.14.1 >>> +DISTVERSION= 2.13.2 >> >> PORTEPOCH bump? >> >> > > Unfortunately you can't do a PORTEPOCH bump in a quarterly branch unless > you do it in HEAD as well or it will break upgrades in the future. > > This was intentionally reverted without a PORTREVISION bump due to the > following factors: > > 1) The 2.14.x update to git breaks devel/git-cinnabar as reported by > jbeich@. It should not have been merged to quarterly but there was a > miscommunication. > 2) Quarterly branches are 99% of the time (fake but plausible statistic > I made up) consumed as packages only > 3) This package has not yet hit our mirrors. Last package set build was > on 448018 > > I expect nobody to notice. This is not a wise gamble, but PORTEPOCH is a > painful scar and I'm hoping we can avoid it. If we get reports this has > actually affected someone I don't think we have a choice but to do a > PORTEPOCH. Got it. Thank you. -- WBR, bsam From owner-svn-ports-branches@freebsd.org Sat Aug 19 10:47:22 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0365DE1475; Sat, 19 Aug 2017 10:47:22 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A00C6F875; Sat, 19 Aug 2017 10:47:22 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JAlL94066424; Sat, 19 Aug 2017 10:47:21 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JAlLWu066422; Sat, 19 Aug 2017 10:47:21 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201708191047.v7JAlLWu066422@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 19 Aug 2017 10:47:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448297 - in branches/2017Q3/net/py-ldaptor: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in branches/2017Q3/net/py-ldaptor: . files X-SVN-Commit-Revision: 448297 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 10:47:22 -0000 Author: koobs Date: Sat Aug 19 10:47:21 2017 New Revision: 448297 URL: https://svnweb.freebsd.org/changeset/ports/448297 Log: MFH: r448296 net/py-ldaptor: Limit to 2.7 (Does not support Python 3.x) This port depends on Twisted, which supports Python 3.x as of a number of versions ago for some growing number of its components. On initial view, ldaptor appears inconsistent (at least not explicit) in its state of Python 3.x support for its latest version (16.0.0, not this ports version, 0.0.43) - A Python 3 compatible wheel is available on PyPI - Python 3.3-3.5 are included in tox.ini for testing However: - Travis CI configuration only tests with 2.7 - Open "Python3 support #55" upstream issue [1] Additionally, Twisted/Python3 support aside, test builds (without USES=twisted declared), results in a build error at configure time: SyntaxError: invalid syntax This change limits build support to Python 2.7 accordingly. While I'm here: - Pet portlint: LICENSE [2], PLIST_FILES, makepatch. [1] https://github.com/twisted/ldaptor/issues/55 [2] https://github.com/twisted/ldaptor/commit/7e249b1586789a5c588f662ce74ee9f4338666e0 PR: 219323 Reported by: Johannes Jost Meixner Approved by: portmgr (blanket) Approved by: ports-secteam (blanket) Deleted: branches/2017Q3/net/py-ldaptor/pkg-plist Modified: branches/2017Q3/net/py-ldaptor/Makefile branches/2017Q3/net/py-ldaptor/files/patch-setup.py Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/py-ldaptor/Makefile ============================================================================== --- branches/2017Q3/net/py-ldaptor/Makefile Sat Aug 19 10:43:06 2017 (r448296) +++ branches/2017Q3/net/py-ldaptor/Makefile Sat Aug 19 10:47:21 2017 (r448297) @@ -12,15 +12,22 @@ DISTNAME= ldaptor-${PORTVERSION}-${GITVERSION} MAINTAINER= bra@fsn.hu COMMENT= Pure-python LDAP module for Twisted +LICENSE= MIT LGPL21+ +LICENSE_COMB= multi + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyparsing>=0:devel/py-pyparsing \ ${PYTHON_PKGNAMEPREFIX}openssl>=0:security/py-openssl GITVERSION= aad8ded658b36337a08aeb7402b6b67eb8771bea NO_ARCH= yes -USES= gettext python twisted +USES= gettext python:2.7 twisted USE_PYTHON= distutils autoplist + PYDISTUTILS_INSTALL_TARGET= install_locale install PYDISTUTILS_BUILD_TARGET= build_locale build + +PLIST_FILES= share/locale/fi/LC_MESSAGES/ldaptor-webui.mo \ + share/locale/fr/LC_MESSAGES/ldaptor-webui.mo .include Modified: branches/2017Q3/net/py-ldaptor/files/patch-setup.py ============================================================================== --- branches/2017Q3/net/py-ldaptor/files/patch-setup.py Sat Aug 19 10:43:06 2017 (r448296) +++ branches/2017Q3/net/py-ldaptor/files/patch-setup.py Sat Aug 19 10:47:21 2017 (r448297) @@ -1,6 +1,6 @@ ---- setup.py.orig 2013-12-13 13:49:46.929425897 -0200 -+++ setup.py 2013-12-13 13:49:58.999423613 -0200 -@@ -154,7 +154,6 @@ +--- setup.py.orig 2011-06-10 07:02:47 UTC ++++ setup.py +@@ -154,7 +154,6 @@ from the command line. 'build_locale': build_locale, 'clean': clean, 'clean_locale': clean_locale, From owner-svn-ports-branches@freebsd.org Sat Aug 19 11:26:51 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 09F2FDE376C; Sat, 19 Aug 2017 11:26:51 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA33070ED2; Sat, 19 Aug 2017 11:26:50 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JBQnsA082769; Sat, 19 Aug 2017 11:26:49 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JBQn5i082768; Sat, 19 Aug 2017 11:26:49 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201708191126.v7JBQn5i082768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 19 Aug 2017 11:26:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448300 - branches/2017Q3/net/py-libnet X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2017Q3/net/py-libnet X-SVN-Commit-Revision: 448300 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 11:26:51 -0000 Author: koobs Date: Sat Aug 19 11:26:49 2017 New Revision: 448300 URL: https://svnweb.freebsd.org/changeset/ports/448300 Log: MFH: r448299 net/py-libnet: Limit to 2.x (Does not support Python 3) This (upstream) package does not appear to support (intentionally or otherwise) Python 3. It also fails to build with Python 3.x with a SyntaxError. This change corrects the USES=python: support declaration accordingly. PR: 219324 Reported by: Johannes Jost Meixner Approved by: portmgr (blanket) Approved by: ports-secteam (blanket) Modified: branches/2017Q3/net/py-libnet/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/py-libnet/Makefile ============================================================================== --- branches/2017Q3/net/py-libnet/Makefile Sat Aug 19 11:21:59 2017 (r448299) +++ branches/2017Q3/net/py-libnet/Makefile Sat Aug 19 11:26:49 2017 (r448300) @@ -20,7 +20,7 @@ BROKEN_aarch64= fails to package: lib.freebsd-11.0-RE BROKEN_mips64= fails to package: lib.freebsd-11.0-RELEASE-p1-mips64-2.7/libnet.so: No such file or directory BROKEN_powerpc64= fails to package: lib.freebsd-11.0-RELEASE-p1-powerpc64-2.7/libnet.so: No such file or directory -USES= python +USES= python:-2.7 USE_PYTHON= distutils pythonprefix USE_GITHUB= yes From owner-svn-ports-branches@freebsd.org Sat Aug 19 12:44:43 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 35417DE791E; Sat, 19 Aug 2017 12:44:43 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 043067331F; Sat, 19 Aug 2017 12:44:42 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JCiggu015653; Sat, 19 Aug 2017 12:44:42 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JCigbf015652; Sat, 19 Aug 2017 12:44:42 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201708191244.v7JCigbf015652@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 19 Aug 2017 12:44:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448304 - branches/2017Q3/net/py-pcs X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2017Q3/net/py-pcs X-SVN-Commit-Revision: 448304 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 12:44:43 -0000 Author: koobs Date: Sat Aug 19 12:44:42 2017 New Revision: 448304 URL: https://svnweb.freebsd.org/changeset/ports/448304 Log: MFH: r448303 net/py-pcs: Limit to Python 2.7 (Does not support Python 3) This version (0.6) of the upstream package version does not appear to intend to, or explicitly support Python 3. It also currently fails to build with Python 3.x with a SyntaxError: SyntaxError: Missing parentheses in call to 'print' This change limits the USES=python: support declaration to 2.7 accordingly. Note: A closed upstream PR [1] mentions fixing tests for Python 3 in 2015, so the version-specifier may change (be relaxed) upon future port/version updates, or at MAINTAINER's (also the package author) discretion to explicitly mark Python 3 as an intended supported version, *independent* to any build/run-time issues that may exist. While I'm here, pet portlint: - Strip shared libraries - Add LICENSE_FILE - Fix section order (*_DEPENDS) [1] https://github.com/gvnn3/PCS/pull/2 PR: 219325 Reported by: Johannes Jost Meixner Approved by: portmgr (blanket) Approved by: ports-secteam (blanket) Modified: branches/2017Q3/net/py-pcs/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/py-pcs/Makefile ============================================================================== --- branches/2017Q3/net/py-pcs/Makefile Sat Aug 19 12:41:43 2017 (r448303) +++ branches/2017Q3/net/py-pcs/Makefile Sat Aug 19 12:44:42 2017 (r448304) @@ -3,6 +3,7 @@ PORTNAME= pcs PORTVERSION= 0.6 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Beta-${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,12 +12,13 @@ MAINTAINER= gnn@FreeBSD.org COMMENT= Protocol Construction Set LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYRIGHT +BUILD_DEPENDS= cython>=0.11.2:lang/cython + PORTDOCS= pcs.pdf PORTEXAMPLES= * -BUILD_DEPENDS= cython>=0.11.2:lang/cython - USES= python USE_PYTHON= distutils pythonprefix @@ -29,5 +31,10 @@ post-install-DOCS-on: post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/scripts && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR} + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/bpf.so \ + ${STAGEDIR}${PYTHON_SITELIBDIR}/pcs/clock.so \ + ${STAGEDIR}${PYTHON_SITELIBDIR}/pcs/pcap.so .include From owner-svn-ports-branches@freebsd.org Sat Aug 19 12:54:36 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28311DE80D2; Sat, 19 Aug 2017 12:54:36 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E92BA73896; Sat, 19 Aug 2017 12:54:35 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JCsZlX019951; Sat, 19 Aug 2017 12:54:35 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JCsZZs019950; Sat, 19 Aug 2017 12:54:35 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201708191254.v7JCsZZs019950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 19 Aug 2017 12:54:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448306 - branches/2017Q3/net/py-pcs X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2017Q3/net/py-pcs X-SVN-Commit-Revision: 448306 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 12:54:36 -0000 Author: koobs Date: Sat Aug 19 12:54:34 2017 New Revision: 448306 URL: https://svnweb.freebsd.org/changeset/ports/448306 Log: MFH: r448305 net/py-pcs: Limit USES=python (actually) Actually change the value of USES=python: that was supposed to land in ports r448303 It was reverted during QA and the final diff was not reviewed prior to commit. Pointyhat me. PR: 219325 Approved by: portmgr (blanket) Approved by: portmgr (blanket) Modified: branches/2017Q3/net/py-pcs/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/py-pcs/Makefile ============================================================================== --- branches/2017Q3/net/py-pcs/Makefile Sat Aug 19 12:52:23 2017 (r448305) +++ branches/2017Q3/net/py-pcs/Makefile Sat Aug 19 12:54:34 2017 (r448306) @@ -19,7 +19,7 @@ BUILD_DEPENDS= cython>=0.11.2:lang/cython PORTDOCS= pcs.pdf PORTEXAMPLES= * -USES= python +USES= python:2.7 USE_PYTHON= distutils pythonprefix OPTIONS_DEFINE= DOCS EXAMPLES From owner-svn-ports-branches@freebsd.org Sat Aug 19 13:48:40 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE615DC6267; Sat, 19 Aug 2017 13:48:40 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83E47755C1; Sat, 19 Aug 2017 13:48:40 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id D0BD320E45; Sat, 19 Aug 2017 09:48:37 -0400 (EDT) Received: from web4 ([10.202.2.214]) by compute3.internal (MEProxy); Sat, 19 Aug 2017 09:48:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=wPTgH/ 0XMRG/As2TlmpkBIr74v+hfZMbzOn8CyLPr/8=; b=e27no97D/XJzCgXTIKWuDz a5xMzWDnGPkUkUXolOlijglpV7OhGf0lSDY9bn7qiFabhsXq+xi8ypmdy1EYXo08 DLccdmt/a8exLQhZijfRyGC03mlOjHACOqWSuYteZTCYJ2lqbwoLKLxT7cviictz FgDVZTdt3W05Stt2vD62+/YPwfAQTosvMTw15+nd9CPUFj9x2U3HRdl/xAFCb58w le4jqSKmqXez4eU4z3ALug5bymRIGnLBCxfHBibU4F4ORrGZuOY9w0XoJJC/xdNh DftkBR9r0k4Ri5KB9CT+Vo5/ODdL+HlpwSCVWOjQRGDaU0jdqL5fsE/ds9fU9SSA == X-ME-Sender: Received: by mailuser.nyi.internal (Postfix, from userid 99) id A122EBAB71; Sat, 19 Aug 2017 09:48:37 -0400 (EDT) Message-Id: <1503150517.3843765.1078475400.2ECB0570@webmail.messagingengine.com> From: Mark Felder To: Jan Beich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org, ports-secteam@FreeBSD.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-21c69044 Subject: Re: svn commit: r448094 - branches/2017Q3/devel/git Date: Sat, 19 Aug 2017 08:48:37 -0500 References: <201708171315.v7HDFQ6X032157@repo.freebsd.org> <1503001376.1287709.1076855896.46E0771B@webmail.messagingengine.com> In-Reply-To: X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 13:48:40 -0000 On Fri, Aug 18, 2017, at 14:33, Jan Beich wrote: > Mark Felder writes: > > > On Thu, Aug 17, 2017, at 13:11, Jan Beich wrote: > >> Mark Felder writes: > >> > >> > Author: feld > >> > Date: Thu Aug 17 13:15:25 2017 > >> > New Revision: 448094 > >> > URL: https://svnweb.freebsd.org/changeset/ports/448094 > >> > > >> > Log: > >> > MFH: r445615 r446083 r447205 r447721 r447759 > >> [...] > >> > Update devel/git to 2.14.1 > >> > >> Why did you ignore devel/git-cinnabar regression this causes > >> and my patch for 2.13.5 sent to ports-secteam@ ? > >> > > > > For some reason I cannot find this email you're talking about... > > Attached at the end. > > > What's the current status of the 2017Q3 branch for devel/git-cinnabar then? > > Broken. > > > What is the best solution for resolving the regression? > > Backporting upstream fix from `master` branch. Simply updating to > `master` > snapshot is risky due to metadata upgrade which would obviously make a > clone > incompatible with git-cinnabar from `release` branch. > > $ pkg install git-cinnabar # 0.5.0.b2_3 > $ git clone hg::https://hg.mozilla.org/projects/nss > $ pkg upgrade git-cinnabar # master snapshot > $ (cd nss; git fetch) > ERROR Git-cinnabar metadata needs upgrade. Please run `git cinnabar > upgrade`. > > 2017Q3 branch should be in the state you requested now. -- Mark Felder ports-secteam & portmgr member feld@FreeBSD.org From owner-svn-ports-branches@freebsd.org Sat Aug 19 14:08:17 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A515DC76CE; Sat, 19 Aug 2017 14:08:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA5637613D; Sat, 19 Aug 2017 14:08:16 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JE8G0c048989; Sat, 19 Aug 2017 14:08:16 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JE8FMk048983; Sat, 19 Aug 2017 14:08:15 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201708191408.v7JE8FMk048983@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 19 Aug 2017 14:08:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448311 - in branches/2017Q3: Mk mail/thunderbird www/firefox www/firefox-esr www/libxul www/seamonkey X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q3: Mk mail/thunderbird www/firefox www/firefox-esr www/libxul www/seamonkey X-SVN-Commit-Revision: 448311 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 14:08:17 -0000 Author: jbeich Date: Sat Aug 19 14:08:15 2017 New Revision: 448311 URL: https://svnweb.freebsd.org/changeset/ports/448311 Log: MFH: r448278 gecko: stop calling home to check for updates after r436423 Upstream seems to define "default" as Nightly (custom build), not safe to update automatically. Once we switched to proper channels updater kicked in, except Mozilla never built binaries for FreeBSD. Not to mention, vendor updates conflict with system package manager. PR: 221541 Approved by: ports-secteam (feld) Modified: branches/2017Q3/Mk/bsd.gecko.mk branches/2017Q3/mail/thunderbird/Makefile branches/2017Q3/www/firefox-esr/Makefile branches/2017Q3/www/firefox/Makefile branches/2017Q3/www/libxul/Makefile branches/2017Q3/www/seamonkey/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/Mk/bsd.gecko.mk ============================================================================== --- branches/2017Q3/Mk/bsd.gecko.mk Sat Aug 19 14:04:51 2017 (r448310) +++ branches/2017Q3/Mk/bsd.gecko.mk Sat Aug 19 14:08:15 2017 (r448311) @@ -253,6 +253,7 @@ MOZ_OPTIONS+= \ --enable-chrome-format=${MOZ_CHROME} \ --enable-default-toolkit=${MOZ_TOOLKIT} \ --enable-update-channel=${MOZ_CHANNEL} \ + --disable-updater \ --enable-pie \ --with-pthreads # Configure options for install Modified: branches/2017Q3/mail/thunderbird/Makefile ============================================================================== --- branches/2017Q3/mail/thunderbird/Makefile Sat Aug 19 14:04:51 2017 (r448310) +++ branches/2017Q3/mail/thunderbird/Makefile Sat Aug 19 14:08:15 2017 (r448311) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 52.3.0 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: branches/2017Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2017Q3/www/firefox-esr/Makefile Sat Aug 19 14:04:51 2017 (r448310) +++ branches/2017Q3/www/firefox-esr/Makefile Sat Aug 19 14:08:15 2017 (r448311) @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 52.3.0 DISTVERSIONSUFFIX=esr.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2017Q3/www/firefox/Makefile ============================================================================== --- branches/2017Q3/www/firefox/Makefile Sat Aug 19 14:04:51 2017 (r448310) +++ branches/2017Q3/www/firefox/Makefile Sat Aug 19 14:08:15 2017 (r448311) @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 55.0.2 DISTVERSIONSUFFIX=.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: branches/2017Q3/www/libxul/Makefile ============================================================================== --- branches/2017Q3/www/libxul/Makefile Sat Aug 19 14:04:51 2017 (r448310) +++ branches/2017Q3/www/libxul/Makefile Sat Aug 19 14:08:15 2017 (r448311) @@ -3,7 +3,7 @@ PORTNAME= libxul DISTVERSION= 45.9.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build3/source Modified: branches/2017Q3/www/seamonkey/Makefile ============================================================================== --- branches/2017Q3/www/seamonkey/Makefile Sat Aug 19 14:04:51 2017 (r448310) +++ branches/2017Q3/www/seamonkey/Makefile Sat Aug 19 14:08:15 2017 (r448311) @@ -4,7 +4,7 @@ PORTNAME= seamonkey DISTVERSION= 2.48 MOZILLA_VER= 51 # above + 3 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source From owner-svn-ports-branches@freebsd.org Sat Aug 19 14:39:03 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9CFBDC998C; Sat, 19 Aug 2017 14:39:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C4FC3772D4; Sat, 19 Aug 2017 14:39:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JEd2OY062147; Sat, 19 Aug 2017 14:39:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JEd2Ng062142; Sat, 19 Aug 2017 14:39:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708191439.v7JEd2Ng062142@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 19 Aug 2017 14:39:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448315 - in branches/2017Q3/graphics/gmt: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in branches/2017Q3/graphics/gmt: . files X-SVN-Commit-Revision: 448315 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 14:39:04 -0000 Author: sunpoet Date: Sat Aug 19 14:39:02 2017 New Revision: 448315 URL: https://svnweb.freebsd.org/changeset/ports/448315 Log: MFH: r448283 Unbreak this port PR: 221334 Reported by: pi Approved by: ports-secteam (blanket) Added: branches/2017Q3/graphics/gmt/files/patch-src-gmt_io.c - copied unchanged from r448283, head/graphics/gmt/files/patch-src-gmt_io.c branches/2017Q3/graphics/gmt/files/patch-src-gmtmath.c - copied unchanged from r448283, head/graphics/gmt/files/patch-src-gmtmath.c branches/2017Q3/graphics/gmt/files/patch-src-grdmath.c - copied unchanged from r448283, head/graphics/gmt/files/patch-src-grdmath.c branches/2017Q3/graphics/gmt/files/patch-src-misc-gmtdigitize.c - copied unchanged from r448283, head/graphics/gmt/files/patch-src-misc-gmtdigitize.c Modified: branches/2017Q3/graphics/gmt/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/graphics/gmt/Makefile ============================================================================== --- branches/2017Q3/graphics/gmt/Makefile Sat Aug 19 14:37:14 2017 (r448314) +++ branches/2017Q3/graphics/gmt/Makefile Sat Aug 19 14:39:02 2017 (r448315) @@ -25,8 +25,6 @@ LICENSE_COMB= multi LICENSE_DISTFILES_GPLv2= ${DISTNAME}${EXTRACT_SUFX} LICENSE_DISTFILES_LGPL3= ${GSHHG_DISTNAME}${EXTRACT_SUFX} -BROKEN= fails to build - LIB_DEPENDS= libnetcdf.so:science/netcdf RUN_DEPENDS= bash:shells/bash Copied: branches/2017Q3/graphics/gmt/files/patch-src-gmt_io.c (from r448283, head/graphics/gmt/files/patch-src-gmt_io.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/graphics/gmt/files/patch-src-gmt_io.c Sat Aug 19 14:39:02 2017 (r448315, copy of r448283, head/graphics/gmt/files/patch-src-gmt_io.c) @@ -0,0 +1,14 @@ +--- src/gmt_io.c.orig 2016-03-07 01:35:42 UTC ++++ src/gmt_io.c +@@ -80,11 +80,7 @@ + */ + + /* Circumvent Solaris problem. See bug #817 */ +-#ifdef __FreeBSD__ +-#define _XOPEN_SOURCE +-#else + #define _XOPEN_SOURCE 600 +-#endif + + #define GMT_WITH_NO_PS + #include "gmt.h" Copied: branches/2017Q3/graphics/gmt/files/patch-src-gmtmath.c (from r448283, head/graphics/gmt/files/patch-src-gmtmath.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/graphics/gmt/files/patch-src-gmtmath.c Sat Aug 19 14:39:02 2017 (r448315, copy of r448283, head/graphics/gmt/files/patch-src-gmtmath.c) @@ -0,0 +1,14 @@ +--- src/gmtmath.c.orig 2016-03-07 01:35:42 UTC ++++ src/gmtmath.c +@@ -61,11 +61,7 @@ + */ + + /* Circumvent Solaris problem. See bug #817 */ +-#ifdef __FreeBSD__ +-#define _XOPEN_SOURCE +-#else + #define _XOPEN_SOURCE 600 +-#endif + + #include "gmt.h" + Copied: branches/2017Q3/graphics/gmt/files/patch-src-grdmath.c (from r448283, head/graphics/gmt/files/patch-src-grdmath.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/graphics/gmt/files/patch-src-grdmath.c Sat Aug 19 14:39:02 2017 (r448315, copy of r448283, head/graphics/gmt/files/patch-src-grdmath.c) @@ -0,0 +1,14 @@ +--- src/grdmath.c.orig 2016-03-07 01:35:42 UTC ++++ src/grdmath.c +@@ -51,11 +51,7 @@ + */ + + /* Circumvent Solaris problem. See bug #817 */ +-#ifdef __FreeBSD__ +-#define _XOPEN_SOURCE +-#else + #define _XOPEN_SOURCE 600 +-#endif + + #include "gmt.h" + Copied: branches/2017Q3/graphics/gmt/files/patch-src-misc-gmtdigitize.c (from r448283, head/graphics/gmt/files/patch-src-misc-gmtdigitize.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/graphics/gmt/files/patch-src-misc-gmtdigitize.c Sat Aug 19 14:39:02 2017 (r448315, copy of r448283, head/graphics/gmt/files/patch-src-misc-gmtdigitize.c) @@ -0,0 +1,14 @@ +--- src/misc/gmtdigitize.c.orig 2016-03-07 01:35:42 UTC ++++ src/misc/gmtdigitize.c +@@ -38,11 +38,7 @@ + */ + + /* Circumvent Solaris problem. See bug #817 */ +-#ifdef __FreeBSD__ +-#define _XOPEN_SOURCE +-#else + #define _XOPEN_SOURCE 600 +-#endif + + #ifdef HAVE_UNISTD_H + #include From owner-svn-ports-branches@freebsd.org Sat Aug 19 15:02:30 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 160F8DCB74F; Sat, 19 Aug 2017 15:02:30 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D93EC7C2FC; Sat, 19 Aug 2017 15:02:29 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JF2T9D073948; Sat, 19 Aug 2017 15:02:29 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JF2SkT073946; Sat, 19 Aug 2017 15:02:28 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201708191502.v7JF2SkT073946@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 19 Aug 2017 15:02:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448316 - branches/2017Q3/textproc/libebml X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: branches/2017Q3/textproc/libebml X-SVN-Commit-Revision: 448316 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 15:02:30 -0000 Author: riggs Date: Sat Aug 19 15:02:28 2017 New Revision: 448316 URL: https://svnweb.freebsd.org/changeset/ports/448316 Log: MFH: r448298 Update to upstream release 1.3.5, fetch distfile from Github Approved by: portmgr (feld) Modified: branches/2017Q3/textproc/libebml/Makefile branches/2017Q3/textproc/libebml/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/textproc/libebml/Makefile ============================================================================== --- branches/2017Q3/textproc/libebml/Makefile Sat Aug 19 14:39:02 2017 (r448315) +++ branches/2017Q3/textproc/libebml/Makefile Sat Aug 19 15:02:28 2017 (r448316) @@ -2,19 +2,21 @@ # $FreeBSD$ PORTNAME= libebml -PORTVERSION= 1.3.4 +PORTVERSION= 1.3.5 +DISTVERSIONPREFIX= release- CATEGORIES= textproc -MASTER_SITES= http://dl.matroska.org/downloads/libebml/ \ - http://www.bunkus.org/videotools/mkvtoolnix/sources/ MAINTAINER= multimedia@FreeBSD.org COMMENT= EBML (Extensible Binary Meta Language), sort of binary version of XML LICENSE= LGPL21 -USES= gmake libtool pathfix tar:bzip2 +USES= autoreconf gmake libtool pathfix tar:bzip2 USE_LDCONFIG= yes GNU_CONFIGURE= yes + +USE_GITHUB= yes +GH_ACCOUNT= Matroska-Org INSTALL_TARGET= install-strip Modified: branches/2017Q3/textproc/libebml/distinfo ============================================================================== --- branches/2017Q3/textproc/libebml/distinfo Sat Aug 19 14:39:02 2017 (r448315) +++ branches/2017Q3/textproc/libebml/distinfo Sat Aug 19 15:02:28 2017 (r448316) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467890644 -SHA256 (libebml-1.3.4.tar.bz2) = c50d3ecf133742c6549c0669c3873f968e11a365a5ba17b2f4dc339bbe51f387 -SIZE (libebml-1.3.4.tar.bz2) = 606205 +TIMESTAMP = 1503134678 +SHA256 (Matroska-Org-libebml-release-1.3.5_GH0.tar.gz) = efe9851797db47bc78486b6c518d822cfca435afe3d9c9d0812d8e3825cd71e6 +SIZE (Matroska-Org-libebml-release-1.3.5_GH0.tar.gz) = 66370 From owner-svn-ports-branches@freebsd.org Sat Aug 19 15:05:27 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D677DCB9EF; Sat, 19 Aug 2017 15:05:27 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 20B987C44F; Sat, 19 Aug 2017 15:05:27 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JF5Qo0074275; Sat, 19 Aug 2017 15:05:26 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JF5QYD074273; Sat, 19 Aug 2017 15:05:26 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201708191505.v7JF5QYD074273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 19 Aug 2017 15:05:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448317 - branches/2017Q3/multimedia/mkvtoolnix X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: branches/2017Q3/multimedia/mkvtoolnix X-SVN-Commit-Revision: 448317 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 15:05:27 -0000 Author: riggs Date: Sat Aug 19 15:05:25 2017 New Revision: 448317 URL: https://svnweb.freebsd.org/changeset/ports/448317 Log: MFH: r448310 Update to upstream version 15.0.0 Approved by: portmgr (feld) Modified: branches/2017Q3/multimedia/mkvtoolnix/Makefile branches/2017Q3/multimedia/mkvtoolnix/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/multimedia/mkvtoolnix/Makefile ============================================================================== --- branches/2017Q3/multimedia/mkvtoolnix/Makefile Sat Aug 19 15:02:28 2017 (r448316) +++ branches/2017Q3/multimedia/mkvtoolnix/Makefile Sat Aug 19 15:05:25 2017 (r448317) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mkvtoolnix -PORTVERSION= 14.0.0 +PORTVERSION= 15.0.0 CATEGORIES= multimedia audio MASTER_SITES= http://www.bunkus.org/videotools/mkvtoolnix/sources/ \ https://mkvtoolnix.download/sources/ Modified: branches/2017Q3/multimedia/mkvtoolnix/distinfo ============================================================================== --- branches/2017Q3/multimedia/mkvtoolnix/distinfo Sat Aug 19 15:02:28 2017 (r448316) +++ branches/2017Q3/multimedia/mkvtoolnix/distinfo Sat Aug 19 15:05:25 2017 (r448317) @@ -1,3 +1,3 @@ -TIMESTAMP = 1501318850 -SHA256 (mkvtoolnix-14.0.0.tar.xz) = 86aa96acb26f7ef9d7afb4d0c1fa1a086b398d563b77372c436044c3c6bba78c -SIZE (mkvtoolnix-14.0.0.tar.xz) = 4529948 +TIMESTAMP = 1503134198 +SHA256 (mkvtoolnix-15.0.0.tar.xz) = 73dc3b6f0a7147e28c06f44427fa0e824d0a4129e40c942d7642d9f451a51195 +SIZE (mkvtoolnix-15.0.0.tar.xz) = 4552588 From owner-svn-ports-branches@freebsd.org Sat Aug 19 15:37:47 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EEAFCDCDE9F; Sat, 19 Aug 2017 15:37:47 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD2587D581; Sat, 19 Aug 2017 15:37:47 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7JFbkDq086743; Sat, 19 Aug 2017 15:37:46 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7JFbkKo086741; Sat, 19 Aug 2017 15:37:46 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201708191537.v7JFbkKo086741@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Sat, 19 Aug 2017 15:37:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448319 - branches/2017Q3/devel/babeltrace X-SVN-Group: ports-branches X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: branches/2017Q3/devel/babeltrace X-SVN-Commit-Revision: 448319 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Aug 2017 15:37:48 -0000 Author: joneum Date: Sat Aug 19 15:37:46 2017 New Revision: 448319 URL: https://svnweb.freebsd.org/changeset/ports/448319 Log: MFH: r448291 - devel/babeltrace: Update from 1.5.2 to 1.5.3 - Changelog: http://git.efficios.com/?p=babeltrace.git;a=shortlog;h=refs/tags/v1.5.3 PR: 221369 Submitted by: luca.pizzamiglio@gmail.com (maintainer) Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D12051 Approved by: ports-secteam (feld) Modified: branches/2017Q3/devel/babeltrace/Makefile branches/2017Q3/devel/babeltrace/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/babeltrace/Makefile ============================================================================== --- branches/2017Q3/devel/babeltrace/Makefile Sat Aug 19 15:11:03 2017 (r448318) +++ branches/2017Q3/devel/babeltrace/Makefile Sat Aug 19 15:37:46 2017 (r448319) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= babeltrace -PORTVERSION= 1.5.2 +PORTVERSION= 1.5.3 DISTVERSIONPREFIX= v CATEGORIES= devel Modified: branches/2017Q3/devel/babeltrace/distinfo ============================================================================== --- branches/2017Q3/devel/babeltrace/distinfo Sat Aug 19 15:11:03 2017 (r448318) +++ branches/2017Q3/devel/babeltrace/distinfo Sat Aug 19 15:37:46 2017 (r448319) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491818316 -SHA256 (efficios-babeltrace-v1.5.2_GH0.tar.gz) = b15dd6dd79808200289f44ef56d3f807368c4bc225711a5afa52f69a0fe21a02 -SIZE (efficios-babeltrace-v1.5.2_GH0.tar.gz) = 836635 +TIMESTAMP = 1502909561 +SHA256 (efficios-babeltrace-v1.5.3_GH0.tar.gz) = 568d52a266828f2d673484757ecc025fee456efc1b15c2105092427ac51506f0 +SIZE (efficios-babeltrace-v1.5.3_GH0.tar.gz) = 839678