From owner-svn-ports-branches@freebsd.org Sun Aug 7 11:33:07 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B41ABAE7C5; Sun, 7 Aug 2016 11:33:07 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7924D1B14; Sun, 7 Aug 2016 11:33:07 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u77BX6vr004226; Sun, 7 Aug 2016 11:33:06 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u77BX6d6004223; Sun, 7 Aug 2016 11:33:06 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201608071133.u77BX6d6004223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 7 Aug 2016 11:33:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r419771 - branches/2016Q3/irc/py-limnoria X-SVN-Group: ports-branches 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.22 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, 07 Aug 2016 11:33:07 -0000 Author: koobs Date: Sun Aug 7 11:33:06 2016 New Revision: 419771 URL: https://svnweb.freebsd.org/changeset/ports/419771 Log: MFH: r419769 r419770 irc/py-limnoria: Convert to OPTION'al RUN_DEPENDS - Add Global and Plugin OPTIONS for optional dependencies - Set OPTIONS_DEFAULT to maintain functional compatibility with 2016Q3 - Enable concurrent Python installation - Update test target to use PYTHON_CMD (version specific execution) - Add TEST_DEPENDS on feedparser as it fails (not skips) if not available when running tests. - Remove nested leading indefinite article in COMMENT irc/py-limnoria: Bump PORTREVISION Bump PORTREVISION due to the additional of USE_PYTHON=concurrent symlinks in the package. Approved by: ports-secteam (blanket) Modified: branches/2016Q3/irc/py-limnoria/Makefile branches/2016Q3/irc/py-limnoria/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/irc/py-limnoria/Makefile ============================================================================== --- branches/2016Q3/irc/py-limnoria/Makefile Sun Aug 7 11:30:19 2016 (r419770) +++ branches/2016Q3/irc/py-limnoria/Makefile Sun Aug 7 11:33:06 2016 (r419771) @@ -3,31 +3,59 @@ PORTNAME= limnoria PORTVERSION= 2016.02.24 +PORTREVISION= 1 CATEGORIES= irc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org -COMMENT= Modified version of Supybot (an IRC bot and framework) +COMMENT= Modified version of Supybot (IRC bot and framework) -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}chardet>=0:textproc/py-chardet \ - ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz \ - ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil \ - ${PYTHON_PKGNAMEPREFIX}python-gnupg>=0:security/py-python-gnupg \ - ${PYTHON_PKGNAMEPREFIX}feedparser>=0:textproc/py-feedparser \ - ${PYTHON_PKGNAMEPREFIX}sqlalchemy07>=0:databases/py-sqlalchemy07 \ - ${PYTHON_PKGNAMEPREFIX}pysocks>=0:net/py-pysocks \ - ${PYTHON_PKGNAMEPREFIX}ecdsa>0:security/py-ecdsa +LICENSE= BSD3CLAUSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}feedparser>=0:textproc/py-feedparser + +OPTIONS_DEFINE= ECDSA PROXY +OPTIONS_DEFAULT= ECDSA ENCODING GPG PROXY RSS SQLALCHEMY TIME +OPTIONS_GROUP= EXTRAS +OPTIONS_GROUP_EXTRAS= ENCODING GPG RSS TIME +OPTIONS_RADIO= AKA +OPTIONS_RADIO_AKA= SQLITE SQLALCHEMY + +EXTRAS_DESC= Plugin Extras +AKA_DESC= AKA Plugin: SQL Backend (none = plugin disabled) + +ECDSA_DESC= ECDSA SASL authentication +PROXY_DESC= SOCKS Proxy connections + +ENCODING_DESC= Web Plugin: Better encoding detection (via chardet) +GPG_DESC= GPG Plugin: GnuPG Authentication +RSS_DESC= RSS Plugin: Feed parsing (via feedparser) +TIME_DESC= Time Plugin: Extra time features (via dateutil/pytz) + +SQLALCHEMY_DESC= SQLAlchemy database support + +ECDSA_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ecdsa>0:security/py-ecdsa +PROXY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pysocks>=0:net/py-pysocks + +ENCODING_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}chardet>=0:textproc/py-chardet +GPG_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}python-gnupg>=0:security/py-python-gnupg +RSS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}feedparser>=0:textproc/py-feedparser +TIME_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz + +SQLITE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 +SQLALCHEMY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>0:databases/py-sqlalchemy10 USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes # Needs to be installed first to work. do-test: - @cd ${WRKSRC} && ${LOCALBASE}/bin/supybot-test \ + @cd ${WRKSRC} && ${PYTHON_CMD} ${LOCALBASE}/bin/supybot-test \ --no-network \ --plugins-dir="./build/lib*/supybot/plugins/" \ --disable-multiprocessing Modified: branches/2016Q3/irc/py-limnoria/distinfo ============================================================================== --- branches/2016Q3/irc/py-limnoria/distinfo Sun Aug 7 11:30:19 2016 (r419770) +++ branches/2016Q3/irc/py-limnoria/distinfo Sun Aug 7 11:33:06 2016 (r419771) @@ -1,2 +1,3 @@ +TIMESTAMP = 1470561185 SHA256 (limnoria-2016.02.24.tar.gz) = 68628356d85eddc6165b049ad024a9a7b7a09de6bd7965b00e50edda90306398 SIZE (limnoria-2016.02.24.tar.gz) = 866557 From owner-svn-ports-branches@freebsd.org Sun Aug 7 14:10:20 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CDE7BB14B1; Sun, 7 Aug 2016 14:10:20 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D6DB15A9; Sun, 7 Aug 2016 14:10:20 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u77EAJ6M060299; Sun, 7 Aug 2016 14:10:19 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u77EAJbW060298; Sun, 7 Aug 2016 14:10:19 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201608071410.u77EAJbW060298@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 7 Aug 2016 14:10:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r419778 - branches/2016Q3/devel/buildbot X-SVN-Group: ports-branches 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.22 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, 07 Aug 2016 14:10:20 -0000 Author: koobs Date: Sun Aug 7 14:10:19 2016 New Revision: 419778 URL: https://svnweb.freebsd.org/changeset/ports/419778 Log: MFH: r419777 devel/buildbot: Update sqlalchemy RUN_DEPENDS r419532 [1] caused ports that depend on sqlalchemy07 and sqlalchemy-migrate (at least buildbot) to fail because py-sqlalchemy-migrate pulls in py-sqlalchemy10 which conflicts with py-sqlalchemy07. Update the sqlalchemy dependency from 0.7.x to 1.0.x after QA testing for regressions @ runtime using the buildbot test suite. [1] http://svnweb.freebsd.org/changeset/ports/419532 PR: 210589 Reported by: pkg-fallout Tested by: pi Approved by: ports-secteam (blanket) Modified: branches/2016Q3/devel/buildbot/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/devel/buildbot/Makefile ============================================================================== --- branches/2016Q3/devel/buildbot/Makefile Sun Aug 7 14:06:57 2016 (r419777) +++ branches/2016Q3/devel/buildbot/Makefile Sun Aug 7 14:10:19 2016 (r419778) @@ -17,7 +17,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twis ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.1:devel/py-Jinja2 \ ${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:devel/py-dateutil \ ${PYTHON_PKGNAMEPREFIX}sqlalchemy-migrate>=0.7:databases/py-sqlalchemy-migrate \ - ${PYTHON_PKGNAMEPREFIX}sqlalchemy07>=0.6:databases/py-sqlalchemy07 \ + ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=0.6:databases/py-sqlalchemy10 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 TEST_DEPENDS= trial:devel/py-twisted \ ${PYTHON_PKGNAMEPREFIX}mock>0.8.0:devel/py-mock \ From owner-svn-ports-branches@freebsd.org Mon Aug 8 19:38:46 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F5B4BB221F; Mon, 8 Aug 2016 19:38:46 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F15E61233; Mon, 8 Aug 2016 19:38:45 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u78Jcjwj030236; Mon, 8 Aug 2016 19:38:45 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u78Jcioh030232; Mon, 8 Aug 2016 19:38:44 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201608081938.u78Jcioh030232@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Mon, 8 Aug 2016 19:38:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r419893 - in branches/2016Q3/net-mgmt/collectd5: . files X-SVN-Group: ports-branches 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.22 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, 08 Aug 2016 19:38:46 -0000 Author: brd Date: Mon Aug 8 19:38:44 2016 New Revision: 419893 URL: https://svnweb.freebsd.org/changeset/ports/419893 Log: MFH: r419862 net-mgmt/collectd5: Update net-mgmt/collectd5 to 5.5.2 PR: 211613 Submitted by: brd Approved by: ports-secteam (feld) Security: 6da45e38-5b55-11e6-8859-000c292ee6b8 Modified: branches/2016Q3/net-mgmt/collectd5/Makefile branches/2016Q3/net-mgmt/collectd5/distinfo branches/2016Q3/net-mgmt/collectd5/files/patch-src_zfs__arc.c branches/2016Q3/net-mgmt/collectd5/files/patch-version-gen.sh Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net-mgmt/collectd5/Makefile ============================================================================== --- branches/2016Q3/net-mgmt/collectd5/Makefile Mon Aug 8 19:22:37 2016 (r419892) +++ branches/2016Q3/net-mgmt/collectd5/Makefile Mon Aug 8 19:38:44 2016 (r419893) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= collectd -PORTVERSION= 5.5.1 -PORTREVISION= 4 +PORTVERSION= 5.5.2 CATEGORIES= net-mgmt MASTER_SITES= https://collectd.org/files/ \ http://collectd.org/files/ Modified: branches/2016Q3/net-mgmt/collectd5/distinfo ============================================================================== --- branches/2016Q3/net-mgmt/collectd5/distinfo Mon Aug 8 19:22:37 2016 (r419892) +++ branches/2016Q3/net-mgmt/collectd5/distinfo Mon Aug 8 19:38:44 2016 (r419893) @@ -1,2 +1,3 @@ -SHA256 (collectd-5.5.1.tar.bz2) = f9c5d526e1f0429a7db1ccd90bdf9e23923a2fd43b7285cfda8f0341e5c0bc3f -SIZE (collectd-5.5.1.tar.bz2) = 1797852 +TIMESTAMP = 1469564676 +SHA256 (collectd-5.5.2.tar.bz2) = 017f3a4062187e594d8ab6af685655fb82a8a942dc574668e68242bdb8ba820f +SIZE (collectd-5.5.2.tar.bz2) = 1800476 Modified: branches/2016Q3/net-mgmt/collectd5/files/patch-src_zfs__arc.c ============================================================================== --- branches/2016Q3/net-mgmt/collectd5/files/patch-src_zfs__arc.c Mon Aug 8 19:22:37 2016 (r419892) +++ branches/2016Q3/net-mgmt/collectd5/files/patch-src_zfs__arc.c Mon Aug 8 19:38:44 2016 (r419893) @@ -1,14 +1,13 @@ ---- src/zfs_arc.c.orig 2016-01-22 09:51:17 UTC +--- src/zfs_arc.c.orig 2016-07-26 05:57:19 UTC +++ src/zfs_arc.c -@@ -270,8 +270,11 @@ static int za_read (void) +@@ -270,10 +270,6 @@ static int za_read (void) za_read_derive (ksp, "deleted", "cache_operation", "deleted"); #if __FreeBSD__ za_read_derive (ksp, "allocated","cache_operation", "allocated"); -+#if defined(__FreeBSD_version) && (__FreeBSD_version < 1002501) -+ /* stolen removed from sysctl kstat.zfs.misc.arcstats on FreeBSD 10.2+ */ - za_read_derive (ksp, "stolen", "cache_operation", "stolen"); +-#if defined(__FreeBSD_version) && (__FreeBSD_version < 1002501) +- /* stolen removed from sysctl kstat.zfs.misc.arcstats on FreeBSD 10.2+ */ +- za_read_derive (ksp, "stolen", "cache_operation", "stolen"); +-#endif #endif -+#endif /* Issue indicators */ - za_read_derive (ksp, "mutex_miss", "mutex_operations", "miss"); Modified: branches/2016Q3/net-mgmt/collectd5/files/patch-version-gen.sh ============================================================================== --- branches/2016Q3/net-mgmt/collectd5/files/patch-version-gen.sh Mon Aug 8 19:22:37 2016 (r419892) +++ branches/2016Q3/net-mgmt/collectd5/files/patch-version-gen.sh Mon Aug 8 19:38:44 2016 (r419893) @@ -1,9 +1,9 @@ ---- version-gen.sh.orig 2016-01-22 09:51:17 UTC +--- version-gen.sh.orig 2016-08-05 21:19:57 UTC +++ version-gen.sh @@ -1,13 +1,3 @@ #!/bin/sh --DEFAULT_VERSION="5.5.1.git" +-DEFAULT_VERSION="5.5.2.git" - -VERSION="`git describe 2> /dev/null | grep collectd | sed -e 's/^collectd-//'`" - @@ -14,4 +14,4 @@ -VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`" - -printf "%s" "$VERSION" -+echo -n "5.5.1.git" ++echo -n '5.5.2.git' From owner-svn-ports-branches@freebsd.org Tue Aug 9 10:18:40 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC439BB1446; Tue, 9 Aug 2016 10:18:40 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC98F169B; Tue, 9 Aug 2016 10:18:40 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u79AIdvi057697; Tue, 9 Aug 2016 10:18:39 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u79AIdV9057696; Tue, 9 Aug 2016 10:18:39 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201608091018.u79AIdV9057696@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 9 Aug 2016 10:18:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r419915 - branches/2016Q3/security/libntlm X-SVN-Group: ports-branches 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.22 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, 09 Aug 2016 10:18:41 -0000 Author: koobs Date: Tue Aug 9 10:18:39 2016 New Revision: 419915 URL: https://svnweb.freebsd.org/changeset/ports/419915 Log: MFH: r419914 security/libntlm: Update MAINTAINER address PR: 211521 Submitted by: Jochen Neumeister (maintainer, new email) Approved by: Jochen Neumeister (maintainer, old email) Approved by: ports-secteam (blanket) Modified: branches/2016Q3/security/libntlm/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/security/libntlm/Makefile ============================================================================== --- branches/2016Q3/security/libntlm/Makefile Tue Aug 9 10:13:15 2016 (r419914) +++ branches/2016Q3/security/libntlm/Makefile Tue Aug 9 10:18:39 2016 (r419915) @@ -6,7 +6,7 @@ PORTVERSION= 1.4 CATEGORIES= security MASTER_SITES= http://www.nongnu.org/libntlm/releases/ -MAINTAINER= jochen@daten-chaos.de +MAINTAINER= joneum@bsdproject.de COMMENT= Library that implement Microsoft's NTLM authentication LICENSE= LGPL21+ From owner-svn-ports-branches@freebsd.org Wed Aug 10 01:33:02 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B8D4BB2DE7; Wed, 10 Aug 2016 01:33:02 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01FE313AB; Wed, 10 Aug 2016 01:33:01 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7A1X14H003875; Wed, 10 Aug 2016 01:33:01 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7A1X0Gp003873; Wed, 10 Aug 2016 01:33:00 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201608100133.u7A1X0Gp003873@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Wed, 10 Aug 2016 01:33:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r419981 - branches/2016Q3/dns/nsd X-SVN-Group: ports-branches 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.22 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, 10 Aug 2016 01:33:02 -0000 Author: junovitch Date: Wed Aug 10 01:33:00 2016 New Revision: 419981 URL: https://svnweb.freebsd.org/changeset/ports/419981 Log: MFH: r419980 dns/nsd: update 4.1.10 -> 4.1.11 - Restore configurable IPV6 option. Upstream integrated fix for issue. - FEATURES: * When tcp is more than half full, use short timeout for tcp session. * Patch for {max,min}-{refresh,retry}-time from YAMAGUCHI Takanori. * Fix #790: size-limit-xfr can stop NSD from downloading infinite zone transfer data size, from Toshifumi Sakaguchi. Fixes CVE-2016-6173 JVN#63359718 JPCERT#91251865. - BUGFIXES: * Fix build without IPv6, patch from Zdenek Kaspar. * Fix #783: Trying to run a root server without having configured it silently gives wrong answers. * Fix #782: Serve DS record but parent zone has no NS record. * Fix nsec3 missing for nsec3 signed parent and child for DS at zonecut. PR: 211693 Submitted by: jaap@NLnetLabs.nl (maintainer) Approved by: ports-secteam (with hat) Security: CVE-2016-6173 Security: https://vuxml.FreeBSD.org/freebsd/7d08e608-5e95-11e6-b334-002590263bf5.html Modified: branches/2016Q3/dns/nsd/Makefile branches/2016Q3/dns/nsd/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/dns/nsd/Makefile ============================================================================== --- branches/2016Q3/dns/nsd/Makefile Wed Aug 10 01:32:14 2016 (r419980) +++ branches/2016Q3/dns/nsd/Makefile Wed Aug 10 01:33:00 2016 (r419981) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nsd -PORTVERSION= 4.1.10 +PORTVERSION= 4.1.11 CATEGORIES= dns ipv6 MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \ ftp://ftp.rhnet.is/pub/nsd/ @@ -34,8 +34,7 @@ CONFIGURE_ARGS= --with-libevent=${LOCALB --localstatedir=${NSDLSDIR} \ --with-dbfile=${NSDDBDIR}/nsd.db \ --with-ssl=${OPENSSLBASE} \ - --with-pidfile=${NSDRUNDIR}/nsd.pid \ - --enable-ipv6 + --with-pidfile=${NSDRUNDIR}/nsd.pid PLIST_SUB= NSDUSER=${NSDUSER} \ NSDGROUP=${NSDGROUP} \ @@ -50,7 +49,7 @@ PORTDOCS= CREDITS ChangeLog LICENSE NSD- REQUIREMENTS TESTPLAN TODO UPGRADING coding-style \ differences.tex -OPTIONS_DEFINE= ROOT_SERVER LARGEFILE BIND8_STATS CHECKING \ +OPTIONS_DEFINE= ROOT_SERVER LARGEFILE IPV6 BIND8_STATS CHECKING \ MINRESPSIZE NSEC3 MMAP DOCS RRL ZONE_STATS MUNIN_PLUGIN OPTIONS_DEFAULT= LARGEFILE NSEC3 MINRESPSIZE RRL OPTIONS_SUB= yes @@ -79,6 +78,7 @@ MINRESPSIZE_CONFIGURE_ENABLE= minimal-re MMAP_CONFIGURE_ENABLE= mmap RRL_CONFIGURE_ENABLE= ratelimit ZONE_STATS_CONFIGURE_ENABLE= zone-stats +IPV6_CONFIGURE_ENABLE= ipv6 post-build-MUNIN_PLUGIN-on: ${REINPLACE_CMD} \ Modified: branches/2016Q3/dns/nsd/distinfo ============================================================================== --- branches/2016Q3/dns/nsd/distinfo Wed Aug 10 01:32:14 2016 (r419980) +++ branches/2016Q3/dns/nsd/distinfo Wed Aug 10 01:33:00 2016 (r419981) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466286030 -SHA256 (nsd-4.1.10.tar.gz) = 3a757014046752a0b0b11c1a2e22a36bb796f89f6939147ed3226556b4298727 -SIZE (nsd-4.1.10.tar.gz) = 1075892 +TIMESTAMP = 1470733493 +SHA256 (nsd-4.1.11.tar.gz) = c7712fd05eb0ab97040738e01d9369d02b89c0a7fa0943fd5bfc43b2111a92df +SIZE (nsd-4.1.11.tar.gz) = 1080220 From owner-svn-ports-branches@freebsd.org Wed Aug 10 01:38:21 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB826BB308A; Wed, 10 Aug 2016 01:38:21 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 761A618F7; Wed, 10 Aug 2016 01:38:21 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7A1cKvH004345; Wed, 10 Aug 2016 01:38:20 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7A1cKB1004343; Wed, 10 Aug 2016 01:38:20 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201608100138.u7A1cKB1004343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Wed, 10 Aug 2016 01:38:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r419983 - branches/2016Q3/dns/knot1 X-SVN-Group: ports-branches 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.22 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, 10 Aug 2016 01:38:21 -0000 Author: junovitch Date: Wed Aug 10 01:38:20 2016 New Revision: 419983 URL: https://svnweb.freebsd.org/changeset/ports/419983 Log: MFH: r419982 dns/knot1: update 1.6.7 -> 1.6.8 Changes: https://www.knot-dns.cz/2016-08-08-version-168-lts.html Approved by: ports-secteam (with hat) Security: CVE-2016-6171 Security: https://vuxml.FreeBSD.org/freebsd/7d08e608-5e95-11e6-b334-002590263bf5.html Modified: branches/2016Q3/dns/knot1/Makefile branches/2016Q3/dns/knot1/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/dns/knot1/Makefile ============================================================================== --- branches/2016Q3/dns/knot1/Makefile Wed Aug 10 01:37:40 2016 (r419982) +++ branches/2016Q3/dns/knot1/Makefile Wed Aug 10 01:38:20 2016 (r419983) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= knot -PORTVERSION= 1.6.7 +PORTVERSION= 1.6.8 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ Modified: branches/2016Q3/dns/knot1/distinfo ============================================================================== --- branches/2016Q3/dns/knot1/distinfo Wed Aug 10 01:37:40 2016 (r419982) +++ branches/2016Q3/dns/knot1/distinfo Wed Aug 10 01:38:20 2016 (r419983) @@ -1,2 +1,3 @@ -SHA256 (knot-1.6.7.tar.xz) = ed3cd8e281aff9b28ab9d8de8d59cae7aae48e435660193c117a43e8979b4d48 -SIZE (knot-1.6.7.tar.xz) = 793964 +TIMESTAMP = 1470790030 +SHA256 (knot-1.6.8.tar.xz) = 8d95dfd359fb187289d7d085e217d8fabb6022135d358134ed4165418a269237 +SIZE (knot-1.6.8.tar.xz) = 806748 From owner-svn-ports-branches@freebsd.org Wed Aug 10 02:10:24 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F1B57BB37E0; Wed, 10 Aug 2016 02:10:24 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C828D1744; Wed, 10 Aug 2016 02:10:24 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7A2ANPx015734; Wed, 10 Aug 2016 02:10:23 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7A2AN73015731; Wed, 10 Aug 2016 02:10:23 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201608100210.u7A2AN73015731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Wed, 10 Aug 2016 02:10:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r419985 - branches/2016Q3/dns/knot2 X-SVN-Group: ports-branches 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.22 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, 10 Aug 2016 02:10:25 -0000 Author: junovitch Date: Wed Aug 10 02:10:23 2016 New Revision: 419985 URL: https://svnweb.freebsd.org/changeset/ports/419985 Log: MFH: r419984 dns/knot2: update 2.2.1 -> 2.3.0 Changes: https://www.knot-dns.cz/2016-08-09-version-230.html Approved by: ports-secteam (with hat) Security: CVE-2016-6171 Security: https://vuxml.FreeBSD.org/freebsd/7d08e608-5e95-11e6-b334-002590263bf5.html Modified: branches/2016Q3/dns/knot2/Makefile branches/2016Q3/dns/knot2/distinfo branches/2016Q3/dns/knot2/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/dns/knot2/Makefile ============================================================================== --- branches/2016Q3/dns/knot2/Makefile Wed Aug 10 02:08:29 2016 (r419984) +++ branches/2016Q3/dns/knot2/Makefile Wed Aug 10 02:10:23 2016 (r419985) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= knot -PORTVERSION= 2.2.1 -PORTREVISION?= 1 +PORTVERSION= 2.3.0 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ Modified: branches/2016Q3/dns/knot2/distinfo ============================================================================== --- branches/2016Q3/dns/knot2/distinfo Wed Aug 10 02:08:29 2016 (r419984) +++ branches/2016Q3/dns/knot2/distinfo Wed Aug 10 02:10:23 2016 (r419985) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465218305 -SHA256 (knot-2.2.1.tar.xz) = 4b587bd8299445a29990ba89087b156ab9b6bf85cbd68846766c078e5b3481d3 -SIZE (knot-2.2.1.tar.xz) = 1017504 +TIMESTAMP = 1470789106 +SHA256 (knot-2.3.0.tar.xz) = 8abf9a6562ecf2f7f4222d16ca6c75463399870db360eda7caa40530b469533c +SIZE (knot-2.3.0.tar.xz) = 1066852 Modified: branches/2016Q3/dns/knot2/pkg-plist ============================================================================== --- branches/2016Q3/dns/knot2/pkg-plist Wed Aug 10 02:08:29 2016 (r419984) +++ branches/2016Q3/dns/knot2/pkg-plist Wed Aug 10 02:10:23 2016 (r419985) @@ -25,6 +25,9 @@ include/libknot/binary.h include/libknot/codes.h include/libknot/consts.h include/libknot/control/control.h +include/libknot/cookies/alg-fnv64.h +include/libknot/cookies/client.h +include/libknot/cookies/server.h include/libknot/db/db.h include/libknot/db/db_lmdb.h include/libknot/db/db_trie.h @@ -39,9 +42,6 @@ include/libknot/packet/compr.h include/libknot/packet/pkt.h include/libknot/packet/rrset-wire.h include/libknot/packet/wire.h -include/libknot/processing/layer.h -include/libknot/processing/overlay.h -include/libknot/processing/requestor.h include/libknot/rdata.h include/libknot/rdataset.h include/libknot/rrset-dump.h @@ -53,6 +53,7 @@ include/libknot/rrtype/naptr.h include/libknot/rrtype/nsec.h include/libknot/rrtype/nsec3.h include/libknot/rrtype/nsec3param.h +include/libknot/rrtype/opt-cookie.h include/libknot/rrtype/opt.h include/libknot/rrtype/rdname.h include/libknot/rrtype/rrsig.h @@ -67,12 +68,12 @@ include/zscanner/scanner.h include/zscanner/version.h lib/libdnssec.a lib/libdnssec.so -lib/libdnssec.so.1 -lib/libdnssec.so.1.0.0 +lib/libdnssec.so.2 +lib/libdnssec.so.2.0.0 lib/libknot.a lib/libknot.so -lib/libknot.so.2 -lib/libknot.so.2.0.0 +lib/libknot.so.3 +lib/libknot.so.3.0.0 lib/libzscanner.a lib/libzscanner.so lib/libzscanner.so.1 @@ -86,6 +87,7 @@ man/man1/khost.1.gz man/man1/knot1to2.1.gz man/man1/knsec3hash.1.gz man/man1/knsupdate.1.gz +man/man1/kzonecheck.1.gz man/man5/knot.conf.5.gz man/man8/keymgr.8.gz man/man8/knotc.8.gz @@ -93,3 +95,4 @@ man/man8/knotd.8.gz sbin/keymgr sbin/knotc sbin/knotd +sbin/kzonecheck From owner-svn-ports-branches@freebsd.org Wed Aug 10 07:15:46 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81D1EBB4054; Wed, 10 Aug 2016 07:15:46 +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 mx1.freebsd.org (Postfix) with ESMTPS id 539CD135A; Wed, 10 Aug 2016 07:15:46 +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 u7A7FjDM030333; Wed, 10 Aug 2016 07:15:45 GMT (envelope-from fluffy@FreeBSD.org) Received: (from fluffy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7A7FjkQ030332; Wed, 10 Aug 2016 07:15:45 GMT (envelope-from fluffy@FreeBSD.org) Message-Id: <201608100715.u7A7FjkQ030332@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fluffy set sender to fluffy@FreeBSD.org using -f From: Dima Panov Date: Wed, 10 Aug 2016 07:15:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r419991 - branches/2016Q3/security/clamav X-SVN-Group: ports-branches 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.22 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, 10 Aug 2016 07:15:46 -0000 Author: fluffy Date: Wed Aug 10 07:15:45 2016 New Revision: 419991 URL: https://svnweb.freebsd.org/changeset/ports/419991 Log: MFH: r419990 - security/clamav: Unbroke Jit engine Buldled LLVM is very limited/outdated and produce the broken code on recent FreeBSD releases, so unconditionally rely on latest supported (3.6) LLVM framework from ports to build ClamAV Jit parser PR: 211683 Reported by: many Submitted by: myself Approved by: garga (maintainer) Approved by: ports-secteam (blanket) Modified: branches/2016Q3/security/clamav/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/security/clamav/Makefile ============================================================================== --- branches/2016Q3/security/clamav/Makefile Wed Aug 10 07:10:30 2016 (r419990) +++ branches/2016Q3/security/clamav/Makefile Wed Aug 10 07:15:45 2016 (r419991) @@ -3,6 +3,7 @@ PORTNAME= clamav PORTVERSION= 0.99.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.clamav.net/downloads/production/ @@ -134,7 +135,10 @@ GROUPS= clamav mail .endif .if ${PORT_OPTIONS:MLLVM} && ( ${ARCH} == "i386" || ${ARCH} == "amd64" ) -CONFIGURE_ARGS+=--enable-llvm +CONFIGURE_ARGS+=--enable-llvm --with-system-llvm=${LOCALBASE}/llvm${LLVMVER} +BUILD_DEPENDS+= llvm${LLVMVER}>=0:devel/llvm${LLVMVER} +# Beware: ClamAV doesn't support LLVM 3.7 or higher yet +LLVMVER= 36 . if ${PORT_OPTIONS:MTESTS} USES+= python:build . endif From owner-svn-ports-branches@freebsd.org Thu Aug 11 03:53:58 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0703BB43DC; Thu, 11 Aug 2016 03:53:58 +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 mx1.freebsd.org (Postfix) with ESMTPS id 9925B1E93; Thu, 11 Aug 2016 03:53:58 +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 u7B3rvqG094934; Thu, 11 Aug 2016 03:53:57 GMT (envelope-from fluffy@FreeBSD.org) Received: (from fluffy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7B3rv4X094933; Thu, 11 Aug 2016 03:53:57 GMT (envelope-from fluffy@FreeBSD.org) Message-Id: <201608110353.u7B3rv4X094933@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fluffy set sender to fluffy@FreeBSD.org using -f From: Dima Panov Date: Thu, 11 Aug 2016 03:53:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r420046 - branches/2016Q3/security/clamav X-SVN-Group: ports-branches 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.22 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, 11 Aug 2016 03:53:59 -0000 Author: fluffy Date: Thu Aug 11 03:53:57 2016 New Revision: 420046 URL: https://svnweb.freebsd.org/changeset/ports/420046 Log: MFH: r420045 - Stage II. FreeBSD 9.x branch need a bit more love to deal with c++11-aware code for Jit/LLVM bytecode engine [1] - Disable Jit engine by default for package building [2] Reported by: pi [1] Discussed with: garga [2] Approved by: garga (maintainer) Approved by: ports-secteam (blanket) Modified: branches/2016Q3/security/clamav/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/security/clamav/Makefile ============================================================================== --- branches/2016Q3/security/clamav/Makefile Thu Aug 11 03:49:42 2016 (r420045) +++ branches/2016Q3/security/clamav/Makefile Thu Aug 11 03:53:57 2016 (r420046) @@ -3,7 +3,7 @@ PORTNAME= clamav PORTVERSION= 0.99.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= http://www.clamav.net/downloads/production/ @@ -23,14 +23,14 @@ ARJ_DESC= Enable arj archives support LHA_DESC= Enable lha archives support UNZOO_DESC= Enable zoo archives support UNRAR_DESC= Enable rar archives support -LLVM_DESC= Enable JIT Bytecode compiler (bundled LLVM) +LLVM_DESC= Enable JIT Bytecode compiler (req. LLVM) TESTS_DESC= Run compile-time tests (req. python) MILTER_DESC= Compile the milter interface STDERR_DESC= Print logs to stderr instead of stdout EXPERIMENTAL_DESC= Build experimental code DMG_XAR_DESC= Enable DMG and XAR archives support -OPTIONS_DEFAULT= ARC ARJ LHA UNZOO UNRAR LLVM DMG_XAR \ +OPTIONS_DEFAULT= ARC ARJ LHA UNZOO UNRAR DMG_XAR \ JSON PCRE ARC_RUN_DEPENDS= arc:archivers/arc @@ -48,6 +48,7 @@ TESTS_BUILD_DEPENDS= ${LOCALBASE}/includ ICONV_CONFIGURE_ON= --with-iconv ICONV_CONFIGURE_OFF= --without-iconv ICONV_USES= iconv +LLVM_USES= compiler:c++11-lib EXPERIMENTAL_CONFIGURE_ENABLE= experimental IPV6_CONFIGURE_ENABLE= ipv6 DMG_XAR_CONFIGURE_ENABLE= xml From owner-svn-ports-branches@freebsd.org Thu Aug 11 08:44:12 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A060BB6155; Thu, 11 Aug 2016 08:44: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 mx1.freebsd.org (Postfix) with ESMTPS id BEF391664; Thu, 11 Aug 2016 08:44: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 u7B8iAtw002387; Thu, 11 Aug 2016 08:44:10 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7B8iAUY002383; Thu, 11 Aug 2016 08:44:10 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201608110844.u7B8iAUY002383@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Thu, 11 Aug 2016 08:44:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r420053 - branches/2016Q3/www/piwik X-SVN-Group: ports-branches 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.22 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, 11 Aug 2016 08:44:12 -0000 Author: tz Date: Thu Aug 11 08:44:10 2016 New Revision: 420053 URL: https://svnweb.freebsd.org/changeset/ports/420053 Log: MFH: r419996 www/piwik: Update from 2.16.1 to 2.16.2 Changes: https://piwik.org/changelog/piwik-2-16-2/ The is also a security release and fixes several XSS issues. PR: 211590 Submitted by: Hans Fredrik Nordhaug (maintainer) Approved by: ports-secteam (junovitch), junovitch (mentor) Modified: branches/2016Q3/www/piwik/Makefile branches/2016Q3/www/piwik/distinfo branches/2016Q3/www/piwik/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/piwik/Makefile ============================================================================== --- branches/2016Q3/www/piwik/Makefile Thu Aug 11 06:59:18 2016 (r420052) +++ branches/2016Q3/www/piwik/Makefile Thu Aug 11 08:44:10 2016 (r420053) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= piwik -PORTVERSION= 2.16.1 +PORTVERSION= 2.16.2 CATEGORIES= www MASTER_SITES= http://builds.piwik.org/ @@ -26,7 +26,7 @@ PHPMYSQLI_USE= PHP=mysqli PLIST_SUB+= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} -USES= cpe shebangfix +USES= cpe shebangfix php SHEBANG_FILES= misc/log-analytics/import_logs.py pre-install: Modified: branches/2016Q3/www/piwik/distinfo ============================================================================== --- branches/2016Q3/www/piwik/distinfo Thu Aug 11 06:59:18 2016 (r420052) +++ branches/2016Q3/www/piwik/distinfo Thu Aug 11 08:44:10 2016 (r420053) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466585435 -SHA256 (piwik-2.16.1.tar.gz) = 9bc351bd23f292eabcc1ccb762bb62f3728989106705547982e3754ba14506e0 -SIZE (piwik-2.16.1.tar.gz) = 12921284 +TIMESTAMP = 1470488308 +SHA256 (piwik-2.16.2.tar.gz) = fffbf3daf165ba054d76be33e6e2951a73dcf5ca7feb329b28f9aeea8a6c8fa5 +SIZE (piwik-2.16.2.tar.gz) = 12948152 Modified: branches/2016Q3/www/piwik/pkg-plist ============================================================================== --- branches/2016Q3/www/piwik/pkg-plist Thu Aug 11 06:59:18 2016 (r420052) +++ branches/2016Q3/www/piwik/pkg-plist Thu Aug 11 08:44:10 2016 (r420053) @@ -97,6 +97,8 @@ %%WWWDIR%%/core/DataAccess/ArchiveWriter.php %%WWWDIR%%/core/DataAccess/LogAggregator.php %%WWWDIR%%/core/DataAccess/LogQueryBuilder.php +%%WWWDIR%%/core/DataAccess/LogQueryBuilder/JoinGenerator.php +%%WWWDIR%%/core/DataAccess/LogQueryBuilder/JoinTables.php %%WWWDIR%%/core/DataAccess/Model.php %%WWWDIR%%/core/DataAccess/RawLogDao.php %%WWWDIR%%/core/DataAccess/TableMetadata.php @@ -183,6 +185,7 @@ %%WWWDIR%%/core/Exception/MissingFilePermissionException.php %%WWWDIR%%/core/Exception/NoPrivilegesException.php %%WWWDIR%%/core/Exception/NoWebsiteFoundException.php +%%WWWDIR%%/core/Exception/NotYetInstalledException.php %%WWWDIR%%/core/Exception/UnexpectedWebsiteFoundException.php %%WWWDIR%%/core/ExceptionHandler.php %%WWWDIR%%/core/Filechecks.php @@ -237,7 +240,6 @@ %%WWWDIR%%/core/Period/Week.php %%WWWDIR%%/core/Period/Year.php %%WWWDIR%%/core/Piwik.php -%%WWWDIR%%/core/PiwikPro/Advertising.php %%WWWDIR%%/core/Plugin.php %%WWWDIR%%/core/Plugin/API.php %%WWWDIR%%/core/Plugin/AggregatedMetric.php @@ -251,6 +253,7 @@ %%WWWDIR%%/core/Plugin/Dimension/ConversionDimension.php %%WWWDIR%%/core/Plugin/Dimension/DimensionMetadataProvider.php %%WWWDIR%%/core/Plugin/Dimension/VisitDimension.php +%%WWWDIR%%/core/Plugin/LogTablesProvider.php %%WWWDIR%%/core/Plugin/Manager.php %%WWWDIR%%/core/Plugin/Menu.php %%WWWDIR%%/core/Plugin/MetadataLoader.php @@ -267,6 +270,7 @@ %%WWWDIR%%/core/Plugin/Visualization.php %%WWWDIR%%/core/Plugin/Widgets.php %%WWWDIR%%/core/PluginDeactivatedException.php +%%WWWDIR%%/core/ProfessionalServices/Advertising.php %%WWWDIR%%/core/Profiler.php %%WWWDIR%%/core/ProxyHeaders.php %%WWWDIR%%/core/ProxyHttp.php @@ -322,6 +326,7 @@ %%WWWDIR%%/core/Tracker/Handler.php %%WWWDIR%%/core/Tracker/Handler/Factory.php %%WWWDIR%%/core/Tracker/IgnoreCookie.php +%%WWWDIR%%/core/Tracker/LogTable.php %%WWWDIR%%/core/Tracker/Model.php %%WWWDIR%%/core/Tracker/PageUrl.php %%WWWDIR%%/core/Tracker/Request.php @@ -449,8 +454,9 @@ %%WWWDIR%%/core/Updates/2.15.0-b3.php %%WWWDIR%%/core/Updates/2.15.0-b4.php %%WWWDIR%%/core/Updates/2.15.0.php -%%WWWDIR%%/core/Updates/2.16.0-rc2.php %%WWWDIR%%/core/Updates/2.16.1-b3.php +%%WWWDIR%%/core/Updates/2.16.2-b2.php +%%WWWDIR%%/core/Updates/2.16.2-rc2.php %%WWWDIR%%/core/Updates/2.2.0-b15.php %%WWWDIR%%/core/Updates/2.2.3-b6.php %%WWWDIR%%/core/Updates/2.3.0-rc2.php @@ -864,90 +870,16 @@ %%WWWDIR%%/libs/bower_components/jQuery.dotdotdot/bower.json %%WWWDIR%%/libs/bower_components/jQuery.dotdotdot/src/js/jquery.dotdotdot.js %%WWWDIR%%/libs/bower_components/jQuery.dotdotdot/src/js/jquery.dotdotdot.min.js -%%WWWDIR%%/libs/bower_components/jScrollPane/GPL-LICENSE.txt %%WWWDIR%%/libs/bower_components/jScrollPane/MIT-LICENSE.txt %%WWWDIR%%/libs/bower_components/jScrollPane/README.md -%%WWWDIR%%/libs/bower_components/jScrollPane/ajax.html -%%WWWDIR%%/libs/bower_components/jScrollPane/ajax_content.html -%%WWWDIR%%/libs/bower_components/jScrollPane/anchors.html -%%WWWDIR%%/libs/bower_components/jScrollPane/api.html -%%WWWDIR%%/libs/bower_components/jScrollPane/arrow_hover.html -%%WWWDIR%%/libs/bower_components/jScrollPane/arrow_positions.html -%%WWWDIR%%/libs/bower_components/jScrollPane/arrows.html -%%WWWDIR%%/libs/bower_components/jScrollPane/auto_reinitialise.html -%%WWWDIR%%/libs/bower_components/jScrollPane/basic.html -%%WWWDIR%%/libs/bower_components/jScrollPane/caps.html -%%WWWDIR%%/libs/bower_components/jScrollPane/changelog.html -%%WWWDIR%%/libs/bower_components/jScrollPane/destroy.html -%%WWWDIR%%/libs/bower_components/jScrollPane/drag_size.html -%%WWWDIR%%/libs/bower_components/jScrollPane/dynamic_content.html -%%WWWDIR%%/libs/bower_components/jScrollPane/dynamic_height.html -%%WWWDIR%%/libs/bower_components/jScrollPane/dynamic_width.html -%%WWWDIR%%/libs/bower_components/jScrollPane/events.html -%%WWWDIR%%/libs/bower_components/jScrollPane/faqs.html -%%WWWDIR%%/libs/bower_components/jScrollPane/fixed_width.html -%%WWWDIR%%/libs/bower_components/jScrollPane/focus.html -%%WWWDIR%%/libs/bower_components/jScrollPane/fullpage_scroll.html -%%WWWDIR%%/libs/bower_components/jScrollPane/iframe.html -%%WWWDIR%%/libs/bower_components/jScrollPane/iframe2.html -%%WWWDIR%%/libs/bower_components/jScrollPane/iframe_content1.html -%%WWWDIR%%/libs/bower_components/jScrollPane/iframe_content2.html -%%WWWDIR%%/libs/bower_components/jScrollPane/iframe_content3.html -%%WWWDIR%%/libs/bower_components/jScrollPane/iframe_content4.html -%%WWWDIR%%/libs/bower_components/jScrollPane/image.html %%WWWDIR%%/libs/bower_components/jScrollPane/image/logo.png -%%WWWDIR%%/libs/bower_components/jScrollPane/image2.html -%%WWWDIR%%/libs/bower_components/jScrollPane/index.html -%%WWWDIR%%/libs/bower_components/jScrollPane/invisibles.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/11/after.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/11/before.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/11/brs_main.css -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/11/index.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/11/jquery.mousewheel.js -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/11/jscrollpane-2b3.css -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/11/jscrollpane-2b3.js -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/11/native.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/after.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/after_reinit.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/before.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/before_reinit.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/brs_main.css -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/index.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/jquery.mousewheel.js -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/jscrollpane-2b3.css -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/jscrollpane-2b3.js -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/native.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/12/wrapped.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/7/after.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/7/before.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/7/index.html -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/7/jscrollpane-2b1.css -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/7/jscrollpane-2b2.js -%%WWWDIR%%/libs/bower_components/jScrollPane/issues/7/native.html -%%WWWDIR%%/libs/bower_components/jScrollPane/known_issues.html -%%WWWDIR%%/libs/bower_components/jScrollPane/less_basic.html -%%WWWDIR%%/libs/bower_components/jScrollPane/mwheel_intent.html -%%WWWDIR%%/libs/bower_components/jScrollPane/override_animate.html -%%WWWDIR%%/libs/bower_components/jScrollPane/runeimp.html -%%WWWDIR%%/libs/bower_components/jScrollPane/runeimp2.html %%WWWDIR%%/libs/bower_components/jScrollPane/script/demo.js %%WWWDIR%%/libs/bower_components/jScrollPane/script/jquery.jscrollpane.js %%WWWDIR%%/libs/bower_components/jScrollPane/script/jquery.jscrollpane.min.js %%WWWDIR%%/libs/bower_components/jScrollPane/script/jquery.mousewheel.js %%WWWDIR%%/libs/bower_components/jScrollPane/script/mwheelIntent.js -%%WWWDIR%%/libs/bower_components/jScrollPane/scroll_on_left.html -%%WWWDIR%%/libs/bower_components/jScrollPane/scroll_to.html -%%WWWDIR%%/libs/bower_components/jScrollPane/scroll_to_animate.html -%%WWWDIR%%/libs/bower_components/jScrollPane/settings.html -%%WWWDIR%%/libs/bower_components/jScrollPane/short.html %%WWWDIR%%/libs/bower_components/jScrollPane/style/demo.css %%WWWDIR%%/libs/bower_components/jScrollPane/style/jquery.jscrollpane.css -%%WWWDIR%%/libs/bower_components/jScrollPane/themes/lozenge/image/ui-icons_222222_256x240.png -%%WWWDIR%%/libs/bower_components/jScrollPane/themes/lozenge/image/ui-icons_888888_256x240.png -%%WWWDIR%%/libs/bower_components/jScrollPane/themes/lozenge/image/ui-icons_cd0a0a_256x240.png -%%WWWDIR%%/libs/bower_components/jScrollPane/themes/lozenge/index.html -%%WWWDIR%%/libs/bower_components/jScrollPane/themes/lozenge/style/jquery.jscrollpane.lozenge.css -%%WWWDIR%%/libs/bower_components/jScrollPane/v1.html %%WWWDIR%%/libs/bower_components/jquery-mousewheel/ChangeLog.md %%WWWDIR%%/libs/bower_components/jquery-mousewheel/LICENSE.txt %%WWWDIR%%/libs/bower_components/jquery-mousewheel/README.md @@ -957,7 +889,6 @@ %%WWWDIR%%/libs/bower_components/jquery-placeholder/LICENSE-MIT.txt %%WWWDIR%%/libs/bower_components/jquery-placeholder/README.md %%WWWDIR%%/libs/bower_components/jquery-placeholder/bower.json -%%WWWDIR%%/libs/bower_components/jquery-placeholder/demo.html %%WWWDIR%%/libs/bower_components/jquery-placeholder/jquery.placeholder.js %%WWWDIR%%/libs/bower_components/jquery-ui/AUTHORS.txt %%WWWDIR%%/libs/bower_components/jquery-ui/MIT-LICENSE.txt @@ -1193,7 +1124,6 @@ %%WWWDIR%%/libs/bower_components/jquery.scrollTo/jquery.scrollTo.min.js %%WWWDIR%%/libs/bower_components/jquery.scrollTo/package.json %%WWWDIR%%/libs/bower_components/jquery.scrollTo/scrollTo.jquery.json -%%WWWDIR%%/libs/bower_components/jquery/MIT-LICENSE.txt %%WWWDIR%%/libs/bower_components/jquery/bower.json %%WWWDIR%%/libs/bower_components/jquery/dist/jquery.js %%WWWDIR%%/libs/bower_components/jquery/dist/jquery.min.js @@ -1226,13 +1156,11 @@ %%WWWDIR%%/libs/bower_components/jquery/src/css/defaultDisplay.js %%WWWDIR%%/libs/bower_components/jquery/src/css/hiddenVisibleSelectors.js %%WWWDIR%%/libs/bower_components/jquery/src/css/support.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/swap.js %%WWWDIR%%/libs/bower_components/jquery/src/css/var/cssExpand.js %%WWWDIR%%/libs/bower_components/jquery/src/css/var/isHidden.js %%WWWDIR%%/libs/bower_components/jquery/src/css/var/rmargin.js %%WWWDIR%%/libs/bower_components/jquery/src/css/var/rnumnonpx.js %%WWWDIR%%/libs/bower_components/jquery/src/data.js -%%WWWDIR%%/libs/bower_components/jquery/src/data/accepts.js %%WWWDIR%%/libs/bower_components/jquery/src/data/support.js %%WWWDIR%%/libs/bower_components/jquery/src/deferred.js %%WWWDIR%%/libs/bower_components/jquery/src/deprecated.js @@ -1259,9 +1187,6 @@ %%WWWDIR%%/libs/bower_components/jquery/src/selector-sizzle.js %%WWWDIR%%/libs/bower_components/jquery/src/selector.js %%WWWDIR%%/libs/bower_components/jquery/src/serialize.js -%%WWWDIR%%/libs/bower_components/jquery/src/sizzle/dist/sizzle.js -%%WWWDIR%%/libs/bower_components/jquery/src/sizzle/dist/sizzle.min.js -%%WWWDIR%%/libs/bower_components/jquery/src/sizzle/dist/sizzle.min.map %%WWWDIR%%/libs/bower_components/jquery/src/support.js %%WWWDIR%%/libs/bower_components/jquery/src/traversing.js %%WWWDIR%%/libs/bower_components/jquery/src/traversing/findFilter.js @@ -1275,10 +1200,13 @@ %%WWWDIR%%/libs/bower_components/jquery/src/var/push.js %%WWWDIR%%/libs/bower_components/jquery/src/var/rnotwhite.js %%WWWDIR%%/libs/bower_components/jquery/src/var/slice.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/strundefined.js %%WWWDIR%%/libs/bower_components/jquery/src/var/support.js %%WWWDIR%%/libs/bower_components/jquery/src/var/toString.js %%WWWDIR%%/libs/bower_components/jquery/src/wrap.js +%%WWWDIR%%/libs/bower_components/jqueryui-touch-punch/README.md +%%WWWDIR%%/libs/bower_components/jqueryui-touch-punch/bower.json +%%WWWDIR%%/libs/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.js +%%WWWDIR%%/libs/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js %%WWWDIR%%/libs/bower_components/mousetrap/Gruntfile.js %%WWWDIR%%/libs/bower_components/mousetrap/README.md %%WWWDIR%%/libs/bower_components/mousetrap/mousetrap.js @@ -1422,7 +1350,6 @@ %%WWWDIR%%/misc/others/api_rest_call.php %%WWWDIR%%/misc/others/download-count.txt %%WWWDIR%%/misc/others/geoipUpdateRows.php -%%WWWDIR%%/misc/others/iframeWidget.htm %%WWWDIR%%/misc/others/iframeWidget_localhost.php %%WWWDIR%%/misc/others/stress.sh %%WWWDIR%%/misc/others/tracker_simpleImageTracker.php @@ -1658,6 +1585,7 @@ %%WWWDIR%%/plugins/Annotations/lang/th.json %%WWWDIR%%/plugins/Annotations/lang/tl.json %%WWWDIR%%/plugins/Annotations/lang/tr.json +%%WWWDIR%%/plugins/Annotations/lang/uk.json %%WWWDIR%%/plugins/Annotations/lang/vi.json %%WWWDIR%%/plugins/Annotations/lang/zh-cn.json %%WWWDIR%%/plugins/Annotations/lang/zh-tw.json @@ -1721,6 +1649,7 @@ %%WWWDIR%%/plugins/Contents/lang/ta.json %%WWWDIR%%/plugins/Contents/lang/tl.json %%WWWDIR%%/plugins/Contents/lang/tr.json +%%WWWDIR%%/plugins/Contents/lang/uk.json %%WWWDIR%%/plugins/Contents/lang/vi.json %%WWWDIR%%/plugins/Contents/lang/zh-cn.json %%WWWDIR%%/plugins/Contents/stylesheets/datatable.less @@ -1854,6 +1783,11 @@ %%WWWDIR%%/plugins/CoreHome/DataTableRowAction/RowEvolution.php %%WWWDIR%%/plugins/CoreHome/Menu.php %%WWWDIR%%/plugins/CoreHome/Segment.php +%%WWWDIR%%/plugins/CoreHome/Tracker/LogTable/Action.php +%%WWWDIR%%/plugins/CoreHome/Tracker/LogTable/Conversion.php +%%WWWDIR%%/plugins/CoreHome/Tracker/LogTable/ConversionItem.php +%%WWWDIR%%/plugins/CoreHome/Tracker/LogTable/LinkVisitAction.php +%%WWWDIR%%/plugins/CoreHome/Tracker/LogTable/Visit.php %%WWWDIR%%/plugins/CoreHome/Tracker/VisitRequestProcessor.php %%WWWDIR%%/plugins/CoreHome/Visitor.php %%WWWDIR%%/plugins/CoreHome/Widgets.php @@ -1914,6 +1848,13 @@ %%WWWDIR%%/plugins/CoreHome/angularjs/siteselector/siteselector.directive.js %%WWWDIR%%/plugins/CoreHome/angularjs/siteselector/siteselector.directive.less %%WWWDIR%%/plugins/CoreHome/config/config.php +%%WWWDIR%%/plugins/CoreHome/images/applogo_128.png +%%WWWDIR%%/plugins/CoreHome/images/applogo_144.png +%%WWWDIR%%/plugins/CoreHome/images/applogo_192.png +%%WWWDIR%%/plugins/CoreHome/images/applogo_256.png +%%WWWDIR%%/plugins/CoreHome/images/applogo_32.png +%%WWWDIR%%/plugins/CoreHome/images/applogo_72.png +%%WWWDIR%%/plugins/CoreHome/images/applogo_732.png %%WWWDIR%%/plugins/CoreHome/images/bg_header.jpg %%WWWDIR%%/plugins/CoreHome/images/bullet1.gif %%WWWDIR%%/plugins/CoreHome/images/bullet2.gif @@ -1935,6 +1876,7 @@ %%WWWDIR%%/plugins/CoreHome/javascripts/dataTable.js %%WWWDIR%%/plugins/CoreHome/javascripts/dataTable_rowactions.js %%WWWDIR%%/plugins/CoreHome/javascripts/donate.js +%%WWWDIR%%/plugins/CoreHome/javascripts/manifest.json %%WWWDIR%%/plugins/CoreHome/javascripts/menu.js %%WWWDIR%%/plugins/CoreHome/javascripts/menu_init.js %%WWWDIR%%/plugins/CoreHome/javascripts/notification.js @@ -2306,6 +2248,7 @@ %%WWWDIR%%/plugins/CustomVariables/lang/th.json %%WWWDIR%%/plugins/CustomVariables/lang/tl.json %%WWWDIR%%/plugins/CustomVariables/lang/tr.json +%%WWWDIR%%/plugins/CustomVariables/lang/uk.json %%WWWDIR%%/plugins/CustomVariables/lang/vi.json %%WWWDIR%%/plugins/CustomVariables/lang/zh-cn.json %%WWWDIR%%/plugins/CustomVariables/templates/manage.twig @@ -2807,6 +2750,7 @@ %%WWWDIR%%/plugins/DevicesDetection/images/browsers/SS.gif %%WWWDIR%%/plugins/DevicesDetection/images/browsers/TB.gif %%WWWDIR%%/plugins/DevicesDetection/images/browsers/TI.gif +%%WWWDIR%%/plugins/DevicesDetection/images/browsers/TS.gif %%WWWDIR%%/plugins/DevicesDetection/images/browsers/TZ.gif %%WWWDIR%%/plugins/DevicesDetection/images/browsers/UC.gif %%WWWDIR%%/plugins/DevicesDetection/images/browsers/UN.gif @@ -2949,7 +2893,6 @@ %%WWWDIR%%/plugins/DevicesDetection/lang/vi.json %%WWWDIR%%/plugins/DevicesDetection/lang/zh-cn.json %%WWWDIR%%/plugins/DevicesDetection/lang/zh-tw.json -%%WWWDIR%%/plugins/DevicesDetection/plugin.json %%WWWDIR%%/plugins/DevicesDetection/templates/detection.twig %%WWWDIR%%/plugins/DevicesDetection/templates/devices.twig %%WWWDIR%%/plugins/DevicesDetection/templates/list.twig @@ -3001,11 +2944,13 @@ %%WWWDIR%%/plugins/Diagnostics/lang/fr.json %%WWWDIR%%/plugins/Diagnostics/lang/it.json %%WWWDIR%%/plugins/Diagnostics/lang/nb.json +%%WWWDIR%%/plugins/Diagnostics/lang/nl.json %%WWWDIR%%/plugins/Diagnostics/lang/pt-br.json %%WWWDIR%%/plugins/Diagnostics/lang/ro.json %%WWWDIR%%/plugins/Diagnostics/lang/ru.json %%WWWDIR%%/plugins/Diagnostics/lang/sq.json %%WWWDIR%%/plugins/Diagnostics/lang/sv.json +%%WWWDIR%%/plugins/Diagnostics/lang/uk.json %%WWWDIR%%/plugins/Diagnostics/plugin.json %%WWWDIR%%/plugins/Diagnostics/stylesheets/configfile.less %%WWWDIR%%/plugins/Diagnostics/templates/configfile.twig @@ -3055,6 +3000,8 @@ %%WWWDIR%%/plugins/Ecommerce/lang/sr.json %%WWWDIR%%/plugins/Ecommerce/lang/sv.json %%WWWDIR%%/plugins/Ecommerce/lang/ta.json +%%WWWDIR%%/plugins/Ecommerce/lang/tr.json +%%WWWDIR%%/plugins/Ecommerce/lang/uk.json %%WWWDIR%%/plugins/Ecommerce/lang/vi.json %%WWWDIR%%/plugins/Ecommerce/plugin.json %%WWWDIR%%/plugins/Ecommerce/templates/ecommerceLog.twig @@ -3083,6 +3030,7 @@ %%WWWDIR%%/plugins/Events/Reports/GetNameFromActionId.php %%WWWDIR%%/plugins/Events/Reports/GetNameFromCategoryId.php %%WWWDIR%%/plugins/Events/Segment.php +%%WWWDIR%%/plugins/Events/lang/ar.json %%WWWDIR%%/plugins/Events/lang/bg.json %%WWWDIR%%/plugins/Events/lang/ca.json %%WWWDIR%%/plugins/Events/lang/cs.json @@ -3114,6 +3062,7 @@ %%WWWDIR%%/plugins/Events/lang/ta.json %%WWWDIR%%/plugins/Events/lang/tl.json %%WWWDIR%%/plugins/Events/lang/tr.json +%%WWWDIR%%/plugins/Events/lang/uk.json %%WWWDIR%%/plugins/Events/lang/vi.json %%WWWDIR%%/plugins/Events/lang/zh-cn.json %%WWWDIR%%/plugins/Events/stylesheets/datatable.less @@ -3385,6 +3334,8 @@ %%WWWDIR%%/plugins/ImageGraph/lang/sq.json %%WWWDIR%%/plugins/ImageGraph/lang/sr.json %%WWWDIR%%/plugins/ImageGraph/lang/sv.json +%%WWWDIR%%/plugins/ImageGraph/lang/tr.json +%%WWWDIR%%/plugins/ImageGraph/lang/uk.json %%WWWDIR%%/plugins/ImageGraph/lang/vi.json %%WWWDIR%%/plugins/ImageGraph/lang/zh-cn.json %%WWWDIR%%/plugins/ImageGraph/templates/index.twig @@ -3432,6 +3383,7 @@ %%WWWDIR%%/plugins/Insights/lang/ta.json %%WWWDIR%%/plugins/Insights/lang/tl.json %%WWWDIR%%/plugins/Insights/lang/tr.json +%%WWWDIR%%/plugins/Insights/lang/uk.json %%WWWDIR%%/plugins/Insights/lang/vi.json %%WWWDIR%%/plugins/Insights/lang/zh-cn.json %%WWWDIR%%/plugins/Insights/stylesheets/insightVisualization.less @@ -3851,10 +3803,12 @@ %%WWWDIR%%/plugins/MobileAppMeasurable/lang/nb.json %%WWWDIR%%/plugins/MobileAppMeasurable/lang/nl.json %%WWWDIR%%/plugins/MobileAppMeasurable/lang/pt-br.json +%%WWWDIR%%/plugins/MobileAppMeasurable/lang/ru.json %%WWWDIR%%/plugins/MobileAppMeasurable/lang/sk.json %%WWWDIR%%/plugins/MobileAppMeasurable/lang/sq.json %%WWWDIR%%/plugins/MobileAppMeasurable/lang/sr.json %%WWWDIR%%/plugins/MobileAppMeasurable/lang/sv.json +%%WWWDIR%%/plugins/MobileAppMeasurable/lang/uk.json %%WWWDIR%%/plugins/MobileAppMeasurable/plugin.json %%WWWDIR%%/plugins/MobileMessaging/API.php %%WWWDIR%%/plugins/MobileMessaging/APIException.php @@ -4153,11 +4107,11 @@ %%WWWDIR%%/plugins/MultiSites/lang/ta.json %%WWWDIR%%/plugins/MultiSites/lang/th.json %%WWWDIR%%/plugins/MultiSites/lang/tl.json +%%WWWDIR%%/plugins/MultiSites/lang/tr.json %%WWWDIR%%/plugins/MultiSites/lang/uk.json %%WWWDIR%%/plugins/MultiSites/lang/vi.json %%WWWDIR%%/plugins/MultiSites/lang/zh-cn.json %%WWWDIR%%/plugins/MultiSites/lang/zh-tw.json -%%WWWDIR%%/plugins/MultiSites/plugin.json %%WWWDIR%%/plugins/MultiSites/templates/getSitesInfo.twig %%WWWDIR%%/plugins/Overlay/API.php %%WWWDIR%%/plugins/Overlay/Controller.php @@ -4234,15 +4188,6 @@ %%WWWDIR%%/plugins/Overlay/templates/renderSidebar.twig %%WWWDIR%%/plugins/Overlay/templates/showErrorWrongDomain.twig %%WWWDIR%%/plugins/Overlay/templates/startOverlaySession.twig -%%WWWDIR%%/plugins/PiwikPro/PiwikPro.php -%%WWWDIR%%/plugins/PiwikPro/Promo.php -%%WWWDIR%%/plugins/PiwikPro/Widgets.php -%%WWWDIR%%/plugins/PiwikPro/config/test.php -%%WWWDIR%%/plugins/PiwikPro/images/promo.png -%%WWWDIR%%/plugins/PiwikPro/lang/en.json -%%WWWDIR%%/plugins/PiwikPro/plugin.json -%%WWWDIR%%/plugins/PiwikPro/stylesheets/widget.less -%%WWWDIR%%/plugins/PiwikPro/templates/promoPiwikProWidget.twig %%WWWDIR%%/plugins/PrivacyManager/Config.php %%WWWDIR%%/plugins/PrivacyManager/Controller.php %%WWWDIR%%/plugins/PrivacyManager/DoNotTrackHeaderChecker.php @@ -4302,6 +4247,15 @@ %%WWWDIR%%/plugins/PrivacyManager/lang/zh-tw.json %%WWWDIR%%/plugins/PrivacyManager/templates/getDatabaseSize.twig %%WWWDIR%%/plugins/PrivacyManager/templates/privacySettings.twig +%%WWWDIR%%/plugins/ProfessionalServices/ProfessionalServices.php +%%WWWDIR%%/plugins/ProfessionalServices/Promo.php +%%WWWDIR%%/plugins/ProfessionalServices/Widgets.php +%%WWWDIR%%/plugins/ProfessionalServices/config/test.php +%%WWWDIR%%/plugins/ProfessionalServices/images/promo.png +%%WWWDIR%%/plugins/ProfessionalServices/lang/en.json +%%WWWDIR%%/plugins/ProfessionalServices/plugin.json +%%WWWDIR%%/plugins/ProfessionalServices/stylesheets/widget.less +%%WWWDIR%%/plugins/ProfessionalServices/templates/promoServicesWidget.twig %%WWWDIR%%/plugins/Provider/API.php %%WWWDIR%%/plugins/Provider/Archiver.php %%WWWDIR%%/plugins/Provider/Columns/Provider.php @@ -4487,6 +4441,7 @@ %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.comcast.net.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.conduit.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.daum.net.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.disconnect.me.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.earthlink.net.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.excite.it.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.fooooo.com.png @@ -4496,6 +4451,7 @@ %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.goo.ne.jp.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.imesh.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.ke.voila.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.lookseek.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.lycos.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.nate.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.naver.com.png @@ -4506,17 +4462,19 @@ %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.seesaa.jp.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.seznam.cz.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.smartaddressbar.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.smartshopping.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.snap.do.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.softonic.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.tiscali.it.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.winamp.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.%%WWWOWN%%.ee.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.www.ee.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.yahoo.co.jp.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.yahoo.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.yam.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/search.yippy.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/searchalot.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/searchatlas.centrum.cz.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/searchlock.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/searchservice.myspace.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/sm.aport.ru.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/smart.delfi.lv.png @@ -4524,6 +4482,7 @@ %%WWWDIR%%/plugins/Referrers/images/searchEngines/sp-image.search.auone.jp.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/start.iplay.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/startgoogle.startpagina.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/startpage.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/suche.freenet.de.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/suche.info.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/suche.t-online.de.png @@ -4542,112 +4501,113 @@ %%WWWDIR%%/plugins/Referrers/images/searchEngines/web.volny.cz.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/websearch.cs.com.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/websearch.rakuten.co.jp.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.123people.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.1881.no.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.abacho.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.acoon.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.allesklar.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.alltheweb.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.altavista.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.arcor.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.baidu.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.blogdigger.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.blogpulse.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.charter.net.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.crawler.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.cuil.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.dasoertliche.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.eniro.se.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.eurip.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.euroseek.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.everyclick.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.exalead.fr.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.facebook.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.fastbrowsersearch.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.findhurtig.dk.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.fireball.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.firstsfind.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.fixsuche.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.flix.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.gigablast.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.gnadenmeer.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.gomeo.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.google.interia.pl.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.goyellow.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.gulesider.no.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.haosou.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.highbeam.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.hooseek.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.hotbot.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.icq.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.ilse.nl.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.jungle-spider.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.kataweb.it.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.kensaq.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.kvasir.no.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.latne.lv.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.lookany.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.looksmart.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.maailm.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.mamma.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.meinestadt.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.mister-wong.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.monstercrawler.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.mozbot.fr.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.mysearch.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.najdi.si.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.neti.ee.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.paperball.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.picsearch.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.plazoo.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.qualigo.at.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.qwant.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.search.ch.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.search.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.searchcanvas.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.searchy.co.uk.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.sharelook.fr.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.skynet.be.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.sm.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.so-net.ne.jp.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.sogou.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.soso.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.sputnik.ru.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.startsiden.no.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.suchmaschine.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.suchnase.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.talimba.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.talktalk.co.uk.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.teoma.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.tixuma.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.toile.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.toolbarhome.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.toppreise.ch.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.trouvez.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.trovarapido.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.trusted-search.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.twingly.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.url.org.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.vinden.nl.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.vindex.nl.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.walhello.info.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.web.nl.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.weborama.fr.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.websearch.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.witch.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.woopie.jp.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.x-recherche.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.yasni.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.yatedo.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.yougoo.fr.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.zapmeta.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.zoeken.nl.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.zoznam.sk.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%.zxuso.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%1.dastelefonbuch.de.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%2.austronaut.at.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%2.inbox.com.png -%%WWWDIR%%/plugins/Referrers/images/searchEngines/%%WWWOWN%%3.zoek.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.123people.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.1881.no.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.abacho.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.acoon.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.allesklar.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.alltheweb.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.altavista.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.arcor.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.baidu.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.blogdigger.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.blogpulse.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.charter.net.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.crawler.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.cuil.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.dasoertliche.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.eniro.se.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.eurip.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.euroseek.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.everyclick.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.exalead.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.facebook.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.fastbrowsersearch.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.findhurtig.dk.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.fireball.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.firstsfind.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.fixsuche.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.flix.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.gigablast.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.gnadenmeer.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.gomeo.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.google.interia.pl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.goyellow.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.gulesider.no.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.haosou.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.highbeam.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.hooseek.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.hotbot.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.icq.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.ilse.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.jungle-spider.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.kataweb.it.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.kensaq.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.kvasir.no.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.latne.lv.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.lookany.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.looksmart.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.maailm.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.mamma.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.meinestadt.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.mister-wong.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.monstercrawler.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.mozbot.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.mysearch.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.najdi.si.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.neti.ee.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.only-search.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.paperball.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.picsearch.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.plazoo.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.qualigo.at.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.qwant.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.search.ch.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.search.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.searchcanvas.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.searchy.co.uk.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.sharelook.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.skynet.be.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.sm.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.so-net.ne.jp.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.sogou.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.soso.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.sputnik.ru.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.startsiden.no.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.suchmaschine.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.suchnase.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.talimba.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.talktalk.co.uk.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.teoma.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.tixuma.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.toile.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.toolbarhome.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.toppreise.ch.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.trouvez.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.trovarapido.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.trusted-search.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.twingly.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.url.org.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.vinden.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.vindex.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.walhello.info.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.web.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.weborama.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.websearch.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.witch.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.woopie.jp.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.x-recherche.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.yasni.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.yatedo.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.yougoo.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.zapmeta.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.zoeken.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.zoznam.sk.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.zxuso.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www1.dastelefonbuch.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www2.austronaut.at.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www2.inbox.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www3.zoek.nl.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/xx.gif %%WWWDIR%%/plugins/Referrers/images/searchEngines/xx.png %%WWWDIR%%/plugins/Referrers/images/searchEngines/yandex.ru.png @@ -5014,6 +4974,7 @@ %%WWWDIR%%/plugins/SegmentEditor/lang/sv.json %%WWWDIR%%/plugins/SegmentEditor/lang/tl.json %%WWWDIR%%/plugins/SegmentEditor/lang/tr.json +%%WWWDIR%%/plugins/SegmentEditor/lang/uk.json %%WWWDIR%%/plugins/SegmentEditor/lang/vi.json %%WWWDIR%%/plugins/SegmentEditor/lang/zh-cn.json %%WWWDIR%%/plugins/SegmentEditor/stylesheets/segmentation.less @@ -5148,6 +5109,7 @@ %%WWWDIR%%/plugins/Transitions/lang/th.json %%WWWDIR%%/plugins/Transitions/lang/tl.json %%WWWDIR%%/plugins/Transitions/lang/tr.json +%%WWWDIR%%/plugins/Transitions/lang/uk.json %%WWWDIR%%/plugins/Transitions/lang/vi.json %%WWWDIR%%/plugins/Transitions/lang/zh-cn.json %%WWWDIR%%/plugins/Transitions/stylesheets/_transitionColors.less @@ -5760,6 +5722,66 @@ %%WWWDIR%%/plugins/UserCountryMap/svg/world.svg %%WWWDIR%%/plugins/UserCountryMap/templates/realtimeMap.twig %%WWWDIR%%/plugins/UserCountryMap/templates/visitorMap.twig +%%WWWDIR%%/plugins/UserId/API.php +%%WWWDIR%%/plugins/UserId/Archiver.php +%%WWWDIR%%/plugins/UserId/Columns/UserId.php +%%WWWDIR%%/plugins/UserId/Reports/Base.php +%%WWWDIR%%/plugins/UserId/Reports/GetUsers.php +%%WWWDIR%%/plugins/UserId/UserId.php +%%WWWDIR%%/plugins/UserId/images/visitordetails-hover.png +%%WWWDIR%%/plugins/UserId/images/visitordetails.png +%%WWWDIR%%/plugins/UserId/javascripts/rowaction.js +%%WWWDIR%%/plugins/UserId/lang/am.json +%%WWWDIR%%/plugins/UserId/lang/ar.json +%%WWWDIR%%/plugins/UserId/lang/be.json +%%WWWDIR%%/plugins/UserId/lang/bg.json +%%WWWDIR%%/plugins/UserId/lang/ca.json +%%WWWDIR%%/plugins/UserId/lang/cs.json +%%WWWDIR%%/plugins/UserId/lang/da.json +%%WWWDIR%%/plugins/UserId/lang/de.json +%%WWWDIR%%/plugins/UserId/lang/el.json +%%WWWDIR%%/plugins/UserId/lang/en.json +%%WWWDIR%%/plugins/UserId/lang/es.json +%%WWWDIR%%/plugins/UserId/lang/et.json +%%WWWDIR%%/plugins/UserId/lang/eu.json +%%WWWDIR%%/plugins/UserId/lang/fa.json +%%WWWDIR%%/plugins/UserId/lang/fi.json +%%WWWDIR%%/plugins/UserId/lang/fr.json +%%WWWDIR%%/plugins/UserId/lang/gl.json +%%WWWDIR%%/plugins/UserId/lang/he.json +%%WWWDIR%%/plugins/UserId/lang/hi.json +%%WWWDIR%%/plugins/UserId/lang/hr.json +%%WWWDIR%%/plugins/UserId/lang/hu.json +%%WWWDIR%%/plugins/UserId/lang/id.json +%%WWWDIR%%/plugins/UserId/lang/is.json +%%WWWDIR%%/plugins/UserId/lang/it.json +%%WWWDIR%%/plugins/UserId/lang/ja.json +%%WWWDIR%%/plugins/UserId/lang/ka.json +%%WWWDIR%%/plugins/UserId/lang/ko.json +%%WWWDIR%%/plugins/UserId/lang/lt.json +%%WWWDIR%%/plugins/UserId/lang/lv.json +%%WWWDIR%%/plugins/UserId/lang/nb.json +%%WWWDIR%%/plugins/UserId/lang/nl.json +%%WWWDIR%%/plugins/UserId/lang/nn.json +%%WWWDIR%%/plugins/UserId/lang/pl.json +%%WWWDIR%%/plugins/UserId/lang/pt-br.json +%%WWWDIR%%/plugins/UserId/lang/pt.json +%%WWWDIR%%/plugins/UserId/lang/ro.json +%%WWWDIR%%/plugins/UserId/lang/ru.json +%%WWWDIR%%/plugins/UserId/lang/sk.json +%%WWWDIR%%/plugins/UserId/lang/sl.json +%%WWWDIR%%/plugins/UserId/lang/sq.json +%%WWWDIR%%/plugins/UserId/lang/sr.json +%%WWWDIR%%/plugins/UserId/lang/sv.json +%%WWWDIR%%/plugins/UserId/lang/ta.json +%%WWWDIR%%/plugins/UserId/lang/te.json +%%WWWDIR%%/plugins/UserId/lang/th.json +%%WWWDIR%%/plugins/UserId/lang/tl.json +%%WWWDIR%%/plugins/UserId/lang/tr.json +%%WWWDIR%%/plugins/UserId/lang/uk.json +%%WWWDIR%%/plugins/UserId/lang/vi.json +%%WWWDIR%%/plugins/UserId/lang/zh-cn.json +%%WWWDIR%%/plugins/UserId/lang/zh-tw.json %%WWWDIR%%/plugins/UserLanguage/API.php %%WWWDIR%%/plugins/UserLanguage/Archiver.php %%WWWDIR%%/plugins/UserLanguage/Columns/Language.php @@ -6157,11 +6179,13 @@ %%WWWDIR%%/plugins/WebsiteMeasurable/lang/nb.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/nl.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/pt-br.json +%%WWWDIR%%/plugins/WebsiteMeasurable/lang/ru.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/sk.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/sq.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/sr.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/sv.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/tr.json +%%WWWDIR%%/plugins/WebsiteMeasurable/lang/uk.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/zh-tw.json %%WWWDIR%%/plugins/WebsiteMeasurable/plugin.json %%WWWDIR%%/plugins/Widgetize/Controller.php @@ -6231,6 +6255,7 @@ %%WWWDIR%%/vendor/composer/autoload_namespaces.php %%WWWDIR%%/vendor/composer/autoload_psr4.php %%WWWDIR%%/vendor/composer/autoload_real.php +%%WWWDIR%%/vendor/composer/autoload_static.php %%WWWDIR%%/vendor/composer/include_paths.php %%WWWDIR%%/vendor/composer/installed.json %%WWWDIR%%/vendor/container-interop/container-interop/LICENSE @@ -6333,6 +6358,7 @@ %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php @@ -6354,6 +6380,7 @@ %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php @@ -6369,6 +6396,7 @@ %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/HipChatHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php @@ -6462,6 +6490,7 @@ %%WWWDIR%%/vendor/php-di/invoker/src/ParameterResolver/NumericArrayResolver.php %%WWWDIR%%/vendor/php-di/invoker/src/ParameterResolver/ParameterResolver.php %%WWWDIR%%/vendor/php-di/invoker/src/ParameterResolver/ResolverChain.php +%%WWWDIR%%/vendor/php-di/invoker/src/ParameterResolver/TypeHintResolver.php %%WWWDIR%%/vendor/php-di/invoker/src/Reflection/CallableReflection.php %%WWWDIR%%/vendor/php-di/php-di/404.md %%WWWDIR%%/vendor/php-di/php-di/CONTRIBUTING.md @@ -6543,6 +6572,7 @@ %%WWWDIR%%/vendor/php-di/php-di/src/DI/functions.php %%WWWDIR%%/vendor/piwik/cache/README.md %%WWWDIR%%/vendor/piwik/cache/composer.json +%%WWWDIR%%/vendor/piwik/cache/composer.lock %%WWWDIR%%/vendor/piwik/cache/phpunit.xml %%WWWDIR%%/vendor/piwik/cache/src/Backend.php %%WWWDIR%%/vendor/piwik/cache/src/Backend/ArrayCache.php @@ -6558,6 +6588,7 @@ %%WWWDIR%%/vendor/piwik/cache/src/Transient.php %%WWWDIR%%/vendor/piwik/decompress/README.md %%WWWDIR%%/vendor/piwik/decompress/composer.json +%%WWWDIR%%/vendor/piwik/decompress/composer.lock %%WWWDIR%%/vendor/piwik/decompress/libs/PclZip/gnu-lgpl.txt %%WWWDIR%%/vendor/piwik/decompress/libs/PclZip/pclzip.lib.php %%WWWDIR%%/vendor/piwik/decompress/libs/PclZip/readme.txt @@ -6591,6 +6622,9 @@ %%WWWDIR%%/vendor/piwik/device-detector/Parser/ParserAbstract.php %%WWWDIR%%/vendor/piwik/device-detector/Parser/VendorFragment.php %%WWWDIR%%/vendor/piwik/device-detector/README.md +%%WWWDIR%%/vendor/piwik/device-detector/Yaml/Parser.php +%%WWWDIR%%/vendor/piwik/device-detector/Yaml/Spyc.php +%%WWWDIR%%/vendor/piwik/device-detector/Yaml/Symfony.php %%WWWDIR%%/vendor/piwik/device-detector/composer.json %%WWWDIR%%/vendor/piwik/device-detector/regexes/bots.yml %%WWWDIR%%/vendor/piwik/device-detector/regexes/client/browser_engine.yml @@ -6820,6 +6854,8 @@ %%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Core.php %%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Debug.php %%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Escaper.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/GlobalsInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/InitRuntimeInterface.php %%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Optimizer.php %%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Profiler.php %%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Sandbox.php @@ -6895,6 +6931,7 @@ %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/GetAttr.php %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/MethodCall.php %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Name.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/NullCoalesce.php %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Parent.php %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/TempName.php %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Test.php From owner-svn-ports-branches@freebsd.org Thu Aug 11 10:54:26 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DFC3BBB0F6C; Thu, 11 Aug 2016 10:54:26 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 97974165E; Thu, 11 Aug 2016 10:54:26 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7BAsPKB051494; Thu, 11 Aug 2016 10:54:25 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7BAsPhd051492; Thu, 11 Aug 2016 10:54:25 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201608111054.u7BAsPhd051492@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 11 Aug 2016 10:54:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r420059 - in branches/2016Q3/net/libzmq4: . files X-SVN-Group: ports-branches 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.22 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, 11 Aug 2016 10:54:27 -0000 Author: koobs Date: Thu Aug 11 10:54:25 2016 New Revision: 420059 URL: https://svnweb.freebsd.org/changeset/ports/420059 Log: MFH: r420056 - net/libzmq4: Add NORM option, Disable -Werror - Add NORM option and helpers [1], no default. - Backport upstream pull request #2066. [1][2] - Override default -Werror in build. [2] https://github.com/zeromq/libzmq/pull/2066 PR: 211306 (part 1 of 2) [1] Submitted by: Eric Camachat [1] - Resolve conflict from missing r418449 Approved by: ports-secteam (blanket) Added: branches/2016Q3/net/libzmq4/files/ - copied from r420056, head/net/libzmq4/files/ Modified: branches/2016Q3/net/libzmq4/Makefile branches/2016Q3/net/libzmq4/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net/libzmq4/Makefile ============================================================================== --- branches/2016Q3/net/libzmq4/Makefile Thu Aug 11 10:54:17 2016 (r420058) +++ branches/2016Q3/net/libzmq4/Makefile Thu Aug 11 10:54:25 2016 (r420059) @@ -2,7 +2,7 @@ PORTNAME= libzmq4 PORTVERSION= 4.1.4 -PORTREVISION= 1 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://download.zeromq.org/ DISTNAME= zeromq-${DISTVERSION} @@ -19,11 +19,12 @@ USES= libtool pkgconfig USE_LDCONFIG= yes GNU_CONFIGURE= yes -OPTIONS_DEFINE= CURVE DEBUG PGM +OPTIONS_DEFINE= CURVE DEBUG PGM NORM OPTIONS_DEFAULT= CURVE PGM CURVE_DESC= CURVE security mechanism via libsodium PGM_DESC= Reliable multicast transport using PGM via OpenPGM +NORM_DESC= Reliable multicast transport using NORM via NRL CURVE_CONFIGURE_WITH= libsodium CURVE_LIB_DEPENDS= libsodium.so:security/libsodium @@ -34,9 +35,13 @@ DEBUG_VARS= WITH_DEBUG=yes PGM_CONFIGURE_WITH= pgm PGM_LIB_DEPENDS= libpgm.so:net/openpgm +NORM_CONFIGURE_WITH= norm=${PREFIX} +NORM_LIB_DEPENDS= libnorm.so:net/norm + CONFIGURE_ARGS+= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig CFLAGS+= -Wno-long-long +CPPFLAGS+= -Wno-error MAKE_ENV= V=1 INSTALL_TARGET= install-strip Modified: branches/2016Q3/net/libzmq4/distinfo ============================================================================== --- branches/2016Q3/net/libzmq4/distinfo Thu Aug 11 10:54:17 2016 (r420058) +++ branches/2016Q3/net/libzmq4/distinfo Thu Aug 11 10:54:25 2016 (r420059) @@ -1,2 +1,3 @@ +TIMESTAMP = 1469795631 SHA256 (zeromq-4.1.4.tar.gz) = e99f44fde25c2e4cb84ce440f87ca7d3fe3271c2b8cfbc67d55e4de25e6fe378 SIZE (zeromq-4.1.4.tar.gz) = 1400012 From owner-svn-ports-branches@freebsd.org Thu Aug 11 11:16:18 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAB2BBB5880; Thu, 11 Aug 2016 11:16:18 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9906C14AB; Thu, 11 Aug 2016 11:16:18 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7BBGHCW059668; Thu, 11 Aug 2016 11:16:17 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7BBGHsj059667; Thu, 11 Aug 2016 11:16:17 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201608111116.u7BBGHsj059667@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 11 Aug 2016 11:16:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r420062 - branches/2016Q3/net/libzmq4 X-SVN-Group: ports-branches 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.22 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, 11 Aug 2016 11:16:18 -0000 Author: koobs Date: Thu Aug 11 11:16:17 2016 New Revision: 420062 URL: https://svnweb.freebsd.org/changeset/ports/420062 Log: MFH: r420061: net/libzmq4: Sort OPTIONS alphebetically Approved by: ports-secteam (pedantic blanket) Modified: branches/2016Q3/net/libzmq4/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net/libzmq4/Makefile ============================================================================== --- branches/2016Q3/net/libzmq4/Makefile Thu Aug 11 11:14:42 2016 (r420061) +++ branches/2016Q3/net/libzmq4/Makefile Thu Aug 11 11:16:17 2016 (r420062) @@ -19,7 +19,7 @@ USES= libtool pkgconfig USE_LDCONFIG= yes GNU_CONFIGURE= yes -OPTIONS_DEFINE= CURVE DEBUG PGM NORM +OPTIONS_DEFINE= CURVE DEBUG NORM PGM OPTIONS_DEFAULT= CURVE PGM CURVE_DESC= CURVE security mechanism via libsodium From owner-svn-ports-branches@freebsd.org Thu Aug 11 13:34:49 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E400BB5644; Thu, 11 Aug 2016 13:34:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E03871C37; Thu, 11 Aug 2016 13:34:48 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7BDYmWw012567; Thu, 11 Aug 2016 13:34:48 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7BDYlek012562; Thu, 11 Aug 2016 13:34:47 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201608111334.u7BDYlek012562@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 11 Aug 2016 13:34:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r420070 - in branches/2016Q3/lang: perl5.18 perl5.18/files perl5.20 perl5.20/files perl5.22 perl5.22/files perl5.24 perl5.24/files X-SVN-Group: ports-branches 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.22 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, 11 Aug 2016 13:34:49 -0000 Author: mat Date: Thu Aug 11 13:34:47 2016 New Revision: 420070 URL: https://svnweb.freebsd.org/changeset/ports/420070 Log: MFH: r420067 Update lang/perl5.* to fix CVE-2016-1238. We're exceptionnaly using the latest release candidates for this, Perl 5.22.3 and 5.24.1 were about to be released when CVE-2016-1238 hit the fan, so we feel confident that EVERYTHING WILL BE FINE. - lang/perl5.24 goes to 5.24.1-RC2. - lang/perl5.22 goes to 5.22.3-RC2. - lang/perl5.20 goes to 5.20.3_14. - lang/perl5.18 goes to 5.18.3_23 PR: 211561 Reported by: Sevan Janiyan Security: CVE-2016-1238 Sponsored by: Absolight Added: branches/2016Q3/lang/perl5.18/files/patch-CVE-2016-1238 - copied unchanged from r420067, head/lang/perl5.18/files/patch-CVE-2016-1238 branches/2016Q3/lang/perl5.20/files/patch-CVE-2016-1238 - copied unchanged from r420067, head/lang/perl5.20/files/patch-CVE-2016-1238 Modified: branches/2016Q3/lang/perl5.18/Makefile branches/2016Q3/lang/perl5.20/Makefile branches/2016Q3/lang/perl5.22/Makefile branches/2016Q3/lang/perl5.22/distinfo branches/2016Q3/lang/perl5.22/files/patch-cpan_Pod-Perldoc_lib_Pod_Perldoc.pm branches/2016Q3/lang/perl5.22/files/patch-t_porting_customized.dat branches/2016Q3/lang/perl5.22/pkg-plist branches/2016Q3/lang/perl5.22/version.mk branches/2016Q3/lang/perl5.24/Makefile branches/2016Q3/lang/perl5.24/distinfo branches/2016Q3/lang/perl5.24/files/patch-cpan_Pod-Perldoc_lib_Pod_Perldoc.pm branches/2016Q3/lang/perl5.24/files/patch-t_porting_customized.dat branches/2016Q3/lang/perl5.24/pkg-plist branches/2016Q3/lang/perl5.24/version.mk Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/lang/perl5.18/Makefile ============================================================================== --- branches/2016Q3/lang/perl5.18/Makefile Thu Aug 11 13:34:08 2016 (r420069) +++ branches/2016Q3/lang/perl5.18/Makefile Thu Aug 11 13:34:47 2016 (r420070) @@ -3,7 +3,7 @@ PORTNAME= perl PORTVERSION= ${PERL_VERSION} -PORTREVISION= 22 +PORTREVISION= 23 CATEGORIES= lang devel perl5 MASTER_SITES= CPAN/../../src/5.0 DIST_SUBDIR= perl Copied: branches/2016Q3/lang/perl5.18/files/patch-CVE-2016-1238 (from r420067, head/lang/perl5.18/files/patch-CVE-2016-1238) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/lang/perl5.18/files/patch-CVE-2016-1238 Thu Aug 11 13:34:47 2016 (r420070, copy of r420067, head/lang/perl5.18/files/patch-CVE-2016-1238) @@ -0,0 +1,706 @@ +--- cpan/Archive-Tar/bin/ptar ++++ cpan/Archive-Tar/bin/ptar +@@ -1,6 +1,7 @@ + #!/usr/bin/perl + use strict; + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use File::Find; + use Getopt::Std; + use Archive::Tar; +--- cpan/Archive-Tar/bin/ptardiff ++++ cpan/Archive-Tar/bin/ptardiff +@@ -1,5 +1,6 @@ + #!/usr/bin/perl + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use Archive::Tar; + use Getopt::Std; +--- cpan/Archive-Tar/bin/ptargrep ++++ cpan/Archive-Tar/bin/ptargrep +@@ -4,6 +4,7 @@ + # archive. See 'ptargrep --help' for more documentation. + # + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use warnings; + +--- cpan/CPAN/scripts/cpan ++++ cpan/CPAN/scripts/cpan +@@ -1,5 +1,6 @@ + #!/usr/local/bin/perl + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use vars qw($VERSION); + +--- cpan/Digest-SHA/shasum ++++ cpan/Digest-SHA/shasum +@@ -13,6 +13,7 @@ + ## "-0" option for reading bit strings, and + ## "-p" option for portable digests (to be deprecated). + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use warnings; + use Fcntl; +--- cpan/Encode/bin/enc2xs ++++ cpan/Encode/bin/enc2xs +@@ -4,6 +4,7 @@ BEGIN { + # with $ENV{PERL_CORE} set + # In case we need it in future... + require Config; import Config; ++ pop @INC if $INC[-1] eq '.'; + } + use strict; + use warnings; +--- cpan/Encode/bin/piconv ++++ cpan/Encode/bin/piconv +@@ -1,6 +1,7 @@ + #!./perl + # $Id: piconv,v 2.7 2014/05/31 09:48:48 dankogai Exp $ + # ++BEGIN { pop @INC if $INC[-1] eq '.' } + use 5.8.0; + use strict; + use Encode ; +--- cpan/Encode/bin/ucmlint ++++ cpan/Encode/bin/ucmlint +@@ -3,6 +3,7 @@ + # $Id: ucmlint,v 2.2 2008/03/12 09:51:11 dankogai Exp $ + # + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + our $VERSION = do { my @r = (q$Revision: 2.2 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +--- cpan/Encode/bin/unidump ++++ cpan/Encode/bin/unidump +@@ -1,5 +1,6 @@ + #!./perl + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use Encode; + use Getopt::Std; +--- cpan/ExtUtils-MakeMaker/bin/instmodsh ++++ cpan/ExtUtils-MakeMaker/bin/instmodsh +@@ -1,5 +1,6 @@ + #!/usr/bin/perl -w + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use IO::File; + use ExtUtils::Packlist; +--- cpan/IO-Compress/bin/zipdetails ++++ cpan/IO-Compress/bin/zipdetails +@@ -5,6 +5,7 @@ + # Display info on the contents of a Zip file + # + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use warnings ; + +--- cpan/JSON-PP/bin/json_pp ++++ cpan/JSON-PP/bin/json_pp +@@ -1,5 +1,6 @@ + #!/usr/bin/perl + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use Getopt::Long; + +--- cpan/Test-Harness/bin/prove ++++ cpan/Test-Harness/bin/prove +@@ -1,5 +1,6 @@ + #!/usr/bin/perl -w + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use warnings; + use App::Prove; +--- dist/ExtUtils-ParseXS/lib/ExtUtils/xsubpp ++++ dist/ExtUtils-ParseXS/lib/ExtUtils/xsubpp +@@ -1,5 +1,6 @@ + #!perl + use 5.006; ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + eval { + require ExtUtils::ParseXS; +--- dist/Module-CoreList/corelist ++++ dist/Module-CoreList/corelist +@@ -130,6 +130,7 @@ requested perl versions. + + =cut + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use Module::CoreList; + use Getopt::Long qw(:config no_ignore_case); + use Pod::Usage; +--- ext/Pod-Html/bin/pod2html ++++ ext/Pod-Html/bin/pod2html +@@ -216,6 +216,7 @@ This program is distributed under the Artistic License. + + =cut + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use Pod::Html; + + pod2html @ARGV; +--- utils/c2ph.PL ++++ utils/c2ph.PL +@@ -280,6 +280,7 @@ Anyway, here it is. Should run on perl v4 or greater. Maybe less. + + $RCSID = '$Id: c2ph,v 1.7 95/10/28 10:41:47 tchrist Exp Locker: tchrist $'; + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use File::Temp; + + ###################################################################### +--- utils/h2ph.PL ++++ utils/h2ph.PL +@@ -36,6 +36,8 @@ $Config{startperl} + + print OUT <<'!NO!SUBS!'; + ++BEGIN { pop @INC if $INC[-1] eq '.' } ++ + use strict; + + use Config; +--- utils/h2xs.PL ++++ utils/h2xs.PL +@@ -35,6 +35,8 @@ $Config{startperl} + + print OUT <<'!NO!SUBS!'; + ++BEGIN { pop @INC if $INC[-1] eq '.' } ++ + use warnings; + + =head1 NAME +--- utils/libnetcfg.PL ++++ utils/libnetcfg.PL +@@ -97,6 +97,7 @@ Jarkko Hietaniemi, conversion into libnetcfg for inclusion into Perl 5.8. + + # $Id: Configure,v 1.8 1997/03/04 09:22:32 gbarr Exp $ + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use IO::File; + use Getopt::Std; +--- utils/perlbug.PL ++++ utils/perlbug.PL +@@ -57,6 +57,7 @@ print OUT <<'!NO!SUBS!'; + my @patches = Config::local_patches(); + my $patch_tags = join "", map /(\S+)/ ? "+$1 " : (), @patches; + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use warnings; + use strict; + use Config; +--- utils/perldoc.PL ++++ utils/perldoc.PL +@@ -44,7 +44,10 @@ $Config{startperl} + # This "$file" file was generated by "$0" + + require 5; +-BEGIN { \$^W = 1 if \$ENV{'PERLDOCDEBUG'} } ++BEGIN { ++ \$^W = 1 if \$ENV{'PERLDOCDEBUG'}; ++ pop \@INC if \$INC[-1] eq '.'; ++} + use Pod::Perldoc; + exit( Pod::Perldoc->run() ); + +--- utils/perlivp.PL ++++ utils/perlivp.PL +@@ -39,6 +39,8 @@ print OUT "\n# perlivp $^V\n"; + + print OUT <<'!NO!SUBS!'; + ++BEGIN { pop @INC if $INC[-1] eq '.' } ++ + sub usage { + warn "@_\n" if @_; + print << " EOUSAGE"; +--- utils/splain.PL ++++ utils/splain.PL +@@ -38,6 +38,12 @@ $Config{startperl} + if \$running_under_some_shell; + !GROK!THIS! + ++print <<'!NO!SUBS!'; ++ ++BEGIN { pop @INC if $INC[-1] eq '.' } ++ ++!NO!SUBS! ++ + while () { + print OUT unless /^package diagnostics/; + } +--- lib/perl5db.pl ++++ lib/perl5db.pl +@@ -1938,7 +1938,10 @@ sub _DB__handle_y_command { + = $obj->cmd_args =~ /\A(?:(\d*)\s*(.*))?\z/) { + + # See if we've got the necessary support. +- if (!eval { require PadWalker; PadWalker->VERSION(0.08) }) { ++ if (!eval { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ require PadWalker; PadWalker->VERSION(0.08) }) { + my $Err = $@; + _db_warn( + $Err =~ /locate/ +@@ -9420,7 +9423,10 @@ if PadWalker could be loaded. + + =cut + +- if (not $text =~ /::/ and eval { require PadWalker } ) { ++ if (not $text =~ /::/ and eval { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ require PadWalker } ) { + my $level = 1; + while (1) { + my @info = caller($level); +--- cpan/Test/lib/Test.pm ++++ cpan/Test/lib/Test.pm +@@ -480,7 +480,12 @@ sub _diff_complain { + my($result, $expected, $detail, $prefix) = @_; + return _diff_complain_external(@_) if $ENV{PERL_TEST_DIFF}; + return _diff_complain_algdiff(@_) +- if eval { require Algorithm::Diff; Algorithm::Diff->VERSION(1.15); 1; }; ++ if eval { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ require Algorithm::Diff; Algorithm::Diff->VERSION(1.15); ++ 1; ++ }; + + $told_about_diff++ or print $TESTERR <<"EOT"; + # $prefix (Install the Algorithm::Diff module to have differences in multiline +--- dist/I18N-LangTags/lib/I18N/LangTags/Detect.pm ++++ dist/I18N-LangTags/lib/I18N/LangTags/Detect.pm +@@ -145,6 +145,8 @@ sub _try_use { # Basically a wrapper around "require Modulename" + print " About to use $module ...\n" if DEBUG; + { + local $SIG{'__DIE__'}; ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + eval "require $module"; # used to be "use $module", but no point in that. + } + if($@) { +--- dist/IO/IO.pm ++++ dist/IO/IO.pm +@@ -18,6 +18,8 @@ sub import { + + my @l = @_ ? @_ : qw(Handle Seekable File Pipe Socket Dir); + ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + eval join("", map { "require IO::" . (/(\w+)/)[0] . ";\n" } @l) + or croak $@; + } +--- dist/Locale-Maketext/lib/Locale/Maketext.pm ++++ dist/Locale-Maketext/lib/Locale/Maketext.pm +@@ -449,6 +449,8 @@ sub _try_use { # Basically a wrapper around "require Modulename" + + local $SIG{'__DIE__'}; + local $@; ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + eval "require $module"; # used to be "use $module", but no point in that. + + if($@) { +--- dist/Net-Ping/lib/Net/Ping.pm ++++ dist/Net-Ping/lib/Net/Ping.pm +@@ -410,7 +410,11 @@ sub ping_external { + $timeout # Seconds after which ping times out + ) = @_; + +- eval { require Net::Ping::External; } ++ eval { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ require Net::Ping::External; ++ } + or croak('Protocol "external" not supported on your system: Net::Ping::External not found'); + return Net::Ping::External::ping(ip => $ip, timeout => $timeout); + } +--- dist/Storable/Storable.pm ++++ dist/Storable/Storable.pm +@@ -25,7 +25,13 @@ use vars qw($canonical $forgive_me $VERSION); + $VERSION = '2.53_01'; + + BEGIN { +- if (eval { local $SIG{__DIE__}; require Log::Agent; 1 }) { ++ if (eval { ++ local $SIG{__DIE__}; ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ require Log::Agent; ++ 1; ++ }) { + Log::Agent->import; + } + # +--- dist/base/lib/base.pm ++++ dist/base/lib/base.pm +@@ -78,7 +78,11 @@ sub import { + my $sigdie; + { + local $SIG{__DIE__}; +- eval "require $base"; ++ do { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ eval "require $base"; ++ }; + # Only ignore "Can't locate" errors from our eval require. + # Other fatal errors (syntax etc) must be reported. + die if $@ && $@ !~ /^Can't locate .*? at \(eval /; +--- cpan/CPAN/lib/App/Cpan.pm ++++ cpan/CPAN/lib/App/Cpan.pm +@@ -530,9 +530,20 @@ sub AUTOLOAD { 1 } + sub DESTROY { 1 } + } + ++# load a module without searching the default entry for the current ++# directory ++sub _safe_load_module { ++ my $name = shift; ++ ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ ++ eval "require $name; 1"; ++} ++ + sub _init_logger + { +- my $log4perl_loaded = eval "require Log::Log4perl; 1"; ++ my $log4perl_loaded = _safe_load_module("Log::Log4perl"); + + unless( $log4perl_loaded ) + { +@@ -993,7 +1004,7 @@ sub _load_local_lib # -I + { + $logger->debug( "Loading local::lib" ); + +- my $rc = eval { require local::lib; 1; }; ++ my $rc = _safe_load_module("local::lib"); + unless( $rc ) { + $logger->die( "Could not load local::lib" ); + } +@@ -1121,7 +1132,7 @@ sub _get_file + { + my $path = shift; + +- my $loaded = eval "require LWP::Simple; 1;"; ++ my $loaded = _safe_load_module("LWP::Simple"); + croak "You need LWP::Simple to use features that fetch files from CPAN\n" + unless $loaded; + +@@ -1143,7 +1154,7 @@ sub _gitify + { + my $args = shift; + +- my $loaded = eval "require Archive::Extract; 1;"; ++ my $loaded = _safe_load_module("Archive::Extract"); + croak "You need Archive::Extract to use features that gitify distributions\n" + unless $loaded; + +@@ -1207,7 +1218,7 @@ sub _show_Changes + sub _get_changes_file + { + croak "Reading Changes files requires LWP::Simple and URI\n" +- unless eval "require LWP::Simple; require URI; 1"; ++ unless _safe_load_module("LWP::Simple") && _safe_load_module("URI"); + + my $url = shift; + +--- cpan/CPAN/lib/CPAN.pm ++++ cpan/CPAN/lib/CPAN.pm +@@ -1104,6 +1104,8 @@ sub has_usable { + ] + }; + if ($usable->{$mod}) { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + for my $c (0..$#{$usable->{$mod}}) { + my $code = $usable->{$mod}[$c]; + my $ret = eval { &$code() }; +@@ -1146,6 +1148,8 @@ sub has_inst { + $CPAN::META->{dontload_hash}{$mod}||=1; # unsafe meta access, ok + return 0; + } ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + my $file = $mod; + my $obj; + $file =~ s|::|/|g; +--- cpan/Digest/Digest.pm ++++ cpan/Digest/Digest.pm +@@ -38,7 +38,11 @@ sub new + unless (exists ${"$class\::"}{"VERSION"}) { + my $pm_file = $class . ".pm"; + $pm_file =~ s{::}{/}g; +- eval { require $pm_file }; ++ eval { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ require $pm_file ++ }; + if ($@) { + $err ||= $@; + next; +--- cpan/Encode/Encode.pm ++++ cpan/Encode/Encode.pm +@@ -56,6 +56,8 @@ require Encode::Config; + eval { + local $SIG{__DIE__}; + local $SIG{__WARN__}; ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + require Encode::ConfigLocal; + }; + +--- dist/ExtUtils-Command/lib/ExtUtils/Command.pm ++++ dist/ExtUtils-Command/lib/ExtUtils/Command.pm +@@ -19,7 +19,10 @@ if( $Is_VMS ) { + my $vms_efs; + my $vms_case; + +- if (eval { local $SIG{__DIE__}; require VMS::Feature; }) { ++ if (eval { local $SIG{__DIE__}; ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ require VMS::Feature; }) { + $vms_unix_rpt = VMS::Feature::current("filename_unix_report"); + $vms_efs = VMS::Feature::current("efs_charset"); + $vms_case = VMS::Feature::current("efs_case_preserve"); +--- cpan/File-Fetch/lib/File/Fetch.pm ++++ cpan/File-Fetch/lib/File/Fetch.pm +@@ -567,6 +567,8 @@ sub _lwp_fetch { + + }; + ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + unless( can_load( modules => $use_list ) ) { + $METHOD_FAIL->{'lwp'} = 1; + return; +@@ -619,6 +621,8 @@ sub _httptiny_fetch { + + }; + ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + unless( can_load(modules => $use_list) ) { + $METHOD_FAIL->{'httptiny'} = 1; + return; +@@ -658,6 +662,8 @@ sub _httplite_fetch { + + }; + ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + unless( can_load(modules => $use_list) ) { + $METHOD_FAIL->{'httplite'} = 1; + return; +@@ -733,6 +739,8 @@ sub _iosock_fetch { + 'IO::Select' => '0.0', + }; + ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + unless( can_load(modules => $use_list) ) { + $METHOD_FAIL->{'iosock'} = 1; + return; +@@ -814,6 +822,8 @@ sub _netftp_fetch { + check( $tmpl, \%hash ) or return; + + ### required modules ### ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + my $use_list = { 'Net::FTP' => 0 }; + + unless( can_load( modules => $use_list ) ) { +--- cpan/HTTP-Tiny/lib/HTTP/Tiny.pm ++++ cpan/HTTP-Tiny/lib/HTTP/Tiny.pm +@@ -1392,6 +1392,8 @@ sub _find_CA_file { + return $self->{SSL_options}->{SSL_ca_file} + if $self->{SSL_options}->{SSL_ca_file} and -e $self->{SSL_options}->{SSL_ca_file}; + ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + return Mozilla::CA::SSL_ca_file() + if eval { require Mozilla::CA }; + +--- cpan/IO-Compress/lib/IO/Uncompress/AnyUncompress.pm ++++ cpan/IO-Compress/lib/IO/Uncompress/AnyUncompress.pm +@@ -27,6 +27,8 @@ Exporter::export_ok_tags('all'); + + BEGIN + { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + eval ' use IO::Uncompress::Adapter::Inflate 2.060 ;'; + eval ' use IO::Uncompress::Adapter::Bunzip2 2.060 ;'; + eval ' use IO::Uncompress::Adapter::LZO 2.060 ;'; +--- cpan/IPC-Cmd/lib/IPC/Cmd.pm ++++ cpan/IPC-Cmd/lib/IPC/Cmd.pm +@@ -125,6 +125,8 @@ sub can_use_ipc_run { + return if IS_WIN98; + + ### if we dont have ipc::run, we obviously can't use it. ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + return unless can_load( + modules => { 'IPC::Run' => '0.55' }, + verbose => ($WARN && $verbose), +@@ -169,6 +171,8 @@ sub can_use_ipc_open3 { + + ### IPC::Open3 works on every non-VMS platform, but it can't + ### capture buffers on win32 :( ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + return unless can_load( + modules => { map {$_ => '0.0'} qw|IPC::Open3 IO::Select Symbol| }, + verbose => ($WARN && $verbose), +--- cpan/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm ++++ cpan/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm +@@ -134,7 +134,12 @@ sub load_loc { + my $pkg = join('::', grep { defined and length } $args{Class}, $args{Subclass}); + return $Loc{$pkg} if exists $Loc{$pkg}; + +- eval { require Locale::Maketext::Lexicon; 1 } or return; ++ eval { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ require Locale::Maketext::Lexicon; ++ 1 ++ } or return; + $Locale::Maketext::Lexicon::VERSION > 0.20 or return; + eval { require File::Spec; 1 } or return; + +--- cpan/Memoize/Memoize.pm ++++ cpan/Memoize/Memoize.pm +@@ -184,7 +184,11 @@ sub _my_tie { + } + my $modulefile = $module . '.pm'; + $modulefile =~ s{::}{/}g; +- eval { require $modulefile }; ++ eval { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ require $modulefile ++ }; + if ($@) { + croak "Memoize: Couldn't load hash tie module `$module': $@; aborting"; + } +--- cpan/Pod-Perldoc/lib/Pod/Perldoc.pm ++++ cpan/Pod-Perldoc/lib/Pod/Perldoc.pm +@@ -573,6 +573,9 @@ sub find_good_formatter_class { + my @class_list = @{ $self->{'formatter_classes'} || [] }; + $self->die( "WHAT? Nothing in the formatter class list!?" ) unless @class_list; + ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ + my $good_class_found; + foreach my $c (@class_list) { + DEBUG > 4 and print "Trying to load $c...\n"; +@@ -1004,6 +1007,8 @@ sub new_translator { # $tr = $self->new_translator($lang); + my $self = shift; + my $lang = shift; + ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + my $pack = 'POD2::' . uc($lang); + eval "require $pack"; + if ( !$@ && $pack->can('new') ) { +--- cpan/Sys-Syslog/Syslog.pm ++++ cpan/Sys-Syslog/Syslog.pm +@@ -888,6 +888,8 @@ sub silent_eval (&) { + sub can_load { + my ($module, $verbose) = @_; + local($SIG{__DIE__}, $SIG{__WARN__}, $@); ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + my $loaded = eval "use $module; 1"; + warn $@ if not $loaded and $verbose; + return $loaded +--- cpan/libnet/Net/Config.pm ++++ cpan/libnet/Net/Config.pm +@@ -23,7 +23,12 @@ our $VERSION = "3.05"; + + our($CONFIGURE, $LIBNET_CFG); + +-eval { local $SIG{__DIE__}; require Net::LocalCfg }; ++eval { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ local $SIG{__DIE__}; ++ require Net::LocalCfg; ++}; + + our %NetConfig = ( + nntp_hosts => [], +--- dist/bignum/lib/bigint.pm.orig Sat Dec 27 03:49:23 2014 ++++ dist/bignum/lib/bigint.pm Sat Jul 23 21:29:44 2016 +@@ -248,6 +248,8 @@ sub import + # see if we can find Math::BigInt::Lite + if (!defined $a && !defined $p) # rounding won't work to well + { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + eval 'require Math::BigInt::Lite;'; + if ($@ eq '') + { +--- dist/bignum/lib/bignum.pm.orig Sat Dec 27 03:49:23 2014 ++++ dist/bignum/lib/bignum.pm Sat Jul 23 21:29:52 2016 +@@ -155,6 +155,8 @@ sub import + # see if we can find Math::BigInt::Lite + if (!defined $a && !defined $p) # rounding won't work to well + { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + eval 'require Math::BigInt::Lite;'; + if ($@ eq '') + { +--- dist/bignum/lib/bigrat.pm.orig Sat Dec 27 03:49:23 2014 ++++ dist/bignum/lib/bigrat.pm Sat Jul 23 21:29:59 2016 +@@ -148,6 +148,8 @@ sub import + # see if we can find Math::BigInt::Lite + if (!defined $a && !defined $p) # rounding won't work to well + { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; + eval 'require Math::BigInt::Lite;'; + if ($@ eq '') + { +--- x2p/s2p.PL.orig Sat Jul 23 07:07:58 2016 ++++ x2p/s2p.PL Sat Jul 23 07:10:09 2016 +@@ -1,5 +1,6 @@ + #!/usr/bin/perl + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use Config; + use File::Basename qw(&basename &dirname); + use Cwd; +--- x2p/find2perl.PL.orig Sat Jul 23 07:08:21 2016 ++++ x2p/find2perl.PL Sat Jul 23 07:10:15 2016 +@@ -1,5 +1,6 @@ + #!/usr/local/bin/perl + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use Config; + use File::Basename qw(&basename &dirname); + use Cwd; Modified: branches/2016Q3/lang/perl5.20/Makefile ============================================================================== --- branches/2016Q3/lang/perl5.20/Makefile Thu Aug 11 13:34:08 2016 (r420069) +++ branches/2016Q3/lang/perl5.20/Makefile Thu Aug 11 13:34:47 2016 (r420070) @@ -3,7 +3,7 @@ PORTNAME= perl PORTVERSION= ${PERL_VERSION} -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= lang devel perl5 MASTER_SITES= CPAN/../../src/5.0 DIST_SUBDIR= perl Copied: branches/2016Q3/lang/perl5.20/files/patch-CVE-2016-1238 (from r420067, head/lang/perl5.20/files/patch-CVE-2016-1238) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/lang/perl5.20/files/patch-CVE-2016-1238 Thu Aug 11 13:34:47 2016 (r420070, copy of r420067, head/lang/perl5.20/files/patch-CVE-2016-1238) @@ -0,0 +1,794 @@ +--- cpan/Archive-Tar/bin/ptar ++++ cpan/Archive-Tar/bin/ptar +@@ -1,6 +1,7 @@ + #!/usr/bin/perl + use strict; + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use File::Find; + use Getopt::Std; + use Archive::Tar; +--- cpan/Archive-Tar/bin/ptardiff ++++ cpan/Archive-Tar/bin/ptardiff +@@ -1,5 +1,6 @@ + #!/usr/bin/perl + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use Archive::Tar; + use Getopt::Std; +--- cpan/Archive-Tar/bin/ptargrep ++++ cpan/Archive-Tar/bin/ptargrep +@@ -4,6 +4,7 @@ + # archive. See 'ptargrep --help' for more documentation. + # + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use warnings; + +--- cpan/CPAN/scripts/cpan ++++ cpan/CPAN/scripts/cpan +@@ -1,5 +1,6 @@ + #!/usr/local/bin/perl + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use vars qw($VERSION); + +--- cpan/Digest-SHA/shasum ++++ cpan/Digest-SHA/shasum +@@ -13,6 +13,7 @@ + ## "-0" option for reading bit strings, and + ## "-p" option for portable digests (to be deprecated). + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use warnings; + use Fcntl; +--- cpan/Encode/bin/enc2xs ++++ cpan/Encode/bin/enc2xs +@@ -4,6 +4,7 @@ BEGIN { + # with $ENV{PERL_CORE} set + # In case we need it in future... + require Config; import Config; ++ pop @INC if $INC[-1] eq '.'; + } + use strict; + use warnings; +--- cpan/Encode/bin/piconv ++++ cpan/Encode/bin/piconv +@@ -1,6 +1,7 @@ + #!./perl + # $Id: piconv,v 2.7 2014/05/31 09:48:48 dankogai Exp $ + # ++BEGIN { pop @INC if $INC[-1] eq '.' } + use 5.8.0; + use strict; + use Encode ; +--- cpan/Encode/bin/ucmlint ++++ cpan/Encode/bin/ucmlint +@@ -3,6 +3,7 @@ + # $Id: ucmlint,v 2.2 2008/03/12 09:51:11 dankogai Exp $ + # + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + our $VERSION = do { my @r = (q$Revision: 2.2 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; + +--- cpan/Encode/bin/unidump ++++ cpan/Encode/bin/unidump +@@ -1,5 +1,6 @@ + #!./perl + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use Encode; + use Getopt::Std; +--- cpan/ExtUtils-MakeMaker/bin/instmodsh ++++ cpan/ExtUtils-MakeMaker/bin/instmodsh +@@ -1,5 +1,6 @@ + #!/usr/bin/perl -w + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use IO::File; + use ExtUtils::Packlist; +--- cpan/IO-Compress/bin/zipdetails ++++ cpan/IO-Compress/bin/zipdetails +@@ -5,6 +5,7 @@ + # Display info on the contents of a Zip file + # + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use warnings ; + +--- cpan/JSON-PP/bin/json_pp ++++ cpan/JSON-PP/bin/json_pp +@@ -1,5 +1,6 @@ + #!/usr/bin/perl + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use Getopt::Long; + +--- cpan/Test-Harness/bin/prove ++++ cpan/Test-Harness/bin/prove +@@ -1,5 +1,6 @@ + #!/usr/bin/perl -w + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use warnings; + use App::Prove; +--- dist/ExtUtils-ParseXS/lib/ExtUtils/xsubpp ++++ dist/ExtUtils-ParseXS/lib/ExtUtils/xsubpp +@@ -1,5 +1,6 @@ + #!perl + use 5.006; ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + eval { + require ExtUtils::ParseXS; +--- dist/Module-CoreList/corelist ++++ dist/Module-CoreList/corelist +@@ -130,6 +130,7 @@ requested perl versions. + + =cut + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use Module::CoreList; + use Getopt::Long qw(:config no_ignore_case); + use Pod::Usage; +--- ext/Pod-Html/bin/pod2html ++++ ext/Pod-Html/bin/pod2html +@@ -216,6 +216,7 @@ This program is distributed under the Artistic License. + + =cut + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use Pod::Html; + + pod2html @ARGV; +--- utils/c2ph.PL ++++ utils/c2ph.PL +@@ -280,6 +280,7 @@ Anyway, here it is. Should run on perl v4 or greater. Maybe less. + + $RCSID = '$Id: c2ph,v 1.7 95/10/28 10:41:47 tchrist Exp Locker: tchrist $'; + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use File::Temp; + + ###################################################################### +--- utils/h2ph.PL ++++ utils/h2ph.PL +@@ -36,6 +36,8 @@ $Config{startperl} + + print OUT <<'!NO!SUBS!'; + ++BEGIN { pop @INC if $INC[-1] eq '.' } ++ + use strict; + + use Config; +--- utils/h2xs.PL ++++ utils/h2xs.PL +@@ -35,6 +35,8 @@ $Config{startperl} + + print OUT <<'!NO!SUBS!'; + ++BEGIN { pop @INC if $INC[-1] eq '.' } ++ + use warnings; + + =head1 NAME +--- utils/libnetcfg.PL ++++ utils/libnetcfg.PL +@@ -97,6 +97,7 @@ Jarkko Hietaniemi, conversion into libnetcfg for inclusion into Perl 5.8. + + # $Id: Configure,v 1.8 1997/03/04 09:22:32 gbarr Exp $ + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use strict; + use IO::File; + use Getopt::Std; +--- utils/perlbug.PL ++++ utils/perlbug.PL +@@ -57,6 +57,7 @@ print OUT <<'!NO!SUBS!'; + my @patches = Config::local_patches(); + my $patch_tags = join "", map /(\S+)/ ? "+$1 " : (), @patches; + ++BEGIN { pop @INC if $INC[-1] eq '.' } + use warnings; + use strict; + use Config; +--- utils/perldoc.PL ++++ utils/perldoc.PL +@@ -44,7 +44,10 @@ $Config{startperl} + # This "$file" file was generated by "$0" + + require 5; +-BEGIN { \$^W = 1 if \$ENV{'PERLDOCDEBUG'} } ++BEGIN { ++ \$^W = 1 if \$ENV{'PERLDOCDEBUG'}; ++ pop \@INC if \$INC[-1] eq '.'; ++} + use Pod::Perldoc; + exit( Pod::Perldoc->run() ); + +--- utils/perlivp.PL ++++ utils/perlivp.PL +@@ -39,6 +39,8 @@ print OUT "\n# perlivp $^V\n"; + + print OUT <<'!NO!SUBS!'; + ++BEGIN { pop @INC if $INC[-1] eq '.' } ++ + sub usage { + warn "@_\n" if @_; + print << " EOUSAGE"; +--- utils/splain.PL ++++ utils/splain.PL +@@ -38,6 +38,12 @@ $Config{startperl} + if \$running_under_some_shell; + !GROK!THIS! + ++print <<'!NO!SUBS!'; ++ ++BEGIN { pop @INC if $INC[-1] eq '.' } ++ ++!NO!SUBS! ++ + while () { + print OUT unless /^package diagnostics/; + } +--- lib/perl5db.pl ++++ lib/perl5db.pl +@@ -1938,7 +1938,10 @@ sub _DB__handle_y_command { + = $obj->cmd_args =~ /\A(?:(\d*)\s*(.*))?\z/) { + + # See if we've got the necessary support. +- if (!eval { require PadWalker; PadWalker->VERSION(0.08) }) { ++ if (!eval { ++ local @INC = @INC; ++ pop @INC if $INC[-1] eq '.'; ++ require PadWalker; PadWalker->VERSION(0.08) }) { + my $Err = $@; + _db_warn( + $Err =~ /locate/ +@@ -9420,7 +9423,10 @@ if PadWalker could be loaded. + + =cut + +- if (not $text =~ /::/ and eval { require PadWalker } ) { ++ if (not $text =~ /::/ and eval { ++ local @INC = @INC; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Thu Aug 11 13:38:28 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5CC89BB57B4; Thu, 11 Aug 2016 13:38:28 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 37ACE1EEA; Thu, 11 Aug 2016 13:38:28 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7BDcRjU013120; Thu, 11 Aug 2016 13:38:27 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7BDcQv0013112; Thu, 11 Aug 2016 13:38:26 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201608111338.u7BDcQv0013112@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 11 Aug 2016 13:38:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r420072 - in branches/2016Q3/lang/perl5-devel: . files X-SVN-Group: ports-branches 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.22 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, 11 Aug 2016 13:38:28 -0000 Author: mat Date: Thu Aug 11 13:38:26 2016 New Revision: 420072 URL: https://svnweb.freebsd.org/changeset/ports/420072 Log: MFH: r418012 r418700 r419045 r419520 Update to v5.25.3-99-g25e092d. Security: CVE-2016-1238 Changes: https://github.com/Perl/perl5/compare/v5.25.2-44-g7e169e8...v5.25.3-99-g25e092d Sponsored by: Absolight Deleted: branches/2016Q3/lang/perl5-devel/files/patch-cpan_Math-BigInt_lib_Math_BigInt.pm Modified: branches/2016Q3/lang/perl5-devel/Makefile branches/2016Q3/lang/perl5-devel/distinfo branches/2016Q3/lang/perl5-devel/files/patch-Configure branches/2016Q3/lang/perl5-devel/files/patch-cpan_Pod-Perldoc_lib_Pod_Perldoc.pm branches/2016Q3/lang/perl5-devel/files/patch-perl.c branches/2016Q3/lang/perl5-devel/files/patch-t_porting_customized.dat branches/2016Q3/lang/perl5-devel/pkg-plist branches/2016Q3/lang/perl5-devel/version.mk Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/lang/perl5-devel/Makefile ============================================================================== --- branches/2016Q3/lang/perl5-devel/Makefile Thu Aug 11 13:35:54 2016 (r420071) +++ branches/2016Q3/lang/perl5-devel/Makefile Thu Aug 11 13:38:26 2016 (r420072) @@ -30,7 +30,7 @@ TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_J USE_GITHUB= yes GH_ACCOUNT= Perl GH_PROJECT= perl5 -GH_TAGNAME= v5.25.2-44-g7e169e8 +GH_TAGNAME= v5.25.3-99-g25e092d MAKE_JOBS_UNSAFE= yes Modified: branches/2016Q3/lang/perl5-devel/distinfo ============================================================================== --- branches/2016Q3/lang/perl5-devel/distinfo Thu Aug 11 13:35:54 2016 (r420071) +++ branches/2016Q3/lang/perl5-devel/distinfo Thu Aug 11 13:38:26 2016 (r420072) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467027411 -SHA256 (perl/perl-5.25.2-44_GH0.tar.gz) = 1f67b971088bd1035f59244d97a6d9677996b0ba9aeb3ccc773373cbb263340b -SIZE (perl/perl-5.25.2-44_GH0.tar.gz) = 18162342 +TIMESTAMP = 1470224279 +SHA256 (perl/perl-5.25.3-99_GH0.tar.gz) = 2809aa916a6a5ce10ec3f395133c0643972e6bc70c77cac1aefc0a9d297c3160 +SIZE (perl/perl-5.25.3-99_GH0.tar.gz) = 18211260 Modified: branches/2016Q3/lang/perl5-devel/files/patch-Configure ============================================================================== --- branches/2016Q3/lang/perl5-devel/files/patch-Configure Thu Aug 11 13:35:54 2016 (r420071) +++ branches/2016Q3/lang/perl5-devel/files/patch-Configure Thu Aug 11 13:38:26 2016 (r420072) @@ -1,4 +1,4 @@ ---- Configure.orig 2016-06-06 00:43:48 UTC +--- Configure.orig 2016-08-03 07:40:44 UTC +++ Configure @@ -3864,7 +3864,10 @@ esac . ./posthint.sh @@ -21,7 +21,7 @@ case " $libpth " in *" $xxx "*) ;; *) libpth="$libpth $xxx";; -@@ -9592,8 +9595,7 @@ prefixvar=siteman3dir +@@ -9620,8 +9623,7 @@ prefixvar=siteman3dir : determine where add-on public executable scripts go case "$sitescript" in Modified: branches/2016Q3/lang/perl5-devel/files/patch-cpan_Pod-Perldoc_lib_Pod_Perldoc.pm ============================================================================== --- branches/2016Q3/lang/perl5-devel/files/patch-cpan_Pod-Perldoc_lib_Pod_Perldoc.pm Thu Aug 11 13:35:54 2016 (r420071) +++ branches/2016Q3/lang/perl5-devel/files/patch-cpan_Pod-Perldoc_lib_Pod_Perldoc.pm Thu Aug 11 13:38:26 2016 (r420072) @@ -1,6 +1,6 @@ ---- cpan/Pod-Perldoc/lib/Pod/Perldoc.pm.orig 2015-12-16 03:15:45 UTC +--- cpan/Pod-Perldoc/lib/Pod/Perldoc.pm.orig 2016-08-03 07:40:44 UTC +++ cpan/Pod-Perldoc/lib/Pod/Perldoc.pm -@@ -1931,6 +1931,7 @@ sub page { # apply a pager to the outpu +@@ -1936,6 +1936,7 @@ sub page { # apply a pager to the outpu # fix visible escape codes in ToTerm output # https://bugs.debian.org/758689 local $ENV{LESS} = defined $ENV{LESS} ? "$ENV{LESS} -R" : "-R"; Modified: branches/2016Q3/lang/perl5-devel/files/patch-perl.c ============================================================================== --- branches/2016Q3/lang/perl5-devel/files/patch-perl.c Thu Aug 11 13:35:54 2016 (r420071) +++ branches/2016Q3/lang/perl5-devel/files/patch-perl.c Thu Aug 11 13:38:26 2016 (r420072) @@ -1,6 +1,6 @@ ---- perl.c.orig 2016-06-20 10:48:35 UTC +--- perl.c.orig 2016-08-03 07:40:44 UTC +++ perl.c -@@ -1863,23 +1863,7 @@ S_Internals_V(pTHX_ CV *cv) +@@ -1876,23 +1876,7 @@ S_Internals_V(pTHX_ CV *cv) PUSHs(Perl_newSVpvn_flags(aTHX_ non_bincompat_options, sizeof(non_bincompat_options) - 1, SVs_TEMP)); Modified: branches/2016Q3/lang/perl5-devel/files/patch-t_porting_customized.dat ============================================================================== --- branches/2016Q3/lang/perl5-devel/files/patch-t_porting_customized.dat Thu Aug 11 13:35:54 2016 (r420071) +++ branches/2016Q3/lang/perl5-devel/files/patch-t_porting_customized.dat Thu Aug 11 13:38:26 2016 (r420072) @@ -1,17 +1,20 @@ ---- t/porting/customized.dat.orig 2016-06-26 22:23:33 UTC +--- t/porting/customized.dat.orig 2016-08-03 07:40:44 UTC +++ t/porting/customized.dat -@@ -1,12 +1,13 @@ - Encode cpan/Encode/Byte/Makefile.PL 54f446297d614331ef3f51e8310faff27cc44f90 - Encode cpan/Encode/encoding.pm 51c19efc9bfe8467d6ae12a4654f6e7f980715bf - ExtUtils::Constant cpan/ExtUtils-Constant/t/Constant.t a0369c919e216fb02767a637666bb4577ad79b02 -+ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm fc5a731797f5c4fedf02ea2b5277aa720f0880ab - ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/t/basic.t b7ee8691baf37197bf4249534f429fcf28f5cedf - ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/XS.pm 27aaa6acefd4223b57de74299314c19891ed17bc - File::Path cpan/File-Path/lib/File/Path.pm fd8ce4420a0c113d3f47dd3223859743655c1da8 - File::Path cpan/File-Path/t/Path_win32.t 94b9276557ce7f80b91f6fd9bfa7a0cd9bf9683e - Math::BigRat cpan/Math-BigRat/lib/Math/BigRat.pm 6eabc68e04f67694f6fe523e64eb013fc337ca5b --Pod::Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm fe0bc906fb74b69cfd3fb289316ba669d770d465 -+Pod::Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm 07e7d337de37d19b3cc7025af17b9111fb2ba265 +@@ -30,7 +30,7 @@ ExtUtils::MakeMaker cpan/ExtUtils-MakeMa + ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/Mksymlists.pm ed2f726eaed3f4c9353c444cd031a1a0da106263 + ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm a6c9b7ff946a87638a508c80396612776419f7d6 + ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_AIX.pm 0e26d258f50e34c0638e97962a9a4c26a130d836 +-ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm 56aa847736bbc0ae3bc0656be1b331b40e338050 ++ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm ac29a8dc1c7d6f0aca4abff0730c05bde1dab3ad + ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_BeOS.pm d0c51b23bd5a53948636317e28b7f34eb8a5805a + ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Cygwin.pm afc99adc2815e016da8b086fbb2fb67e80f2a945 + ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Darwin.pm 67b59d460239edecf9c484cb1bbe9103aa812a8e +@@ -91,7 +91,7 @@ Pod::Checker cpan/Pod-Checker/t/pod/cont + Pod::Checker cpan/Pod-Checker/t/pod/selfcheck.t 8ce3cfd38e4b9bcf5bc7fe7f2a14195e49aed7d8 + Pod::Checker cpan/Pod-Checker/t/pod/testcmp.pl a0cd5c8eca775c7753f4464eee96fa916e3d8a16 + Pod::Checker cpan/Pod-Checker/t/pod/testpchk.pl b2072c7f4379fd050e15424175d7cac5facf5b3b +-Pod::Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm ba3072a6af793b410b02594ed8fe109ac16a1d43 ++Pod::Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm e9e98b26450ceb3bae1e54ac8a57dab88932de96 Scalar-List-Utils cpan/Scalar-List-Utils/lib/List/Util.pm e479a29c6b66ac5cbbde4ef2296afaab6c4635a6 Scalar-List-Utils cpan/Scalar-List-Utils/lib/List/Util/XS.pm cbc38838d32fd213ae7b37ac38e30195355be3b9 Scalar-List-Utils cpan/Scalar-List-Utils/lib/Scalar/Util.pm 14a20075dfb9a4ef33b99115ed6f43e6d1a15f9b Modified: branches/2016Q3/lang/perl5-devel/pkg-plist ============================================================================== --- branches/2016Q3/lang/perl5-devel/pkg-plist Thu Aug 11 13:35:54 2016 (r420071) +++ branches/2016Q3/lang/perl5-devel/pkg-plist Thu Aug 11 13:38:26 2016 (r420072) @@ -479,7 +479,6 @@ etc/man.d/perl%%PKGNAMESUFFIX%%.conf %%PRIV_LIB%%/Test/Builder/Tester.pm %%PRIV_LIB%%/Test/Builder/Tester/Color.pm %%PRIV_LIB%%/Test/Builder/TodoDiag.pm -%%PRIV_LIB%%/Test/FAQ.pod %%PRIV_LIB%%/Test/Harness.pm %%PRIV_LIB%%/Test/More.pm %%PRIV_LIB%%/Test/Simple.pm @@ -500,6 +499,7 @@ etc/man.d/perl%%PKGNAMESUFFIX%%.conf %%PRIV_LIB%%/Test2/Event/Diag.pm %%PRIV_LIB%%/Test2/Event/Exception.pm %%PRIV_LIB%%/Test2/Event/Generic.pm +%%PRIV_LIB%%/Test2/Event/Info.pm %%PRIV_LIB%%/Test2/Event/Note.pm %%PRIV_LIB%%/Test2/Event/Ok.pm %%PRIV_LIB%%/Test2/Event/Plan.pm @@ -1354,6 +1354,7 @@ etc/man.d/perl%%PKGNAMESUFFIX%%.conf %%MAN3%%/Test2::Event::Diag.3.gz %%MAN3%%/Test2::Event::Exception.3.gz %%MAN3%%/Test2::Event::Generic.3.gz +%%MAN3%%/Test2::Event::Info.3.gz %%MAN3%%/Test2::Event::Note.3.gz %%MAN3%%/Test2::Event::Ok.3.gz %%MAN3%%/Test2::Event::Plan.3.gz @@ -1381,7 +1382,6 @@ etc/man.d/perl%%PKGNAMESUFFIX%%.conf %%MAN3%%/Test::Builder::Tester.3.gz %%MAN3%%/Test::Builder::Tester::Color.3.gz %%MAN3%%/Test::Builder::TodoDiag.3.gz -%%MAN3%%/Test::FAQ.3.gz %%MAN3%%/Test::Harness.3.gz %%MAN3%%/Test::More.3.gz %%MAN3%%/Test::Simple.3.gz @@ -1521,6 +1521,7 @@ etc/man.d/perl%%PKGNAMESUFFIX%%.conf %%PRIV_LIB%%/pod/perl5251delta.pod %%PRIV_LIB%%/pod/perl5252delta.pod %%PRIV_LIB%%/pod/perl5253delta.pod +%%PRIV_LIB%%/pod/perl5254delta.pod %%PRIV_LIB%%/pod/perl561delta.pod %%PRIV_LIB%%/pod/perl56delta.pod %%PRIV_LIB%%/pod/perl581delta.pod @@ -2208,6 +2209,7 @@ etc/man.d/perl%%PKGNAMESUFFIX%%.conf %%MAN1%%/perl5251delta.1.gz %%MAN1%%/perl5252delta.1.gz %%MAN1%%/perl5253delta.1.gz +%%MAN1%%/perl5254delta.1.gz %%MAN1%%/perl561delta.1.gz %%MAN1%%/perl56delta.1.gz %%MAN1%%/perl581delta.1.gz Modified: branches/2016Q3/lang/perl5-devel/version.mk ============================================================================== --- branches/2016Q3/lang/perl5-devel/version.mk Thu Aug 11 13:35:54 2016 (r420071) +++ branches/2016Q3/lang/perl5-devel/version.mk Thu Aug 11 13:38:26 2016 (r420072) @@ -1,2 +1,2 @@ -PERL_VERSION= 5.25.3 +PERL_VERSION= 5.25.4 PERL5_DEPEND= perl5>=5.25<5.26 From owner-svn-ports-branches@freebsd.org Sat Aug 13 08:46:30 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23FB4BB7B83; Sat, 13 Aug 2016 08:46:30 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01DC11D42; Sat, 13 Aug 2016 08:46:29 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7D8kTkw082365; Sat, 13 Aug 2016 08:46:29 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7D8kS0u082359; Sat, 13 Aug 2016 08:46:28 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201608130846.u7D8kS0u082359@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Sat, 13 Aug 2016 08:46:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r420156 - in branches/2016Q3/lang: perl5.22 perl5.22/files perl5.24 perl5.24/files X-SVN-Group: ports-branches 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.22 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, 13 Aug 2016 08:46:30 -0000 Author: mat Date: Sat Aug 13 08:46:28 2016 New Revision: 420156 URL: https://svnweb.freebsd.org/changeset/ports/420156 Log: MFH: r420155 Update Perl 5.22.3 & 5.24.1 to -RC3. Fix use base after CVE-2016-1238's fix. Sponsored by: Absolight Modified: branches/2016Q3/lang/perl5.22/Makefile branches/2016Q3/lang/perl5.22/distinfo branches/2016Q3/lang/perl5.22/files/patch-t_porting_customized.dat branches/2016Q3/lang/perl5.24/Makefile branches/2016Q3/lang/perl5.24/distinfo branches/2016Q3/lang/perl5.24/files/patch-t_porting_customized.dat Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/lang/perl5.22/Makefile ============================================================================== --- branches/2016Q3/lang/perl5.22/Makefile Sat Aug 13 08:39:41 2016 (r420155) +++ branches/2016Q3/lang/perl5.22/Makefile Sat Aug 13 08:46:28 2016 (r420156) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= perl -DISTVERSION= ${PERL_VERSION}-RC2 +DISTVERSION= ${PERL_VERSION}-RC3 PORTREVISION= 0 CATEGORIES= lang devel perl5 MASTER_SITES= CPAN/../../src/5.0 CPAN/../by-authors/id/S/SH/SHAY Modified: branches/2016Q3/lang/perl5.22/distinfo ============================================================================== --- branches/2016Q3/lang/perl5.22/distinfo Sat Aug 13 08:39:41 2016 (r420155) +++ branches/2016Q3/lang/perl5.22/distinfo Sat Aug 13 08:46:28 2016 (r420156) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469459913 -SHA256 (perl/perl-5.22.3-RC2.tar.xz) = 9546aa7fddf7bd52eeab02359aa9c70139798f9dbb0121975b9814d68a331832 -SIZE (perl/perl-5.22.3-RC2.tar.xz) = 11234988 +TIMESTAMP = 1471073154 +SHA256 (perl/perl-5.22.3-RC3.tar.xz) = a14903deb3f1613d79c74ef62be32e858237b20b474294db0a1c31a94d98ebb8 +SIZE (perl/perl-5.22.3-RC3.tar.xz) = 11235232 Modified: branches/2016Q3/lang/perl5.22/files/patch-t_porting_customized.dat ============================================================================== --- branches/2016Q3/lang/perl5.22/files/patch-t_porting_customized.dat Sat Aug 13 08:39:41 2016 (r420155) +++ branches/2016Q3/lang/perl5.22/files/patch-t_porting_customized.dat Sat Aug 13 08:46:28 2016 (r420156) @@ -1,4 +1,4 @@ ---- t/porting/customized.dat.orig 2016-07-24 17:18:14 UTC +--- t/porting/customized.dat.orig 2016-08-11 20:01:22 UTC +++ t/porting/customized.dat @@ -33,7 +33,7 @@ ExtUtils::MakeMaker cpan/ExtUtils-MakeMa ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/Mksymlists.pm 81ebde56af5860edc646518fb64e5c427754ac4f @@ -9,10 +9,10 @@ ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_BeOS.pm 4cadf37f823fef47a4862c44a3d34aa38315600b ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Cygwin.pm ee5298707a26912989934f1d44bf25460394ef60 ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Darwin.pm e247f2f2ba5d6283418ec6125d64a7a2b477ae43 -@@ -86,7 +86,7 @@ JSON::PP cpan/JSON-PP/bin/json_pp 22e1b3 - JSON::PP cpan/JSON-PP/lib/JSON/PP.pm 817730a21b9be855d844e4d26023758960039e99 - Locale::Maketext::Simple cpan/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm 57ed38905791a17c150210cd6f42ead22a7707b6 +@@ -88,7 +88,7 @@ Locale::Maketext::Simple cpan/Locale-Mak Memoize cpan/Memoize/Memoize.pm 902092ff91cdec9c7b4bd06202eb179e1ce26ca2 + Parse::CPAN::Meta cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm ab6b77a820c2a7779b5d81c4244e15822e9e1a7b + Parse::CPAN::Meta cpan/Parse-CPAN-Meta/t/02_api.t 43bddf467352c5bb1d017971d37e64ec90461df0 -Pod::Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm 6928fb8a381cfba8204886c656844bcf1abc60f5 +Pod::Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm 42a1d360fc745560352956bd1dfb62d6b43cdb9c Sys::Syslog cpan/Sys-Syslog/Syslog.pm 181d7541a6aa2a0a4d15f5beec32d16c17c76caf Modified: branches/2016Q3/lang/perl5.24/Makefile ============================================================================== --- branches/2016Q3/lang/perl5.24/Makefile Sat Aug 13 08:39:41 2016 (r420155) +++ branches/2016Q3/lang/perl5.24/Makefile Sat Aug 13 08:46:28 2016 (r420156) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= perl -DISTVERSION= ${PERL_VERSION}-RC2 +DISTVERSION= ${PERL_VERSION}-RC3 PORTREVISION= 0 CATEGORIES= lang devel perl5 MASTER_SITES= CPAN/../../src/5.0 CPAN/../by-authors/id/S/SH/SHAY Modified: branches/2016Q3/lang/perl5.24/distinfo ============================================================================== --- branches/2016Q3/lang/perl5.24/distinfo Sat Aug 13 08:39:41 2016 (r420155) +++ branches/2016Q3/lang/perl5.24/distinfo Sat Aug 13 08:46:28 2016 (r420156) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469460277 -SHA256 (perl/perl-5.24.1-RC2.tar.xz) = 57579296b540f06278b6db6bcbfa85abe491bb17275339a8a6918a2b31334d3c -SIZE (perl/perl-5.24.1-RC2.tar.xz) = 11549052 +TIMESTAMP = 1471072507 +SHA256 (perl/perl-5.24.1-RC3.tar.xz) = 18a25373d80e5d5c39928790e45427c7bc34a98499b25645de2b5fb2ab7ba7b5 +SIZE (perl/perl-5.24.1-RC3.tar.xz) = 11552388 Modified: branches/2016Q3/lang/perl5.24/files/patch-t_porting_customized.dat ============================================================================== --- branches/2016Q3/lang/perl5.24/files/patch-t_porting_customized.dat Sat Aug 13 08:39:41 2016 (r420155) +++ branches/2016Q3/lang/perl5.24/files/patch-t_porting_customized.dat Sat Aug 13 08:46:28 2016 (r420156) @@ -1,4 +1,4 @@ ---- t/porting/customized.dat.orig 2016-07-25 09:12:22 UTC +--- t/porting/customized.dat.orig 2016-08-11 20:06:42 UTC +++ t/porting/customized.dat @@ -33,7 +33,7 @@ ExtUtils::MakeMaker cpan/ExtUtils-MakeMa ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/Mksymlists.pm 8559ef191b4371d0c381472464856a8a73825b2a @@ -9,10 +9,10 @@ ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_BeOS.pm b63c90129303b2c17d084fb828aa2c02a2ad85b8 ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Cygwin.pm cabd1c97eaa427067811d92807e34c17940c7350 ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Darwin.pm 6a185d897a600c34615a6073f4de0ac2f54fef3e -@@ -97,7 +97,7 @@ JSON::PP cpan/JSON-PP/lib/JSON/PP.pm 817 - Locale::Maketext::Simple cpan/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm 57ed38905791a17c150210cd6f42ead22a7707b6 - Math::BigRat cpan/Math-BigRat/lib/Math/BigRat.pm 6eabc68e04f67694f6fe523e64eb013fc337ca5b +@@ -99,7 +99,7 @@ Math::BigRat cpan/Math-BigRat/lib/Math/B Memoize cpan/Memoize/Memoize.pm 902092ff91cdec9c7b4bd06202eb179e1ce26ca2 + Parse::CPAN::Meta cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm 2de9f411463eda2bd5f57163c12edab9a00dc598 + Parse::CPAN::Meta cpan/Parse-CPAN-Meta/t/02_api.t a692c9a7e52b08a14a954d6c405a22c0dab1cd43 -Pod::Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm ba3072a6af793b410b02594ed8fe109ac16a1d43 +Pod::Perldoc cpan/Pod-Perldoc/lib/Pod/Perldoc.pm e9e98b26450ceb3bae1e54ac8a57dab88932de96 Scalar-List-Utils cpan/Scalar-List-Utils/lib/List/Util.pm 3b501b7332480b34929bc4df5d48581df3307267