From owner-svn-ports-branches@freebsd.org Sun Nov 24 05:40:56 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9D6141CC996; Sun, 24 Nov 2019 05:40:56 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47LJtJ3k67z4sqD; Sun, 24 Nov 2019 05:40:56 +0000 (UTC) (envelope-from linimon@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 633661F8E9; Sun, 24 Nov 2019 05:40:56 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAO5eu0H006168; Sun, 24 Nov 2019 05:40:56 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAO5eu1E006167; Sun, 24 Nov 2019 05:40:56 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201911240540.xAO5eu1E006167@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 24 Nov 2019 05:40:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518296 - branches/2019Q4/devel/py-python-dtrace X-SVN-Group: ports-branches X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: branches/2019Q4/devel/py-python-dtrace X-SVN-Commit-Revision: 518296 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.29 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, 24 Nov 2019 05:40:56 -0000 Author: linimon Date: Sun Nov 24 05:40:55 2019 New Revision: 518296 URL: https://svnweb.freebsd.org/changeset/ports/518296 Log: MFH: r518294 Prevent failure deep in the build if dtrace is not installed: dtrace_cython/consumer.c:611:10: fatal error: 'sys/dtrace.h' file not found Present a more informative message instead. This affects (only some?) of the package building machines, e.g., for powerpc64. Approved by: portmgr (tier-2 blanket) Modified: branches/2019Q4/devel/py-python-dtrace/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/devel/py-python-dtrace/Makefile ============================================================================== --- branches/2019Q4/devel/py-python-dtrace/Makefile Sun Nov 24 05:06:26 2019 (r518295) +++ branches/2019Q4/devel/py-python-dtrace/Makefile Sun Nov 24 05:40:55 2019 (r518296) @@ -15,4 +15,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= python zip USE_PYTHON= autoplist distutils cython cython_run +.if !exists(${SRC_BASE}/sys/cddl/contrib/opensolaris/uts/common/dtrace.h) +IGNORE= you must have "device dtrace" included in your kernel to build this package +.endif + .include From owner-svn-ports-branches@freebsd.org Sun Nov 24 07:36:06 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6A6BC1CF1EC; Sun, 24 Nov 2019 07:36:06 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47LMRB2D8Vz3FP7; Sun, 24 Nov 2019 07:36:06 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2EE9B20E0D; Sun, 24 Nov 2019 07:36:06 +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 xAO7a6JH076084; Sun, 24 Nov 2019 07:36:06 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAO7a56I076083; Sun, 24 Nov 2019 07:36:05 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201911240736.xAO7a56I076083@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 24 Nov 2019 07:36:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518300 - branches/2019Q4/games/openra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2019Q4/games/openra X-SVN-Commit-Revision: 518300 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.29 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, 24 Nov 2019 07:36:06 -0000 Author: jbeich Date: Sun Nov 24 07:36:05 2019 New Revision: 518300 URL: https://svnweb.freebsd.org/changeset/ports/518300 Log: MFH: r517829 games/openra: update to 20191117 Changes: https://github.com/OpenRA/OpenRA/wiki/Changelog#release-20191117 Approved by: ports-secteam (joneum) Modified: branches/2019Q4/games/openra/Makefile branches/2019Q4/games/openra/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/games/openra/Makefile ============================================================================== --- branches/2019Q4/games/openra/Makefile Sun Nov 24 07:17:49 2019 (r518299) +++ branches/2019Q4/games/openra/Makefile Sun Nov 24 07:36:05 2019 (r518300) @@ -1,12 +1,11 @@ # $FreeBSD$ PORTNAME= openra -PORTVERSION= 20190314 DISTVERSIONPREFIX= release- -PORTREVISION= 1 +DISTVERSION= 20191117 CATEGORIES= games -MASTER_SITES= https://github.com/${GH_ACCOUNT}/SDL2-CS/releases/download/20161223/:SDL2_CS \ - https://github.com/${GH_ACCOUNT}/OpenAL-CS/releases/download/20151227/:OpenAL_CS \ +MASTER_SITES= https://github.com/${GH_ACCOUNT}/SDL2-CS/releases/download/20190907/:SDL2_CS \ + https://github.com/${GH_ACCOUNT}/OpenAL-CS/releases/download/20190907/:OpenAL_CS \ https://github.com/${GH_ACCOUNT}/Eluant/releases/download/20160124/:Eluant \ https://geolite.maxmind.com/download/geoip/database/:GeoLite2 DISTFILES= SDL2-CS.dll:SDL2_CS \ @@ -22,6 +21,7 @@ COMMENT= Multiplayer re-envisioning of early RTS games LICENSE= GPLv3 +BUILD_DEPENDS= msbuild:devel/msbuild LIB_DEPENDS= libfreetype.so:print/freetype2 \ libgdiplus.so:x11-toolkits/libgdiplus NUGET_DEPENDS= FuzzyLogicLibrary=1.2.0 \ @@ -29,8 +29,7 @@ NUGET_DEPENDS= FuzzyLogicLibrary=1.2.0 \ NUnit=3.0.1 \ NUnit.Console=3.0.1 \ Open.NAT=2.1.0 \ - SharpFont=4.0.1 \ - SharpZipLib=0.86.0 \ + SharpZipLib=1.1.0 \ StyleCop.MSBuild=4.7.49 \ StyleCopPlus.MSBuild=4.7.49.5 \ rix0rrr.BeaconLib=1.0.1 @@ -47,7 +46,6 @@ NUGET_PACKAGEDIR=${WRKSRC}/thirdparty/download SHEBANG_FILES= launch-dedicated.sh MAKE_ENV= prefix="${PREFIX}" mandir="${PREFIX}/man" \ gameinstalldir="${DATADIR}" -MAKE_ARGS= VERSION="${GH_TAGNAME}" ALL_TARGET= all INSTALL_TARGET= install install-man-page \ install-linux-mime install-linux-shortcuts @@ -66,13 +64,13 @@ post-extract: post-patch: ${REINPLACE_CMD} \ + -e '/MSBUILD.*-t:restore/d' \ -e '/echo/!s/ @/ /' \ - -e '/^mods:/s/$$/ version/' \ + -e '/^VERSION/s/=.*/= ${GH_TAGNAME}/' \ + -e '/^core:/s/$$/ version/' \ ${WRKSRC}/Makefile ${REINPLACE_CMD} -e '/noget\.sh/d' \ ${WRKSRC}/thirdparty/fetch-thirdparty-deps.sh - ${FIND} -L ${WRKSRC}/thirdparty -name '*.config*' -exec ${REINPLACE_CMD} \ - -i '.bak.os' -e '/${OPSYS:tl}/d; /linux/{ p; s//${OPSYS:tl}/; }' {} + ${SED} 's/@LIBLUA51@/liblua-${LUA_VER}.so/' \ ${WRKSRC}/thirdparty/Eluant.dll.config.in \ >${WRKSRC}/Eluant.dll.config Modified: branches/2019Q4/games/openra/distinfo ============================================================================== --- branches/2019Q4/games/openra/distinfo Sun Nov 24 07:17:49 2019 (r518299) +++ branches/2019Q4/games/openra/distinfo Sun Nov 24 07:36:05 2019 (r518300) @@ -1,12 +1,12 @@ -TIMESTAMP = 1552591946 +TIMESTAMP = 1573942409 SHA256 (SDL2-CS.dll) = b06c14a771d14cb37210f476dfd973d4e7d80d97f90566bd5bc78996ade4f7a0 SIZE (SDL2-CS.dll) = 80896 -SHA256 (SDL2-CS.dll.config) = eff0594f7e86d40a94c1b28f8db87478f3de1cf0857f3d46e384bcc6744ce094 -SIZE (SDL2-CS.dll.config) = 194 -SHA256 (OpenAL-CS.dll) = d33391fd954c670a3ba3db2d1553015f78652ea33ca3eaf949da6377ec947e53 -SIZE (OpenAL-CS.dll) = 18944 -SHA256 (OpenAL-CS.dll.config) = 58eaf46a749e466fce0a0ec43184073b0153aa8eb24c865219491bc1db989571 -SIZE (OpenAL-CS.dll.config) = 301 +SHA256 (SDL2-CS.dll.config) = 7d75ef450e1ceb3f61e77a0513b034a5bc2e754065182bc1bc9134ac664da6bd +SIZE (SDL2-CS.dll.config) = 257 +SHA256 (OpenAL-CS.dll) = 4cc20a160107748a8e13dfc5e29f9daacf2675e4b302e066bfbe4a1be0596015 +SIZE (OpenAL-CS.dll) = 19456 +SHA256 (OpenAL-CS.dll.config) = 12704a902127e3f67e7d9a3e2331bf2d65e008b59ab96d132807add14e0f2a1c +SIZE (OpenAL-CS.dll.config) = 304 SHA256 (Eluant.dll) = 218c4ea5424b44d746b5343563123beebc652fd9731967dfd49fed071b58df31 SIZE (Eluant.dll) = 71168 SHA256 (GeoLite2-Country_20191105.tar.gz) = be6467f6abd1da73081c64218e2524add57c46af4061a77b27c4290b1a4804d1 @@ -21,15 +21,13 @@ SHA256 (nunit.console.3.0.1.nupkg) = 164ce9124d769ac99 SIZE (nunit.console.3.0.1.nupkg) = 479750 SHA256 (open.nat.2.1.0.nupkg) = c532dee1478b4a7e28aa4797a5efc3f829a6bd0cc0af646aac001ce183f0e3e2 SIZE (open.nat.2.1.0.nupkg) = 347767 -SHA256 (sharpfont.4.0.1.nupkg) = bb3817022f7304a0cd93d7f3acb405785f51b8481ce1c35432803f2c45fffd3e -SIZE (sharpfont.4.0.1.nupkg) = 151532 -SHA256 (sharpziplib.0.86.0.nupkg) = 75045aa2148e25cb895bcca67cf39083a98c808a5bf7fd58d84e08f582787b9e -SIZE (sharpziplib.0.86.0.nupkg) = 463599 +SHA256 (sharpziplib.1.1.0.nupkg) = 0f4bb6666a67fde963d90f4a96fd68eb1d098ef55a936d6e712cea74d4b798ca +SIZE (sharpziplib.1.1.0.nupkg) = 409619 SHA256 (stylecop.msbuild.4.7.49.nupkg) = 8d7c7ad97e740f08996186bfc33cd995b5d6b99ef3ed32326e40c67148d650b2 SIZE (stylecop.msbuild.4.7.49.nupkg) = 2376565 SHA256 (stylecopplus.msbuild.4.7.49.5.nupkg) = c98225a744586907bed767a4cb2a756ff3a8d13ff355b40ecc43c3e2537683d9 SIZE (stylecopplus.msbuild.4.7.49.5.nupkg) = 134291 SHA256 (rix0rrr.beaconlib.1.0.1.nupkg) = ed4d44f176af53a2fcb31b35def9a5af4cd42bb3639bc2c458f843d991f074ec SIZE (rix0rrr.beaconlib.1.0.1.nupkg) = 17989 -SHA256 (openra-OpenRA-release-20190314_GH0.tar.gz) = 9e5d3b3cc5d389b4c6fb85e2e5ee2aa3b148fe028cec3dcd8fa2e25171e13b15 -SIZE (openra-OpenRA-release-20190314_GH0.tar.gz) = 24551126 +SHA256 (openra-OpenRA-release-20191117_GH0.tar.gz) = 062827a98d22f4479019e4ff0e9f693c214e44590827801f92bfb77df442f0dd +SIZE (openra-OpenRA-release-20191117_GH0.tar.gz) = 24670982 From owner-svn-ports-branches@freebsd.org Sun Nov 24 11:27:44 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 51A921ABC78; Sun, 24 Nov 2019 11:27:44 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47LSZS1Q4pz3Q5H; Sun, 24 Nov 2019 11:27:44 +0000 (UTC) (envelope-from rene@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 13A9E2376C; Sun, 24 Nov 2019 11:27:44 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAOBRh0l012631; Sun, 24 Nov 2019 11:27:43 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAOBRhk5012629; Sun, 24 Nov 2019 11:27:43 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201911241127.xAOBRhk5012629@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 24 Nov 2019 11:27:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518317 - branches/2019Q4/www/chromium X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: branches/2019Q4/www/chromium X-SVN-Commit-Revision: 518317 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.29 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, 24 Nov 2019 11:27:44 -0000 Author: rene Date: Sun Nov 24 11:27:43 2019 New Revision: 518317 URL: https://svnweb.freebsd.org/changeset/ports/518317 Log: MFH: r518279 www/chromium: update to 78.0.3904.108 Submitted by: Matthias Wolf Security: yes, but undocumented Approved by: ports-secteam (joneum) Modified: branches/2019Q4/www/chromium/Makefile branches/2019Q4/www/chromium/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/chromium/Makefile ============================================================================== --- branches/2019Q4/www/chromium/Makefile Sun Nov 24 11:16:47 2019 (r518316) +++ branches/2019Q4/www/chromium/Makefile Sun Nov 24 11:27:43 2019 (r518317) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 78.0.3904.97 +PORTVERSION= 78.0.3904.108 CATEGORIES?= www MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ \ LOCAL/cpm/chromium/:fonts Modified: branches/2019Q4/www/chromium/distinfo ============================================================================== --- branches/2019Q4/www/chromium/distinfo Sun Nov 24 11:16:47 2019 (r518316) +++ branches/2019Q4/www/chromium/distinfo Sun Nov 24 11:27:43 2019 (r518317) @@ -1,7 +1,7 @@ -TIMESTAMP = 1573140185 -SHA256 (chromium-78.0.3904.97.tar.xz) = d1f49ab9f4f973536166f587114553c21a29977bdc350dd407a89d34e22a9d07 -SIZE (chromium-78.0.3904.97.tar.xz) = 742793812 -SHA256 (chromium-78.0.3904.97-testdata.tar.xz) = f9897cfbb2039f42e3c02cb78e3a528972394c5ed0fe88280023ae1bbdf57287 -SIZE (chromium-78.0.3904.97-testdata.tar.xz) = 252327620 +TIMESTAMP = 1574329181 +SHA256 (chromium-78.0.3904.108.tar.xz) = f9c53839f306d2973de27723360024f7904101d426b9e7e9cdb56e8bcc775b0e +SIZE (chromium-78.0.3904.108.tar.xz) = 742906260 +SHA256 (chromium-78.0.3904.108-testdata.tar.xz) = a46480e2a3b3a1b22e1234e5247d41c69c27e3d498ad9a330abefd6d0066351e +SIZE (chromium-78.0.3904.108-testdata.tar.xz) = 252295600 SHA256 (test_fonts.tar.xz) = cf9cbe3b7f1c4c42d426bddc65ec178d333ad7e205a36fe0a606a3c0c545ece1 SIZE (test_fonts.tar.xz) = 200040 From owner-svn-ports-branches@freebsd.org Sun Nov 24 14:57:26 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8CE171B1456; Sun, 24 Nov 2019 14:57:26 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47LYDQ2t8Hz45c8; Sun, 24 Nov 2019 14:57:26 +0000 (UTC) (envelope-from rene@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 42DC525D10; Sun, 24 Nov 2019 14:57:26 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAOEvQga036242; Sun, 24 Nov 2019 14:57:26 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAOEvPQ9036240; Sun, 24 Nov 2019 14:57:25 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201911241457.xAOEvPQ9036240@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 24 Nov 2019 14:57:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518327 - branches/2019Q4/security/py-htpasswd X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: branches/2019Q4/security/py-htpasswd X-SVN-Commit-Revision: 518327 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.29 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, 24 Nov 2019 14:57:26 -0000 Author: rene Date: Sun Nov 24 14:57:25 2019 New Revision: 518327 URL: https://svnweb.freebsd.org/changeset/ports/518327 Log: MFH: r518326 security/htpasswd: unbreak, update to 2019.10.15, set NO_ARCH PR: 241292 Submitted by: takefu@airport.fm Approved by: ports-secteam (joneum) Modified: branches/2019Q4/security/py-htpasswd/Makefile branches/2019Q4/security/py-htpasswd/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/security/py-htpasswd/Makefile ============================================================================== --- branches/2019Q4/security/py-htpasswd/Makefile Sun Nov 24 14:31:33 2019 (r518326) +++ branches/2019Q4/security/py-htpasswd/Makefile Sun Nov 24 14:57:25 2019 (r518327) @@ -2,27 +2,28 @@ # $FreeBSD$ PORTNAME= htpasswd -PORTVERSION= 2008.03.05 -PORTREVISION= 2 +PORTVERSION= 2019.10.15 CATEGORIES= security python -MASTER_SITES= http://files.bsdroot.lv/my/FreeBSD/distfiles/ +MASTER_SITES= https://svn.apache.org/repos/asf/bloodhound/trunk/trac/contrib/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME}.py +EXTRACT_SUFX= # empty MAINTAINER= ports@FreeBSD.org COMMENT= Replacement for htpasswd -BROKEN= unfetchable -DEPRECATED= Unfetchable, unmaintained -EXPIRATION_DATE= 2019-10-16 +USES= python shebangfix +SHEBANG_FILES= ${PORTNAME}.py -USES= python shebangfix tar:xz +NO_ARCH= yes -PLIST_FILES= bin/${PORTNAME}.py - -NO_BUILD= yes NO_WRKSUBDIR= yes +EXTRACT_CMD= ${CP} +EXTRACT_AFTER_ARGS= ${WRKSRC} +EXTRACT_BEFORE_ARGS= # empty -SHEBANG_FILES= ${PORTNAME}.py +NO_BUILD= yes +PLIST_FILES= bin/${PORTNAME}.py do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.py ${STAGEDIR}${PREFIX}/bin Modified: branches/2019Q4/security/py-htpasswd/distinfo ============================================================================== --- branches/2019Q4/security/py-htpasswd/distinfo Sun Nov 24 14:31:33 2019 (r518326) +++ branches/2019Q4/security/py-htpasswd/distinfo Sun Nov 24 14:57:25 2019 (r518327) @@ -1,2 +1,3 @@ -SHA256 (htpasswd-2008.03.05.tar.xz) = 179941e30f8e2b9ff8f4e88e4300ca6e9dcaa761066c4d5444383ecfe3963a13 -SIZE (htpasswd-2008.03.05.tar.xz) = 1640 +TIMESTAMP = 1574603031 +SHA256 (htpasswd.py) = 45e306185b3d9496e28d744ae15a057f8af7b4b244abf204c8063ee9ff9173f6 +SIZE (htpasswd.py) = 3986 From owner-svn-ports-branches@freebsd.org Sun Nov 24 20:08:52 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id AD9181B96EF; Sun, 24 Nov 2019 20:08:52 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47Lh7m48vqz4QHS; Sun, 24 Nov 2019 20:08:52 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5A3C21572; Sun, 24 Nov 2019 20:08:52 +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 xAOK8qLp022573; Sun, 24 Nov 2019 20:08:52 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAOK8nll022556; Sun, 24 Nov 2019 20:08:49 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201911242008.xAOK8nll022556@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 24 Nov 2019 20:08:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518359 - in branches/2019Q4: audio/audacity audio/audacity/files audio/qjackctl deskutils/cairo-dock-plugins deskutils/lumina-calculator devel/openocd games/spring X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in branches/2019Q4: audio/audacity audio/audacity/files audio/qjackctl deskutils/cairo-dock-plugins deskutils/lumina-calculator devel/openocd games/spring X-SVN-Commit-Revision: 518359 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.29 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, 24 Nov 2019 20:08:52 -0000 Author: riggs Date: Sun Nov 24 20:08:49 2019 New Revision: 518359 URL: https://svnweb.freebsd.org/changeset/ports/518359 Log: MFH: r514755 r514770 r518301 audio/audacity: Remove bogus STATIC_WX option This was accepted by me in r495224. STATIC_WX_ENABLE was probably supposed to be STATIC_WX_CONFIGURE_ENABLE but the entire idea of the option is flawed. wxgtk31 does not provide static libraries. While here drop unhooked JACK_LIB_DEPENDS options helper. Audacity has been using the system Portaudio for a while and JACK support can be enabled there. Remove a bunch of unused *_DESC Update to upstream version 2.3.3 PR: 242169 Submitted by: xxjack12xx@gmail.com (maintainer) Approved by: ports-secteam (riggs) Deleted: branches/2019Q4/audio/audacity/files/patch-src_MemoryX.h Modified: branches/2019Q4/audio/audacity/Makefile branches/2019Q4/audio/audacity/distinfo branches/2019Q4/audio/audacity/files/patch-configure.ac branches/2019Q4/audio/audacity/files/patch-include_audacity_Types.h branches/2019Q4/audio/audacity/files/patch-lib-src_FileDialog_Makefile.am branches/2019Q4/audio/audacity/files/patch-src_AudioIO.cpp branches/2019Q4/audio/audacity/files/patch-src_FFmpeg.h branches/2019Q4/audio/audacity/files/patch-src_prefs_PrefsDialog.cpp branches/2019Q4/audio/audacity/pkg-plist branches/2019Q4/audio/qjackctl/Makefile branches/2019Q4/deskutils/cairo-dock-plugins/Makefile branches/2019Q4/deskutils/lumina-calculator/Makefile branches/2019Q4/devel/openocd/Makefile branches/2019Q4/games/spring/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/audio/audacity/Makefile ============================================================================== --- branches/2019Q4/audio/audacity/Makefile Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/audio/audacity/Makefile Sun Nov 24 20:08:49 2019 (r518359) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= audacity -PORTVERSION= 2.3.2 +PORTVERSION= 2.3.3 DISTVERSIONPREFIX= Audacity- -PORTREVISION= 2 CATEGORIES= audio MAINTAINER= xxjack12xx@gmail.com @@ -41,7 +40,7 @@ USE_GITHUB= yes OPTIONS_DEFINE= DEBUG DOCS DYNLOAD FFMPEG FLAC ID3TAG LADSPA LAME LV2 \ MAD MOD_NYQ_BENCH MOD_SCRIPT_PIPE NLS SBSMS SOUNDTOUCH \ - SSE STATIC_WX TWOLAME VAMP VORBIS VST + SSE TWOLAME VAMP VORBIS VST OPTIONS_DEFAULT= FLAC ID3TAG LADSPA MAD SBSMS SOUNDTOUCH TWOLAME VAMP \ VORBIS VST @@ -56,8 +55,6 @@ MOD_SCRIPT_PIPE_DESC= mod-script-pipe scripting suppor MOD_NYQ_BENCH_DESC= Enable Nyquist Workbench SBSMS_DESC= Use libsbsms for pitch and tempo changing SOUNDTOUCH_DESC= Use libSoundTouch for pitch and tempo changing -STATIC_WX_DESC= Link wx statically -TAGLIB_DESC= Use TagLib for metadata support TWOLAME_DESC= Use libtwolame for MP2 export support VAMP_DESC= Vamp plug-in support VST_DESC= VST plug-in support @@ -100,8 +97,6 @@ FLAC_LIB_DEPENDS= libFLAC.so:audio/flac ID3TAG_CONFIGURE_WITH= libid3tag=system ID3TAG_LIB_DEPENDS= libid3tag.so:audio/libid3tag -JACK_LIB_DEPENDS= libjack.so:audio/jack - LADSPA_CONFIGURE_ENABLE= ladspa LADSPA_RUN_DEPENDS= listplugins:audio/ladspa @@ -130,8 +125,6 @@ SOUNDTOUCH_CONFIGURE_WITH= soundtouch=system SOUNDTOUCH_LIB_DEPENDS= libSoundTouch.so:audio/soundtouch SSE_CONFIGURE_ENABLE= sse - -STATIC_WX_ENABLE= static-wx TWOLAME_CONFIGURE_WITH= libtwolame=system TWOLAME_LIB_DEPENDS= libtwolame.so:audio/twolame Modified: branches/2019Q4/audio/audacity/distinfo ============================================================================== --- branches/2019Q4/audio/audacity/distinfo Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/audio/audacity/distinfo Sun Nov 24 20:08:49 2019 (r518359) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557793254 -SHA256 (audacity-audacity-Audacity-2.3.2_GH0.tar.gz) = cc477a71ff5571c72887a7a155365b07a1a50bcea1abf490a4de7b884376c731 -SIZE (audacity-audacity-Audacity-2.3.2_GH0.tar.gz) = 61972597 +TIMESTAMP = 1574484432 +SHA256 (audacity-audacity-Audacity-2.3.3_GH0.tar.gz) = 9ab6c8989e21165b86aad80b7e6691015cb5b0c91ab77e6170d7192f840313a8 +SIZE (audacity-audacity-Audacity-2.3.3_GH0.tar.gz) = 62099027 Modified: branches/2019Q4/audio/audacity/files/patch-configure.ac ============================================================================== --- branches/2019Q4/audio/audacity/files/patch-configure.ac Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/audio/audacity/files/patch-configure.ac Sun Nov 24 20:08:49 2019 (r518359) @@ -1,6 +1,6 @@ --- configure.ac.orig 2019-02-24 08:28:05 UTC +++ configure.ac -@@ -204,14 +204,6 @@ if test x$enable_universal_binary = xyes; then +@@ -200,14 +200,6 @@ if test x$enable_universal_binary = xyes; then esac fi @@ -15,7 +15,7 @@ if test x$enable_sse = xyes; then if test "${ax_cv_cxx_compiler_vendor}" = "gnu"; then -@@ -243,20 +235,7 @@ dnl check if alloca.h exists. If it does, we need to i +@@ -239,20 +231,7 @@ dnl check if alloca.h exists. If it does, we need to i dnl Solaris builds, by defining HAVE_ALLOCA_H AC_CHECK_HEADERS_ONCE(alloca.h) Modified: branches/2019Q4/audio/audacity/files/patch-include_audacity_Types.h ============================================================================== --- branches/2019Q4/audio/audacity/files/patch-include_audacity_Types.h Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/audio/audacity/files/patch-include_audacity_Types.h Sun Nov 24 20:08:49 2019 (r518359) @@ -1,6 +1,6 @@ --- include/audacity/Types.h.orig 2018-10-01 14:07:33 UTC +++ include/audacity/Types.h -@@ -100,7 +100,7 @@ class sampleCount (public) +@@ -311,7 +311,7 @@ class sampleCount (public) sampleCount ( long v ) : value { v } {} // unsigned long is 64 bit on some platforms. Let it narrow. Modified: branches/2019Q4/audio/audacity/files/patch-lib-src_FileDialog_Makefile.am ============================================================================== --- branches/2019Q4/audio/audacity/files/patch-lib-src_FileDialog_Makefile.am Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/audio/audacity/files/patch-lib-src_FileDialog_Makefile.am Sun Nov 24 20:08:49 2019 (r518359) @@ -1,6 +1,6 @@ --- lib-src/FileDialog/Makefile.am.orig 2018-10-01 14:07:33 UTC +++ lib-src/FileDialog/Makefile.am -@@ -1,5 +1,7 @@ +@@ -2,5 +2,7 @@ ACLOCAL_AMFLAGS = -I m4 +SUBDIRS= $(GTK_SUBDIR) $(MAC_SUBDIR) $(WINDOWS_SUBDIR) @@ -8,7 +8,7 @@ lib_LTLIBRARIES = libFileDialog.la libFileDialog_la_LIBTOOLFLAGS = --tag=CXX -@@ -8,22 +10,32 @@ libFileDialog_la_LIBADD = $(WX_LIBS) +@@ -11,22 +13,32 @@ libFileDialog_la_LIBADD = $(WX_LIBS) libFileDialog_la_SOURCES = FileDialog.cpp FileDialog.h if GTK Modified: branches/2019Q4/audio/audacity/files/patch-src_AudioIO.cpp ============================================================================== --- branches/2019Q4/audio/audacity/files/patch-src_AudioIO.cpp Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/audio/audacity/files/patch-src_AudioIO.cpp Sun Nov 24 20:08:49 2019 (r518359) @@ -1,14 +1,14 @@ --- src/AudioIO.cpp.orig 2018-10-01 14:07:33 UTC +++ src/AudioIO.cpp -@@ -479,7 +479,6 @@ TimeTrack and AudioIOListener and whether the playback +@@ -480,7 +480,6 @@ TimeTrack and AudioIOListener and whether the playback #define ROUND(x) (int) ((x)+0.5) //#include - #include "../lib-src/portmidi/pm_common/portmidi.h" + // #include "../lib-src/portmidi/pm_common/portmidi.h" - #include "../lib-src/portaudio-v19/src/common/pa_util.h" #include "NoteTrack.h" #endif -@@ -799,13 +800,22 @@ struct AudioIO::ScrubState (private) +@@ -793,13 +797,22 @@ struct AudioIO::ScrubState (private) // return the system time as a double static double streamStartTime = 0; // bias system time to small number Modified: branches/2019Q4/audio/audacity/files/patch-src_FFmpeg.h ============================================================================== --- branches/2019Q4/audio/audacity/files/patch-src_FFmpeg.h Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/audio/audacity/files/patch-src_FFmpeg.h Sun Nov 24 20:08:49 2019 (r518359) @@ -1,6 +1,6 @@ --- src/FFmpeg.h.orig 2018-10-01 14:07:33 UTC +++ src/FFmpeg.h -@@ -671,7 +671,7 @@ extern "C" { +@@ -667,7 +667,7 @@ extern "C" { FFMPEG_FUNCTION_WITH_RETURN( AVOutputFormat*, av_oformat_next, @@ -9,7 +9,7 @@ (f) ); #endif -@@ -752,7 +752,7 @@ extern "C" { +@@ -748,7 +748,7 @@ extern "C" { FFMPEG_FUNCTION_WITH_RETURN( int, av_fifo_size, @@ -18,7 +18,7 @@ (f) ); #endif -@@ -814,7 +814,7 @@ extern "C" { +@@ -810,7 +810,7 @@ extern "C" { FFMPEG_FUNCTION_WITH_RETURN( AVDictionaryEntry *, av_dict_get, Modified: branches/2019Q4/audio/audacity/files/patch-src_prefs_PrefsDialog.cpp ============================================================================== --- branches/2019Q4/audio/audacity/files/patch-src_prefs_PrefsDialog.cpp Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/audio/audacity/files/patch-src_prefs_PrefsDialog.cpp Sun Nov 24 20:08:49 2019 (r518359) @@ -1,6 +1,6 @@ --- src/prefs/PrefsDialog.cpp.orig 2019-05-13 18:00:33.704997000 -0700 +++ src/prefs/PrefsDialog.cpp 2019-05-13 17:52:51.702814000 -0700 -@@ -29,6 +29,7 @@ +@@ -30,6 +30,7 @@ #include #include #include Modified: branches/2019Q4/audio/audacity/pkg-plist ============================================================================== --- branches/2019Q4/audio/audacity/pkg-plist Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/audio/audacity/pkg-plist Sun Nov 24 20:08:49 2019 (r518359) @@ -80,7 +80,6 @@ share/applications/audacity.desktop %%DATADIR%%/plug-ins/sample-data-import.ny %%DATADIR%%/plug-ins/tremolo.ny %%DATADIR%%/plug-ins/vocalrediso.ny -%%DATADIR%%/plug-ins/vocalremover.ny %%DATADIR%%/plug-ins/vocoder.ny share/icons/hicolor/16x16/apps/audacity.png share/icons/hicolor/22x22/apps/audacity.png Modified: branches/2019Q4/audio/qjackctl/Makefile ============================================================================== --- branches/2019Q4/audio/qjackctl/Makefile Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/audio/qjackctl/Makefile Sun Nov 24 20:08:49 2019 (r518359) @@ -32,7 +32,6 @@ OPTIONS_GROUP_AIFACE= ALSA PORTAUDIO AIFACE_DESC= Other audio interfaces SYSTRAY_DESC= System tray icon support -TOOLKIT_DESC= Qt toolkit XUNIQUE_DESC= X11 unique/single instance ALSA_CONFIGURE_ENABLE= alsa_seq Modified: branches/2019Q4/deskutils/cairo-dock-plugins/Makefile ============================================================================== --- branches/2019Q4/deskutils/cairo-dock-plugins/Makefile Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/deskutils/cairo-dock-plugins/Makefile Sun Nov 24 20:08:49 2019 (r518359) @@ -56,7 +56,7 @@ MAIL_DESC= Mail applet #RUBY_DESC= Ruby interface SOUND_EFFECTS_DESC= Sound Effects applet UPOWER_DESC= D-Bus daemon for power management tasks -TERMINAL_DESC= Terminal applet +#TERMINAL_DESC= Terminal applet #VALA_DESC= Vala interface WEBLETS_DESC= Weblets applet XGAMMA_DESC= Xgamma applet Modified: branches/2019Q4/deskutils/lumina-calculator/Makefile ============================================================================== --- branches/2019Q4/deskutils/lumina-calculator/Makefile Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/deskutils/lumina-calculator/Makefile Sun Nov 24 20:08:49 2019 (r518359) @@ -21,8 +21,6 @@ GH_TAGNAME= ccb792fc713aa7163fffd37fc20c83ffe9ca7523 OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -I18N_DESC= Install localization files - CONFLICTS_INSTALL= lumina-1.2.* WRKSRC_SUBDIR= src-qt5 Modified: branches/2019Q4/devel/openocd/Makefile ============================================================================== --- branches/2019Q4/devel/openocd/Makefile Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/devel/openocd/Makefile Sun Nov 24 20:08:49 2019 (r518359) @@ -42,7 +42,6 @@ ULINK_DESC= Support Keil ULINK-JTAG Programmer ARMJTAGEW_DESC= Support Olimex ARM-JTAG-EW Programmer BUSPIRATE_DESC= Support BusPirate Programmer STLINK_DESC= Support STLink Programmer -TI_ICDI_DESC= Support TI ICDI JTAG Programmer OSBDM_DESC= Support OSBDM Programmer (JTAG only) OPENDOUS_DESC= Support EStick/OpenDous Programmer SYSFSGPIO_DESC= Support Programming via sysfs GPIOs Modified: branches/2019Q4/games/spring/Makefile ============================================================================== --- branches/2019Q4/games/spring/Makefile Sun Nov 24 19:54:52 2019 (r518358) +++ branches/2019Q4/games/spring/Makefile Sun Nov 24 20:08:49 2019 (r518359) @@ -58,7 +58,6 @@ OPTIONS_DEFINE= MANPAGES PR_DOWNLOADER DOCS OPTIONS_DEFAULT=MANPAGES PR_DOWNLOADER OPTIONS_SUB= yes -HTMLDOCS_DESC= Build and install HTML documentation PR_DOWNLOADER_DESC= Map and game downloader MANPAGES_CMAKE_ON= -DCREATE_MAN_PAGES:BOOL=true -DMANDIR:STRING="man" From owner-svn-ports-branches@freebsd.org Sun Nov 24 21:08:21 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A09FE1BBDBA; Sun, 24 Nov 2019 21:08:21 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47LjSP3lYNz4VQf; Sun, 24 Nov 2019 21:08:21 +0000 (UTC) (envelope-from rene@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6405521AD; Sun, 24 Nov 2019 21:08:21 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAOL8LYC057629; Sun, 24 Nov 2019 21:08:21 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAOL8LpK057628; Sun, 24 Nov 2019 21:08:21 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201911242108.xAOL8LpK057628@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 24 Nov 2019 21:08:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518361 - branches/2019Q4/shells/v7sh X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: branches/2019Q4/shells/v7sh X-SVN-Commit-Revision: 518361 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.29 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, 24 Nov 2019 21:08:21 -0000 Author: rene Date: Sun Nov 24 21:08:20 2019 New Revision: 518361 URL: https://svnweb.freebsd.org/changeset/ports/518361 Log: MFH: r516366 shells/v7sh: over to new volunteer with a new MASTER_SITES PR: 241279 Submitted by: Chris Hutchinson Approved by: portmgr (implicit) Modified: branches/2019Q4/shells/v7sh/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/shells/v7sh/Makefile ============================================================================== --- branches/2019Q4/shells/v7sh/Makefile Sun Nov 24 20:50:24 2019 (r518360) +++ branches/2019Q4/shells/v7sh/Makefile Sun Nov 24 21:08:20 2019 (r518361) @@ -5,24 +5,18 @@ PORTNAME= v7sh PORTVERSION= 1.0 PORTREVISION= 1 CATEGORIES= shells -MASTER_SITES= ftp://minnie.tuhs.org/UnixArchive/PDP-11/Trees/V7/usr/src/cmd/sh/:s \ - http://minnie.tuhs.org/UnixTree/V7/usr/src/cmd/sh/:s \ - ftp://minnie.tuhs.org/UnixArchive/PDP-11/Trees/V7/usr/man/man1/:m \ - http://minnie.tuhs.org/UnixTree/V7/usr/man/man1/:m -DISTFILES= args.c:s blok.c:s brkincr.h:s builtin.c:s cmd.c:s \ - ctype.c:s ctype.h:s defs.h:s error.c:s expand.c:s \ - fault.c:s io.c:s mac.h:s macro.c:s main.c:s mode.h:s \ - msg.c:s name.c:s name.h:s print.c:s service.c:s \ - setbrk.c:s stak.c:s stak.h:s string.c:s sym.h:s \ - timeout.h:s word.c:s xec.c:s sh.1:m +MASTER_SITES= https://BSDforge.com/projects/source/shells/v7sh/ +DISTFILES= args.c blok.c brkincr.h builtin.c cmd.c \ + ctype.c ctype.h defs.h error.c expand.c \ + fault.c io.c mac.h macro.c main.c mode.h \ + msg.c name.c name.h print.c service.c \ + setbrk.c stak.c stak.h string.c sym.h \ + timeout.h word.c xec.c sh.1 DIST_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= portmaster@BSDforge.com COMMENT= Implementation of the UNIX 7th Edition shell -BROKEN= unfetchable -DEPRECATED= Unfetchable, unmaintained -EXPIRATION_DATE= 2019-10-16 BROKEN_aarch64= Fails to link: missing sbrk USES= uidfix From owner-svn-ports-branches@freebsd.org Sun Nov 24 21:10:17 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EF8291BBF33; Sun, 24 Nov 2019 21:10:17 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47LjVd5xWgz4Vh4; Sun, 24 Nov 2019 21:10:17 +0000 (UTC) (envelope-from rene@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AFC1D21C4; Sun, 24 Nov 2019 21:10:17 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAOLAHVJ057923; Sun, 24 Nov 2019 21:10:17 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAOLAHXa057922; Sun, 24 Nov 2019 21:10:17 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201911242110.xAOLAHXa057922@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 24 Nov 2019 21:10:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518362 - branches/2019Q4/sysutils/bkpupsd X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: branches/2019Q4/sysutils/bkpupsd X-SVN-Commit-Revision: 518362 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.29 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, 24 Nov 2019 21:10:18 -0000 Author: rene Date: Sun Nov 24 21:10:17 2019 New Revision: 518362 URL: https://svnweb.freebsd.org/changeset/ports/518362 Log: MFH: r516257 sysutils/bkpupsd: over to new volunteer PR: 241281 Submitted by: Chris Hutchinson Approved by: portmgr (implicit) Modified: branches/2019Q4/sysutils/bkpupsd/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/sysutils/bkpupsd/Makefile ============================================================================== --- branches/2019Q4/sysutils/bkpupsd/Makefile Sun Nov 24 21:08:20 2019 (r518361) +++ branches/2019Q4/sysutils/bkpupsd/Makefile Sun Nov 24 21:10:17 2019 (r518362) @@ -4,13 +4,9 @@ PORTNAME= bkpupsd PORTVERSION= 1.0a CATEGORIES= sysutils -MASTER_SITES= http://ftp.knit.kagoshima-u.ac.jp/pub/Unix/bkpupsd/ +MASTER_SITES= https://BSDforge.com/projects/source/sysutils/bkpupsd/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= portmaster@BSDforge.com COMMENT= Simple UPS daemon for APC BK Pro(TM) - -BROKEN= unfetchable -DEPRECATED= Unfetchable, unmaintained -EXPIRATION_DATE= 2019-10-16 .include From owner-svn-ports-branches@freebsd.org Sun Nov 24 21:11:14 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E191C1BBF9E; Sun, 24 Nov 2019 21:11:14 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47LjWk5l5rz4Vvt; Sun, 24 Nov 2019 21:11:14 +0000 (UTC) (envelope-from rene@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A997E2300; Sun, 24 Nov 2019 21:11:14 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAOLBEU2059054; Sun, 24 Nov 2019 21:11:14 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAOLBEXD059053; Sun, 24 Nov 2019 21:11:14 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201911242111.xAOLBEXD059053@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 24 Nov 2019 21:11:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518363 - branches/2019Q4/sysutils/kldpatch X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: branches/2019Q4/sysutils/kldpatch X-SVN-Commit-Revision: 518363 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.29 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, 24 Nov 2019 21:11:14 -0000 Author: rene Date: Sun Nov 24 21:11:14 2019 New Revision: 518363 URL: https://svnweb.freebsd.org/changeset/ports/518363 Log: MFH: r516258 sysutils/kldpatch: over to new volunteer, update MASTER_SITES and USES PR: 241282 Submitted by: Chris Hutchinson Approved by: portmgr (implicit) Modified: branches/2019Q4/sysutils/kldpatch/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/sysutils/kldpatch/Makefile ============================================================================== --- branches/2019Q4/sysutils/kldpatch/Makefile Sun Nov 24 21:10:17 2019 (r518362) +++ branches/2019Q4/sysutils/kldpatch/Makefile Sun Nov 24 21:11:14 2019 (r518363) @@ -4,16 +4,13 @@ PORTNAME= kldpatch PORTVERSION= 20090116 CATEGORIES= sysutils -MASTER_SITES= http://info.iet.unipi.it/~luigi/FreeBSD/ +MASTER_SITES= https://BSDforge.com/projects/source/sysutils/kldpatch/ DISTNAME= ${PORTVERSION}-${PORTNAME} -EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= portmaster@BSDforge.com COMMENT= Utility to patch modules and kernel -BROKEN= unfetchable -DEPRECATED= Unfetchable, unmaintained -EXPIRATION_DATE= 2019-10-16 +USES= tar:tgz PLIST_FILES= man/man8/${PORTNAME}.8.gz sbin/kldpatch From owner-svn-ports-branches@freebsd.org Sun Nov 24 21:51:12 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 388CE1BCF65; Sun, 24 Nov 2019 21:51:12 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47LkPr0nK0z4XfT; Sun, 24 Nov 2019 21:51:12 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D8C85291B; Sun, 24 Nov 2019 21:51:11 +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 xAOLpBoK085050; Sun, 24 Nov 2019 21:51:11 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAOLpBS1085048; Sun, 24 Nov 2019 21:51:11 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201911242151.xAOLpBS1085048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Sun, 24 Nov 2019 21:51:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518364 - branches/2019Q4/lang/php73 X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: branches/2019Q4/lang/php73 X-SVN-Commit-Revision: 518364 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.29 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, 24 Nov 2019 21:51:12 -0000 Author: tz Date: Sun Nov 24 21:51:11 2019 New Revision: 518364 URL: https://svnweb.freebsd.org/changeset/ports/518364 Log: MFH: r518168 lang/php73: Update from 7.3.11 to 7.3.12 Changelog: Core: Fixed bug #78658 (Memory corruption using Closure::bindTo). Fixed bug #78656 (Parse errors classified as highest log-level). Fixed bug #78752 (Segfault if GC triggered while generator stack frame is being destroyed). Fixed bug #78689 (Closure::fromCallable() doesn't handle [Closure, '__invoke']). COM: Fixed bug #78694 (Appending to a variant array causes segfault). Date: Fixed bug #70153 (\DateInterval incorrectly unserialized). Fixed bug #78751 (Serialising DatePeriod converts DateTimeImmutable). Iconv: Fixed bug #78642 (Wrong libiconv version displayed). OpCache: Fixed bug #78654 (Incorrectly computed opcache checksum on files with non-ascii characters). Fixed bug #78747 (OpCache corrupts custom extension result). OpenSSL: Fixed bug #78775 (TLS issues from HTTP request affecting other encrypted connections). Reflection: Fixed bug #78697 (ReflectionClass::ImplementsInterface - inaccurate error message with traits). Sockets: Fixed bug #78665 (Multicasting may leak memory). Changelog taken from: https://www.php.net/ChangeLog-7.php#7.3.12 Approved by: ports-secteam (joneum) Modified: branches/2019Q4/lang/php73/Makefile branches/2019Q4/lang/php73/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/lang/php73/Makefile ============================================================================== --- branches/2019Q4/lang/php73/Makefile Sun Nov 24 21:11:14 2019 (r518363) +++ branches/2019Q4/lang/php73/Makefile Sun Nov 24 21:51:11 2019 (r518364) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= php73 -DISTVERSION= 7.3.11 +DISTVERSION= 7.3.12 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: branches/2019Q4/lang/php73/distinfo ============================================================================== --- branches/2019Q4/lang/php73/distinfo Sun Nov 24 21:11:14 2019 (r518363) +++ branches/2019Q4/lang/php73/distinfo Sun Nov 24 21:51:11 2019 (r518364) @@ -1,3 +1,3 @@ -TIMESTAMP = 1571995527 -SHA256 (php-7.3.11.tar.xz) = 657cf6464bac28e9490c59c07a2cf7bb76c200f09cfadf6e44ea64e95fa01021 -SIZE (php-7.3.11.tar.xz) = 12092412 +TIMESTAMP = 1574409147 +SHA256 (php-7.3.12.tar.xz) = aafe5e9861ad828860c6af8c88cdc1488314785962328eb1783607c1fdd855df +SIZE (php-7.3.12.tar.xz) = 12095212 From owner-svn-ports-branches@freebsd.org Sun Nov 24 21:52:21 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 97DC31BD10E; Sun, 24 Nov 2019 21:52:21 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47LkR93Gwmz4Xvs; Sun, 24 Nov 2019 21:52:21 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 394922A83; Sun, 24 Nov 2019 21:52:21 +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 xAOLqLii087406; Sun, 24 Nov 2019 21:52:21 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAOLqK1Y087404; Sun, 24 Nov 2019 21:52:20 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201911242152.xAOLqK1Y087404@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Sun, 24 Nov 2019 21:52:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518365 - branches/2019Q4/lang/php72 X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: branches/2019Q4/lang/php72 X-SVN-Commit-Revision: 518365 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.29 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, 24 Nov 2019 21:52:21 -0000 Author: tz Date: Sun Nov 24 21:52:20 2019 New Revision: 518365 URL: https://svnweb.freebsd.org/changeset/ports/518365 Log: MFH: r518169 lang/php72: Update from 7.2.24 to 7.2.25 Changelog: Core: Fixed bug #78656 (Parse errors classified as highest log-level). Fixed bug #78752 (Segfault if GC triggered while generator stack frame is being destroyed). Fixed bug #78689 (Closure::fromCallable() doesn't handle [Closure, '__invoke']). COM: Fixed bug #78694 (Appending to a variant array causes segfault). Date: Fixed bug #70153 (\DateInterval incorrectly unserialized). Fixed bug #78751 (Serialising DatePeriod converts DateTimeImmutable). Iconv: Fixed bug #78642 (Wrong libiconv version displayed). (gedas at martynas, cmb). OpCache: Fixed bug #78654 (Incorrectly computed opcache checksum on files with non-ascii characters). Fixed bug #78747 (OpCache corrupts custom extension result). OpenSSL: Fixed bug #78775 (TLS issues from HTTP request affecting other encrypted connections). Reflection: Fixed bug #78697 (ReflectionClass::ImplementsInterface - inaccurate error message with traits). Sockets: Fixed bug #78665 (Multicasting may leak memory). Changelog taken from: https://www.php.net/ChangeLog-7.php#7.2.25 Approved by: ports-secteam (joneum) Modified: branches/2019Q4/lang/php72/Makefile branches/2019Q4/lang/php72/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/lang/php72/Makefile ============================================================================== --- branches/2019Q4/lang/php72/Makefile Sun Nov 24 21:51:11 2019 (r518364) +++ branches/2019Q4/lang/php72/Makefile Sun Nov 24 21:52:20 2019 (r518365) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= php72 -DISTVERSION= 7.2.24 +DISTVERSION= 7.2.25 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: branches/2019Q4/lang/php72/distinfo ============================================================================== --- branches/2019Q4/lang/php72/distinfo Sun Nov 24 21:51:11 2019 (r518364) +++ branches/2019Q4/lang/php72/distinfo Sun Nov 24 21:52:20 2019 (r518365) @@ -1,3 +1,3 @@ -TIMESTAMP = 1571995585 -SHA256 (php-7.2.24.tar.xz) = a6a6cc03388060aa5f8f9e45799b72bce1c7ed7b9d7b3f1187787202aad91d25 -SIZE (php-7.2.24.tar.xz) = 12302284 +TIMESTAMP = 1574409107 +SHA256 (php-7.2.25.tar.xz) = 746efeedc38e6ff7b1ec1432440f5fa801537adf6cd21e4afb3f040e5b0760a9 +SIZE (php-7.2.25.tar.xz) = 12278980 From owner-svn-ports-branches@freebsd.org Mon Nov 25 09:28:59 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5B7831CE2B7; Mon, 25 Nov 2019 09:28:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47M1tz1rkcz4CLR; Mon, 25 Nov 2019 09:28:59 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 22CE8A900; Mon, 25 Nov 2019 09:28:59 +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 xAP9SwAv096312; Mon, 25 Nov 2019 09:28:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAP9SwDs096311; Mon, 25 Nov 2019 09:28:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201911250928.xAP9SwDs096311@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 25 Nov 2019 09:28:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518389 - in branches/2019Q4/textproc/py-elasticsearch6: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in branches/2019Q4/textproc/py-elasticsearch6: . files X-SVN-Commit-Revision: 518389 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.29 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, 25 Nov 2019 09:28:59 -0000 Author: sunpoet Date: Mon Nov 25 09:28:58 2019 New Revision: 518389 URL: https://svnweb.freebsd.org/changeset/ports/518389 Log: MFH: r517541 Fix build with py-urllib 1.25+ - Bump PORTREVISION for package change PR: 241874 Submitted by: kai Backport from: https://github.com/elastic/elasticsearch-py/commit/4c531c5cdbd5ba8b59be16c2fa15d5cf81d0a92f Approved by: ports-secteam (joneum) Added: branches/2019Q4/textproc/py-elasticsearch6/files/ - copied from r517541, head/textproc/py-elasticsearch6/files/ Modified: branches/2019Q4/textproc/py-elasticsearch6/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/textproc/py-elasticsearch6/Makefile ============================================================================== --- branches/2019Q4/textproc/py-elasticsearch6/Makefile Mon Nov 25 09:27:53 2019 (r518388) +++ branches/2019Q4/textproc/py-elasticsearch6/Makefile Mon Nov 25 09:28:58 2019 (r518389) @@ -3,6 +3,7 @@ PORTNAME= elasticsearch PORTVERSION= 6.4.0 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} From owner-svn-ports-branches@freebsd.org Mon Nov 25 09:32:19 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4AF891CE4E2; Mon, 25 Nov 2019 09:32:19 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47M1yq1CyXz4Cgj; Mon, 25 Nov 2019 09:32: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0E849AA9D; Mon, 25 Nov 2019 09:32: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 xAP9WI5Z002275; Mon, 25 Nov 2019 09:32:18 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAP9WIX9002273; Mon, 25 Nov 2019 09:32:18 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201911250932.xAP9WIX9002273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Mon, 25 Nov 2019 09:32:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518390 - branches/2019Q4/security/clamav X-SVN-Group: ports-branches X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: branches/2019Q4/security/clamav X-SVN-Commit-Revision: 518390 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.29 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, 25 Nov 2019 09:32:19 -0000 Author: joneum Date: Mon Nov 25 09:32:18 2019 New Revision: 518390 URL: https://svnweb.freebsd.org/changeset/ports/518390 Log: MFH: r518387 Update to 0.102.1 Changelog: https://blog.clamav.net/2019/11/clamav-01021-and-01015-patches-have.html PR: 242119 Submitted by: Yasuhiro KIMURA (maintainer) Security: 6ade62d9-0f62-11ea-9673-4c72b94353b5 Sponsored by: Netzkommune GmbH Approved by: ports-secteam (joneum) Modified: branches/2019Q4/security/clamav/Makefile branches/2019Q4/security/clamav/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/security/clamav/Makefile ============================================================================== --- branches/2019Q4/security/clamav/Makefile Mon Nov 25 09:28:58 2019 (r518389) +++ branches/2019Q4/security/clamav/Makefile Mon Nov 25 09:32:18 2019 (r518390) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= clamav -PORTVERSION= 0.101.4 +PORTVERSION= 0.102.1 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= https://www.clamav.net/downloads/production/ Modified: branches/2019Q4/security/clamav/distinfo ============================================================================== --- branches/2019Q4/security/clamav/distinfo Mon Nov 25 09:28:58 2019 (r518389) +++ branches/2019Q4/security/clamav/distinfo Mon Nov 25 09:32:18 2019 (r518390) @@ -1,3 +1,3 @@ -TIMESTAMP = 1566501172 -SHA256 (clamav-0.101.4.tar.gz) = 0bf094f0919d158a578421d66bc2569c8c8181233ba162bb51722f98c802bccd -SIZE (clamav-0.101.4.tar.gz) = 21408145 +TIMESTAMP = 1574671743 +SHA256 (clamav-0.102.1.tar.gz) = 0dbda8d0d990d068732966f13049d112a26dce62145d234383467c1d877dedd6 +SIZE (clamav-0.102.1.tar.gz) = 13215586 From owner-svn-ports-branches@freebsd.org Mon Nov 25 11:13:36 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 226731A8E2E; Mon, 25 Nov 2019 11:13:36 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47M4Ch01wkz4JkR; Mon, 25 Nov 2019 11:13:36 +0000 (UTC) (envelope-from fluffy@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B396FBEA1; Mon, 25 Nov 2019 11:13:35 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAPBDZDp070079; Mon, 25 Nov 2019 11:13:35 GMT (envelope-from fluffy@FreeBSD.org) Received: (from fluffy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAPBDZ29070076; Mon, 25 Nov 2019 11:13:35 GMT (envelope-from fluffy@FreeBSD.org) Message-Id: <201911251113.xAPBDZ29070076@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fluffy set sender to fluffy@FreeBSD.org using -f From: Dima Panov Date: Mon, 25 Nov 2019 11:13:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518398 - branches/2019Q4/security/botan2 X-SVN-Group: ports-branches X-SVN-Commit-Author: fluffy X-SVN-Commit-Paths: branches/2019Q4/security/botan2 X-SVN-Commit-Revision: 518398 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.29 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, 25 Nov 2019 11:13:36 -0000 Author: fluffy Date: Mon Nov 25 11:13:34 2019 New Revision: 518398 URL: https://svnweb.freebsd.org/changeset/ports/518398 Log: MFH: r518379 - Update botan to 2.12.1 security release - OPTIONify python dependency PR: 242194 Submitted by: fluffy Approved by: maintainer Approved by: ports-secteam (joneum) Modified: branches/2019Q4/security/botan2/Makefile branches/2019Q4/security/botan2/distinfo branches/2019Q4/security/botan2/pkg-plist Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/security/botan2/Makefile ============================================================================== --- branches/2019Q4/security/botan2/Makefile Mon Nov 25 11:01:43 2019 (r518397) +++ branches/2019Q4/security/botan2/Makefile Mon Nov 25 11:13:34 2019 (r518398) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= botan -DISTVERSION= 2.11.0 +DISTVERSION= 2.12.1 CATEGORIES= security MASTER_SITES= http://botan.randombit.net/releases/ PKGNAMESUFFIX= 2 @@ -17,10 +17,10 @@ BROKEN_armv6= include/arm_neon.h:28:2: error: "NEON su LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs -USES= compiler:c++11-lang gmake python:build shebangfix tar:xz +USES= compiler:c++11-lang gmake shebangfix tar:xz USE_LDCONFIG= yes -SHEBANG_FILES= configure.py src/scripts/install.py +SHEBANG_FILES= configure.py src/python/botan2.py src/scripts/install.py HAS_CONFIGURE= yes CONFIGURE_SCRIPT= configure.py @@ -39,10 +39,15 @@ _SHLIBVER= ${DISTVERSION:S/./ /g:[2]} PLIST_SUB= SHLIBVER=${_SHLIBVER} PORTDOCS= * -OPTIONS_DEFINE= DOCS SQLITE3 SSL +OPTIONS_DEFINE= DOCS PYTHON SQLITE3 SSL OPTIONS_DEFAULT= SSL OPTIONS_SUB= yes +PYTHON_USES= python +PYTHON_USES_OFF= python:build +PYTHON_CONFIGURE_ON= --with-python-versions=${PYTHON_VER} +PYTHON_CONFIGURE_OFF= --no-install-python-module + SQLITE3_USES= sqlite SQLITE3_CONFIGURE_WITH= sqlite3 @@ -70,6 +75,6 @@ post-patch: ${WRKSRC}/src/build-data/cc/clang.txt post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/botan ${STAGEDIR}${PREFIX}/lib/libbotan-2.so.${_SHLIBVER}.${_SHLIBVER}.0 + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/botan ${STAGEDIR}${PREFIX}/lib/libbotan-2.so.${_SHLIBVER}.${_SHLIBVER}.1 .include Modified: branches/2019Q4/security/botan2/distinfo ============================================================================== --- branches/2019Q4/security/botan2/distinfo Mon Nov 25 11:01:43 2019 (r518397) +++ branches/2019Q4/security/botan2/distinfo Mon Nov 25 11:13:34 2019 (r518398) @@ -1,3 +1,3 @@ -TIMESTAMP = 1568364010 -SHA256 (Botan-2.11.0.tar.xz) = f7874da2aeb8c018fd77df40b2137879bf90b66f5589490c991e83fb3e8094be -SIZE (Botan-2.11.0.tar.xz) = 5765712 +TIMESTAMP = 1574608870 +SHA256 (Botan-2.12.1.tar.xz) = 7e035f142a51fca1359705792627a282456d49749bf62a37a8e48375d41baaa9 +SIZE (Botan-2.12.1.tar.xz) = 5844528 Modified: branches/2019Q4/security/botan2/pkg-plist ============================================================================== --- branches/2019Q4/security/botan2/pkg-plist Mon Nov 25 11:01:43 2019 (r518397) +++ branches/2019Q4/security/botan2/pkg-plist Mon Nov 25 11:13:34 2019 (r518398) @@ -316,6 +316,6 @@ include/botan-2/botan/zlib.h lib/libbotan-2.a lib/libbotan-2.so lib/libbotan-2.so.%%SHLIBVER%% -lib/libbotan-2.so.%%SHLIBVER%%.%%SHLIBVER%%.0 -%%PYTHON_SITELIBDIR%%/botan2.py +lib/libbotan-2.so.%%SHLIBVER%%.%%SHLIBVER%%.1 +%%PYTHON%%%%PYTHON_SITELIBDIR%%/botan2.py libdata/pkgconfig/botan-2.pc From owner-svn-ports-branches@freebsd.org Mon Nov 25 18:48:43 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DAD8D1B6196; Mon, 25 Nov 2019 18:48:43 +0000 (UTC) (envelope-from garga.bsd@gmail.com) Received: from mail-qk1-x72f.google.com (mail-qk1-x72f.google.com [IPv6:2607:f8b0:4864:20::72f]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47MGJp638gz3JCN; Mon, 25 Nov 2019 18:48:42 +0000 (UTC) (envelope-from garga.bsd@gmail.com) Received: by mail-qk1-x72f.google.com with SMTP id c124so9318292qkg.0; Mon, 25 Nov 2019 10:48:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:subject:to:references:from:message-id:date:user-agent :mime-version:in-reply-to:content-language:content-transfer-encoding; bh=CrOqqfkSWXFfsuECBPcKYY8FUKYDabAUGuIMniNQJVY=; b=TL1RmGJ2Mo/qO2g3vqc53unMhmv6P27aEN2Z0NDL116aadiXJ8T6bnuiGyilwtp6Xd y3Tr35h3tLc4p8UNNHD127egc79l3/bE1IkoK5V0X5ERnNmuBmeKbFTbIn+F7NZ4DPzs cuUoa1q/a8DBa3UP8hNjveh+V7siLBHb2+z9gx/FiRMJavnb2LJHMovXjFQcKXZAAtHm cD6ljVPZwn+/3nqmNcM/TNrWacoyHkgpN+e8buS3ODQaO5qO3DI9afFRumX2NZDb6hHe 1rTrCgUkLZOwHWxVJMCcTBlhq84cTVeUzLQe5d5F0fYn5TX5VaCWu9TcZ75FvFkuy1Qp l0+A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:subject:to:references:from:message-id :date:user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=CrOqqfkSWXFfsuECBPcKYY8FUKYDabAUGuIMniNQJVY=; b=ouMZQcGOrbVMluxNFUVVYah53k+W8FpS74rEpIqahA54X4svtgARHAQH7LIqIJTcXs F7OMEB0WYEH2pEaNwRYEazdzyG/Y970QKcDR4SrhDE1Mix5+VNUsY0P6U1uqN0eO0Hq0 9xj4Lcyt+r1dIiSXyngTh9FIhHFVxIARER9opUJebI7uYBMvC12z6pJR8Sv++eE4WB7i kyL0wiNdUKw4tLmKXsRY2BJUxwCZXdma8U8dxMmojHf06xlfd43uszFjosxJH8vdaSAu AvOo9mmiNAzXv3i/B2TYhGh+O4dh9dA33Gxfkn9FZn5UoaQKO+pPhUmQg0R6z5HWHCtU Liog== X-Gm-Message-State: APjAAAW4b2fkuV8n2sITz5Zw56fPPBCP9Vwqy23B5QocFFWHBW5woM1K FtTg8foK8iZAjXmS02gaF1B3HJOoVhI= X-Google-Smtp-Source: APXvYqwa6hMPFFKOCWzb87gQds4E8qD4rNsNZiZTgoAUKAmPf73Z916QCjN/k+Fn9MJsg7SAT8jqGw== X-Received: by 2002:a05:620a:159b:: with SMTP id d27mr19357817qkk.381.1574707721498; Mon, 25 Nov 2019 10:48:41 -0800 (PST) Received: from mbp.home (177-53-82-16.telecominternet.com.br. [177.53.82.16]) by smtp.gmail.com with ESMTPSA id f21sm3752762qkl.34.2019.11.25.10.48.39 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 25 Nov 2019 10:48:40 -0800 (PST) Sender: Renato Botelho Subject: Re: svn commit: r518390 - branches/2019Q4/security/clamav To: Jochen Neumeister , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org References: <201911250932.xAP9WIX9002273@repo.freebsd.org> From: Renato Botelho Message-ID: <1f986cf6-6533-edd2-86d0-3781cc86a92e@FreeBSD.org> Date: Mon, 25 Nov 2019 15:48:36 -0300 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:71.0) Gecko/20100101 Thunderbird/71.0 MIME-Version: 1.0 In-Reply-To: <201911250932.xAP9WIX9002273@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 47MGJp638gz3JCN X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=TL1RmGJ2; dmarc=none; spf=pass (mx1.freebsd.org: domain of gargabsd@gmail.com designates 2607:f8b0:4864:20::72f as permitted sender) smtp.mailfrom=gargabsd@gmail.com X-Spamd-Result: default: False [-4.94 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; MID_RHS_MATCH_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36:c]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[FreeBSD.org]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; TO_DN_SOME(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; IP_SCORE(-2.74)[ip: (-9.40), ipnet: 2607:f8b0::/32(-2.27), asn: 15169(-1.96), country: US(-0.05)]; DKIM_TRACE(0.00)[gmail.com:+]; RCVD_IN_DNSWL_NONE(0.00)[f.2.7.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.b.8.f.7.0.6.2.list.dnswl.org : 127.0.5.0]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FORGED_SENDER(0.30)[garga@FreeBSD.org,gargabsd@gmail.com]; MIME_TRACE(0.00)[0:+]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; TAGGED_FROM(0.00)[]; FROM_NEQ_ENVFROM(0.00)[garga@FreeBSD.org,gargabsd@gmail.com] X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 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, 25 Nov 2019 18:48:43 -0000 On 25/11/19 06:32, Jochen Neumeister wrote: > Author: joneum > Date: Mon Nov 25 09:32:18 2019 > New Revision: 518390 > URL: https://svnweb.freebsd.org/changeset/ports/518390 > > Log: > MFH: r518387 > > Update to 0.102.1 > > Changelog: https://blog.clamav.net/2019/11/clamav-01021-and-01015-patches-have.html > > PR: 242119 > Submitted by: Yasuhiro KIMURA (maintainer) > Security: 6ade62d9-0f62-11ea-9673-4c72b94353b5 > Sponsored by: Netzkommune GmbH > > Approved by: ports-secteam (joneum) > > Modified: > branches/2019Q4/security/clamav/Makefile > branches/2019Q4/security/clamav/distinfo > Directory Properties: > branches/2019Q4/ (props changed) This commit broke clamav on quarterly branch. Changes made in r517347 when port went to 0.102.0 are needed too or at least PLIST is broke -- Renato Botelho From owner-svn-ports-branches@freebsd.org Tue Nov 26 02:00:19 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3265B1C2511; Tue, 26 Nov 2019 02:00:19 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47MRtq0XKzz4CZ5; Tue, 26 Nov 2019 02:00:19 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E9A3D1DE15; Tue, 26 Nov 2019 02:00:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAQ20IOt002724; Tue, 26 Nov 2019 02:00:18 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAQ20Iwg002722; Tue, 26 Nov 2019 02:00:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201911260200.xAQ20Iwg002722@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 26 Nov 2019 02:00:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518441 - in branches/2019Q4/security/theonionbox: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in branches/2019Q4/security/theonionbox: . files X-SVN-Commit-Revision: 518441 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.29 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, 26 Nov 2019 02:00:19 -0000 Author: yuri Date: Tue Nov 26 02:00:18 2019 New Revision: 518441 URL: https://svnweb.freebsd.org/changeset/ports/518441 Log: MFH: r518295 security/theonionbox: Unbreak at runtime and prepare for urllib3 1.25.6 PR: 241827 Submitted by: kai Approved by: ports-secteam@FreeBSD.org Added: branches/2019Q4/security/theonionbox/files/patch-theonionbox_theonionbox.py - copied unchanged from r518295, head/security/theonionbox/files/patch-theonionbox_theonionbox.py Modified: branches/2019Q4/security/theonionbox/Makefile branches/2019Q4/security/theonionbox/files/patch-setup.py Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/security/theonionbox/Makefile ============================================================================== --- branches/2019Q4/security/theonionbox/Makefile Tue Nov 26 01:52:57 2019 (r518440) +++ branches/2019Q4/security/theonionbox/Makefile Tue Nov 26 02:00:18 2019 (r518441) @@ -2,7 +2,7 @@ PORTNAME= theonionbox DISTVERSION= 4.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security net python MASTER_SITES= CHEESESHOP Modified: branches/2019Q4/security/theonionbox/files/patch-setup.py ============================================================================== --- branches/2019Q4/security/theonionbox/files/patch-setup.py Tue Nov 26 01:52:57 2019 (r518440) +++ branches/2019Q4/security/theonionbox/files/patch-setup.py Tue Nov 26 02:00:18 2019 (r518441) @@ -1,4 +1,4 @@ ---- setup.py.orig 2019-05-11 04:02:35 UTC +--- setup.py.orig 2019-05-10 21:59:01 UTC +++ setup.py @@ -295,19 +295,9 @@ package_data_exclude = { } @@ -23,3 +23,16 @@ ] # print(generate_data_files(data_files)) +@@ -381,10 +371,10 @@ setup( + 'requests>=2.21', + 'PySocks>=1.6.7', + 'bottle>=0.12.13', +- 'stem>=1.5.4, <=1.6', ++ 'stem>=1.5.4', + 'tzlocal>=1.5', + 'futures>=3.2; python_version<"3.0"', +- 'urllib3>=1.24.2, <1.25' # '<1.25' due to requests 2.21 requirement ++ 'urllib3>=1.21.1,<1.26' # copied (except the exclusions) from requests 2.22 + ], + long_description_content_type='text/x-rst; charset=UTF-8', + classifiers=[ Copied: branches/2019Q4/security/theonionbox/files/patch-theonionbox_theonionbox.py (from r518295, head/security/theonionbox/files/patch-theonionbox_theonionbox.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q4/security/theonionbox/files/patch-theonionbox_theonionbox.py Tue Nov 26 02:00:18 2019 (r518441, copy of r518295, head/security/theonionbox/files/patch-theonionbox_theonionbox.py) @@ -0,0 +1,20 @@ +--- theonionbox/theonionbox.py.orig 2019-11-09 13:37:29 UTC ++++ theonionbox/theonionbox.py +@@ -513,7 +513,7 @@ required_modules = { + 'info': "Check 'https://pypi.python.org/pypi/psutil' for installation instructions." + }, + 'stem': { +- 'version': '>=1.5.4, <=1.6' ++ 'version': '>=1.5.4' + }, + 'bottle': { + 'version': '>=0.12.13' +@@ -539,7 +539,7 @@ required_modules = { + 'version': '>=3.2; python_version<"3.0"' + }, + 'urllib3': { +- 'version': '>=1.24.2, <1.25' ++ 'version': '>=1.21.1,<1.26' #copied (except the exclusions) from requests 2.22 + } + } + From owner-svn-ports-branches@freebsd.org Tue Nov 26 07:12:46 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 82C091AC33E; Tue, 26 Nov 2019 07:12:46 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47MZqL2yKZz4TnS; Tue, 26 Nov 2019 07:12:46 +0000 (UTC) (envelope-from antoine@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 48E142189D; Tue, 26 Nov 2019 07:12:46 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAQ7Ckaw090689; Tue, 26 Nov 2019 07:12:46 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAQ7CjBr090687; Tue, 26 Nov 2019 07:12:45 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201911260712.xAQ7CjBr090687@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 26 Nov 2019 07:12:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518449 - branches/2019Q4/security/clamav X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q4/security/clamav X-SVN-Commit-Revision: 518449 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.29 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, 26 Nov 2019 07:12:46 -0000 Author: antoine Date: Tue Nov 26 07:12:45 2019 New Revision: 518449 URL: https://svnweb.freebsd.org/changeset/ports/518449 Log: Revert r518390 Reported by: pkg-fallout Modified: branches/2019Q4/security/clamav/Makefile branches/2019Q4/security/clamav/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/security/clamav/Makefile ============================================================================== --- branches/2019Q4/security/clamav/Makefile Tue Nov 26 05:42:59 2019 (r518448) +++ branches/2019Q4/security/clamav/Makefile Tue Nov 26 07:12:45 2019 (r518449) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= clamav -PORTVERSION= 0.102.1 +PORTVERSION= 0.101.4 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= https://www.clamav.net/downloads/production/ Modified: branches/2019Q4/security/clamav/distinfo ============================================================================== --- branches/2019Q4/security/clamav/distinfo Tue Nov 26 05:42:59 2019 (r518448) +++ branches/2019Q4/security/clamav/distinfo Tue Nov 26 07:12:45 2019 (r518449) @@ -1,3 +1,3 @@ -TIMESTAMP = 1574671743 -SHA256 (clamav-0.102.1.tar.gz) = 0dbda8d0d990d068732966f13049d112a26dce62145d234383467c1d877dedd6 -SIZE (clamav-0.102.1.tar.gz) = 13215586 +TIMESTAMP = 1566501172 +SHA256 (clamav-0.101.4.tar.gz) = 0bf094f0919d158a578421d66bc2569c8c8181233ba162bb51722f98c802bccd +SIZE (clamav-0.101.4.tar.gz) = 21408145 From owner-svn-ports-branches@freebsd.org Tue Nov 26 09:27:52 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3036F1AFD3B; Tue, 26 Nov 2019 09:27:52 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47MdqD0HpWz4bWN; Tue, 26 Nov 2019 09:27: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E0FBE23017; Tue, 26 Nov 2019 09:27: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 xAQ9RpF8067097; Tue, 26 Nov 2019 09:27:51 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAQ9RouH067092; Tue, 26 Nov 2019 09:27:50 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201911260927.xAQ9RouH067092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 26 Nov 2019 09:27:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518455 - in branches/2019Q4: . security security/clamav security/clamav-milter X-SVN-Group: ports-branches X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: in branches/2019Q4: . security security/clamav security/clamav-milter X-SVN-Commit-Revision: 518455 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.29 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, 26 Nov 2019 09:27:52 -0000 Author: joneum Date: Tue Nov 26 09:27:50 2019 New Revision: 518455 URL: https://svnweb.freebsd.org/changeset/ports/518455 Log: Update to 0.102.1 Changelog: https://blog.clamav.net/2019/11/clamav-01021-and-01015-patches-have.html PR: 242119 Submitted by: Yasuhiro KIMURA (maintainer) Approved by: ports-secteam (joneum) Security: 6ade62d9-0f62-11ea-9673-4c72b94353b5 Sponsored by: Netzkommune GmbH Deleted: branches/2019Q4/security/clamav-milter/ Modified: branches/2019Q4/MOVED branches/2019Q4/security/Makefile branches/2019Q4/security/clamav/Makefile branches/2019Q4/security/clamav/distinfo branches/2019Q4/security/clamav/pkg-plist Modified: branches/2019Q4/MOVED ============================================================================== --- branches/2019Q4/MOVED Tue Nov 26 08:25:01 2019 (r518454) +++ branches/2019Q4/MOVED Tue Nov 26 09:27:50 2019 (r518455) @@ -13043,3 +13043,4 @@ sysutils/py-azure-cli-sqlvm|sysutils/py-azure-cli|2019 sysutils/py-azure-cli-storage|sysutils/py-azure-cli|2019-09-30|Has expired: Incorporated into azure-cli package sysutils/py-azure-cli-vm|sysutils/py-azure-cli|2019-09-30|Has expired: Incorporated into azure-cli package x11-toolkits/qt5-canvas3d||2019-10-01|Has been deprecated upstream +security/clamav-milter|security/clamav|2019-11-12|Now that MILTER option is enabled by default, use security/clamav instead Modified: branches/2019Q4/security/Makefile ============================================================================== --- branches/2019Q4/security/Makefile Tue Nov 26 08:25:01 2019 (r518454) +++ branches/2019Q4/security/Makefile Tue Nov 26 09:27:50 2019 (r518455) @@ -87,7 +87,6 @@ SUBDIR += cl-md5-sbcl SUBDIR += clamassassin SUBDIR += clamav - SUBDIR += clamav-milter SUBDIR += clamav-unofficial-sigs SUBDIR += clamd-stream-client SUBDIR += clamfs Modified: branches/2019Q4/security/clamav/Makefile ============================================================================== --- branches/2019Q4/security/clamav/Makefile Tue Nov 26 08:25:01 2019 (r518454) +++ branches/2019Q4/security/clamav/Makefile Tue Nov 26 09:27:50 2019 (r518455) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= clamav -PORTVERSION= 0.101.4 +PORTVERSION= 0.102.1 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= https://www.clamav.net/downloads/production/ @@ -45,8 +45,6 @@ CPPFLAGS+= -I${LOCALBASE}/include # force to use -lthr until it's not fixed. LDFLAGS+= -lthr -L${LOCALBASE}/lib -CONFLICTS?= clamav-milter-[0-9]* - SUB_FILES= pkg-deinstall SUB_LIST+= DBDIR=${DBDIR} \ LOGDIR=${LOGDIR} \ @@ -62,23 +60,22 @@ SUB_LIST+= DBDIR=${DBDIR} \ PLIST_SUB+= CLAMAVUSER=${CLAMAVUSER} \ CLAMAVGROUP=${CLAMAVGROUP} -OPTIONS_DEFINE= ARC ARJ LHA UNZOO UNRAR TESTS MILTER MSPACK LDAP ICONV STDERR \ - EXPERIMENTAL DOCS IPV6 DMG_XAR JSON PCRE +OPTIONS_DEFINE= ARC ARJ DOCS DMG_XAR EXPERIMENTAL JSON LDAP ICONV IPV6 \ + LHA MILTER MSPACK PCRE STDERR TESTS UNZOO UNRAR -OPTIONS_DEFAULT= ARC ARJ UNZOO UNRAR DMG_XAR \ - JSON PCRE MSPACK +OPTIONS_DEFAULT= ARC ARJ DMG_XAR JSON MILTER PCRE UNZOO UNRAR OPTIONS_SUB= yes ARC_DESC= Enable arch archives support ARJ_DESC= Enable arj archives support +DMG_XAR_DESC= Enable DMG and XAR archives support +EXPERIMENTAL_DESC= Build experimental code LHA_DESC= Enable lha archives support -UNZOO_DESC= Enable zoo archives support -TESTS_DESC= Run compile-time tests (req. python) MILTER_DESC= Compile the milter interface MSPACK_DESC= Get mspack support from ports (otherwise use bundled) STDERR_DESC= Print logs to stderr instead of stdout -EXPERIMENTAL_DESC= Build experimental code -DMG_XAR_DESC= Enable DMG and XAR archives support +TESTS_DESC= Run compile-time tests (req. python) +UNZOO_DESC= Enable zoo archives support ARC_RUN_DEPENDS= arc:archivers/arc ARJ_RUN_DEPENDS= arj:archivers/arj Modified: branches/2019Q4/security/clamav/distinfo ============================================================================== --- branches/2019Q4/security/clamav/distinfo Tue Nov 26 08:25:01 2019 (r518454) +++ branches/2019Q4/security/clamav/distinfo Tue Nov 26 09:27:50 2019 (r518455) @@ -1,3 +1,3 @@ -TIMESTAMP = 1566501172 -SHA256 (clamav-0.101.4.tar.gz) = 0bf094f0919d158a578421d66bc2569c8c8181233ba162bb51722f98c802bccd -SIZE (clamav-0.101.4.tar.gz) = 21408145 +TIMESTAMP = 1574671743 +SHA256 (clamav-0.102.1.tar.gz) = 0dbda8d0d990d068732966f13049d112a26dce62145d234383467c1d877dedd6 +SIZE (clamav-0.102.1.tar.gz) = 13215586 Modified: branches/2019Q4/security/clamav/pkg-plist ============================================================================== --- branches/2019Q4/security/clamav/pkg-plist Tue Nov 26 08:25:01 2019 (r518454) +++ branches/2019Q4/security/clamav/pkg-plist Tue Nov 26 09:27:50 2019 (r518455) @@ -39,10 +39,10 @@ %%PORTDOCS%%%%DOCSDIR%%/html/UserManual/libclamav.html %%UNRAR%%lib/libclamunrar.so %%UNRAR%%lib/libclamunrar.so.9 -%%UNRAR%%lib/libclamunrar.so.9.0.2 +%%UNRAR%%lib/libclamunrar.so.9.0.4 %%UNRAR%%lib/libclamunrar_iface.so %%UNRAR%%lib/libclamunrar_iface.so.9 -%%UNRAR%%lib/libclamunrar_iface.so.9.0.2 +%%UNRAR%%lib/libclamunrar_iface.so.9.0.4 @dir(%%CLAMAVUSER%%,%%CLAMAVGROUP%%,0755) %%DBDIR%% @dir(%%CLAMAVUSER%%,%%CLAMAVGROUP%%,0755) %%LOGDIR%% @dir(%%CLAMAVUSER%%,%%CLAMAVGROUP%%,0755) %%RUNDIR%% @@ -58,10 +58,15 @@ bin/freshclam bin/sigtool include/clamav-config.h include/clamav-types.h +include/clamav-version.h include/clamav.h +include/libfreshclam.h lib/libclamav.so lib/libclamav.so.9 -lib/libclamav.so.9.0.2 +lib/libclamav.so.9.0.4 +lib/libfreshclam.so +lib/libfreshclam.so.2 +lib/libfreshclam.so.2.0.0 libdata/pkgconfig/libclamav.pc man/man1/clambc.1.gz man/man1/clamconf.1.gz From owner-svn-ports-branches@freebsd.org Tue Nov 26 17:45:36 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2581E1BD204; Tue, 26 Nov 2019 17:45:36 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47MrsX09tcz44sq; Tue, 26 Nov 2019 17:45:36 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DCBF5994; Tue, 26 Nov 2019 17:45:35 +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 xAQHjZVF061047; Tue, 26 Nov 2019 17:45:35 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAQHjZD9061043; Tue, 26 Nov 2019 17:45:35 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201911261745.xAQHjZD9061043@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 26 Nov 2019 17:45:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518475 - branches/2019Q4/www/phpmustache X-SVN-Group: ports-branches X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: branches/2019Q4/www/phpmustache X-SVN-Commit-Revision: 518475 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.29 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, 26 Nov 2019 17:45:36 -0000 Author: joneum Date: Tue Nov 26 17:45:35 2019 New Revision: 518475 URL: https://svnweb.freebsd.org/changeset/ports/518475 Log: MFH: r518474 Update to 2.13.0 Give Maintainership to Submitter Changelog: https://github.com/bobthecow/mustache.php/releases/tag/v2.13.0 PR: 242216 Submitted by: Marc Veldman (new Maintainer) Sponsored by: Netzkommune GmbH Approved by: ports-secteam (joneum) Modified: branches/2019Q4/www/phpmustache/Makefile branches/2019Q4/www/phpmustache/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/phpmustache/Makefile ============================================================================== --- branches/2019Q4/www/phpmustache/Makefile Tue Nov 26 17:43:42 2019 (r518474) +++ branches/2019Q4/www/phpmustache/Makefile Tue Nov 26 17:45:35 2019 (r518475) @@ -2,21 +2,21 @@ # $FreeBSD$ PORTNAME= phpmustache -PORTVERSION= 2.12.0 +PORTVERSION= 2.13.0 DISTVERSIONPREFIX= v CATEGORIES= www -MAINTAINER= ports@FreeBSD.org +MAINTAINER= marc@bumblingdork.com COMMENT= PHP5 code for Mustache LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +USES= php:build USE_GITHUB= yes GH_ACCOUNT= bobthecow GH_PROJECT= mustache.php -USES= php:build NO_ARCH= yes SUB_FILES= pkg-message Modified: branches/2019Q4/www/phpmustache/distinfo ============================================================================== --- branches/2019Q4/www/phpmustache/distinfo Tue Nov 26 17:43:42 2019 (r518474) +++ branches/2019Q4/www/phpmustache/distinfo Tue Nov 26 17:45:35 2019 (r518475) @@ -1,3 +1,3 @@ -TIMESTAMP = 1503552380 -SHA256 (bobthecow-mustache.php-v2.12.0_GH0.tar.gz) = 761224a7fbca7165ce58893ba21463abea068ddaa1a0b5080554d7430a082c2a -SIZE (bobthecow-mustache.php-v2.12.0_GH0.tar.gz) = 59902 +TIMESTAMP = 1574789390 +SHA256 (bobthecow-mustache.php-v2.13.0_GH0.tar.gz) = 149583cc0c01b80af4131cb36690206c79696d9872fac71bd5dd0fb6e9422a55 +SIZE (bobthecow-mustache.php-v2.13.0_GH0.tar.gz) = 60015 From owner-svn-ports-branches@freebsd.org Wed Nov 27 19:31:36 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 145AF1B5C20; Wed, 27 Nov 2019 19:31:36 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NW9M6Xbyz4SSN; Wed, 27 Nov 2019 19:31:35 +0000 (UTC) (envelope-from kwm@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C52401A459; Wed, 27 Nov 2019 19:31:35 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARJVZRu072030; Wed, 27 Nov 2019 19:31:35 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARJVZbe072028; Wed, 27 Nov 2019 19:31:35 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201911271931.xARJVZbe072028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Wed, 27 Nov 2019 19:31:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518524 - branches/2019Q4/www/webkit2-gtk3 X-SVN-Group: ports-branches X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: branches/2019Q4/www/webkit2-gtk3 X-SVN-Commit-Revision: 518524 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.29 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, 27 Nov 2019 19:31:36 -0000 Author: kwm Date: Wed Nov 27 19:31:34 2019 New Revision: 518524 URL: https://svnweb.freebsd.org/changeset/ports/518524 Log: MFH: r518508 Update webkit2-gtk3 to 2.26.2. Security: 3e748551-c732-45f6-bd88-928da16f23a8 Approved by: ports-secteam (joneum@) Modified: branches/2019Q4/www/webkit2-gtk3/Makefile branches/2019Q4/www/webkit2-gtk3/distinfo branches/2019Q4/www/webkit2-gtk3/pkg-plist Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/webkit2-gtk3/Makefile ============================================================================== --- branches/2019Q4/www/webkit2-gtk3/Makefile Wed Nov 27 19:27:37 2019 (r518523) +++ branches/2019Q4/www/webkit2-gtk3/Makefile Wed Nov 27 19:31:34 2019 (r518524) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= webkit -PORTVERSION= 2.26.1 +PORTVERSION= 2.26.2 CATEGORIES= www MASTER_SITES= https://webkitgtk.org/releases/ PKGNAMESUFFIX= 2-gtk3 Modified: branches/2019Q4/www/webkit2-gtk3/distinfo ============================================================================== --- branches/2019Q4/www/webkit2-gtk3/distinfo Wed Nov 27 19:27:37 2019 (r518523) +++ branches/2019Q4/www/webkit2-gtk3/distinfo Wed Nov 27 19:31:34 2019 (r518524) @@ -1,3 +1,3 @@ -TIMESTAMP = 1569330516 -SHA256 (gnome/webkitgtk-2.26.1.tar.xz) = 6b4b21801d2b1008422a1075dbd6fb4ae8b5127503faf657cf9671289d9cd155 -SIZE (gnome/webkitgtk-2.26.1.tar.xz) = 19327444 +TIMESTAMP = 1574792040 +SHA256 (gnome/webkitgtk-2.26.2.tar.xz) = 6b80f0637a80818559ac8fd50db3b394f41cb61904fb9b3ed65fa51635806512 +SIZE (gnome/webkitgtk-2.26.2.tar.xz) = 19330000 Modified: branches/2019Q4/www/webkit2-gtk3/pkg-plist ============================================================================== --- branches/2019Q4/www/webkit2-gtk3/pkg-plist Wed Nov 27 19:27:37 2019 (r518523) +++ branches/2019Q4/www/webkit2-gtk3/pkg-plist Wed Nov 27 19:31:34 2019 (r518524) @@ -214,10 +214,10 @@ lib/girepository-1.0/WebKit2-4.0.typelib lib/girepository-1.0/WebKit2WebExtension-4.0.typelib lib/libjavascriptcoregtk-4.0.so lib/libjavascriptcoregtk-4.0.so.18 -lib/libjavascriptcoregtk-4.0.so.18.14.6 +lib/libjavascriptcoregtk-4.0.so.18.14.7 lib/libwebkit2gtk-4.0.so lib/libwebkit2gtk-4.0.so.37 -lib/libwebkit2gtk-4.0.so.37.39.2 +lib/libwebkit2gtk-4.0.so.37.39.3 lib/webkit2gtk-4.0/injected-bundle/libwebkit2gtkinjectedbundle.so libdata/pkgconfig/javascriptcoregtk-4.0.pc libdata/pkgconfig/webkit2gtk-4.0.pc From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:26:37 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DA29C1B750B; Wed, 27 Nov 2019 20:26:37 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXNs4p0tz4XCX; Wed, 27 Nov 2019 20:26:37 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 881CA1AE0C; Wed, 27 Nov 2019 20:26:37 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKQbkB008476; Wed, 27 Nov 2019 20:26:37 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKQbE6008474; Wed, 27 Nov 2019 20:26:37 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272026.xARKQbE6008474@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:26:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518534 - in branches/2019Q4: devel devel/rubygem-google-protobuf38 mail mail/rubygem-premailer-rails-rails52 textproc textproc/rubygem-diff_match_patch X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in branches/2019Q4: devel devel/rubygem-google-protobuf38 mail mail/rubygem-premailer-rails-rails52 textproc textproc/rubygem-diff_match_patch X-SVN-Commit-Revision: 518534 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.29 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, 27 Nov 2019 20:26:37 -0000 Author: mfechner Date: Wed Nov 27 20:26:36 2019 New Revision: 518534 URL: https://svnweb.freebsd.org/changeset/ports/518534 Log: MFH: r518149 New ports required for gitlab-ce 12.5. Approved by: ports-secteam (joneum) Added: branches/2019Q4/devel/rubygem-google-protobuf38/ - copied from r518149, head/devel/rubygem-google-protobuf38/ branches/2019Q4/mail/rubygem-premailer-rails-rails52/ - copied from r518149, head/mail/rubygem-premailer-rails-rails52/ branches/2019Q4/textproc/rubygem-diff_match_patch/ - copied from r518149, head/textproc/rubygem-diff_match_patch/ Modified: branches/2019Q4/devel/Makefile branches/2019Q4/mail/Makefile branches/2019Q4/textproc/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/devel/Makefile ============================================================================== --- branches/2019Q4/devel/Makefile Wed Nov 27 20:00:32 2019 (r518533) +++ branches/2019Q4/devel/Makefile Wed Nov 27 20:26:36 2019 (r518534) @@ -5887,6 +5887,7 @@ SUBDIR += rubygem-google-gax SUBDIR += rubygem-google-protobuf SUBDIR += rubygem-google-protobuf371 + SUBDIR += rubygem-google-protobuf38 SUBDIR += rubygem-googleapis-common-protos SUBDIR += rubygem-googleapis-common-protos-types SUBDIR += rubygem-graf Modified: branches/2019Q4/mail/Makefile ============================================================================== --- branches/2019Q4/mail/Makefile Wed Nov 27 20:00:32 2019 (r518533) +++ branches/2019Q4/mail/Makefile Wed Nov 27 20:26:36 2019 (r518534) @@ -622,6 +622,7 @@ SUBDIR += rubygem-premailer SUBDIR += rubygem-premailer-rails SUBDIR += rubygem-premailer-rails-rails5 + SUBDIR += rubygem-premailer-rails-rails52 SUBDIR += rubygem-premailer-rails19-rails5 SUBDIR += rubygem-premailer-rails19-rails52 SUBDIR += rubygem-rmail Modified: branches/2019Q4/textproc/Makefile ============================================================================== --- branches/2019Q4/textproc/Makefile Wed Nov 27 20:00:32 2019 (r518533) +++ branches/2019Q4/textproc/Makefile Wed Nov 27 20:26:36 2019 (r518534) @@ -1522,6 +1522,7 @@ SUBDIR += rubygem-css_parser SUBDIR += rubygem-cssmin SUBDIR += rubygem-diff-lcs + SUBDIR += rubygem-diff_match_patch SUBDIR += rubygem-diffy SUBDIR += rubygem-diffy31 SUBDIR += rubygem-docdiff From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:29:02 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id ADDBE1B7585; Wed, 27 Nov 2019 20:29:02 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXRf47jnz4XKQ; Wed, 27 Nov 2019 20:29:02 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 714B01AE25; Wed, 27 Nov 2019 20:29:02 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKT21Z008737; Wed, 27 Nov 2019 20:29:02 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKT2Fc008735; Wed, 27 Nov 2019 20:29:02 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272029.xARKT2Fc008735@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:29:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518535 - branches/2019Q4/www/gitlab-workhorse X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/www/gitlab-workhorse X-SVN-Commit-Revision: 518535 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.29 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, 27 Nov 2019 20:29:02 -0000 Author: mfechner Date: Wed Nov 27 20:29:01 2019 New Revision: 518535 URL: https://svnweb.freebsd.org/changeset/ports/518535 Log: MFH: r518522 www/gitlab-workhorse: upgrade to 8.14.1 which is required for gitlab-ce 12.5.1. Approved by: ports-secteam (joneum) Modified: branches/2019Q4/www/gitlab-workhorse/Makefile branches/2019Q4/www/gitlab-workhorse/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/gitlab-workhorse/Makefile ============================================================================== --- branches/2019Q4/www/gitlab-workhorse/Makefile Wed Nov 27 20:26:36 2019 (r518534) +++ branches/2019Q4/www/gitlab-workhorse/Makefile Wed Nov 27 20:29:01 2019 (r518535) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gitlab-workhorse -PORTVERSION= 8.14.0 +PORTVERSION= 8.14.1 CATEGORIES= www MAINTAINER= mfechner@FreeBSD.org @@ -20,11 +20,12 @@ MAKE_ENV= GOFLAGS="${GO_BUILDFLAGS}" USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-workhorse/tags -GL_COMMIT= 9d06288b2c6d2630773d3c13794b830e24aa1ca2 +GL_COMMIT= 01bfb916e54cb25154db69f3b4d5481b7b77f16f # for go dependencies USE_GITHUB= nodefault # generated with: make gomod-vendor +# 51dd GH_TUPLE= \ BurntSushi:toml:v0.3.1:burntsushi_toml/vendor/github.com/BurntSushi/toml \ DataDog:dd-trace-go:v1.7.0:datadog_dd_trace_go/vendor/gopkg.in/DataDog/dd-trace-go.v1 \ @@ -72,7 +73,7 @@ GH_TUPLE= \ tinylib:msgp:v1.1.0:tinylib_msgp/vendor/github.com/tinylib/msgp \ uber:jaeger-client-go:v2.15.0:uber_jaeger_client_go/vendor/github.com/uber/jaeger-client-go \ uber:jaeger-lib:v1.5.0:uber_jaeger_lib/vendor/github.com/uber/jaeger-lib - #::v0.0.1-2019.2.2:_/vendor/honnef.co/go/tools + GL_TUPLE= \ gitlab-org:gitaly:a8e2980b1ffe1a728ab13032dc81f90f4b990a03:gitlab_org_gitaly/vendor/gitlab.com/gitlab-org/gitaly \ gitlab-org:labkit:905271af7abbfaa1d3549f46ac0394c50cef9b28:gitlab_org_labkit/vendor/gitlab.com/gitlab-org/labkit Modified: branches/2019Q4/www/gitlab-workhorse/distinfo ============================================================================== --- branches/2019Q4/www/gitlab-workhorse/distinfo Wed Nov 27 20:26:36 2019 (r518534) +++ branches/2019Q4/www/gitlab-workhorse/distinfo Wed Nov 27 20:29:01 2019 (r518535) @@ -1,4 +1,4 @@ -TIMESTAMP = 1571858373 +TIMESTAMP = 1574879989 SHA256 (BurntSushi-toml-v0.3.1_GH0.tar.gz) = 6593da894578ba510a470735ffbdc88ce88033094dc5a8f4d3957ab87e18803f SIZE (BurntSushi-toml-v0.3.1_GH0.tar.gz) = 42077 SHA256 (DataDog-dd-trace-go-v1.7.0_GH0.tar.gz) = d81bd47683ef9cbd228691b077373d3e15ca5fa5b9e7919099c4e87779040e84 @@ -91,8 +91,8 @@ SHA256 (uber-jaeger-client-go-v2.15.0_GH0.tar.gz) = 6b SIZE (uber-jaeger-client-go-v2.15.0_GH0.tar.gz) = 164460 SHA256 (uber-jaeger-lib-v1.5.0_GH0.tar.gz) = 98901cc41df77858a2f601ad48b45bdf72af40c56f15bc5182416b15db0daac3 SIZE (uber-jaeger-lib-v1.5.0_GH0.tar.gz) = 31655 -SHA256 (gitlab-org-gitlab-workhorse-9d06288b2c6d2630773d3c13794b830e24aa1ca2_GL0.tar.gz) = 66fce92a6f7b7b8b666ca58f2e5baca0882f5c260825179b8dd3a630e18aeb3c -SIZE (gitlab-org-gitlab-workhorse-9d06288b2c6d2630773d3c13794b830e24aa1ca2_GL0.tar.gz) = 201252 +SHA256 (gitlab-org-gitlab-workhorse-01bfb916e54cb25154db69f3b4d5481b7b77f16f_GL0.tar.gz) = 13fa8898de880fb525660857cc31157a9ab6ad7f05c46a9b115ebb237fd3d91c +SIZE (gitlab-org-gitlab-workhorse-01bfb916e54cb25154db69f3b4d5481b7b77f16f_GL0.tar.gz) = 202259 SHA256 (gitlab-org-gitaly-a8e2980b1ffe1a728ab13032dc81f90f4b990a03_GL0.tar.gz) = 230b9d7f8df10fa6c32c8143d04e8822d2d1a3dd1ca2f0942d3a66f674964a37 SIZE (gitlab-org-gitaly-a8e2980b1ffe1a728ab13032dc81f90f4b990a03_GL0.tar.gz) = 2262713 SHA256 (gitlab-org-labkit-905271af7abbfaa1d3549f46ac0394c50cef9b28_GL0.tar.gz) = c3830ed2d37c1e5025ec0af68a0768c046c1813f8ac7ec6fc6edb7d589d451b7 From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:33:21 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 705741B7C4E; Wed, 27 Nov 2019 20:33:21 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXXd2Mlxz4Y4q; Wed, 27 Nov 2019 20:33:21 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 35B481AFE1; Wed, 27 Nov 2019 20:33:21 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKXLET014800; Wed, 27 Nov 2019 20:33:21 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKXKdS014798; Wed, 27 Nov 2019 20:33:20 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272033.xARKXKdS014798@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:33:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518536 - branches/2019Q4/net/rubygem-gitaly X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/net/rubygem-gitaly X-SVN-Commit-Revision: 518536 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.29 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, 27 Nov 2019 20:33:21 -0000 Author: mfechner Date: Wed Nov 27 20:33:20 2019 New Revision: 518536 URL: https://svnweb.freebsd.org/changeset/ports/518536 Log: MFH: r518195 Update to 1.70.0 which is required for gitlab-ce 12.5. Approved by: ports-secteam (joneum) Modified: branches/2019Q4/net/rubygem-gitaly/Makefile branches/2019Q4/net/rubygem-gitaly/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/net/rubygem-gitaly/Makefile ============================================================================== --- branches/2019Q4/net/rubygem-gitaly/Makefile Wed Nov 27 20:29:01 2019 (r518535) +++ branches/2019Q4/net/rubygem-gitaly/Makefile Wed Nov 27 20:33:20 2019 (r518536) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gitaly -PORTVERSION= 1.65.0 +PORTVERSION= 1.70.0 CATEGORIES= net rubygems MASTER_SITES= RG Modified: branches/2019Q4/net/rubygem-gitaly/distinfo ============================================================================== --- branches/2019Q4/net/rubygem-gitaly/distinfo Wed Nov 27 20:29:01 2019 (r518535) +++ branches/2019Q4/net/rubygem-gitaly/distinfo Wed Nov 27 20:33:20 2019 (r518536) @@ -1,3 +1,3 @@ -TIMESTAMP = 1571854693 -SHA256 (rubygem/gitaly-1.65.0.gem) = 32fc60f73b44e674dd1db5d2516239d3663f9bdee015d0127c793eec22ff1241 -SIZE (rubygem/gitaly-1.65.0.gem) = 18944 +TIMESTAMP = 1574429850 +SHA256 (rubygem/gitaly-1.70.0.gem) = 0367da18cf5abfbedf28c0e2c50d3a58a2dcb89eaa79385c8e3ab6ea442be02c +SIZE (rubygem/gitaly-1.70.0.gem) = 18944 From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:34:14 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 553631B7ECC; Wed, 27 Nov 2019 20:34:14 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXYf1YRHz4YTx; Wed, 27 Nov 2019 20:34:14 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 195BA1AFE4; Wed, 27 Nov 2019 20:34:14 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKYDYo015118; Wed, 27 Nov 2019 20:34:13 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKYD12015116; Wed, 27 Nov 2019 20:34:13 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272034.xARKYD12015116@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:34:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518537 - in branches/2019Q4/net/rubygem-grpc: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in branches/2019Q4/net/rubygem-grpc: . files X-SVN-Commit-Revision: 518537 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.29 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, 27 Nov 2019 20:34:14 -0000 Author: mfechner Date: Wed Nov 27 20:34:13 2019 New Revision: 518537 URL: https://svnweb.freebsd.org/changeset/ports/518537 Log: MFH: r518196 Upgrade to 1.24.0 which is required fpr gitlab-ce 12.5. Approved by: ports-secteam (joneum) Modified: branches/2019Q4/net/rubygem-grpc/Makefile branches/2019Q4/net/rubygem-grpc/distinfo branches/2019Q4/net/rubygem-grpc/files/patch-src_ruby_ext_grpc_extconf.rb Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/net/rubygem-grpc/Makefile ============================================================================== --- branches/2019Q4/net/rubygem-grpc/Makefile Wed Nov 27 20:33:20 2019 (r518536) +++ branches/2019Q4/net/rubygem-grpc/Makefile Wed Nov 27 20:34:13 2019 (r518537) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= grpc -PORTVERSION= 1.19.0 +PORTVERSION= 1.24.0 CATEGORIES= net rubygems MASTER_SITES= RG @@ -13,8 +13,8 @@ LICENSE= BSD3CLAUSE LIB_DEPENDS= libcares.so:dns/c-ares \ libgrpc.so:devel/grpc RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss \ - rubygem-google-protobuf>=3.1:devel/rubygem-google-protobuf \ - rubygem-googleapis-common-protos-types>=1.0.0:devel/rubygem-googleapis-common-protos-types + rubygem-googleapis-common-protos-types>=1.0<2.0:devel/rubygem-googleapis-common-protos-types \ + rubygem-google-protobuf>=3.8<4.0:devel/rubygem-google-protobuf MAKE_JOBS_UNSAFE= yes Modified: branches/2019Q4/net/rubygem-grpc/distinfo ============================================================================== --- branches/2019Q4/net/rubygem-grpc/distinfo Wed Nov 27 20:33:20 2019 (r518536) +++ branches/2019Q4/net/rubygem-grpc/distinfo Wed Nov 27 20:34:13 2019 (r518537) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558173766 -SHA256 (rubygem/grpc-1.19.0.gem) = faf11039fe32009ccc270190e33d65b1a5e0d292ddd06a2ffa7d97aae3e7bee5 -SIZE (rubygem/grpc-1.19.0.gem) = 3093504 +TIMESTAMP = 1574430162 +SHA256 (rubygem/grpc-1.24.0.gem) = eed268d73e455ed82df7e9a76a9575d11d3c1c139a95a227254b9286939c91a3 +SIZE (rubygem/grpc-1.24.0.gem) = 3264000 Modified: branches/2019Q4/net/rubygem-grpc/files/patch-src_ruby_ext_grpc_extconf.rb ============================================================================== --- branches/2019Q4/net/rubygem-grpc/files/patch-src_ruby_ext_grpc_extconf.rb Wed Nov 27 20:33:20 2019 (r518536) +++ branches/2019Q4/net/rubygem-grpc/files/patch-src_ruby_ext_grpc_extconf.rb Wed Nov 27 20:34:13 2019 (r518537) @@ -1,6 +1,6 @@ ---- src/ruby/ext/grpc/extconf.rb.orig 2017-12-31 07:02:12 UTC +--- src/ruby/ext/grpc/extconf.rb.orig 2019-11-22 13:44:33 UTC +++ src/ruby/ext/grpc/extconf.rb -@@ -56,9 +56,9 @@ ENV['LD'] = ENV['CC'] +@@ -39,9 +39,9 @@ end ENV['AR'] = 'libtool -o' if RUBY_PLATFORM =~ /darwin/ @@ -13,7 +13,7 @@ ENV['ARCH_FLAGS'] = RbConfig::CONFIG['ARCH_FLAG'] ENV['ARCH_FLAGS'] = '-arch i386 -arch x86_64' if RUBY_PLATFORM =~ /darwin/ ENV['CPPFLAGS'] = '-DGPR_BACKWARDS_COMPATIBILITY_MODE' -@@ -67,17 +67,18 @@ output_dir = File.expand_path(RbConfig::CONFIG['topdir +@@ -50,22 +50,23 @@ output_dir = File.expand_path(RbConfig::CONFIG['topdir grpc_lib_dir = File.join(output_dir, 'libs', grpc_config) ENV['BUILDDIR'] = output_dir @@ -35,10 +35,17 @@ +#end -$CFLAGS << ' -I' + File.join(grpc_root, 'include') --$LDFLAGS << ' ' + File.join(grpc_lib_dir, 'libgrpc.a') unless windows +#$CFLAGS << ' -I' + File.join(grpc_root, 'include') -+#$LDFLAGS << ' ' + File.join(grpc_lib_dir, 'libgrpc.a') unless windows + + ext_export_file = File.join(grpc_root, 'src', 'ruby', 'ext', 'grpc', 'ext-export') +-$LDFLAGS << ' -Wl,--version-script="' + ext_export_file + '.gcc"' if RUBY_PLATFORM =~ /linux/ +-$LDFLAGS << ' -Wl,-exported_symbols_list,"' + ext_export_file + '.clang"' if RUBY_PLATFORM =~ /darwin/ ++#$LDFLAGS << ' -Wl,--version-script="' + ext_export_file + '.gcc"' if RUBY_PLATFORM =~ /linux/ ++#$LDFLAGS << ' -Wl,-exported_symbols_list,"' + ext_export_file + '.clang"' if RUBY_PLATFORM =~ /darwin/ +$LDFLAGS << ' -lgrpc' unless windows + +-$LDFLAGS << ' ' + File.join(grpc_lib_dir, 'libgrpc.a') unless windows ++#$LDFLAGS << ' ' + File.join(grpc_lib_dir, 'libgrpc.a') unless windows if grpc_config == 'gcov' $CFLAGS << ' -O0 -fprofile-arcs -ftest-coverage' $LDFLAGS << ' -fprofile-arcs -ftest-coverage -rdynamic' From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:35:00 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A7A9B1B7F9D; Wed, 27 Nov 2019 20:35:00 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXZX2PyRz4YdZ; Wed, 27 Nov 2019 20:35:00 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1D00A1B007; Wed, 27 Nov 2019 20:35:00 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKYxId015312; Wed, 27 Nov 2019 20:34:59 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKYxjG015308; Wed, 27 Nov 2019 20:34:59 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272034.xARKYxjG015308@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:34:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518538 - branches/2019Q4/net/rubygem-omniauth_openid_connect X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/net/rubygem-omniauth_openid_connect X-SVN-Commit-Revision: 518538 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.29 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, 27 Nov 2019 20:35:00 -0000 Author: mfechner Date: Wed Nov 27 20:34:59 2019 New Revision: 518538 URL: https://svnweb.freebsd.org/changeset/ports/518538 Log: MFH: r518197 Upgrade to 0.3.3 which is required for gitlab-ce 12.5 upgrade. Approved by: ports-secteam (joneum) Modified: branches/2019Q4/net/rubygem-omniauth_openid_connect/Makefile branches/2019Q4/net/rubygem-omniauth_openid_connect/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/net/rubygem-omniauth_openid_connect/Makefile ============================================================================== --- branches/2019Q4/net/rubygem-omniauth_openid_connect/Makefile Wed Nov 27 20:34:13 2019 (r518537) +++ branches/2019Q4/net/rubygem-omniauth_openid_connect/Makefile Wed Nov 27 20:34:59 2019 (r518538) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= omniauth_openid_connect -PORTVERSION= 0.3.1 +PORTVERSION= 0.3.3 CATEGORIES= net rubygems MASTER_SITES= RG @@ -12,9 +12,9 @@ COMMENT= OpenID Connect Strategy for OmniAuth LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= rubygem-addressable>=2.5:www/rubygem-addressable \ - rubygem-omniauth>=1.3:security/rubygem-omniauth \ - rubygem-openid_connect>=1.1:net/rubygem-openid_connect +RUN_DEPENDS= rubygem-addressable>=2.5<3.0:www/rubygem-addressable \ + rubygem-omniauth>=1.9<2.0:security/rubygem-omniauth \ + rubygem-openid_connect>=1.1<2.0:net/rubygem-openid_connect USES= gem USE_RUBY= yes Modified: branches/2019Q4/net/rubygem-omniauth_openid_connect/distinfo ============================================================================== --- branches/2019Q4/net/rubygem-omniauth_openid_connect/distinfo Wed Nov 27 20:34:13 2019 (r518537) +++ branches/2019Q4/net/rubygem-omniauth_openid_connect/distinfo Wed Nov 27 20:34:59 2019 (r518538) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561190946 -SHA256 (rubygem/omniauth_openid_connect-0.3.1.gem) = 8ba9ca09468ae8e55d31a5c6c3e7a7c3ab8b0a958d18cff905137c52a9644749 -SIZE (rubygem/omniauth_openid_connect-0.3.1.gem) = 16384 +TIMESTAMP = 1574428146 +SHA256 (rubygem/omniauth_openid_connect-0.3.3.gem) = 19a7a0337165a257d435956d90cb5b763c74881bd9e2e7b0e0202a2bc55d9e2b +SIZE (rubygem/omniauth_openid_connect-0.3.3.gem) = 17408 From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:35:56 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D8C3C1B8023; Wed, 27 Nov 2019 20:35:56 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXbc5DVmz4Yl5; Wed, 27 Nov 2019 20:35:56 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 96FCF1B008; Wed, 27 Nov 2019 20:35:56 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKZuQH015528; Wed, 27 Nov 2019 20:35:56 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKZuPt015526; Wed, 27 Nov 2019 20:35:56 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272035.xARKZuPt015526@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:35:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518539 - branches/2019Q4/textproc/rubygem-github-linguist X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/textproc/rubygem-github-linguist X-SVN-Commit-Revision: 518539 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.29 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, 27 Nov 2019 20:35:56 -0000 Author: mfechner Date: Wed Nov 27 20:35:55 2019 New Revision: 518539 URL: https://svnweb.freebsd.org/changeset/ports/518539 Log: MFH: r518198 Update to 7.6.1 which is required for gitlab-ce 12.5. Approved by: ports-secteam (joneum) Modified: branches/2019Q4/textproc/rubygem-github-linguist/Makefile branches/2019Q4/textproc/rubygem-github-linguist/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/textproc/rubygem-github-linguist/Makefile ============================================================================== --- branches/2019Q4/textproc/rubygem-github-linguist/Makefile Wed Nov 27 20:34:59 2019 (r518538) +++ branches/2019Q4/textproc/rubygem-github-linguist/Makefile Wed Nov 27 20:35:55 2019 (r518539) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= github-linguist -PORTVERSION= 6.4.1 +PORTVERSION= 7.6.1 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -11,17 +11,17 @@ COMMENT= GitHub Language detection LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= rubygem-charlock_holmes>=0.7.6:textproc/rubygem-charlock_holmes \ - rubygem-escape_utils>=1.2.0:textproc/rubygem-escape_utils \ - rubygem-mime-types>=1.19:misc/rubygem-mime-types \ +RUN_DEPENDS= rubygem-charlock_holmes>=0.7.6<0.8:textproc/rubygem-charlock_holmes \ + rubygem-escape_utils>=1.2.0<1.3:textproc/rubygem-escape_utils \ + rubygem-mini_mime>=1.0<2.0:mail/rubygem-mini_mime \ rubygem-rugged>=0.25.1:devel/rubygem-rugged # bin/linguist -CONFLICTS_INSTALL= qtchooser rubygem-github-linguist47 rubygem-gitlab-linguist +#CONFLICTS_INSTALL= qtchooser rubygem-github-linguist47 rubygem-gitlab-linguist USES= gem USE_RUBY= yes -PLIST_FILES= bin/git-linguist bin/linguist +PLIST_FILES= bin/git-linguist bin/github-linguist .include Modified: branches/2019Q4/textproc/rubygem-github-linguist/distinfo ============================================================================== --- branches/2019Q4/textproc/rubygem-github-linguist/distinfo Wed Nov 27 20:34:59 2019 (r518538) +++ branches/2019Q4/textproc/rubygem-github-linguist/distinfo Wed Nov 27 20:35:55 2019 (r518539) @@ -1,3 +1,3 @@ -TIMESTAMP = 1542910023 -SHA256 (rubygem/github-linguist-6.4.1.gem) = 0e9651d70ac6fb7903aa7a03db4316f3810d4b40a4ac317ff7a675e275be1a5b -SIZE (rubygem/github-linguist-6.4.1.gem) = 2283008 +TIMESTAMP = 1574432032 +SHA256 (rubygem/github-linguist-7.6.1.gem) = 7eaa299cde5e9d75c94140bf31649387b204ad828bc4cce15a7b97546110ae15 +SIZE (rubygem/github-linguist-7.6.1.gem) = 2531840 From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:37:03 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 675071B807A; Wed, 27 Nov 2019 20:37:03 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXcv25vDz4YsS; Wed, 27 Nov 2019 20:37:03 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2C5B71B01F; Wed, 27 Nov 2019 20:37:03 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKb3j7015744; Wed, 27 Nov 2019 20:37:03 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKb2tm015743; Wed, 27 Nov 2019 20:37:02 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272037.xARKb2tm015743@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:37:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518540 - branches/2019Q4/textproc/rubygem-nokogiri X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/textproc/rubygem-nokogiri X-SVN-Commit-Revision: 518540 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.29 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, 27 Nov 2019 20:37:03 -0000 Author: mfechner Date: Wed Nov 27 20:37:02 2019 New Revision: 518540 URL: https://svnweb.freebsd.org/changeset/ports/518540 Log: MFH: r518199 Update to 1.10.5 which is required for gitlab-ce 12.5. Approved by: ports-secteam (joneum) Modified: branches/2019Q4/textproc/rubygem-nokogiri/Makefile branches/2019Q4/textproc/rubygem-nokogiri/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/textproc/rubygem-nokogiri/Makefile ============================================================================== --- branches/2019Q4/textproc/rubygem-nokogiri/Makefile Wed Nov 27 20:35:55 2019 (r518539) +++ branches/2019Q4/textproc/rubygem-nokogiri/Makefile Wed Nov 27 20:37:02 2019 (r518540) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= nokogiri -PORTVERSION= 1.10.4 +PORTVERSION= 1.10.5 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -16,7 +16,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= ${RUN_DEPENDS} LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error -RUN_DEPENDS= rubygem-pkg-config>=1.1.7:devel/rubygem-pkg-config +RUN_DEPENDS= rubygem-pkg-config>=1.1.7:devel/rubygem-pkg-config \ + rubygem-mini_portile2>=2.4.0<2.5.0:devel/rubygem-mini_portile2 USES= gem gnome pkgconfig gettext-runtime USE_GNOME= libxml2 libxslt Modified: branches/2019Q4/textproc/rubygem-nokogiri/distinfo ============================================================================== --- branches/2019Q4/textproc/rubygem-nokogiri/distinfo Wed Nov 27 20:35:55 2019 (r518539) +++ branches/2019Q4/textproc/rubygem-nokogiri/distinfo Wed Nov 27 20:37:02 2019 (r518540) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565715158 -SHA256 (rubygem/nokogiri-1.10.4.gem) = fbf91c487d7ceb2b0593384f175843f99152322754f6ff267740bff031cead5a -SIZE (rubygem/nokogiri-1.10.4.gem) = 8983040 +TIMESTAMP = 1574428671 +SHA256 (rubygem/nokogiri-1.10.5.gem) = 279b24ea3e84873be0f7ce3a5661b2864667e6176d919465c7721cb5781bafa0 +SIZE (rubygem/nokogiri-1.10.5.gem) = 9249792 From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:37:52 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6F5601B8111; Wed, 27 Nov 2019 20:37:52 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXdr1tvvz4Yys; Wed, 27 Nov 2019 20:37:52 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 240011B020; Wed, 27 Nov 2019 20:37:52 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKbqML015939; Wed, 27 Nov 2019 20:37:52 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKbpDp015938; Wed, 27 Nov 2019 20:37:51 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272037.xARKbpDp015938@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:37:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518541 - branches/2019Q4/www/rubygem-deckar01-task_list X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/www/rubygem-deckar01-task_list X-SVN-Commit-Revision: 518541 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.29 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, 27 Nov 2019 20:37:52 -0000 Author: mfechner Date: Wed Nov 27 20:37:51 2019 New Revision: 518541 URL: https://svnweb.freebsd.org/changeset/ports/518541 Log: MFH: r518200 Update to 2.2.1 which is required for gitlab-ce 12.5. Approved by: ports-secteam (joneum) Modified: branches/2019Q4/www/rubygem-deckar01-task_list/Makefile branches/2019Q4/www/rubygem-deckar01-task_list/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/rubygem-deckar01-task_list/Makefile ============================================================================== --- branches/2019Q4/www/rubygem-deckar01-task_list/Makefile Wed Nov 27 20:37:02 2019 (r518540) +++ branches/2019Q4/www/rubygem-deckar01-task_list/Makefile Wed Nov 27 20:37:51 2019 (r518541) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= deckar01-task_list -PORTVERSION= 2.2.0 +PORTVERSION= 2.2.1 CATEGORIES= www rubygems MASTER_SITES= RG Modified: branches/2019Q4/www/rubygem-deckar01-task_list/distinfo ============================================================================== --- branches/2019Q4/www/rubygem-deckar01-task_list/distinfo Wed Nov 27 20:37:02 2019 (r518540) +++ branches/2019Q4/www/rubygem-deckar01-task_list/distinfo Wed Nov 27 20:37:51 2019 (r518541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551201455 -SHA256 (rubygem/deckar01-task_list-2.2.0.gem) = c4a453b50435b00668454dba7b773ba2b67e25e7e225fbc0ae379678cb3ec368 -SIZE (rubygem/deckar01-task_list-2.2.0.gem) = 18944 +TIMESTAMP = 1574428517 +SHA256 (rubygem/deckar01-task_list-2.2.1.gem) = d3837dd870b8a68d5c25d4980588a4754108227e5c7b3eec2ced1eaa3bcd6726 +SIZE (rubygem/deckar01-task_list-2.2.1.gem) = 18944 From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:38:44 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DE6DE1B8168; Wed, 27 Nov 2019 20:38:44 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXfr5cP8z4Z5Q; Wed, 27 Nov 2019 20:38:44 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A431E1B026; Wed, 27 Nov 2019 20:38:44 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKciEI016141; Wed, 27 Nov 2019 20:38:44 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKciIp016140; Wed, 27 Nov 2019 20:38:44 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272038.xARKciIp016140@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:38:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518542 - branches/2019Q4/www/rubygem-rack-attack X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/www/rubygem-rack-attack X-SVN-Commit-Revision: 518542 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.29 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, 27 Nov 2019 20:38:44 -0000 Author: mfechner Date: Wed Nov 27 20:38:43 2019 New Revision: 518542 URL: https://svnweb.freebsd.org/changeset/ports/518542 Log: MFH: r518201 Update to 6.2.1 which is required for gitlab-ce 12.5. Approved by: ports-secteam (joneum) Modified: branches/2019Q4/www/rubygem-rack-attack/Makefile branches/2019Q4/www/rubygem-rack-attack/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/rubygem-rack-attack/Makefile ============================================================================== --- branches/2019Q4/www/rubygem-rack-attack/Makefile Wed Nov 27 20:37:51 2019 (r518541) +++ branches/2019Q4/www/rubygem-rack-attack/Makefile Wed Nov 27 20:38:43 2019 (r518542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rack-attack -PORTVERSION= 5.4.2 +PORTVERSION= 6.2.1 CATEGORIES= www rubygems MASTER_SITES= RG @@ -11,7 +11,7 @@ COMMENT= Rack middleware for throttling and blocking a LICENSE= MIT -RUN_DEPENDS= rubygem-rack>=1.0:www/rubygem-rack +RUN_DEPENDS= rubygem-rack>=1.0<3.0,3:www/rubygem-rack USES= gem USE_RUBY= yes Modified: branches/2019Q4/www/rubygem-rack-attack/distinfo ============================================================================== --- branches/2019Q4/www/rubygem-rack-attack/distinfo Wed Nov 27 20:37:51 2019 (r518541) +++ branches/2019Q4/www/rubygem-rack-attack/distinfo Wed Nov 27 20:38:43 2019 (r518542) @@ -1,3 +1,3 @@ -TIMESTAMP = 1541183437 -SHA256 (rubygem/rack-attack-5.4.2.gem) = 7a45bd666a317b62d92970106dee1212ea7315369cf363d42ae20b090f9fc687 -SIZE (rubygem/rack-attack-5.4.2.gem) = 23040 +TIMESTAMP = 1574429305 +SHA256 (rubygem/rack-attack-6.2.1.gem) = 5b1aad98235081910c67753630638113fd6442594abf0655d1e56cb27c902969 +SIZE (rubygem/rack-attack-6.2.1.gem) = 24576 From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:40:03 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C75A71B81DC; Wed, 27 Nov 2019 20:40:03 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXhM5gG2z4ZC3; Wed, 27 Nov 2019 20:40:03 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8BD2D1B02A; Wed, 27 Nov 2019 20:40:03 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKe3hF016465; Wed, 27 Nov 2019 20:40:03 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKe2M6016457; Wed, 27 Nov 2019 20:40:02 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272040.xARKe2M6016457@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:40:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518543 - in branches/2019Q4/devel/gitaly: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in branches/2019Q4/devel/gitaly: . files X-SVN-Commit-Revision: 518543 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.29 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, 27 Nov 2019 20:40:03 -0000 Author: mfechner Date: Wed Nov 27 20:40:02 2019 New Revision: 518543 URL: https://svnweb.freebsd.org/changeset/ports/518543 Log: MFH: r518202 r518521 Update to 1.72.0 which is required for gitlab-ce 12.5. devel/gitaly: upgrade to 1.72.1 which is required for gitlab-ce 12.5.1. Approved by: ports-secteam (joneum) Modified: branches/2019Q4/devel/gitaly/Makefile branches/2019Q4/devel/gitaly/distinfo branches/2019Q4/devel/gitaly/files/patch-config.toml.example branches/2019Q4/devel/gitaly/files/patch-ruby_Gemfile branches/2019Q4/devel/gitaly/pkg-plist Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/devel/gitaly/Makefile ============================================================================== --- branches/2019Q4/devel/gitaly/Makefile Wed Nov 27 20:38:43 2019 (r518542) +++ branches/2019Q4/devel/gitaly/Makefile Wed Nov 27 20:40:02 2019 (r518543) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gitaly -DISTVERSION= 1.67.0 +DISTVERSION= 1.72.1 PORTREVISION= 0 CATEGORIES= devel @@ -15,19 +15,19 @@ LICENSE_FILE= ${WRKSRC}/LICENSE MY_DEPENDS= git>=2.21:devel/git \ rubygem-bundler>=1.17.3:sysutils/rubygem-bundler \ rubygem-rugged>=0.28<1.0:devel/rubygem-rugged \ - rubygem-github-linguist>=6.1<7.0:textproc/rubygem-github-linguist \ + rubygem-github-linguist>=7.5<8.0:textproc/rubygem-github-linguist \ rubygem-gitlab-markup>=1.7.0<1.8.0:textproc/rubygem-gitlab-markup \ rubygem-activesupport52>=5.2.3<5.3.0:devel/rubygem-activesupport52 \ - rubygem-rdoc>=6.0:devel/rubygem-rdoc \ + rubygem-rdoc>=6.0<7.0:devel/rubygem-rdoc \ rubygem-gitlab-gollum-lib>=4.2.7.7<4.2.8.0:www/rubygem-gitlab-gollum-lib \ rubygem-gitlab-gollum-rugged_adapter>=0.4.4.2<0.4.5.0:www/rubygem-gitlab-gollum-rugged_adapter \ - rubygem-grpc>=1.19.0<1.20.0:net/rubygem-grpc \ + rubygem-grpc>=1.24.0<1.25.0:net/rubygem-grpc \ rubygem-sentry-raven>=2.9.0<2.10.0:devel/rubygem-sentry-raven \ rubygem-faraday>=0.12<1.0:www/rubygem-faraday \ rubygem-rbtrace>0:devel/rubygem-rbtrace \ rubygem-gitlab-labkit>=0.5.0<0.6.0:devel/rubygem-gitlab-labkit \ rubygem-licensee8>=8.9.0<8.10.0:devel/rubygem-licensee8 \ - rubygem-google-protobuf371>=3.7.1<3.8.0:devel/rubygem-google-protobuf371 + rubygem-google-protobuf38>=3.8.0<3.9.0:devel/rubygem-google-protobuf38 BUILD_DEPENDS= gem:devel/ruby-gems \ ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} \ @@ -41,32 +41,32 @@ MAKE_ENV= GOFLAGS="${GO_BUILDFLAGS}" USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find this here: https://gitlab.com/gitlab-org/gitaly/tags -GL_COMMIT= ca21a624582be7bcf4d43075be2a7e5981e191fa +GL_COMMIT= 52a09a56236c4d44bc4cc5865ff58dc2e6fa459f # for go dependencies USE_GITHUB= nodefault # generated with: make gomod-vendor +# 41dd GH_TUPLE= \ BurntSushi:toml:v0.3.1:burntsushi_toml/vendor/github.com/BurntSushi/toml \ DataDog:dd-trace-go:v1.7.0:datadog_dd_trace_go/vendor/gopkg.in/DataDog/dd-trace-go.v1 \ beorn7:perks:v1.0.0:beorn7_perks/vendor/github.com/beorn7/perks \ - certifi:gocertifi:ee1a9a0726d2:certifi_gocertifi/vendor/github.com/certifi/gocertifi \ cloudflare:tableflip:8392f1641731:cloudflare_tableflip/vendor/github.com/cloudflare/tableflip \ codahale:hdrhistogram:3a0bb77429bd:codahale_hdrhistogram/vendor/github.com/codahale/hdrhistogram \ davecgh:go-spew:v1.1.1:davecgh_go_spew/vendor/github.com/davecgh/go-spew \ - getsentry:raven-go:v0.1.2:getsentry_raven_go/vendor/github.com/getsentry/raven-go \ + getsentry:sentry-go:v0.3.0:getsentry_sentry_go/vendor/github.com/getsentry/sentry-go \ go-yaml:yaml:v2.2.2:go_yaml_yaml/vendor/gopkg.in/yaml.v2 \ - golang:crypto:20be4c3c3ed5:golang_crypto/vendor/golang.org/x/crypto \ + golang:crypto:4def268fd1a4:golang_crypto/vendor/golang.org/x/crypto \ golang:net:d28f0bde5980:golang_net/vendor/golang.org/x/net \ - golang:protobuf:v1.3.1:golang_protobuf/vendor/github.com/golang/protobuf \ - golang:sync:37e7f081c4d4:golang_sync/vendor/golang.org/x/sync \ - golang:sys:953cdadca894:golang_sys/vendor/golang.org/x/sys \ + golang:protobuf:v1.3.2:golang_protobuf/vendor/github.com/golang/protobuf \ + golang:sync:112230192c58:golang_sync/vendor/golang.org/x/sync \ + golang:sys:fde4db37ae7a:golang_sys/vendor/golang.org/x/sys \ golang:text:v0.3.0:golang_text/vendor/golang.org/x/text \ google:go-genproto:bd91e49a0898:google_go_genproto/vendor/google.golang.org/genproto \ google:uuid:v1.1.1:google_uuid/vendor/github.com/google/uuid \ grpc-ecosystem:go-grpc-middleware:v1.0.0:grpc_ecosystem_go_grpc_middleware/vendor/github.com/grpc-ecosystem/go-grpc-middleware \ grpc-ecosystem:go-grpc-prometheus:v1.2.0:grpc_ecosystem_go_grpc_prometheus/vendor/github.com/grpc-ecosystem/go-grpc-prometheus \ - grpc:grpc-go:v1.16.0:grpc_grpc_go/vendor/google.golang.org/grpc \ + grpc:grpc-go:v1.24.0:grpc_grpc_go/vendor/google.golang.org/grpc \ kelseyhightower:envconfig:v1.3.0:kelseyhightower_envconfig/vendor/github.com/kelseyhightower/envconfig \ konsorten:go-windows-terminal-sequences:v1.0.1:konsorten_go_windows_terminal_sequences/vendor/github.com/konsorten/go-windows-terminal-sequences \ libgit2:git2go:ecaeb7a21d47:libgit2_git2go/vendor/github.com/libgit2/git2go \ @@ -74,17 +74,18 @@ GH_TUPLE= \ matttproud:golang_protobuf_extensions:v1.0.1:matttproud_golang_protobuf_extensions/vendor/github.com/matttproud/golang_protobuf_extensions \ opentracing:opentracing-go:v1.0.2:opentracing_opentracing_go/vendor/github.com/opentracing/opentracing-go \ philhofer:fwd:v1.0.0:philhofer_fwd/vendor/github.com/philhofer/fwd \ - pkg:errors:v0.8.0:pkg_errors/vendor/github.com/pkg/errors \ + pkg:errors:v0.8.1:pkg_errors/vendor/github.com/pkg/errors \ pmezard:go-difflib:v1.0.0:pmezard_go_difflib/vendor/github.com/pmezard/go-difflib \ prometheus:client_golang:v1.0.0:prometheus_client_golang/vendor/github.com/prometheus/client_golang \ prometheus:client_model:fd36f4220a90:prometheus_client_model/vendor/github.com/prometheus/client_model \ prometheus:common:v0.4.1:prometheus_common/vendor/github.com/prometheus/common \ prometheus:procfs:v0.0.2:prometheus_procfs/vendor/github.com/prometheus/procfs \ sirupsen:logrus:v1.2.0:sirupsen_logrus/vendor/github.com/sirupsen/logrus \ - stretchr:testify:v1.3.0:stretchr_testify/vendor/github.com/stretchr/testify \ + stretchr:testify:v1.4.0:stretchr_testify/vendor/github.com/stretchr/testify \ tinylib:msgp:v1.1.0:tinylib_msgp/vendor/github.com/tinylib/msgp \ uber:jaeger-client-go:v2.15.0:uber_jaeger_client_go/vendor/github.com/uber/jaeger-client-go \ uber:jaeger-lib:v1.5.0:uber_jaeger_lib/vendor/github.com/uber/jaeger-lib + GL_TUPLE= \ gitlab-org:labkit:0c3fc7cdd57c57da5ab474aa72b6640d2bdc9ebb:gitlab_org_labkit/vendor/gitlab.com/gitlab-org/labkit @@ -102,4 +103,3 @@ do-install: cd ${WRKSRC}/ruby && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/ruby .include - Modified: branches/2019Q4/devel/gitaly/distinfo ============================================================================== --- branches/2019Q4/devel/gitaly/distinfo Wed Nov 27 20:38:43 2019 (r518542) +++ branches/2019Q4/devel/gitaly/distinfo Wed Nov 27 20:40:02 2019 (r518543) @@ -1,32 +1,30 @@ -TIMESTAMP = 1571855950 +TIMESTAMP = 1574880257 SHA256 (BurntSushi-toml-v0.3.1_GH0.tar.gz) = 6593da894578ba510a470735ffbdc88ce88033094dc5a8f4d3957ab87e18803f SIZE (BurntSushi-toml-v0.3.1_GH0.tar.gz) = 42077 SHA256 (DataDog-dd-trace-go-v1.7.0_GH0.tar.gz) = d81bd47683ef9cbd228691b077373d3e15ca5fa5b9e7919099c4e87779040e84 SIZE (DataDog-dd-trace-go-v1.7.0_GH0.tar.gz) = 3321111 SHA256 (beorn7-perks-v1.0.0_GH0.tar.gz) = b69d92e2e84b7d510dfa6110d3ac4ada0096a6c81190c5e174aa888bfe475cbc SIZE (beorn7-perks-v1.0.0_GH0.tar.gz) = 10866 -SHA256 (certifi-gocertifi-ee1a9a0726d2_GH0.tar.gz) = b0b9ac422d6378c82be85f71f206757db24ecad314aca6155e9954363817fae1 -SIZE (certifi-gocertifi-ee1a9a0726d2_GH0.tar.gz) = 143846 SHA256 (cloudflare-tableflip-8392f1641731_GH0.tar.gz) = 0fab510fb61d488f63c59485dadb166d7d5fac5ebbd65e6a3cacfc9fdd1fb6d3 SIZE (cloudflare-tableflip-8392f1641731_GH0.tar.gz) = 12582 SHA256 (codahale-hdrhistogram-3a0bb77429bd_GH0.tar.gz) = 3ef6b86658bc370e027304e55a8685767f7fd8a94199f4bea08c9388bf84a1b0 SIZE (codahale-hdrhistogram-3a0bb77429bd_GH0.tar.gz) = 7738 SHA256 (davecgh-go-spew-v1.1.1_GH0.tar.gz) = 7d82b9bb7291adbe7498fe946920ab3e7fc9e6cbfc3b2294693fad00bf0dd17e SIZE (davecgh-go-spew-v1.1.1_GH0.tar.gz) = 42152 -SHA256 (getsentry-raven-go-v0.1.2_GH0.tar.gz) = fe603da75a8284273f253a8524d456cd6293fb47508d907f830153ed9af98cb5 -SIZE (getsentry-raven-go-v0.1.2_GH0.tar.gz) = 19314 +SHA256 (getsentry-sentry-go-v0.3.0_GH0.tar.gz) = 16907c25fc86802614579a6a8e638fe4bd65ba2c07a18ff5185de14e75bd878f +SIZE (getsentry-sentry-go-v0.3.0_GH0.tar.gz) = 57823 SHA256 (go-yaml-yaml-v2.2.2_GH0.tar.gz) = 42c3e4ef9eca2860d22b3c6c5582c6c13fb4b417e5ebc1acc56ee5e2c4ddcaff SIZE (go-yaml-yaml-v2.2.2_GH0.tar.gz) = 70656 -SHA256 (golang-crypto-20be4c3c3ed5_GH0.tar.gz) = bc78136186ecd1683395d9094a7b973cb01675529131ac59f484e2716609de6f -SIZE (golang-crypto-20be4c3c3ed5_GH0.tar.gz) = 1690016 +SHA256 (golang-crypto-4def268fd1a4_GH0.tar.gz) = eaf2ba9df95911f41a340478d1fbb540d7bc21939e4688273995dabf58e8c7b0 +SIZE (golang-crypto-4def268fd1a4_GH0.tar.gz) = 1693117 SHA256 (golang-net-d28f0bde5980_GH0.tar.gz) = 40f4d37b315f4a6867ab5beadf4d73f93b9c1d777b48ec66d59f953a4a19acb4 SIZE (golang-net-d28f0bde5980_GH0.tar.gz) = 1097062 -SHA256 (golang-protobuf-v1.3.1_GH0.tar.gz) = 3f3a6123054a9847093c119895f1660612f301fe95358f3a6a1a33fd0933e6cf -SIZE (golang-protobuf-v1.3.1_GH0.tar.gz) = 310884 -SHA256 (golang-sync-37e7f081c4d4_GH0.tar.gz) = d0f0ce92264903fa32032fc365c0c0d36d129fa282d74364c406179a94714f10 -SIZE (golang-sync-37e7f081c4d4_GH0.tar.gz) = 16238 -SHA256 (golang-sys-953cdadca894_GH0.tar.gz) = fb56f244784dac7e7f66fc0ff9f5ff6adbd49ccb8f3625285e6e39254b64c12f -SIZE (golang-sys-953cdadca894_GH0.tar.gz) = 1353286 +SHA256 (golang-protobuf-v1.3.2_GH0.tar.gz) = c9cda622857a17cf0877c5ba76688a931883e505f40744c9495638b6e3da1f65 +SIZE (golang-protobuf-v1.3.2_GH0.tar.gz) = 312285 +SHA256 (golang-sync-112230192c58_GH0.tar.gz) = 6d98880ea18369550cb12d7011df8e4b21c5b7588268a412b863b5c9d2fa0313 +SIZE (golang-sync-112230192c58_GH0.tar.gz) = 16832 +SHA256 (golang-sys-fde4db37ae7a_GH0.tar.gz) = b6aab4e92d5d8fe85ca0dd229bfb75c91290951a3bf3b95087459e5a4eae86a4 +SIZE (golang-sys-fde4db37ae7a_GH0.tar.gz) = 1455218 SHA256 (golang-text-v0.3.0_GH0.tar.gz) = 8f4c9a048345befc7beccd09267737ee1f55c7b35e5ff80f344ec9e0aa90febb SIZE (golang-text-v0.3.0_GH0.tar.gz) = 6102619 SHA256 (google-go-genproto-bd91e49a0898_GH0.tar.gz) = 659ae77d08446b4bcb7d6b8a9c050d903e6e13fbd903541da7bf9966142e9377 @@ -37,8 +35,8 @@ SHA256 (grpc-ecosystem-go-grpc-middleware-v1.0.0_GH0.t SIZE (grpc-ecosystem-go-grpc-middleware-v1.0.0_GH0.tar.gz) = 97266 SHA256 (grpc-ecosystem-go-grpc-prometheus-v1.2.0_GH0.tar.gz) = eba66530952a126ab869205bdb909af607bfd9eb09f00207b62eb29140258aa9 SIZE (grpc-ecosystem-go-grpc-prometheus-v1.2.0_GH0.tar.gz) = 24760 -SHA256 (grpc-grpc-go-v1.16.0_GH0.tar.gz) = 771230b79dc89753e860b35870ec245b19248b538f0de3fe45d818281739167a -SIZE (grpc-grpc-go-v1.16.0_GH0.tar.gz) = 545087 +SHA256 (grpc-grpc-go-v1.24.0_GH0.tar.gz) = b8ac419ef6eb434e54e3900f0489bdda2f18d604e3f8c074b8ae75e6c106872b +SIZE (grpc-grpc-go-v1.24.0_GH0.tar.gz) = 755074 SHA256 (kelseyhightower-envconfig-v1.3.0_GH0.tar.gz) = 3556a0d014ba778b78955e8ec9fc320de81509f4aa582ea3b6ce18476c3e40dd SIZE (kelseyhightower-envconfig-v1.3.0_GH0.tar.gz) = 12408 SHA256 (konsorten-go-windows-terminal-sequences-v1.0.1_GH0.tar.gz) = e36c5a5de388bf72db3037b47f025b09e574be8d0bc74b3e44c960cba0880e87 @@ -53,8 +51,8 @@ SHA256 (opentracing-opentracing-go-v1.0.2_GH0.tar.gz) SIZE (opentracing-opentracing-go-v1.0.2_GH0.tar.gz) = 24067 SHA256 (philhofer-fwd-v1.0.0_GH0.tar.gz) = 55736f48940198a11b7aeb4faba258459451994a8889ec003ce8d8d26ceca9ff SIZE (philhofer-fwd-v1.0.0_GH0.tar.gz) = 9221 -SHA256 (pkg-errors-v0.8.0_GH0.tar.gz) = bacf6c58e490911398cee61742ddc6a90c560733e4c9dcb3d867b17a894c9dd5 -SIZE (pkg-errors-v0.8.0_GH0.tar.gz) = 11344 +SHA256 (pkg-errors-v0.8.1_GH0.tar.gz) = 7a428967c6fc2e80cd84a0d9469ab6bd4dbe6b13493ba6294322a933a5a7e356 +SIZE (pkg-errors-v0.8.1_GH0.tar.gz) = 11009 SHA256 (pmezard-go-difflib-v1.0.0_GH0.tar.gz) = 28f3dc1b5c0efd61203ab07233f774740d3bf08da4d8153fb5310db6cea0ebda SIZE (pmezard-go-difflib-v1.0.0_GH0.tar.gz) = 11398 SHA256 (prometheus-client_golang-v1.0.0_GH0.tar.gz) = afee7b61a77342cc24ea55e284d08688267efca1843e529a51799fe52c5ee662 @@ -67,15 +65,15 @@ SHA256 (prometheus-procfs-v0.0.2_GH0.tar.gz) = ad1d1f1 SIZE (prometheus-procfs-v0.0.2_GH0.tar.gz) = 78550 SHA256 (sirupsen-logrus-v1.2.0_GH0.tar.gz) = 679aa05d23ca81b74f1327e7a25267a322dc9fd807a276e73e781f62ee679c6d SIZE (sirupsen-logrus-v1.2.0_GH0.tar.gz) = 37794 -SHA256 (stretchr-testify-v1.3.0_GH0.tar.gz) = 0cd9c199a72b8d80621624b37c0ed5ac724352d458506a31dfa86710551e7fc5 -SIZE (stretchr-testify-v1.3.0_GH0.tar.gz) = 102859 +SHA256 (stretchr-testify-v1.4.0_GH0.tar.gz) = 3ae072321569a8cd6d77de8f3be774165e136198ce808df0a31589237ba59698 +SIZE (stretchr-testify-v1.4.0_GH0.tar.gz) = 110085 SHA256 (tinylib-msgp-v1.1.0_GH0.tar.gz) = 30ac583b725d84aee147c26d1bc31e8770a3911e8437461cda0e53fb69c54570 SIZE (tinylib-msgp-v1.1.0_GH0.tar.gz) = 77923 SHA256 (uber-jaeger-client-go-v2.15.0_GH0.tar.gz) = 6b89d1a6684475fcbaed3f9d2137df072e2c1f7b15feb69a8ef8963804c44c94 SIZE (uber-jaeger-client-go-v2.15.0_GH0.tar.gz) = 164460 SHA256 (uber-jaeger-lib-v1.5.0_GH0.tar.gz) = 98901cc41df77858a2f601ad48b45bdf72af40c56f15bc5182416b15db0daac3 SIZE (uber-jaeger-lib-v1.5.0_GH0.tar.gz) = 31655 -SHA256 (gitlab-org-gitaly-ca21a624582be7bcf4d43075be2a7e5981e191fa_GL0.tar.gz) = 92d38de0294338d8b9bb27205f799c60b5bed2e0ac651a87029fc203301a688a -SIZE (gitlab-org-gitaly-ca21a624582be7bcf4d43075be2a7e5981e191fa_GL0.tar.gz) = 2772214 +SHA256 (gitlab-org-gitaly-52a09a56236c4d44bc4cc5865ff58dc2e6fa459f_GL0.tar.gz) = 7a74b9c1c605ce28f7744e194273f665f252f6672e65304014a85842433ce72e +SIZE (gitlab-org-gitaly-52a09a56236c4d44bc4cc5865ff58dc2e6fa459f_GL0.tar.gz) = 2789978 SHA256 (gitlab-org-labkit-0c3fc7cdd57c57da5ab474aa72b6640d2bdc9ebb_GL0.tar.gz) = 449f2e2d1cedea1ea276a1d8132d0244a4c5ffc465d2a24b824ab9790641f78e SIZE (gitlab-org-labkit-0c3fc7cdd57c57da5ab474aa72b6640d2bdc9ebb_GL0.tar.gz) = 2280466 Modified: branches/2019Q4/devel/gitaly/files/patch-config.toml.example ============================================================================== --- branches/2019Q4/devel/gitaly/files/patch-config.toml.example Wed Nov 27 20:38:43 2019 (r518542) +++ branches/2019Q4/devel/gitaly/files/patch-config.toml.example Wed Nov 27 20:40:02 2019 (r518543) @@ -1,7 +1,8 @@ ---- config.toml.example.orig 2019-07-11 10:11:31 UTC +--- config.toml.example.orig 2019-11-18 19:41:52 UTC +++ config.toml.example -@@ -1,9 +1,9 @@ - # Example Gitaly configuration file +@@ -2,10 +2,10 @@ + # Documentation lives at https://docs.gitlab.com/ee/administration/gitaly/ and + # https://docs.gitlab.com/ee//administration/gitaly/reference -socket_path = "/home/git/gitlab/tmp/sockets/private/gitaly.socket" +socket_path = "%%PREFIX%%/www/gitlab-ce/tmp/sockets/private/gitaly.socket" @@ -12,7 +13,7 @@ # # Optional: listen on a TCP socket. This is insecure (no authentication) # listen_addr = "localhost:9999" -@@ -22,13 +22,13 @@ bin_dir = "/home/git/gitaly" +@@ -24,13 +24,13 @@ bin_dir = "/home/git/gitaly" # key_path = '/home/git/key.pem' # # Git settings @@ -29,7 +30,7 @@ # # You can optionally configure more storages for this Gitaly instance to serve up # -@@ -58,7 +58,7 @@ dir = "/home/git/gitlab/log" +@@ -60,7 +60,7 @@ dir = "/home/git/gitlab/log" [gitaly-ruby] # The directory where gitaly-ruby is installed @@ -38,7 +39,7 @@ # # Gitaly-ruby resident set size (RSS) that triggers a memory restart (bytes) # max_rss = 200000000 -@@ -74,7 +74,7 @@ dir = "/home/git/gitaly/ruby" +@@ -80,7 +80,7 @@ dir = "/home/git/gitaly/ruby" [gitlab-shell] # The directory where gitlab-shell is installed Modified: branches/2019Q4/devel/gitaly/files/patch-ruby_Gemfile ============================================================================== --- branches/2019Q4/devel/gitaly/files/patch-ruby_Gemfile Wed Nov 27 20:38:43 2019 (r518542) +++ branches/2019Q4/devel/gitaly/files/patch-ruby_Gemfile Wed Nov 27 20:40:02 2019 (r518543) @@ -1,17 +1,8 @@ ---- ruby/Gemfile.orig 2019-08-22 16:24:24 UTC +--- ruby/Gemfile.orig 2019-11-22 14:21:07 UTC +++ ruby/Gemfile -@@ -7,7 +7,7 @@ gem 'rugged', '~> 0.28' - gem 'github-linguist', '~> 6.1', require: 'linguist' - gem 'gitlab-markup', '~> 1.7.0' - gem 'activesupport', '~> 5.2.3' --gem 'rdoc', '~> 4.2' -+gem 'rdoc', '~> 6.0' - gem 'gitlab-gollum-lib', '~> 4.2.7.7', require: false - gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4.2', require: false - gem 'grpc', '~> 1.19.0' @@ -24,17 +24,3 @@ gem 'licensee', '~> 8.9.0' - gem 'google-protobuf', '~> 3.7.1' + gem 'google-protobuf', '~> 3.8.0' -group :development, :test do - gem 'rubocop', '~> 0.69', require: false Modified: branches/2019Q4/devel/gitaly/pkg-plist ============================================================================== --- branches/2019Q4/devel/gitaly/pkg-plist Wed Nov 27 20:38:43 2019 (r518542) +++ branches/2019Q4/devel/gitaly/pkg-plist Wed Nov 27 20:40:02 2019 (r518543) @@ -9,8 +9,6 @@ %%DATADIR%%/ruby/git-hooks/update %%DATADIR%%/ruby/gitlab-shell/.codeclimate.yml %%DATADIR%%/ruby/gitlab-shell/.gitlab-ci.yml -%%DATADIR%%/ruby/gitlab-shell/.rubocop.yml -%%DATADIR%%/ruby/gitlab-shell/.ruby-version %%DATADIR%%/ruby/gitlab-shell/CHANGELOG %%DATADIR%%/ruby/gitlab-shell/CONTRIBUTING.md %%DATADIR%%/ruby/gitlab-shell/Gemfile @@ -89,7 +87,6 @@ %%DATADIR%%/ruby/lib/gitaly_server/client.rb %%DATADIR%%/ruby/lib/gitaly_server/commit_service.rb %%DATADIR%%/ruby/lib/gitaly_server/conflicts_service.rb -%%DATADIR%%/ruby/lib/gitaly_server/diff_service.rb %%DATADIR%%/ruby/lib/gitaly_server/exception_sanitizer_interceptor.rb %%DATADIR%%/ruby/lib/gitaly_server/health_service.rb %%DATADIR%%/ruby/lib/gitaly_server/operations_service.rb @@ -155,6 +152,8 @@ %%DATADIR%%/ruby/proto/gitaly/conflicts_services_pb.rb %%DATADIR%%/ruby/proto/gitaly/diff_pb.rb %%DATADIR%%/ruby/proto/gitaly/diff_services_pb.rb +%%DATADIR%%/ruby/proto/gitaly/hook_pb.rb +%%DATADIR%%/ruby/proto/gitaly/hook_services_pb.rb %%DATADIR%%/ruby/proto/gitaly/namespace_pb.rb %%DATADIR%%/ruby/proto/gitaly/namespace_services_pb.rb %%DATADIR%%/ruby/proto/gitaly/objectpool_pb.rb @@ -174,8 +173,6 @@ %%DATADIR%%/ruby/proto/gitaly/smarthttp_services_pb.rb %%DATADIR%%/ruby/proto/gitaly/ssh_pb.rb %%DATADIR%%/ruby/proto/gitaly/ssh_services_pb.rb -%%DATADIR%%/ruby/proto/gitaly/storage_pb.rb -%%DATADIR%%/ruby/proto/gitaly/storage_services_pb.rb %%DATADIR%%/ruby/proto/gitaly/version.rb %%DATADIR%%/ruby/proto/gitaly/wiki_pb.rb %%DATADIR%%/ruby/proto/gitaly/wiki_services_pb.rb From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:40:57 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9F1AB1B8243; Wed, 27 Nov 2019 20:40:57 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXjP3Px4z4ZKp; Wed, 27 Nov 2019 20:40:57 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 583E61B05C; Wed, 27 Nov 2019 20:40:57 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKevm4017469; Wed, 27 Nov 2019 20:40:57 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKeuup017467; Wed, 27 Nov 2019 20:40:56 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272040.xARKeuup017467@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:40:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518544 - branches/2019Q4/www/gitlab-pages X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/www/gitlab-pages X-SVN-Commit-Revision: 518544 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.29 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, 27 Nov 2019 20:40:57 -0000 Author: mfechner Date: Wed Nov 27 20:40:56 2019 New Revision: 518544 URL: https://svnweb.freebsd.org/changeset/ports/518544 Log: MFH: r518203 Update to 1.12.0 which is required for gitlab-ce 12.5. Approved by: ports-secteam (joneum) Modified: branches/2019Q4/www/gitlab-pages/Makefile branches/2019Q4/www/gitlab-pages/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/gitlab-pages/Makefile ============================================================================== --- branches/2019Q4/www/gitlab-pages/Makefile Wed Nov 27 20:40:02 2019 (r518543) +++ branches/2019Q4/www/gitlab-pages/Makefile Wed Nov 27 20:40:56 2019 (r518544) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gitlab-pages -PORTVERSION= 1.11.0 +PORTVERSION= 1.12.0 CATEGORIES= www MAINTAINER= swills@FreeBSD.org @@ -17,9 +17,10 @@ USE_GITHUB= nodefault GL_ACCOUNT= gitlab-org # Find the here: https://gitlab.com/gitlab-org/gitlab-pages/tags -GL_COMMIT= fa804e9f422cb1525324e917a4b318bea8596067 +GL_COMMIT= 9c69ac5306545be017701dfff7afe25c8b814c3f # Build with: make gomod-vendor +# 39dd GH_TUPLE= \ beorn7:perks:v1.0.1:beorn7_perks/vendor/github.com/beorn7/perks \ certifi:gocertifi:a5e0173ced67:certifi_gocertifi/vendor/github.com/certifi/gocertifi \ @@ -36,13 +37,9 @@ GH_TUPLE= \ golang:sys:bbd175535a8b:golang_sys/vendor/golang.org/x/sys \ golang:text:v0.3.0:golang_text/vendor/golang.org/x/text \ golang:tools:2dc213d980bc:golang_tools/vendor/golang.org/x/tools \ - google:go-genproto:bd91e49a0898:google_go_genproto/vendor/google.golang.org/genproto \ gorilla:context:v1.1.1:gorilla_context/vendor/github.com/gorilla/context \ gorilla:securecookie:v1.1.1:gorilla_securecookie/vendor/github.com/gorilla/securecookie \ gorilla:sessions:v1.2.0:gorilla_sessions/vendor/github.com/gorilla/sessions \ - grpc-ecosystem:go-grpc-middleware:v1.0.0:grpc_ecosystem_go_grpc_middleware/vendor/github.com/grpc-ecosystem/go-grpc-middleware \ - grpc-ecosystem:go-grpc-prometheus:v1.2.0:grpc_ecosystem_go_grpc_prometheus/vendor/github.com/grpc-ecosystem/go-grpc-prometheus \ - grpc:grpc-go:v1.19.1:grpc_grpc_go/vendor/google.golang.org/grpc \ kardianos:osext:2bc1f35cddc0:kardianos_osext/vendor/github.com/kardianos/osext \ karrick:godirwalk:v1.10.12:karrick_godirwalk/vendor/github.com/karrick/godirwalk \ konsorten:go-windows-terminal-sequences:v1.0.2:konsorten_go_windows_terminal_sequences/vendor/github.com/konsorten/go-windows-terminal-sequences \ @@ -59,8 +56,8 @@ GH_TUPLE= \ sirupsen:logrus:v1.4.2:sirupsen_logrus/vendor/github.com/sirupsen/logrus \ stretchr:testify:v1.4.0:stretchr_testify/vendor/github.com/stretchr/testify \ wadey:gocovmerge:b5bfa59ec0ad:wadey_gocovmerge/vendor/github.com/wadey/gocovmerge + GL_TUPLE= \ - gitlab-org:gitaly:c013d9f144d1d288fed054d0541241b4c6d3bdcc:gitlab_org_gitaly/vendor/gitlab.com/gitlab-org/gitaly \ gitlab-org:labkit:3253d7975ca73714779c0a1fc95a27fb678071b6:gitlab_org_labkit/vendor/gitlab.com/gitlab-org/labkit \ lupine:go-mimedb:e8af1d65987739a7ab277dedd9772c7398154ff3:lupine_go_mimedb/vendor/gitlab.com/lupine/go-mimedb Modified: branches/2019Q4/www/gitlab-pages/distinfo ============================================================================== --- branches/2019Q4/www/gitlab-pages/distinfo Wed Nov 27 20:40:02 2019 (r518543) +++ branches/2019Q4/www/gitlab-pages/distinfo Wed Nov 27 20:40:56 2019 (r518544) @@ -1,4 +1,4 @@ -TIMESTAMP = 1571856475 +TIMESTAMP = 1574433094 SHA256 (beorn7-perks-v1.0.1_GH0.tar.gz) = 98db84bb0224a26094e6adba91b7ee7a1a7ace28cb648d818f8e779e6a19f825 SIZE (beorn7-perks-v1.0.1_GH0.tar.gz) = 10867 SHA256 (certifi-gocertifi-a5e0173ced67_GH0.tar.gz) = f021fd5f62b221aac04e69b030ace59fd2a0912433fb6b938965a61f49410ba6 @@ -29,20 +29,12 @@ SHA256 (golang-text-v0.3.0_GH0.tar.gz) = 8f4c9a048345b SIZE (golang-text-v0.3.0_GH0.tar.gz) = 6102619 SHA256 (golang-tools-2dc213d980bc_GH0.tar.gz) = dc372f7b80fb4d12ba60445427b1e7e9138942183ae4353f3f894c04e507df2d SIZE (golang-tools-2dc213d980bc_GH0.tar.gz) = 2267969 -SHA256 (google-go-genproto-bd91e49a0898_GH0.tar.gz) = 659ae77d08446b4bcb7d6b8a9c050d903e6e13fbd903541da7bf9966142e9377 -SIZE (google-go-genproto-bd91e49a0898_GH0.tar.gz) = 2429775 SHA256 (gorilla-context-v1.1.1_GH0.tar.gz) = 2dfdd051c238695bf9ebfed0bf6a8c533507ac0893bce23be5930e973736bb03 SIZE (gorilla-context-v1.1.1_GH0.tar.gz) = 4574 SHA256 (gorilla-securecookie-v1.1.1_GH0.tar.gz) = b7897b2243f0d43913aca318593c5c2586294fcd3265189d564ddda1b880fe95 SIZE (gorilla-securecookie-v1.1.1_GH0.tar.gz) = 41240 SHA256 (gorilla-sessions-v1.2.0_GH0.tar.gz) = 576d154ff12273d88d25864d14bd9b0fb1a864274d1fb3e224546529068c8968 SIZE (gorilla-sessions-v1.2.0_GH0.tar.gz) = 13352 -SHA256 (grpc-ecosystem-go-grpc-middleware-v1.0.0_GH0.tar.gz) = e9178768b55709d2fc2b5a509baceccb4e51d841fa13ed409e16455435e6917b -SIZE (grpc-ecosystem-go-grpc-middleware-v1.0.0_GH0.tar.gz) = 97266 -SHA256 (grpc-ecosystem-go-grpc-prometheus-v1.2.0_GH0.tar.gz) = eba66530952a126ab869205bdb909af607bfd9eb09f00207b62eb29140258aa9 -SIZE (grpc-ecosystem-go-grpc-prometheus-v1.2.0_GH0.tar.gz) = 24760 -SHA256 (grpc-grpc-go-v1.19.1_GH0.tar.gz) = 05faffafaadb6fdd4be7862aeb987cb2aa57f59cb0b695bcf673e6bd6182207f -SIZE (grpc-grpc-go-v1.19.1_GH0.tar.gz) = 600232 SHA256 (kardianos-osext-2bc1f35cddc0_GH0.tar.gz) = c032455620be4be434428bfe5b73679ccd7c01f402607c45204d233ce8923309 SIZE (kardianos-osext-2bc1f35cddc0_GH0.tar.gz) = 4898 SHA256 (karrick-godirwalk-v1.10.12_GH0.tar.gz) = 738995006bf8412f17cbc2d8ef717f7568139548fdee311531ee68f90c39ac2d @@ -75,10 +67,8 @@ SHA256 (stretchr-testify-v1.4.0_GH0.tar.gz) = 3ae07232 SIZE (stretchr-testify-v1.4.0_GH0.tar.gz) = 110085 SHA256 (wadey-gocovmerge-b5bfa59ec0ad_GH0.tar.gz) = 0f865bd53c02e7d89115aaa60ce8b8147b1f71238f2cf33a6593465f845703cb SIZE (wadey-gocovmerge-b5bfa59ec0ad_GH0.tar.gz) = 2309 -SHA256 (gitlab-org-gitlab-pages-fa804e9f422cb1525324e917a4b318bea8596067_GL0.tar.gz) = 8f4b5bf256b86f13de5655cc448e27c14df6c5cd44e930109aa182fcbe29ab6d -SIZE (gitlab-org-gitlab-pages-fa804e9f422cb1525324e917a4b318bea8596067_GL0.tar.gz) = 106167 -SHA256 (gitlab-org-gitaly-c013d9f144d1d288fed054d0541241b4c6d3bdcc_GL0.tar.gz) = a1f406a9eaef26a2e39e4cf9adc417fdbce45c164de46bec6aa2e2d0cf1388df -SIZE (gitlab-org-gitaly-c013d9f144d1d288fed054d0541241b4c6d3bdcc_GL0.tar.gz) = 2743550 +SHA256 (gitlab-org-gitlab-pages-9c69ac5306545be017701dfff7afe25c8b814c3f_GL0.tar.gz) = ba13c18ec141703f4d8e460e0379342d6e9cc18a50c2ac00888cc31d88a0867e +SIZE (gitlab-org-gitlab-pages-9c69ac5306545be017701dfff7afe25c8b814c3f_GL0.tar.gz) = 103572 SHA256 (gitlab-org-labkit-3253d7975ca73714779c0a1fc95a27fb678071b6_GL0.tar.gz) = aa9fd1639498d41852acb1c894af5507009de15586a21413307a6832f68e6c3c SIZE (gitlab-org-labkit-3253d7975ca73714779c0a1fc95a27fb678071b6_GL0.tar.gz) = 2660149 SHA256 (lupine-go-mimedb-e8af1d65987739a7ab277dedd9772c7398154ff3_GL0.tar.gz) = 1312f727d2910acf56382c6dfc26eb4d504fb02d79d7fc731f514d051e275d91 From owner-svn-ports-branches@freebsd.org Wed Nov 27 20:52:22 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4A47F1B8877; Wed, 27 Nov 2019 20:52:22 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NXyZ230hz4bKB; Wed, 27 Nov 2019 20:52:22 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 29FDD1B3E9; Wed, 27 Nov 2019 20:52:22 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xARKqMJH028475; Wed, 27 Nov 2019 20:52:22 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xARKqGBm027809; Wed, 27 Nov 2019 20:52:16 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911272052.xARKqGBm027809@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 27 Nov 2019 20:52:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518545 - in branches/2019Q4: . databases databases/p5-AnyEvent-Redis databases/p5-Redis-Fast databases/py-redis databases/py-redis2 databases/redis databases/redis-devel databases/redi... X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in branches/2019Q4: . databases databases/p5-AnyEvent-Redis databases/p5-Redis-Fast databases/py-redis databases/py-redis2 databases/redis databases/redis-devel databases/redis/files databases/redis4 ... X-SVN-Commit-Revision: 518545 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.29 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, 27 Nov 2019 20:52:22 -0000 Author: mfechner Date: Wed Nov 27 20:52:15 2019 New Revision: 518545 URL: https://svnweb.freebsd.org/changeset/ports/518545 Log: MFH: r517122 r518107 r518144 r518204 r518523 www/gitlab-ce: bugfix release to 12.4.2. Changelog: https://about.gitlab.com/blog/2019/11/04/gitlab-12-4-2-released/ Repocopy the databases/redis to the databases/redis4 to update the databases/redis port to the latest stable version, 5.0.6. PR: 241526 Reviewed by: portmgr (adamw) Approved by: portmgr (adamw) Differential Revision: https://reviews.freebsd.org/D22336 www/gitlab-ce: Bugfix update to 12.4.3. Changelog: https://about.gitlab.com/blog/2019/11/18/gitlab-12-4-3-released/ Update to 12.5.0. Changelog: https://about.gitlab.com/blog/2019/11/22/gitlab-12-5-released/ Security update to 12.5.1. Changelog: https://about.gitlab.com/blog/2019/11/27/security-release-gitlab-12-5-1-released/ Security: 1aa7a094-1147-11ea-b537-001b217b3468 Approved by: ports-secteam (joneum) Added: branches/2019Q4/databases/redis4/ - copied from r518107, head/databases/redis4/ Deleted: branches/2019Q4/databases/redis/files/patch-src-config.h branches/2019Q4/databases/redis/files/patch-src-lua_cjson.c Modified: branches/2019Q4/UPDATING branches/2019Q4/databases/Makefile branches/2019Q4/databases/p5-AnyEvent-Redis/Makefile branches/2019Q4/databases/p5-Redis-Fast/Makefile branches/2019Q4/databases/py-redis/Makefile branches/2019Q4/databases/py-redis2/Makefile branches/2019Q4/databases/redis-devel/Makefile branches/2019Q4/databases/redis/Makefile branches/2019Q4/databases/redis/distinfo branches/2019Q4/databases/redis/files/extra-patch-src-Makefile.lua branches/2019Q4/databases/redis/files/extra-patch-src-Makefile.luajit branches/2019Q4/databases/redis/files/patch-deps-Makefile branches/2019Q4/databases/redis/files/patch-deps-hiredis-Makefile branches/2019Q4/databases/redis/files/patch-deps-hiredis-net.c branches/2019Q4/databases/redis/files/patch-deps-linenoise-Makefile branches/2019Q4/databases/redis/files/patch-redis.conf branches/2019Q4/databases/redis/files/patch-src-Makefile branches/2019Q4/databases/redis/files/patch-src-mkreleasehdr.sh branches/2019Q4/databases/rubygem-hiredis/Makefile branches/2019Q4/devel/gitblit/Makefile branches/2019Q4/devel/py-dj22-django-rq/Makefile branches/2019Q4/irc/anope/Makefile branches/2019Q4/net-im/rubygem-lita/Makefile branches/2019Q4/net/opensips/Makefile branches/2019Q4/security/openvas8-scanner/Makefile branches/2019Q4/www/gitlab-ce/Makefile branches/2019Q4/www/gitlab-ce/distinfo branches/2019Q4/www/gitlab-ce/files/patch-Gemfile branches/2019Q4/www/gitlab-ce/pkg-message branches/2019Q4/www/gitlab-ce/pkg-plist Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/UPDATING ============================================================================== --- branches/2019Q4/UPDATING Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/UPDATING Wed Nov 27 20:52:15 2019 (r518545) @@ -5,6 +5,20 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20191108: + AFFECTS: users of databases/redis[-devel] + AUTHOR: osa@FreeBSD.org + + The databases/redis port has been updated to the recent stable release. + Users wanting to stay on v4.x can replace databases/redis with + databases/redis4 with one of the following commands: + + # pkg install databases/redis4 + or + # portmaster -o databases/redis4 databases/redis + or + # portupgrade -o databases/redis4 databases/redis + 20190930: AFFECTS: users of net-mgmt/netbox AUTHOR: kai@FreeBSD.org Modified: branches/2019Q4/databases/Makefile ============================================================================== --- branches/2019Q4/databases/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -889,6 +889,7 @@ SUBDIR += recutils SUBDIR += redis SUBDIR += redis-devel + SUBDIR += redis4 SUBDIR += redis_exporter SUBDIR += redisdesktopmanager SUBDIR += retcl Modified: branches/2019Q4/databases/p5-AnyEvent-Redis/Makefile ============================================================================== --- branches/2019Q4/databases/p5-AnyEvent-Redis/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/p5-AnyEvent-Redis/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -3,7 +3,7 @@ PORTNAME= AnyEvent-Redis PORTVERSION= 0.24 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DGL Modified: branches/2019Q4/databases/p5-Redis-Fast/Makefile ============================================================================== --- branches/2019Q4/databases/p5-Redis-Fast/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/p5-Redis-Fast/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -2,6 +2,7 @@ PORTNAME= Redis-Fast PORTVERSION= 0.23 +PORTREVISION= 1 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: branches/2019Q4/databases/py-redis/Makefile ============================================================================== --- branches/2019Q4/databases/py-redis/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/py-redis/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -3,6 +3,7 @@ PORTNAME= redis PORTVERSION= 3.2.1 +PORTREVISION= 1 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: branches/2019Q4/databases/py-redis2/Makefile ============================================================================== --- branches/2019Q4/databases/py-redis2/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/py-redis2/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -3,6 +3,7 @@ PORTNAME= redis PORTVERSION= 2.10.6 +PORTREVISION= 1 CATEGORIES= databases python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMESUFFIX= 2 Modified: branches/2019Q4/databases/redis-devel/Makefile ============================================================================== --- branches/2019Q4/databases/redis-devel/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis-devel/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -4,6 +4,7 @@ PORTNAME= redis DISTVERSION= 5.0.5 PORTREVISION= 1 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ PKGNAMESUFFIX= -devel @@ -65,7 +66,7 @@ USES+= tcl:build LDFLAGS+= -lpthread -lm -lexecinfo -CONFLICTS?= redis-4.* +CONFLICTS?= redis4-4.* redis-5.* USE_RC_SUBR= redis sentinel BIN_FILES= redis-benchmark redis-check-aof redis-check-rdb \ Modified: branches/2019Q4/databases/redis/Makefile ============================================================================== --- branches/2019Q4/databases/redis/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 4.0.14 -PORTREVISION= 1 +PORTVERSION= 5.0.6 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ @@ -12,15 +11,19 @@ COMMENT= Persistent key-value database with built-in n LICENSE= BSD3CLAUSE -OPTIONS_DEFINE= TESTS TRIB +OPTIONS_DEFINE= JEMALLOC TESTS TRIB OPTIONS_RADIO= EXTLUA OPTIONS_RADIO_EXTLUA= LUA LUAJIT OPTIONS_SUB= yes +JEMALLOC_DESC= Use jemalloc LUA_DESC= Use lang/lua instead of builtin lua LUAJIT_DESC= Use lang/luajit instead of builtin lua TESTS_DESC= Install lang/tcl for redis unit tests TRIB_DESC= Install redis-trib.rb (lang/ruby req.) +USES+= compiler gmake +MAKE_ENV= "V=yo" + .include .if ${ARCH} == i386 && ! ${CFLAGS:M-march=*} @@ -29,6 +32,10 @@ USE_GCC= yes CFLAGS+= -march=i586 .endif +.if ${PORT_OPTIONS:MJEMALLOC} +MAKE_ENV+= "USE_JEMALLOC=yes" +.endif + .if ${PORT_OPTIONS:MTRIB} CATEGORIES+= ruby USE_RUBY= yes @@ -56,10 +63,8 @@ USES+= tcl:build LDFLAGS+= -lpthread -lm -lexecinfo -CONFLICTS?= redis-devel-5.* +CONFLICTS?= redis4-4.* redis-devel-5.* -USES+= gmake -MAKE_ENV= "V=yo" USE_RC_SUBR= redis sentinel BIN_FILES= redis-benchmark redis-check-aof redis-check-rdb \ redis-cli redis-sentinel redis-server @@ -84,10 +89,18 @@ PLIST_SUB+= REDIS_USER=${USERS} \ REDIS_DBDIR=${REDIS_DBDIR} \ REDIS_RUNDIR=${REDIS_RUNDIR} -.if ${PORT_OPTIONS:MLUAJIT} || ${PORT_OPTIONS:MLUA} +.include + post-patch: +.if ${PORT_OPTIONS:MJEMALLOC} + @${REINPLACE_CMD} '35s!Linux!FreeBSD!g' ${WRKSRC}/src/Makefile +.endif +.if ${PORT_OPTIONS:MLUA} || ${PORT_OPTIONS:MLUAJIT} @cd ${WRKSRC}/deps/lua/src && ${CP} fpconv.* lua_* strbuf.* ${WRKSRC}/src/ .endif +.if ${CHOSEN_COMPILER_TYPE} == gcc && ${COMPILER_VERSION} <= 42 + ${REINPLACE_CMD} -e '/pragma/d' ${WRKSRC}/src/lzf_d.c +.endif post-build: ${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ @@ -107,4 +120,4 @@ do-install: do-test: @cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl -.include +.include Modified: branches/2019Q4/databases/redis/distinfo ============================================================================== --- branches/2019Q4/databases/redis/distinfo Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/distinfo Wed Nov 27 20:52:15 2019 (r518545) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553045896 -SHA256 (redis-4.0.14.tar.gz) = 1e1e18420a86cfb285933123b04a82e1ebda20bfb0a289472745a087587e93a7 -SIZE (redis-4.0.14.tar.gz) = 1740967 +TIMESTAMP = 1572268200 +SHA256 (redis-5.0.6.tar.gz) = 6624841267e142c5d5d5be292d705f8fb6070677687c5aad1645421a936d22b3 +SIZE (redis-5.0.6.tar.gz) = 1979873 Modified: branches/2019Q4/databases/redis/files/extra-patch-src-Makefile.lua ============================================================================== --- branches/2019Q4/databases/redis/files/extra-patch-src-Makefile.lua Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/files/extra-patch-src-Makefile.lua Wed Nov 27 20:52:15 2019 (r518545) @@ -1,5 +1,5 @@ ---- src/Makefile.orig 2017-08-06 10:42:53.992510000 -0400 -+++ src/Makefile 2017-08-06 10:44:57.344366000 -0400 +--- src/Makefile.orig 2018-10-18 18:09:43.930566000 -0400 ++++ src/Makefile 2018-10-18 18:10:32.562125000 -0400 @@ -16,7 +16,7 @@ uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not') @@ -30,7 +30,7 @@ ifeq ($(MALLOC),tcmalloc) FINAL_CFLAGS+= -DUSE_TCMALLOC @@ -130,6 +130,9 @@ - FINAL_LIBS+= ../deps/jemalloc/lib/libjemalloc.a + FINAL_LIBS := ../deps/jemalloc/lib/libjemalloc.a $(FINAL_LIBS) endif +FINAL_CFLAGS+=-I${PREFIX}/include/lua51 @@ -42,10 +42,10 @@ @@ -150,6 +153,7 @@ REDIS_SERVER_NAME=redis-server REDIS_SENTINEL_NAME=redis-sentinel - REDIS_SERVER_OBJ=adlist.o quicklist.o ae.o anet.o dict.o server.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o sentinel.o notify.o setproctitle.o blocked.o hyperloglog.o latency.o sparkline.o redis-check-rdb.o redis-check-aof.o geo.o lazyfree.o module.o evict.o expire.o geohash.o geohash_helper.o childinfo.o defrag.o siphash.o rax.o + REDIS_SERVER_OBJ=adlist.o quicklist.o ae.o anet.o dict.o server.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o sentinel.o notify.o setproctitle.o blocked.o hyperloglog.o latency.o sparkline.o redis-check-rdb.o redis-check-aof.o geo.o lazyfree.o module.o evict.o expire.o geohash.o geohash_helper.o childinfo.o defrag.o siphash.o rax.o t_stream.o listpack.o localtime.o lolwut.o lolwut5.o +REDIS_SERVER_OBJ+=fpconv.o lua_bit.o lua_cjson.o lua_cmsgpack.o lua_struct.o strbuf.o REDIS_CLI_NAME=redis-cli - REDIS_CLI_OBJ=anet.o adlist.o redis-cli.o zmalloc.o release.o anet.o ae.o crc64.o + REDIS_CLI_OBJ=anet.o adlist.o dict.o redis-cli.o zmalloc.o release.o anet.o ae.o crc64.o siphash.o crc16.o REDIS_BENCHMARK_NAME=redis-benchmark @@ -201,7 +205,7 @@ Modified: branches/2019Q4/databases/redis/files/extra-patch-src-Makefile.luajit ============================================================================== --- branches/2019Q4/databases/redis/files/extra-patch-src-Makefile.luajit Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/files/extra-patch-src-Makefile.luajit Wed Nov 27 20:52:15 2019 (r518545) @@ -1,5 +1,5 @@ ---- src/Makefile.orig 2017-08-06 10:48:29.559222000 -0400 -+++ src/Makefile 2017-08-06 10:50:45.155432000 -0400 +--- src/Makefile.orig 2018-10-18 18:11:24.649811000 -0400 ++++ src/Makefile 2018-10-18 18:11:35.160523000 -0400 @@ -16,7 +16,7 @@ uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not') @@ -30,7 +30,7 @@ ifeq ($(MALLOC),tcmalloc) FINAL_CFLAGS+= -DUSE_TCMALLOC @@ -130,6 +130,9 @@ - FINAL_LIBS+= ../deps/jemalloc/lib/libjemalloc.a + FINAL_LIBS := ../deps/jemalloc/lib/libjemalloc.a $(FINAL_LIBS) endif +FINAL_CFLAGS+=-I${PREFIX}/include/luajit-2.0 @@ -42,10 +42,10 @@ @@ -150,6 +153,7 @@ REDIS_SERVER_NAME=redis-server REDIS_SENTINEL_NAME=redis-sentinel - REDIS_SERVER_OBJ=adlist.o quicklist.o ae.o anet.o dict.o server.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o sentinel.o notify.o setproctitle.o blocked.o hyperloglog.o latency.o sparkline.o redis-check-rdb.o redis-check-aof.o geo.o lazyfree.o module.o evict.o expire.o geohash.o geohash_helper.o childinfo.o defrag.o siphash.o rax.o + REDIS_SERVER_OBJ=adlist.o quicklist.o ae.o anet.o dict.o server.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o sentinel.o notify.o setproctitle.o blocked.o hyperloglog.o latency.o sparkline.o redis-check-rdb.o redis-check-aof.o geo.o lazyfree.o module.o evict.o expire.o geohash.o geohash_helper.o childinfo.o defrag.o siphash.o rax.o t_stream.o listpack.o localtime.o lolwut.o lolwut5.o +REDIS_SERVER_OBJ+=fpconv.o lua_bit.o lua_cjson.o lua_cmsgpack.o lua_struct.o strbuf.o REDIS_CLI_NAME=redis-cli - REDIS_CLI_OBJ=anet.o adlist.o redis-cli.o zmalloc.o release.o anet.o ae.o crc64.o + REDIS_CLI_OBJ=anet.o adlist.o dict.o redis-cli.o zmalloc.o release.o anet.o ae.o crc64.o siphash.o crc16.o REDIS_BENCHMARK_NAME=redis-benchmark @@ -201,7 +205,7 @@ Modified: branches/2019Q4/databases/redis/files/patch-deps-Makefile ============================================================================== --- branches/2019Q4/databases/redis/files/patch-deps-Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/files/patch-deps-Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -1,6 +1,6 @@ ---- deps/Makefile.orig 2016-02-02 19:38:43.438304000 -0500 -+++ deps/Makefile 2016-02-02 19:40:05.911356000 -0500 -@@ -59,7 +59,7 @@ +--- deps/Makefile.orig 2019-09-25 10:40:18 UTC ++++ deps/Makefile +@@ -58,7 +58,7 @@ ifeq ($(uname_S),SunOS) LUA_CFLAGS= -D__C99FEATURES__=1 endif @@ -9,7 +9,7 @@ LUA_LDFLAGS+= $(LDFLAGS) # lua's Makefile defines AR="ar rcu", which is unusual, and makes it more # challenging to cross-compile lua (and redis). These defines make it easier -@@ -69,7 +69,7 @@ +@@ -68,7 +68,7 @@ ARFLAGS=rcu lua: .make-prerequisites @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) Modified: branches/2019Q4/databases/redis/files/patch-deps-hiredis-Makefile ============================================================================== --- branches/2019Q4/databases/redis/files/patch-deps-hiredis-Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/files/patch-deps-hiredis-Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -1,6 +1,6 @@ ---- deps/hiredis/Makefile.orig 2017-05-01 19:46:31.733229000 -0400 -+++ deps/hiredis/Makefile 2017-05-01 19:48:37.150358000 -0400 -@@ -15,7 +15,7 @@ +--- deps/hiredis/Makefile.orig 2019-09-25 10:40:18 UTC ++++ deps/hiredis/Makefile +@@ -15,7 +15,7 @@ HIREDIS_PATCH=$(shell grep HIREDIS_PATCH hiredis.h | a HIREDIS_SONAME=$(shell grep HIREDIS_SONAME hiredis.h | awk '{print $$3}') # Installation related variables and target @@ -9,7 +9,7 @@ INCLUDE_PATH?=include/hiredis LIBRARY_PATH?=lib PKGCONF_PATH?=pkgconfig -@@ -38,10 +38,10 @@ +@@ -38,10 +38,10 @@ export REDIS_TEST_CONFIG # Fallback to gcc when $CC is not in $PATH. CC:=$(shell sh -c 'type $(CC) >/dev/null 2>/dev/null && echo $(CC) || echo gcc') CXX:=$(shell sh -c 'type $(CXX) >/dev/null 2>/dev/null && echo $(CXX) || echo g++') @@ -23,10 +23,11 @@ REAL_LDFLAGS=$(LDFLAGS) $(ARCH) DYLIBSUFFIX=so -@@ -60,6 +60,15 @@ +@@ -59,6 +59,15 @@ ifeq ($(uname_S),SunOS) + REAL_LDFLAGS+= -ldl -lnsl -lsocket DYLIB_MAKE_CMD=$(CC) -G -o $(DYLIBNAME) -h $(DYLIB_MINOR_NAME) $(LDFLAGS) INSTALL= cp -r - endif ++endif +ifeq ($(uname_S),FreeBSD) + CFLAGS?=$(CFLAGS) + CCLINK?=-pthread @@ -35,7 +36,6 @@ + DYLIB_MAKE_CMD?=$(CC) -o ${DYLIBNAME} ${OBJ} + STLIBNAME?=libhiredis.a + STLIB_MAKE_CMD?=ar rcs ${STLIBNAME} ${OBJ} -+endif + endif ifeq ($(uname_S),Darwin) DYLIBSUFFIX=dylib - DYLIB_MINOR_NAME=$(LIBNAME).$(HIREDIS_SONAME).$(DYLIBSUFFIX) Modified: branches/2019Q4/databases/redis/files/patch-deps-hiredis-net.c ============================================================================== --- branches/2019Q4/databases/redis/files/patch-deps-hiredis-net.c Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/files/patch-deps-hiredis-net.c Wed Nov 27 20:52:15 2019 (r518545) @@ -1,6 +1,6 @@ ---- deps/hiredis/net.c.orig 2017-04-22 07:23:27.000000000 -0400 -+++ deps/hiredis/net.c 2017-05-05 20:02:09.292479000 -0400 -@@ -135,13 +135,12 @@ +--- deps/hiredis/net.c.orig 2019-09-25 10:40:18 UTC ++++ deps/hiredis/net.c +@@ -135,13 +135,12 @@ int redisKeepAlive(redisContext *c, int interval) { val = interval; @@ -16,7 +16,7 @@ val = interval; if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE, &val, sizeof(val)) < 0) { __redisSetError(c,REDIS_ERR_OTHER,strerror(errno)); -@@ -160,6 +159,27 @@ +@@ -160,6 +159,27 @@ int redisKeepAlive(redisContext *c, int interval) { __redisSetError(c,REDIS_ERR_OTHER,strerror(errno)); return REDIS_ERR; } @@ -44,7 +44,7 @@ #endif #endif -@@ -431,7 +451,7 @@ +@@ -431,7 +451,7 @@ int redisContextConnectUnix(redisContext *c, const cha struct sockaddr_un sa; long timeout_msec = -1; @@ -53,7 +53,7 @@ return REDIS_ERR; if (redisSetBlocking(c,0) != REDIS_OK) return REDIS_ERR; -@@ -456,7 +476,7 @@ +@@ -456,7 +476,7 @@ int redisContextConnectUnix(redisContext *c, const cha if (redisContextTimeoutMsec(c,&timeout_msec) != REDIS_OK) return REDIS_ERR; Modified: branches/2019Q4/databases/redis/files/patch-deps-linenoise-Makefile ============================================================================== --- branches/2019Q4/databases/redis/files/patch-deps-linenoise-Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/files/patch-deps-linenoise-Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -1,5 +1,5 @@ ---- deps/linenoise/Makefile.orig 2015-01-17 22:13:25.000000000 +0300 -+++ deps/linenoise/Makefile 2015-01-17 22:13:45.000000000 +0300 +--- deps/linenoise/Makefile.orig 2019-09-25 10:40:18 UTC ++++ deps/linenoise/Makefile @@ -1,10 +1,10 @@ STD= WARN= -Wall Modified: branches/2019Q4/databases/redis/files/patch-redis.conf ============================================================================== --- branches/2019Q4/databases/redis/files/patch-redis.conf Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/files/patch-redis.conf Wed Nov 27 20:52:15 2019 (r518545) @@ -1,6 +1,6 @@ ---- redis.conf.orig 2016-06-17 09:15:21.000000000 -0400 -+++ redis.conf 2016-06-18 11:58:19.871082000 -0400 -@@ -125,7 +125,7 @@ +--- redis.conf.orig 2019-09-25 10:40:18 UTC ++++ redis.conf +@@ -133,7 +133,7 @@ tcp-keepalive 300 # By default Redis does not run as a daemon. Use 'yes' if you need it. # Note that Redis will write a pid file in /var/run/redis.pid when daemonized. @@ -9,7 +9,7 @@ # If you run Redis from upstart or systemd, Redis can interact with your # supervision tree. Options: -@@ -147,7 +147,7 @@ +@@ -155,7 +155,7 @@ supervised no # # Creating a pid file is best effort: if Redis is not able to create it # nothing bad happens, the server will start and run normally. @@ -18,7 +18,7 @@ # Specify the server verbosity level. # This can be one of: -@@ -160,7 +160,7 @@ +@@ -168,7 +168,7 @@ loglevel notice # Specify the log file name. Also the empty string can be used to force # Redis to log on the standard output. Note that if you use standard # output for logging but daemonize, logs will be sent to /dev/null @@ -27,7 +27,7 @@ # To enable logging to the system logger, just set 'syslog-enabled' to yes, # and optionally update the other syslog parameters to suit your needs. -@@ -244,7 +244,7 @@ +@@ -260,7 +260,7 @@ dbfilename dump.rdb # The Append Only File will also be created inside this directory. # # Note that you must specify a directory here, not a file name. Modified: branches/2019Q4/databases/redis/files/patch-src-Makefile ============================================================================== --- branches/2019Q4/databases/redis/files/patch-src-Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/files/patch-src-Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -1,7 +1,7 @@ ---- src/Makefile.orig 2015-04-01 17:01:44.000000000 +0300 -+++ src/Makefile 2015-04-07 21:30:22.464962000 +0300 -@@ -22,7 +22,7 @@ - WARN=-Wall -W +--- src/Makefile.orig 2019-09-25 10:40:18 UTC ++++ src/Makefile +@@ -29,7 +29,7 @@ endif + WARN=-Wall -W -Wno-missing-field-initializers OPT=$(OPTIMIZATION) -PREFIX?=/usr/local @@ -9,7 +9,7 @@ INSTALL_BIN=$(PREFIX)/bin INSTALL=install -@@ -52,7 +52,6 @@ +@@ -75,7 +75,6 @@ endif FINAL_CFLAGS=$(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS) FINAL_LDFLAGS=$(LDFLAGS) $(REDIS_LDFLAGS) $(DEBUG) FINAL_LIBS=-lm @@ -17,9 +17,9 @@ ifeq ($(uname_S),SunOS) # SunOS -@@ -63,6 +62,11 @@ - ifeq ($(uname_S),Darwin) - # Darwin (nothing to do) +@@ -94,6 +93,11 @@ ifeq ($(uname_S),Darwin) + # Darwin + FINAL_LIBS+= -ldl else +ifeq ($(uname_S),FreeBSD) + # FreeBSD @@ -29,11 +29,11 @@ ifeq ($(uname_S),AIX) # AIX FINAL_LDFLAGS+= -Wl,-bexpall -@@ -75,6 +79,7 @@ +@@ -120,6 +124,7 @@ else + # All the other OSes (notably Linux) + FINAL_LDFLAGS+= -rdynamic + FINAL_LIBS+=-ldl -pthread -lrt ++endif endif endif endif -+endif - # Include paths to dependencies - FINAL_CFLAGS+= -I../deps/hiredis -I../deps/linenoise -I../deps/lua/src - Modified: branches/2019Q4/databases/redis/files/patch-src-mkreleasehdr.sh ============================================================================== --- branches/2019Q4/databases/redis/files/patch-src-mkreleasehdr.sh Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/redis/files/patch-src-mkreleasehdr.sh Wed Nov 27 20:52:15 2019 (r518545) @@ -1,5 +1,5 @@ ---- src/mkreleasehdr.sh.orig 2013-08-13 15:39:40.000000000 +0400 -+++ src/mkreleasehdr.sh 2013-08-13 15:39:55.000000000 +0400 +--- src/mkreleasehdr.sh.orig 2019-09-25 10:40:18 UTC ++++ src/mkreleasehdr.sh @@ -1,6 +1,6 @@ #!/bin/sh -GIT_SHA1=`(git show-ref --head --hash=8 2> /dev/null || echo 00000000) | head -n1` @@ -7,5 +7,5 @@ +GIT_SHA1="00000000" +GIT_DIRTY="0" BUILD_ID=`uname -n`"-"`date +%s` - test -f release.h || touch release.h - (cat release.h | grep SHA1 | grep $GIT_SHA1) && \ + if [ -n "$SOURCE_DATE_EPOCH" ]; then + BUILD_ID=$(date -u -d "@$SOURCE_DATE_EPOCH" +%s 2>/dev/null || date -u -r "$SOURCE_DATE_EPOCH" +%s 2>/dev/null || date -u %s) Modified: branches/2019Q4/databases/rubygem-hiredis/Makefile ============================================================================== --- branches/2019Q4/databases/rubygem-hiredis/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/databases/rubygem-hiredis/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -3,7 +3,7 @@ PORTNAME= hiredis PORTVERSION= 0.6.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases rubygems MASTER_SITES= RG Modified: branches/2019Q4/devel/gitblit/Makefile ============================================================================== --- branches/2019Q4/devel/gitblit/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/devel/gitblit/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -3,7 +3,7 @@ PORTNAME= gitblit PORTVERSION= 1.8.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel java MASTER_SITES= http://dl.bintray.com/${PORTNAME}/releases/ EXTRACT_SUFX= .war Modified: branches/2019Q4/devel/py-dj22-django-rq/Makefile ============================================================================== --- branches/2019Q4/devel/py-dj22-django-rq/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/devel/py-dj22-django-rq/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -3,6 +3,7 @@ PORTNAME= django-rq PORTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj22- MASTER_SITES= CHEESESHOP @@ -20,7 +21,7 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel ${PYTHON_PKGNAMEPREFIX}docutils>=0:textproc/py-docutils@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \ - redis-server:databases/redis + redis-server:databases/redis4 USES= python:3.5+ USE_PYTHON= autoplist distutils Modified: branches/2019Q4/irc/anope/Makefile ============================================================================== --- branches/2019Q4/irc/anope/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/irc/anope/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -2,6 +2,7 @@ PORTNAME= anope PORTVERSION= 2.0.6 +PORTREVISION= 1 CATEGORIES= irc MAINTAINER= egypcio@FreeBSD.org @@ -36,7 +37,7 @@ NLS_USES= gettext OPENSSL_USES= ssl -REDIS_RUN_DEPENDS= redis:databases/redis +REDIS_RUN_DEPENDS= redis>=0:databases/redis PCRE_LIB_DEPENDS= libpcre.so:devel/pcre Modified: branches/2019Q4/net-im/rubygem-lita/Makefile ============================================================================== --- branches/2019Q4/net-im/rubygem-lita/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/net-im/rubygem-lita/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -3,7 +3,7 @@ PORTNAME= lita PORTVERSION= 4.7.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im rubygems MASTER_SITES= RG Modified: branches/2019Q4/net/opensips/Makefile ============================================================================== --- branches/2019Q4/net/opensips/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/net/opensips/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -3,7 +3,7 @@ PORTNAME= opensips DISTVERSION= 2.2.6 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net MASTER_SITES= http://opensips.org/pub/opensips/${PORTVERSION}/ @@ -25,7 +25,7 @@ LIB_DEPENDS= libxml2.so:textproc/libxml2 \ BUILD_DEPENDS= ginstall:sysutils/coreutils \ gtar:archivers/gtar \ gm4:devel/m4 \ - redis-server:databases/redis-devel + redis-server:databases/redis RUN_DEPENDS= ${LOCALBASE}/bin/bash:shells/bash \ ${LOCALBASE}/bin/grep:textproc/gnugrep Modified: branches/2019Q4/security/openvas8-scanner/Makefile ============================================================================== --- branches/2019Q4/security/openvas8-scanner/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/security/openvas8-scanner/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -3,7 +3,7 @@ PORTNAME?= openvas8-scanner PORTVERSION?= 5.0.8 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security MASTER_SITES?= http://wald.intevation.org/frs/download.php/2436/ DISTNAME= ${PORTNAME:S/${OPENVAS_VER}//}-${PORTVERSION} Modified: branches/2019Q4/www/gitlab-ce/Makefile ============================================================================== --- branches/2019Q4/www/gitlab-ce/Makefile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/www/gitlab-ce/Makefile Wed Nov 27 20:52:15 2019 (r518545) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gitlab-ce -PORTVERSION= 12.4.1 +PORTVERSION= 12.5.1 PORTREVISION= 0 CATEGORIES= www devel @@ -16,17 +16,17 @@ LICENSE_FILE= ${WRKSRC}/LICENSE # which makes maintaining this long list much easier! MY_DEPENDS= git>=2.21.0:devel/git \ gitlab-shell>=10.2.0:devel/gitlab-shell \ - gitlab-workhorse>=8.14.0:www/gitlab-workhorse \ - gitaly>=1.67.0:devel/gitaly \ - gitlab-pages>=1.11.0:www/gitlab-pages \ + gitlab-workhorse>=8.14.1:www/gitlab-workhorse \ + gitaly>=1.72.1:devel/gitaly \ + gitlab-pages>=1.12.0:www/gitlab-pages \ redis>=3.2.12:databases/redis \ yarn>=1.10.0:www/yarn \ rubygem-rails52>=5.2.3:www/rubygem-rails52 \ rubygem-bootsnap>=1.4<2.0:devel/rubygem-bootsnap \ rubygem-nakayoshi_fork>=0.0.4<0.1.0:devel/rubygem-nakayoshi_fork \ - rubygem-responders2-rails52>=2.0<3.0:www/rubygem-responders2-rails52 \ + rubygem-responders-rails52>=3.0<4.0:www/rubygem-responders-rails52 \ rubygem-sprockets3>=3.7<3.8:devel/rubygem-sprockets3 \ - rubygem-default_value_for32>=3.2.0<3.3.0:devel/rubygem-default_value_for32 \ + rubygem-default_value_for>=3.3.0<3.4.0:devel/rubygem-default_value_for \ rubygem-pg>=1.1<2:databases/rubygem-pg \ rubygem-rugged>=0.28<1.0:devel/rubygem-rugged \ rubygem-grape-path-helpers>=1.1<2.0:devel/rubygem-grape-path-helpers \ @@ -49,7 +49,7 @@ MY_DEPENDS= git>=2.21.0:devel/git \ rubygem-omniauth-twitter>=1.4<2.0:net/rubygem-omniauth-twitter \ rubygem-omniauth_crowd22>=2.2.0<2.3.0:devel/rubygem-omniauth_crowd22 \ rubygem-omniauth-authentiq>=0.3.3<0.4.0:net/rubygem-omniauth-authentiq \ - rubygem-omniauth_openid_connect>=0.3.1<0.4.0:net/rubygem-omniauth_openid_connect \ + rubygem-omniauth_openid_connect>=0.3.3<0.4.0:net/rubygem-omniauth_openid_connect \ rubygem-omniauth-ultraauth>=0.0.2<0.1.0:net/rubygem-omniauth-ultraauth \ rubygem-omniauth-salesforce>=1.0.5<1.1.0:net/rubygem-omniauth-salesforce \ rubygem-rack-oauth2>=1.9.3<1.10.0:security/rubygem-rack-oauth2 \ @@ -63,10 +63,10 @@ MY_DEPENDS= git>=2.21.0:devel/git \ rubygem-attr_encrypted>=3.1.0<3.2.0:security/rubygem-attr_encrypted \ rubygem-u2f0>=0.2.1<0.3.0:net/rubygem-u2f0 \ rubygem-validates_hostname>=1.0.6<1.1.0:dns/rubygem-validates_hostname \ - rubygem-rubyzip12>=1.2.2<1.3.0:archivers/rubygem-rubyzip12 \ + rubygem-rubyzip>=1.3.0<1.4.0:archivers/rubygem-rubyzip \ rubygem-acme-client>=2.0.2<2.1.0:security/rubygem-acme-client \ rubygem-browser>=2.5<3.0:www/rubygem-browser \ - rubygem-gpgme>=2.0.18<2.1.0:security/rubygem-gpgme \ + rubygem-gpgme>=2.0.19<2.1.0:security/rubygem-gpgme \ rubygem-gitlab_omniauth-ldap>=2.1.1<2.2.0:net/rubygem-gitlab_omniauth-ldap \ rubygem-net-ldap>0:net/rubygem-net-ldap \ rubygem-grape11>=1.1.0<1.2.0:devel/rubygem-grape11 \ @@ -97,7 +97,7 @@ MY_DEPENDS= git>=2.21.0:devel/git \ rubygem-aws-sdk>0:devel/rubygem-aws-sdk \ rubygem-faraday_middleware-aws-signers-v4>0:devel/rubygem-faraday_middleware-aws-signers-v4 \ rubygem-html-pipeline>=2.8:textproc/rubygem-html-pipeline \ - rubygem-deckar01-task_list>=2.2.0<2.3.0:www/rubygem-deckar01-task_list \ + rubygem-deckar01-task_list>=2.2.1<2.3.0:www/rubygem-deckar01-task_list \ rubygem-gitlab-markup>=1.7.0<1.8.0:textproc/rubygem-gitlab-markup \ rubygem-github-markup17>=1.7.0<1.8.0:textproc/rubygem-github-markup17 \ rubygem-commonmarker>=0.17<1.0:textproc/rubygem-commonmarker \ @@ -112,17 +112,18 @@ MY_DEPENDS= git>=2.21.0:devel/git \ rubygem-rouge>=3.11.0<3.13:textproc/rubygem-rouge \ rubygem-truncato>=0.7.11<0.8.0:textproc/rubygem-truncato \ rubygem-bootstrap_form>=4.2.0<4.3.0:devel/rubygem-bootstrap_form \ - rubygem-nokogiri>=1.10.4<1.11.0:textproc/rubygem-nokogiri \ + rubygem-nokogiri>=1.10.5<1.11.0:textproc/rubygem-nokogiri \ rubygem-escape_utils>=1.1<2.0:textproc/rubygem-escape_utils \ rubygem-icalendar>=0:devel/rubygem-icalendar \ rubygem-diffy31>=3.1.0<3.2.0:textproc/rubygem-diffy31 \ + rubygem-diff_match_patch>=0.1.0<0.2.0:textproc/rubygem-diff_match_patch \ rubygem-rack>=2.0.7<2.1.0,3:www/rubygem-rack \ rubygem-unicorn>=5.4.1<5.5.0:www/rubygem-unicorn \ rubygem-unicorn-worker-killer>=0.4.4<0.5.0:www/rubygem-unicorn-worker-killer \ rubygem-puma>=3.12<4.0:www/rubygem-puma \ rubygem-puma_worker_killer>=0:www/rubygem-puma_worker_killer \ rubygem-rack-timeout>=0:www/rubygem-rack-timeout \ - rubygem-state_machines-activerecord05>=0.5.1<6.0.0:databases/rubygem-state_machines-activerecord05 \ + rubygem-state_machines-activerecord>=0.6.0<0.7.0:databases/rubygem-state_machines-activerecord \ rubygem-acts-as-taggable-on>=6.0<7.0:www/rubygem-acts-as-taggable-on \ rubygem-sidekiq>=5.2.7<5.3.0:devel/rubygem-sidekiq \ rubygem-sidekiq-cron>=1.0<2.0:devel/rubygem-sidekiq-cron \ @@ -154,7 +155,6 @@ MY_DEPENDS= git>=2.21.0:devel/git \ rubygem-babosa>=1.0.2<1.1.0:textproc/rubygem-babosa \ rubygem-loofah>=2.2<3.0:textproc/rubygem-loofah \ rubygem-licensee8>=8.9<9.0:devel/rubygem-licensee8 \ - rubygem-rack-attack44>=4.4.1<4.5.0:www/rubygem-rack-attack44 \ rubygem-ace-rails-ap>=4.1.0<4.2.0:www/rubygem-ace-rails-ap \ rubygem-charlock_holmes>=0.7.5<0.8.0:textproc/rubygem-charlock_holmes \ rubygem-mimemagic>=0.3.2<0.4.0:misc/rubygem-mimemagic \ @@ -172,8 +172,9 @@ MY_DEPENDS= git>=2.21.0:devel/git \ rubygem-request_store>=1.3<2.0:devel/rubygem-request_store \ rubygem-base32>=0.3.0<0.4.0:converters/rubygem-base32 \ rubygem-gitlab-license>=1.0<2.0:devel/rubygem-gitlab-license \ + rubygem-rack-attack>=6.2.0<6.3.0:www/rubygem-rack-attack \ rubygem-sentry-raven>=2.9<3.0:devel/rubygem-sentry-raven \ - rubygem-premailer-rails19-rails52>=1.9.7<1.10.0:mail/rubygem-premailer-rails19-rails52 \ + rubygem-premailer-rails-rails52>=1.10.3<1.11.0:mail/rubygem-premailer-rails-rails52 \ rubygem-gitlab-labkit>=0.5<1.0:devel/rubygem-gitlab-labkit \ rubygem-ruby_parser>=3.8<4.0:devel/rubygem-ruby_parser \ rubygem-rails-i18n-rails52>=5.1<6.0:devel/rubygem-rails-i18n-rails52 \ @@ -206,18 +207,19 @@ MY_DEPENDS= git>=2.21.0:devel/git \ rubygem-sshkey>=2.0<3.0:security/rubygem-sshkey \ rubygem-ed25519>=1.2<2.0:security/rubygem-ed25519 \ rubygem-bcrypt_pbkdf>=1.0<2.0:security/rubygem-bcrypt_pbkdf \ - rubygem-gitaly>=1.65.0<1.66:net/rubygem-gitaly \ - rubygem-grpc>=1.19.0<1.20.0:net/rubygem-grpc \ - rubygem-google-protobuf371>=3.7.1<3.8.0:devel/rubygem-google-protobuf371 \ + rubygem-gitaly>=1.70.0<1.71:net/rubygem-gitaly \ + rubygem-grpc>=1.24.0<1.25.0:net/rubygem-grpc \ + rubygem-google-protobuf38>=3.8.0<3.9.0:devel/rubygem-google-protobuf38 \ rubygem-toml-rb10>=1.0.0<1.1.0:www/rubygem-toml-rb10 \ - rubygem-flipper013>=0.13.0<0.14.0:devel/rubygem-flipper013 \ - rubygem-flipper-active_record013>=0.13.0<0.14.0:databases/rubygem-flipper-active_record013 \ - rubygem-flipper-active_support_cache_store013>=0.13.0<0.14.0:devel/rubygem-flipper-active_support_cache_store013 \ + rubygem-flipper>=0.17.1<0.18.0:devel/rubygem-flipper \ + rubygem-flipper-active_record>=0.17.1<0.18.0:databases/rubygem-flipper-active_record \ + rubygem-flipper-active_support_cache_store>=0.17.1<0.18.0:devel/rubygem-flipper-active_support_cache_store \ rubygem-unleash>=0.1.5<0.2.0:devel/rubygem-unleash \ rubygem-lograge-rails52>=0.5<1.0:www/rubygem-lograge-rails52 \ rubygem-grape_logging>=1.7<2.0:devel/rubygem-grape_logging \ rubygem-gitlab-net-dns>=0.9.1<0.10:dns/rubygem-gitlab-net-dns \ - rubygem-countries>=3.0.0<4.0.0:devel/rubygem-countries + rubygem-countries>=3.0.0<4.0.0:devel/rubygem-countries \ + rubygem-retriable>=3.1.2<3.2.0:devel/rubygem-retriable BUILD_DEPENDS= gem:devel/ruby-gems \ ${MY_DEPENDS} @@ -237,7 +239,7 @@ USE_GITLAB= yes GL_ACCOUNT= gitlab-org GL_PROJECT= gitlab-foss # Find the here: https://gitlab.com/gitlab-org/gitlab-foss/-/tags -GL_COMMIT= 4281915cfebcaf03e729ddf8cfe58d9cb76b2356 +GL_COMMIT= 79a183ea8dee98900cfb495611c3342f6f312df0 USERS= git GROUPS= git Modified: branches/2019Q4/www/gitlab-ce/distinfo ============================================================================== --- branches/2019Q4/www/gitlab-ce/distinfo Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/www/gitlab-ce/distinfo Wed Nov 27 20:52:15 2019 (r518545) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572460607 -SHA256 (gitlab-org-gitlab-foss-4281915cfebcaf03e729ddf8cfe58d9cb76b2356_GL0.tar.gz) = 6acedf5cf84f518a30339ca1b8d05167bf9e986cdc3857e53476f594bca7ec12 -SIZE (gitlab-org-gitlab-foss-4281915cfebcaf03e729ddf8cfe58d9cb76b2356_GL0.tar.gz) = 100115726 +TIMESTAMP = 1574880585 +SHA256 (gitlab-org-gitlab-foss-79a183ea8dee98900cfb495611c3342f6f312df0_GL0.tar.gz) = bdb2900e65c949239b035031d6a2ab41f13161fc026dfa04e7e758763e84e969 +SIZE (gitlab-org-gitlab-foss-79a183ea8dee98900cfb495611c3342f6f312df0_GL0.tar.gz) = 102102959 Modified: branches/2019Q4/www/gitlab-ce/files/patch-Gemfile ============================================================================== --- branches/2019Q4/www/gitlab-ce/files/patch-Gemfile Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/www/gitlab-ce/files/patch-Gemfile Wed Nov 27 20:52:15 2019 (r518545) @@ -1,4 +1,4 @@ ---- Gemfile.orig 2019-10-22 12:01:49 UTC +--- Gemfile.orig 2019-11-22 03:17:46 UTC +++ Gemfile @@ -92,7 +92,6 @@ gem 'graphql', '~> 1.9.11' # https://gitlab.com/gitlab-org/gitlab/issues/31747 @@ -16,8 +16,8 @@ +gem 'rouge', '~> 3.11' gem 'truncato', '~> 0.7.11' gem 'bootstrap_form', '~> 4.2.0' - gem 'nokogiri', '~> 1.10.4' -@@ -225,7 +224,7 @@ gem 'redis-rails', '~> 5.0.2' + gem 'nokogiri', '~> 1.10.5' +@@ -226,7 +225,7 @@ gem 'redis-rails', '~> 5.0.2' gem 'discordrb-webhooks-blackst0ne', '~> 3.3', require: false # HipChat integration @@ -26,14 +26,13 @@ # Jira integration gem 'jira-ruby', '~> 1.7' -@@ -328,85 +327,6 @@ group :metrics do +@@ -329,89 +328,6 @@ group :metrics do # Prometheus gem 'prometheus-client-mmap', '~> 0.9.10' gem 'raindrops', '~> 0.18' -end - -group :development do -- gem 'foreman', '~> 0.84.0' - gem 'brakeman', '~> 4.2', require: false - gem 'danger', '~> 6.0', require: false - @@ -90,7 +89,6 @@ - - gem 'benchmark-ips', '~> 2.3.0', require: false - -- gem 'license_finder', '~> 5.4', require: false - gem 'knapsack', '~> 1.17' - - gem 'stackprof', '~> 0.2.10', require: false @@ -100,6 +98,11 @@ - gem 'timecop', '~> 0.8.0' -end - +-# Gems required in omnibus-gitlab pipeline +-group :development, :test, :omnibus do +- gem 'license_finder', '~> 5.4', require: false +-end +- -group :test do - gem 'shoulda-matchers', '~> 4.0.1', require: false - gem 'email_spec', '~> 2.2.0' @@ -109,6 +112,7 @@ - gem 'concurrent-ruby', '~> 1.1' - gem 'test-prof', '~> 0.10.0' - gem 'rspec_junit_formatter' +- gem 'guard-rspec' end gem 'octokit', '~> 4.9' Modified: branches/2019Q4/www/gitlab-ce/pkg-message ============================================================================== --- branches/2019Q4/www/gitlab-ce/pkg-message Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/www/gitlab-ce/pkg-message Wed Nov 27 20:52:15 2019 (r518545) @@ -6,7 +6,7 @@ Gitlab was installed successfully. You now need to set up the various components of Gitlab, so please follow the instructions in the guide at: -https://gitlab.fechner.net/mfechner/Gitlab-docu/blob/master/install/12.4-freebsd.md +https://gitlab.fechner.net/mfechner/Gitlab-docu/blob/master/install/12.5-freebsd.md EOM type: install } @@ -20,7 +20,7 @@ EOM If you just installed an major upgrade of GitLab, for example you switched from 11.8.x to 11.9.x, please follow the instructions in the guide at: -https://gitlab.fechner.net/mfechner/Gitlab-docu/blob/master/update/12.3-12.4-freebsd.md +https://gitlab.fechner.net/mfechner/Gitlab-docu/blob/master/update/12.4-12.5-freebsd.md If you just installed an minor upgrade of GitLab please follow the instructions in the guide at: Modified: branches/2019Q4/www/gitlab-ce/pkg-plist ============================================================================== --- branches/2019Q4/www/gitlab-ce/pkg-plist Wed Nov 27 20:40:56 2019 (r518544) +++ branches/2019Q4/www/gitlab-ce/pkg-plist Wed Nov 27 20:52:15 2019 (r518545) @@ -14,10 +14,10 @@ %%WWWDIR%%/.gitlab/ci/frontend.gitlab-ci.yml %%WWWDIR%%/.gitlab/ci/global.gitlab-ci.yml %%WWWDIR%%/.gitlab/ci/memory.gitlab-ci.yml -%%WWWDIR%%/.gitlab/ci/notifications.gitlab-ci.yml %%WWWDIR%%/.gitlab/ci/pages.gitlab-ci.yml %%WWWDIR%%/.gitlab/ci/qa.gitlab-ci.yml %%WWWDIR%%/.gitlab/ci/rails.gitlab-ci.yml +%%WWWDIR%%/.gitlab/ci/releases.gitlab-ci.yml %%WWWDIR%%/.gitlab/ci/reports.gitlab-ci.yml %%WWWDIR%%/.gitlab/ci/review.gitlab-ci.yml %%WWWDIR%%/.gitlab/ci/setup.gitlab-ci.yml @@ -68,6 +68,7 @@ %%WWWDIR%%/GITLAB_SHELL_VERSION %%WWWDIR%%/GITLAB_WORKHORSE_VERSION %%WWWDIR%%/Gemfile +%%WWWDIR%%/Guardfile %%WWWDIR%%/INSTALLATION_TYPE %%WWWDIR%%/LICENSE %%WWWDIR%%/MAINTENANCE.md @@ -117,6 +118,8 @@ %%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_success.png %%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_warning.png %%WWWDIR%%/app/assets/images/cluster_app_logos/cert_manager.png +%%WWWDIR%%/app/assets/images/cluster_app_logos/crossplane.png +%%WWWDIR%%/app/assets/images/cluster_app_logos/elastic_stack.png %%WWWDIR%%/app/assets/images/cluster_app_logos/elasticsearch.png %%WWWDIR%%/app/assets/images/cluster_app_logos/gitlab.png %%WWWDIR%%/app/assets/images/cluster_app_logos/helm.png @@ -2138,12 +2141,14 @@ %%WWWDIR%%/app/assets/javascripts/boards/stores/actions.js %%WWWDIR%%/app/assets/javascripts/boards/stores/boards_store.js %%WWWDIR%%/app/assets/javascripts/boards/stores/boards_store_ee.js +%%WWWDIR%%/app/assets/javascripts/boards/stores/getters.js %%WWWDIR%%/app/assets/javascripts/boards/stores/index.js %%WWWDIR%%/app/assets/javascripts/boards/stores/modal_store.js %%WWWDIR%%/app/assets/javascripts/boards/stores/mutation_types.js %%WWWDIR%%/app/assets/javascripts/boards/stores/mutations.js %%WWWDIR%%/app/assets/javascripts/boards/stores/state.js %%WWWDIR%%/app/assets/javascripts/boards/toggle_focus.js +%%WWWDIR%%/app/assets/javascripts/boards/toggle_labels.js %%WWWDIR%%/app/assets/javascripts/branches/branches_delete_modal.js %%WWWDIR%%/app/assets/javascripts/branches/components/divergence_graph.vue %%WWWDIR%%/app/assets/javascripts/branches/components/graph_bar.vue @@ -2159,6 +2164,7 @@ %%WWWDIR%%/app/assets/javascripts/clusters/clusters_bundle.js %%WWWDIR%%/app/assets/javascripts/clusters/components/application_row.vue %%WWWDIR%%/app/assets/javascripts/clusters/components/applications.vue +%%WWWDIR%%/app/assets/javascripts/clusters/components/crossplane_provider_stack.vue %%WWWDIR%%/app/assets/javascripts/clusters/components/knative_domain_editor.vue %%WWWDIR%%/app/assets/javascripts/clusters/components/uninstall_application_button.vue %%WWWDIR%%/app/assets/javascripts/clusters/components/uninstall_application_confirmation_modal.vue @@ -2193,10 +2199,19 @@ %%WWWDIR%%/app/assets/javascripts/confidential_merge_request/state.js %%WWWDIR%%/app/assets/javascripts/confirm_danger_modal.js %%WWWDIR%%/app/assets/javascripts/contextual_sidebar.js +%%WWWDIR%%/app/assets/javascripts/contributors/components/contributors.vue +%%WWWDIR%%/app/assets/javascripts/contributors/index.js +%%WWWDIR%%/app/assets/javascripts/contributors/services/contributors_service.js +%%WWWDIR%%/app/assets/javascripts/contributors/stores/actions.js +%%WWWDIR%%/app/assets/javascripts/contributors/stores/getters.js +%%WWWDIR%%/app/assets/javascripts/contributors/stores/index.js +%%WWWDIR%%/app/assets/javascripts/contributors/stores/mutation_types.js +%%WWWDIR%%/app/assets/javascripts/contributors/stores/mutations.js +%%WWWDIR%%/app/assets/javascripts/contributors/stores/state.js +%%WWWDIR%%/app/assets/javascripts/contributors/utils.js %%WWWDIR%%/app/assets/javascripts/create_cluster/eks_cluster/components/cluster_form_dropdown.vue %%WWWDIR%%/app/assets/javascripts/create_cluster/eks_cluster/components/create_eks_cluster.vue %%WWWDIR%%/app/assets/javascripts/create_cluster/eks_cluster/components/eks_cluster_configuration_form.vue -%%WWWDIR%%/app/assets/javascripts/create_cluster/eks_cluster/components/region_dropdown.vue %%WWWDIR%%/app/assets/javascripts/create_cluster/eks_cluster/components/service_credentials_form.vue %%WWWDIR%%/app/assets/javascripts/create_cluster/eks_cluster/constants.js %%WWWDIR%%/app/assets/javascripts/create_cluster/eks_cluster/index.js @@ -2225,12 +2240,13 @@ %%WWWDIR%%/app/assets/javascripts/create_cluster/gke_cluster/store/mutation_types.js %%WWWDIR%%/app/assets/javascripts/create_cluster/gke_cluster/store/mutations.js %%WWWDIR%%/app/assets/javascripts/create_cluster/gke_cluster/store/state.js +%%WWWDIR%%/app/assets/javascripts/create_cluster/gke_cluster_namespace/index.js +%%WWWDIR%%/app/assets/javascripts/create_cluster/init_create_cluster.js %%WWWDIR%%/app/assets/javascripts/create_item_dropdown.js %%WWWDIR%%/app/assets/javascripts/create_label.js %%WWWDIR%%/app/assets/javascripts/create_merge_request_dropdown.js %%WWWDIR%%/app/assets/javascripts/cycle_analytics/components/banner.vue %%WWWDIR%%/app/assets/javascripts/cycle_analytics/components/limit_warning_component.vue -%%WWWDIR%%/app/assets/javascripts/cycle_analytics/components/stage_card_list_item.vue %%WWWDIR%%/app/assets/javascripts/cycle_analytics/components/stage_code_component.vue %%WWWDIR%%/app/assets/javascripts/cycle_analytics/components/stage_component.vue %%WWWDIR%%/app/assets/javascripts/cycle_analytics/components/stage_nav_item.vue @@ -2361,13 +2377,24 @@ %%WWWDIR%%/app/assets/javascripts/environments/services/environments_service.js %%WWWDIR%%/app/assets/javascripts/environments/stores/environments_store.js %%WWWDIR%%/app/assets/javascripts/environments/stores/helpers.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/components/error_details.vue %%WWWDIR%%/app/assets/javascripts/error_tracking/components/error_tracking_list.vue -%%WWWDIR%%/app/assets/javascripts/error_tracking/index.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/components/stacktrace.vue +%%WWWDIR%%/app/assets/javascripts/error_tracking/components/stacktrace_entry.vue +%%WWWDIR%%/app/assets/javascripts/error_tracking/details.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/list.js %%WWWDIR%%/app/assets/javascripts/error_tracking/services/index.js -%%WWWDIR%%/app/assets/javascripts/error_tracking/store/actions.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/store/details/actions.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/store/details/getters.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/store/details/mutation_types.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/store/details/mutations.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/store/details/state.js %%WWWDIR%%/app/assets/javascripts/error_tracking/store/index.js -%%WWWDIR%%/app/assets/javascripts/error_tracking/store/mutation_types.js -%%WWWDIR%%/app/assets/javascripts/error_tracking/store/mutations.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/store/list/actions.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/store/list/getters.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/store/list/mutation_types.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/store/list/mutations.js +%%WWWDIR%%/app/assets/javascripts/error_tracking/store/list/state.js %%WWWDIR%%/app/assets/javascripts/error_tracking/utils.js %%WWWDIR%%/app/assets/javascripts/error_tracking_settings/components/app.vue %%WWWDIR%%/app/assets/javascripts/error_tracking_settings/components/error_tracking_form.vue @@ -2437,6 +2464,13 @@ %%WWWDIR%%/app/assets/javascripts/gl_field_errors.js %%WWWDIR%%/app/assets/javascripts/gl_form.js %%WWWDIR%%/app/assets/javascripts/gpg_badges.js +%%WWWDIR%%/app/assets/javascripts/grafana_integration/components/grafana_integration.vue +%%WWWDIR%%/app/assets/javascripts/grafana_integration/index.js +%%WWWDIR%%/app/assets/javascripts/grafana_integration/store/actions.js +%%WWWDIR%%/app/assets/javascripts/grafana_integration/store/index.js +%%WWWDIR%%/app/assets/javascripts/grafana_integration/store/mutation_types.js +%%WWWDIR%%/app/assets/javascripts/grafana_integration/store/mutations.js +%%WWWDIR%%/app/assets/javascripts/grafana_integration/store/state.js %%WWWDIR%%/app/assets/javascripts/graphql_shared/fragments/pageInfo.fragment.graphql %%WWWDIR%%/app/assets/javascripts/group.js %%WWWDIR%%/app/assets/javascripts/group_label_subscription.js @@ -2553,6 +2587,8 @@ %%WWWDIR%%/app/assets/javascripts/ide/stores/modules/branches/mutation_types.js %%WWWDIR%%/app/assets/javascripts/ide/stores/modules/branches/mutations.js %%WWWDIR%%/app/assets/javascripts/ide/stores/modules/branches/state.js +%%WWWDIR%%/app/assets/javascripts/ide/stores/modules/clientside/actions.js +%%WWWDIR%%/app/assets/javascripts/ide/stores/modules/clientside/index.js %%WWWDIR%%/app/assets/javascripts/ide/stores/modules/commit/actions.js %%WWWDIR%%/app/assets/javascripts/ide/stores/modules/commit/constants.js %%WWWDIR%%/app/assets/javascripts/ide/stores/modules/commit/getters.js @@ -2639,6 +2675,11 @@ %%WWWDIR%%/app/assets/javascripts/issuable_suggestions/components/item.vue %%WWWDIR%%/app/assets/javascripts/issuable_suggestions/index.js %%WWWDIR%%/app/assets/javascripts/issuable_suggestions/queries/issues.query.graphql +%%WWWDIR%%/app/assets/javascripts/issuables_list/components/issuable.vue +%%WWWDIR%%/app/assets/javascripts/issuables_list/components/issuables_list_app.vue +%%WWWDIR%%/app/assets/javascripts/issuables_list/constants.js +%%WWWDIR%%/app/assets/javascripts/issuables_list/eventhub.js +%%WWWDIR%%/app/assets/javascripts/issuables_list/index.js %%WWWDIR%%/app/assets/javascripts/issue.js %%WWWDIR%%/app/assets/javascripts/issue_show/components/app.vue %%WWWDIR%%/app/assets/javascripts/issue_show/components/description.vue @@ -2739,7 +2780,6 @@ %%WWWDIR%%/app/assets/javascripts/lib/utils/suppress_ajax_errors_during_navigation.js %%WWWDIR%%/app/assets/javascripts/lib/utils/text_markdown.js %%WWWDIR%%/app/assets/javascripts/lib/utils/text_utility.js -%%WWWDIR%%/app/assets/javascripts/lib/utils/tick_formats.js %%WWWDIR%%/app/assets/javascripts/lib/utils/type_utility.js %%WWWDIR%%/app/assets/javascripts/lib/utils/url_utility.js %%WWWDIR%%/app/assets/javascripts/lib/utils/users_cache.js @@ -2770,8 +2810,10 @@ %%WWWDIR%%/app/assets/javascripts/mirrors/constants.js %%WWWDIR%%/app/assets/javascripts/mirrors/mirror_repos.js %%WWWDIR%%/app/assets/javascripts/mirrors/ssh_mirror.js +%%WWWDIR%%/app/assets/javascripts/monitoring/components/charts/anomaly.vue %%WWWDIR%%/app/assets/javascripts/monitoring/components/charts/column.vue %%WWWDIR%%/app/assets/javascripts/monitoring/components/charts/empty_chart.vue +%%WWWDIR%%/app/assets/javascripts/monitoring/components/charts/heatmap.vue %%WWWDIR%%/app/assets/javascripts/monitoring/components/charts/single_stat.vue %%WWWDIR%%/app/assets/javascripts/monitoring/components/charts/time_series.vue %%WWWDIR%%/app/assets/javascripts/monitoring/components/dashboard.vue @@ -2781,6 +2823,7 @@ %%WWWDIR%%/app/assets/javascripts/monitoring/components/empty_state.vue %%WWWDIR%%/app/assets/javascripts/monitoring/components/graph_group.vue %%WWWDIR%%/app/assets/javascripts/monitoring/components/panel_type.vue +%%WWWDIR%%/app/assets/javascripts/monitoring/components/shared/prometheus_header.vue %%WWWDIR%%/app/assets/javascripts/monitoring/constants.js %%WWWDIR%%/app/assets/javascripts/monitoring/monitoring_bundle.js %%WWWDIR%%/app/assets/javascripts/monitoring/stores/actions.js @@ -2820,6 +2863,7 @@ %%WWWDIR%%/app/assets/javascripts/notebook/lib/highlight.js %%WWWDIR%%/app/assets/javascripts/notes.js %%WWWDIR%%/app/assets/javascripts/notes/components/comment_form.vue +%%WWWDIR%%/app/assets/javascripts/notes/components/diff_discussion_header.vue %%WWWDIR%%/app/assets/javascripts/notes/components/diff_with_note.vue %%WWWDIR%%/app/assets/javascripts/notes/components/discussion_actions.vue %%WWWDIR%%/app/assets/javascripts/notes/components/discussion_counter.vue @@ -2851,6 +2895,7 @@ %%WWWDIR%%/app/assets/javascripts/notes/event_hub.js %%WWWDIR%%/app/assets/javascripts/notes/index.js %%WWWDIR%%/app/assets/javascripts/notes/mixins/autosave.js *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Thu Nov 28 06:20:11 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2E8021C604A; Thu, 28 Nov 2019 06:20:11 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NnYl0VNKz47PP; Thu, 28 Nov 2019 06:20:11 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E98E921936; Thu, 28 Nov 2019 06:20:10 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAS6KALO060142; Thu, 28 Nov 2019 06:20:10 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAS6KAf2060140; Thu, 28 Nov 2019 06:20:10 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911280620.xAS6KAf2060140@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 28 Nov 2019 06:20:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518558 - branches/2019Q4/security/rubygem-gpgme X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/security/rubygem-gpgme X-SVN-Commit-Revision: 518558 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.29 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, 28 Nov 2019 06:20:11 -0000 Author: mfechner Date: Thu Nov 28 06:20:10 2019 New Revision: 518558 URL: https://svnweb.freebsd.org/changeset/ports/518558 Log: MFH: r515052 Update to 2.0.19 Changes: https://github.com/ueno/ruby-gpgme/blob/master/NEWS Approved by: ports-secteam (joneum) Modified: branches/2019Q4/security/rubygem-gpgme/Makefile branches/2019Q4/security/rubygem-gpgme/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/security/rubygem-gpgme/Makefile ============================================================================== --- branches/2019Q4/security/rubygem-gpgme/Makefile Thu Nov 28 05:46:04 2019 (r518557) +++ branches/2019Q4/security/rubygem-gpgme/Makefile Thu Nov 28 06:20:10 2019 (r518558) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gpgme -PORTVERSION= 2.0.18 +PORTVERSION= 2.0.19 CATEGORIES= security rubygems MASTER_SITES= RG @@ -16,10 +16,12 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error RUN_DEPENDS= gpgme-config:security/gpgme -USES= gem +USES= gem shebangfix USE_RUBY= yes CONFIGURE_ARGS= --use-system-libraries + +SHEBANG_FILES= test/pinentry post-patch: @${REINPLACE_CMD} -e '/mini_portile2/d' ${WRKSRC}/gpgme.gemspec ${WRKSRC}/ext/gpgme/extconf.rb Modified: branches/2019Q4/security/rubygem-gpgme/distinfo ============================================================================== --- branches/2019Q4/security/rubygem-gpgme/distinfo Thu Nov 28 05:46:04 2019 (r518557) +++ branches/2019Q4/security/rubygem-gpgme/distinfo Thu Nov 28 06:20:10 2019 (r518558) @@ -1,3 +1,3 @@ -TIMESTAMP = 1543058642 -SHA256 (rubygem/gpgme-2.0.18.gem) = d5ecb484efe975125962841f59f3648c136c5cb4853acd25629598947b8ed889 -SIZE (rubygem/gpgme-2.0.18.gem) = 5914112 +TIMESTAMP = 1571484015 +SHA256 (rubygem/gpgme-2.0.19.gem) = d7bc57e6d6316a37aa77bc6c25c391406d78179cbd259e95c3cd96f8ac547849 +SIZE (rubygem/gpgme-2.0.19.gem) = 5915648 From owner-svn-ports-branches@freebsd.org Thu Nov 28 06:50:57 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C00DE1C6A70; Thu, 28 Nov 2019 06:50:57 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NpFF4n5Yz48qB; Thu, 28 Nov 2019 06:50:57 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8767E21EC5; Thu, 28 Nov 2019 06:50:57 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAS6ov48078615; Thu, 28 Nov 2019 06:50:57 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAS6ov5V078613; Thu, 28 Nov 2019 06:50:57 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911280650.xAS6ov5V078613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 28 Nov 2019 06:50:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518559 - branches/2019Q4/databases/rubygem-flipper-active_record X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/databases/rubygem-flipper-active_record X-SVN-Commit-Revision: 518559 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.29 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, 28 Nov 2019 06:50:57 -0000 Author: mfechner Date: Thu Nov 28 06:50:56 2019 New Revision: 518559 URL: https://svnweb.freebsd.org/changeset/ports/518559 Log: MFH: r516704 Update to 0.17.1 Changes: https://github.com/jnunemaker/flipper/blob/master/Changelog.md Approved by: ports-secteam (joneum) Modified: branches/2019Q4/databases/rubygem-flipper-active_record/Makefile branches/2019Q4/databases/rubygem-flipper-active_record/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/databases/rubygem-flipper-active_record/Makefile ============================================================================== --- branches/2019Q4/databases/rubygem-flipper-active_record/Makefile Thu Nov 28 06:20:10 2019 (r518558) +++ branches/2019Q4/databases/rubygem-flipper-active_record/Makefile Thu Nov 28 06:50:56 2019 (r518559) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flipper-active_record -PORTVERSION= 0.16.2 +PORTVERSION= 0.17.1 CATEGORIES= databases rubygems MASTER_SITES= RG @@ -11,8 +11,8 @@ COMMENT= ActiveRecord adapter for Flipper LICENSE= MIT -RUN_DEPENDS= rubygem-activerecord50>=3.2<6:databases/rubygem-activerecord50 \ - rubygem-flipper>=${PORTVERSION}<0.17:devel/rubygem-flipper +RUN_DEPENDS= rubygem-activerecord50>=4.2<7:databases/rubygem-activerecord50 \ + rubygem-flipper>=${PORTVERSION}<0.18:devel/rubygem-flipper USES= gem USE_RUBY= yes Modified: branches/2019Q4/databases/rubygem-flipper-active_record/distinfo ============================================================================== --- branches/2019Q4/databases/rubygem-flipper-active_record/distinfo Thu Nov 28 06:20:10 2019 (r518558) +++ branches/2019Q4/databases/rubygem-flipper-active_record/distinfo Thu Nov 28 06:50:56 2019 (r518559) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555855380 -SHA256 (rubygem/flipper-active_record-0.16.2.gem) = d21dd7785cba2a181e94f3e6de238f8ca54cd092568a895e6950b18afe0b410a -SIZE (rubygem/flipper-active_record-0.16.2.gem) = 9728 +TIMESTAMP = 1572806154 +SHA256 (rubygem/flipper-active_record-0.17.1.gem) = 6fea7fdb1991a318485ab9d1fb78cda313d2d4e5906c97547fc4682c554f9894 +SIZE (rubygem/flipper-active_record-0.17.1.gem) = 9728 From owner-svn-ports-branches@freebsd.org Thu Nov 28 06:52:57 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DC1EC1C6DCE; Thu, 28 Nov 2019 06:52:57 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NpHY5W79z499g; Thu, 28 Nov 2019 06:52:57 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A07AF22053; Thu, 28 Nov 2019 06:52:57 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAS6qvUo083413; Thu, 28 Nov 2019 06:52:57 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAS6qvvj083412; Thu, 28 Nov 2019 06:52:57 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911280652.xAS6qvvj083412@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 28 Nov 2019 06:52:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518560 - branches/2019Q4/devel/rubygem-flipper X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/devel/rubygem-flipper X-SVN-Commit-Revision: 518560 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.29 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, 28 Nov 2019 06:52:57 -0000 Author: mfechner Date: Thu Nov 28 06:52:57 2019 New Revision: 518560 URL: https://svnweb.freebsd.org/changeset/ports/518560 Log: MFH: r516709 Update to 0.17.1 Changes: https://github.com/jnunemaker/flipper/blob/master/Changelog.md Approved by: ports-secteam (joneum) Modified: branches/2019Q4/devel/rubygem-flipper/Makefile branches/2019Q4/devel/rubygem-flipper/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/devel/rubygem-flipper/Makefile ============================================================================== --- branches/2019Q4/devel/rubygem-flipper/Makefile Thu Nov 28 06:50:56 2019 (r518559) +++ branches/2019Q4/devel/rubygem-flipper/Makefile Thu Nov 28 06:52:57 2019 (r518560) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flipper -PORTVERSION= 0.16.2 +PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: branches/2019Q4/devel/rubygem-flipper/distinfo ============================================================================== --- branches/2019Q4/devel/rubygem-flipper/distinfo Thu Nov 28 06:50:56 2019 (r518559) +++ branches/2019Q4/devel/rubygem-flipper/distinfo Thu Nov 28 06:52:57 2019 (r518560) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555855390 -SHA256 (rubygem/flipper-0.16.2.gem) = 3b7023d93ee847636a4300a251e04f38a1bf40a8705f7c977e6ae4180b45520e -SIZE (rubygem/flipper-0.16.2.gem) = 73216 +TIMESTAMP = 1572806164 +SHA256 (rubygem/flipper-0.17.1.gem) = c71d9c80356b3b37672460cd12d2a088e153d473a5edc5e44bc46e5671b0eb05 +SIZE (rubygem/flipper-0.17.1.gem) = 75776 From owner-svn-ports-branches@freebsd.org Thu Nov 28 06:54:25 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5A1D61C6E25; Thu, 28 Nov 2019 06:54:25 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47NpKF1gFYz49HF; Thu, 28 Nov 2019 06:54:25 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 141E922054; Thu, 28 Nov 2019 06:54:25 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAS6sOKH083648; Thu, 28 Nov 2019 06:54:24 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAS6sOVD083646; Thu, 28 Nov 2019 06:54:24 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911280654.xAS6sOVD083646@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 28 Nov 2019 06:54:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518561 - branches/2019Q4/devel/rubygem-flipper-active_support_cache_store X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/devel/rubygem-flipper-active_support_cache_store X-SVN-Commit-Revision: 518561 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.29 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, 28 Nov 2019 06:54:25 -0000 Author: mfechner Date: Thu Nov 28 06:54:24 2019 New Revision: 518561 URL: https://svnweb.freebsd.org/changeset/ports/518561 Log: MFH: r516710 Update to 0.17.1 Changes: https://github.com/jnunemaker/flipper/blob/master/Changelog.md Approved by: ports-secteam (joneum) Modified: branches/2019Q4/devel/rubygem-flipper-active_support_cache_store/Makefile branches/2019Q4/devel/rubygem-flipper-active_support_cache_store/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/devel/rubygem-flipper-active_support_cache_store/Makefile ============================================================================== --- branches/2019Q4/devel/rubygem-flipper-active_support_cache_store/Makefile Thu Nov 28 06:52:57 2019 (r518560) +++ branches/2019Q4/devel/rubygem-flipper-active_support_cache_store/Makefile Thu Nov 28 06:54:24 2019 (r518561) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flipper-active_support_cache_store -PORTVERSION= 0.16.2 +PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -11,8 +11,8 @@ COMMENT= ActiveSupport::Cache store adapter for Flippe LICENSE= MIT -RUN_DEPENDS= rubygem-activesupport50>=3.2<6:devel/rubygem-activesupport50 \ - rubygem-flipper>=${PORTVERSION}<0.17:devel/rubygem-flipper +RUN_DEPENDS= rubygem-activesupport50>=4.2<7:devel/rubygem-activesupport50 \ + rubygem-flipper>=${PORTVERSION}<0.18:devel/rubygem-flipper USES= gem USE_RUBY= yes Modified: branches/2019Q4/devel/rubygem-flipper-active_support_cache_store/distinfo ============================================================================== --- branches/2019Q4/devel/rubygem-flipper-active_support_cache_store/distinfo Thu Nov 28 06:52:57 2019 (r518560) +++ branches/2019Q4/devel/rubygem-flipper-active_support_cache_store/distinfo Thu Nov 28 06:54:24 2019 (r518561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555855395 -SHA256 (rubygem/flipper-active_support_cache_store-0.16.2.gem) = ff0212c8e88077ec1da15869c2c487083fd3801f2d0d05958d406a0cc53b495a -SIZE (rubygem/flipper-active_support_cache_store-0.16.2.gem) = 7680 +TIMESTAMP = 1572806166 +SHA256 (rubygem/flipper-active_support_cache_store-0.17.1.gem) = 0f0a9281b9380eb47acd3097f65de6a3c79d986c81864f7a08c48d5e87f56b56 +SIZE (rubygem/flipper-active_support_cache_store-0.17.1.gem) = 7680 From owner-svn-ports-branches@freebsd.org Thu Nov 28 18:01:20 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 06A4A1B1576; Thu, 28 Nov 2019 18:01:20 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47P56l6SNMz3Mp7; Thu, 28 Nov 2019 18:01:19 +0000 (UTC) (envelope-from kai@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C199C1772; Thu, 28 Nov 2019 18:01:19 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xASI1JWJ076972; Thu, 28 Nov 2019 18:01:19 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xASI1JYT076971; Thu, 28 Nov 2019 18:01:19 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201911281801.xASI1JYT076971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Thu, 28 Nov 2019 18:01:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518597 - branches/2019Q4/net/py-wsproto X-SVN-Group: ports-branches X-SVN-Commit-Author: kai X-SVN-Commit-Paths: branches/2019Q4/net/py-wsproto X-SVN-Commit-Revision: 518597 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.29 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, 28 Nov 2019 18:01:20 -0000 Author: kai Date: Thu Nov 28 18:01:19 2019 New Revision: 518597 URL: https://svnweb.freebsd.org/changeset/ports/518597 Log: MFH: r518596 net/py-wsproto: Fix runtime dependencies and Python version restriction * Update the RUN_DEPENDS and limit the port to Python 3.6 or newer as the support for Python 2.7 and 3.5 was dropped with the 0.15.0 release. Python 3.6 needs also the devel/py-dataclasses package as an additional dependency to work properly. * Add a "do-test" target while I'm here to make future QA easier. * Bump PORTREVISION for package change. PR: 242025 (related) Approved by: portmgr blanket (runtime fix) Approved by: ports-secteam bugfix blanket Modified: branches/2019Q4/net/py-wsproto/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/net/py-wsproto/Makefile ============================================================================== --- branches/2019Q4/net/py-wsproto/Makefile Thu Nov 28 17:51:33 2019 (r518596) +++ branches/2019Q4/net/py-wsproto/Makefile Thu Nov 28 18:01:19 2019 (r518597) @@ -3,6 +3,7 @@ PORTNAME= wsproto PORTVERSION= 0.15.0 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,12 +13,21 @@ COMMENT= Sans-IO WebSocket protocol implementation LICENSE= MIT -RUN_DEPENDS= ${PY_ENUM34} \ - ${PYTHON_PKGNAMEPREFIX}h11>=0.8.1:net/py-h11@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}h11>=0.8.1:net/py-h11@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} -USES= python +USES= python:3.6+ USE_PYTHON= autoplist distutils NO_ARCH= yes -.include +.include + +.if ${PYTHON_REL} < 3700 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dataclasses>0:devel/py-dataclasses@${PY_FLAVOR} +.endif + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs + +.include From owner-svn-ports-branches@freebsd.org Thu Nov 28 19:07:49 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id CFD5F1B41C0; Thu, 28 Nov 2019 19:07:49 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47P6bT58sfz3xjs; Thu, 28 Nov 2019 19:07:49 +0000 (UTC) (envelope-from brnrd@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8FC6623B3; Thu, 28 Nov 2019 19:07:49 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xASJ7nc7016226; Thu, 28 Nov 2019 19:07:49 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xASJ7nj5016223; Thu, 28 Nov 2019 19:07:49 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201911281907.xASJ7nj5016223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Thu, 28 Nov 2019 19:07:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518602 - branches/2019Q4/databases/mariadb55-server X-SVN-Group: ports-branches X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: branches/2019Q4/databases/mariadb55-server X-SVN-Commit-Revision: 518602 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.29 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, 28 Nov 2019 19:07:49 -0000 Author: brnrd Date: Thu Nov 28 19:07:48 2019 New Revision: 518602 URL: https://svnweb.freebsd.org/changeset/ports/518602 Log: MFH: r518423 databases/mariadb55-server: Security update to 5.5.66 Security: fc91f2ef-fd7b-11e9-a1c7-b499baebfeaf Approved by: ports-secteam (joneum) Modified: branches/2019Q4/databases/mariadb55-server/Makefile branches/2019Q4/databases/mariadb55-server/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/databases/mariadb55-server/Makefile ============================================================================== --- branches/2019Q4/databases/mariadb55-server/Makefile Thu Nov 28 19:05:05 2019 (r518601) +++ branches/2019Q4/databases/mariadb55-server/Makefile Thu Nov 28 19:07:48 2019 (r518602) @@ -1,9 +1,9 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 5.5.65 -PORTREVISION?= 1 -CATEGORIES= databases ipv6 +PORTVERSION= 5.5.66 +PORTREVISION?= 0 +CATEGORIES= databases MASTER_SITES= http://ftp.osuosl.org/pub/mariadb/${PORTNAME}-${PORTVERSION}/source/ \ http://mirrors.supportex.net/mariadb/${PORTNAME}-${PORTVERSION}/source/ \ http://mirror.aarnet.edu.au/pub/MariaDB/${PORTNAME}-${PORTVERSION}/source/ \ @@ -22,7 +22,6 @@ LICENSE= GPLv2 SUB_FILES= pkg-message -SLAVEDIRS= databases/mariadb55-client USES+= cmake:insource,noninja compiler:c++11-lang shebangfix ssl USE_LDCONFIG= ${PREFIX}/lib/mysql SHEBANG_FILES= scripts/*.sh sql-bench/[a-km-z]* Modified: branches/2019Q4/databases/mariadb55-server/distinfo ============================================================================== --- branches/2019Q4/databases/mariadb55-server/distinfo Thu Nov 28 19:05:05 2019 (r518601) +++ branches/2019Q4/databases/mariadb55-server/distinfo Thu Nov 28 19:07:48 2019 (r518602) @@ -1,3 +1,3 @@ -TIMESTAMP = 1564603525 -SHA256 (mariadb-5.5.65.tar.gz) = 254510c3ce6461a188777e243a6a614d8ac75763f61fb6f101ae9d5cc3d90599 -SIZE (mariadb-5.5.65.tar.gz) = 45957577 +TIMESTAMP = 1574710698 +SHA256 (mariadb-5.5.66.tar.gz) = d7457c6d2edc9c4ca9278deab9812cd28b38e1af4e47911a1590ca532379f6ae +SIZE (mariadb-5.5.66.tar.gz) = 45962591 From owner-svn-ports-branches@freebsd.org Thu Nov 28 21:57:19 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 010F51B9E42; Thu, 28 Nov 2019 21:57:19 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47PBM26xK1z48hJ; Thu, 28 Nov 2019 21:57:18 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D102844D7; Thu, 28 Nov 2019 21:57:18 +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 xASLvIDi016894; Thu, 28 Nov 2019 21:57:18 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xASLvIaZ016892; Thu, 28 Nov 2019 21:57:18 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201911282157.xASLvIaZ016892@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Thu, 28 Nov 2019 21:57:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518608 - branches/2019Q4/lang/php74 X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: branches/2019Q4/lang/php74 X-SVN-Commit-Revision: 518608 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.29 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, 28 Nov 2019 21:57:19 -0000 Author: tz Date: Thu Nov 28 21:57:18 2019 New Revision: 518608 URL: https://svnweb.freebsd.org/changeset/ports/518608 Log: MFH: r518578 lang/php74: Update from 7.4.0RC 6 to 7.4.0 The PHP development team announces the immediate availability of PHP 7.4.0. This release marks the fourth feature update to the PHP 7 series. PHP 7.4.0 comes with numerous improvements and new features such as: Typed Properties Arrow Functions Limited Return Type Covariance and Argument Type Contravariance Unpacking Inside Arrays Numeric Literal Separator Weak References Allow Exceptions from __toString() Opcache Preloading Several Deprecations Extensions Removed from the Core Full Changelog: Core: Implemented RFC: Deprecate curly brace syntax for accessing array elements and string offsets. Implemented RFC: Deprecations for PHP 7.4. Fixed bug #52752 (Crash when lexing). Fixed bug #60677 (CGI doesn't properly validate shebang line contains #!). Fixed bug #71030 (Self-assignment in list() may have inconsistent behavior). Fixed bug #72530 (Use After Free in GC with Certain Destructors). Fixed bug #75921 (Inconsistent: No warning in some cases when stdObj is created on the fly). Implemented FR #76148 (Add array_key_exists() to the list of specially compiled functions). Fixed bug #76430 (__METHOD__ inconsistent outside of method). Fixed bug #76451 (Aliases during inheritance type checks affected by opcache). Implemented FR #77230 (Support custom CFLAGS and LDFLAGS from environment). Fixed bug #77345 (Stack Overflow caused by circular reference in garbage collection). Fixed bug #77812 (Interactive mode does not support PHP 7.3-style heredoc). Fixed bug #77877 (call_user_func() passes $this to static methods). Fixed bug #78066 (PHP eats the first byte of a program that comes from process substitution). Fixed bug #78151 (Segfault caused by indirect expressions in PHP 7.4a1). Fixed bug #78154 (SEND_VAR_NO_REF does not always send reference). Fixed bug #78182 (Segmentation fault during by-reference property assignment). Fixed bug #78212 (Segfault in built-in webserver). Fixed bug #78220 (Can't access OneDrive folder). Fixed bug #78226 (Unexpected __set behavior with typed properties). Fixed bug #78239 (Deprecation notice during string conversion converted to exception hangs). Fixed bug #78335 (Static properties/variables containing cycles report as leak). Fixed bug #78340 (Include of stream wrapper not reading whole file). Fixed bug #78344 (Segmentation fault on zend_check_protected). Fixed bug #78356 (Array returned from ArrayAccess is incorrectly unpacked as argument). Fixed bug #78379 (Cast to object confuses GC, causes crash). Fixed bug #78386 (fstat mode has unexpected value on PHP 7.4). Fixed bug #78396 (Second file_put_contents in Shutdown hangs script). Fixed bug #78406 (Broken file includes with user-defined stream filters). Fixed bug #78438 (Corruption when __unserializing deeply nested structures). Fixed bug #78441 (Parse error due to heredoc identifier followed by digit). Fixed bug #78454 (Consecutive numeric separators cause OOM error). Fixed bug #78460 (PEAR installation failure). Fixed bug #78531 (Crash when using undefined variable as object). Fixed bug #78535 (auto_detect_line_endings value not parsed as bool). Fixed bug #78604 (token_get_all() does not properly tokenize FOOstat modifies $dbc->affected_rows). Fixed bug #76809 (SSL settings aren't respected when persistent connections are used). Fixed bug #78179 (MariaDB server version incorrectly detected). Fixed bug #78213 (Empty row pocket). MySQLnd: Fixed connect_attr issues and added the _server_host connection attribute. Fixed bug #60594 (mysqlnd exposes 160 lines of stats in phpinfo). ODBC: Fixed bug #78473 (odbc_close() closes arbitrary resources). Opcache: Implemented preloading RFC. Add opcache.preload_user INI directive. Added new INI directive opcache.cache_id (Windows only). Fixed bug #78106 (Path resolution fails if opcache disabled during request). Fixed bug #78175 (Preloading segfaults at preload time and at runtime). Fixed bug #78202 (Opcache stats for cache hits are capped at 32bit NUM). Fixed bug #78271 (Invalid result of if-else). Fixed bug #78341 (Failure to detect smart branch in DFA pass). Fixed bug #78376 (Incorrect preloading of constant static properties). Fixed bug #78429 (opcache_compile_file(__FILE__); segfaults). Fixed bug #78512 (Cannot make preload work). Fixed bug #78514 (Preloading segfaults with inherited typed property). Fixed bug #78654 (Incorrectly computed opcache checksum on files with non-ascii characters). OpenSSL: Added TLS 1.3 support to streams including new tlsv1.3 stream. Added openssl_x509_verify function. openssl_random_pseudo_bytes() now throws in error conditions. Changed the default config path (Windows only). Fixed bug #78231 (Segmentation fault upon stream_socket_accept of exported socket-to-stream). Fixed bug #78391 (Assertion failure in openssl_random_pseudo_bytes). Fixed bug #78775 (TLS issues from HTTP request affecting other encrypted connections). Pcntl: Fixed bug #77335 (PHP is preventing SIGALRM from specifying SA_RESTART). PCRE: Implemented FR #77094 (Support flags in preg_replace_callback). Fixed bug #72685 (Repeated UTF-8 validation of same string in UTF-8 mode). Fixed bug #73948 (Preg_match_all should return NULLs on trailing optional capture groups). Fixed bug #78338 (Array cross-border reading in PCRE). Fixed bug #78349 (Bundled pcre2 library missing LICENCE file). PDO: Implemented FR #71885 (Allow escaping question mark placeholders). https://wiki.php.net/rfc/pdo_escape_placeholders Fixed bug #77849 (Disable cloning of PDO handle/connection objects). Implemented FR #78033 (PDO - support username and password specified in DSN). PDO_Firebird: Implemented FR #65690 (PDO_Firebird should also support dialect 1). Implemented FR #77863 (PDO firebird support type Boolean in input parameters). PDO_MySQL: Fixed bug #41997 (SP call yields additional empty result set). Fixed bug #78623 (Regression caused by "SP call yields additional empty result set"). PDO_OCI: Support Oracle Database tracing attributes ACTION, MODULE, CLIENT_INFO, and CLIENT_IDENTIFIER. Implemented FR #76908 (PDO_OCI getColumnMeta() not implemented). PDO_SQLite: Implemented sqlite_stmt_readonly in PDO_SQLite. Raised requirements to SQLite 3.5.0. Fixed bug #78192 (SegFault when reuse statement after schema has changed). Fixed bug #78348 (Remove -lrt from pdo_sqlite.so). Phar: Fixed bug #77919 (Potential UAF in Phar RSHUTDOWN). phpdbg: Fixed bug #76596 (phpdbg support for display_errors=stderr). Fixed bug #76801 (too many open files). Fixed bug #77800 (phpdbg segfaults on listing some conditional breakpoints). Fixed bug #77805 (phpdbg build fails when readline is shared). Recode: Unbundled the recode extension. Reflection: Fixed bug #76737 (Unserialized reflection objects are broken, they shouldn't be serializable). Fixed bug #78263 (\ReflectionReference::fromArrayElement() returns null while item is a reference). Fixed bug #78410 (Cannot "manually" unserialize class that is final and extends an internal one). Fixed bug #78697 (ReflectionClass::implementsInterface - inaccurate error message with traits). Fixed bug #78774 (ReflectionNamedType on Typed Properties Crash). Session: Fixed bug #78624 (session_gc return value for user defined session handlers). SimpleXML: Implemented FR #65215 (SimpleXMLElement could register as implementing Countable). Fixed bug #75245 (Don't set content of elements with only whitespaces). Sockets: Fixed bug #67619 (Validate length on socket_write). Fixed bug #78665 (Multicasting may leak memory). sodium: Fixed bug #77646 (sign_detached() strings not terminated). Fixed bug #78510 (Partially uninitialized buffer returned by sodium_crypto_generichash_init()). Fixed bug #78516 (password_hash(): Memory cost is not in allowed range). SPL: Fixed bug #77518 (SeekableIterator::seek() should accept 'int' typehint as documented). Fixed bug #78409 (Segfault when creating instance of ArrayIterator without constructor). Fixed bug #78436 (Missing addref in SplPriorityQueue EXTR_BOTH mode). Fixed bug #78456 (Segfault when serializing SplDoublyLinkedList). SQLite3: Unbundled libsqlite. Raised requirements to SQLite 3.7.4. Forbid (un)serialization of SQLite3, SQLite3Stmt and SQLite3Result. Added support for the SQLite @name notation. Added SQLite3Stmt::getSQL() to retrieve the SQL of the statement. Implement FR ##70950 (Make SQLite3 Online Backup API available). Standard: Implemented RFC password hashing registry. Implemented RFC where password_hash() has argon2i(d) implementations from ext/sodium when PHP is built without libargon. Implemented FR #38301 (field enclosure behavior in fputcsv). Implemented FR #51496 (fgetcsv should take empty string as an escape). Fixed bug #73535 (php_sockop_write() returns 0 on error, can be used to trigger Denial of Service). Fixed bug #74764 (Bindto IPv6 works with file_get_contents but fails with stream_socket_client). Fixed bug #76859 (stream_get_line skips data if used with data-generating filter). Implemented FR #77377 (No way to handle CTRL+C in Windows). Fixed bug #77930 (stream_copy_to_stream should use mmap more often). Implemented FR #78177 (Make proc_open accept command array). Fixed bug #78208 (password_needs_rehash() with an unknown algo should always return true). Fixed bug #78241 (touch() does not handle dates after 2038 in PHP 64-bit). Fixed bug #78282 (atime and mtime mismatch). Fixed bug #78326 (improper memory deallocation on stream_get_contents() with fixed length buffer). Fixed bug #78346 (strip_tags no longer handling nested php tags). Fixed bug #78506 (Error in a php_user_filter::filter() is not reported). Fixed bug #78549 (Stack overflow due to nested serialized input). Fixed bug #78759 (array_search in $GLOBALS). Testing: Fixed bug #78684 (PCRE bug72463_2 test is sending emails on Linux). Tidy: Added TIDY_TAG_* constants for HTML5 elements. Fixed bug #76736 (wrong reflection for tidy_get_head, tidy_get_html, tidy_get_root, and tidy_getopt) WDDX: Deprecated and unbundled the WDDX extension. Zip: Fixed bug #78641 (addGlob can modify given remove_path value). Changelog taken from: https://www.php.net/ChangeLog-7.php#7.4.0 Sponsored by: Professionelles Bounce Management Approved by: ports-secteam (joneum) Modified: branches/2019Q4/lang/php74/Makefile branches/2019Q4/lang/php74/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/lang/php74/Makefile ============================================================================== --- branches/2019Q4/lang/php74/Makefile Thu Nov 28 21:49:26 2019 (r518607) +++ branches/2019Q4/lang/php74/Makefile Thu Nov 28 21:57:18 2019 (r518608) @@ -1,10 +1,10 @@ # $FreeBSD$ PORTNAME= php74 -DISTVERSION= 7.4.0RC6 +DISTVERSION= 7.4.0 PORTREVISION?= 0 CATEGORIES?= lang devel www -MASTER_SITES= https://downloads.php.net/~derick/ +MASTER_SITES= PHP/distributions DISTNAME= php-${DISTVERSION} MAINTAINER= tz@FreeBSD.org Modified: branches/2019Q4/lang/php74/distinfo ============================================================================== --- branches/2019Q4/lang/php74/distinfo Thu Nov 28 21:49:26 2019 (r518607) +++ branches/2019Q4/lang/php74/distinfo Thu Nov 28 21:57:18 2019 (r518608) @@ -1,3 +1,3 @@ -TIMESTAMP = 1573513925 -SHA256 (php-7.4.0RC6.tar.xz) = 6873a51f56a2c6bba192ff38e33158578c2a4380c2e2f0758949ebf55cc915a7 -SIZE (php-7.4.0RC6.tar.xz) = 10229764 +TIMESTAMP = 1574891823 +SHA256 (php-7.4.0.tar.xz) = 9bb751b20e5d6cc1ea9b1ebf23ef2d5f07f99b2d9cc417bf1d70c04f8b20ec42 +SIZE (php-7.4.0.tar.xz) = 10232208 From owner-svn-ports-branches@freebsd.org Fri Nov 29 06:30:47 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 95B781C546A; Fri, 29 Nov 2019 06:30:47 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47PPlW3WlLz4XXR; Fri, 29 Nov 2019 06:30:47 +0000 (UTC) (envelope-from mfechner@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5CCA9A05B; Fri, 29 Nov 2019 06:30:47 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAT6UlGH020417; Fri, 29 Nov 2019 06:30:47 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAT6UlOi020415; Fri, 29 Nov 2019 06:30:47 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201911290630.xAT6UlOi020415@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Fri, 29 Nov 2019 06:30:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518624 - branches/2019Q4/www/gitlab-ce X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q4/www/gitlab-ce X-SVN-Commit-Revision: 518624 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.29 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, 29 Nov 2019 06:30:47 -0000 Author: mfechner Date: Fri Nov 29 06:30:46 2019 New Revision: 518624 URL: https://svnweb.freebsd.org/changeset/ports/518624 Log: MFH: r518603 www/gitlab-ce: security update to 12.5.2. Changelog: https://about.gitlab.com/blog/2019/11/27/security-release-gitlab-12-5-2-released/ Security: 4ce7c28a-11ac-11ea-b537-001b217b3468 Approved by: ports-secteam (miwi) Modified: branches/2019Q4/www/gitlab-ce/Makefile branches/2019Q4/www/gitlab-ce/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/gitlab-ce/Makefile ============================================================================== --- branches/2019Q4/www/gitlab-ce/Makefile Fri Nov 29 05:24:38 2019 (r518623) +++ branches/2019Q4/www/gitlab-ce/Makefile Fri Nov 29 06:30:46 2019 (r518624) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gitlab-ce -PORTVERSION= 12.5.1 +PORTVERSION= 12.5.2 PORTREVISION= 0 CATEGORIES= www devel @@ -239,7 +239,7 @@ USE_GITLAB= yes GL_ACCOUNT= gitlab-org GL_PROJECT= gitlab-foss # Find the here: https://gitlab.com/gitlab-org/gitlab-foss/-/tags -GL_COMMIT= 79a183ea8dee98900cfb495611c3342f6f312df0 +GL_COMMIT= 49482945d28784af790db1c99da688d797c6fca7 USERS= git GROUPS= git Modified: branches/2019Q4/www/gitlab-ce/distinfo ============================================================================== --- branches/2019Q4/www/gitlab-ce/distinfo Fri Nov 29 05:24:38 2019 (r518623) +++ branches/2019Q4/www/gitlab-ce/distinfo Fri Nov 29 06:30:46 2019 (r518624) @@ -1,3 +1,3 @@ -TIMESTAMP = 1574880585 -SHA256 (gitlab-org-gitlab-foss-79a183ea8dee98900cfb495611c3342f6f312df0_GL0.tar.gz) = bdb2900e65c949239b035031d6a2ab41f13161fc026dfa04e7e758763e84e969 -SIZE (gitlab-org-gitlab-foss-79a183ea8dee98900cfb495611c3342f6f312df0_GL0.tar.gz) = 102102959 +TIMESTAMP = 1574924937 +SHA256 (gitlab-org-gitlab-foss-49482945d28784af790db1c99da688d797c6fca7_GL0.tar.gz) = 59d33875155e5356ed0e1dfbc25dd63710b0af1ed27e8e3b368e1be2dd939ab3 +SIZE (gitlab-org-gitlab-foss-49482945d28784af790db1c99da688d797c6fca7_GL0.tar.gz) = 102102996 From owner-svn-ports-branches@freebsd.org Fri Nov 29 07:35:32 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E03191C6ED1; Fri, 29 Nov 2019 07:35:32 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47PRBD5gHDz4bN1; Fri, 29 Nov 2019 07:35:32 +0000 (UTC) (envelope-from brnrd@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8D6A1AC91; Fri, 29 Nov 2019 07:35:32 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAT7ZWBU058974; Fri, 29 Nov 2019 07:35:32 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAT7ZVcj058967; Fri, 29 Nov 2019 07:35:31 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201911290735.xAT7ZVcj058967@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Fri, 29 Nov 2019 07:35:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518628 - in branches/2019Q4/databases/mariadb104-server: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: in branches/2019Q4/databases/mariadb104-server: . files X-SVN-Commit-Revision: 518628 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.29 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, 29 Nov 2019 07:35:32 -0000 Author: brnrd Date: Fri Nov 29 07:35:30 2019 New Revision: 518628 URL: https://svnweb.freebsd.org/changeset/ports/518628 Log: MFH: r518601 databases/mariadb104-server: Security update to 10.4.10 PR: 241335 Submitted by: nbari tequilla io, Ralf van der Enden Security: fc91f2ef-fd7b-11e9-a1c7-b499baebfeaf Approved by: ports-secteam (miwi) Added: branches/2019Q4/databases/mariadb104-server/files/patch-CMakeLists.txt - copied unchanged from r518601, head/databases/mariadb104-server/files/patch-CMakeLists.txt branches/2019Q4/databases/mariadb104-server/files/patch-plugin_auth__pam_testing_CMakeLists.txt - copied unchanged from r518601, head/databases/mariadb104-server/files/patch-plugin_auth__pam_testing_CMakeLists.txt Deleted: branches/2019Q4/databases/mariadb104-server/files/patch-MDEV-20258 Modified: branches/2019Q4/databases/mariadb104-server/Makefile branches/2019Q4/databases/mariadb104-server/distinfo branches/2019Q4/databases/mariadb104-server/files/patch-libmariadb_plugins_auth_CMakeLists.txt branches/2019Q4/databases/mariadb104-server/files/patch-man_CMakeLists.txt branches/2019Q4/databases/mariadb104-server/files/patch-storage_tokudb_PerconaFT_cmake__modules_TokuThirdParty.cmake branches/2019Q4/databases/mariadb104-server/pkg-plist Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/databases/mariadb104-server/Makefile ============================================================================== --- branches/2019Q4/databases/mariadb104-server/Makefile Fri Nov 29 07:33:35 2019 (r518627) +++ branches/2019Q4/databases/mariadb104-server/Makefile Fri Nov 29 07:35:30 2019 (r518628) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 10.4.7 +PORTVERSION= 10.4.10 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://mirrors.supportex.net/${SITESDIR}/ \ @@ -24,11 +24,12 @@ LICENSE_NAME_PerconaFT= PerconaFT patents license LICENSE_FILE_PerconaFT= ${WRKSRC}/storage/tokudb/PerconaFT/PATENTS LICENSE_PERMS_PerconaFT= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +USES= bison:build cmake:insource,noninja compiler:c++11-lib cpe iconv:translit libedit ncurses shebangfix ssl + SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message SLAVEDIRS= databases/mariadb102-client -USES= bison:build cmake:insource,noninja compiler:c++11-lib cpe iconv:translit libedit ncurses shebangfix ssl USE_LDCONFIG= ${PREFIX}/lib/mysql SHEBANG_FILES= scripts/*.sh SITESDIR= mariadb/mariadb-${PORTVERSION}/source @@ -42,12 +43,12 @@ OPTIONS_DEFAULT= GSSAPI_BASE # MySQL-Server options OPTIONS_DEFAULT+= CONNECT_EXTRA INNOBASE SPHINX SPIDER WSREP OPTIONS_GROUP= COMPRESSION ENGINES GROONGA -OPTIONS_DEFINE= AWS_KMS CONNECT_EXTRA DOCS +OPTIONS_DEFINE= CONNECT_EXTRA DOCS OPTIONS_DEFINE_amd64= WSREP OPTIONS_GROUP_COMPRESSION= LZ4 LZO SNAPPY ZSTD OPTIONS_GROUP_ENGINES= INNOBASE MROONGA OQGRAPH ROCKSDB SPHINX SPIDER TOKUDB OPTIONS_GROUP_GROONGA= ZMQ MSGPACK -OPTIONS_EXCLUDE_i386= TOKUDB +OPTIONS_EXCLUDE_i386= ROCKSDB TOKUDB CONNECT_EXTRA_DESC= Enable ODBC and XML in CONNECT engine COMPRESSION_DESC= Optional page compression @@ -149,11 +150,11 @@ OQGRAPH_LIB_DEPENDS= libboost_system.so:devel/boost-li ROCKSDB_USES= python SNAPPY_CMAKE_BOOL= WITH_INNODB_SNAPPY WITH_ROCKSDB_snappy SNAPPY_LIB_DEPENDS= libsnappy.so:archivers/snappy -TOKUDB_BROKEN= Error with bundled liblzma TOKUDB_IMPLIES= SNAPPY TOKUDB_PORTDOCS= README.md TOKUDB_VARS= LICENSE+=PerconaFT LICENSE_COMB=multi WSREP_CMAKE_BOOL= WITH_WSREP +WSREP_LIB_DEPENDS= libgalera.so:databases/galera26 ZMQ_LIB_DEPENDS= libzmq.so:net/libzmq4 ZSTD_CMAKE_BOOL= WITH_ROCKSDB_ZSTD ZSTD_LIB_DEPENDS= libzstd.so:archivers/zstd @@ -201,8 +202,8 @@ post-configure: -e 's|(#define LIBS .*)"$$|\1 -L${PREFIX}/lib"|' \ ${WRKSRC}/libmariadb/mariadb_config/mariadb_config.c -# Fix build failure in mbstream, see https://jira.mariadb.org/browse/MDEV-14072 -post-configure-INNOBASE-on: +# Fix build failure in mbstream, see https://jira.mariadb.org/browse/MDEV-14072 +post-configure-INNOBASE-on: ${REINPLACE_CMD} -e 's| ${PREFIX}/lib/liblz4.so\(.* ${PREFIX}/lib/liblz4.so.*\)|\1|' \ -e 's| ${PREFIX}/lib/liblzo2.so\(.* ${PREFIX}/lib/liblzo2.so.*\)|\1|' \ -e 's| ${PREFIX}/lib/libsnappy.so\(.* ${PREFIX}/lib/libsnappy.so\)|\1|' \ Modified: branches/2019Q4/databases/mariadb104-server/distinfo ============================================================================== --- branches/2019Q4/databases/mariadb104-server/distinfo Fri Nov 29 07:33:35 2019 (r518627) +++ branches/2019Q4/databases/mariadb104-server/distinfo Fri Nov 29 07:35:30 2019 (r518628) @@ -1,3 +1,3 @@ -TIMESTAMP = 1564591340 -SHA256 (mariadb-10.4.7.tar.gz) = c8e6a6d0bb4f22c416ed675d24682a3ecfa383c5283efee70c8edf131374d817 -SIZE (mariadb-10.4.7.tar.gz) = 78155161 +TIMESTAMP = 1574142229 +SHA256 (mariadb-10.4.10.tar.gz) = cd50fddf86c2a47405737e342f78ebd40d5716f0fb32b976245de713bed01421 +SIZE (mariadb-10.4.10.tar.gz) = 78352896 Copied: branches/2019Q4/databases/mariadb104-server/files/patch-CMakeLists.txt (from r518601, head/databases/mariadb104-server/files/patch-CMakeLists.txt) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q4/databases/mariadb104-server/files/patch-CMakeLists.txt Fri Nov 29 07:35:30 2019 (r518628, copy of r518601, head/databases/mariadb104-server/files/patch-CMakeLists.txt) @@ -0,0 +1,13 @@ +--- CMakeLists.txt.orig 2019-11-07 05:52:21 UTC ++++ CMakeLists.txt +@@ -498,8 +498,10 @@ ADD_CUSTOM_TARGET(INFO_BIN ALL + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} + ) + ++IF(FALSE) + INSTALL_DOCUMENTATION(README.md CREDITS COPYING THIRDPARTY + EXCEPTIONS-CLIENT COMPONENT Readme) ++ENDIF() + + # MDEV-6526 these files are not installed anymore + #INSTALL_DOCUMENTATION(${CMAKE_BINARY_DIR}/Docs/INFO_SRC Modified: branches/2019Q4/databases/mariadb104-server/files/patch-libmariadb_plugins_auth_CMakeLists.txt ============================================================================== --- branches/2019Q4/databases/mariadb104-server/files/patch-libmariadb_plugins_auth_CMakeLists.txt Fri Nov 29 07:33:35 2019 (r518627) +++ branches/2019Q4/databases/mariadb104-server/files/patch-libmariadb_plugins_auth_CMakeLists.txt Fri Nov 29 07:35:30 2019 (r518628) @@ -1,24 +1,24 @@ ---- libmariadb/plugins/auth/CMakeLists.txt.orig 2018-05-23 20:38:41 UTC +--- libmariadb/plugins/auth/CMakeLists.txt.orig 2019-11-07 05:52:21 UTC +++ libmariadb/plugins/auth/CMakeLists.txt -@@ -38,6 +38,7 @@ IF(GSSAPI_SOURCES) - LIBRARIES ${GSSAPI_LIBS}) - ENDIF() +@@ -3,6 +3,7 @@ SET(AUTH_DIR ${CC_SOURCE_DIR}/plugins/auth) + INCLUDE_DIRECTORIES(${AUTH_DIR}) + INCLUDE_DIRECTORIES(${CC_SOURCE_DIR}/include) +IF(NOT WITHOUT_CLIENT) - IF(${WITH_SSL} STREQUAL "OPENSSL" OR ${WITH_SSL} STREQUAL "SCHANNEL") - IF(WIN32) - SET(SHA256_LIBS crypt32) -@@ -51,6 +52,7 @@ IF(${WITH_SSL} STREQUAL "OPENSSL" OR ${W - SOURCES ${AUTH_DIR}/sha256_pw.c - LIBRARIES ${SHA256_LIBS}) + SET(CRYPTO_PLUGIN 1) + IF(WIN32) + SET(CRYPT_SOURCE ${CC_SOURCE_DIR}/libmariadb/secure/win_crypt.c) +@@ -18,6 +19,7 @@ ELSEIF(WITH_SSL STREQUAL "GNUTLS") + ELSE() + UNSET(CRYPTO_PLUGIN) ENDIF() +ENDIF() - # old_password plugin - REGISTER_PLUGIN(TARGET mysql_old_password -@@ -60,10 +62,11 @@ REGISTER_PLUGIN(TARGET mysql_old_passwor + #native password + REGISTER_PLUGIN(TARGET mysql_native_password +@@ -119,10 +121,11 @@ REGISTER_PLUGIN(TARGET mysql_old_password + DEFAULT STATIC SOURCES ${AUTH_DIR}/old_password.c) - +IF(NOT WITHOUT_CLIENT) # Cleartext Modified: branches/2019Q4/databases/mariadb104-server/files/patch-man_CMakeLists.txt ============================================================================== --- branches/2019Q4/databases/mariadb104-server/files/patch-man_CMakeLists.txt Fri Nov 29 07:33:35 2019 (r518627) +++ branches/2019Q4/databases/mariadb104-server/files/patch-man_CMakeLists.txt Fri Nov 29 07:35:30 2019 (r518628) @@ -1,8 +1,8 @@ Fix up missing WITHOUT_DOCS, WITHOUT_CLIENT options ---- man/CMakeLists.txt.orig 2017-05-14 23:13:16 UTC +--- man/CMakeLists.txt.orig 2019-11-07 05:52:21 UTC +++ man/CMakeLists.txt -@@ -38,7 +38,8 @@ SET(MAN1_TEST mysql-stress-test.pl.1 mys +@@ -40,10 +40,11 @@ SET(MAN1_TEST mysql-stress-test.pl.1 mysql-test-run.pl INSTALL(FILES ${MAN1_SERVER} DESTINATION ${INSTALL_MANDIR}/man1 COMPONENT ManPagesServer) INSTALL(FILES ${MAN8_SERVER} DESTINATION ${INSTALL_MANDIR}/man8 COMPONENT ManPagesServer) @@ -12,3 +12,6 @@ Fix up missing WITHOUT_DOCS, WITHOUT_CLIENT options INSTALL(FILES ${MAN1_TEST} DESTINATION ${INSTALL_MANDIR}/man1 COMPONENT ManPagesTest) - +ENDIF() + macro(MARIADB_SYMLINK_MANPAGE) + list(LENGTH MARIADB_SYMLINK_FROMS _len) + math(EXPR _listlen "${_len}-1") Copied: branches/2019Q4/databases/mariadb104-server/files/patch-plugin_auth__pam_testing_CMakeLists.txt (from r518601, head/databases/mariadb104-server/files/patch-plugin_auth__pam_testing_CMakeLists.txt) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q4/databases/mariadb104-server/files/patch-plugin_auth__pam_testing_CMakeLists.txt Fri Nov 29 07:35:30 2019 (r518628, copy of r518601, head/databases/mariadb104-server/files/patch-plugin_auth__pam_testing_CMakeLists.txt) @@ -0,0 +1,10 @@ +--- plugin/auth_pam/testing/CMakeLists.txt.orig 2019-11-07 05:52:22 UTC ++++ plugin/auth_pam/testing/CMakeLists.txt +@@ -5,5 +5,7 @@ SET_TARGET_PROPERTIES (pam_mariadb_mtr PROPERTIES PREF + TARGET_LINK_LIBRARIES(pam_mariadb_mtr pam) + + SET(dest DESTINATION "${INSTALL_MYSQLTESTDIR}/suite/plugins/pam" COMPONENT Test) ++IF(FALSE) + INSTALL(TARGETS pam_mariadb_mtr ${dest}) + INSTALL(FILES mariadb_mtr.conf RENAME mariadb_mtr ${dest}) ++ENDIF() Modified: branches/2019Q4/databases/mariadb104-server/files/patch-storage_tokudb_PerconaFT_cmake__modules_TokuThirdParty.cmake ============================================================================== --- branches/2019Q4/databases/mariadb104-server/files/patch-storage_tokudb_PerconaFT_cmake__modules_TokuThirdParty.cmake Fri Nov 29 07:33:35 2019 (r518627) +++ branches/2019Q4/databases/mariadb104-server/files/patch-storage_tokudb_PerconaFT_cmake__modules_TokuThirdParty.cmake Fri Nov 29 07:35:30 2019 (r518628) @@ -1,10 +1,9 @@ Do NOT use bundled libs, use xz/lzma from base and archivers/snappy from ports ---- storage/tokudb/PerconaFT/cmake_modules/TokuThirdParty.cmake.orig 2017-05-14 23:13:20 UTC +--- storage/tokudb/PerconaFT/cmake_modules/TokuThirdParty.cmake.orig 2019-11-07 05:52:23 UTC +++ storage/tokudb/PerconaFT/cmake_modules/TokuThirdParty.cmake -@@ -34,6 +34,13 @@ if (CMAKE_PROJECT_NAME STREQUAL TokuDB) - endif () - endif () +@@ -1,5 +1,12 @@ + include(ExternalProject) +IF (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") + include_directories("/usr/include") @@ -16,7 +15,7 @@ Do NOT use bundled libs, use xz/lzma from base and arc ## add lzma with an external project set(xz_configure_opts --with-pic --enable-static) if (APPLE) -@@ -105,8 +112,15 @@ add_library(lzma STATIC IMPORTED) +@@ -71,8 +78,15 @@ add_library(lzma STATIC IMPORTED) set_target_properties(lzma PROPERTIES IMPORTED_LOCATION "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/xz/lib/liblzma.a") add_dependencies(lzma build_lzma) @@ -32,7 +31,7 @@ Do NOT use bundled libs, use xz/lzma from base and arc ## add snappy with an external project set(SNAPPY_SOURCE_DIR "${TokuDB_SOURCE_DIR}/third_party/snappy-1.1.2" CACHE FILEPATH "Where to find sources for snappy.") if (NOT EXISTS "${SNAPPY_SOURCE_DIR}/CMakeLists.txt") -@@ -140,3 +154,4 @@ add_library(snappy STATIC IMPORTED) +@@ -109,3 +123,4 @@ add_library(snappy STATIC IMPORTED) set_target_properties(snappy PROPERTIES IMPORTED_LOCATION "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/snappy/lib/libsnappy.a") add_dependencies(snappy build_snappy) Modified: branches/2019Q4/databases/mariadb104-server/pkg-plist ============================================================================== --- branches/2019Q4/databases/mariadb104-server/pkg-plist Fri Nov 29 07:33:35 2019 (r518627) +++ branches/2019Q4/databases/mariadb104-server/pkg-plist Fri Nov 29 07:35:30 2019 (r518628) @@ -309,12 +309,9 @@ man/man8/mysqld.8.gz %%DATADIR%%/ukrainian/errmsg.sys %%WSREP%%%%DATADIR%%/wsrep.cnf %%WSREP%%%%DATADIR%%/wsrep_notify -%%DOCSDIR%%/CREDITS @comment %%DOCSDIR%%/COPYING -%%DOCSDIR%%/EXCEPTIONS-CLIENT %%DOCSDIR%%/INSTALL-BINARY %%WSREP%%%%DOCSDIR%%/README-wsrep -%%DOCSDIR%%/README.md @comment %%DOCSDIR%%/THIRDPARTY @comment share/groonga-normalizer-mysql/lgpl-2.0.txt @comment share/groonga/COPYING From owner-svn-ports-branches@freebsd.org Fri Nov 29 12:10:59 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 216411AEACA; Fri, 29 Nov 2019 12:10:59 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47PYJ306dcz3M4d; Fri, 29 Nov 2019 12:10:59 +0000 (UTC) (envelope-from lme@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DC08CDF69; Fri, 29 Nov 2019 12:10:58 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xATCAw7f019042; Fri, 29 Nov 2019 12:10:58 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xATCAwSq018659; Fri, 29 Nov 2019 12:10:58 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201911291210.xATCAwSq018659@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Fri, 29 Nov 2019 12:10:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518644 - branches/2019Q4/net-mgmt/icingaweb2-module-ipl X-SVN-Group: ports-branches X-SVN-Commit-Author: lme X-SVN-Commit-Paths: branches/2019Q4/net-mgmt/icingaweb2-module-ipl X-SVN-Commit-Revision: 518644 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.29 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, 29 Nov 2019 12:10:59 -0000 Author: lme Date: Fri Nov 29 12:10:57 2019 New Revision: 518644 URL: https://svnweb.freebsd.org/changeset/ports/518644 Log: MFH: r518641 net-mgmt/icingaweb2-module-ipl: Update to 0.4.0 Approved by: ports-secteam (joneum) Modified: branches/2019Q4/net-mgmt/icingaweb2-module-ipl/Makefile branches/2019Q4/net-mgmt/icingaweb2-module-ipl/distinfo branches/2019Q4/net-mgmt/icingaweb2-module-ipl/pkg-plist Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/net-mgmt/icingaweb2-module-ipl/Makefile ============================================================================== --- branches/2019Q4/net-mgmt/icingaweb2-module-ipl/Makefile Fri Nov 29 12:09:16 2019 (r518643) +++ branches/2019Q4/net-mgmt/icingaweb2-module-ipl/Makefile Fri Nov 29 12:10:57 2019 (r518644) @@ -2,8 +2,7 @@ PORTNAME= icingaweb2-module-ipl DISTVERSIONPREFIX= v -DISTVERSION= 0.3.0 -PORTREVISION= 1 +DISTVERSION= 0.4.0 CATEGORIES= net-mgmt www MAINTAINER= lme@FreeBSD.org Modified: branches/2019Q4/net-mgmt/icingaweb2-module-ipl/distinfo ============================================================================== --- branches/2019Q4/net-mgmt/icingaweb2-module-ipl/distinfo Fri Nov 29 12:09:16 2019 (r518643) +++ branches/2019Q4/net-mgmt/icingaweb2-module-ipl/distinfo Fri Nov 29 12:10:57 2019 (r518644) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558083706 -SHA256 (icinga-icingaweb2-module-ipl-v0.3.0_GH0.tar.gz) = 2dc82adfd995c45d01f1d136d9eed8d8f1a942a97aacc52476402f750e1d3808 -SIZE (icinga-icingaweb2-module-ipl-v0.3.0_GH0.tar.gz) = 90198 +TIMESTAMP = 1575028657 +SHA256 (icinga-icingaweb2-module-ipl-v0.4.0_GH0.tar.gz) = ed5517ed43829ad1031f32a20db220a4f708e3741f4c66a488c4e29192531b27 +SIZE (icinga-icingaweb2-module-ipl-v0.4.0_GH0.tar.gz) = 92099 Modified: branches/2019Q4/net-mgmt/icingaweb2-module-ipl/pkg-plist ============================================================================== --- branches/2019Q4/net-mgmt/icingaweb2-module-ipl/pkg-plist Fri Nov 29 12:09:16 2019 (r518643) +++ branches/2019Q4/net-mgmt/icingaweb2-module-ipl/pkg-plist Fri Nov 29 12:10:57 2019 (r518644) @@ -58,6 +58,7 @@ %%WWWDIR%%/vendor/ipl/html/src/Form.php %%WWWDIR%%/vendor/ipl/html/src/FormDecorator/DdDtDecorator.php %%WWWDIR%%/vendor/ipl/html/src/FormDecorator/DecoratorInterface.php +%%WWWDIR%%/vendor/ipl/html/src/FormDecorator/DivDecorator.php %%WWWDIR%%/vendor/ipl/html/src/FormElement/BaseFormElement.php %%WWWDIR%%/vendor/ipl/html/src/FormElement/CheckboxElement.php %%WWWDIR%%/vendor/ipl/html/src/FormElement/DateElement.php @@ -109,6 +110,7 @@ %%WWWDIR%%/vendor/ipl/sql/src/WhereInterface.php %%WWWDIR%%/vendor/ipl/stdlib/LICENSE %%WWWDIR%%/vendor/ipl/stdlib/composer.json +%%WWWDIR%%/vendor/ipl/stdlib/src/Contract/PaginationInterface.php %%WWWDIR%%/vendor/ipl/stdlib/src/Contract/ValidatorInterface.php %%WWWDIR%%/vendor/ipl/stdlib/src/Contracts/ValidatorInterface.php %%WWWDIR%%/vendor/ipl/stdlib/src/EventEmitter.php @@ -116,8 +118,10 @@ %%WWWDIR%%/vendor/ipl/stdlib/src/Loader/PluginLoader.php %%WWWDIR%%/vendor/ipl/stdlib/src/Loader/PluginLoaderInterface.php %%WWWDIR%%/vendor/ipl/stdlib/src/MessageContainer.php +%%WWWDIR%%/vendor/ipl/stdlib/src/Str.php %%WWWDIR%%/vendor/ipl/stdlib/src/functions.php %%WWWDIR%%/vendor/ipl/stdlib/src/functions_include.php +%%WWWDIR%%/vendor/ipl/stdlib/src/polyfill-php71.php %%WWWDIR%%/vendor/psr/http-message/LICENSE %%WWWDIR%%/vendor/psr/http-message/composer.json %%WWWDIR%%/vendor/psr/http-message/src/MessageInterface.php From owner-svn-ports-branches@freebsd.org Sat Nov 30 00:41:50 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3F7D61C1A10; Sat, 30 Nov 2019 00:41:50 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47PsyQ11lMz4TpL; Sat, 30 Nov 2019 00:41: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 065A01E55D; Sat, 30 Nov 2019 00:41:50 +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 xAU0fnnf064329; Sat, 30 Nov 2019 00:41:49 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAU0fniT064328; Sat, 30 Nov 2019 00:41:49 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201911300041.xAU0fniT064328@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 30 Nov 2019 00:41:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518686 - branches/2019Q4/emulators/citra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2019Q4/emulators/citra X-SVN-Commit-Revision: 518686 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.29 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, 30 Nov 2019 00:41:50 -0000 Author: jbeich Date: Sat Nov 30 00:41:49 2019 New Revision: 518686 URL: https://svnweb.freebsd.org/changeset/ports/518686 Log: MFH: r518683 emulators/citra: update to s20191128 Changes: https://github.com/citra-emu/citra/compare/15ed600c9...866df2644 Approved by: ports-secteam (swills, implicit for snapshots) Modified: branches/2019Q4/emulators/citra/Makefile branches/2019Q4/emulators/citra/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/emulators/citra/Makefile ============================================================================== --- branches/2019Q4/emulators/citra/Makefile Sat Nov 30 00:39:05 2019 (r518685) +++ branches/2019Q4/emulators/citra/Makefile Sat Nov 30 00:41:49 2019 (r518686) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20191120 +PORTVERSION= s20191128 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= 15ed600c9 +GH_TAGNAME= 866df2644 GH_TUPLE= citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ MerryMage:dynarmic:r1-992-g4e6848d1:dynarmic/externals/dynarmic \ Modified: branches/2019Q4/emulators/citra/distinfo ============================================================================== --- branches/2019Q4/emulators/citra/distinfo Sat Nov 30 00:39:05 2019 (r518685) +++ branches/2019Q4/emulators/citra/distinfo Sat Nov 30 00:41:49 2019 (r518686) @@ -1,6 +1,6 @@ -TIMESTAMP = 1574268488 -SHA256 (citra-emu-citra-s20191120-15ed600c9_GH0.tar.gz) = dc7ac287cc1e701a5078c352f6d18b033e7b03e1a6ceb4ca2ab322d846495b2a -SIZE (citra-emu-citra-s20191120-15ed600c9_GH0.tar.gz) = 5109626 +TIMESTAMP = 1575067811 +SHA256 (citra-emu-citra-s20191128-866df2644_GH0.tar.gz) = f817e5af480978b2e8f9a027e9f8094d1969d6fbfe74242b4b9a6e4d5ebb93d5 +SIZE (citra-emu-citra-s20191128-866df2644_GH0.tar.gz) = 5109933 SHA256 (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = f3fc8c9d4991b05ca1e1c8f5907ecd3ffd9724a8dccf328087b4784cda5c7db3 SIZE (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = 1762942 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c From owner-svn-ports-branches@freebsd.org Sat Nov 30 17:43:07 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 83B9A1B1C8D; Sat, 30 Nov 2019 17:43:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47QJcq26Cqz4GxR; Sat, 30 Nov 2019 17:43:07 +0000 (UTC) (envelope-from antoine@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2C8831DE0; Sat, 30 Nov 2019 17:43:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAUHh6Vt065919; Sat, 30 Nov 2019 17:43:06 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAUHh6S3065918; Sat, 30 Nov 2019 17:43:06 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201911301743.xAUHh6S3065918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 30 Nov 2019 17:43:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518722 - branches/2019Q4/www/c-icap-modules X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q4/www/c-icap-modules X-SVN-Commit-Revision: 518722 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.29 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, 30 Nov 2019 17:43:07 -0000 Author: antoine Date: Sat Nov 30 17:43:06 2019 New Revision: 518722 URL: https://svnweb.freebsd.org/changeset/ports/518722 Log: MFH: r518013 Mark BROKEN: fails to build clamav_mod.c:108:13: error: expected identifier or '(' static char CLAMAV_VERSION[CLAMAV_VERSION_SIZE]; ^ /usr/local/include/clamav-version.h:30:24: note: expanded from macro 'CLAMAV_VERSION' #define CLAMAV_VERSION "0.102.0" ^ clamav_mod.c:645:6: warning: array index 63 is past the end of the array (which contains 8 elements) [-Warray-bounds] CLAMAV_VERSION[CLAMAV_VERSION_SIZE - 1] = '\0'; ^ ~~~~~~~~~~~~~~~~~~~~~~~ /usr/local/include/clamav-version.h:30:24: note: expanded from macro 'CLAMAV_VERSION' #define CLAMAV_VERSION "0.102.0" ^ Reported by: pkg-fallout Modified: branches/2019Q4/www/c-icap-modules/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/c-icap-modules/Makefile ============================================================================== --- branches/2019Q4/www/c-icap-modules/Makefile Sat Nov 30 17:10:05 2019 (r518721) +++ branches/2019Q4/www/c-icap-modules/Makefile Sat Nov 30 17:43:06 2019 (r518722) @@ -15,6 +15,8 @@ COMMENT= Modules for c-icap: virus_scan and srv_url_ch LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN= fails to build + LIB_DEPENDS= libicapapi.so:www/c-icap \ libclamav.so:security/clamav