From owner-svn-ports-branches@freebsd.org Sun Aug 20 03:16:19 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05270DD9247; Sun, 20 Aug 2017 03:16:19 +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 C635470A22; Sun, 20 Aug 2017 03: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 v7K3GHuJ073883; Sun, 20 Aug 2017 03:16:17 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7K3GHSQ073882; Sun, 20 Aug 2017 03:16:17 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201708200316.v7K3GHSQ073882@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 20 Aug 2017 03:16:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448355 - branches/2017Q3/devel/py-extras X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2017Q3/devel/py-extras X-SVN-Commit-Revision: 448355 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Aug 2017 03:16:19 -0000 Author: koobs Date: Sun Aug 20 03:16:17 2017 New Revision: 448355 URL: https://svnweb.freebsd.org/changeset/ports/448355 Log: MFH: r448354 devel/py-extras: Fix Python 3.x packaging Python 3.x changes the location of the compiled python objects - pyc and pyo. The pkg-plist supplied with devel/py-extras doe not account for this, so packaging with Python 3 fails. This change replaces pkg-plist with autoplist to correct the issue [1] While I'm here: - Add TEST_DEPENDS and test target - Mark architecture independence - Add LICENSE_FILE PR: 219278 Submitted by: Johannes Jost Meixner [1] Approved by: portmgr (blanket) Approved by: ports-secteam (blanket) Deleted: branches/2017Q3/devel/py-extras/pkg-plist Modified: branches/2017Q3/devel/py-extras/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/py-extras/Makefile ============================================================================== --- branches/2017Q3/devel/py-extras/Makefile Sun Aug 20 03:12:19 2017 (r448354) +++ branches/2017Q3/devel/py-extras/Makefile Sun Aug 20 03:16:17 2017 (r448355) @@ -2,6 +2,7 @@ PORTNAME= extras PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,8 +11,16 @@ MAINTAINER= cs@FreeBSD.org COMMENT= Useful extra bits for Python LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}testtools>0:devel/py-testtools + USES= python -USE_PYTHON= distutils +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m testtools.run extras.tests.test_suite .include From owner-svn-ports-branches@freebsd.org Sun Aug 20 07:59:28 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3424DE5EDE; Sun, 20 Aug 2017 07:59:27 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD0E17C12A; Sun, 20 Aug 2017 07:59:27 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7K7xRal087345; Sun, 20 Aug 2017 07:59:27 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7K7xQ88087343; Sun, 20 Aug 2017 07:59:26 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201708200759.v7K7xQ88087343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 20 Aug 2017 07:59:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448360 - in branches/2017Q3/devel/libsoup: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: in branches/2017Q3/devel/libsoup: . files X-SVN-Commit-Revision: 448360 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Aug 2017 07:59:28 -0000 Author: kwm Date: Sun Aug 20 07:59:26 2017 New Revision: 448360 URL: https://svnweb.freebsd.org/changeset/ports/448360 Log: MFH: r448358 Fix CVE-2017-2885 Obtained from: libsoup upstream Security: 8e7bbddd-8338-11e7-867f-b499baebfeaf Approved by: ports-secteam@ (delphij@) Added: branches/2017Q3/devel/libsoup/files/patch-libsoup_soup-filter-input-stream.c - copied unchanged from r448358, head/devel/libsoup/files/patch-libsoup_soup-filter-input-stream.c Modified: branches/2017Q3/devel/libsoup/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/libsoup/Makefile ============================================================================== --- branches/2017Q3/devel/libsoup/Makefile Sun Aug 20 07:54:09 2017 (r448359) +++ branches/2017Q3/devel/libsoup/Makefile Sun Aug 20 07:59:26 2017 (r448360) @@ -3,6 +3,7 @@ PORTNAME= libsoup PORTVERSION= 2.52.2 +PORTREVISION= 1 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 Copied: branches/2017Q3/devel/libsoup/files/patch-libsoup_soup-filter-input-stream.c (from r448358, head/devel/libsoup/files/patch-libsoup_soup-filter-input-stream.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/devel/libsoup/files/patch-libsoup_soup-filter-input-stream.c Sun Aug 20 07:59:26 2017 (r448360, copy of r448358, head/devel/libsoup/files/patch-libsoup_soup-filter-input-stream.c) @@ -0,0 +1,58 @@ +From 03c91c76daf70ee227f38304c5e45a155f45073d Mon Sep 17 00:00:00 2001 +From: Dan Winship +Date: Thu, 3 Aug 2017 09:56:43 -0400 +Subject: Fix chunked decoding buffer overrun (CVE-2017-2885) + +https://bugzilla.gnome.org/show_bug.cgi?id=785774 +--- + libsoup/soup-filter-input-stream.c | 22 +++++++++++----------- + 1 file changed, 11 insertions(+), 11 deletions(-) + +diff --git a/libsoup/soup-filter-input-stream.c b/libsoup/soup-filter-input-stream.c +index cde4d12..2c30bf9 100644 +--- libsoup/soup-filter-input-stream.c ++++ libsoup/soup-filter-input-stream.c +@@ -198,7 +198,7 @@ soup_filter_input_stream_read_until (SoupFilterInputStream *fstream, + GCancellable *cancellable, + GError **error) + { +- gssize nread; ++ gssize nread, read_length; + guint8 *p, *buf, *end; + gboolean eof = FALSE; + GError *my_error = NULL; +@@ -251,10 +251,11 @@ soup_filter_input_stream_read_until (SoupFilterInputStream *fstream, + } else + buf = fstream->priv->buf->data; + +- /* Scan for the boundary */ +- end = buf + fstream->priv->buf->len; +- if (!eof) +- end -= boundary_length; ++ /* Scan for the boundary within the range we can possibly return. */ ++ if (include_boundary) ++ end = buf + MIN (fstream->priv->buf->len, length) - boundary_length; ++ else ++ end = buf + MIN (fstream->priv->buf->len - boundary_length, length); + for (p = buf; p <= end; p++) { + if (*p == *(guint8*)boundary && + !memcmp (p, boundary, boundary_length)) { +@@ -268,10 +269,9 @@ soup_filter_input_stream_read_until (SoupFilterInputStream *fstream, + if (!*got_boundary && fstream->priv->buf->len < length && !eof) + goto fill_buffer; + +- /* Return everything up to 'p' (which is either just after the boundary if +- * include_boundary is TRUE, just before the boundary if include_boundary is +- * FALSE, @boundary_len - 1 bytes before the end of the buffer, or end-of- +- * file). +- */ +- return read_from_buf (fstream, buffer, p - buf); ++ if (eof && !*got_boundary) ++ read_length = MIN (fstream->priv->buf->len, length); ++ else ++ read_length = p - buf; ++ return read_from_buf (fstream, buffer, read_length); + } +-- +cgit v0.12 + From owner-svn-ports-branches@freebsd.org Mon Aug 21 06:32:30 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7AA71DEB89C; Mon, 21 Aug 2017 06:32:30 +0000 (UTC) (envelope-from ehaupt@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 485932A66; Mon, 21 Aug 2017 06:32:30 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7L6WTS5047163; Mon, 21 Aug 2017 06:32:29 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7L6WTNN047162; Mon, 21 Aug 2017 06:32:29 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201708210632.v7L6WTNN047162@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Mon, 21 Aug 2017 06:32:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448450 - branches/2017Q3/net-mgmt/gnu-ipcalc X-SVN-Group: ports-branches X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: branches/2017Q3/net-mgmt/gnu-ipcalc X-SVN-Commit-Revision: 448450 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2017 06:32:30 -0000 Author: ehaupt Date: Mon Aug 21 06:32:29 2017 New Revision: 448450 URL: https://svnweb.freebsd.org/changeset/ports/448450 Log: MFH: r448449 Fix geoip support by providing LIBPATH. PR: 221682 Submitted by: tmasu@st.rim.or.jp Approved by: ports-secteam (blanket) Modified: branches/2017Q3/net-mgmt/gnu-ipcalc/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net-mgmt/gnu-ipcalc/Makefile ============================================================================== --- branches/2017Q3/net-mgmt/gnu-ipcalc/Makefile Mon Aug 21 06:27:09 2017 (r448449) +++ branches/2017Q3/net-mgmt/gnu-ipcalc/Makefile Mon Aug 21 06:32:29 2017 (r448450) @@ -3,6 +3,7 @@ PORTNAME= ipcalc PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= net-mgmt PKGNAMEPREFIX= gnu- @@ -22,6 +23,7 @@ OPTIONS_DEFINE= GEOIP OPTIONS_DEFAULT=GEOIP GEOIP_LIB_DEPENDS= libGeoIP.so:net/GeoIP +GEOIP_MAKE_ENV= LIBPATH=${LOCALBASE}/lib GEOIP_MAKE_ENV_OFF= USE_GEOIP=no USE_DYN_GEOIP=no PLIST_FILES= bin/ipcalc man/man1/ipcalc.1.gz From owner-svn-ports-branches@freebsd.org Mon Aug 21 07:57:17 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63991DEDB42; Mon, 21 Aug 2017 07:57:17 +0000 (UTC) (envelope-from freebsd@toco-domains.de) Received: from toco-domains.de (mail.toco-domains.de [176.9.39.170]) (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 28025640B6; Mon, 21 Aug 2017 07:57:16 +0000 (UTC) (envelope-from freebsd@toco-domains.de) Received: from [0.0.0.0] (mail.toco-domains.de [IPv6:2a01:4f8:150:50a5::6]) by toco-domains.de (Postfix) with ESMTPA id 4FB9E1AAF056; Mon, 21 Aug 2017 09:57:13 +0200 (CEST) Subject: Re: svn commit: r448270 - branches/2017Q3/devel/git To: Mark Felder , Boris Samorodov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org, Jan Beich References: <201708182012.v7IKCDAU008546@repo.freebsd.org> <3c210e9f-145e-a434-6fb3-eb4bf8814c06@passap.ru> <1503090809.2638339.1078004064.204EA724@webmail.messagingengine.com> From: Torsten Zuehlsdorff Message-ID: <1bac87e2-8340-5c6b-cfc0-4d10996f10ab@toco-domains.de> Date: Mon, 21 Aug 2017 09:57:06 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <1503090809.2638339.1078004064.204EA724@webmail.messagingengine.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2017 07:57:17 -0000 On 18.08.2017 23:13, Mark Felder wrote: > > > On Fri, Aug 18, 2017, at 15:29, Boris Samorodov wrote: >> 18.08.2017 23:12, Mark Felder пишет: >>> -DISTVERSION= 2.14.1 >>> +DISTVERSION= 2.13.2 >> >> PORTEPOCH bump? >> >> > > Unfortunately you can't do a PORTEPOCH bump in a quarterly branch unless > you do it in HEAD as well or it will break upgrades in the future. > > This was intentionally reverted without a PORTREVISION bump due to the > following factors: > > 1) The 2.14.x update to git breaks devel/git-cinnabar as reported by > jbeich@. It should not have been merged to quarterly but there was a > miscommunication. > 2) Quarterly branches are 99% of the time (fake but plausible statistic > I made up) consumed as packages only > 3) This package has not yet hit our mirrors. Last package set build was > on 448018 > > I expect nobody to notice. [..] At least www/gitlab is now broken again - the first think i noticed today. ;) Since gitlab is broken (and the least working version has security issues): is there any plan to fix git in quarterly? Greetings, Torsten From owner-svn-ports-branches@freebsd.org Mon Aug 21 10:38:44 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 160A4DD0E5B; Mon, 21 Aug 2017 10:38:44 +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 D8FD76989B; Mon, 21 Aug 2017 10:38:43 +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 v7LAchHV046033; Mon, 21 Aug 2017 10:38:43 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7LAchUL046032; Mon, 21 Aug 2017 10:38:43 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201708211038.v7LAchUL046032@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 21 Aug 2017 10:38:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448461 - branches/2017Q3/net/czmq X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2017Q3/net/czmq X-SVN-Commit-Revision: 448461 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2017 10:38:44 -0000 Author: koobs Date: Mon Aug 21 10:38:42 2017 New Revision: 448461 URL: https://svnweb.freebsd.org/changeset/ports/448461 Log: MFH: r448460 net/czmq: Squash -Werror flag zmq_utils.h functionality was moved to zmq.h since 4.2.0, with a deprecation warning added. ports r448376 updated libzm4 to 4.2.2, which caused a build error in net/cmzq due to the -Werror flag (set by default): /usr/local/include/zmq_utils.h:41:32: error: unknown warning group '-Werror', ignored [-Werror,-Wunknown-warning-option] #pragma GCC diagnostic ignored "-Werror" ^ /usr/local/include/zmq_utils.h:44:9: warning: Warning: zmq_utils.h is deprecated. All its functionality is provided by zmq.h. [-W#pragma-messages] #pragma message("Warning: zmq_utils.h is deprecated. All its functionality is provided by zmq.h.") ^ Squash the -Werror flag (as done in net/libzmq4) accordingly. While I'm here: - Modernize test target - Group build related entries (MAKE_ENV/CPPFLAGS) PR: 221688 Reported by: olgeni, Jan Bramkamp Approved by: ports-secteam (blanket) Modified: branches/2017Q3/net/czmq/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/czmq/Makefile ============================================================================== --- branches/2017Q3/net/czmq/Makefile Mon Aug 21 10:35:42 2017 (r448460) +++ branches/2017Q3/net/czmq/Makefile Mon Aug 21 10:38:42 2017 (r448461) @@ -22,10 +22,10 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libzmq=${LOCALBASE} \ --with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig -MAKE_ENV= V=1 INSTALL_TARGET= install-strip +TEST_TARGET= check -regression-test: build - @cd ${WRKSRC} && ${MAKE} check +MAKE_ENV= V=1 +CPPFLAGS+= -Wno-error .include From owner-svn-ports-branches@freebsd.org Mon Aug 21 13:31:28 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C17A3DDBAE7; Mon, 21 Aug 2017 13:31:28 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 95A436FC62; Mon, 21 Aug 2017 13:31:28 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id DFBDE213C7; Mon, 21 Aug 2017 09:31:11 -0400 (EDT) Received: from web4 ([10.202.2.214]) by compute3.internal (MEProxy); Mon, 21 Aug 2017 09:31:11 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=7spd+X RwkinJz9sfhsdYkU6H/VKFPD6+Ahy8By0bcQc=; b=gTFuPDl9jTpT7/vpvfDjws hjNUKpjPt/d6p5YtVlH7Lu3A/ynQhhSkgLW5L3TiT5W8FHCV9K1yG++kNU5H53VP lskum8tlRz5/t4HJ5miQ9avmbLFPW6uPJWX5AjoH1tKY3zCs21netHSTSjHO9gXd uTTMuwPP0PvkD7LJx9zwYZMso15HdQZYduy7SAxDVZ++IN12J+u3hdtLMqOa08TL 6ariblUtX/AUE/+w2/DFckHzycrtCri3gR+V0uBeWlykSnX3GJo2RNfyRGptvPJQ hmq11HKQwBVP6WcyHLJyMOcDwcPW84ZPO+MEKosd2iVmByU5OYdEU03Bx3eGe/Hw == X-ME-Sender: Received: by mailuser.nyi.internal (Postfix, from userid 99) id BE98BBAB72; Mon, 21 Aug 2017 09:31:11 -0400 (EDT) Message-Id: <1503322271.1836201.1080028056.0852AC68@webmail.messagingengine.com> From: Mark Felder To: Torsten Zuehlsdorff , Boris Samorodov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org, Jan Beich MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-21c69044 Date: Mon, 21 Aug 2017 08:31:11 -0500 Subject: Re: svn commit: r448270 - branches/2017Q3/devel/git References: <201708182012.v7IKCDAU008546@repo.freebsd.org> <3c210e9f-145e-a434-6fb3-eb4bf8814c06@passap.ru> <1503090809.2638339.1078004064.204EA724@webmail.messagingengine.com> <1bac87e2-8340-5c6b-cfc0-4d10996f10ab@toco-domains.de> In-Reply-To: <1bac87e2-8340-5c6b-cfc0-4d10996f10ab@toco-domains.de> X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2017 13:31:28 -0000 On Mon, Aug 21, 2017, at 02:57, Torsten Zuehlsdorff wrote: >=20 >=20 > On 18.08.2017 23:13, Mark Felder wrote: > >=20 > >=20 > > On Fri, Aug 18, 2017, at 15:29, Boris Samorodov wrote: > >> 18.08.2017 23:12, Mark Felder =D0=BF=D0=B8=D1=88=D0=B5=D1=82: > >>> -DISTVERSION=3D 2.14.1 > >>> +DISTVERSION=3D 2.13.2 > >> > >> PORTEPOCH bump? > >> > >> > >=20 > > Unfortunately you can't do a PORTEPOCH bump in a quarterly branch unless > > you do it in HEAD as well or it will break upgrades in the future. > >=20 > > This was intentionally reverted without a PORTREVISION bump due to the > > following factors: > >=20 > > 1) The 2.14.x update to git breaks devel/git-cinnabar as reported by > > jbeich@. It should not have been merged to quarterly but there was a > > miscommunication. > > 2) Quarterly branches are 99% of the time (fake but plausible statistic > > I made up) consumed as packages only > > 3) This package has not yet hit our mirrors. Last package set build was > > on 448018 > >=20 > > I expect nobody to notice. [..] >=20 > At least www/gitlab is now broken again - the first think i noticed=20 > today. ;) >=20 > Since gitlab is broken (and the least working version has security=20 > issues): is there any plan to fix git in quarterly? >=20 > Greetings, > Torsten >=20 Can you provide more details? devel/git in 2017Q3 is intentionally at 2.13.5 to prevent breakage with devel/git-cinnabar. If you mean to tell me that the only patched/secured versions of www/gitlab work with devel/git 2.14 we have a problem... --=20 Mark Felder ports-secteam & portmgr member feld@FreeBSD.org From owner-svn-ports-branches@freebsd.org Mon Aug 21 21:12:27 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FD1BDD339B; Mon, 21 Aug 2017 21:12:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3EDDD20A4; Mon, 21 Aug 2017 21:12:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7LLCQgd015143; Mon, 21 Aug 2017 21:12:26 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7LLCQJS015141; Mon, 21 Aug 2017 21:12:26 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201708212112.v7LLCQJS015141@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 21 Aug 2017 21:12:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448500 - branches/2017Q3/print/harfbuzz X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/print/harfbuzz X-SVN-Commit-Revision: 448500 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2017 21:12:27 -0000 Author: jbeich Date: Mon Aug 21 21:12:26 2017 New Revision: 448500 URL: https://svnweb.freebsd.org/changeset/ports/448500 Log: MFH: r448170 print/harfbuzz: update to 1.4.8 Changes: https://github.com/behdad/harfbuzz/releases/tag/1.4.8 ABI: https://abi-laboratory.pro/tracker/timeline/harfbuzz/ Approved by: ports-secteam (feld) Modified: branches/2017Q3/print/harfbuzz/Makefile branches/2017Q3/print/harfbuzz/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/print/harfbuzz/Makefile ============================================================================== --- branches/2017Q3/print/harfbuzz/Makefile Mon Aug 21 20:44:37 2017 (r448499) +++ branches/2017Q3/print/harfbuzz/Makefile Mon Aug 21 21:12:26 2017 (r448500) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= harfbuzz -PORTVERSION= 1.4.7 +PORTVERSION= 1.4.8 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ @@ -21,7 +21,7 @@ CONFIGURE_ARGS= --with-graphite2 --with-gobject=yes INSTALL_TARGET= install-strip TEST_TARGET= check -PLIST_SUB+= LIBVER=0.10400.7 +PLIST_SUB+= LIBVER=0.10400.8 HARFBUZZ_SLAVE?= no Modified: branches/2017Q3/print/harfbuzz/distinfo ============================================================================== --- branches/2017Q3/print/harfbuzz/distinfo Mon Aug 21 20:44:37 2017 (r448499) +++ branches/2017Q3/print/harfbuzz/distinfo Mon Aug 21 21:12:26 2017 (r448500) @@ -1,3 +1,3 @@ -TIMESTAMP = 1500402353 -SHA256 (harfbuzz-1.4.7.tar.bz2) = b85f6627425d54f32118308e053b939c63a388de9bf455b3830f68cad406bc6d -SIZE (harfbuzz-1.4.7.tar.bz2) = 1592693 +TIMESTAMP = 1502222624 +SHA256 (harfbuzz-1.4.8.tar.bz2) = ccec4930ff0bb2d0c40aee203075447954b64a8c2695202413cc5e428c907131 +SIZE (harfbuzz-1.4.8.tar.bz2) = 1587622 From owner-svn-ports-branches@freebsd.org Mon Aug 21 21:18:52 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED8C2DD38B6; Mon, 21 Aug 2017 21:18:52 +0000 (UTC) (envelope-from jhb@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 C75CD226E; Mon, 21 Aug 2017 21:18:52 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7LLIpxF015543; Mon, 21 Aug 2017 21:18:51 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7LLIpH0015541; Mon, 21 Aug 2017 21:18:51 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201708212118.v7LLIpH0015541@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Mon, 21 Aug 2017 21:18:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448501 - in branches/2017Q3/emulators/open-vm-tools: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jhb X-SVN-Commit-Paths: in branches/2017Q3/emulators/open-vm-tools: . files X-SVN-Commit-Revision: 448501 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2017 21:18:53 -0000 Author: jhb (src,doc committer) Date: Mon Aug 21 21:18:51 2017 New Revision: 448501 URL: https://svnweb.freebsd.org/changeset/ports/448501 Log: MFH: r448159 Don't leak lock from os_kmem_alloc(). The current port patches for os_kmem_alloc() add VM object locking. However, the lock is not unlocked in the success case because the unlock code is inside of an if body instead of after the if statement. Approved by: ports-secteam (feld) Modified: branches/2017Q3/emulators/open-vm-tools/Makefile branches/2017Q3/emulators/open-vm-tools/files/patch-modules_freebsd_vmmemctl_os.c Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/emulators/open-vm-tools/Makefile ============================================================================== --- branches/2017Q3/emulators/open-vm-tools/Makefile Mon Aug 21 21:12:26 2017 (r448500) +++ branches/2017Q3/emulators/open-vm-tools/Makefile Mon Aug 21 21:18:51 2017 (r448501) @@ -4,6 +4,7 @@ PORTNAME= open-vm-tools PORTVERSION= ${RELEASE_VER} PORTEPOCH= 2 +PORTREVISION= 1 CATEGORIES= emulators MAINTAINER= swills@FreeBSD.org Modified: branches/2017Q3/emulators/open-vm-tools/files/patch-modules_freebsd_vmmemctl_os.c ============================================================================== --- branches/2017Q3/emulators/open-vm-tools/files/patch-modules_freebsd_vmmemctl_os.c Mon Aug 21 21:12:26 2017 (r448500) +++ branches/2017Q3/emulators/open-vm-tools/files/patch-modules_freebsd_vmmemctl_os.c Mon Aug 21 21:18:51 2017 (r448501) @@ -1,5 +1,5 @@ ---- modules/freebsd/vmmemctl/os.c.orig 2017-02-24 22:15:37 UTC -+++ modules/freebsd/vmmemctl/os.c +--- modules/freebsd/vmmemctl/os.c.orig 2017-02-24 14:15:37.000000000 -0800 ++++ modules/freebsd/vmmemctl/os.c 2017-08-15 13:54:03.813152000 -0700 @@ -37,9 +37,11 @@ #include #include @@ -50,13 +50,10 @@ - if ( !vm_page_lookup(state->vmobject, page->pindex) ) { - return; -- } +// if ( !vm_page_lookup(state->vmobject, page->pindex) ) { +// return; +// } - -- os_pmap_putindex(pmap, page->pindex); -- vm_page_free(page); ++ +// os_pmap_putindex(pmap, page->pindex); +// vm_page_free(page); +#if __FreeBSD_version > 1000029 @@ -77,7 +74,10 @@ +#else + vm_page_unlock_queues(); +#endif -+ } + } +- +- os_pmap_putindex(pmap, page->pindex); +- vm_page_free(page); +#if __FreeBSD_version > 1000029 + VM_OBJECT_WUNLOCK(state->vmobject); +#else @@ -106,18 +106,18 @@ return NULL; } -@@ -504,6 +550,11 @@ os_kmem_alloc(int alloc_normal_failed) / - +@@ -505,6 +551,11 @@ os_kmem_alloc(int alloc_normal_failed) / if (!page) { os_pmap_putindex(pmap, pindex); + } +#if __FreeBSD_version > 1000029 + VM_OBJECT_WUNLOCK(state->vmobject); +#else + VM_OBJECT_UNLOCK(state->vmobject); +#endif - } return page; + } @@ -847,7 +898,7 @@ vmmemctl_sysctl(SYSCTL_HANDLER_ARGS) static void vmmemctl_init_sysctl(void) From owner-svn-ports-branches@freebsd.org Tue Aug 22 17:26:43 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E490BDD65FB; Tue, 22 Aug 2017 17:26:43 +0000 (UTC) (envelope-from swills@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 BF4836CC7D; Tue, 22 Aug 2017 17:26:43 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7MHQggb013145; Tue, 22 Aug 2017 17:26:42 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7MHQggu013139; Tue, 22 Aug 2017 17:26:42 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201708221726.v7MHQggu013139@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 22 Aug 2017 17:26:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448572 - in branches/2017Q3/mail/squirrelmail: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in branches/2017Q3/mail/squirrelmail: . files X-SVN-Commit-Revision: 448572 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Aug 2017 17:26:44 -0000 Author: swills Date: Tue Aug 22 17:26:42 2017 New Revision: 448572 URL: https://svnweb.freebsd.org/changeset/ports/448572 Log: MFH: r448570 mail/squirrelmail: Update to 20170705 While here, give maintainership to submitter PR: 219801 Submitted by: Zsolt Udvari Security: e1de77e8-c45e-48d7-8866-5a6f943046de Approved by: ports-secteam (implicit) Added: branches/2017Q3/mail/squirrelmail/files/patch-functions_strings.php - copied unchanged from r448570, head/mail/squirrelmail/files/patch-functions_strings.php Modified: branches/2017Q3/mail/squirrelmail/Makefile branches/2017Q3/mail/squirrelmail/distinfo branches/2017Q3/mail/squirrelmail/files/patch-functions__i18n.php branches/2017Q3/mail/squirrelmail/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/mail/squirrelmail/Makefile ============================================================================== --- branches/2017Q3/mail/squirrelmail/Makefile Tue Aug 22 17:26:08 2017 (r448571) +++ branches/2017Q3/mail/squirrelmail/Makefile Tue Aug 22 17:26:42 2017 (r448572) @@ -2,13 +2,14 @@ # $FreeBSD$ PORTNAME= squirrelmail -PORTVERSION= 20161030 +PORTVERSION= 20170705 CATEGORIES= mail www -MASTER_SITES= LOCAL/adamw/squirrelmail +MASTER_SITES= http://snapshots.squirrelmail.org/ \ + http://freebsd.uzsolt.hu/src/ DISTNAME= ${PORTNAME}-${PORTVERSION}_0200-SVN.stable DIST_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= uzsolt@uzsolt.hu COMMENT= Webmail system which accesses mail over IMAP LICENSE= GPLv2+ Modified: branches/2017Q3/mail/squirrelmail/distinfo ============================================================================== --- branches/2017Q3/mail/squirrelmail/distinfo Tue Aug 22 17:26:08 2017 (r448571) +++ branches/2017Q3/mail/squirrelmail/distinfo Tue Aug 22 17:26:42 2017 (r448572) @@ -1,3 +1,3 @@ -TIMESTAMP = 1477843339 -SHA256 (squirrelmail/squirrelmail-20161030_0200-SVN.stable.tar.bz2) = 5a187955b048e557276b73c74bc38dfa78e2f63e4d3273163ef1e5283f2874e6 -SIZE (squirrelmail/squirrelmail-20161030_0200-SVN.stable.tar.bz2) = 560672 +TIMESTAMP = 1499253804 +SHA256 (squirrelmail/squirrelmail-20170705_0200-SVN.stable.tar.bz2) = 53ff6540eb46f737bb631f6d5e0fb80c19b42ab33b1e28a38b4bc469e26a63a8 +SIZE (squirrelmail/squirrelmail-20170705_0200-SVN.stable.tar.bz2) = 563043 Modified: branches/2017Q3/mail/squirrelmail/files/patch-functions__i18n.php ============================================================================== --- branches/2017Q3/mail/squirrelmail/files/patch-functions__i18n.php Tue Aug 22 17:26:08 2017 (r448571) +++ branches/2017Q3/mail/squirrelmail/files/patch-functions__i18n.php Tue Aug 22 17:26:42 2017 (r448572) @@ -1,12 +1,32 @@ ---- functions/i18n.php.orig 2015-01-03 03:56:32 UTC +--- functions/i18n.php.orig 2017-07-05 11:28:23 UTC +++ functions/i18n.php -@@ -683,7 +683,8 @@ function japanese_charset_xtra() { - $useragent = func_get_arg(2); - if (strstr($useragent, 'Windows') !== false || - strstr($useragent, 'Mac_') !== false) { -- $ret = mb_convert_encoding($ret, 'SJIS', 'AUTO'); -+ $ret = mb_convert_encoding($ret, 'UTF-8', 'AUTO'); -+ - } else { - $ret = mb_convert_encoding($ret, 'EUC-JP', 'AUTO'); +@@ -159,15 +159,17 @@ function sq_setlocale($category,$locale) } + + /** +- * Converts string from given charset to charset, that can be displayed by user translation. ++ * Converts a string from the given $charset to a character set that ++ * can be displayed by the current user interface language (translation) + * +- * Function by default returns html encoded strings, if translation uses different encoding. ++ * Function by default returns html encoded strings if translation uses ++ * different encoding. + * If Japanese translation is used - function returns string converted to euc-jp + * If $charset is not supported - function returns unconverted string. + * + * sanitizing of html tags is also done by this function. + * +- * @param string $charset ++ * @param string $charset The charset of the incoming string + * @param string $string Text to be decoded + * @param boolean $force_decode converts string to html without $charset!=$default_charset check. + * Argument is available since 1.4.5 and 1.5.1. +@@ -184,7 +186,7 @@ function charset_decode ($charset, $stri + } + + /* All HTML special characters are 7 bit and can be replaced first */ +- if (! $save_html) $string = sm_encode_html_special_chars ($string); ++ if (! $save_html) $string = sm_encode_html_special_chars($string, ENT_COMPAT, $charset); + $charset = strtolower($charset); + + set_my_charset(); Copied: branches/2017Q3/mail/squirrelmail/files/patch-functions_strings.php (from r448570, head/mail/squirrelmail/files/patch-functions_strings.php) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/mail/squirrelmail/files/patch-functions_strings.php Tue Aug 22 17:26:42 2017 (r448572, copy of r448570, head/mail/squirrelmail/files/patch-functions_strings.php) @@ -0,0 +1,71 @@ +--- functions/strings.php.orig 2017-01-27 20:31:33 UTC ++++ functions/strings.php +@@ -1489,7 +1489,13 @@ function sm_validate_security_token($tok + * (See http://php.net/manual/function.htmlspecialchars.php ) + * (OPTIONAL; default ENT_COMPAT, ENT_COMPAT | ENT_SUBSTITUTE for PHP >=5.4) + * @param string $encoding The character encoding to use in the conversion +- * (OPTIONAL; default automatic detection) ++ * (if not one of the character sets supported ++ * by PHP's htmlspecialchars(), then $encoding ++ * will be ignored and iso-8859-1 will be used, ++ * unless a default has been specified in ++ * $default_htmlspecialchars_encoding in ++ * config_local.php) (OPTIONAL; default automatic ++ * detection) + * @param boolean $double_encode Whether or not to convert entities that are + * already in the string (only supported in + * PHP 5.2.3+) (OPTIONAL; default TRUE) +@@ -1500,6 +1506,31 @@ function sm_validate_security_token($tok + function sm_encode_html_special_chars($string, $flags=ENT_COMPAT, + $encoding=NULL, $double_encode=TRUE) + { ++ ++ // charsets supported by PHP's htmlspecialchars ++ // (move this elsewhere if needed) ++ // ++ static $htmlspecialchars_charsets = array( ++ 'iso-8859-1', 'iso8859-1', ++ 'iso-8859-5', 'iso8859-5', ++ 'iso-8859-15', 'iso8859-15', ++ 'utf-8', ++ 'cp866', 'ibm866', '866', ++ 'cp1251', 'windows-1251', 'win-1251', '1251', ++ 'cp1252', 'windows-1252', '1252', ++ 'koi8-R', 'koi8-ru', 'koi8r', ++ 'big5', '950', ++ 'gb2312', '936', ++ 'big5-hkscs', ++ 'shift_jis', 'sjis', 'sjis-win', 'cp932', '932', ++ 'euc-jp', 'eucjp', 'eucjp-win', ++ 'macroman', ++ ); ++ ++ ++ // if not given, set encoding to the charset being ++ // used by the current user interface language ++ // + if (!$encoding) + { + global $default_charset; +@@ -1508,6 +1539,21 @@ function sm_encode_html_special_chars($s + $encoding = $default_charset; + } + ++ ++ // make sure htmlspecialchars() supports the needed encoding ++ // ++ if (!in_array(strtolower($encoding), $htmlspecialchars_charsets)) ++ { ++ // use default from configuration if provided or hard-coded fallback ++ // ++ global $default_htmlspecialchars_encoding; ++ if (!empty($default_htmlspecialchars_encoding)) ++ $encoding = $default_htmlspecialchars_encoding; ++ else ++ $encoding = 'iso-8859-1'; ++ } ++ ++ + if (check_php_version(5, 2, 3)) { + // Replace invalid characters with a symbol instead of returning + // empty string for the entire to be encoded string. Modified: branches/2017Q3/mail/squirrelmail/pkg-plist ============================================================================== --- branches/2017Q3/mail/squirrelmail/pkg-plist Tue Aug 22 17:26:08 2017 (r448571) +++ branches/2017Q3/mail/squirrelmail/pkg-plist Tue Aug 22 17:26:42 2017 (r448572) @@ -235,6 +235,7 @@ etc/periodic/daily/111.clean-squirrelmail %%SQUIRRELDIR%%/plugins/squirrelspell/js/init.js %%SQUIRRELDIR%%/plugins/squirrelspell/modules/.htaccess %%SQUIRRELDIR%%/plugins/squirrelspell/modules/WHATISTHIS +%%SQUIRRELDIR%%/plugins/squirrelspell/modules/change_main_options.mod %%SQUIRRELDIR%%/plugins/squirrelspell/modules/check_me.mod %%SQUIRRELDIR%%/plugins/squirrelspell/modules/crypto.mod %%SQUIRRELDIR%%/plugins/squirrelspell/modules/crypto_badkey.mod From owner-svn-ports-branches@freebsd.org Tue Aug 22 23:42:46 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D153DECAE7; Tue, 22 Aug 2017 23:42:46 +0000 (UTC) (envelope-from jrm@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 EFFA47E3D9; Tue, 22 Aug 2017 23:42:45 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7MNgjcO068833; Tue, 22 Aug 2017 23:42:45 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7MNgiQ9068831; Tue, 22 Aug 2017 23:42:44 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201708222342.v7MNgiQ9068831@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Tue, 22 Aug 2017 23:42:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448587 - branches/2017Q3/sysutils/zap X-SVN-Group: ports-branches X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: branches/2017Q3/sysutils/zap X-SVN-Commit-Revision: 448587 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Aug 2017 23:42:46 -0000 Author: jrm Date: Tue Aug 22 23:42:44 2017 New Revision: 448587 URL: https://svnweb.freebsd.org/changeset/ports/448587 Log: MFH: r448263 sysutils/zap: Update to version 0.7.1. Upstream changes: https://github.com/Jehops/zap/releases/tag/0.7.1 Reported by: Michael Wayne Approved by: ports-secteam Modified: branches/2017Q3/sysutils/zap/Makefile branches/2017Q3/sysutils/zap/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/sysutils/zap/Makefile ============================================================================== --- branches/2017Q3/sysutils/zap/Makefile Tue Aug 22 23:02:21 2017 (r448586) +++ branches/2017Q3/sysutils/zap/Makefile Tue Aug 22 23:42:44 2017 (r448587) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= zap -PORTVERSION= 0.7.0 +PORTVERSION= 0.7.1 CATEGORIES= sysutils MAINTAINER= jrm@FreeBSD.org Modified: branches/2017Q3/sysutils/zap/distinfo ============================================================================== --- branches/2017Q3/sysutils/zap/distinfo Tue Aug 22 23:02:21 2017 (r448586) +++ branches/2017Q3/sysutils/zap/distinfo Tue Aug 22 23:42:44 2017 (r448587) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494789514 -SHA256 (Jehops-zap-0.7.0_GH0.tar.gz) = bb060263d41e87cfe8ed083b4eb95a1393cdd27d2edc9ed9fdb55bfbd47448af -SIZE (Jehops-zap-0.7.0_GH0.tar.gz) = 7991 +TIMESTAMP = 1503077854 +SHA256 (Jehops-zap-0.7.1_GH0.tar.gz) = f6e66c330031c5040fbb6d021c3bc94c9d4c8a41ec0431bb998f113df3caaebf +SIZE (Jehops-zap-0.7.1_GH0.tar.gz) = 7995 From owner-svn-ports-branches@freebsd.org Thu Aug 24 01:04:45 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6020DF22BC; Thu, 24 Aug 2017 01:04:45 +0000 (UTC) (envelope-from swills@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 81D4B3A55; Thu, 24 Aug 2017 01:04:45 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7O14i40092432; Thu, 24 Aug 2017 01:04:44 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7O14iSW092427; Thu, 24 Aug 2017 01:04:44 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201708240104.v7O14iSW092427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 24 Aug 2017 01:04:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448643 - in branches/2017Q3/graphics: poppler poppler-glib poppler-qt5 X-SVN-Group: ports-branches X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in branches/2017Q3/graphics: poppler poppler-glib poppler-qt5 X-SVN-Commit-Revision: 448643 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2017 01:04:45 -0000 Author: swills Date: Thu Aug 24 01:04:44 2017 New Revision: 448643 URL: https://svnweb.freebsd.org/changeset/ports/448643 Log: MFH: r448642 graphics/poppler: update to 0.57.0 PR: 220608 Reported by: Andrew Marks Approved by: gnome@ (kwm) Security: eca2d861-76f4-42ed-89d2-23a2cb396c87 Approved by: ports-secteam (implicit) Modified: branches/2017Q3/graphics/poppler-glib/pkg-plist branches/2017Q3/graphics/poppler-qt5/pkg-plist branches/2017Q3/graphics/poppler/Makefile branches/2017Q3/graphics/poppler/distinfo branches/2017Q3/graphics/poppler/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/graphics/poppler-glib/pkg-plist ============================================================================== --- branches/2017Q3/graphics/poppler-glib/pkg-plist Thu Aug 24 01:02:59 2017 (r448642) +++ branches/2017Q3/graphics/poppler-glib/pkg-plist Thu Aug 24 01:04:44 2017 (r448643) @@ -15,6 +15,6 @@ include/poppler/glib/poppler.h lib/girepository-1.0/Poppler-0.18.typelib lib/libpoppler-glib.so lib/libpoppler-glib.so.8 -lib/libpoppler-glib.so.8.8.0 +lib/libpoppler-glib.so.8.9.0 libdata/pkgconfig/poppler-glib.pc share/gir-1.0/Poppler-0.18.gir Modified: branches/2017Q3/graphics/poppler-qt5/pkg-plist ============================================================================== --- branches/2017Q3/graphics/poppler-qt5/pkg-plist Thu Aug 24 01:02:59 2017 (r448642) +++ branches/2017Q3/graphics/poppler-qt5/pkg-plist Thu Aug 24 01:04:44 2017 (r448643) @@ -9,5 +9,5 @@ include/poppler/qt5/poppler-page-transition.h include/poppler/qt5/poppler-qt5.h lib/libpoppler-qt5.so lib/libpoppler-qt5.so.1 -lib/libpoppler-qt5.so.1.8.0 +lib/libpoppler-qt5.so.1.10.0 libdata/pkgconfig/poppler-qt5.pc Modified: branches/2017Q3/graphics/poppler/Makefile ============================================================================== --- branches/2017Q3/graphics/poppler/Makefile Thu Aug 24 01:02:59 2017 (r448642) +++ branches/2017Q3/graphics/poppler/Makefile Thu Aug 24 01:04:44 2017 (r448643) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= poppler -PORTVERSION= 0.50.0 +PORTVERSION= 0.57.0 CATEGORIES= graphics print MASTER_SITES= http://poppler.freedesktop.org/ Modified: branches/2017Q3/graphics/poppler/distinfo ============================================================================== --- branches/2017Q3/graphics/poppler/distinfo Thu Aug 24 01:02:59 2017 (r448642) +++ branches/2017Q3/graphics/poppler/distinfo Thu Aug 24 01:04:44 2017 (r448643) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481980606 -SHA256 (poppler-0.50.0.tar.xz) = c9c93318b789d3933f6e0bad3bc65110280c28eac3f0666284bb9c9a0ab4bc36 -SIZE (poppler-0.50.0.tar.xz) = 1689260 +TIMESTAMP = 1503426409 +SHA256 (poppler-0.57.0.tar.xz) = 0ea37de71b7db78212ebc79df59f99b66409a29c2eac4d882dae9f2397fe44d8 +SIZE (poppler-0.57.0.tar.xz) = 1703300 Modified: branches/2017Q3/graphics/poppler/pkg-plist ============================================================================== --- branches/2017Q3/graphics/poppler/pkg-plist Thu Aug 24 01:02:59 2017 (r448642) +++ branches/2017Q3/graphics/poppler/pkg-plist Thu Aug 24 01:04:44 2017 (r448643) @@ -138,8 +138,8 @@ lib/libpoppler-cpp.so lib/libpoppler-cpp.so.0 lib/libpoppler-cpp.so.0.3.0 lib/libpoppler.so -lib/libpoppler.so.66 -lib/libpoppler.so.66.0.0 +lib/libpoppler.so.68 +lib/libpoppler.so.68.0.0 %%CAIRO%%libdata/pkgconfig/poppler-cairo.pc libdata/pkgconfig/poppler-cpp.pc libdata/pkgconfig/poppler-splash.pc From owner-svn-ports-branches@freebsd.org Thu Aug 24 04:11:02 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C74CADD5060; Thu, 24 Aug 2017 04:11:02 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 931BF6918C; Thu, 24 Aug 2017 04:11:02 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7O4B1RP065618; Thu, 24 Aug 2017 04:11:01 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7O4B1kl065616; Thu, 24 Aug 2017 04:11:01 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201708240411.v7O4B1kl065616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Thu, 24 Aug 2017 04:11:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448646 - branches/2017Q3/www/dokuwiki X-SVN-Group: ports-branches X-SVN-Commit-Author: delphij X-SVN-Commit-Paths: branches/2017Q3/www/dokuwiki X-SVN-Commit-Revision: 448646 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2017 04:11:02 -0000 Author: delphij Date: Thu Aug 24 04:11:01 2017 New Revision: 448646 URL: https://svnweb.freebsd.org/changeset/ports/448646 Log: MFH: r448645 Security update to 2017-02-19e. Approved by: ports-secteam Modified: branches/2017Q3/www/dokuwiki/Makefile branches/2017Q3/www/dokuwiki/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/dokuwiki/Makefile ============================================================================== --- branches/2017Q3/www/dokuwiki/Makefile Thu Aug 24 04:10:18 2017 (r448645) +++ branches/2017Q3/www/dokuwiki/Makefile Thu Aug 24 04:11:01 2017 (r448646) @@ -12,7 +12,7 @@ COMMENT= Simple and easy to use wiki, no database requ LICENSE= GPLv2 -DIST_VER= ${PORTNAME}-2017-02-19c +DIST_VER= ${PORTNAME}-2017-02-19e USE_PHP= gd mbstring openssl pcre session xml zlib NO_ARCH= YES NO_BUILD= YES Modified: branches/2017Q3/www/dokuwiki/distinfo ============================================================================== --- branches/2017Q3/www/dokuwiki/distinfo Thu Aug 24 04:10:18 2017 (r448645) +++ branches/2017Q3/www/dokuwiki/distinfo Thu Aug 24 04:11:01 2017 (r448646) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502941963 -SHA256 (dokuwiki-2017-02-19c.tgz) = 5a51973020384d0dab3f2d22b4a1764cf7571c834ff32aed12c8af5c74fbc40f -SIZE (dokuwiki-2017-02-19c.tgz) = 3505474 +TIMESTAMP = 1503522933 +SHA256 (dokuwiki-2017-02-19e.tgz) = 93172a28ab88107a8abac1e6a34fa6cef54b6e407cd03a8cc14d2a604a63e888 +SIZE (dokuwiki-2017-02-19e.tgz) = 3505643 From owner-svn-ports-branches@freebsd.org Thu Aug 24 08:17:24 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 90C2EDD93F8; Thu, 24 Aug 2017 08:17:24 +0000 (UTC) (envelope-from freebsd@toco-domains.de) Received: from toco-domains.de (mail.toco-domains.de [176.9.39.170]) (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 564BA6ED5F; Thu, 24 Aug 2017 08:17:23 +0000 (UTC) (envelope-from freebsd@toco-domains.de) Received: from [0.0.0.0] (mail.toco-domains.de [IPv6:2a01:4f8:150:50a5::6]) by toco-domains.de (Postfix) with ESMTPA id 1F70B1AAF068; Thu, 24 Aug 2017 10:17:21 +0200 (CEST) Subject: Re: svn commit: r448270 - branches/2017Q3/devel/git To: Mark Felder , Boris Samorodov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org, Jan Beich References: <201708182012.v7IKCDAU008546@repo.freebsd.org> <3c210e9f-145e-a434-6fb3-eb4bf8814c06@passap.ru> <1503090809.2638339.1078004064.204EA724@webmail.messagingengine.com> <1bac87e2-8340-5c6b-cfc0-4d10996f10ab@toco-domains.de> <1503322271.1836201.1080028056.0852AC68@webmail.messagingengine.com> From: Torsten Zuehlsdorff Message-ID: <3d7ceb58-20da-8114-e267-97970061a5e5@toco-domains.de> Date: Thu, 24 Aug 2017 10:17:12 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <1503322271.1836201.1080028056.0852AC68@webmail.messagingengine.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2017 08:17:24 -0000 Aloha, >>>> 18.08.2017 23:12, Mark Felder пишет: >>>>> -DISTVERSION= 2.14.1 >>>>> +DISTVERSION= 2.13.2 >>>> >>>> PORTEPOCH bump? >>>> >>>> >>> >>> Unfortunately you can't do a PORTEPOCH bump in a quarterly branch unless >>> you do it in HEAD as well or it will break upgrades in the future. >>> >>> This was intentionally reverted without a PORTREVISION bump due to the >>> following factors: >>> >>> 1) The 2.14.x update to git breaks devel/git-cinnabar as reported by >>> jbeich@. It should not have been merged to quarterly but there was a >>> miscommunication. >>> 2) Quarterly branches are 99% of the time (fake but plausible statistic >>> I made up) consumed as packages only >>> 3) This package has not yet hit our mirrors. Last package set build was >>> on 448018 >>> >>> I expect nobody to notice. [..] >> >> At least www/gitlab is now broken again - the first think i noticed >> today. ;) >> >> Since gitlab is broken (and the least working version has security >> issues): is there any plan to fix git in quarterly? >> >> Greetings, >> Torsten >> > > Can you provide more details? devel/git in 2017Q3 is intentionally at > 2.13.5 to prevent breakage with devel/git-cinnabar. If you mean to tell > me that the only patched/secured versions of www/gitlab work with > devel/git 2.14 we have a problem... Thats right, but gitlab has a DEPENDS to git 2.14. As far as i read the log/code correct it should work with 2.13.5. But therefore the DEPENDS need a change. Greetings, Torsten From owner-svn-ports-branches@freebsd.org Thu Aug 24 18:22:56 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8193DDE5846; Thu, 24 Aug 2017 18:22:56 +0000 (UTC) (envelope-from swills@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 444971FD3; Thu, 24 Aug 2017 18:22:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7OIMtLc020428; Thu, 24 Aug 2017 18:22:55 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7OIMorF020373; Thu, 24 Aug 2017 18:22:50 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201708241822.v7OIMorF020373@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 24 Aug 2017 18:22:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448701 - in branches/2017Q3: converters/pdf2djvu databases/kbibtex deskutils/calibre deskutils/xfce4-tumbler devel/efl devel/kf5-kfilemetadata editors/calligra editors/libreoffice edit... X-SVN-Group: ports-branches X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in branches/2017Q3: converters/pdf2djvu databases/kbibtex deskutils/calibre deskutils/xfce4-tumbler devel/efl devel/kf5-kfilemetadata editors/calligra editors/libreoffice editors/openoffice-devel edit... X-SVN-Commit-Revision: 448701 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Aug 2017 18:22:56 -0000 Author: swills Date: Thu Aug 24 18:22:49 2017 New Revision: 448701 URL: https://svnweb.freebsd.org/changeset/ports/448701 Log: Bump PORTREVISION after recent poppler update Modified: branches/2017Q3/converters/pdf2djvu/Makefile branches/2017Q3/databases/kbibtex/Makefile branches/2017Q3/deskutils/calibre/Makefile branches/2017Q3/deskutils/xfce4-tumbler/Makefile branches/2017Q3/devel/efl/Makefile branches/2017Q3/devel/kf5-kfilemetadata/Makefile branches/2017Q3/editors/calligra/Makefile branches/2017Q3/editors/libreoffice/Makefile branches/2017Q3/editors/openoffice-devel/Makefile branches/2017Q3/editors/texmaker/Makefile branches/2017Q3/editors/texstudio/Makefile branches/2017Q3/editors/texworks/Makefile branches/2017Q3/graphics/apvlv/Makefile branches/2017Q3/graphics/atril-lite/Makefile branches/2017Q3/graphics/atril/Makefile branches/2017Q3/graphics/diffpdf/Makefile branches/2017Q3/graphics/dspdfviewer/Makefile branches/2017Q3/graphics/electrix/Makefile branches/2017Q3/graphics/epdfview/Makefile branches/2017Q3/graphics/evince-lite/Makefile branches/2017Q3/graphics/evince/Makefile branches/2017Q3/graphics/gimp-app/Makefile branches/2017Q3/graphics/inkscape/Makefile branches/2017Q3/graphics/krita/Makefile branches/2017Q3/graphics/okular/Makefile branches/2017Q3/graphics/pdf2svg/Makefile branches/2017Q3/graphics/pdfpc/Makefile branches/2017Q3/graphics/py-poppler-qt4/Makefile branches/2017Q3/graphics/py-poppler/Makefile branches/2017Q3/graphics/qcomicbook/Makefile branches/2017Q3/graphics/vips/Makefile branches/2017Q3/graphics/xournal/Makefile branches/2017Q3/graphics/zathura-pdf-poppler/Makefile branches/2017Q3/mail/claws-mail-pdf_viewer/Makefile branches/2017Q3/misc/auto-multiple-choice/Makefile branches/2017Q3/misc/tellico-kde4/Makefile branches/2017Q3/print/cups-filters/Makefile branches/2017Q3/print/deforaos-pdfviewer/Makefile branches/2017Q3/print/pdfcube/Makefile branches/2017Q3/print/qpdfview/Makefile branches/2017Q3/print/tex-luatex/Makefile branches/2017Q3/print/tex-xetex/Makefile branches/2017Q3/print/texlive-base/Makefile branches/2017Q3/sysutils/kfilemetadata/Makefile branches/2017Q3/sysutils/nepomuk-core/Makefile branches/2017Q3/sysutils/pcbsd-utils-qt5/Makefile branches/2017Q3/sysutils/tracker/Makefile branches/2017Q3/textproc/pdfgrep/Makefile branches/2017Q3/x11-fm/gnome-commander2/Makefile branches/2017Q3/x11-toolkits/rubygem-poppler/Makefile branches/2017Q3/x11/eaglemode/Makefile branches/2017Q3/x11/leechcraft/Makefile Modified: branches/2017Q3/converters/pdf2djvu/Makefile ============================================================================== --- branches/2017Q3/converters/pdf2djvu/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/converters/pdf2djvu/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= pdf2djvu PORTVERSION= 0.7.21 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= converters MASTER_SITES= https://bitbucket.org/jwilk/pdf2djvu/downloads/ Modified: branches/2017Q3/databases/kbibtex/Makefile ============================================================================== --- branches/2017Q3/databases/kbibtex/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/databases/kbibtex/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= kbibtex DISTVERSION= 0.6.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases kde MASTER_SITES= http://download.gna.org/${PORTNAME}/${PORTVERSION:R}/ Modified: branches/2017Q3/deskutils/calibre/Makefile ============================================================================== --- branches/2017Q3/deskutils/calibre/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/deskutils/calibre/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,6 +3,7 @@ PORTNAME= calibre PORTVERSION= 3.2.1 +PORTREVISION= 1 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ Modified: branches/2017Q3/deskutils/xfce4-tumbler/Makefile ============================================================================== --- branches/2017Q3/deskutils/xfce4-tumbler/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/deskutils/xfce4-tumbler/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= tumbler PORTVERSION= 0.1.31 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= deskutils xfce MASTER_SITES= XFCE PKGNAMEPREFIX= xfce4- Modified: branches/2017Q3/devel/efl/Makefile ============================================================================== --- branches/2017Q3/devel/efl/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/devel/efl/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= efl PORTVERSION= 1.18.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel enlightenment MASTER_SITES= http://download.enlightenment.org/rel/libs/${PORTNAME}/ DIST_SUBDIR= enlightenment Modified: branches/2017Q3/devel/kf5-kfilemetadata/Makefile ============================================================================== --- branches/2017Q3/devel/kf5-kfilemetadata/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/devel/kf5-kfilemetadata/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,6 +3,7 @@ PORTNAME= kfilemetadata PORTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org Modified: branches/2017Q3/editors/calligra/Makefile ============================================================================== --- branches/2017Q3/editors/calligra/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/editors/calligra/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -6,6 +6,7 @@ # PORTNAME= calligra PORTVERSION= 3.0.1 +PORTREVISION= 1 CATEGORIES= editors kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} DIST_SUBDIR= KDE/${PORTNAME} Modified: branches/2017Q3/editors/libreoffice/Makefile ============================================================================== --- branches/2017Q3/editors/libreoffice/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/editors/libreoffice/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ .include "${.CURDIR}/Makefile.common" -PORTREVISION= 0 +PORTREVISION= 1 MASTER_SITES= http://download.documentfoundation.org/libreoffice/src/${PORTVERSION}/ \ http://dev-www.libreoffice.org/src/:src \ http://dev-www.libreoffice.org/extern/:ext Modified: branches/2017Q3/editors/openoffice-devel/Makefile ============================================================================== --- branches/2017Q3/editors/openoffice-devel/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/editors/openoffice-devel/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= apache-openoffice PORTVERSION= ${AOOVERSION1}.${AOOVERSION2}.${SVNREVISION} -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 4 CATEGORIES= editors java MASTER_SITES= https://dist.apache.org/repos/dist/dev/openoffice/${AOOVERSION}-${AOORC}-r${SVNREVISION}/source/ \ Modified: branches/2017Q3/editors/texmaker/Makefile ============================================================================== --- branches/2017Q3/editors/texmaker/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/editors/texmaker/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= texmaker PORTVERSION= 4.5 -PORTREVISION= 9 +PORTREVISION= 10 PORTEPOCH= 3 CATEGORIES= editors MASTER_SITES= http://www.xm1math.net/texmaker/ Modified: branches/2017Q3/editors/texstudio/Makefile ============================================================================== --- branches/2017Q3/editors/texstudio/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/editors/texstudio/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ PORTNAME= texstudio PORTVERSION= 2.11.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= editors MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/TeXstudio%20${PORTVERSION} Modified: branches/2017Q3/editors/texworks/Makefile ============================================================================== --- branches/2017Q3/editors/texworks/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/editors/texworks/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -4,7 +4,7 @@ PORTNAME= texworks PORTVERSION= 0.4.6 DISTVERSIONPREFIX= release- -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= editors MAINTAINER= hrs@FreeBSD.org Modified: branches/2017Q3/graphics/apvlv/Makefile ============================================================================== --- branches/2017Q3/graphics/apvlv/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/apvlv/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= apvlv PORTVERSION= 0.1.4 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= graphics MASTER_SITES= GHC DISTNAME= ${PORTNAME}-${PORTVERSION}-Source Modified: branches/2017Q3/graphics/atril-lite/Makefile ============================================================================== --- branches/2017Q3/graphics/atril-lite/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/atril-lite/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -1,7 +1,7 @@ # Created by: Adam Weinberger # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 PKGNAMESUFFIX= -lite COMMENT= MATE multi-format document viewer Modified: branches/2017Q3/graphics/atril/Makefile ============================================================================== --- branches/2017Q3/graphics/atril/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/atril/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= atril PORTVERSION= 1.12.2 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= graphics print mate MASTER_SITES= MATE DIST_SUBDIR= mate Modified: branches/2017Q3/graphics/diffpdf/Makefile ============================================================================== --- branches/2017Q3/graphics/diffpdf/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/diffpdf/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,6 +2,7 @@ PORTNAME= diffpdf PORTVERSION= 2.1.3 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://www.qtrac.eu/ Modified: branches/2017Q3/graphics/dspdfviewer/Makefile ============================================================================== --- branches/2017Q3/graphics/dspdfviewer/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/dspdfviewer/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= dspdfviewer PORTVERSION= 1.15.1 DISTVERSIONPREFIX=v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MAINTAINER= santhosh.raju@gmail.com Modified: branches/2017Q3/graphics/electrix/Makefile ============================================================================== --- branches/2017Q3/graphics/electrix/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/electrix/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ PORTNAME= electrix PORTVERSION= 0.2.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= graphics print MASTER_SITES= SF/${PORTNAME:tl}/${PORTVERSION} Modified: branches/2017Q3/graphics/epdfview/Makefile ============================================================================== --- branches/2017Q3/graphics/epdfview/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/epdfview/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= epdfview PORTVERSION= 0.1.8 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= graphics print gnome MASTER_SITES= FRUGALWARE/xapps-extra/${PORTNAME} \ ftp://ftp.slackware.com/.1/blfs/conglomeration/${PORTNAME}/ \ Modified: branches/2017Q3/graphics/evince-lite/Makefile ============================================================================== --- branches/2017Q3/graphics/evince-lite/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/evince-lite/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -1,7 +1,7 @@ # Created by: Adam Weinberger # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 PKGNAMESUFFIX= -lite COMMENT= GNOME 3 multi-format document viewer without the GNOME dependancies Modified: branches/2017Q3/graphics/evince/Makefile ============================================================================== --- branches/2017Q3/graphics/evince/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/evince/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= evince PORTVERSION= 3.18.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics print gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Modified: branches/2017Q3/graphics/gimp-app/Makefile ============================================================================== --- branches/2017Q3/graphics/gimp-app/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/gimp-app/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,6 +3,7 @@ PORTNAME?= gimp-app PORTVERSION= 2.8.22 +PORTREVISION= 1 PORTEPOCH?= 1 CATEGORIES?= graphics gnome MASTER_SITES= GIMP/gimp/v${PORTVERSION:R} Modified: branches/2017Q3/graphics/inkscape/Makefile ============================================================================== --- branches/2017Q3/graphics/inkscape/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/inkscape/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= inkscape PORTVERSION= 0.92.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics gnome MASTER_SITES= https://launchpadlibrarian.net/306309537/ \ LOCAL/kwm Modified: branches/2017Q3/graphics/krita/Makefile ============================================================================== --- branches/2017Q3/graphics/krita/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/krita/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,6 +2,7 @@ PORTNAME= krita PORTVERSION= 3.1.2.1 +PORTREVISION= 1 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/3.1.2 DIST_SUBDIR= KDE/${PORTNAME} Modified: branches/2017Q3/graphics/okular/Makefile ============================================================================== --- branches/2017Q3/graphics/okular/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/okular/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ PORTNAME= okular PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: branches/2017Q3/graphics/pdf2svg/Makefile ============================================================================== --- branches/2017Q3/graphics/pdf2svg/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/pdf2svg/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= pdf2svg PORTVERSION= 0.2.3 -PORTREVISION= 4 +PORTREVISION= 5 DISTVERSIONPREFIX= v CATEGORIES= graphics Modified: branches/2017Q3/graphics/pdfpc/Makefile ============================================================================== --- branches/2017Q3/graphics/pdfpc/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/pdfpc/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,6 +2,7 @@ PORTNAME= pdfpc PORTVERSION= 4.0.7 +PORTREVISION= 1 CATEGORIES= graphics DISTVERSIONPREFIX= v Modified: branches/2017Q3/graphics/py-poppler-qt4/Makefile ============================================================================== --- branches/2017Q3/graphics/py-poppler-qt4/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/py-poppler-qt4/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ PORTNAME= poppler-qt4 PORTVERSION= 0.18.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: branches/2017Q3/graphics/py-poppler/Makefile ============================================================================== --- branches/2017Q3/graphics/py-poppler/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/py-poppler/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= poppler PORTVERSION= 0.12.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics python MASTER_SITES= https://launchpad.net/poppler-python/trunk/development/+download/ \ http://launchpadlibrarian.net/30270080/ \ Modified: branches/2017Q3/graphics/qcomicbook/Makefile ============================================================================== --- branches/2017Q3/graphics/qcomicbook/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/qcomicbook/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= qcomicbook PORTVERSION= 0.9.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics MASTER_SITES= http://qcomicbook.org/releases/ Modified: branches/2017Q3/graphics/vips/Makefile ============================================================================== --- branches/2017Q3/graphics/vips/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/vips/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= vips PORTVERSION= 8.4.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= http://www.vips.ecs.soton.ac.uk/supported/${PORTVERSION:R}/ Modified: branches/2017Q3/graphics/xournal/Makefile ============================================================================== --- branches/2017Q3/graphics/xournal/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/xournal/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= xournal PORTVERSION= 0.4.8 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics MASTER_SITES= SF Modified: branches/2017Q3/graphics/zathura-pdf-poppler/Makefile ============================================================================== --- branches/2017Q3/graphics/zathura-pdf-poppler/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/graphics/zathura-pdf-poppler/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= zathura-pdf-poppler PORTVERSION= 0.2.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= https://pwmt.org/projects/zathura/plugins/download/ \ http://www.madpilot.net/~mad/pwmt.org/ Modified: branches/2017Q3/mail/claws-mail-pdf_viewer/Makefile ============================================================================== --- branches/2017Q3/mail/claws-mail-pdf_viewer/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/mail/claws-mail-pdf_viewer/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pdf_viewer -PORTREVISION= 0 +PORTREVISION= 1 COMMENT= PDF and PostScript viewer plugin for Claws Mail Modified: branches/2017Q3/misc/auto-multiple-choice/Makefile ============================================================================== --- branches/2017Q3/misc/auto-multiple-choice/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/misc/auto-multiple-choice/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ PORTNAME= auto-multiple-choice PORTVERSION= 1.3.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= misc MASTER_SITES= http://download.gna.org/auto-qcm/ DISTNAME= auto-multiple-choice_${PORTVERSION}_precomp Modified: branches/2017Q3/misc/tellico-kde4/Makefile ============================================================================== --- branches/2017Q3/misc/tellico-kde4/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/misc/tellico-kde4/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= tellico PORTVERSION= 2.3.12 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= misc kde MASTER_SITES= http://tellico-project.org/files/ Modified: branches/2017Q3/print/cups-filters/Makefile ============================================================================== --- branches/2017Q3/print/cups-filters/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/print/cups-filters/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,6 +2,7 @@ PORTNAME= cups-filters PORTVERSION= 1.13.5 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= http://www.openprinting.org/download/cups-filters/ Modified: branches/2017Q3/print/deforaos-pdfviewer/Makefile ============================================================================== --- branches/2017Q3/print/deforaos-pdfviewer/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/print/deforaos-pdfviewer/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,6 +3,7 @@ PORTNAME= pdfviewer PORTVERSION= 0.0.2 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= http://www.defora.org/os/download/download/4431/ PKGNAMEPREFIX= deforaos- Modified: branches/2017Q3/print/pdfcube/Makefile ============================================================================== --- branches/2017Q3/print/pdfcube/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/print/pdfcube/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= pdfcube PORTVERSION= 0.0.5 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= print MASTER_SITES= http://code.100allora.it/releases/pdfcube/ Modified: branches/2017Q3/print/qpdfview/Makefile ============================================================================== --- branches/2017Q3/print/qpdfview/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/print/qpdfview/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= qpdfview PORTVERSION= 0.4.16 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= print MASTER_SITES= https://launchpadlibrarian.net/226592308/ \ https://launchpad.net/${PORTVERSION}/trunk/${PORTVERSION}/+download/ Modified: branches/2017Q3/print/tex-luatex/Makefile ============================================================================== --- branches/2017Q3/print/tex-luatex/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/print/tex-luatex/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ PORTNAME= luatex PORTVERSION= 0.80.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= print MASTER_SITES= ftp://tug.org/historic/systems/texlive/2015/ PKGNAMEPREFIX= tex- Modified: branches/2017Q3/print/tex-xetex/Makefile ============================================================================== --- branches/2017Q3/print/tex-xetex/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/print/tex-xetex/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ PORTNAME= xetex PORTVERSION= 0.99992 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= print MASTER_SITES= ftp://tug.org/historic/systems/texlive/2015/ PKGNAMEPREFIX= tex- Modified: branches/2017Q3/print/texlive-base/Makefile ============================================================================== --- branches/2017Q3/print/texlive-base/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/print/texlive-base/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ PORTNAME= texlive PORTVERSION= 20150521 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= print MASTER_SITES= TEX_CTAN/systems/texlive/Source/ PKGNAMESUFFIX= -base Modified: branches/2017Q3/sysutils/kfilemetadata/Makefile ============================================================================== --- branches/2017Q3/sysutils/kfilemetadata/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/sysutils/kfilemetadata/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,7 +2,7 @@ PORTNAME= kfilemetadata PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= sysutils kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: branches/2017Q3/sysutils/nepomuk-core/Makefile ============================================================================== --- branches/2017Q3/sysutils/nepomuk-core/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/sysutils/nepomuk-core/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= nepomuk-core PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= sysutils kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: branches/2017Q3/sysutils/pcbsd-utils-qt5/Makefile ============================================================================== --- branches/2017Q3/sysutils/pcbsd-utils-qt5/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/sysutils/pcbsd-utils-qt5/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= pcbsd-utils-qt5 PORTVERSION= 1444236547 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= sysutils MAINTAINER= kmoore@FreeBSD.org Modified: branches/2017Q3/sysutils/tracker/Makefile ============================================================================== --- branches/2017Q3/sysutils/tracker/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/sysutils/tracker/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= tracker PORTVERSION= 1.6.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= sysutils gnome MASTER_SITES= GNOME Modified: branches/2017Q3/textproc/pdfgrep/Makefile ============================================================================== --- branches/2017Q3/textproc/pdfgrep/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/textproc/pdfgrep/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= pdfgrep PORTVERSION= 1.4.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc MASTER_SITES= https://pdfgrep.org/download/ Modified: branches/2017Q3/x11-fm/gnome-commander2/Makefile ============================================================================== --- branches/2017Q3/x11-fm/gnome-commander2/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/x11-fm/gnome-commander2/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= gnome-commander PORTVERSION= 1.6.3 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= x11-fm gnome MASTER_SITES= GNOME/sources/gnome-commander/${PORTVERSION:R} Modified: branches/2017Q3/x11-toolkits/rubygem-poppler/Makefile ============================================================================== --- branches/2017Q3/x11-toolkits/rubygem-poppler/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/x11-toolkits/rubygem-poppler/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -2,6 +2,7 @@ PORTNAME= poppler PORTVERSION= 3.1.4 +PORTREVISION= 1 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG Modified: branches/2017Q3/x11/eaglemode/Makefile ============================================================================== --- branches/2017Q3/x11/eaglemode/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/x11/eaglemode/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,6 +3,7 @@ PORTNAME= eaglemode PORTVERSION= 0.93.0 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} Modified: branches/2017Q3/x11/leechcraft/Makefile ============================================================================== --- branches/2017Q3/x11/leechcraft/Makefile Thu Aug 24 18:20:58 2017 (r448700) +++ branches/2017Q3/x11/leechcraft/Makefile Thu Aug 24 18:22:49 2017 (r448701) @@ -3,7 +3,7 @@ PORTNAME= leechcraft PORTVERSION= 0.6.70 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= x11 MASTER_SITES= http://dist.leechcraft.org/LeechCraft/0.6.70/ From owner-svn-ports-branches@freebsd.org Sat Aug 26 05:00:30 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F751DEE657; Sat, 26 Aug 2017 05:00:30 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B37184510; Sat, 26 Aug 2017 05:00:30 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7Q50TZq069015; Sat, 26 Aug 2017 05:00:29 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7Q50SbZ069010; Sat, 26 Aug 2017 05:00:28 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201708260500.v7Q50SbZ069010@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Sat, 26 Aug 2017 05:00:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448750 - in branches/2017Q3/devel: p5-subversion subversion subversion/files X-SVN-Group: ports-branches X-SVN-Commit-Author: delphij X-SVN-Commit-Paths: in branches/2017Q3/devel: p5-subversion subversion subversion/files X-SVN-Commit-Revision: 448750 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2017 05:00:30 -0000 Author: delphij Date: Sat Aug 26 05:00:28 2017 New Revision: 448750 URL: https://svnweb.freebsd.org/changeset/ports/448750 Log: MFH: r445440 r447762 Update to latest version 1.9.7 Security: http://subversion.apache.org/security/CVE-2017-9800-advisory.txt Approved by: ports-secteam Modified: branches/2017Q3/devel/p5-subversion/Makefile branches/2017Q3/devel/subversion/Makefile branches/2017Q3/devel/subversion/Makefile.common branches/2017Q3/devel/subversion/distinfo branches/2017Q3/devel/subversion/files/build-outputs.mk.addons Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/p5-subversion/Makefile ============================================================================== --- branches/2017Q3/devel/p5-subversion/Makefile Sat Aug 26 03:50:33 2017 (r448749) +++ branches/2017Q3/devel/p5-subversion/Makefile Sat Aug 26 05:00:28 2017 (r448750) @@ -2,7 +2,7 @@ # $FreeBSD$ PKGNAMEPREFIX= p5- -PORTREVISION= 2 +PORTREVISION= 0 MAINTAINER= lev@FreeBSD.org COMMENT= Perl bindings for Version control system Modified: branches/2017Q3/devel/subversion/Makefile ============================================================================== --- branches/2017Q3/devel/subversion/Makefile Sat Aug 26 03:50:33 2017 (r448749) +++ branches/2017Q3/devel/subversion/Makefile Sat Aug 26 05:00:28 2017 (r448750) @@ -41,6 +41,11 @@ TOOLS_DESC= Install several tools FREEBSD_TEMPLATE_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-fbsd-template SVNSERVE_WRAPPER_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-svnserve-wrapper +USES+= shebangfix +python_CMD= ${LOCALBASE}/bin/python2 +python_OLD_CMD+= "/bin/env python" +SHEBANG_REGEX= ./tools/.* + .include "Makefile.common" SVNREPOS?= /home/svn/repos Modified: branches/2017Q3/devel/subversion/Makefile.common ============================================================================== --- branches/2017Q3/devel/subversion/Makefile.common Sat Aug 26 03:50:33 2017 (r448749) +++ branches/2017Q3/devel/subversion/Makefile.common Sat Aug 26 05:00:28 2017 (r448750) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= subversion -PORTVERSION= 1.9.5 +PORTVERSION= 1.9.7 PORTREVISION?= 0 CATEGORIES+= devel MASTER_SITES= APACHE/subversion Modified: branches/2017Q3/devel/subversion/distinfo ============================================================================== --- branches/2017Q3/devel/subversion/distinfo Sat Aug 26 03:50:33 2017 (r448749) +++ branches/2017Q3/devel/subversion/distinfo Sat Aug 26 05:00:28 2017 (r448750) @@ -1,3 +1,3 @@ -TIMESTAMP = 1480509767 -SHA256 (subversion19/subversion-1.9.5.tar.bz2) = 8a4fc68aff1d18dcb4dd9e460648d24d9e98657fbed496c582929c6b3ce555e5 -SIZE (subversion19/subversion-1.9.5.tar.bz2) = 7904861 +TIMESTAMP = 1502460058 +SHA256 (subversion19/subversion-1.9.7.tar.bz2) = c3b118333ce12e501d509e66bb0a47bcc34d053990acab45559431ac3e491623 +SIZE (subversion19/subversion-1.9.7.tar.bz2) = 7881909 Modified: branches/2017Q3/devel/subversion/files/build-outputs.mk.addons ============================================================================== --- branches/2017Q3/devel/subversion/files/build-outputs.mk.addons Sat Aug 26 03:50:33 2017 (r448749) +++ branches/2017Q3/devel/subversion/files/build-outputs.mk.addons Sat Aug 26 05:00:28 2017 (r448750) @@ -3351,7 +3351,7 @@ subversion/tests/libsvn_diff/diff-diff3-test.lo: subve subversion/tests/libsvn_diff/parse-diff-test.lo: subversion/tests/libsvn_diff/parse-diff-test.c subversion/include/private/svn_debug.h subversion/include/svn_auth.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/tests/svn_test.h -subversion/tests/libsvn_fs/fs-test.lo: subversion/tests/libsvn_fs/fs-test.c subversion/include/private/svn_debug.h subversion/include/private/svn_editor.h subversion/include/private/svn_fs_private.h subversion/include/private/svn_fs_util.h subversion/include/private/svn_fspath.h subversion/include/private/svn_mutex.h subversion/include/svn_auth.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/delta.h subversion/libsvn_fs/fs-loader.h subversion/s vn_private_config.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h +subversion/tests/libsvn_fs/fs-test.lo: subversion/tests/libsvn_fs/fs-test.c subversion/include/private/svn_debug.h subversion/include/private/svn_editor.h subversion/include/private/svn_fs_private.h subversion/include/private/svn_fs_util.h subversion/include/private/svn_fspath.h subversion/include/private/svn_mutex.h subversion/include/private/svn_sqlite.h subversion/include/private/svn_token.h subversion/include/svn_auth.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version. h subversion/libsvn_delta/delta.h subversion/libsvn_fs/fs-loader.h subversion/svn_private_config.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h subversion/tests/libsvn_fs/locks-test.lo: subversion/tests/libsvn_fs/locks-test.c subversion/include/private/svn_debug.h subversion/include/svn_auth.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h @@ -3363,7 +3363,7 @@ subversion/tests/libsvn_fs_base/strings-reps-test.lo: subversion/tests/libsvn_fs_fs/fs-fs-fuzzy-test.lo: subversion/tests/libsvn_fs_fs/fs-fs-fuzzy-test.c subversion/include/private/svn_atomic.h subversion/include/private/svn_cache.h subversion/include/private/svn_debug.h subversion/include/private/svn_dep_compat.h subversion/include/private/svn_editor.h subversion/include/private/svn_fs_fs_private.h subversion/include/private/svn_fs_private.h subversion/include/private/svn_mutex.h subversion/include/private/svn_sqlite.h subversion/include/private/svn_string_private.h subversion/include/private/svn_token.h subversion/include/svn_auth.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_iter.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_poo ls.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/libsvn_fs_fs/fs.h subversion/libsvn_fs_fs/fs_fs.h subversion/libsvn_fs_fs/id.h subversion/libsvn_fs_fs/rev_file.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h -subversion/tests/libsvn_fs_fs/fs-fs-pack-test.lo: subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c subversion/include/private/svn_atomic.h subversion/include/private/svn_cache.h subversion/include/private/svn_debug.h subversion/include/private/svn_dep_compat.h subversion/include/private/svn_editor.h subversion/include/private/svn_fs_fs_private.h subversion/include/private/svn_fs_private.h subversion/include/private/svn_mutex.h subversion/include/private/svn_sqlite.h subversion/include/private/svn_string_private.h subversion/include/private/svn_token.h subversion/include/svn_auth.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_iter.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools .h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_fs/fs.h subversion/libsvn_fs_fs/fs_fs.h subversion/libsvn_fs_fs/id.h subversion/libsvn_fs_fs/low_level.h subversion/libsvn_fs_fs/util.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h +subversion/tests/libsvn_fs_fs/fs-fs-pack-test.lo: subversion/tests/libsvn_fs_fs/fs-fs-pack-test.c subversion/include/private/svn_atomic.h subversion/include/private/svn_cache.h subversion/include/private/svn_debug.h subversion/include/private/svn_dep_compat.h subversion/include/private/svn_editor.h subversion/include/private/svn_fs_fs_private.h subversion/include/private/svn_fs_private.h subversion/include/private/svn_mutex.h subversion/include/private/svn_sqlite.h subversion/include/private/svn_string_private.h subversion/include/private/svn_token.h subversion/include/svn_auth.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_iter.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools .h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_fs/fs.h subversion/libsvn_fs_fs/fs_fs.h subversion/libsvn_fs_fs/id.h subversion/libsvn_fs_fs/low_level.h subversion/libsvn_fs_fs/pack.h subversion/libsvn_fs_fs/util.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h subversion/tests/libsvn_fs_fs/fs-fs-private-test.lo: subversion/tests/libsvn_fs_fs/fs-fs-private-test.c subversion/include/private/svn_atomic.h subversion/include/private/svn_cache.h subversion/include/private/svn_debug.h subversion/include/private/svn_dep_compat.h subversion/include/private/svn_editor.h subversion/include/private/svn_fs_fs_private.h subversion/include/private/svn_fs_private.h subversion/include/private/svn_mutex.h subversion/include/private/svn_sqlite.h subversion/include/private/svn_string_private.h subversion/include/private/svn_subr_private.h subversion/include/private/svn_token.h subversion/include/svn_auth.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_iter.h subversion/include/svn_mergeinfo.h subver sion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/libsvn_fs_fs/fs.h subversion/libsvn_fs_fs/id.h subversion/libsvn_fs_fs/index.h subversion/libsvn_fs_fs/rev_file.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h From owner-svn-ports-branches@freebsd.org Sat Aug 26 08:44:16 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 134B0DF1439; Sat, 26 Aug 2017 08:44:16 +0000 (UTC) (envelope-from woodsb02@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 D3DED6387E; Sat, 26 Aug 2017 08:44:15 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7Q8iFef062072; Sat, 26 Aug 2017 08:44:15 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7Q8iEDX062068; Sat, 26 Aug 2017 08:44:14 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201708260844.v7Q8iEDX062068@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 26 Aug 2017 08:44:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448754 - branches/2017Q3/sysutils/py-salt X-SVN-Group: ports-branches X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: branches/2017Q3/sysutils/py-salt X-SVN-Commit-Revision: 448754 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2017 08:44:16 -0000 Author: woodsb02 Date: Sat Aug 26 08:44:14 2017 New Revision: 448754 URL: https://svnweb.freebsd.org/changeset/ports/448754 Log: sysutils/py-salt: Update to 2016.11.7 - Includes fix for security vulnerability CVE-2017-12791 - Use @sample for the master and minion config files. PR: 220869 PR: 217780 Approved by: ports-secteam (delphij) Security: CVE-2017-12791 Security: https://vuxml.freebsd.org/freebsd/3531141d-a708-477c-954a-2a0549e49ca9.html Modified: branches/2017Q3/sysutils/py-salt/Makefile branches/2017Q3/sysutils/py-salt/distinfo branches/2017Q3/sysutils/py-salt/pkg-plist Modified: branches/2017Q3/sysutils/py-salt/Makefile ============================================================================== --- branches/2017Q3/sysutils/py-salt/Makefile Sat Aug 26 07:51:59 2017 (r448753) +++ branches/2017Q3/sysutils/py-salt/Makefile Sat Aug 26 08:44:14 2017 (r448754) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= salt -PORTVERSION= 2016.11.5 +PORTVERSION= 2016.11.7 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: branches/2017Q3/sysutils/py-salt/distinfo ============================================================================== --- branches/2017Q3/sysutils/py-salt/distinfo Sat Aug 26 07:51:59 2017 (r448753) +++ branches/2017Q3/sysutils/py-salt/distinfo Sat Aug 26 08:44:14 2017 (r448754) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494685735 -SHA256 (salt-2016.11.5.tar.gz) = b81427a4a3e47a98726f948bdc16a5b6b366f93fdac0b2c817e8f87d9036f8be -SIZE (salt-2016.11.5.tar.gz) = 9246550 +TIMESTAMP = 1503735745 +SHA256 (salt-2016.11.7.tar.gz) = 279fa5bd73b5616620f628234575140f91df28b0d40d931569f179efabf27a2d +SIZE (salt-2016.11.7.tar.gz) = 9409315 Modified: branches/2017Q3/sysutils/py-salt/pkg-plist ============================================================================== --- branches/2017Q3/sysutils/py-salt/pkg-plist Sat Aug 26 07:51:59 2017 (r448753) +++ branches/2017Q3/sysutils/py-salt/pkg-plist Sat Aug 26 08:44:14 2017 (r448754) @@ -1,5 +1,5 @@ -%%ETCDIR%%/master.sample -%%ETCDIR%%/minion.sample +@sample %%ETCDIR%%/master.sample +@sample %%ETCDIR%%/minion.sample %%PYTHON_SITELIBDIR%%/salt/_syspaths.py %%PYTHON_SITELIBDIR%%/salt/_syspaths.pyc %%PYTHON_SITELIBDIR%%/salt/_syspaths.pyo From owner-svn-ports-branches@freebsd.org Sat Aug 26 09:02:45 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41443DF1B09; Sat, 26 Aug 2017 09:02:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0E38564046; Sat, 26 Aug 2017 09:02:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7Q92iOd070131; Sat, 26 Aug 2017 09:02:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7Q92ioO070129; Sat, 26 Aug 2017 09:02:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708260902.v7Q92ioO070129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 26 Aug 2017 09:02:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448755 - branches/2017Q3/dns/dnscap X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q3/dns/dnscap X-SVN-Commit-Revision: 448755 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2017 09:02:45 -0000 Author: sunpoet Date: Sat Aug 26 09:02:43 2017 New Revision: 448755 URL: https://svnweb.freebsd.org/changeset/ports/448755 Log: MFH: r448547 Update to 1.5.1 Changes: https://github.com/DNS-OARC/dnscap/releases Approved by: ports-secteam (delphij) Modified: branches/2017Q3/dns/dnscap/Makefile branches/2017Q3/dns/dnscap/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/dns/dnscap/Makefile ============================================================================== --- branches/2017Q3/dns/dnscap/Makefile Sat Aug 26 08:44:14 2017 (r448754) +++ branches/2017Q3/dns/dnscap/Makefile Sat Aug 26 09:02:43 2017 (r448755) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dnscap -PORTVERSION= 1.5.0 +PORTVERSION= 1.5.1 PORTEPOCH= 1 CATEGORIES= dns MASTER_SITES= https://www.dns-oarc.net/files/dnscap/ \ Modified: branches/2017Q3/dns/dnscap/distinfo ============================================================================== --- branches/2017Q3/dns/dnscap/distinfo Sat Aug 26 08:44:14 2017 (r448754) +++ branches/2017Q3/dns/dnscap/distinfo Sat Aug 26 09:02:43 2017 (r448755) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496922716 -SHA256 (dnscap-1.5.0.tar.gz) = 6dd3359a73b4f13846b045493262fabb88a1e4c49ffd2b66e43a2f3b623af651 -SIZE (dnscap-1.5.0.tar.gz) = 443719 +TIMESTAMP = 1503415908 +SHA256 (dnscap-1.5.1.tar.gz) = d218b707a0bbb158bbf88306e5d53b914394d971f4f9736032afde7b119e7da6 +SIZE (dnscap-1.5.1.tar.gz) = 468647 From owner-svn-ports-branches@freebsd.org Sat Aug 26 09:54:59 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7787ADF28EB; Sat, 26 Aug 2017 09:54:59 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42480656F5; Sat, 26 Aug 2017 09:54:59 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7Q9sw5M090655; Sat, 26 Aug 2017 09:54:58 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7Q9sw08090651; Sat, 26 Aug 2017 09:54:58 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201708260954.v7Q9sw08090651@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 26 Aug 2017 09:54:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448757 - in branches/2017Q3/www: firefox firefox-i18n X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q3/www: firefox firefox-i18n X-SVN-Commit-Revision: 448757 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2017 09:54:59 -0000 Author: jbeich Date: Sat Aug 26 09:54:58 2017 New Revision: 448757 URL: https://svnweb.freebsd.org/changeset/ports/448757 Log: MFH: r448707 www/firefox: update to 55.0.3 Changes: https://www.mozilla.org/firefox/55.0.3/releasenotes/ Approved by: ports-secteam (delphij) Modified: branches/2017Q3/www/firefox-i18n/Makefile branches/2017Q3/www/firefox-i18n/distinfo branches/2017Q3/www/firefox/Makefile branches/2017Q3/www/firefox/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/firefox-i18n/Makefile ============================================================================== --- branches/2017Q3/www/firefox-i18n/Makefile Sat Aug 26 09:40:15 2017 (r448756) +++ branches/2017Q3/www/firefox-i18n/Makefile Sat Aug 26 09:54:58 2017 (r448757) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 55.0.2 +PORTVERSION= 55.0.3 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build2/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: branches/2017Q3/www/firefox-i18n/distinfo ============================================================================== --- branches/2017Q3/www/firefox-i18n/distinfo Sat Aug 26 09:40:15 2017 (r448756) +++ branches/2017Q3/www/firefox-i18n/distinfo Sat Aug 26 09:54:58 2017 (r448757) @@ -1,191 +1,191 @@ -TIMESTAMP = 1502835004 -SHA256 (xpi/firefox-i18n-55.0.2/ach.xpi) = bfb4a7cdabd4de84f0fb9afd7088c63a5bf9fabcf029043ce29ca31e5445aa99 -SIZE (xpi/firefox-i18n-55.0.2/ach.xpi) = 447504 -SHA256 (xpi/firefox-i18n-55.0.2/af.xpi) = 9a184de60398afbb2ebc295bdeab3d380d279f10058e740f24a3698f58352ff9 -SIZE (xpi/firefox-i18n-55.0.2/af.xpi) = 448924 -SHA256 (xpi/firefox-i18n-55.0.2/an.xpi) = 0a2c0635cb5c93ee19f1349ee030deda1eb8424712139ea7dac907c6802163a5 -SIZE (xpi/firefox-i18n-55.0.2/an.xpi) = 468638 -SHA256 (xpi/firefox-i18n-55.0.2/ar.xpi) = 59fec790b299d60a79ff1c65f33badbc72ec35996415e556886c89c8eabf162f -SIZE (xpi/firefox-i18n-55.0.2/ar.xpi) = 492759 -SHA256 (xpi/firefox-i18n-55.0.2/as.xpi) = d86959041861745cf4ab092099a4589efc0e92c1e108fa4742a6df38d68bbf62 -SIZE (xpi/firefox-i18n-55.0.2/as.xpi) = 501507 -SHA256 (xpi/firefox-i18n-55.0.2/ast.xpi) = dd59a8c8f8b98da06f4d396e7fda15321b4997cd56b74a68ad92d99bc587c9cc -SIZE (xpi/firefox-i18n-55.0.2/ast.xpi) = 460841 -SHA256 (xpi/firefox-i18n-55.0.2/az.xpi) = afc69881d209ee9fbb6132ae6fa6aeb419d97ef59ff11947b49a1639b8ecd7d0 -SIZE (xpi/firefox-i18n-55.0.2/az.xpi) = 475368 -SHA256 (xpi/firefox-i18n-55.0.2/be.xpi) = c6bf8ca17e8fd12fa043c2467ee64aff590c30afa8739479faff4b1cffe1da38 -SIZE (xpi/firefox-i18n-55.0.2/be.xpi) = 522575 -SHA256 (xpi/firefox-i18n-55.0.2/bg.xpi) = 40a1381e347e117dc1bdf153ac5edd58b4afd9326dcebc7305f795e2ec87c3dc -SIZE (xpi/firefox-i18n-55.0.2/bg.xpi) = 520012 -SHA256 (xpi/firefox-i18n-55.0.2/bn-BD.xpi) = b005201e63d39f880940e925e3b3d4b3db2ceedcf778568ddbf56547a3570e10 -SIZE (xpi/firefox-i18n-55.0.2/bn-BD.xpi) = 535107 -SHA256 (xpi/firefox-i18n-55.0.2/bn-IN.xpi) = 762820b3c1761f164a4fdd19988f12469804d79b01baf1acdfc72aca1ff279cf -SIZE (xpi/firefox-i18n-55.0.2/bn-IN.xpi) = 526354 -SHA256 (xpi/firefox-i18n-55.0.2/br.xpi) = 93f2788cf935f8e911f36f83762a31c28b01acddff46061cc0aab9124fe4909a -SIZE (xpi/firefox-i18n-55.0.2/br.xpi) = 457060 -SHA256 (xpi/firefox-i18n-55.0.2/bs.xpi) = b999ef74b583a07afaf37f9287ac71a571fbc18b0575220f2a45c55b5ccd785c -SIZE (xpi/firefox-i18n-55.0.2/bs.xpi) = 465026 -SHA256 (xpi/firefox-i18n-55.0.2/ca.xpi) = 9659631f5e6758339352b709393c449bb64b83313bb8d7884d260dff9bd03a6d -SIZE (xpi/firefox-i18n-55.0.2/ca.xpi) = 473018 -SHA256 (xpi/firefox-i18n-55.0.2/cak.xpi) = afe2e530b011c42c6016b29a275393f6cc2f5759f77fda142d0cebf9656f5549 -SIZE (xpi/firefox-i18n-55.0.2/cak.xpi) = 481774 -SHA256 (xpi/firefox-i18n-55.0.2/cs.xpi) = 747555a52c9a2730b1758bdb6b292e0763f348b8edd63981de5359edfda64a66 -SIZE (xpi/firefox-i18n-55.0.2/cs.xpi) = 476809 -SHA256 (xpi/firefox-i18n-55.0.2/cy.xpi) = 05c9a6af92169e3c96e6ec086f9208701ab343e4ae2bd5e9cab2ef2e1847063d -SIZE (xpi/firefox-i18n-55.0.2/cy.xpi) = 458725 -SHA256 (xpi/firefox-i18n-55.0.2/da.xpi) = 9e51e34764588b9568d1bae8c10a78bd093af240707fd1da99bdbcc73ca24891 -SIZE (xpi/firefox-i18n-55.0.2/da.xpi) = 452604 -SHA256 (xpi/firefox-i18n-55.0.2/de.xpi) = f976be213b1bd161a3dc8429580e2565490781c6dfe63d7660a9c929680dbda0 -SIZE (xpi/firefox-i18n-55.0.2/de.xpi) = 465990 -SHA256 (xpi/firefox-i18n-55.0.2/dsb.xpi) = f9b1e337d9bd37392729dcea8817c57091bc651b9725cb5f283ac803a3bc1a90 -SIZE (xpi/firefox-i18n-55.0.2/dsb.xpi) = 482081 -SHA256 (xpi/firefox-i18n-55.0.2/el.xpi) = f850003853c1c93c560ba48df4f208292c2a6b7e69d3b24ca4fdb54c03d11023 -SIZE (xpi/firefox-i18n-55.0.2/el.xpi) = 539777 -SHA256 (xpi/firefox-i18n-55.0.2/en-GB.xpi) = f2e5be6fef803229bd6d46bbf6ac6a53cd48995aecb4089055846a2116a09875 -SIZE (xpi/firefox-i18n-55.0.2/en-GB.xpi) = 439269 -SHA256 (xpi/firefox-i18n-55.0.2/en-US.xpi) = 4821f12b5a7543d4284a091425b8edbde0877d7c58ec5bea8483e055f2a4f695 -SIZE (xpi/firefox-i18n-55.0.2/en-US.xpi) = 439814 -SHA256 (xpi/firefox-i18n-55.0.2/en-ZA.xpi) = 3d9ae4ae510bac83e8afd780b392648d840a668daa6c8aaa053239c0aeb08cd9 -SIZE (xpi/firefox-i18n-55.0.2/en-ZA.xpi) = 438621 -SHA256 (xpi/firefox-i18n-55.0.2/eo.xpi) = 8b5aec1fa22944e6b03f0afc3a20ead5068c3a11331c36e6648f19d3d9f8bd49 -SIZE (xpi/firefox-i18n-55.0.2/eo.xpi) = 461140 -SHA256 (xpi/firefox-i18n-55.0.2/es-AR.xpi) = 35d65264214e1ec2fd29a63657d83bfb0f5c39e494414e6188572457244daec6 -SIZE (xpi/firefox-i18n-55.0.2/es-AR.xpi) = 467619 -SHA256 (xpi/firefox-i18n-55.0.2/es-CL.xpi) = 8832427bf10acdc2862b7c40b188da515969644347b789834b762fe48e40eddb -SIZE (xpi/firefox-i18n-55.0.2/es-CL.xpi) = 471599 -SHA256 (xpi/firefox-i18n-55.0.2/es-ES.xpi) = ca9c14ff64cf4e4350d1fa3988cd62ff2af9442fd3b9f29db27717acd1f2048b -SIZE (xpi/firefox-i18n-55.0.2/es-ES.xpi) = 359824 -SHA256 (xpi/firefox-i18n-55.0.2/es-MX.xpi) = de81730bc1342b46f1b4efd492e1ad34f68d87d8b08fd6c18a9ef7d593f9d950 -SIZE (xpi/firefox-i18n-55.0.2/es-MX.xpi) = 474245 -SHA256 (xpi/firefox-i18n-55.0.2/et.xpi) = 82528a4430d928f43fb22e230d84f40ad2dce69a1de05167911dc34f40f161ae -SIZE (xpi/firefox-i18n-55.0.2/et.xpi) = 454471 -SHA256 (xpi/firefox-i18n-55.0.2/eu.xpi) = 408570b28e435c5a13fd680cfd5c935ce7e368366ff1ad8d83b1a36153b5797a -SIZE (xpi/firefox-i18n-55.0.2/eu.xpi) = 460419 -SHA256 (xpi/firefox-i18n-55.0.2/fa.xpi) = d0e74715212faa1aec8802830bb2a7345be88cbf9e40e809a0dd3dc9dd5f70ea -SIZE (xpi/firefox-i18n-55.0.2/fa.xpi) = 511561 -SHA256 (xpi/firefox-i18n-55.0.2/ff.xpi) = 7d1f12435a321403c4126455ac765ae672d38f9b7de7e712dde01b1a36be032b -SIZE (xpi/firefox-i18n-55.0.2/ff.xpi) = 455294 -SHA256 (xpi/firefox-i18n-55.0.2/fi.xpi) = 508a3b31e1640ad526679fc88f8a4880e961702647e69a1a729c59be6aa508a1 -SIZE (xpi/firefox-i18n-55.0.2/fi.xpi) = 453945 -SHA256 (xpi/firefox-i18n-55.0.2/fr.xpi) = f7a9ae993e3ddba9059ca908feb09c789f589c849144d97e0510796fd9698401 -SIZE (xpi/firefox-i18n-55.0.2/fr.xpi) = 476667 -SHA256 (xpi/firefox-i18n-55.0.2/fy-NL.xpi) = c6195293c22ee63afc93c013b6812d5b8916e5bfcb5d69d435c96cf767aa6c4e -SIZE (xpi/firefox-i18n-55.0.2/fy-NL.xpi) = 469971 -SHA256 (xpi/firefox-i18n-55.0.2/ga-IE.xpi) = f30b15373157cc539e337edbad29b79e0397049bb00eff6cdbbbbc5bc22ab15d -SIZE (xpi/firefox-i18n-55.0.2/ga-IE.xpi) = 481440 -SHA256 (xpi/firefox-i18n-55.0.2/gd.xpi) = e0ef3361910c4c78ad273be5a3169619d6aac11d47b9aba94d5e526aea920b75 -SIZE (xpi/firefox-i18n-55.0.2/gd.xpi) = 469055 -SHA256 (xpi/firefox-i18n-55.0.2/gl.xpi) = 412cebca178f8c1ebef5da9d55051ade5ca61f57d298ed97d1f83e23d3d786b1 -SIZE (xpi/firefox-i18n-55.0.2/gl.xpi) = 459111 -SHA256 (xpi/firefox-i18n-55.0.2/gn.xpi) = 6f6e6db35e1dfd8e9d321fea75ad2e263f78d66119d0fc57639fb83aa6ba6373 -SIZE (xpi/firefox-i18n-55.0.2/gn.xpi) = 476201 -SHA256 (xpi/firefox-i18n-55.0.2/gu-IN.xpi) = d64031df09998b827aa09977ee9c07b50054f4caf864608077eeeddef2f4a8d3 -SIZE (xpi/firefox-i18n-55.0.2/gu-IN.xpi) = 498986 -SHA256 (xpi/firefox-i18n-55.0.2/he.xpi) = f692107175337753f8cd153576142211d0ac380539a660481dc2fd15883390c9 -SIZE (xpi/firefox-i18n-55.0.2/he.xpi) = 479882 -SHA256 (xpi/firefox-i18n-55.0.2/hi-IN.xpi) = 766c2eaa8cf73a033b6beb9001b8e19f97e7c4464aa543fc25ea53eb41c19514 -SIZE (xpi/firefox-i18n-55.0.2/hi-IN.xpi) = 530572 -SHA256 (xpi/firefox-i18n-55.0.2/hr.xpi) = 69c20124670aafdd216f7b4982f55771603a72efd007420a1baec299d6fc616d -SIZE (xpi/firefox-i18n-55.0.2/hr.xpi) = 467992 -SHA256 (xpi/firefox-i18n-55.0.2/hsb.xpi) = 22723b8195eeb0d93d98e8b47f296982e6b34021b7313107b1f14200d4ba6fc8 -SIZE (xpi/firefox-i18n-55.0.2/hsb.xpi) = 479798 -SHA256 (xpi/firefox-i18n-55.0.2/hu.xpi) = b6813598a6018f993bf69b0a507d3f66986a36c47987d6068a305afa3ae85ef3 -SIZE (xpi/firefox-i18n-55.0.2/hu.xpi) = 481645 -SHA256 (xpi/firefox-i18n-55.0.2/hy-AM.xpi) = aae9cfb28813295d1d511dc26c790dc88b13f8781612c8f14556ff01505df73e -SIZE (xpi/firefox-i18n-55.0.2/hy-AM.xpi) = 520878 -SHA256 (xpi/firefox-i18n-55.0.2/id.xpi) = ac15a346d6f85d96e9df737346f5103955d72ef3ead75676ab228e4c208c35af -SIZE (xpi/firefox-i18n-55.0.2/id.xpi) = 450290 -SHA256 (xpi/firefox-i18n-55.0.2/is.xpi) = 4247bb15e96239ec7c04020b3581afd573b2700a1e36180f296b4b182f984cae -SIZE (xpi/firefox-i18n-55.0.2/is.xpi) = 464372 -SHA256 (xpi/firefox-i18n-55.0.2/it.xpi) = 2d80c0646508e0b8c7ca749fd5d48a9ccd585a5f8a0f4d50bc37826dfd37fcb2 -SIZE (xpi/firefox-i18n-55.0.2/it.xpi) = 352941 -SHA256 (xpi/firefox-i18n-55.0.2/ja.xpi) = 32453552cb85c7507bfec4ddddbe6eedc11edd73a816d49f3c7c6ac37b5cc294 -SIZE (xpi/firefox-i18n-55.0.2/ja.xpi) = 519764 -SHA256 (xpi/firefox-i18n-55.0.2/ka.xpi) = a4b6a2ddb9a6136e989370d7f350d44b96e2f19336bc0d7e53e15261cc7a733a -SIZE (xpi/firefox-i18n-55.0.2/ka.xpi) = 493535 -SHA256 (xpi/firefox-i18n-55.0.2/kab.xpi) = 436e7b2ef41c8737b1ed6f2d962ed8f57b15a4f3f69ac7c1c016d7dae919fb67 -SIZE (xpi/firefox-i18n-55.0.2/kab.xpi) = 470044 -SHA256 (xpi/firefox-i18n-55.0.2/kk.xpi) = 2f4e1c23eb506e12e43097c7338896c0bbab3c31508ffb393bcedb0a5e3318b8 -SIZE (xpi/firefox-i18n-55.0.2/kk.xpi) = 526707 -SHA256 (xpi/firefox-i18n-55.0.2/km.xpi) = 052c64e85a5c8f212de6b2a2343949ed9fc71d0b576af9e758ed1a6d7aac6180 -SIZE (xpi/firefox-i18n-55.0.2/km.xpi) = 540646 -SHA256 (xpi/firefox-i18n-55.0.2/kn.xpi) = 2769feec48f1e8d5c4102c9c7178e021df31c38229c293f2ba54502b6adbddac -SIZE (xpi/firefox-i18n-55.0.2/kn.xpi) = 538859 -SHA256 (xpi/firefox-i18n-55.0.2/ko.xpi) = b4e1eb8a9f1f97e04c929f3068c5bc5d6915747b8680aa8bdd22cdb82cebb775 -SIZE (xpi/firefox-i18n-55.0.2/ko.xpi) = 494547 -SHA256 (xpi/firefox-i18n-55.0.2/lij.xpi) = ce352cbea0b218e852d09f7c644ddd4470906d8a6dc69fc91f1a20fd915788a0 -SIZE (xpi/firefox-i18n-55.0.2/lij.xpi) = 458698 -SHA256 (xpi/firefox-i18n-55.0.2/lt.xpi) = b8ecfbdad46ce8ecdf6dd3c640010873ea0dfffaf8709a9a9a5b09c47e417e34 -SIZE (xpi/firefox-i18n-55.0.2/lt.xpi) = 481082 -SHA256 (xpi/firefox-i18n-55.0.2/lv.xpi) = 1fdf44120ccac809cef11e96e2ab905bcb2cdd299bfb0ef47f86dba7bed10779 -SIZE (xpi/firefox-i18n-55.0.2/lv.xpi) = 473736 -SHA256 (xpi/firefox-i18n-55.0.2/mai.xpi) = e5821456e92e43fb5a4e55d1fb9ed5233ea73c5d00fda1dac7c3aa79d41ca78b -SIZE (xpi/firefox-i18n-55.0.2/mai.xpi) = 517894 -SHA256 (xpi/firefox-i18n-55.0.2/mk.xpi) = 3ec887c7024eb954f0c89edf51e521ed57e209f388bcbab4b79c8fccc18e4d8e -SIZE (xpi/firefox-i18n-55.0.2/mk.xpi) = 500207 -SHA256 (xpi/firefox-i18n-55.0.2/ml.xpi) = 2a704d9f28bf3b2b08bc4bcfbdcd452d0400d7823ec0e727f3040519264b76be -SIZE (xpi/firefox-i18n-55.0.2/ml.xpi) = 540982 -SHA256 (xpi/firefox-i18n-55.0.2/mr.xpi) = fc983bfffff3f06b43f3c8104dcb1f828a28e312696f428e74ab9756fcdb7cea -SIZE (xpi/firefox-i18n-55.0.2/mr.xpi) = 528249 -SHA256 (xpi/firefox-i18n-55.0.2/ms.xpi) = 0763c540529962b74bd829eab79d56a126a57002f00b65a7b4ddeb429c4b6b96 -SIZE (xpi/firefox-i18n-55.0.2/ms.xpi) = 459191 -SHA256 (xpi/firefox-i18n-55.0.2/my.xpi) = c9f07b8943758282bcadea50afca33c8a63ded415e2649b0ca18166ef066f966 -SIZE (xpi/firefox-i18n-55.0.2/my.xpi) = 528097 -SHA256 (xpi/firefox-i18n-55.0.2/nb-NO.xpi) = 0d81e93a7a696677a6a0acf390ffce22de063919e7e1aa3ceaf83692685f0e38 -SIZE (xpi/firefox-i18n-55.0.2/nb-NO.xpi) = 457645 -SHA256 (xpi/firefox-i18n-55.0.2/nl.xpi) = ae947b30da46fd27b36257aa021dad16810ad053195aa0e5e6e7e353fc3caf94 -SIZE (xpi/firefox-i18n-55.0.2/nl.xpi) = 461510 -SHA256 (xpi/firefox-i18n-55.0.2/nn-NO.xpi) = e5b7c72907e19605a1415d2c3787e9fd36409545e7189b4afa7311db061e0923 -SIZE (xpi/firefox-i18n-55.0.2/nn-NO.xpi) = 458457 -SHA256 (xpi/firefox-i18n-55.0.2/or.xpi) = 277b31996462cfd1a001a333b99c538b409b89643aff7649090d37b14ea5ca44 -SIZE (xpi/firefox-i18n-55.0.2/or.xpi) = 511354 -SHA256 (xpi/firefox-i18n-55.0.2/pa-IN.xpi) = a2f6eacf6f683c01b74adaab8335db7d2aeb38829f0129b8b3bd22a2c5ccbc35 -SIZE (xpi/firefox-i18n-55.0.2/pa-IN.xpi) = 498453 -SHA256 (xpi/firefox-i18n-55.0.2/pl.xpi) = b308601a27898eb4cceeb6ca853fbc34bf152ee805921d05a17e72fb9dfa091b -SIZE (xpi/firefox-i18n-55.0.2/pl.xpi) = 372429 -SHA256 (xpi/firefox-i18n-55.0.2/pt-BR.xpi) = 44f369e06bc35ad5c99d01fac8852e8c1ae0597a3355814e8f1bd3430ed38434 -SIZE (xpi/firefox-i18n-55.0.2/pt-BR.xpi) = 462717 -SHA256 (xpi/firefox-i18n-55.0.2/pt-PT.xpi) = 24d9d9bd2264331368d7e384ea48d3ab2f5c5083e74b33a45c3e377c036276c4 -SIZE (xpi/firefox-i18n-55.0.2/pt-PT.xpi) = 465239 -SHA256 (xpi/firefox-i18n-55.0.2/rm.xpi) = 2cbd0b9bd38b563dd3a95b0e687992efbbc0d4370fe3cebdb10a782fff4669c7 -SIZE (xpi/firefox-i18n-55.0.2/rm.xpi) = 458265 -SHA256 (xpi/firefox-i18n-55.0.2/ro.xpi) = 1e0d626207c035571e8af87245b71aa236f16546d96588af624558fe04754248 -SIZE (xpi/firefox-i18n-55.0.2/ro.xpi) = 462973 -SHA256 (xpi/firefox-i18n-55.0.2/ru.xpi) = 9c800ccd0779e7b07fc8f9752c6555671c0debc234989ceac982529b1caba112 -SIZE (xpi/firefox-i18n-55.0.2/ru.xpi) = 530901 -SHA256 (xpi/firefox-i18n-55.0.2/si.xpi) = c177b9c277b2ae3d127fc5dea23bf1de78885a2305c7a336c15201adac858f1b -SIZE (xpi/firefox-i18n-55.0.2/si.xpi) = 508353 -SHA256 (xpi/firefox-i18n-55.0.2/sk.xpi) = d7c6e8ee51b34e4de7a71f74f000f10318ba7198906f879ae3c722d0502aefa9 -SIZE (xpi/firefox-i18n-55.0.2/sk.xpi) = 487582 -SHA256 (xpi/firefox-i18n-55.0.2/sl.xpi) = 6730ca8f59d766b368a233a5fef21833b2a577ec9d08191820ee499fc64badb3 -SIZE (xpi/firefox-i18n-55.0.2/sl.xpi) = 465760 -SHA256 (xpi/firefox-i18n-55.0.2/son.xpi) = 43f3607e7945c355048feed882b5368f8711d06d8b4b91940dc47368d9c861e6 -SIZE (xpi/firefox-i18n-55.0.2/son.xpi) = 456958 -SHA256 (xpi/firefox-i18n-55.0.2/sq.xpi) = 0b6613125d4a4bb9b48727f4b01f9d457ff90cf7456fc2b8fa3a460e0aa9e0a1 -SIZE (xpi/firefox-i18n-55.0.2/sq.xpi) = 470630 -SHA256 (xpi/firefox-i18n-55.0.2/sr.xpi) = 1eca19fd55f485b4536bb3c09da1427f6def8a8e04d202259abc396e73188997 -SIZE (xpi/firefox-i18n-55.0.2/sr.xpi) = 494878 -SHA256 (xpi/firefox-i18n-55.0.2/sv-SE.xpi) = 97fe6567c451504c4fd09ffba935ec7baa9c0d484f17b82b930ffbb43d601bb7 -SIZE (xpi/firefox-i18n-55.0.2/sv-SE.xpi) = 466011 -SHA256 (xpi/firefox-i18n-55.0.2/ta.xpi) = b8caa6fdb34281b2d71cf05d4dc15e0982cb26b2aaa83e3f7057e84a5034e13a -SIZE (xpi/firefox-i18n-55.0.2/ta.xpi) = 519998 -SHA256 (xpi/firefox-i18n-55.0.2/te.xpi) = c44d952fa3c941d9670b677c8dcd41ecb589b9cb258df7e397c0df5c982ce1d6 -SIZE (xpi/firefox-i18n-55.0.2/te.xpi) = 542539 -SHA256 (xpi/firefox-i18n-55.0.2/th.xpi) = f9f873e91f5254e265bae5203d8b49494d68111ca2f45d3a71388c5c1c0eb266 -SIZE (xpi/firefox-i18n-55.0.2/th.xpi) = 511903 -SHA256 (xpi/firefox-i18n-55.0.2/tr.xpi) = 634f87351c726dd08127d7e6687b2d86cf255806fc98be9505e50080e4330d33 -SIZE (xpi/firefox-i18n-55.0.2/tr.xpi) = 472160 -SHA256 (xpi/firefox-i18n-55.0.2/uk.xpi) = 08e005c5cc4b7c8b61e3a2df65119c3e4e3239b557af1386997bf75d27935e22 -SIZE (xpi/firefox-i18n-55.0.2/uk.xpi) = 526436 -SHA256 (xpi/firefox-i18n-55.0.2/ur.xpi) = 8079eb4e652f56773bad1470eaf383f45be4808ff0baa141138539d67af555c7 -SIZE (xpi/firefox-i18n-55.0.2/ur.xpi) = 520753 -SHA256 (xpi/firefox-i18n-55.0.2/uz.xpi) = 61c08b0f2c59e5709caff710265fe854e540c8d1bb4da1e5505f59a3f9dd5cff -SIZE (xpi/firefox-i18n-55.0.2/uz.xpi) = 467671 -SHA256 (xpi/firefox-i18n-55.0.2/vi.xpi) = 6fd1f6e564b23a91a34667bfca528696b09e4aa4adcfa168286de55eb7f938cb -SIZE (xpi/firefox-i18n-55.0.2/vi.xpi) = 476527 -SHA256 (xpi/firefox-i18n-55.0.2/xh.xpi) = 0a8c5541b5e084e64ded93f94c19b5ad483cea9425cbc7519082f3fd6886a377 -SIZE (xpi/firefox-i18n-55.0.2/xh.xpi) = 470719 -SHA256 (xpi/firefox-i18n-55.0.2/zh-CN.xpi) = a77bff1d91123cf255192e6d9998a879af2c4e8fff8bb228ff9c3df9229d62fe -SIZE (xpi/firefox-i18n-55.0.2/zh-CN.xpi) = 490383 -SHA256 (xpi/firefox-i18n-55.0.2/zh-TW.xpi) = 5f3ed7ac4cd06305dab1b484716eecc067a97d2b6f2cfe16f82108b991b1a943 -SIZE (xpi/firefox-i18n-55.0.2/zh-TW.xpi) = 489347 +TIMESTAMP = 1503590171 +SHA256 (xpi/firefox-i18n-55.0.3/ach.xpi) = 57e804fe2d2ecfce6f57406985d74d05b1bb6a4b0dccd3fcee8c3d9d36ce753d +SIZE (xpi/firefox-i18n-55.0.3/ach.xpi) = 447504 +SHA256 (xpi/firefox-i18n-55.0.3/af.xpi) = 4f676b98ab4198a36ed1ac3cb9f357e6b59110d1d86f756adcb675a86ab2069d +SIZE (xpi/firefox-i18n-55.0.3/af.xpi) = 448924 +SHA256 (xpi/firefox-i18n-55.0.3/an.xpi) = 33ac2d10ce013952bcb50e7f3769641d029dbdfe8c624a3a3bc2c8aa1ba70660 +SIZE (xpi/firefox-i18n-55.0.3/an.xpi) = 468638 +SHA256 (xpi/firefox-i18n-55.0.3/ar.xpi) = 0ee1a5d9b6f03a7b65840f1257fcabbe7637951d1051fb830820f11ac34dba04 +SIZE (xpi/firefox-i18n-55.0.3/ar.xpi) = 492759 +SHA256 (xpi/firefox-i18n-55.0.3/as.xpi) = 993d5f49b51453869b5ff75c1ba4f16dd8fd59beb62bffed33cf4fc7024f6129 +SIZE (xpi/firefox-i18n-55.0.3/as.xpi) = 501507 +SHA256 (xpi/firefox-i18n-55.0.3/ast.xpi) = e969a3716c0659b3c313f73f29ce3ffbab296ef81734ff9f4410982dc4830c8a +SIZE (xpi/firefox-i18n-55.0.3/ast.xpi) = 460841 +SHA256 (xpi/firefox-i18n-55.0.3/az.xpi) = 2708ec4d49a06b727e4a06d920b3cc4e68fcff0c10bf269ccba8a60f82312ff0 +SIZE (xpi/firefox-i18n-55.0.3/az.xpi) = 475368 +SHA256 (xpi/firefox-i18n-55.0.3/be.xpi) = ca95866a02a0ccacd2c00a8ff69540fd2e6967a35b25f215aca6e372f11569d0 +SIZE (xpi/firefox-i18n-55.0.3/be.xpi) = 522575 +SHA256 (xpi/firefox-i18n-55.0.3/bg.xpi) = 846cbd821bbea4e6a83ff7d391d4e286508925bd7c0089c42026fd13332dcf01 +SIZE (xpi/firefox-i18n-55.0.3/bg.xpi) = 520012 +SHA256 (xpi/firefox-i18n-55.0.3/bn-BD.xpi) = fb61c9008ba7b82230f925af5e37db806b1af20b772a5091558421e43bd6a572 +SIZE (xpi/firefox-i18n-55.0.3/bn-BD.xpi) = 535107 +SHA256 (xpi/firefox-i18n-55.0.3/bn-IN.xpi) = 11cb288dbcf601403ca2dde29a6ac394b12cb4841016788cc5efdd7db1d524f3 +SIZE (xpi/firefox-i18n-55.0.3/bn-IN.xpi) = 526354 +SHA256 (xpi/firefox-i18n-55.0.3/br.xpi) = 008ee7d4781834f7520f0b3459089ca1d97eb6518c670144279562094862dcd9 +SIZE (xpi/firefox-i18n-55.0.3/br.xpi) = 457060 +SHA256 (xpi/firefox-i18n-55.0.3/bs.xpi) = dd243f01e59854112f48b8a3683d840173aee994ba532496ee2a06b10fada878 +SIZE (xpi/firefox-i18n-55.0.3/bs.xpi) = 465026 +SHA256 (xpi/firefox-i18n-55.0.3/ca.xpi) = 25c6e4bdb355f6d116be23d241a62ffe7853a971e461c56a1ab586433743bffe +SIZE (xpi/firefox-i18n-55.0.3/ca.xpi) = 473018 +SHA256 (xpi/firefox-i18n-55.0.3/cak.xpi) = 5df85a9d3fb158eece6118ff9d6493928b4a846f6c0e5c8178dea6b5f878b8d3 +SIZE (xpi/firefox-i18n-55.0.3/cak.xpi) = 481774 +SHA256 (xpi/firefox-i18n-55.0.3/cs.xpi) = e5ba4844b9ced4c6a6cfd75853b6000fe2eabb9b33fffa73cc19e9562475d95c +SIZE (xpi/firefox-i18n-55.0.3/cs.xpi) = 476809 +SHA256 (xpi/firefox-i18n-55.0.3/cy.xpi) = 7a80d417cde600be304f1d7b59840ea62706509183515b5191d703ce59a668a0 +SIZE (xpi/firefox-i18n-55.0.3/cy.xpi) = 458725 +SHA256 (xpi/firefox-i18n-55.0.3/da.xpi) = 38bf51be7d418b67a69366f20aa1fe9b0c22fcf769757a0aefbcd60ac59240b9 +SIZE (xpi/firefox-i18n-55.0.3/da.xpi) = 452604 +SHA256 (xpi/firefox-i18n-55.0.3/de.xpi) = 1b815ec21a24870acb7a84171ef7b64cff8d718c666c70b986ea8594da3dd95a +SIZE (xpi/firefox-i18n-55.0.3/de.xpi) = 465990 +SHA256 (xpi/firefox-i18n-55.0.3/dsb.xpi) = 33f12a4322495be14a67a28c5b9518d9757dbf39a733e229cf3b9f28b64a6ddf +SIZE (xpi/firefox-i18n-55.0.3/dsb.xpi) = 482081 +SHA256 (xpi/firefox-i18n-55.0.3/el.xpi) = a6d1aefe768a046f9ba79b8b287d4e4656004556de9f2306af44b901c169ff9f +SIZE (xpi/firefox-i18n-55.0.3/el.xpi) = 539777 +SHA256 (xpi/firefox-i18n-55.0.3/en-GB.xpi) = 07474847b08f035f977013a0c7a5e42e07636901251207ba3d21300985d0eff9 +SIZE (xpi/firefox-i18n-55.0.3/en-GB.xpi) = 439269 +SHA256 (xpi/firefox-i18n-55.0.3/en-US.xpi) = f57cda45b8c6e177bbc705fb5db21878d5297c57281c8fba810c6cbb6b095ae8 +SIZE (xpi/firefox-i18n-55.0.3/en-US.xpi) = 439814 +SHA256 (xpi/firefox-i18n-55.0.3/en-ZA.xpi) = bf5e3fac34d5ccc83af7c5b60e6d2077c27ded688d3e37efcfbf6386459a3f39 +SIZE (xpi/firefox-i18n-55.0.3/en-ZA.xpi) = 438621 +SHA256 (xpi/firefox-i18n-55.0.3/eo.xpi) = 4dffe19fb6787d5b2795066618532bb4951695ac10dbca20c17ccedadff2334b +SIZE (xpi/firefox-i18n-55.0.3/eo.xpi) = 461140 +SHA256 (xpi/firefox-i18n-55.0.3/es-AR.xpi) = 1b4b1ca27e4265a7868858a9f9822384908b87f567808b7253cc49be7616c036 +SIZE (xpi/firefox-i18n-55.0.3/es-AR.xpi) = 467619 +SHA256 (xpi/firefox-i18n-55.0.3/es-CL.xpi) = 6dcd97412618233b7d82d4f8b614da267010e2d5af3a736209bd0179c1f5ea35 +SIZE (xpi/firefox-i18n-55.0.3/es-CL.xpi) = 471599 +SHA256 (xpi/firefox-i18n-55.0.3/es-ES.xpi) = 8f29eab7fcea76fb16fddbc6bc1505373b414f07e1678f231c8dd77fcd7c2dbb +SIZE (xpi/firefox-i18n-55.0.3/es-ES.xpi) = 359824 +SHA256 (xpi/firefox-i18n-55.0.3/es-MX.xpi) = c5cc49fb974401edcfd58b114d0d4f7d2a528522f89d50d393677fab7d586fac +SIZE (xpi/firefox-i18n-55.0.3/es-MX.xpi) = 474245 +SHA256 (xpi/firefox-i18n-55.0.3/et.xpi) = 155bdfe2c508b68c4a23a362158cd84d3be3080f3396b1fa060aed117bad89b7 +SIZE (xpi/firefox-i18n-55.0.3/et.xpi) = 454471 +SHA256 (xpi/firefox-i18n-55.0.3/eu.xpi) = c32de1d149e2f33cdee8a58e226d00cff29a78d783e6360e7715a006e74aeeec +SIZE (xpi/firefox-i18n-55.0.3/eu.xpi) = 460419 +SHA256 (xpi/firefox-i18n-55.0.3/fa.xpi) = ae990f77aea02c797fb14e2e10f736109888735cee39e39b1bfcec9c9add5c46 +SIZE (xpi/firefox-i18n-55.0.3/fa.xpi) = 511561 +SHA256 (xpi/firefox-i18n-55.0.3/ff.xpi) = 14f8217883d80c32c08f38284f42e5978c3d6cf077dcc6065e8d2d954c3640d5 +SIZE (xpi/firefox-i18n-55.0.3/ff.xpi) = 455294 +SHA256 (xpi/firefox-i18n-55.0.3/fi.xpi) = d00ebd2bc119a6f78c29701cfaa9434d51a14d62e0c3be7e271c143fc87bf1ce +SIZE (xpi/firefox-i18n-55.0.3/fi.xpi) = 453945 +SHA256 (xpi/firefox-i18n-55.0.3/fr.xpi) = a2ea34fa62fb6b83f77843d7284ad96491af8700aaa4f2df5cba6a5058ddc47c +SIZE (xpi/firefox-i18n-55.0.3/fr.xpi) = 476667 +SHA256 (xpi/firefox-i18n-55.0.3/fy-NL.xpi) = 0fe4964412a415c03c09ef320e299a9a361a41c84f317dee795e36b7f5612115 +SIZE (xpi/firefox-i18n-55.0.3/fy-NL.xpi) = 469971 +SHA256 (xpi/firefox-i18n-55.0.3/ga-IE.xpi) = 7e2e87dd6d25934dfc66d804531320ca71b53933245c361c8dd6404688b8ef39 +SIZE (xpi/firefox-i18n-55.0.3/ga-IE.xpi) = 481440 +SHA256 (xpi/firefox-i18n-55.0.3/gd.xpi) = 6c45c76ff5a0ae373f6ec8c0d81859f345cc31ad55471e702704c434797cca07 +SIZE (xpi/firefox-i18n-55.0.3/gd.xpi) = 469055 +SHA256 (xpi/firefox-i18n-55.0.3/gl.xpi) = b1b699a2f9134d951d704c1b42f6677004c2cede354881b9b96438323ccbcb33 +SIZE (xpi/firefox-i18n-55.0.3/gl.xpi) = 459111 +SHA256 (xpi/firefox-i18n-55.0.3/gn.xpi) = af4389f4028790c393fd9623b13b8ea9587d25918c2b1635743d18de09f6269f +SIZE (xpi/firefox-i18n-55.0.3/gn.xpi) = 476201 +SHA256 (xpi/firefox-i18n-55.0.3/gu-IN.xpi) = 547e37eca8d5a45fce201c550a4aca379b9bb006d7ff83b71971afedb641a3f4 +SIZE (xpi/firefox-i18n-55.0.3/gu-IN.xpi) = 498986 +SHA256 (xpi/firefox-i18n-55.0.3/he.xpi) = 451c0b7cb95accda6f8bca275f4d4a19c39be7160cce08975c6d751d11405255 +SIZE (xpi/firefox-i18n-55.0.3/he.xpi) = 479882 +SHA256 (xpi/firefox-i18n-55.0.3/hi-IN.xpi) = 77fd9e88268d1bb3f42b99af29e87c666e7a1ebaa26fafaad3afa55aab6ea1ce +SIZE (xpi/firefox-i18n-55.0.3/hi-IN.xpi) = 530571 +SHA256 (xpi/firefox-i18n-55.0.3/hr.xpi) = d36986ce628ebeddc28a56713f1444ec8aa99ffa297d4bc1b3478a92c3e6a8f0 +SIZE (xpi/firefox-i18n-55.0.3/hr.xpi) = 467992 +SHA256 (xpi/firefox-i18n-55.0.3/hsb.xpi) = 0200e7ad91f8ae46cbd63e1b865f8fc8a58353aa189001b58a38da079bf9f02a +SIZE (xpi/firefox-i18n-55.0.3/hsb.xpi) = 479798 +SHA256 (xpi/firefox-i18n-55.0.3/hu.xpi) = c60d25907f159b1a59475682a55a8afa9f899e93a739c5f721b46c3bd7f63012 +SIZE (xpi/firefox-i18n-55.0.3/hu.xpi) = 481645 +SHA256 (xpi/firefox-i18n-55.0.3/hy-AM.xpi) = 2564f7fa81cc2d0e2fa87e7199e62afd3174b9f0339001d730da1a6255a8782a +SIZE (xpi/firefox-i18n-55.0.3/hy-AM.xpi) = 520878 +SHA256 (xpi/firefox-i18n-55.0.3/id.xpi) = 13ee8d82e28f13d6e29555dd261dd1bacf1db930889eecb594bbb0ee214a9d9f +SIZE (xpi/firefox-i18n-55.0.3/id.xpi) = 450290 +SHA256 (xpi/firefox-i18n-55.0.3/is.xpi) = 77fa1716d95bef9ff32e5e554df1a6f74638ebe3e679a8239a5209a7ad6c3551 +SIZE (xpi/firefox-i18n-55.0.3/is.xpi) = 464372 +SHA256 (xpi/firefox-i18n-55.0.3/it.xpi) = 0bdd8bf97c9c3880d1f002d647450487cf21fc003067469f2b9eda8301bd9f13 +SIZE (xpi/firefox-i18n-55.0.3/it.xpi) = 352941 +SHA256 (xpi/firefox-i18n-55.0.3/ja.xpi) = c907bbf1efde7e601ec2ff6fb528896c8b2c3b70783dfa309e7d8aa54c45e655 +SIZE (xpi/firefox-i18n-55.0.3/ja.xpi) = 519764 +SHA256 (xpi/firefox-i18n-55.0.3/ka.xpi) = ab9bec8018935ba426f04a96e23b93e0f0d633f26f84a34c6553b883c6dd3c17 +SIZE (xpi/firefox-i18n-55.0.3/ka.xpi) = 493535 +SHA256 (xpi/firefox-i18n-55.0.3/kab.xpi) = 5e13da854fb8fdcfef8f760c9bb1cbfb7571856b933c181d41d09f36a7449dfb +SIZE (xpi/firefox-i18n-55.0.3/kab.xpi) = 470044 +SHA256 (xpi/firefox-i18n-55.0.3/kk.xpi) = 5edae7dba33d4369d529f3f965851798e31fd701c792c575de42602cf91eaee0 +SIZE (xpi/firefox-i18n-55.0.3/kk.xpi) = 526707 +SHA256 (xpi/firefox-i18n-55.0.3/km.xpi) = 8c741376968bc5145cf808c715c5dc92f7cf2a7134d3c1eaa9bc66e96d1b3ff0 +SIZE (xpi/firefox-i18n-55.0.3/km.xpi) = 540646 +SHA256 (xpi/firefox-i18n-55.0.3/kn.xpi) = d387a3a29d621d2e1163cd6d1728861f6344c370950124cfce754f4ff5fe37d8 +SIZE (xpi/firefox-i18n-55.0.3/kn.xpi) = 538859 +SHA256 (xpi/firefox-i18n-55.0.3/ko.xpi) = 524eca8be7b4ec0c04dfc09376d18479a9ddf677b006155b3b8c889f1d1c7425 +SIZE (xpi/firefox-i18n-55.0.3/ko.xpi) = 494547 +SHA256 (xpi/firefox-i18n-55.0.3/lij.xpi) = 79cfb9142d836ffda39039205e72f52eba8d09a61d6d77382267320a3dc4d984 +SIZE (xpi/firefox-i18n-55.0.3/lij.xpi) = 458698 +SHA256 (xpi/firefox-i18n-55.0.3/lt.xpi) = b8c979f9259ce409ff26af1beddd004fa90420021f5d98f2c069beb362f92160 +SIZE (xpi/firefox-i18n-55.0.3/lt.xpi) = 481082 +SHA256 (xpi/firefox-i18n-55.0.3/lv.xpi) = d58361769c078859d65aba27d79a93fc839871a14f026d73e607facf49373a84 +SIZE (xpi/firefox-i18n-55.0.3/lv.xpi) = 473736 +SHA256 (xpi/firefox-i18n-55.0.3/mai.xpi) = a3ab546aad483b92e5d2757d46654d89b2593097624052a1638cc8f0c2caee41 +SIZE (xpi/firefox-i18n-55.0.3/mai.xpi) = 517894 +SHA256 (xpi/firefox-i18n-55.0.3/mk.xpi) = aba046611289624c02c1d3c81fe8a4ea50a96088ece2bd7fb2be40df882ac795 +SIZE (xpi/firefox-i18n-55.0.3/mk.xpi) = 500207 +SHA256 (xpi/firefox-i18n-55.0.3/ml.xpi) = b40dd990aa6b36924279bb9af0a0e4ce5c8497b275244794b200e5815ac42b48 +SIZE (xpi/firefox-i18n-55.0.3/ml.xpi) = 540982 +SHA256 (xpi/firefox-i18n-55.0.3/mr.xpi) = bebcf5b465fc9e33955cdf4343c479f7b998819667ba3a23e298d38f833d2ead +SIZE (xpi/firefox-i18n-55.0.3/mr.xpi) = 528249 +SHA256 (xpi/firefox-i18n-55.0.3/ms.xpi) = 06d40cc6207dfd452fb12a3429b0bdf85c4fc196d51e66e6197ede9e9e5c9a82 +SIZE (xpi/firefox-i18n-55.0.3/ms.xpi) = 459191 +SHA256 (xpi/firefox-i18n-55.0.3/my.xpi) = 48e005f6558c13ad0f3f73afc81489c0cb384b00589bf2b3cd03569e6bd2a82c +SIZE (xpi/firefox-i18n-55.0.3/my.xpi) = 528097 +SHA256 (xpi/firefox-i18n-55.0.3/nb-NO.xpi) = 00e8ac31e0597ef4a1928b05b4d199563fcb249b3368d9bb63b8539174eafd5c +SIZE (xpi/firefox-i18n-55.0.3/nb-NO.xpi) = 457645 +SHA256 (xpi/firefox-i18n-55.0.3/nl.xpi) = 358bd38888586ae4498b41ea6bd7417939cc828cce78be80ffef3a32741458bf +SIZE (xpi/firefox-i18n-55.0.3/nl.xpi) = 461510 +SHA256 (xpi/firefox-i18n-55.0.3/nn-NO.xpi) = 11dbe5bce47e3829a7b5d43c12178fc2ff750495f6aa0209c69fc7b6b96f6b8e +SIZE (xpi/firefox-i18n-55.0.3/nn-NO.xpi) = 458457 +SHA256 (xpi/firefox-i18n-55.0.3/or.xpi) = 64d1c4205a8e249bbb8604efac83b73251fadfc23daee75f40a51d9e2a9ca6a1 +SIZE (xpi/firefox-i18n-55.0.3/or.xpi) = 511354 +SHA256 (xpi/firefox-i18n-55.0.3/pa-IN.xpi) = c2fa26e5fe2400c6890aea2722ab010265cd7541653092d190e45a6805d9ec13 +SIZE (xpi/firefox-i18n-55.0.3/pa-IN.xpi) = 498453 +SHA256 (xpi/firefox-i18n-55.0.3/pl.xpi) = c4973aa40a75f371d0c85a1e1d9c6fc5184eac38313ed50ea9c7189590a3d416 +SIZE (xpi/firefox-i18n-55.0.3/pl.xpi) = 372429 +SHA256 (xpi/firefox-i18n-55.0.3/pt-BR.xpi) = 3555d0e761bbe2ba1035f62960344836b9ad1b2cb55edc07b215d826385c8d5b +SIZE (xpi/firefox-i18n-55.0.3/pt-BR.xpi) = 462717 +SHA256 (xpi/firefox-i18n-55.0.3/pt-PT.xpi) = be15f048d135f364a7605527b9569ae81cc819cf38c7ed933298b3d4c58b5eef +SIZE (xpi/firefox-i18n-55.0.3/pt-PT.xpi) = 465239 +SHA256 (xpi/firefox-i18n-55.0.3/rm.xpi) = 588239d7468d46d5eae7ac832eb48ba3630fd9da4cc1d4fd35a2f32c28f62f10 +SIZE (xpi/firefox-i18n-55.0.3/rm.xpi) = 458265 +SHA256 (xpi/firefox-i18n-55.0.3/ro.xpi) = 70b05f40b253b9fb63081db12e8675873fe45eda3a1a180e77e15ae215a62216 +SIZE (xpi/firefox-i18n-55.0.3/ro.xpi) = 462973 +SHA256 (xpi/firefox-i18n-55.0.3/ru.xpi) = 0c0d0296dd9d62ba86203b1b21476ff064f9d74d512bb6ffefe6f74ddf549352 +SIZE (xpi/firefox-i18n-55.0.3/ru.xpi) = 530901 +SHA256 (xpi/firefox-i18n-55.0.3/si.xpi) = f1f196f5523254940d10938c5c974a3d4128ec777fc1e8fb1399e24014b21fef +SIZE (xpi/firefox-i18n-55.0.3/si.xpi) = 508353 +SHA256 (xpi/firefox-i18n-55.0.3/sk.xpi) = dcdc24e7411113728f6485465493cb5ee4c82981823c83edebe3e43257d8bf1a +SIZE (xpi/firefox-i18n-55.0.3/sk.xpi) = 487582 +SHA256 (xpi/firefox-i18n-55.0.3/sl.xpi) = a1e7c731478f11da9f6f9f3c6b4f18787a04bd62c1636cdaa60c765b907cbc46 +SIZE (xpi/firefox-i18n-55.0.3/sl.xpi) = 465760 +SHA256 (xpi/firefox-i18n-55.0.3/son.xpi) = 61cc16ef2218aee4e58b4bd8bba3dea83bd362c5fccbe368d04b325bf875cf9e +SIZE (xpi/firefox-i18n-55.0.3/son.xpi) = 456958 +SHA256 (xpi/firefox-i18n-55.0.3/sq.xpi) = 61ee5ee3e418d4a5098e94c22f646555f8b69f3cd1042b7e50fe0b9d28336c31 +SIZE (xpi/firefox-i18n-55.0.3/sq.xpi) = 470630 +SHA256 (xpi/firefox-i18n-55.0.3/sr.xpi) = f2d1fc0ca15e814210306ce2b1777c91c64444f79ea1431e4663eb5476c713b1 +SIZE (xpi/firefox-i18n-55.0.3/sr.xpi) = 494878 +SHA256 (xpi/firefox-i18n-55.0.3/sv-SE.xpi) = 9a68ef76d1ba8b94238f7d724eb57ba9c94984e8b440f6068811cb8eb9853000 +SIZE (xpi/firefox-i18n-55.0.3/sv-SE.xpi) = 466011 +SHA256 (xpi/firefox-i18n-55.0.3/ta.xpi) = 8d5f997e93cca5083d7d7196cd8f1524097ae6c6471bd373717c87dd1a5d4f2e +SIZE (xpi/firefox-i18n-55.0.3/ta.xpi) = 519998 +SHA256 (xpi/firefox-i18n-55.0.3/te.xpi) = 77e8558ae06366ee01252b37c756b42a77a013b85ccad1baa0ce69f0d7fa1831 +SIZE (xpi/firefox-i18n-55.0.3/te.xpi) = 542539 +SHA256 (xpi/firefox-i18n-55.0.3/th.xpi) = 5c35f335847368570b196fc470de14bfa10a9a63c0b27facedbf7e9ab3aef436 +SIZE (xpi/firefox-i18n-55.0.3/th.xpi) = 511903 +SHA256 (xpi/firefox-i18n-55.0.3/tr.xpi) = a2790b948e050421d209b5802bb388664b75ae2d5c69175e0c84ab01b2b2a0c4 +SIZE (xpi/firefox-i18n-55.0.3/tr.xpi) = 472160 +SHA256 (xpi/firefox-i18n-55.0.3/uk.xpi) = 379ed1579d3f4cf9d149eb3906491505898f846f0e9476bd7562a07981baecf6 +SIZE (xpi/firefox-i18n-55.0.3/uk.xpi) = 526436 +SHA256 (xpi/firefox-i18n-55.0.3/ur.xpi) = 8924709d63a5476f31e2a67031bd3020ff73884f6879aeace68b6ab41abb4076 +SIZE (xpi/firefox-i18n-55.0.3/ur.xpi) = 520753 +SHA256 (xpi/firefox-i18n-55.0.3/uz.xpi) = 5cb211b260f5a781e28ab841618423e0662b48742fec2c1a2156cbdc9a7c5676 +SIZE (xpi/firefox-i18n-55.0.3/uz.xpi) = 467671 +SHA256 (xpi/firefox-i18n-55.0.3/vi.xpi) = 4c546bbf624f6416c6c094965a00db675beb014500b55cf96fba8d1f4c03adbb +SIZE (xpi/firefox-i18n-55.0.3/vi.xpi) = 476527 +SHA256 (xpi/firefox-i18n-55.0.3/xh.xpi) = 9c8eed4ed4947dbf6f6518f731e18a00cfe26d031f429222d5ae037814c4034e +SIZE (xpi/firefox-i18n-55.0.3/xh.xpi) = 470719 +SHA256 (xpi/firefox-i18n-55.0.3/zh-CN.xpi) = b5ce9d67f7df55aff43f3bb3bb2d8bf8fa7ea15c1c40f94c1a331e3082cdcd88 +SIZE (xpi/firefox-i18n-55.0.3/zh-CN.xpi) = 490383 +SHA256 (xpi/firefox-i18n-55.0.3/zh-TW.xpi) = dfb0e10364b058869bcf832b01f586645f2c3c0fc647049f76c3c14561b2000e +SIZE (xpi/firefox-i18n-55.0.3/zh-TW.xpi) = 489347 Modified: branches/2017Q3/www/firefox/Makefile ============================================================================== --- branches/2017Q3/www/firefox/Makefile Sat Aug 26 09:40:15 2017 (r448756) +++ branches/2017Q3/www/firefox/Makefile Sat Aug 26 09:54:58 2017 (r448757) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 55.0.2 +DISTVERSION= 55.0.3 DISTVERSIONSUFFIX=.source PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla Modified: branches/2017Q3/www/firefox/distinfo ============================================================================== --- branches/2017Q3/www/firefox/distinfo Sat Aug 26 09:40:15 2017 (r448756) +++ branches/2017Q3/www/firefox/distinfo Sat Aug 26 09:54:58 2017 (r448757) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502835004 -SHA256 (firefox-55.0.2.source.tar.xz) = 0b747822063dc4d7cbbbfccb44e5e7865441378c524032d4de7e94bfa1f475b7 -SIZE (firefox-55.0.2.source.tar.xz) = 234450696 +TIMESTAMP = 1503590171 +SHA256 (firefox-55.0.3.source.tar.xz) = 891836df85f8798c49f7b25661820f64d1311d59703c716eda471819b93ccda2 +SIZE (firefox-55.0.3.source.tar.xz) = 236010652 From owner-svn-ports-branches@freebsd.org Sat Aug 26 10:21:41 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA7A7DF30BF; Sat, 26 Aug 2017 10:21:41 +0000 (UTC) (envelope-from cpm@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 8493A66229; Sat, 26 Aug 2017 10:21:41 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7QALeIU099088; Sat, 26 Aug 2017 10:21:40 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7QALeK8099083; Sat, 26 Aug 2017 10:21:40 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201708261021.v7QALeK8099083@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Sat, 26 Aug 2017 10:21:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448758 - in branches/2017Q3/math/pspp: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: in branches/2017Q3/math/pspp: . files X-SVN-Commit-Revision: 448758 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2017 10:21:41 -0000 Author: cpm Date: Sat Aug 26 10:21:40 2017 New Revision: 448758 URL: https://svnweb.freebsd.org/changeset/ports/448758 Log: MFH: r448513 - Update to 1.0.0 - Cosmetic fix - Update WWW in pkg-descr Changes from 0.10.2 to 0.11.0: http://lists.gnu.org/archive/html/pspp-announce/2017-08/msg00000.html Changes from 0.11.0 to 1.0.0: http://lists.gnu.org/archive/html/pspp-announce/2017-08/msg00002.html Security: CVE-2017-10791 Security: CVE-2017-10792 Security: CVE-2017-12958 Security: CVE-2017-12959 Security: CVE-2017-12960 Security: CVE-2017-12961 Approved by: ports-secteam (delphij) Added: branches/2017Q3/math/pspp/files/patch-src_ui_gui_pspp-sheet-view-column.h - copied unchanged from r448513, head/math/pspp/files/patch-src_ui_gui_pspp-sheet-view-column.h Modified: branches/2017Q3/math/pspp/Makefile branches/2017Q3/math/pspp/distinfo branches/2017Q3/math/pspp/pkg-descr branches/2017Q3/math/pspp/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/math/pspp/Makefile ============================================================================== --- branches/2017Q3/math/pspp/Makefile Sat Aug 26 09:54:58 2017 (r448757) +++ branches/2017Q3/math/pspp/Makefile Sat Aug 26 10:21:40 2017 (r448758) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= pspp -PORTVERSION= 0.10.2 -PORTREVISION= 2 +PORTVERSION= 1.0.0 CATEGORIES= math MASTER_SITES= GNU @@ -51,7 +50,7 @@ PGSQL_CONFIGURE_WITH= libpq post-patch: @${REINPLACE_CMD} -e \ - 's|: $$(INSTALL_DATA_HOOKS)|:|' ${WRKSRC}/Makefile.in + 's|: $$(INSTALL_DATA_HOOKS)|:|g' ${WRKSRC}/Makefile.in post-install: ${INSTALL_DATA} ${WRKSRC}/pspp-mode.el \ Modified: branches/2017Q3/math/pspp/distinfo ============================================================================== --- branches/2017Q3/math/pspp/distinfo Sat Aug 26 09:54:58 2017 (r448757) +++ branches/2017Q3/math/pspp/distinfo Sat Aug 26 10:21:40 2017 (r448758) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469446928 -SHA256 (pspp-0.10.2.tar.gz) = f77cacae6948689a60f1a5808a5d2e183c1cd0847c7fc6142646c63814c0daa9 -SIZE (pspp-0.10.2.tar.gz) = 7316470 +TIMESTAMP = 1503307920 +SHA256 (pspp-1.0.0.tar.gz) = 1b991ad4f5b2adc8c972de48fdb01d3675cb5ae1fc8d28850f6c0c68a745cb83 +SIZE (pspp-1.0.0.tar.gz) = 7553661 Copied: branches/2017Q3/math/pspp/files/patch-src_ui_gui_pspp-sheet-view-column.h (from r448513, head/math/pspp/files/patch-src_ui_gui_pspp-sheet-view-column.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/math/pspp/files/patch-src_ui_gui_pspp-sheet-view-column.h Sat Aug 26 10:21:40 2017 (r448758, copy of r448513, head/math/pspp/files/patch-src_ui_gui_pspp-sheet-view-column.h) @@ -0,0 +1,13 @@ +--- src/ui/gui/pspp-sheet-view-column.h.orig 2017-08-18 10:51:13 UTC ++++ src/ui/gui/pspp-sheet-view-column.h +@@ -40,6 +40,10 @@ + + G_BEGIN_DECLS + ++#ifndef PSEAL ++#define PSEAL(X) X ++#endif ++ + #define PSPP_TYPE_SHEET_VIEW_COLUMN (pspp_sheet_view_column_get_type ()) + #define PSPP_SHEET_VIEW_COLUMN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPP_TYPE_SHEET_VIEW_COLUMN, PsppSheetViewColumn)) + #define PSPP_SHEET_VIEW_COLUMN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PSPP_TYPE_SHEET_VIEW_COLUMN, PsppSheetViewColumnClass)) Modified: branches/2017Q3/math/pspp/pkg-descr ============================================================================== --- branches/2017Q3/math/pspp/pkg-descr Sat Aug 26 09:54:58 2017 (r448757) +++ branches/2017Q3/math/pspp/pkg-descr Sat Aug 26 10:21:40 2017 (r448758) @@ -6,4 +6,4 @@ PSPP development is ongoing. It already supports a lar SPSS's transformation language. Its statistical procedure support is currently limited, but growing. -WWW: http://www.gnu.org/software/pspp/pspp.html +WWW: https://www.gnu.org/software/pspp/pspp.html Modified: branches/2017Q3/math/pspp/pkg-plist ============================================================================== --- branches/2017Q3/math/pspp/pkg-plist Sat Aug 26 09:54:58 2017 (r448757) +++ branches/2017Q3/math/pspp/pkg-plist Sat Aug 26 10:21:40 2017 (r448758) @@ -23,16 +23,12 @@ share/emacs/site-lisp/pspp-mode.el %%GUI%%share/glade/catalogs/psppire.xml %%GUI%%share/glade/pixmaps/hicolor/16x16/actions/widget-psppire-psppire-acr.png %%GUI%%share/glade/pixmaps/hicolor/16x16/actions/widget-psppire-psppire-dialog.png -%%GUI%%share/glade/pixmaps/hicolor/16x16/actions/widget-psppire-psppire-hbuttonbox.png %%GUI%%share/glade/pixmaps/hicolor/16x16/actions/widget-psppire-psppire-keypad.png %%GUI%%share/glade/pixmaps/hicolor/16x16/actions/widget-psppire-psppire-selector.png -%%GUI%%share/glade/pixmaps/hicolor/16x16/actions/widget-psppire-psppire-vbuttonbox.png %%GUI%%share/glade/pixmaps/hicolor/22x22/actions/widget-psppire-psppire-acr.png %%GUI%%share/glade/pixmaps/hicolor/22x22/actions/widget-psppire-psppire-dialog.png -%%GUI%%share/glade/pixmaps/hicolor/22x22/actions/widget-psppire-psppire-hbuttonbox.png %%GUI%%share/glade/pixmaps/hicolor/22x22/actions/widget-psppire-psppire-keypad.png %%GUI%%share/glade/pixmaps/hicolor/22x22/actions/widget-psppire-psppire-selector.png -%%GUI%%share/glade/pixmaps/hicolor/22x22/actions/widget-psppire-psppire-vbuttonbox.png %%GUI%%share/icons/hicolor/16x16/apps/pspp.png %%GUI%%share/icons/hicolor/16x16/mimetypes/application-x-spss-por.png %%GUI%%share/icons/hicolor/16x16/mimetypes/application-x-spss-sav.png @@ -67,10 +63,12 @@ share/emacs/site-lisp/pspp-mode.el %%NLS%%share/locale/ca/LC_MESSAGES/pspp.mo %%NLS%%share/locale/cs/LC_MESSAGES/pspp.mo %%NLS%%share/locale/de/LC_MESSAGES/pspp.mo +%%NLS%%share/locale/el/LC_MESSAGES/pspp.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/pspp.mo %%NLS%%share/locale/es/LC_MESSAGES/pspp.mo %%NLS%%share/locale/fr/LC_MESSAGES/pspp.mo %%NLS%%share/locale/gl/LC_MESSAGES/pspp.mo +%%NLS%%share/locale/hu/LC_MESSAGES/pspp.mo %%NLS%%share/locale/ja/LC_MESSAGES/pspp.mo %%NLS%%share/locale/lt/LC_MESSAGES/pspp.mo %%NLS%%share/locale/nl/LC_MESSAGES/pspp.mo @@ -81,140 +79,10 @@ share/emacs/site-lisp/pspp-mode.el %%NLS%%share/locale/tr/LC_MESSAGES/pspp.mo %%NLS%%share/locale/uk/LC_MESSAGES/pspp.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/pspp.mo -%%GUI%%%%DATADIR%%/actions/16x16/analyze-bivariate-correlation.png -%%GUI%%%%DATADIR%%/actions/16x16/analyze-compare-means.png -%%GUI%%%%DATADIR%%/actions/16x16/analyze-descriptive-statistics.png -%%GUI%%%%DATADIR%%/actions/16x16/analyze-factor-analysis.png -%%GUI%%%%DATADIR%%/actions/16x16/analyze-kmeans-cluster.png -%%GUI%%%%DATADIR%%/actions/16x16/analyze-non-parametric-statistics.png -%%GUI%%%%DATADIR%%/actions/16x16/analyze-realiability.png -%%GUI%%%%DATADIR%%/actions/16x16/analyze-regression.png -%%GUI%%%%DATADIR%%/actions/16x16/analyze-roc-curve.png -%%GUI%%%%DATADIR%%/actions/16x16/analyze-univariate-analysis.png -%%GUI%%%%DATADIR%%/actions/16x16/data-aggregate.png -%%GUI%%%%DATADIR%%/actions/16x16/data-select-cases.png -%%GUI%%%%DATADIR%%/actions/16x16/data-sort-cases.png -%%GUI%%%%DATADIR%%/actions/16x16/data-split-file.png -%%GUI%%%%DATADIR%%/actions/16x16/data-transpose.png -%%GUI%%%%DATADIR%%/actions/16x16/data-weight-cases.png -%%GUI%%%%DATADIR%%/actions/16x16/display-information-external-file.png -%%GUI%%%%DATADIR%%/actions/16x16/display-information-working-file.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-clear.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-copy.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-cut.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-delete.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-find.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-go-to-case.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-go-to-variable.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-insert-case.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-insert-variable.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-paste.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-redo.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-select-all.png -%%GUI%%%%DATADIR%%/actions/16x16/edit-undo.png -%%GUI%%%%DATADIR%%/actions/16x16/file-display-information.png -%%GUI%%%%DATADIR%%/actions/16x16/file-export-data.png -%%GUI%%%%DATADIR%%/actions/16x16/file-import-data.png -%%GUI%%%%DATADIR%%/actions/16x16/file-new-data.png -%%GUI%%%%DATADIR%%/actions/16x16/file-open-data.png -%%GUI%%%%DATADIR%%/actions/16x16/file-print.png -%%GUI%%%%DATADIR%%/actions/16x16/file-quit.png -%%GUI%%%%DATADIR%%/actions/16x16/file-recently-used.png -%%GUI%%%%DATADIR%%/actions/16x16/file-rename-data-set.png -%%GUI%%%%DATADIR%%/actions/16x16/file-save-as.png -%%GUI%%%%DATADIR%%/actions/16x16/file-save-data.png -%%GUI%%%%DATADIR%%/actions/16x16/file-syntax-data.png -%%GUI%%%%DATADIR%%/actions/16x16/file-system-data.png -%%GUI%%%%DATADIR%%/actions/16x16/help-about.png -%%GUI%%%%DATADIR%%/actions/16x16/help-reference-manual.png -%%GUI%%%%DATADIR%%/actions/16x16/run-all.png -%%GUI%%%%DATADIR%%/actions/16x16/run-current-line.png -%%GUI%%%%DATADIR%%/actions/16x16/run-selection.png -%%GUI%%%%DATADIR%%/actions/16x16/run-to-end.png -%%GUI%%%%DATADIR%%/actions/16x16/transform-automatic-recode.png -%%GUI%%%%DATADIR%%/actions/16x16/transform-compute.png -%%GUI%%%%DATADIR%%/actions/16x16/transform-count.png -%%GUI%%%%DATADIR%%/actions/16x16/transform-in-to-different-variables.png -%%GUI%%%%DATADIR%%/actions/16x16/transform-in-to-same-variables.png -%%GUI%%%%DATADIR%%/actions/16x16/transform-rank-cases.png -%%GUI%%%%DATADIR%%/actions/16x16/transform-run-pending.png -%%GUI%%%%DATADIR%%/actions/16x16/utilities-data-file-comments.png -%%GUI%%%%DATADIR%%/actions/16x16/utilities-variables.png -%%GUI%%%%DATADIR%%/actions/16x16/view-font.png -%%GUI%%%%DATADIR%%/actions/16x16/view-value-labels.png -%%GUI%%%%DATADIR%%/actions/16x16/windows-minimize-all.png -%%GUI%%%%DATADIR%%/actions/16x16/windows-split.png -%%GUI%%%%DATADIR%%/actions/24x24/data-select-cases.png -%%GUI%%%%DATADIR%%/actions/24x24/data-split-file.png -%%GUI%%%%DATADIR%%/actions/24x24/data-weight-cases.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-copy.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-cut.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-find.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-go-to-case.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-go-to-variable.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-insert-case.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-insert-variable.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-paste.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-redo.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-select-all.png -%%GUI%%%%DATADIR%%/actions/24x24/edit-undo.png -%%GUI%%%%DATADIR%%/actions/24x24/file-export-data.png -%%GUI%%%%DATADIR%%/actions/24x24/file-open-data.png -%%GUI%%%%DATADIR%%/actions/24x24/file-print.png -%%GUI%%%%DATADIR%%/actions/24x24/file-save-data.png -%%GUI%%%%DATADIR%%/actions/24x24/run-all.png -%%GUI%%%%DATADIR%%/actions/24x24/transform-compute.png -%%GUI%%%%DATADIR%%/actions/24x24/utilities-variables.png -%%GUI%%%%DATADIR%%/actions/24x24/view-value-labels.png -%%GUI%%%%DATADIR%%/actions/32x32/data-select-cases.png -%%GUI%%%%DATADIR%%/actions/32x32/data-split-file.png -%%GUI%%%%DATADIR%%/actions/32x32/data-weight-cases.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-copy.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-cut.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-find.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-go-to-case.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-go-to-variable.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-insert-case.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-insert-variable.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-paste.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-redo.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-select-all.png -%%GUI%%%%DATADIR%%/actions/32x32/edit-undo.png -%%GUI%%%%DATADIR%%/actions/32x32/file-export-data.png -%%GUI%%%%DATADIR%%/actions/32x32/file-open-data.png -%%GUI%%%%DATADIR%%/actions/32x32/file-print.png -%%GUI%%%%DATADIR%%/actions/32x32/file-save-data.png -%%GUI%%%%DATADIR%%/actions/32x32/run-all.png -%%GUI%%%%DATADIR%%/actions/32x32/transform-compute.png -%%GUI%%%%DATADIR%%/actions/32x32/utilities-variables.png -%%GUI%%%%DATADIR%%/actions/32x32/view-value-labels.png %%GUI%%%%DATADIR%%/aggregate.ui %%GUI%%%%DATADIR%%/autorecode.ui %%GUI%%%%DATADIR%%/barchart.ui %%GUI%%%%DATADIR%%/binomial.ui -%%GUI%%%%DATADIR%%/categories/16x16/align-center.png -%%GUI%%%%DATADIR%%/categories/16x16/align-left.png -%%GUI%%%%DATADIR%%/categories/16x16/align-right.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-currency-nominal.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-currency-ordinal.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-currency-scale.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-date-nominal.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-date-ordinal.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-date-scale.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-nominal.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-ordinal.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-scale.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-string-nominal.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-string-ordinal.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-time-nominal.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-time-ordinal.png -%%GUI%%%%DATADIR%%/categories/16x16/measure-time-scale.png -%%GUI%%%%DATADIR%%/categories/16x16/role-both.png -%%GUI%%%%DATADIR%%/categories/16x16/role-input.png -%%GUI%%%%DATADIR%%/categories/16x16/role-none.png -%%GUI%%%%DATADIR%%/categories/16x16/role-partition.png -%%GUI%%%%DATADIR%%/categories/16x16/role-split.png -%%GUI%%%%DATADIR%%/categories/16x16/role-target.png %%GUI%%%%DATADIR%%/chi-square.ui %%GUI%%%%DATADIR%%/comments.ui %%GUI%%%%DATADIR%%/compute.ui @@ -222,7 +90,6 @@ share/emacs/site-lisp/pspp-mode.el %%GUI%%%%DATADIR%%/count.ui %%GUI%%%%DATADIR%%/crosstabs.ui %%GUI%%%%DATADIR%%/data-editor.ui -%%GUI%%%%DATADIR%%/data-sheet.ui %%GUI%%%%DATADIR%%/descriptives.ui %%GUI%%%%DATADIR%%/entry-dialog.ui %%GUI%%%%DATADIR%%/examine.ui @@ -233,12 +100,14 @@ share/emacs/site-lisp/pspp-mode.el %%GUI%%%%DATADIR%%/examples/regress.sps %%GUI%%%%DATADIR%%/examples/regress_categorical.sps %%GUI%%%%DATADIR%%/examples/repairs.sav +%%GUI%%%%DATADIR%%/examples/t-test.sps %%GUI%%%%DATADIR%%/factor.ui %%GUI%%%%DATADIR%%/find.ui %%GUI%%%%DATADIR%%/frequencies.ui %%GUI%%%%DATADIR%%/goto-case.ui %%GUI%%%%DATADIR%%/histogram.ui %%GUI%%%%DATADIR%%/indep-samples.ui +%%GUI%%%%DATADIR%%/k-independent.ui %%GUI%%%%DATADIR%%/k-means.ui %%GUI%%%%DATADIR%%/k-related.ui %%GUI%%%%DATADIR%%/ks-one-sample.ui @@ -246,6 +115,7 @@ share/emacs/site-lisp/pspp-mode.el %%GUI%%%%DATADIR%%/means.ui %%GUI%%%%DATADIR%%/missing-val-dialog.ui %%GUI%%%%DATADIR%%/oneway.ui +%%GUI%%%%DATADIR%%/options.ui %%GUI%%%%DATADIR%%/output-window.ui %%GUI%%%%DATADIR%%/paired-samples.ui %%GUI%%%%DATADIR%%/pspp.lang @@ -267,7 +137,8 @@ share/emacs/site-lisp/pspp-mode.el %%GUI%%%%DATADIR%%/text-data-import.ui %%GUI%%%%DATADIR%%/univariate.ui %%GUI%%%%DATADIR%%/val-labs-dialog.ui -%%GUI%%%%DATADIR%%/var-sheet.ui %%GUI%%%%DATADIR%%/var-type-dialog.ui %%GUI%%%%DATADIR%%/variable-info.ui %%GUI%%%%DATADIR%%/weight.ui +@comment @dir %%DATADIR%%/actions +@comment @dir %%DATADIR%%/categories From owner-svn-ports-branches@freebsd.org Sat Aug 26 10:25:14 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67D60DF326C; Sat, 26 Aug 2017 10:25:14 +0000 (UTC) (envelope-from cpm@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 1B8C16646E; Sat, 26 Aug 2017 10:25:14 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7QAPDhx003475; Sat, 26 Aug 2017 10:25:13 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7QAPDvw003472; Sat, 26 Aug 2017 10:25:13 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201708261025.v7QAPDvw003472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Sat, 26 Aug 2017 10:25:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448760 - in branches/2017Q3/dns/dnsdist: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: in branches/2017Q3/dns/dnsdist: . files X-SVN-Commit-Revision: 448760 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Aug 2017 10:25:14 -0000 Author: cpm Date: Sat Aug 26 10:25:12 2017 New Revision: 448760 URL: https://svnweb.freebsd.org/changeset/ports/448760 Log: MFH: r448580 - Update to 1.2.0 - Remove patch that was upstreamed - Switch from devel/llvm39 to devel/llvm40 when building on 10.3 - Update WWW in pkg-descr Changes: https://mailman.powerdns.com/pipermail/dnsdist/2017-August/000358.html Security: CVE-2016-7069 Security: CVE-2017-7557 Approved by: ports-secteam (delphij) Deleted: branches/2017Q3/dns/dnsdist/files/patch-ext_json11_json11.cpp Modified: branches/2017Q3/dns/dnsdist/Makefile branches/2017Q3/dns/dnsdist/distinfo branches/2017Q3/dns/dnsdist/pkg-descr Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/dns/dnsdist/Makefile ============================================================================== --- branches/2017Q3/dns/dnsdist/Makefile Sat Aug 26 10:24:56 2017 (r448759) +++ branches/2017Q3/dns/dnsdist/Makefile Sat Aug 26 10:25:12 2017 (r448760) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dnsdist -DISTVERSION= 1.1.0 -PORTREVISION= 6 +DISTVERSION= 1.2.0 CATEGORIES= dns net MASTER_SITES= https://downloads.powerdns.com/releases/ \ LOCAL/cpm @@ -42,9 +41,9 @@ USE_RC_SUBR= dnsdist # Fix dnsdist binaries when building on FreeBSD 10.3 .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 -BUILD_DEPENDS+= clang39:devel/llvm39 -CC= clang39 -CXX= clang++39 +BUILD_DEPENDS+= clang40:devel/llvm40 +CC= clang40 +CXX= clang++40 .endif post-install: Modified: branches/2017Q3/dns/dnsdist/distinfo ============================================================================== --- branches/2017Q3/dns/dnsdist/distinfo Sat Aug 26 10:24:56 2017 (r448759) +++ branches/2017Q3/dns/dnsdist/distinfo Sat Aug 26 10:25:12 2017 (r448760) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483106940 -SHA256 (dnsdist-1.1.0.tar.bz2) = b4a1e8931b6d05a24494f54224211c0de0eeb1f5ff170f6b9f5665219bfeafc2 -SIZE (dnsdist-1.1.0.tar.bz2) = 874837 +TIMESTAMP = 1503429670 +SHA256 (dnsdist-1.2.0.tar.bz2) = 9885c9ee8ac7076aede586ea58d4642eb877e7b2d76c902254494e2a5a5faa78 +SIZE (dnsdist-1.2.0.tar.bz2) = 876104 Modified: branches/2017Q3/dns/dnsdist/pkg-descr ============================================================================== --- branches/2017Q3/dns/dnsdist/pkg-descr Sat Aug 26 10:24:56 2017 (r448759) +++ branches/2017Q3/dns/dnsdist/pkg-descr Sat Aug 26 10:25:12 2017 (r448760) @@ -3,4 +3,4 @@ goal in life is to route DNS traffic to the best DNS s delivering top performance to legitimate users while shunting or blocking abusive traffic. -WWW: http://dnsdist.org +WWW: https://dnsdist.org