From owner-svn-ports-branches@freebsd.org Sun Jan 3 07:31:51 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 48800A5F3ED; Sun, 3 Jan 2016 07:31:51 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0112718AB; Sun, 3 Jan 2016 07:31:50 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u037VosM095455; Sun, 3 Jan 2016 07:31:50 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u037Vo0V095454; Sun, 3 Jan 2016 07:31:50 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201601030731.u037Vo0V095454@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 3 Jan 2016 07:31:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405116 - branches/2016Q1 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 03 Jan 2016 07:31:51 -0000 Author: antoine Date: Sun Jan 3 07:31:49 2016 New Revision: 405116 URL: https://svnweb.freebsd.org/changeset/ports/405116 Log: Branch 2016Q1 Added: branches/2016Q1/ - copied from r405040, head/ From owner-svn-ports-branches@freebsd.org Sun Jan 3 08:45:40 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 040AAA609F4; Sun, 3 Jan 2016 08:45:40 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C2BD61114; Sun, 3 Jan 2016 08:45:39 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u038jcn4019651; Sun, 3 Jan 2016 08:45:38 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u038jccR019650; Sun, 3 Jan 2016 08:45:38 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201601030845.u038jccR019650@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 3 Jan 2016 08:45:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405119 - branches/2016Q1/x11/antimicro X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 03 Jan 2016 08:45:40 -0000 Author: antoine Date: Sun Jan 3 08:45:38 2016 New Revision: 405119 URL: https://svnweb.freebsd.org/changeset/ports/405119 Log: MFH: r405098 Fix linking after r404875. There was a typo in the line setting LDFLAGS: we need -L/some/dir, not /some/dir. From the logs: /usr/local/lib: file not recognized: Is a directory c++: error: linker command failed with exit code 1 (use -v to see invocation) Thanks to antoine for raising the issue, and sorry for the brain fart. Modified: branches/2016Q1/x11/antimicro/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/x11/antimicro/Makefile ============================================================================== --- branches/2016Q1/x11/antimicro/Makefile Sun Jan 3 08:22:38 2016 (r405118) +++ branches/2016Q1/x11/antimicro/Makefile Sun Jan 3 08:45:38 2016 (r405119) @@ -16,7 +16,7 @@ GH_ACCOUNT= Ryochan7 # Upstream assumes ${LOCALBASE}/lib is part of the default linker path. Pull # request 268 fixes it for X11 libraries, but SDL2 is still using pkg-config # output (without full paths). -LDFLAGS+= ${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib USE_XORG= x11 xtst USE_QT5= linguisttools_build qmake_build buildtools_build widgets network From owner-svn-ports-branches@freebsd.org Sun Jan 3 11:33:10 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63254A605C8; Sun, 3 Jan 2016 11:33:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32CED1FBB; Sun, 3 Jan 2016 11:33:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u03BX9L4071118; Sun, 3 Jan 2016 11:33:09 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u03BX9eS071117; Sun, 3 Jan 2016 11:33:09 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201601031133.u03BX9eS071117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 3 Jan 2016 11:33:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405131 - branches/2016Q1/net/go-geoip X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 03 Jan 2016 11:33:10 -0000 Author: antoine Date: Sun Jan 3 11:33:09 2016 New Revision: 405131 URL: https://svnweb.freebsd.org/changeset/ports/405131 Log: MFH: r405130 Fix after last commit Reported by: pkg-fallout Modified: branches/2016Q1/net/go-geoip/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/go-geoip/Makefile ============================================================================== --- branches/2016Q1/net/go-geoip/Makefile Sun Jan 3 11:32:42 2016 (r405130) +++ branches/2016Q1/net/go-geoip/Makefile Sun Jan 3 11:33:09 2016 (r405131) @@ -18,7 +18,7 @@ USE_GITHUB= yes GH_ACCOUNT= abh GH_TAGNAME= da13074 -GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} .include .include "${PORTSDIR}/lang/go/files/bsd.go.mk" From owner-svn-ports-branches@freebsd.org Sun Jan 3 12:05:09 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3CE1A5F3BA; Sun, 3 Jan 2016 12:05:09 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7210C1FF2; Sun, 3 Jan 2016 12:05:09 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u03C58UV080209; Sun, 3 Jan 2016 12:05:08 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u03C583n080208; Sun, 3 Jan 2016 12:05:08 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201601031205.u03C583n080208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 3 Jan 2016 12:05:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405134 - branches/2016Q1/news/newsx/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 03 Jan 2016 12:05:09 -0000 Author: antoine Date: Sun Jan 3 12:05:08 2016 New Revision: 405134 URL: https://svnweb.freebsd.org/changeset/ports/405134 Log: MFH: r405133 Fix staging (as a regular user) / packaging (as root) Reported by: pkg-fallout Added: branches/2016Q1/news/newsx/files/patch-src_Makefile.in - copied unchanged from r405133, head/news/newsx/files/patch-src_Makefile.in Modified: Directory Properties: branches/2016Q1/ (props changed) Copied: branches/2016Q1/news/newsx/files/patch-src_Makefile.in (from r405133, head/news/newsx/files/patch-src_Makefile.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/news/newsx/files/patch-src_Makefile.in Sun Jan 3 12:05:08 2016 (r405134, copy of r405133, head/news/newsx/files/patch-src_Makefile.in) @@ -0,0 +1,21 @@ +--- src/Makefile.in.orig 2003-05-18 17:26:44 UTC ++++ src/Makefile.in +@@ -533,7 +533,7 @@ crc.h: mkcrc.c + + # Prepare a place for newsx in the news spool: + install-exec-local: +- if test ! -d ${INHOSTS} ; then \ ++ if test ! -d ${DESTDIR}${INHOSTS} ; then \ + if test -d ${SPOOL}/in.hosts ; then \ + echo The default location has changed, so we move ;\ + echo the directory ${SPOOL}/in.hosts to ${INHOSTS} ;\ +@@ -541,8 +541,7 @@ install-exec-local: + else \ + echo Creating directory ${INHOSTS} ;\ + umask @INN_NEWSUMASK@ ;\ +- mkdir ${INHOSTS} ;\ +- chown ${NEWSUSER} ${INHOSTS} ;\ ++ mkdir -p ${DESTDIR}${INHOSTS} ;\ + fi ;\ + fi + # Tell versions [3.59,3.63) of GNU make to not export all variables. From owner-svn-ports-branches@freebsd.org Sun Jan 3 13:08:20 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF4E9A5387A; Sun, 3 Jan 2016 13:08:20 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C5CB1BF4; Sun, 3 Jan 2016 13:08:20 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u03D8JkG098020; Sun, 3 Jan 2016 13:08:19 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u03D8JoX098018; Sun, 3 Jan 2016 13:08:19 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601031308.u03D8JoX098018@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 3 Jan 2016 13:08:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405140 - in branches/2016Q1: . audio audio/kstreamripper X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 03 Jan 2016 13:08:21 -0000 Author: rakuco Date: Sun Jan 3 13:08:19 2016 New Revision: 405140 URL: https://svnweb.freebsd.org/changeset/ports/405140 Log: MFH: r405139 Ressurrect audio/kstreamripper and update to 0.7.100. Update to the latest release to make the port fetchable again. Stop passing -DWITHOUT_LIBPROXY=YES to CMake because upstream disabled libproxy support a few releases ago. PR: 204171 Submitted by: matthew@reztek.cz Approved by: maintainer timeout (65 days) Approved by: portmgr blanket Added: branches/2016Q1/audio/kstreamripper/ - copied from r405139, head/audio/kstreamripper/ Modified: branches/2016Q1/MOVED branches/2016Q1/audio/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/MOVED ============================================================================== --- branches/2016Q1/MOVED Sun Jan 3 13:04:18 2016 (r405139) +++ branches/2016Q1/MOVED Sun Jan 3 13:08:19 2016 (r405140) @@ -8088,7 +8088,6 @@ net/remmina-plugin-rdp||2015-12-30|Has e dns/bind10|dns/bundy|2015-12-31|Has expired: Is not developed any more, use dns/bundy lang/perl5.16||2015-12-31|Has expired: Unsupported, please upgrade to a more recent version of Perl irc/irssi-devel||2016-01-01|Has expired: Older than irc/irssi -audio/kstreamripper||2016-01-01|Has expired: Broken for more than 6 months multimedia/spotify-websocket-api||2016-01-01|Has expired: login fails due to protocol changes net-mgmt/unifi2|net-mgmt/unifi3|2016-01-01|Has expired: Unifi 2.x is EoL. Please upgrade to net-mgmt/unifi3 misc/kde4-l10n-th||2016-01-01|Has expired: Upstream ceased maintainance of this translation Modified: branches/2016Q1/audio/Makefile ============================================================================== --- branches/2016Q1/audio/Makefile Sun Jan 3 13:04:18 2016 (r405139) +++ branches/2016Q1/audio/Makefile Sun Jan 3 13:08:19 2016 (r405140) @@ -335,6 +335,7 @@ SUBDIR += kmix SUBDIR += kscd SUBDIR += ksmp3play + SUBDIR += kstreamripper SUBDIR += ladspa SUBDIR += lame SUBDIR += lash From owner-svn-ports-branches@freebsd.org Sun Jan 3 14:22:05 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C402A5FFE9; Sun, 3 Jan 2016 14:22:05 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0952A1CAF; Sun, 3 Jan 2016 14:22:04 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u03EM4jS021826; Sun, 3 Jan 2016 14:22:04 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u03EM3K9021824; Sun, 3 Jan 2016 14:22:03 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601031422.u03EM3K9021824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 3 Jan 2016 14:22:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405149 - branches/2016Q1/devel/dwarfdump X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 03 Jan 2016 14:22:05 -0000 Author: rakuco Date: Sun Jan 3 14:22:03 2016 New Revision: 405149 URL: https://svnweb.freebsd.org/changeset/ports/405149 Log: MFH: r405148 Fix MASTER_SITES and unmark BROKEN. Approved by: portmgr blanket Modified: branches/2016Q1/devel/dwarfdump/Makefile branches/2016Q1/devel/dwarfdump/pkg-descr Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/dwarfdump/Makefile ============================================================================== --- branches/2016Q1/devel/dwarfdump/Makefile Sun Jan 3 14:21:12 2016 (r405148) +++ branches/2016Q1/devel/dwarfdump/Makefile Sun Jan 3 14:22:03 2016 (r405149) @@ -4,14 +4,12 @@ PORTNAME= dwarfdump PORTVERSION= 20130207 CATEGORIES= devel -MASTER_SITES= http://reality.sgiweb.org/davea/ +MASTER_SITES= http://www.prevanders.net/ DISTNAME= libdwarf-${PORTVERSION} MAINTAINER= joerg@FreeBSD.org COMMENT= Tool to display DWARF debugging information in ELF files -BROKEN= unfetchable - BUILD_DEPENDS= ${LOCALBASE}/lib/libdwarf.a:${PORTSDIR}/devel/libdwarf WRKSRC= ${WRKDIR}/dwarf-${PORTVERSION}/dwarfdump Modified: branches/2016Q1/devel/dwarfdump/pkg-descr ============================================================================== --- branches/2016Q1/devel/dwarfdump/pkg-descr Sun Jan 3 14:21:12 2016 (r405148) +++ branches/2016Q1/devel/dwarfdump/pkg-descr Sun Jan 3 14:22:03 2016 (r405149) @@ -1,4 +1,4 @@ The dwarfdump tool prints the various elements of DWARF debugging information found in ELF object files. -WWW: http://reality.sgiweb.org/davea/dwarf.html +WWW: http://www.prevanders.net/dwarf.html From owner-svn-ports-branches@freebsd.org Sun Jan 3 14:24:55 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D655A60171; Sun, 3 Jan 2016 14:24:55 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C89561FA5; Sun, 3 Jan 2016 14:24:54 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u03EOr4D022493; Sun, 3 Jan 2016 14:24:53 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u03EOrlg022490; Sun, 3 Jan 2016 14:24:53 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601031424.u03EOrlg022490@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 3 Jan 2016 14:24:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405151 - branches/2016Q1/devel/libcfg X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 03 Jan 2016 14:24:55 -0000 Author: rakuco Date: Sun Jan 3 14:24:53 2016 New Revision: 405151 URL: https://svnweb.freebsd.org/changeset/ports/405151 Log: MFH: r405150 Fix MASTER_SITES and unmark BROKEN. Approved by: portmgr blanket Modified: branches/2016Q1/devel/libcfg/Makefile branches/2016Q1/devel/libcfg/pkg-descr Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/libcfg/Makefile ============================================================================== --- branches/2016Q1/devel/libcfg/Makefile Sun Jan 3 14:24:09 2016 (r405150) +++ branches/2016Q1/devel/libcfg/Makefile Sun Jan 3 14:24:53 2016 (r405151) @@ -5,14 +5,12 @@ PORTNAME= libcfg PORTVERSION= 0.6.2 PORTREVISION= 3 CATEGORIES= devel -MASTER_SITES= http://platon.sk/upload/_projects/00003/ +MASTER_SITES= http://opensource.platon.org/projects/ DISTNAME= ${PORTNAME}+-${DISTVERSION} MAINTAINER= rodrigo@FreeBSD.org COMMENT= Library for command line and configuration file parsing -BROKEN= unfetchable - LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING Modified: branches/2016Q1/devel/libcfg/pkg-descr ============================================================================== --- branches/2016Q1/devel/libcfg/pkg-descr Sun Jan 3 14:24:09 2016 (r405150) +++ branches/2016Q1/devel/libcfg/pkg-descr Sun Jan 3 14:24:53 2016 (r405151) @@ -5,4 +5,4 @@ postfixes, and more. It supports many da decimal numbers, strings with many additional data type flags (such as multiple values for a single option). -WWW: http://platon.sk/projects/libcfg+ +WWW: http://opensource.platon.org/projects/main_page.php?project_id=3 From owner-svn-ports-branches@freebsd.org Sun Jan 3 14:28:22 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AEFF0A60250; Sun, 3 Jan 2016 14:28:22 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E119123B; Sun, 3 Jan 2016 14:28:22 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u03ESLRn022847; Sun, 3 Jan 2016 14:28:21 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u03ESLGt022846; Sun, 3 Jan 2016 14:28:21 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601031428.u03ESLGt022846@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 3 Jan 2016 14:28:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405153 - branches/2016Q1/devel/libgpc X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 03 Jan 2016 14:28:22 -0000 Author: rakuco Date: Sun Jan 3 14:28:21 2016 New Revision: 405153 URL: https://svnweb.freebsd.org/changeset/ports/405153 Log: MFH: r405152 Fix MASTER_SITES and unmark BROKEN. Approved by: portmgr blanket Modified: branches/2016Q1/devel/libgpc/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/libgpc/Makefile ============================================================================== --- branches/2016Q1/devel/libgpc/Makefile Sun Jan 3 14:26:50 2016 (r405152) +++ branches/2016Q1/devel/libgpc/Makefile Sun Jan 3 14:28:21 2016 (r405153) @@ -4,13 +4,12 @@ PORTNAME= libgpc PORTVERSION= 2.32 CATEGORIES= devel math graphics -MASTER_SITES= ftp://ftp.cs.man.ac.uk/pub/toby/gpc/ +MASTER_SITES= http://www.cs.man.ac.uk/~toby/alan/software/assets/ DISTNAME= gpc${PORTVERSION:S/.//} MAINTAINER= mi@aldan.algebra.com COMMENT= Generic Polygon Clipper -BROKEN= unfetchable USES= dos2unix uidfix zip PLIST_FILES= lib/libgpc.so.2 \ lib/libgpc.so lib/libgpc.a \ From owner-svn-ports-branches@freebsd.org Sun Jan 3 21:26:25 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C4F0BA6078F; Sun, 3 Jan 2016 21:26:25 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A06581AF2; Sun, 3 Jan 2016 21:26:25 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u03LQOxX050669; Sun, 3 Jan 2016 21:26:24 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u03LQO3x050666; Sun, 3 Jan 2016 21:26:24 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601032126.u03LQO3x050666@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 3 Jan 2016 21:26:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405188 - in branches/2016Q1: Mk devel/qt5-core devel/qt5/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 03 Jan 2016 21:26:26 -0000 Author: rakuco Date: Sun Jan 3 21:26:24 2016 New Revision: 405188 URL: https://svnweb.freebsd.org/changeset/ports/405188 Log: MFH: r405187 Qt5: Add a patch to allow using clang, -std=c++11 and base libstdc++. This is similar to what we did for Qt4 in r362770. Some C++11 features actually depend on the C++ standard library, such as or std::move(). So far, ports with USES=compiler:c++0x and similar failed to build with Qt5 on FreeBSD 9.x, as base libstdc++ is very old and does not support those C++11 features. Piggyback on a check that is already present upstream for OS X, which has the same ancient libstdc++ version. Apple's version has a custom patch with version macros that we can't use, so we make a broader check and disable the features that depend on a modern standard library if libc++ is not used. Approved by: portmgr blanket Added: branches/2016Q1/devel/qt5/files/extrapatch-src_corelib_global_qcompilerdetection.h - copied unchanged from r405187, head/devel/qt5/files/extrapatch-src_corelib_global_qcompilerdetection.h Modified: branches/2016Q1/Mk/bsd.qt.mk branches/2016Q1/devel/qt5-core/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/Mk/bsd.qt.mk ============================================================================== --- branches/2016Q1/Mk/bsd.qt.mk Sun Jan 3 21:25:23 2016 (r405187) +++ branches/2016Q1/Mk/bsd.qt.mk Sun Jan 3 21:26:24 2016 (r405188) @@ -173,11 +173,13 @@ CONFIGURE_ARGS+=-verbose . if ${QT_DIST} == "base" || ${_QT_VERSION:M4*} . if ${_QT_VERSION:M4*} _EXTRA_PATCHES_QT4= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-src-corelib-global-qglobal.h +. else +_EXTRA_PATCHES_QT5= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-src_corelib_global_qcompilerdetection.h . endif EXTRA_PATCHES?= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-configure \ ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-config.tests-unix-compile.test \ ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-libtool \ - ${_EXTRA_PATCHES_QT4} + ${_EXTRA_PATCHES_QT4} ${_EXTRA_PATCHES_QT5} . endif # Override settings installed in qconfig.h and *.pri files. The flags will be Modified: branches/2016Q1/devel/qt5-core/Makefile ============================================================================== --- branches/2016Q1/devel/qt5-core/Makefile Sun Jan 3 21:25:23 2016 (r405187) +++ branches/2016Q1/devel/qt5-core/Makefile Sun Jan 3 21:26:24 2016 (r405188) @@ -2,7 +2,7 @@ PORTNAME= core DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel PKGNAMEPREFIX= qt5- Copied: branches/2016Q1/devel/qt5/files/extrapatch-src_corelib_global_qcompilerdetection.h (from r405187, head/devel/qt5/files/extrapatch-src_corelib_global_qcompilerdetection.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/devel/qt5/files/extrapatch-src_corelib_global_qcompilerdetection.h Sun Jan 3 21:26:24 2016 (r405188, copy of r405187, head/devel/qt5/files/extrapatch-src_corelib_global_qcompilerdetection.h) @@ -0,0 +1,15 @@ +--- src/corelib/global/qcompilerdetection.h.orig 2016-01-03 18:13:55 UTC ++++ src/corelib/global/qcompilerdetection.h +@@ -900,10 +900,10 @@ + # undef Q_COMPILER_REF_QUALIFIERS + # endif + # endif // Q_OS_QNX +-# if (defined(Q_CC_CLANG) || defined(Q_CC_INTEL)) && defined(Q_OS_MAC) && defined(__GNUC_LIBSTD__) \ +- && ((__GNUC_LIBSTD__-0) * 100 + __GNUC_LIBSTD_MINOR__-0 <= 402) ++# if (defined(Q_CC_CLANG) || defined(Q_CC_INTEL)) && !defined(_LIBCPP_VERSION) + // Mac OS X: Apple has not updated libstdc++ since 2007, which means it does not have + // or std::move. Let's disable these features ++// The same applies to FreeBSD's base libstdc++ version used in FreeBSD 9.x. + # undef Q_COMPILER_INITIALIZER_LISTS + # undef Q_COMPILER_RVALUE_REFS + # undef Q_COMPILER_REF_QUALIFIERS From owner-svn-ports-branches@freebsd.org Sun Jan 3 21:29:35 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC6F2A60855; Sun, 3 Jan 2016 21:29:35 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD1D51D0F; Sun, 3 Jan 2016 21:29:35 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u03LTYLF051010; Sun, 3 Jan 2016 21:29:34 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u03LTY6e051009; Sun, 3 Jan 2016 21:29:34 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601032129.u03LTY6e051009@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 3 Jan 2016 21:29:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405190 - branches/2016Q1/net-im/teamwords X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 03 Jan 2016 21:29:36 -0000 Author: rakuco Date: Sun Jan 3 21:29:34 2016 New Revision: 405190 URL: https://svnweb.freebsd.org/changeset/ports/405190 Log: MFH: r405189 Add USES=compiler:c++11-lang to fix the build on 9.x. The port requires a compiler with C++11 support, and builds with -std=c++11 by default. After r405187, it is possible to build a Qt5-based port with -std=c++11 and base libstdc++, which means we can finally make the port build on 9.x. Approved by: portmgr blanket Modified: branches/2016Q1/net-im/teamwords/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net-im/teamwords/Makefile ============================================================================== --- branches/2016Q1/net-im/teamwords/Makefile Sun Jan 3 21:28:52 2016 (r405189) +++ branches/2016Q1/net-im/teamwords/Makefile Sun Jan 3 21:29:34 2016 (r405190) @@ -14,7 +14,7 @@ LICENSE= LGPL3 USE_LDCONFIG= yes USE_QT5= core gui network svg linguist \ buildtools x11extras -USES= qmake tar:xz +USES= compiler:c++11-lang qmake tar:xz QMAKE_ARGS= CONFIG+="configure" From owner-svn-ports-branches@freebsd.org Mon Jan 4 06:44:47 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6AF38A5F4B0; Mon, 4 Jan 2016 06:44:47 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D4061BF3; Mon, 4 Jan 2016 06:44:47 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u046ikQU076318; Mon, 4 Jan 2016 06:44:46 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u046ikw9076314; Mon, 4 Jan 2016 06:44:46 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201601040644.u046ikw9076314@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 4 Jan 2016 06:44:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405215 - in branches/2016Q1/www/mini_httpd: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 06:44:47 -0000 Author: rene Date: Mon Jan 4 06:44:45 2016 New Revision: 405215 URL: https://svnweb.freebsd.org/changeset/ports/405215 Log: MFH: r405201 www/mini_httpd: update to 1.23 Security: http://www.vuxml.org/freebsd/84dc49b0-b267-11e5-8a5b-00262d5ed8ee.html Approved by: portmgr (miwi) Modified: branches/2016Q1/www/mini_httpd/Makefile branches/2016Q1/www/mini_httpd/distinfo branches/2016Q1/www/mini_httpd/files/patch-Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/mini_httpd/Makefile ============================================================================== --- branches/2016Q1/www/mini_httpd/Makefile Mon Jan 4 06:42:18 2016 (r405214) +++ branches/2016Q1/www/mini_httpd/Makefile Mon Jan 4 06:44:45 2016 (r405215) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mini_httpd -PORTVERSION= 1.22 +PORTVERSION= 1.23 CATEGORIES= www ipv6 MASTER_SITES= http://www.acme.com/software/mini_httpd/ Modified: branches/2016Q1/www/mini_httpd/distinfo ============================================================================== --- branches/2016Q1/www/mini_httpd/distinfo Mon Jan 4 06:42:18 2016 (r405214) +++ branches/2016Q1/www/mini_httpd/distinfo Mon Jan 4 06:44:45 2016 (r405215) @@ -1,2 +1,2 @@ -SHA256 (mini_httpd-1.22.tar.gz) = 28399b9ad5fa31568944e625f4007c4b9ed9a096f78eda772fc9223a93ea7325 -SIZE (mini_httpd-1.22.tar.gz) = 43619 +SHA256 (mini_httpd-1.23.tar.gz) = bcc8c88392a4baeba5fa3ca8b924e9558c3dcb3018989b228d4f621acc8fffca +SIZE (mini_httpd-1.23.tar.gz) = 43322 Modified: branches/2016Q1/www/mini_httpd/files/patch-Makefile ============================================================================== --- branches/2016Q1/www/mini_httpd/files/patch-Makefile Mon Jan 4 06:42:18 2016 (r405214) +++ branches/2016Q1/www/mini_httpd/files/patch-Makefile Mon Jan 4 06:44:45 2016 (r405215) @@ -1,6 +1,6 @@ ---- Makefile.orig 2014-08-11 21:13:49.000000000 +0200 -+++ Makefile 2014-08-15 13:12:30.099236617 +0200 -@@ -15,16 +15,16 @@ +--- Makefile.orig 2014-10-19 06:33:43 UTC ++++ Makefile +@@ -15,17 +15,17 @@ CRYPT_LIB = -lcrypt # tree with your OpenSSL installation - depending on how you installed it, # it may be in /usr/local instead of /usr/local/ssl. #SSL_TREE = /usr/local/ssl @@ -17,7 +17,9 @@ CC = cc CDEFS = $(SSL_DEFS) $(SSL_INC) -CFLAGS = -O $(CDEFS) -ansi -pedantic -U__STRICT_ANSI__ -Wall -Wpointer-arith -Wshadow -Wcast-qual -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wno-long-long -+CFLAGS = $(CDEFS) -ansi -pedantic -U__STRICT_ANSI__ -Wall -Wpointer-arith -Wshadow -Wcast-qual -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wno-long-long - LDFLAGS = -s +-LDFLAGS = -s ++CFLAGS = -O2 -pipe -fstack-protector -fno-strict-aliasing $(CDEFS) -ansi -pedantic -U__STRICT_ANSI__ -Wall -Wpointer-arith -Wshadow -Wcast-qual -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wno-long-long ++LDFLAGS = -Wl,-rpath,/usr/local/lib -fstack-protector -s LDLIBS = $(CRYPT_LIB) $(SSL_LIBS) $(SYSV_LIBS) + all: mini_httpd htpasswd From owner-svn-ports-branches@freebsd.org Mon Jan 4 10:14:41 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBC8FA6098C; Mon, 4 Jan 2016 10:14:41 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8CFA21F3B; Mon, 4 Jan 2016 10:14:41 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04AEeDR039075; Mon, 4 Jan 2016 10:14:40 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04AEeNF039074; Mon, 4 Jan 2016 10:14:40 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601041014.u04AEeNF039074@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Mon, 4 Jan 2016 10:14:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405228 - branches/2016Q1/devel/py-mongokit X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 10:14:41 -0000 Author: rakuco Date: Mon Jan 4 10:14:40 2016 New Revision: 405228 URL: https://svnweb.freebsd.org/changeset/ports/405228 Log: MFH: r405195 Reroll distinfo to fix `make fetch'. There does not seem to be any difference in contents. Approved by: portmgr (antoine) Modified: branches/2016Q1/devel/py-mongokit/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/py-mongokit/distinfo ============================================================================== --- branches/2016Q1/devel/py-mongokit/distinfo Mon Jan 4 09:58:36 2016 (r405227) +++ branches/2016Q1/devel/py-mongokit/distinfo Mon Jan 4 10:14:40 2016 (r405228) @@ -1,2 +1,2 @@ -SHA256 (mongokit-0.8.3.tar.gz) = 7c86a4d27d110a06d66fd2d55b5d19f3b4152c77b854c3c07e63eb4fe8c53571 -SIZE (mongokit-0.8.3.tar.gz) = 68024 +SHA256 (mongokit-0.8.3.tar.gz) = 7f803ce14c3995013fed5633939fcad1fb87f334cd2ec065c18718746131f2fb +SIZE (mongokit-0.8.3.tar.gz) = 68015 From owner-svn-ports-branches@freebsd.org Mon Jan 4 10:15:37 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8566AA609F1; Mon, 4 Jan 2016 10:15:37 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 570581031; Mon, 4 Jan 2016 10:15:37 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04AFagH039243; Mon, 4 Jan 2016 10:15:36 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04AFal0039242; Mon, 4 Jan 2016 10:15:36 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601041015.u04AFal0039242@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Mon, 4 Jan 2016 10:15:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405229 - branches/2016Q1/math/py-bitvector X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 10:15:37 -0000 Author: rakuco Date: Mon Jan 4 10:15:36 2016 New Revision: 405229 URL: https://svnweb.freebsd.org/changeset/ports/405229 Log: MFH: r405198 Switch to a working MASTER_SITE. Version 3.1 does not seem to be released in PyPI. Approved by: portmgr (antoine) Modified: branches/2016Q1/math/py-bitvector/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/math/py-bitvector/Makefile ============================================================================== --- branches/2016Q1/math/py-bitvector/Makefile Mon Jan 4 10:14:40 2016 (r405228) +++ branches/2016Q1/math/py-bitvector/Makefile Mon Jan 4 10:15:36 2016 (r405229) @@ -5,7 +5,7 @@ PORTNAME= bitvector PORTVERSION= 3.1 PORTREVISION= 1 CATEGORIES= math python -MASTER_SITES= CHEESESHOP +MASTER_SITES= https://engineering.purdue.edu/kak/dist/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= BitVector-${PORTVERSION} From owner-svn-ports-branches@freebsd.org Mon Jan 4 10:17:03 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A7DBA60A56; Mon, 4 Jan 2016 10:17:03 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0C5A116B; Mon, 4 Jan 2016 10:17:02 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04AH18G039433; Mon, 4 Jan 2016 10:17:01 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04AH1nL039431; Mon, 4 Jan 2016 10:17:01 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601041017.u04AH1nL039431@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Mon, 4 Jan 2016 10:17:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405230 - branches/2016Q1/x11-toolkits/py-traitsgui X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 10:17:03 -0000 Author: rakuco Date: Mon Jan 4 10:17:01 2016 New Revision: 405230 URL: https://svnweb.freebsd.org/changeset/ports/405230 Log: MFH: r405199 Switch to fetching from GitHub. The project does not seem to exist in PyPI anymore, switch to fetching from GitHub. diff between the two tarballs: Only in dist-TraitsGUI-3.1.0: PKG-INFO diff -upr dist-TraitsGUI-3.1.0/setup.cfg traitsgui-3.1.0/setup.cfg --- dist-TraitsGUI-3.1.0/setup.cfg 2009-07-16 19:04:50.000000000 +0200 +++ traitsgui-3.1.0/setup.cfg 2009-07-16 02:02:18.000000000 +0200 @@ -1,15 +1,13 @@ [egg_info] -tag_build = -tag_date = 0 -tag_svn_revision = 0 - -[nosetests] -verbosity = 0 -detailed-errors = 1 -with-coverage = 1 -with-doctest = 1 +tag_build = .dev +tag_svn_revision = 1 [aliases] release = egg_info -RDb '' bdist_egg = build_docs bdist_egg +[nosetests] +verbosity = 0 +with-doctest = 1 +detailed-errors = 1 +with-coverage = 1 Only in dist-TraitsGUI-3.1.0: TraitsGUI.egg-info Approved by: portmgr (antoine) Modified: branches/2016Q1/x11-toolkits/py-traitsgui/Makefile branches/2016Q1/x11-toolkits/py-traitsgui/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/x11-toolkits/py-traitsgui/Makefile ============================================================================== --- branches/2016Q1/x11-toolkits/py-traitsgui/Makefile Mon Jan 4 10:15:36 2016 (r405229) +++ branches/2016Q1/x11-toolkits/py-traitsgui/Makefile Mon Jan 4 10:17:01 2016 (r405230) @@ -5,9 +5,7 @@ PORTNAME= traitsgui PORTVERSION= 3.1.0 PORTREVISION= 7 CATEGORIES= x11-toolkits python -MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= TraitsGUI-${PORTVERSION} MAINTAINER= jacob.frelinger@duke.edu COMMENT= Gui toolkit derived from the Enthought python traits library @@ -15,6 +13,9 @@ COMMENT= Gui toolkit derived from the En BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}traitsbackendwx>=3.1.0:${PORTSDIR}/x11-toolkits/py-traitsbackendwx RUN_DEPENDS:= ${BUILD_DEPENDS} +USE_GITHUB= yes +GH_ACCOUNT= enthought + USES= python USE_PYTHON= distutils autoplist Modified: branches/2016Q1/x11-toolkits/py-traitsgui/distinfo ============================================================================== --- branches/2016Q1/x11-toolkits/py-traitsgui/distinfo Mon Jan 4 10:15:36 2016 (r405229) +++ branches/2016Q1/x11-toolkits/py-traitsgui/distinfo Mon Jan 4 10:17:01 2016 (r405230) @@ -1,2 +1,2 @@ -SHA256 (TraitsGUI-3.1.0.tar.gz) = 0c27f7065b49d3a7f2627ae8158af9c197e4e1491522d376b4edcdc9a478298d -SIZE (TraitsGUI-3.1.0.tar.gz) = 4895405 +SHA256 (enthought-traitsgui-3.1.0_GH0.tar.gz) = 0d148d9102e377ef95c1e2900b651526c8489d1e717c0d9bb7cc4128de549234 +SIZE (enthought-traitsgui-3.1.0_GH0.tar.gz) = 4898716 From owner-svn-ports-branches@freebsd.org Mon Jan 4 10:19:02 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EEB22A60B3D; Mon, 4 Jan 2016 10:19:02 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A5DB81361; Mon, 4 Jan 2016 10:19:02 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04AJ1Qn039645; Mon, 4 Jan 2016 10:19:01 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04AJ1CE039643; Mon, 4 Jan 2016 10:19:01 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601041019.u04AJ1CE039643@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Mon, 4 Jan 2016 10:19:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405231 - branches/2016Q1/devel/py-anyconfig X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 10:19:03 -0000 Author: rakuco Date: Mon Jan 4 10:19:01 2016 New Revision: 405231 URL: https://svnweb.freebsd.org/changeset/ports/405231 Log: MFH: r405193 Switch to GitHub to fix fetching. The tarball for the 0.0.5 release does not seem to exist in PyPI anymore; switch to fetching the tag from GitHub instead. Short diff between the two tarballs: Only in python-anyconfig-RELEASE_0.0.5: .travis.yml Only in dist-anyconfig-0.0.5: anyconfig.egg-info Only in dist-anyconfig-0.0.5: PKG-INFO Only in dist-anyconfig-0.0.5: python-anyconfig.spec Only in dist-anyconfig-0.0.5: setup.cfg Only in python-anyconfig-RELEASE_0.0.5: wercker.yml Approved by: portmgr (antoine) Modified: branches/2016Q1/devel/py-anyconfig/Makefile branches/2016Q1/devel/py-anyconfig/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/py-anyconfig/Makefile ============================================================================== --- branches/2016Q1/devel/py-anyconfig/Makefile Mon Jan 4 10:17:01 2016 (r405230) +++ branches/2016Q1/devel/py-anyconfig/Makefile Mon Jan 4 10:19:01 2016 (r405231) @@ -3,8 +3,8 @@ PORTNAME= anyconfig PORTVERSION= 0.0.5 +DISTVERSIONPREFIX= RELEASE_ CATEGORIES= devel python -MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= dvl@FreeBSD.org @@ -13,6 +13,10 @@ COMMENT= Generic access to configuration LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.MIT +USE_GITHUB= yes +GH_ACCOUNT= ssato +GH_PROJECT= python-${PORTNAME} + USES= python USE_PYTHON= distutils autoplist Modified: branches/2016Q1/devel/py-anyconfig/distinfo ============================================================================== --- branches/2016Q1/devel/py-anyconfig/distinfo Mon Jan 4 10:17:01 2016 (r405230) +++ branches/2016Q1/devel/py-anyconfig/distinfo Mon Jan 4 10:19:01 2016 (r405231) @@ -1,2 +1,2 @@ -SHA256 (anyconfig-0.0.5.tar.gz) = dc297b35e9c8a62686cd9b5a2769fbd57ddb7753cdb367cb2910c8f9001f69f9 -SIZE (anyconfig-0.0.5.tar.gz) = 39361 +SHA256 (ssato-python-anyconfig-RELEASE_0.0.5_GH0.tar.gz) = fb19b3c8b4b679bef17e28306a127849ede859451cc2bbad2cdcd163558de9d0 +SIZE (ssato-python-anyconfig-RELEASE_0.0.5_GH0.tar.gz) = 33563 From owner-svn-ports-branches@freebsd.org Mon Jan 4 10:23:35 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 219FCA60D00; Mon, 4 Jan 2016 10:23:35 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF69A17A6; Mon, 4 Jan 2016 10:23:34 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04ANYGJ042494; Mon, 4 Jan 2016 10:23:34 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04ANXjV042491; Mon, 4 Jan 2016 10:23:33 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601041023.u04ANXjV042491@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Mon, 4 Jan 2016 10:23:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405232 - branches/2016Q1/devel/py-simpy X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 10:23:35 -0000 Author: rakuco Date: Mon Jan 4 10:23:33 2016 New Revision: 405232 URL: https://svnweb.freebsd.org/changeset/ports/405232 Log: MFH: r405196 r405227 Remove non-working SourceForge mirror and regenerate distinfo. The tarball from PyPI has a different name and slightly different contents: Only in distcache-SimPy-2.3.1/docs: __pycache__ Files distcache-SimPy-2.3.1/docs/.DS_Store and simpy-2.3.1/docs/.DS_Store differ Only in distcache-SimPy-2.3.1/docs: build Only in distcache-SimPy-2.3.1/docs: conftest.pyc Only in distcache-SimPy-2.3.1/docs/ext: __init__.pyc Only in distcache-SimPy-2.3.1/docs/ext: __pycache__ Only in distcache-SimPy-2.3.1/docs/ext: annotate.pyc Only in distcache-SimPy-2.3.1/docs/ext: style.pyc Only in distcache-SimPy-2.3.1/docs: html Only in distcache-SimPy-2.3.1/docs/source/_static: .DS_Store Only in distcache-SimPy-2.3.1/docs/source: .DS_Store Only in distcache-SimPy-2.3.1/docs/source/Manuals: .DS_Store Only in distcache-SimPy-2.3.1/docs/source/Manuals/GUIManual: .DS_Store Only in distcache-SimPy-2.3.1/docs/source/Manuals/Interfacing/ProductionQualityPlotting: .DS_Store Only in distcache-SimPy-2.3.1/docs/source/Manuals/PlotManual: .DS_Store diff -upr distcache-SimPy-2.3.1/PKG-INFO simpy-2.3.1/PKG-INFO --- distcache-SimPy-2.3.1/PKG-INFO 2012-01-28 10:44:34.000000000 +0100 +++ simpy-2.3.1/PKG-INFO 2013-10-11 22:26:36.000000000 +0200 @@ -1,5 +1,5 @@ -Metadata-Version: 1.0 -Name: SimPy +Metadata-Version: 1.1 +Name: simpy Version: 2.3.1 Summary: Event discrete, process based simulation for Python. Home-page: http://simpy.sourceforge.net/ diff -upr distcache-SimPy-2.3.1/setup.py simpy-2.3.1/setup.py --- distcache-SimPy-2.3.1/setup.py 2011-12-24 13:38:40.000000000 +0100 +++ simpy-2.3.1/setup.py 2013-10-11 22:25:26.000000000 +0200 @@ -5,7 +5,7 @@ import SimPy setup( - name='SimPy', + name='simpy', version=SimPy.__version__, author='Klaus Muller, Tony Vignaux, Ontje Lünsdorf, Stefan Scherfke', author_email=('vignaux at user.sourceforge.net; ' Fix plist after r405196. The tarball from PyPI includes less documentation than the previous one. Specifically, HTML documentation is not bundled and needs to be generated with Sphinx. Documentation build files are also not present, as well as some .pyc files created when the documentation was built. Approved by: portmgr (antoine) Modified: branches/2016Q1/devel/py-simpy/Makefile branches/2016Q1/devel/py-simpy/distinfo branches/2016Q1/devel/py-simpy/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/py-simpy/Makefile ============================================================================== --- branches/2016Q1/devel/py-simpy/Makefile Mon Jan 4 10:19:01 2016 (r405231) +++ branches/2016Q1/devel/py-simpy/Makefile Mon Jan 4 10:23:33 2016 (r405232) @@ -3,12 +3,10 @@ PORTNAME= simpy PORTVERSION= 2.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python -MASTER_SITES= CHEESESHOP \ - SF/${PORTNAME}/${PORTNAME}/SimPy-${PORTVERSION} +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= SimPy-${PORTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= Simulation in Python Modified: branches/2016Q1/devel/py-simpy/distinfo ============================================================================== --- branches/2016Q1/devel/py-simpy/distinfo Mon Jan 4 10:19:01 2016 (r405231) +++ branches/2016Q1/devel/py-simpy/distinfo Mon Jan 4 10:23:33 2016 (r405232) @@ -1,2 +1,2 @@ -SHA256 (SimPy-2.3.1.tar.gz) = 417fcd9f1e6aa4e420caae7bd3565f37c1f766428335dbf1f73281c5a11d5eca -SIZE (SimPy-2.3.1.tar.gz) = 6237222 +SHA256 (simpy-2.3.1.tar.gz) = 50086972d54690ca3b0cd32a838b9f182c742b346858e672d140a4819cd9a931 +SIZE (simpy-2.3.1.tar.gz) = 3169090 Modified: branches/2016Q1/devel/py-simpy/pkg-plist ============================================================================== --- branches/2016Q1/devel/py-simpy/pkg-plist Mon Jan 4 10:19:01 2016 (r405231) +++ branches/2016Q1/devel/py-simpy/pkg-plist Mon Jan 4 10:23:33 2016 (r405232) @@ -32,41 +32,7 @@ %%PORTDOCS%%%%DOCSDIR%%/SManual/source/programs/cars.py %%PORTDOCS%%%%DOCSDIR%%/SManual/source/programs/carsT.out %%PORTDOCS%%%%DOCSDIR%%/SManual/source/programs/carsT.py -%%PORTDOCS%%%%DOCSDIR%%/__pycache__/conftest.cpython-32.pyc -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Acknowledgments.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Cheatsheets.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Getting_Started.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Interfacing.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/CHANGES_FROM_PREVIOUS_VERSION.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/COMPATIBILITY.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/DISTRIBUTION_CONTENTS.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/Examples.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/GUIManual/SimGUImanual.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/HISTORY.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/INSTALLATION.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/Interfacing/ParallelSimPy/SimPyPP.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/Interfacing/ProductionQualityPlotting/SimPymatplotlib.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/Manual.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/PlotManual/ManualPlotting.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/RESOURCES.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/SimPyOO_API.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/SimRTManual.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/SimStepManual.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Manuals/Tracing.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/OnLineSimPyCourse.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/SimPy_Tools.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/SimPy_Tutorials.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/SimulationGUIDebug.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Tutorials/OO_Approach.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Tutorials/TheBank.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Tutorials/TheBank2.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Tutorials/TheBank2OO.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/Tutorials/TheBankOO.doctree -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/environment.pickle -%%PORTDOCS%%%%DOCSDIR%%/build/doctrees/index.doctree %%PORTDOCS%%%%DOCSDIR%%/conftest.py -%%PORTDOCS%%%%DOCSDIR%%/conftest.pyc %%PORTDOCS%%%%DOCSDIR%%/examples/Carwash.py %%PORTDOCS%%%%DOCSDIR%%/examples/Carwash_OO.py %%PORTDOCS%%%%DOCSDIR%%/examples/CellularAutomata.py @@ -113,176 +79,24 @@ %%PORTDOCS%%%%DOCSDIR%%/examples/shortestPath_SimPy.py %%PORTDOCS%%%%DOCSDIR%%/examples/shortestPath_SimPy_OO.py %%PORTDOCS%%%%DOCSDIR%%/ext/__init__.py -%%PORTDOCS%%%%DOCSDIR%%/ext/__init__.pyc -%%PORTDOCS%%%%DOCSDIR%%/ext/__pycache__/__init__.cpython-32.pyc -%%PORTDOCS%%%%DOCSDIR%%/ext/__pycache__/annotate.cpython-32.pyc -%%PORTDOCS%%%%DOCSDIR%%/ext/__pycache__/style.cpython-32.pyc %%PORTDOCS%%%%DOCSDIR%%/ext/annotate.py -%%PORTDOCS%%%%DOCSDIR%%/ext/annotate.pyc %%PORTDOCS%%%%DOCSDIR%%/ext/style.py -%%PORTDOCS%%%%DOCSDIR%%/ext/style.pyc -%%PORTDOCS%%%%DOCSDIR%%/html/.buildinfo -%%PORTDOCS%%%%DOCSDIR%%/html/Acknowledgments.html -%%PORTDOCS%%%%DOCSDIR%%/html/Cheatsheets.html -%%PORTDOCS%%%%DOCSDIR%%/html/Getting_Started.html -%%PORTDOCS%%%%DOCSDIR%%/html/Interfacing.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/CHANGES_FROM_PREVIOUS_VERSION.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/COMPATIBILITY.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/DISTRIBUTION_CONTENTS.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/Examples.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/GUIManual/SimGUImanual.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/HISTORY.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/INSTALLATION.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/Interfacing/ParallelSimPy/SimPyPP.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/Interfacing/ProductionQualityPlotting/SimPymatplotlib.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/Manual.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/PlotManual/ManualPlotting.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/RESOURCES.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/SimPyOO_API.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/SimRTManual.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/SimStepManual.html -%%PORTDOCS%%%%DOCSDIR%%/html/Manuals/Tracing.html -%%PORTDOCS%%%%DOCSDIR%%/html/OnLineSimPyCourse.html -%%PORTDOCS%%%%DOCSDIR%%/html/SimPy_Tools.html -%%PORTDOCS%%%%DOCSDIR%%/html/SimPy_Tutorials.html -%%PORTDOCS%%%%DOCSDIR%%/html/SimulationGUIDebug.html -%%PORTDOCS%%%%DOCSDIR%%/html/Tutorials/OO_Approach.html -%%PORTDOCS%%%%DOCSDIR%%/html/Tutorials/TheBank.html -%%PORTDOCS%%%%DOCSDIR%%/html/Tutorials/TheBank2.html -%%PORTDOCS%%%%DOCSDIR%%/html/Tutorials/TheBank2OO.html -%%PORTDOCS%%%%DOCSDIR%%/html/Tutorials/TheBankOO.html -%%PORTDOCS%%%%DOCSDIR%%/html/_images/AdvancedAPI.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/GUIdemo.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/GUIdemoMoni.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Minimal.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Mon004.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Mon005.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Mon006.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Monitorplot.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Prog1.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Prog2.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Prog3.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Prog4.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Prog5.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Twodown.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/Twoup.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/bank12.png -%%PORTDOCS%%%%DOCSDIR%%/html/_images/bank12histo.png -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Acknowledgments.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Cheatsheets.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Getting_Started.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Interfacing.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/CHANGES_FROM_PREVIOUS_VERSION.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/COMPATIBILITY.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/DISTRIBUTION_CONTENTS.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/Examples.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/GUIManual/SimGUImanual.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/HISTORY.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/INSTALLATION.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/Interfacing/ParallelSimPy/SimPyPP.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/Interfacing/ProductionQualityPlotting/SimPymatplotlib.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/Manual.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/PlotManual/ManualPlotting.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/RESOURCES.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/SimPyOO_API.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/SimRTManual.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/SimStepManual.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Manuals/Tracing.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/OnLineSimPyCourse.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/SimPy_Tools.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/SimPy_Tutorials.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/SimulationGUIDebug.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Tutorials/OO_Approach.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Tutorials/TheBank.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Tutorials/TheBank2.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Tutorials/TheBank2OO.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/Tutorials/TheBankOO.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_sources/index.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_static/CheatsheetOO_A4.pdf -%%PORTDOCS%%%%DOCSDIR%%/html/_static/CheatsheetOO_Letter.pdf -%%PORTDOCS%%%%DOCSDIR%%/html/_static/Cheatsheet_A4.pdf -%%PORTDOCS%%%%DOCSDIR%%/html/_static/Cheatsheet_Letter.pdf -%%PORTDOCS%%%%DOCSDIR%%/html/_static/PPExample.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_static/PPExampleProcess.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_static/SimGUIDebug2_0.pdf -%%PORTDOCS%%%%DOCSDIR%%/html/_static/ajax-loader.gif -%%PORTDOCS%%%%DOCSDIR%%/html/_static/basic.css -%%PORTDOCS%%%%DOCSDIR%%/html/_static/cheatsheetOO_A4.xls -%%PORTDOCS%%%%DOCSDIR%%/html/_static/cheatsheetOO_Letter.xls -%%PORTDOCS%%%%DOCSDIR%%/html/_static/cheatsheet_A4.xls -%%PORTDOCS%%%%DOCSDIR%%/html/_static/cheatsheet_Letter.xls -%%PORTDOCS%%%%DOCSDIR%%/html/_static/comment-bright.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/comment-close.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/comment.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/default.css -%%PORTDOCS%%%%DOCSDIR%%/html/_static/doctools.js -%%PORTDOCS%%%%DOCSDIR%%/html/_static/down-pressed.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/down.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/file.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/Mon004.fig -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/Mon004.pdf -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/Mon004.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/Mon005.fig -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/Mon005.pdf -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/Mon005.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/Mon006.fig -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/Mon006.pdf -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/Mon006.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/gui_manual/GUIdemo.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/gui_manual/GUIdemoMoni.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/gui_manual/Minimal.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/matplotlib/bank12.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/matplotlib/bank12histo.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/plot_manual/AdvancedAPI.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/plot_manual/Monitorplot.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/plot_manual/Prog1.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/plot_manual/Prog2.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/plot_manual/Prog3.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/plot_manual/Prog4.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/plot_manual/Prog5.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/plot_manual/Twodown.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/images/plot_manual/Twoup.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/jquery.js -%%PORTDOCS%%%%DOCSDIR%%/html/_static/minus.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/plus.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/processes.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_static/pygments.css -%%PORTDOCS%%%%DOCSDIR%%/html/_static/searchtools.js -%%PORTDOCS%%%%DOCSDIR%%/html/_static/sidebar.js -%%PORTDOCS%%%%DOCSDIR%%/html/_static/simulator.txt -%%PORTDOCS%%%%DOCSDIR%%/html/_static/sm_SimPy_Logo.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/underscore.js -%%PORTDOCS%%%%DOCSDIR%%/html/_static/up-pressed.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/up.png -%%PORTDOCS%%%%DOCSDIR%%/html/_static/websupport.js -%%PORTDOCS%%%%DOCSDIR%%/html/genindex.html -%%PORTDOCS%%%%DOCSDIR%%/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/html/objects.inv -%%PORTDOCS%%%%DOCSDIR%%/html/search.html -%%PORTDOCS%%%%DOCSDIR%%/html/searchindex.js %%PORTDOCS%%%%DOCSDIR%%/make.bat -%%PORTDOCS%%%%DOCSDIR%%/source/.DS_Store %%PORTDOCS%%%%DOCSDIR%%/source/Acknowledgments.rst %%PORTDOCS%%%%DOCSDIR%%/source/Cheatsheets.rst %%PORTDOCS%%%%DOCSDIR%%/source/Getting_Started.rst %%PORTDOCS%%%%DOCSDIR%%/source/Interfacing.rst %%PORTDOCS%%%%DOCSDIR%%/source/Manuals.rst -%%PORTDOCS%%%%DOCSDIR%%/source/Manuals/.DS_Store %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/CHANGES_FROM_PREVIOUS_VERSION.rst %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/COMPATIBILITY.rst %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/DISTRIBUTION_CONTENTS.rst %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/Examples.rst -%%PORTDOCS%%%%DOCSDIR%%/source/Manuals/GUIManual/.DS_Store %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/GUIManual/SimGUImanual.rst %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/HISTORY.rst %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/INSTALLATION.rst %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/Interfacing/ParallelSimPy/SimPyPP.rst -%%PORTDOCS%%%%DOCSDIR%%/source/Manuals/Interfacing/ProductionQualityPlotting/.DS_Store %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/Interfacing/ProductionQualityPlotting/SimPymatplotlib.rst %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/Manual.rst -%%PORTDOCS%%%%DOCSDIR%%/source/Manuals/PlotManual/.DS_Store %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/PlotManual/ManualPlotting.rst %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/RESOURCES.rst %%PORTDOCS%%%%DOCSDIR%%/source/Manuals/SimPyOO_API.rst @@ -431,7 +245,6 @@ %%PORTDOCS%%%%DOCSDIR%%/source/Tutorials/bankprograms/python2_out/bank22.out %%PORTDOCS%%%%DOCSDIR%%/source/Tutorials/bankprograms/python2_out/bank23.out %%PORTDOCS%%%%DOCSDIR%%/source/Tutorials/bankprograms/python2_out/bank24.out -%%PORTDOCS%%%%DOCSDIR%%/source/_static/.DS_Store %%PORTDOCS%%%%DOCSDIR%%/source/_static/CheatsheetOO_A4.pdf %%PORTDOCS%%%%DOCSDIR%%/source/_static/CheatsheetOO_Letter.pdf %%PORTDOCS%%%%DOCSDIR%%/source/_static/Cheatsheet_A4.pdf @@ -537,3 +350,7 @@ %%PYTHON_SITELIBDIR%%/SimPy/tkprogressbar.py %%PYTHON_SITELIBDIR%%/SimPy/tkprogressbar.pyc %%PYTHON_SITELIBDIR%%/SimPy/tkprogressbar.pyo +%%PYTHON_SITELIBDIR%%/simpy-2.3.1-py%%PYTHON_VER%%.egg-info/PKG-INFO +%%PYTHON_SITELIBDIR%%/simpy-2.3.1-py%%PYTHON_VER%%.egg-info/SOURCES.txt +%%PYTHON_SITELIBDIR%%/simpy-2.3.1-py%%PYTHON_VER%%.egg-info/dependency_links.txt +%%PYTHON_SITELIBDIR%%/simpy-2.3.1-py%%PYTHON_VER%%.egg-info/top_level.txt From owner-svn-ports-branches@freebsd.org Mon Jan 4 16:57:05 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6C0AA62B5F; Mon, 4 Jan 2016 16:57:05 +0000 (UTC) (envelope-from ohauer@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 9E1831F48; Mon, 4 Jan 2016 16:57:05 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04Gv4b6067219; Mon, 4 Jan 2016 16:57:04 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04Gv4xf067214; Mon, 4 Jan 2016 16:57:04 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201601041657.u04Gv4xf067214@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Mon, 4 Jan 2016 16:57:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405251 - in branches/2016Q1/mail/postfix-current: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 16:57:05 -0000 Author: ohauer Date: Mon Jan 4 16:57:04 2016 New Revision: 405251 URL: https://svnweb.freebsd.org/changeset/ports/405251 Log: MFH: r405233 - rework pkg-install and pkg-message [1] - install postfix specific mailer.conf.postfix into DATADIR [2] - make EAI the default, postfix will reject messages if build w.o. EAI and compatibility_level is set to a value >=1 [3] - use new notation instead PATCH_DIST_STRIP - bump PORTREVISION 1) detect if the port is installed without TERM, in this case do not ask the to make postfix the default mailer and respect the env POSTFIX_DEFAULT_MTA. This helps tools like salt, ansible, cfengine and puppet during the first package installation. 2) $DATADIR/mailer.conf.postfix can be used by the tools in 1) 3) Issue noted by Melissa Pilgrim by PM Short description of the issue: If compatibility_level is set to a value >= 1, then postfix set smtputf8_enable=yes. For more information see $ postconf -d | grep compatibility_level and http://www.postfix.org/SMTPUTF8_README.html Approved by: portmgr (feld@) Added: branches/2016Q1/mail/postfix-current/files/mailer.conf.postfix.in - copied unchanged from r405233, head/mail/postfix-current/files/mailer.conf.postfix.in Modified: branches/2016Q1/mail/postfix-current/Makefile branches/2016Q1/mail/postfix-current/files/pkg-install.in branches/2016Q1/mail/postfix-current/files/pkg-message.in branches/2016Q1/mail/postfix-current/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/mail/postfix-current/Makefile ============================================================================== --- branches/2016Q1/mail/postfix-current/Makefile Mon Jan 4 16:50:01 2016 (r405250) +++ branches/2016Q1/mail/postfix-current/Makefile Mon Jan 4 16:57:04 2016 (r405251) @@ -3,6 +3,7 @@ PORTNAME= postfix DISTVERSION= 3.0-20151003 +PORTREVISION= 1 PORTEPOCH= 4 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \ @@ -47,7 +48,7 @@ OPTIONS_DEFINE= BDB CDB DOCS EAI INST_BA OPTIONS_RADIO= RG1 RG2 OPTIONS_RADIO_RG1= DOVECOT DOVECOT2 OPTIONS_RADIO_RG2= SASLKRB5 SASLKMIT -OPTIONS_DEFAULT= PCRE TLS +OPTIONS_DEFAULT= PCRE TLS EAI BDB_USE= BDB=yes CDB_LIB_DEPENDS= libcdb.so:${PORTSDIR}/databases/tinycdb @@ -129,7 +130,7 @@ META_DIRECTORY= ${DAEMONDIR} SUB_LIST+= REQUIRE="${_REQUIRE}" READMEDIR="${READMEDIR}" \ DAEMONDIR="${DAEMONDIR}" META_DIRECTORY="${META_DIRECTORY}" -SUB_FILES+= pkg-install pkg-message +SUB_FILES+= pkg-install pkg-message mailer.conf.postfix POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ -DDEF_DAEMON_DIR=\\\"${DAEMONDIR}\\\" \ @@ -199,8 +200,7 @@ POSTFIX_CCARGS+= -DNO_TLS .if ${PORT_OPTIONS:MSPF} BROKEN= At the moment, SPF support is unavailable for ${PORTNAME}-${DISTVERSION} PATCH_SITES+= LOCAL/mm -PATCHFILES+= postfix-2.8.0-libspf2-1.2.x-0.patch.gz -PATCH_DIST_STRIP= -p1 +PATCHFILES+= postfix-2.8.0-libspf2-1.2.x-0.patch.gz:-p1 POSTFIX_CCARGS+= -DHAVE_NS_TYPE -DHAS_SPF -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lspf2 .endif @@ -368,6 +368,8 @@ post-stage: # == do not overwrite existing config ${MV} ${STAGEDIR}${ETCDIR}/main.cf ${STAGEDIR}${ETCDIR}/main.cf.sample ${MV} ${STAGEDIR}${ETCDIR}/master.cf ${STAGEDIR}${ETCDIR}/master.cf.sample + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKDIR}/mailer.conf.postfix ${STAGEDIR}${DATADIR} # == chop dynamicmaps.cf entries into dedicated .cf files # for future sub-packages support Copied: branches/2016Q1/mail/postfix-current/files/mailer.conf.postfix.in (from r405233, head/mail/postfix-current/files/mailer.conf.postfix.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/mail/postfix-current/files/mailer.conf.postfix.in Mon Jan 4 16:57:04 2016 (r405251, copy of r405233, head/mail/postfix-current/files/mailer.conf.postfix.in) @@ -0,0 +1,7 @@ +# +# Execute the Postfix sendmail program, named %%PREFIX%%/sbin/sendmail +# +sendmail %%PREFIX%%/sbin/sendmail +send-mail %%PREFIX%%/sbin/sendmail +mailq %%PREFIX%%/sbin/sendmail +newaliases %%PREFIX%%/sbin/sendmail Modified: branches/2016Q1/mail/postfix-current/files/pkg-install.in ============================================================================== --- branches/2016Q1/mail/postfix-current/files/pkg-install.in Mon Jan 4 16:50:01 2016 (r405250) +++ branches/2016Q1/mail/postfix-current/files/pkg-install.in Mon Jan 4 16:57:04 2016 (r405251) @@ -7,14 +7,18 @@ # will make the port/package use defaults which make postfix replace # sendmail as much as possible. -PREFIX=${PKG_PREFIX:=%%PREFIX%%} -ETCDIR=${ETCDIR:=%%ETCDIR%%} -DAEMONDIR=${DAEMONDIR:=%%DAEMONDIR%%} -META_DIRECTORY=${META_DIRECTORY:=%%META_DIRECTORY%%} -READMEDIR=${READMEDIR:=%%READMEDIR%%} +# allowed vars during package installation BATCH=${BATCH:=no} POSTFIX_DEFAULT_MTA=${POSTFIX_DEFAULT_MTA:=no} -MC=/etc/mail/mailer.conf + +# fixed vars +PREFIX="%%PREFIX%%" +ETCDIR="%%ETCDIR%%" +DAEMONDIR="%%DAEMONDIR%%" +META_DIRECTORY="%%META_DIRECTORY%%" +READMEDIR="%%READMEDIR%%" +MCP="%%DATADIR%%/mailer.conf.postfix" +MC="/etc/mail/mailer.conf" if [ "${POSTFIX_DEFAULT_MTA}" = "no" ]; then DEFAULT_REPLACE_MAILERCONF=n @@ -22,12 +26,6 @@ else DEFAULT_REPLACE_MAILERCONF=y fi -if [ -x /usr/sbin/nologin ]; then - NOLOGIN=/usr/sbin/nologin -else - NOLOGIN=/sbin/nologin -fi - ask() { local question default answer @@ -57,6 +55,25 @@ yesno() { done } +install_mailer_conf() { + echo "Activate Postfix in ${MC}" + /bin/mv -f ${MC} ${MC}.old + /usr/bin/install -m 644 ${MCP} ${MC} +} + +show_not_activated_msg() { + echo + echo "===============================================================" + echo "Postfix was *not* activated in /etc/mail/mailer.conf! " + echo + echo "To finish installation run the following commands:" + echo + echo " mv ${MC} ${MC}.old" + echo " install -m 0644 ${MCP} ${MC}" + echo "===============================================================" + echo +} + if [ "$2" = "POST-INSTALL" ]; then /bin/sh ${DAEMONDIR}/post-install tempdir=/tmp \ daemon_directory=${DAEMONDIR} \ @@ -73,18 +90,22 @@ if [ "$2" = "POST-INSTALL" -a -z "${PACK egrep -q "^newaliases.*${PREFIX}/sbin/sendmail" ${MC} ret=$? if [ ${ret} -ne 0 ]; then - if yesno "Would you like to activate Postfix in ${MC}" ${DEFAULT_REPLACE_MAILERCONF}; then - /bin/mv -f ${MC} ${MC}.old - echo "#" > ${MC} - echo -n "# Execute the Postfix sendmail program" >> ${MC} - echo ", named ${PREFIX}/sbin/sendmail" >> ${MC} - echo "#" >> ${MC} - echo "sendmail ${PREFIX}/sbin/sendmail" >> ${MC} - echo "send-mail ${PREFIX}/sbin/sendmail" >> ${MC} - echo "mailq ${PREFIX}/sbin/sendmail" >> ${MC} - echo "newaliases ${PREFIX}/sbin/sendmail" >> ${MC} + # Respect POSTFIX_DEFAULT_MTA, do not ask for confirmation! + # (This helps tools like salt, ansible or puppet on new installations) + if [ "${DEFAULT_REPLACE_MAILERCONF}" = "y" ]; then + install_mailer_conf + elif [ "${DEFAULT_REPLACE_MAILERCONF}" = "n" -a -t 0 ]; then + if yesno "Would you like to activate Postfix in ${MC}" ${DEFAULT_REPLACE_MAILERCONF:="n"}; then + install_mailer_conf + else + show_not_activated_msg + fi + else + show_not_activated_msg fi else + echo "===============================================================" echo "Postfix already activated in ${MC}" + echo "===============================================================" fi fi Modified: branches/2016Q1/mail/postfix-current/files/pkg-message.in ============================================================================== --- branches/2016Q1/mail/postfix-current/files/pkg-message.in Mon Jan 4 16:50:01 2016 (r405250) +++ branches/2016Q1/mail/postfix-current/files/pkg-message.in Mon Jan 4 16:57:04 2016 (r405251) @@ -1,22 +1,20 @@ -To enable postfix startup script please add postfix_enable="YES" in -your rc.conf +To use postfix instead of sendmail: + - clear sendmail queue and stop the sendmail daemons -If you not need sendmail anymore, please add in your rc.conf: - -sendmail_enable="NO" -sendmail_submit_enable="NO" -sendmail_outbound_enable="NO" -sendmail_msp_queue_enable="NO" - -And you can disable some sendmail specific daily maintenance routines in your -/etc/periodic.conf file: - -daily_clean_hoststat_enable="NO" -daily_status_mail_rejects_enable="NO" -daily_status_include_submit_mailq="NO" -daily_submit_queuerun="NO" - -If /etc/periodic.conf does not exist please create it and add those values. +Run the following commands to enable postfix during startup: + - sysrc postfix_enable="YES" + - sysrc sendmail_enable="NONE" + +If postfix is *not* already activated in /etc/mail/mailer.conf + - mv /etc/mail/mailer.conf /etc/mail/mailer.conf.old + - install -m 0644 %%DAEMONDIR%%/mailer.conf.postfix /etc/mail/mailer.conf + +Disable sendmail(8) specific tasks, +add the following lines to /etc/periodic.conf(.local): + daily_clean_hoststat_enable="NO" + daily_status_mail_rejects_enable="NO" + daily_status_include_submit_mailq="NO" + daily_submit_queuerun="NO" If you are using SASL, you need to make sure that postfix has access to read the sasldb file. This is accomplished by adding postfix to group mail and Modified: branches/2016Q1/mail/postfix-current/pkg-plist ============================================================================== --- branches/2016Q1/mail/postfix-current/pkg-plist Mon Jan 4 16:50:01 2016 (r405250) +++ branches/2016Q1/mail/postfix-current/pkg-plist Mon Jan 4 16:57:04 2016 (r405251) @@ -164,6 +164,7 @@ sbin/postmulti sbin/postsuper sbin/posttls-finger sbin/sendmail +%%DATADIR%%/mailer.conf.postfix @dir libexec/postfix/dynamicmaps.cf.d @dir libexec/postfix/postfix-files.d @dir %%PFETC%% From owner-svn-ports-branches@freebsd.org Mon Jan 4 16:58:39 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 04E19A62BE9; Mon, 4 Jan 2016 16:58:39 +0000 (UTC) (envelope-from ohauer@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 D41821085; Mon, 4 Jan 2016 16:58:38 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04Gwb2u067509; Mon, 4 Jan 2016 16:58:37 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04Gwb1l067503; Mon, 4 Jan 2016 16:58:37 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201601041658.u04Gwb1l067503@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Mon, 4 Jan 2016 16:58:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405252 - in branches/2016Q1/mail/postfix: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 16:58:39 -0000 Author: ohauer Date: Mon Jan 4 16:58:37 2016 New Revision: 405252 URL: https://svnweb.freebsd.org/changeset/ports/405252 Log: MFH: r405234 - rework pkg-install and pkg-message [1] - install postfix specific mailer.conf.postfix into DATADIR [2] - use new notation instead PATCH_DIST_STRIP - bump PORTREVISION 1) detect if the port is installed without TERM, in this case do not ask the to make postfix the default mailer and respect the env POSTFIX_DEFAULT_MTA. This helps tools like salt, ansible, cfengine and puppet during the first package installation. 2) $DATADIR/mailer.conf.postfix can be used by the tools in 1) Approved by: portmgr (feld@) Added: branches/2016Q1/mail/postfix/files/mailer.conf.postfix.in - copied unchanged from r405234, head/mail/postfix/files/mailer.conf.postfix.in Modified: branches/2016Q1/mail/postfix/Makefile branches/2016Q1/mail/postfix/files/pkg-install.in branches/2016Q1/mail/postfix/files/pkg-message.in branches/2016Q1/mail/postfix/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/mail/postfix/Makefile ============================================================================== --- branches/2016Q1/mail/postfix/Makefile Mon Jan 4 16:57:04 2016 (r405251) +++ branches/2016Q1/mail/postfix/Makefile Mon Jan 4 16:58:37 2016 (r405252) @@ -3,6 +3,7 @@ PORTNAME= postfix PORTVERSION= 2.11.7 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \ @@ -122,7 +123,7 @@ DAEMONDIR= ${PREFIX}/libexec/postfix SUB_LIST+= REQUIRE="${_REQUIRE}" READMEDIR="${READMEDIR}" \ DAEMONDIR="${DAEMONDIR}" -SUB_FILES+= pkg-install pkg-message +SUB_FILES+= pkg-install pkg-message mailer.conf.postfix POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ -DDEF_DAEMON_DIR=\\\"${DAEMONDIR}\\\" \ @@ -181,8 +182,7 @@ POSTFIX_CCARGS+= -DNO_TLS .if ${PORT_OPTIONS:MSPF} PATCH_SITES+= LOCAL/mm -PATCHFILES+= postfix-2.8.0-libspf2-1.2.x-0.patch.gz -PATCH_DIST_STRIP= -p1 +PATCHFILES+= postfix-2.8.0-libspf2-1.2.x-0.patch.gz:-p1 POSTFIX_CCARGS+= -DHAVE_NS_TYPE -DHAS_SPF -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lspf2 .endif @@ -237,9 +237,8 @@ _REQUIRE+= ypserv .endif .if ${PORT_OPTIONS:MVDA} -PATCH_SITES+= http://vda.sourceforge.net/VDA/:vda +PATCH_SITES+= http://vda.sourceforge.net/VDA/:-p1:vda PATCHFILES+= postfix-vda-v13-${VDAVERSION}.patch:vda -PATCH_DIST_STRIP= -p1 .endif .if ${PORT_OPTIONS:MTEST} @@ -348,6 +347,8 @@ post-stage: # == do not overwrite existing config ${MV} ${STAGEDIR}${ETCDIR}/main.cf ${STAGEDIR}${ETCDIR}/main.cf.sample ${MV} ${STAGEDIR}${ETCDIR}/master.cf ${STAGEDIR}${ETCDIR}/master.cf.sample + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKDIR}/mailer.conf.postfix ${STAGEDIR}${DATADIR} # Fix compressed man pages and strip executables ${SED} -i '' -E -e "s|(man[158]/.*.[158]):|\1.gz:|g" ${STAGEDIR}${DAEMONDIR}/postfix-files Copied: branches/2016Q1/mail/postfix/files/mailer.conf.postfix.in (from r405234, head/mail/postfix/files/mailer.conf.postfix.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/mail/postfix/files/mailer.conf.postfix.in Mon Jan 4 16:58:37 2016 (r405252, copy of r405234, head/mail/postfix/files/mailer.conf.postfix.in) @@ -0,0 +1,7 @@ +# +# Execute the Postfix sendmail program, named %%PREFIX%%/sbin/sendmail +# +sendmail %%PREFIX%%/sbin/sendmail +send-mail %%PREFIX%%/sbin/sendmail +mailq %%PREFIX%%/sbin/sendmail +newaliases %%PREFIX%%/sbin/sendmail Modified: branches/2016Q1/mail/postfix/files/pkg-install.in ============================================================================== --- branches/2016Q1/mail/postfix/files/pkg-install.in Mon Jan 4 16:57:04 2016 (r405251) +++ branches/2016Q1/mail/postfix/files/pkg-install.in Mon Jan 4 16:58:37 2016 (r405252) @@ -7,13 +7,17 @@ # will make the port/package use defaults which make postfix replace # sendmail as much as possible. -PREFIX=${PKG_PREFIX:=%%PREFIX%%} -ETCDIR=${ETCDIR:=%%ETCDIR%%} -DAEMONDIR=${DAEMONDIR:=%%DAEMONDIR%%} -READMEDIR=${READMEDIR:=%%READMEDIR%%} +# allowed vars during package installation BATCH=${BATCH:=no} POSTFIX_DEFAULT_MTA=${POSTFIX_DEFAULT_MTA:=no} -MC=/etc/mail/mailer.conf + +# fixed vars +PREFIX="%%PREFIX%%" +ETCDIR="%%ETCDIR%%" +DAEMONDIR="%%DAEMONDIR%%" +READMEDIR="%%READMEDIR%%" +MCP="%%DATADIR%%/mailer.conf.postfix" +MC="/etc/mail/mailer.conf" if [ "${POSTFIX_DEFAULT_MTA}" = "no" ]; then DEFAULT_REPLACE_MAILERCONF=n @@ -21,12 +25,6 @@ else DEFAULT_REPLACE_MAILERCONF=y fi -if [ -x /usr/sbin/nologin ]; then - NOLOGIN=/usr/sbin/nologin -else - NOLOGIN=/sbin/nologin -fi - ask() { local question default answer @@ -56,6 +54,25 @@ yesno() { done } +install_mailer_conf() { + echo "Activate Postfix in ${MC}" + /bin/mv -f ${MC} ${MC}.old + /usr/bin/install -m 644 ${MCP} ${MC} +} + +show_not_activated_msg() { + echo + echo "===============================================================" + echo "Postfix was *not* activated in /etc/mail/mailer.conf! " + echo + echo "To finish installation run the following commands:" + echo + echo " mv ${MC} ${MC}.old" + echo " install -m 0644 ${MCP} ${MC}" + echo "===============================================================" + echo +} + if [ "$2" = "POST-INSTALL" ]; then /bin/sh ${DAEMONDIR}/post-install tempdir=/tmp \ daemon_directory=${DAEMONDIR} \ @@ -71,18 +88,22 @@ if [ "$2" = "POST-INSTALL" -a -z "${PACK egrep -q "^newaliases.*${PREFIX}/sbin/sendmail" ${MC} ret=$? if [ ${ret} -ne 0 ]; then - if yesno "Would you like to activate Postfix in ${MC}" ${DEFAULT_REPLACE_MAILERCONF}; then - /bin/mv -f ${MC} ${MC}.old - echo "#" > ${MC} - echo -n "# Execute the Postfix sendmail program" >> ${MC} - echo ", named ${PREFIX}/sbin/sendmail" >> ${MC} - echo "#" >> ${MC} - echo "sendmail ${PREFIX}/sbin/sendmail" >> ${MC} - echo "send-mail ${PREFIX}/sbin/sendmail" >> ${MC} - echo "mailq ${PREFIX}/sbin/sendmail" >> ${MC} - echo "newaliases ${PREFIX}/sbin/sendmail" >> ${MC} + # Respect POSTFIX_DEFAULT_MTA, do not ask for confirmation! + # (This helps tools like salt, ansible or puppet on new installations) + if [ "${DEFAULT_REPLACE_MAILERCONF}" = "y" ]; then + install_mailer_conf + elif [ "${DEFAULT_REPLACE_MAILERCONF}" = "n" -a -t 0 ]; then + if yesno "Would you like to activate Postfix in ${MC}" ${DEFAULT_REPLACE_MAILERCONF:="n"}; then + install_mailer_conf + else + show_not_activated_msg + fi + else + show_not_activated_msg fi else + echo "===============================================================" echo "Postfix already activated in ${MC}" + echo "===============================================================" fi fi Modified: branches/2016Q1/mail/postfix/files/pkg-message.in ============================================================================== --- branches/2016Q1/mail/postfix/files/pkg-message.in Mon Jan 4 16:57:04 2016 (r405251) +++ branches/2016Q1/mail/postfix/files/pkg-message.in Mon Jan 4 16:58:37 2016 (r405252) @@ -1,27 +1,25 @@ -To enable postfix startup script please add postfix_enable="YES" in -your rc.conf +To use postfix instead of sendmail: + - clear sendmail queue and stop the sendmail daemons -If you not need sendmail anymore, please add in your rc.conf: - -sendmail_enable="NO" -sendmail_submit_enable="NO" -sendmail_outbound_enable="NO" -sendmail_msp_queue_enable="NO" - -And you can disable some sendmail specific daily maintenance routines in your -/etc/periodic.conf file: - -daily_clean_hoststat_enable="NO" -daily_status_mail_rejects_enable="NO" -daily_status_include_submit_mailq="NO" -daily_submit_queuerun="NO" - -If /etc/periodic.conf does not exist please create it and add those values. +Run the following commands to enable postfix during startup: + - sysrc postfix_enable="YES" + - sysrc sendmail_enable="NONE" + +If postfix is *not* already activated in /etc/mail/mailer.conf + - mv /etc/mail/mailer.conf /etc/mail/mailer.conf.old + - install -m 0644 %%DAEMONDIR%%/mailer.conf.postfix /etc/mail/mailer.conf + +Disable sendmail(8) specific tasks, +add the following lines to /etc/periodic.conf(.local): + daily_clean_hoststat_enable="NO" + daily_status_mail_rejects_enable="NO" + daily_status_include_submit_mailq="NO" + daily_submit_queuerun="NO" If you are using SASL, you need to make sure that postfix has access to read the sasldb file. This is accomplished by adding postfix to group mail and making the %%PREFIX%%/etc/sasldb* file(s) readable by group mail (this should be the default for new installs). -If you are upgrading from Postfix 2.6 or earlier, review the RELEASE_NOTES to +If you are upgrading from prior postfix version, review the RELEASE_NOTES to familiarize yourself with new features and incompatabilities. Modified: branches/2016Q1/mail/postfix/pkg-plist ============================================================================== --- branches/2016Q1/mail/postfix/pkg-plist Mon Jan 4 16:57:04 2016 (r405251) +++ branches/2016Q1/mail/postfix/pkg-plist Mon Jan 4 16:58:37 2016 (r405252) @@ -137,6 +137,7 @@ sbin/postmulti sbin/postsuper sbin/posttls-finger sbin/sendmail +%%DATADIR%%/mailer.conf.postfix @dir %%PFETC%% @dir(postfix,,700) /var/db/postfix @dir(postfix,,700) /var/spool/postfix/active From owner-svn-ports-branches@freebsd.org Mon Jan 4 17:05:16 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21DDDA62ED5; Mon, 4 Jan 2016 17:05:16 +0000 (UTC) (envelope-from rm@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 D32FD17E0; Mon, 4 Jan 2016 17:05:15 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04H5EB0070987; Mon, 4 Jan 2016 17:05:14 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04H5ENt070980; Mon, 4 Jan 2016 17:05:14 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201601041705.u04H5ENt070980@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Mon, 4 Jan 2016 17:05:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405254 - in branches/2016Q1/net-im/gajim: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 17:05:16 -0000 Author: rm Date: Mon Jan 4 17:05:14 2016 New Revision: 405254 URL: https://svnweb.freebsd.org/changeset/ports/405254 Log: MFH: r405253 net-im/gajim: update to 0.16.5 Gajim 0.16.5 (28 December 2015) * Improve MAM implementation * Improve security on connexion and for roster managment * Ability for emoticons to be sorted in menu Approved by: portmgr (blanket) Added: branches/2016Q1/net-im/gajim/files/patch-data_gajim-remote.desktop.in.in - copied unchanged from r405253, head/net-im/gajim/files/patch-data_gajim-remote.desktop.in.in branches/2016Q1/net-im/gajim/files/patch-data_gajim.desktop.in.in - copied unchanged from r405253, head/net-im/gajim/files/patch-data_gajim.desktop.in.in Modified: branches/2016Q1/net-im/gajim/Makefile branches/2016Q1/net-im/gajim/distinfo branches/2016Q1/net-im/gajim/files/patch-src-plugins_plugins_i18n.py branches/2016Q1/net-im/gajim/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net-im/gajim/Makefile ============================================================================== --- branches/2016Q1/net-im/gajim/Makefile Mon Jan 4 17:02:24 2016 (r405253) +++ branches/2016Q1/net-im/gajim/Makefile Mon Jan 4 17:05:14 2016 (r405254) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gajim -PORTVERSION= 0.16.4 -PORTREVISION= 1 +PORTVERSION= 0.16.5 CATEGORIES= net-im MASTER_SITES= http://gajim.org/downloads/0.16/ Modified: branches/2016Q1/net-im/gajim/distinfo ============================================================================== --- branches/2016Q1/net-im/gajim/distinfo Mon Jan 4 17:02:24 2016 (r405253) +++ branches/2016Q1/net-im/gajim/distinfo Mon Jan 4 17:05:14 2016 (r405254) @@ -1,2 +1,2 @@ -SHA256 (gajim-0.16.4.tar.bz2) = 2116ad3a5635c54b575ff53eed72fe4651fc50582f5094bfc6113d1cf0d1ce7f -SIZE (gajim-0.16.4.tar.bz2) = 4593307 +SHA256 (gajim-0.16.5.tar.bz2) = a5c015b3b140ec5e47d3842cbe701c9948af5a0cce36314248f0793c2d66d091 +SIZE (gajim-0.16.5.tar.bz2) = 4562971 Copied: branches/2016Q1/net-im/gajim/files/patch-data_gajim-remote.desktop.in.in (from r405253, head/net-im/gajim/files/patch-data_gajim-remote.desktop.in.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/net-im/gajim/files/patch-data_gajim-remote.desktop.in.in Mon Jan 4 17:05:14 2016 (r405254, copy of r405253, head/net-im/gajim/files/patch-data_gajim-remote.desktop.in.in) @@ -0,0 +1,14 @@ +Fix desktop-file-validate warnings. This is upstream commit: +https://trac.gajim.org/changeset/eaea5e65364b167d14dc191b00f114b4f5ccb508/ + +--- data/gajim-remote.desktop.in.in.orig 2015-12-28 12:38:50 UTC ++++ data/gajim-remote.desktop.in.in +@@ -1,7 +1,7 @@ + [Desktop Entry] + Categories=Network;InstantMessaging;RemoteAccess;ConsoleOnly; + _Name=Gajim Remote +-_Keywords=chat;messaging;im;jabber;xmpp;bonjour;voip ++_Keywords=chat;messaging;im;jabber;xmpp;bonjour;voip; + Version=1.0 + Exec=gajim-remote handle_uri %u + TryExec=gajim-remote Copied: branches/2016Q1/net-im/gajim/files/patch-data_gajim.desktop.in.in (from r405253, head/net-im/gajim/files/patch-data_gajim.desktop.in.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/net-im/gajim/files/patch-data_gajim.desktop.in.in Mon Jan 4 17:05:14 2016 (r405254, copy of r405253, head/net-im/gajim/files/patch-data_gajim.desktop.in.in) @@ -0,0 +1,14 @@ +Fix desktop-file-validate warnings. This is upstream commit: +https://trac.gajim.org/changeset/eaea5e65364b167d14dc191b00f114b4f5ccb508/ + +--- data/gajim.desktop.in.in.orig 2015-12-28 12:38:50 UTC ++++ data/gajim.desktop.in.in +@@ -3,7 +3,7 @@ Categories=Network;InstantMessaging;GTK; + _Name=Gajim + _GenericName=Jabber IM Client + _Comment=A GTK+ Jabber client +-_Keywords=chat;messaging;im;jabber;xmpp;bonjour;voip ++_Keywords=chat;messaging;im;jabber;xmpp;bonjour;voip; + Version=1.0 + Exec=gajim + Icon=gajim Modified: branches/2016Q1/net-im/gajim/files/patch-src-plugins_plugins_i18n.py ============================================================================== --- branches/2016Q1/net-im/gajim/files/patch-src-plugins_plugins_i18n.py Mon Jan 4 17:02:24 2016 (r405253) +++ branches/2016Q1/net-im/gajim/files/patch-src-plugins_plugins_i18n.py Mon Jan 4 17:05:14 2016 (r405254) @@ -1,6 +1,6 @@ ---- src/plugins/plugins_i18n.py.orig 2012-03-18 15:26:00.000000000 +0400 -+++ src/plugins/plugins_i18n.py 2012-03-21 08:21:52.000000000 +0400 -@@ -29,7 +29,6 @@ +--- src/plugins/plugins_i18n.py.orig 2015-12-28 12:38:51 UTC ++++ src/plugins/plugins_i18n.py +@@ -29,7 +29,6 @@ plugins_locale_dir = os_path.join(gajim. if os.name != 'nt': locale.setlocale(locale.LC_ALL, '') Modified: branches/2016Q1/net-im/gajim/pkg-plist ============================================================================== --- branches/2016Q1/net-im/gajim/pkg-plist Mon Jan 4 17:02:24 2016 (r405253) +++ branches/2016Q1/net-im/gajim/pkg-plist Mon Jan 4 17:05:14 2016 (r405254) @@ -5,6 +5,7 @@ man/man1/gajim-history-manager.1.gz man/man1/gajim-remote.1.gz man/man1/gajim.1.gz share/applications/gajim.desktop +share/applications/gajim-remote.desktop %%DATADIR%%/data/activities/default/doing_chores/buying_groceries.png %%DATADIR%%/data/activities/default/doing_chores/category.png %%DATADIR%%/data/activities/default/doing_chores/cleaning.png From owner-svn-ports-branches@freebsd.org Mon Jan 4 18:57:07 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F4EBA60A36; Mon, 4 Jan 2016 18:57:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D959134D; Mon, 4 Jan 2016 18:57:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04Iv62S007151; Mon, 4 Jan 2016 18:57:06 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04Iv6N4007150; Mon, 4 Jan 2016 18:57:06 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201601041857.u04Iv6N4007150@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 4 Jan 2016 18:57:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405262 - branches/2016Q1/x11-toolkits/py-fltk X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 18:57:07 -0000 Author: antoine Date: Mon Jan 4 18:57:06 2016 New Revision: 405262 URL: https://svnweb.freebsd.org/changeset/ports/405262 Log: MFH: r405113 r405118 - Fix build on FreeBSD-9 Reported by: pkg-fallout@ - Remove unneeded comment from last commit Spotted by: miwi@(thanks !) Modified: branches/2016Q1/x11-toolkits/py-fltk/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/x11-toolkits/py-fltk/Makefile ============================================================================== --- branches/2016Q1/x11-toolkits/py-fltk/Makefile Mon Jan 4 18:30:53 2016 (r405261) +++ branches/2016Q1/x11-toolkits/py-fltk/Makefile Mon Jan 4 18:57:06 2016 (r405262) @@ -28,6 +28,12 @@ PORTDOCS= * PORTEXAMPLES= * WRKSRC= ${WRKDIR}/pyFltk-${PORTVERSION} +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +USE_GCC= yes +.endif + post-patch: @${REINPLACE_CMD} -e "s|/usr/X11R6|${LOCALBASE}|g;s|package_data.*},||g;s|sunos5|dragonfly4', 'freebsd8', 'freebsd9', 'freebsd10', 'freebsd11|g" ${WRKSRC}/setup.py From owner-svn-ports-branches@freebsd.org Mon Jan 4 20:42:48 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0829FA610FD; Mon, 4 Jan 2016 20:42:48 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CCBB91D89; Mon, 4 Jan 2016 20:42:47 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u04Kgkql039123; Mon, 4 Jan 2016 20:42:46 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u04KgkJR039122; Mon, 4 Jan 2016 20:42:46 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601042042.u04KgkJR039122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 4 Jan 2016 20:42:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405266 - branches/2016Q1/net-p2p/sonarr X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 04 Jan 2016 20:42:48 -0000 Author: feld Date: Mon Jan 4 20:42:46 2016 New Revision: 405266 URL: https://svnweb.freebsd.org/changeset/ports/405266 Log: MFH: r405265 net-p2p/sonarr: Add curl as a dependency libcurl is needed for fallback when mono has issues with HTTPS PR: 205784 Approved by: ports-secteam (with hat) Modified: branches/2016Q1/net-p2p/sonarr/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net-p2p/sonarr/Makefile ============================================================================== --- branches/2016Q1/net-p2p/sonarr/Makefile Mon Jan 4 20:28:25 2016 (r405265) +++ branches/2016Q1/net-p2p/sonarr/Makefile Mon Jan 4 20:42:46 2016 (r405266) @@ -2,7 +2,7 @@ PORTNAME= sonarr PORTVERSION= 2.0.0.3645 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-p2p MASTER_SITES= http://download.sonarr.tv/v2/master/mono/ DISTNAME= NzbDrone.master.${PORTVERSION}.mono @@ -15,6 +15,7 @@ LICENSE= GPLv3 RUN_DEPENDS= mono>0:${PORTSDIR}/lang/mono \ mediainfo>0:${PORTSDIR}/multimedia/mediainfo \ sqlite3>0:${PORTSDIR}/databases/sqlite3 +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl USE_RC_SUBR= sonarr From owner-svn-ports-branches@freebsd.org Tue Jan 5 01:52:54 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38610A61582; Tue, 5 Jan 2016 01:52:54 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B4C71C83; Tue, 5 Jan 2016 01:52:53 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u051qrkU028792; Tue, 5 Jan 2016 01:52:53 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u051qr0C028791; Tue, 5 Jan 2016 01:52:53 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201601050152.u051qr0C028791@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 5 Jan 2016 01:52:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405268 - branches/2016Q1/www/squid/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 05 Jan 2016 01:52:54 -0000 Author: junovitch Date: Tue Jan 5 01:52:52 2016 New Revision: 405268 URL: https://svnweb.freebsd.org/changeset/ports/405268 Log: MFH: r405267 www/squid: Heimdal option build fixes - Fix squid build with Heimdal from ports. - Additionally fix squid build with base Heimdal when Heimdal from ports is installed. PR: 205461 Reported by: dewayne@heuristicsystems.com.au Submitted by: Pavel Timofeev (maintainer) Approved by: ports-secteam blanket Modified: branches/2016Q1/www/squid/files/patch-configure Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/squid/files/patch-configure ============================================================================== --- branches/2016Q1/www/squid/files/patch-configure Tue Jan 5 01:52:08 2016 (r405267) +++ branches/2016Q1/www/squid/files/patch-configure Tue Jan 5 01:52:52 2016 (r405268) @@ -1,5 +1,15 @@ --- configure.orig 2015-11-01 10:46:19 UTC +++ configure +@@ -27107,9 +27107,6 @@ + if test "x$ac_cv_path_krb5_config" != "xno" ; then + krb5confpath="`dirname $ac_cv_path_krb5_config`" + ac_heimdal="`$ac_cv_path_krb5_config --version 2>/dev/null | grep -c -i heimdal`" +- if test "x$with_heimdal_krb5" = "xyes"; then +- as_fn_error $? "Could not find pkg-config or krb5-config for Heimdal Kerberos" "$LINENO" 5 +- fi + else + if test "x$with_heimdal_krb5" = "xyes"; then + as_fn_error $? "Could not find krb5-config in path" "$LINENO" 5 @@ -32038,7 +32040,7 @@ done ## From owner-svn-ports-branches@freebsd.org Tue Jan 5 06:43:47 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7435EA61702; Tue, 5 Jan 2016 06:43:47 +0000 (UTC) (envelope-from ohauer@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 43B601128; Tue, 5 Jan 2016 06:43:47 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u056hkwO015658; Tue, 5 Jan 2016 06:43:46 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u056hkC1015657; Tue, 5 Jan 2016 06:43:46 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201601050643.u056hkC1015657@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Tue, 5 Jan 2016 06:43:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405273 - branches/2016Q1/mail/postfix X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 05 Jan 2016 06:43:47 -0000 Author: ohauer Date: Tue Jan 5 06:43:46 2016 New Revision: 405273 URL: https://svnweb.freebsd.org/changeset/ports/405273 Log: MFH: r405272 - fix misplaced strip flag Approved by: portmgr (implicit) Modified: branches/2016Q1/mail/postfix/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/mail/postfix/Makefile ============================================================================== --- branches/2016Q1/mail/postfix/Makefile Tue Jan 5 06:40:47 2016 (r405272) +++ branches/2016Q1/mail/postfix/Makefile Tue Jan 5 06:43:46 2016 (r405273) @@ -237,8 +237,8 @@ _REQUIRE+= ypserv .endif .if ${PORT_OPTIONS:MVDA} -PATCH_SITES+= http://vda.sourceforge.net/VDA/:-p1:vda -PATCHFILES+= postfix-vda-v13-${VDAVERSION}.patch:vda +PATCH_SITES+= http://vda.sourceforge.net/VDA/:vda +PATCHFILES+= postfix-vda-v13-${VDAVERSION}.patch:-p1:vda .endif .if ${PORT_OPTIONS:MTEST} From owner-svn-ports-branches@freebsd.org Tue Jan 5 13:12:58 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56885A6258F; Tue, 5 Jan 2016 13:12:58 +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 1286E19E5; Tue, 5 Jan 2016 13:12:57 +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 u05DCvNk030961; Tue, 5 Jan 2016 13:12:57 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u05DCuSf030958; Tue, 5 Jan 2016 13:12:56 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201601051312.u05DCuSf030958@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Tue, 5 Jan 2016 13:12:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405287 - in branches/2016Q1/archivers/unzip: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 05 Jan 2016 13:12:58 -0000 Author: ehaupt Date: Tue Jan 5 13:12:56 2016 New Revision: 405287 URL: https://svnweb.freebsd.org/changeset/ports/405287 Log: MFH: r405286 Fix multiple vulnerabilities. PR: 204413 (based on) Notified by: venture37@geeklan.co.uk Security: CVE-2015-7696, CVE-2015-7697 Approved by: ports-secteam (feld) Added: branches/2016Q1/archivers/unzip/files/patch-crypt.c - copied unchanged from r405286, head/archivers/unzip/files/patch-crypt.c Modified: branches/2016Q1/archivers/unzip/Makefile branches/2016Q1/archivers/unzip/files/patch-extract.c Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/archivers/unzip/Makefile ============================================================================== --- branches/2016Q1/archivers/unzip/Makefile Tue Jan 5 13:08:34 2016 (r405286) +++ branches/2016Q1/archivers/unzip/Makefile Tue Jan 5 13:12:56 2016 (r405287) @@ -3,7 +3,7 @@ PORTNAME= unzip PORTVERSION= 6.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= archivers MASTER_SITES= SF/infozip/UnZip%206.x%20%28latest%29/UnZip%20${PORTVERSION}/:main \ SF/infozip/UnZip%205.x%20and%20earlier/5.51/:unreduce Copied: branches/2016Q1/archivers/unzip/files/patch-crypt.c (from r405286, head/archivers/unzip/files/patch-crypt.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/archivers/unzip/files/patch-crypt.c Tue Jan 5 13:12:56 2016 (r405287, copy of r405286, head/archivers/unzip/files/patch-crypt.c) @@ -0,0 +1,21 @@ +--- crypt.c.orig 2007-01-05 16:47:36.000000000 +0100 ++++ crypt.c 2016-01-04 14:39:27.300502995 +0100 +@@ -465,7 +465,17 @@ + GLOBAL(pInfo->encrypted) = FALSE; + defer_leftover_input(__G); + for (n = 0; n < RAND_HEAD_LEN; n++) { +- b = NEXTBYTE; ++ /* 2012-11-23 SMS. (OUSPG report.) ++ * Quit early if compressed size < HEAD_LEN. The resulting ++ * error message ("unable to get password") could be improved, ++ * but it's better than trying to read nonexistent data, and ++ * then continuing with a negative G.csize. (See ++ * fileio.c:readbyte()). ++ */ ++ if ((b = NEXTBYTE) == (ush)EOF) ++ { ++ return PK_ERR; ++ } + h[n] = (uch)b; + Trace((stdout, " (%02x)", h[n])); + } Modified: branches/2016Q1/archivers/unzip/files/patch-extract.c ============================================================================== --- branches/2016Q1/archivers/unzip/files/patch-extract.c Tue Jan 5 13:08:34 2016 (r405286) +++ branches/2016Q1/archivers/unzip/files/patch-extract.c Tue Jan 5 13:12:56 2016 (r405287) @@ -1,5 +1,5 @@ ---- extract.c.orig 2009-03-14 01:32:52 UTC -+++ extract.c +--- extract.c.orig 2009-03-14 02:32:52.000000000 +0100 ++++ extract.c 2016-01-04 14:43:11.813488458 +0100 @@ -1,5 +1,5 @@ /* - Copyright (c) 1990-2009 Info-ZIP. All rights reserved. @@ -7,7 +7,7 @@ See the accompanying file LICENSE, version 2009-Jan-02 or later (the contents of which are also included in unzip.h) for terms of use. -@@ -298,6 +298,8 @@ char ZCONST Far TruncNTSD[] = +@@ -298,6 +298,8 @@ #ifndef SFX static ZCONST char Far InconsistEFlength[] = "bad extra-field entry:\n \ EF block length (%u bytes) exceeds remaining EF data (%u bytes)\n"; @@ -16,7 +16,7 @@ static ZCONST char Far InvalidComprDataEAs[] = " invalid compressed data for EAs\n"; # if (defined(WIN32) && defined(NTSD_EAS)) -@@ -2023,7 +2025,8 @@ static int TestExtraField(__G__ ef, ef_l +@@ -2023,7 +2025,8 @@ ebID = makeword(ef); ebLen = (unsigned)makeword(ef+EB_LEN); @@ -26,7 +26,7 @@ /* Discovered some extra field inconsistency! */ if (uO.qflag) Info(slide, 1, ((char *)slide, "%-22s ", -@@ -2032,6 +2035,16 @@ static int TestExtraField(__G__ ef, ef_l +@@ -2032,6 +2035,16 @@ ebLen, (ef_len - EB_HEADSIZE))); return PK_ERR; } @@ -43,7 +43,7 @@ switch (ebID) { case EF_OS2: -@@ -2217,14 +2230,28 @@ static int test_compr_eb(__G__ eb, eb_si +@@ -2217,14 +2230,28 @@ ulg eb_ucsize; uch *eb_ucptr; int r; @@ -75,3 +75,16 @@ if ( #ifdef INT_16BIT +@@ -2701,6 +2728,12 @@ + int repeated_buf_err; + bz_stream bstrm; + ++ if (G.incnt <= 0 && G.csize <= 0L) { ++ /* avoid an infinite loop */ ++ Trace((stderr, "UZbunzip2() got empty input\n")); ++ return 2; ++ } ++ + #if (defined(DLL) && !defined(NO_SLIDE_REDIR)) + if (G.redirect_slide) + wsize = G.redirect_size, redirSlide = G.redirect_buffer; From owner-svn-ports-branches@freebsd.org Tue Jan 5 15:06:09 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96EB8A636B9; Tue, 5 Jan 2016 15:06:09 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67F9D1148; Tue, 5 Jan 2016 15:06:09 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u05F68ep063411; Tue, 5 Jan 2016 15:06:08 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u05F68k8063407; Tue, 5 Jan 2016 15:06:08 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601051506.u05F68k8063407@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Tue, 5 Jan 2016 15:06:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405295 - in branches/2016Q1/graphics/tiff: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 05 Jan 2016 15:06:09 -0000 Author: rakuco Date: Tue Jan 5 15:06:08 2016 New Revision: 405295 URL: https://svnweb.freebsd.org/changeset/ports/405295 Log: MFH: r405294 Add fixes for CVE-2015-8665, CVE-2015-8683 and other vulnerabilities. Besides fixing the two CVEs mentioned above, this change also pulls two other commits from libtiff upstream fixing other out-of-bounds reads that do not have corresponding CVEs and were reported directly in libtiff's bug tracker. PR: 205923 Approved by: portmgr (antoine) Obtained from: libtiff CVS repository Security: b65e4914-b3bc-11e5-8255-5453ed2e2b49 Security: bd349f7a-b3b9-11e5-8255-5453ed2e2b49 Approved by: portmgr blanket Added: branches/2016Q1/graphics/tiff/files/patch-CVE-2015-8665_8683 - copied unchanged from r405294, head/graphics/tiff/files/patch-CVE-2015-8665_8683 branches/2016Q1/graphics/tiff/files/patch-libtiff_tif__luv.c - copied unchanged from r405294, head/graphics/tiff/files/patch-libtiff_tif__luv.c branches/2016Q1/graphics/tiff/files/patch-libtiff_tif__next.c - copied unchanged from r405294, head/graphics/tiff/files/patch-libtiff_tif__next.c Modified: branches/2016Q1/graphics/tiff/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/graphics/tiff/Makefile ============================================================================== --- branches/2016Q1/graphics/tiff/Makefile Tue Jan 5 15:04:58 2016 (r405294) +++ branches/2016Q1/graphics/tiff/Makefile Tue Jan 5 15:06:08 2016 (r405295) @@ -3,6 +3,7 @@ PORTNAME= tiff PORTVERSION= 4.0.6 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \ http://download.osgeo.org/libtiff/ Copied: branches/2016Q1/graphics/tiff/files/patch-CVE-2015-8665_8683 (from r405294, head/graphics/tiff/files/patch-CVE-2015-8665_8683) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/graphics/tiff/files/patch-CVE-2015-8665_8683 Tue Jan 5 15:06:08 2016 (r405295, copy of r405294, head/graphics/tiff/files/patch-CVE-2015-8665_8683) @@ -0,0 +1,118 @@ +revision 1.94 +date: 2015-12-26 17:32:03 +0000; author: erouault; state: Exp; lines: +23 -14; commitid: ohB9uRxvIWq9YtOy; +* libtiff/tif_getimage.c: fix out-of-bound reads in TIFFRGBAImage +interface in case of unsupported values of SamplesPerPixel/ExtraSamples +for LogLUV / CIELab. Add explicit call to TIFFRGBAImageOK() in +TIFFRGBAImageBegin(). Fix CVE-2015-8665 reported by limingxing and +CVE-2015-8683 reported by zzf of Alibaba. + +Index: libtiff/tif_getimage.c +=================================================================== +RCS file: /cvs/maptools/cvsroot/libtiff/libtiff/tif_getimage.c,v +retrieving revision 1.93 +retrieving revision 1.94 +diff -u -r1.93 -r1.94 +--- libtiff/tif_getimage.c 22 Nov 2015 15:31:03 -0000 1.93 ++++ libtiff/tif_getimage.c 26 Dec 2015 17:32:03 -0000 1.94 +@@ -1,4 +1,4 @@ +-/* $Id: tif_getimage.c,v 1.93 2015-11-22 15:31:03 erouault Exp $ */ ++/* $Id: tif_getimage.c,v 1.94 2015-12-26 17:32:03 erouault Exp $ */ + + /* + * Copyright (c) 1991-1997 Sam Leffler +@@ -182,20 +182,22 @@ + "Planarconfiguration", td->td_planarconfig); + return (0); + } +- if( td->td_samplesperpixel != 3 ) ++ if( td->td_samplesperpixel != 3 || colorchannels != 3 ) + { + sprintf(emsg, +- "Sorry, can not handle image with %s=%d", +- "Samples/pixel", td->td_samplesperpixel); ++ "Sorry, can not handle image with %s=%d, %s=%d", ++ "Samples/pixel", td->td_samplesperpixel, ++ "colorchannels", colorchannels); + return 0; + } + break; + case PHOTOMETRIC_CIELAB: +- if( td->td_samplesperpixel != 3 || td->td_bitspersample != 8 ) ++ if( td->td_samplesperpixel != 3 || colorchannels != 3 || td->td_bitspersample != 8 ) + { + sprintf(emsg, +- "Sorry, can not handle image with %s=%d and %s=%d", ++ "Sorry, can not handle image with %s=%d, %s=%d and %s=%d", + "Samples/pixel", td->td_samplesperpixel, ++ "colorchannels", colorchannels, + "Bits/sample", td->td_bitspersample); + return 0; + } +@@ -255,6 +257,9 @@ + int colorchannels; + uint16 *red_orig, *green_orig, *blue_orig; + int n_color; ++ ++ if( !TIFFRGBAImageOK(tif, emsg) ) ++ return 0; + + /* Initialize to normal values */ + img->row_offset = 0; +@@ -2509,29 +2514,33 @@ + case PHOTOMETRIC_RGB: + switch (img->bitspersample) { + case 8: +- if (img->alpha == EXTRASAMPLE_ASSOCALPHA) ++ if (img->alpha == EXTRASAMPLE_ASSOCALPHA && ++ img->samplesperpixel >= 4) + img->put.contig = putRGBAAcontig8bittile; +- else if (img->alpha == EXTRASAMPLE_UNASSALPHA) ++ else if (img->alpha == EXTRASAMPLE_UNASSALPHA && ++ img->samplesperpixel >= 4) + { + if (BuildMapUaToAa(img)) + img->put.contig = putRGBUAcontig8bittile; + } +- else ++ else if( img->samplesperpixel >= 3 ) + img->put.contig = putRGBcontig8bittile; + break; + case 16: +- if (img->alpha == EXTRASAMPLE_ASSOCALPHA) ++ if (img->alpha == EXTRASAMPLE_ASSOCALPHA && ++ img->samplesperpixel >=4 ) + { + if (BuildMapBitdepth16To8(img)) + img->put.contig = putRGBAAcontig16bittile; + } +- else if (img->alpha == EXTRASAMPLE_UNASSALPHA) ++ else if (img->alpha == EXTRASAMPLE_UNASSALPHA && ++ img->samplesperpixel >=4 ) + { + if (BuildMapBitdepth16To8(img) && + BuildMapUaToAa(img)) + img->put.contig = putRGBUAcontig16bittile; + } +- else ++ else if( img->samplesperpixel >=3 ) + { + if (BuildMapBitdepth16To8(img)) + img->put.contig = putRGBcontig16bittile; +@@ -2540,7 +2549,7 @@ + } + break; + case PHOTOMETRIC_SEPARATED: +- if (buildMap(img)) { ++ if (img->samplesperpixel >=4 && buildMap(img)) { + if (img->bitspersample == 8) { + if (!img->Map) + img->put.contig = putRGBcontig8bitCMYKtile; +@@ -2636,7 +2645,7 @@ + } + break; + case PHOTOMETRIC_CIELAB: +- if (buildMap(img)) { ++ if (img->samplesperpixel == 3 && buildMap(img)) { + if (img->bitspersample == 8) + img->put.contig = initCIELabConversion(img); + break; Copied: branches/2016Q1/graphics/tiff/files/patch-libtiff_tif__luv.c (from r405294, head/graphics/tiff/files/patch-libtiff_tif__luv.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/graphics/tiff/files/patch-libtiff_tif__luv.c Tue Jan 5 15:06:08 2016 (r405295, copy of r405294, head/graphics/tiff/files/patch-libtiff_tif__luv.c) @@ -0,0 +1,176 @@ +revision 1.41 +date: 2015-12-27 16:25:11 +0000; author: erouault; state: Exp; lines: +45 -12; commitid: gXczlJDfVlBdzBOy; +* libtiff/tif_luv.c: fix potential out-of-bound writes in decode +functions in non debug builds by replacing assert()s by regular if +checks (bugzilla #2522). +Fix potential out-of-bound reads in case of short input data. + +Index: libtiff/tif_luv.c +=================================================================== +RCS file: /cvs/maptools/cvsroot/libtiff/libtiff/tif_luv.c,v +retrieving revision 1.40 +retrieving revision 1.41 +diff -u -r1.40 -r1.41 +--- libtiff/tif_luv.c 21 Jun 2015 01:09:09 -0000 1.40 ++++ libtiff/tif_luv.c 27 Dec 2015 16:25:11 -0000 1.41 +@@ -1,4 +1,4 @@ +-/* $Id: tif_luv.c,v 1.40 2015-06-21 01:09:09 bfriesen Exp $ */ ++/* $Id: tif_luv.c,v 1.41 2015-12-27 16:25:11 erouault Exp $ */ + + /* + * Copyright (c) 1997 Greg Ward Larson +@@ -202,7 +202,11 @@ + if (sp->user_datafmt == SGILOGDATAFMT_16BIT) + tp = (int16*) op; + else { +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + tp = (int16*) sp->tbuf; + } + _TIFFmemset((void*) tp, 0, npixels*sizeof (tp[0])); +@@ -211,9 +215,11 @@ + cc = tif->tif_rawcc; + /* get each byte string */ + for (shft = 2*8; (shft -= 8) >= 0; ) { +- for (i = 0; i < npixels && cc > 0; ) ++ for (i = 0; i < npixels && cc > 0; ) { + if (*bp >= 128) { /* run */ +- rc = *bp++ + (2-128); /* TODO: potential input buffer overrun when decoding corrupt or truncated data */ ++ if( cc < 2 ) ++ break; ++ rc = *bp++ + (2-128); + b = (int16)(*bp++ << shft); + cc -= 2; + while (rc-- && i < npixels) +@@ -223,6 +229,7 @@ + while (--cc && rc-- && i < npixels) + tp[i++] |= (int16)*bp++ << shft; + } ++ } + if (i != npixels) { + #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__)) + TIFFErrorExt(tif->tif_clientdata, module, +@@ -268,13 +275,17 @@ + if (sp->user_datafmt == SGILOGDATAFMT_RAW) + tp = (uint32 *)op; + else { +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + tp = (uint32 *) sp->tbuf; + } + /* copy to array of uint32 */ + bp = (unsigned char*) tif->tif_rawcp; + cc = tif->tif_rawcc; +- for (i = 0; i < npixels && cc > 0; i++) { ++ for (i = 0; i < npixels && cc >= 3; i++) { + tp[i] = bp[0] << 16 | bp[1] << 8 | bp[2]; + bp += 3; + cc -= 3; +@@ -325,7 +336,11 @@ + if (sp->user_datafmt == SGILOGDATAFMT_RAW) + tp = (uint32*) op; + else { +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + tp = (uint32*) sp->tbuf; + } + _TIFFmemset((void*) tp, 0, npixels*sizeof (tp[0])); +@@ -334,11 +349,13 @@ + cc = tif->tif_rawcc; + /* get each byte string */ + for (shft = 4*8; (shft -= 8) >= 0; ) { +- for (i = 0; i < npixels && cc > 0; ) ++ for (i = 0; i < npixels && cc > 0; ) { + if (*bp >= 128) { /* run */ ++ if( cc < 2 ) ++ break; + rc = *bp++ + (2-128); + b = (uint32)*bp++ << shft; +- cc -= 2; /* TODO: potential input buffer overrun when decoding corrupt or truncated data */ ++ cc -= 2; + while (rc-- && i < npixels) + tp[i++] |= b; + } else { /* non-run */ +@@ -346,6 +363,7 @@ + while (--cc && rc-- && i < npixels) + tp[i++] |= (uint32)*bp++ << shft; + } ++ } + if (i != npixels) { + #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__)) + TIFFErrorExt(tif->tif_clientdata, module, +@@ -413,6 +431,7 @@ + static int + LogL16Encode(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s) + { ++ static const char module[] = "LogL16Encode"; + LogLuvState* sp = EncoderState(tif); + int shft; + tmsize_t i; +@@ -433,7 +452,11 @@ + tp = (int16*) bp; + else { + tp = (int16*) sp->tbuf; +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + (*sp->tfunc)(sp, bp, npixels); + } + /* compress each byte string */ +@@ -506,6 +529,7 @@ + static int + LogLuvEncode24(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s) + { ++ static const char module[] = "LogLuvEncode24"; + LogLuvState* sp = EncoderState(tif); + tmsize_t i; + tmsize_t npixels; +@@ -521,7 +545,11 @@ + tp = (uint32*) bp; + else { + tp = (uint32*) sp->tbuf; +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + (*sp->tfunc)(sp, bp, npixels); + } + /* write out encoded pixels */ +@@ -553,6 +581,7 @@ + static int + LogLuvEncode32(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s) + { ++ static const char module[] = "LogLuvEncode32"; + LogLuvState* sp = EncoderState(tif); + int shft; + tmsize_t i; +@@ -574,7 +603,11 @@ + tp = (uint32*) bp; + else { + tp = (uint32*) sp->tbuf; +- assert(sp->tbuflen >= npixels); ++ if(sp->tbuflen < npixels) { ++ TIFFErrorExt(tif->tif_clientdata, module, ++ "Translation buffer too short"); ++ return (0); ++ } + (*sp->tfunc)(sp, bp, npixels); + } + /* compress each byte string */ Copied: branches/2016Q1/graphics/tiff/files/patch-libtiff_tif__next.c (from r405294, head/graphics/tiff/files/patch-libtiff_tif__next.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/graphics/tiff/files/patch-libtiff_tif__next.c Tue Jan 5 15:06:08 2016 (r405295, copy of r405294, head/graphics/tiff/files/patch-libtiff_tif__next.c) @@ -0,0 +1,54 @@ +revision 1.17 +date: 2015-12-27 16:55:20 +0000; author: erouault; state: Exp; lines: +9 -3; commitid: 4yLOaM0uFVPyJBOy; +* libtiff/tif_next.c: fix potential out-of-bound write in NeXTDecode() +triggered by http://lcamtuf.coredump.cx/afl/vulns/libtiff5.tif +(bugzilla #2508) + +Index: libtiff/tif_next.c +=================================================================== +RCS file: /cvs/maptools/cvsroot/libtiff/libtiff/tif_next.c,v +retrieving revision 1.16 +retrieving revision 1.17 +diff -u -r1.16 -r1.17 +--- libtiff/tif_next.c 29 Dec 2014 12:09:11 -0000 1.16 ++++ libtiff/tif_next.c 27 Dec 2015 16:55:20 -0000 1.17 +@@ -1,4 +1,4 @@ +-/* $Id: tif_next.c,v 1.16 2014-12-29 12:09:11 erouault Exp $ */ ++/* $Id: tif_next.c,v 1.17 2015-12-27 16:55:20 erouault Exp $ */ + + /* + * Copyright (c) 1988-1997 Sam Leffler +@@ -37,7 +37,7 @@ + case 0: op[0] = (unsigned char) ((v) << 6); break; \ + case 1: op[0] |= (v) << 4; break; \ + case 2: op[0] |= (v) << 2; break; \ +- case 3: *op++ |= (v); break; \ ++ case 3: *op++ |= (v); op_offset++; break; \ + } \ + } + +@@ -106,6 +106,7 @@ + uint32 imagewidth = tif->tif_dir.td_imagewidth; + if( isTiled(tif) ) + imagewidth = tif->tif_dir.td_tilewidth; ++ tmsize_t op_offset = 0; + + /* + * The scanline is composed of a sequence of constant +@@ -122,10 +123,15 @@ + * bounds, potentially resulting in a security + * issue. + */ +- while (n-- > 0 && npixels < imagewidth) ++ while (n-- > 0 && npixels < imagewidth && op_offset < scanline) + SETPIXEL(op, grey); + if (npixels >= imagewidth) + break; ++ if (op_offset >= scanline ) { ++ TIFFErrorExt(tif->tif_clientdata, module, "Invalid data for scanline %ld", ++ (long) tif->tif_row); ++ return (0); ++ } + if (cc == 0) + goto bad; + n = *bp++, cc--; From owner-svn-ports-branches@freebsd.org Tue Jan 5 16:24:38 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75259A6316F; Tue, 5 Jan 2016 16:24:38 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C9201287; Tue, 5 Jan 2016 16:24:38 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u05GObBI087518; Tue, 5 Jan 2016 16:24:37 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u05GObsl087515; Tue, 5 Jan 2016 16:24:37 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201601051624.u05GObsl087515@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Tue, 5 Jan 2016 16:24:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405301 - in branches/2016Q1/multimedia/mkvtoolnix: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 05 Jan 2016 16:24:38 -0000 Author: riggs Date: Tue Jan 5 16:24:36 2016 New Revision: 405301 URL: https://svnweb.freebsd.org/changeset/ports/405301 Log: MFH: r405290 Update to upstream version 8.7.0 ; Fix build failure on pre-10.x systems Approved by: ports-secteam (feld) Added: branches/2016Q1/multimedia/mkvtoolnix/files/patch-lib_nlohmann-json_src_json.hpp - copied unchanged from r405290, head/multimedia/mkvtoolnix/files/patch-lib_nlohmann-json_src_json.hpp Modified: branches/2016Q1/multimedia/mkvtoolnix/Makefile branches/2016Q1/multimedia/mkvtoolnix/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/multimedia/mkvtoolnix/Makefile ============================================================================== --- branches/2016Q1/multimedia/mkvtoolnix/Makefile Tue Jan 5 16:12:36 2016 (r405300) +++ branches/2016Q1/multimedia/mkvtoolnix/Makefile Tue Jan 5 16:24:36 2016 (r405301) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mkvtoolnix -PORTVERSION= 8.6.1 +PORTVERSION= 8.7.0 CATEGORIES= multimedia audio MASTER_SITES= http://www.bunkus.org/videotools/mkvtoolnix/sources/ \ LOCAL/ehaupt @@ -81,6 +81,8 @@ post-patch: ${WRKSRC}/src/output/p_mpeg4_p10.cpp \ ${WRKSRC}/src/output/p_tta.cpp \ ${WRKSRC}/src/output/p_wavpack.cpp + @${REINPLACE_CMD} -e 's|std::lround|lround|g' \ + ${WRKSRC}/src/propedit/tag_target.cpp .endif ${REINPLACE_CMD} -e '/LIBS="-lintl/s,-liconv,$$ICONV_LIBS,' \ ${WRKSRC}/configure Modified: branches/2016Q1/multimedia/mkvtoolnix/distinfo ============================================================================== --- branches/2016Q1/multimedia/mkvtoolnix/distinfo Tue Jan 5 16:12:36 2016 (r405300) +++ branches/2016Q1/multimedia/mkvtoolnix/distinfo Tue Jan 5 16:24:36 2016 (r405301) @@ -1,2 +1,2 @@ -SHA256 (mkvtoolnix-8.6.1.tar.xz) = 815d8355b6a83af01c957543cee8716f1dad53e03b2ecf58b821099cd3c8fa77 -SIZE (mkvtoolnix-8.6.1.tar.xz) = 3242840 +SHA256 (mkvtoolnix-8.7.0.tar.xz) = 33502efa9a44ad561e89753d9224b7eac95b2a887812ea3d8aa2051ff3f5c15a +SIZE (mkvtoolnix-8.7.0.tar.xz) = 3273484 Copied: branches/2016Q1/multimedia/mkvtoolnix/files/patch-lib_nlohmann-json_src_json.hpp (from r405290, head/multimedia/mkvtoolnix/files/patch-lib_nlohmann-json_src_json.hpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/multimedia/mkvtoolnix/files/patch-lib_nlohmann-json_src_json.hpp Tue Jan 5 16:24:36 2016 (r405301, copy of r405290, head/multimedia/mkvtoolnix/files/patch-lib_nlohmann-json_src_json.hpp) @@ -0,0 +1,22 @@ +--- lib/nlohmann-json/src/json.hpp.orig 2015-12-31 12:23:52 UTC ++++ lib/nlohmann-json/src/json.hpp +@@ -5737,7 +5737,9 @@ class basic_json + /// use integer array index as key + case (value_t::array): + { +- return std::to_string(array_index); ++ std::ostringstream TempStream; ++ TempStream << array_index; ++ return TempStream.str(); + } + + /// use key from the object +@@ -6902,7 +6904,7 @@ basic_json_parser_59: + { + // conversion + typename string_t::value_type* endptr; +- const auto float_val = std::strtold(reinterpret_cast(m_start), ++ const auto float_val = std::strtod(reinterpret_cast(m_start), + &endptr); + + // return float_val if the whole number was translated and NAN From owner-svn-ports-branches@freebsd.org Tue Jan 5 16:35:40 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3E09A63518; Tue, 5 Jan 2016 16:35:39 +0000 (UTC) (envelope-from jhale@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 A5CB218E0; Tue, 5 Jan 2016 16:35:39 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u05GZciD090737; Tue, 5 Jan 2016 16:35:38 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u05GZcxP090736; Tue, 5 Jan 2016 16:35:38 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201601051635.u05GZcxP090736@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Tue, 5 Jan 2016 16:35:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405302 - branches/2016Q1/devel/plan9port X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 05 Jan 2016 16:35:40 -0000 Author: jhale Date: Tue Jan 5 16:35:38 2016 New Revision: 405302 URL: https://svnweb.freebsd.org/changeset/ports/405302 Log: MFH: r405099 r405297 --------------- Fix WRKSRC after r404834. The top-level directory in the tarball is now called "plan9port" instead of "plan9". This fixes `make patch': ===> Missing license file for LUCENT in /wrkdirs/usr/ports/devel/plan9port/work/plan9/LICENSE Thanks to antoine for poking me. --------------- - Fix staging after r405099 While here: - Remove @dirrm - Use new method of dealing with permissions and empty dirs - Remove .hgignore and .hgtags - Bump PORTREVISION due to plist change Approved by: portmgr (miwi) Modified: branches/2016Q1/devel/plan9port/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/plan9port/Makefile ============================================================================== --- branches/2016Q1/devel/plan9port/Makefile Tue Jan 5 16:24:36 2016 (r405301) +++ branches/2016Q1/devel/plan9port/Makefile Tue Jan 5 16:35:38 2016 (r405302) @@ -3,7 +3,7 @@ PORTNAME= plan9port PORTVERSION= 20140306 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel plan9 MASTER_SITES= https://plan9port.googlecode.com/files/ @@ -48,12 +48,15 @@ REINPLACE_ARGS= -i "" # necessary since PLAN9= ${PREFIX}/plan9 -EMPTY_DIRS= plan9/log \ - plan9/bin/lpbin \ - plan9/dist/troff \ - plan9/mail/queue \ +EMPTY_DIRS= plan9/mail/queue \ + plan9/log \ plan9/dist/debian \ - plan9/dist/pkg + plan9/dist/pkg \ + plan9/dist/troff \ + plan9/bin/lpbin + +post-extract: + ${MV} ${WRKDIR}/plan9port ${WRKDIR}/plan9 post-patch: @${FIND} ${WRKSRC}/man -type f -regex ".*\.[0-9?]$\" \ @@ -75,14 +78,15 @@ do-build: # Dynamic PLIST sucks, but it's over 8K lines, which sucks even more :( post-build: ${RM} -rf `${FIND} ${WRKSRC}/dist -type f ! -regex ".*\.png"` - ${RM} -rf `${FIND} ${WRKSRC} -name .hg -o -name .cvsignore` - ( cd ${WRKDIR} ; \ - ${FIND} plan9 -type f; for D in ${EMPTY_DIRS}; do \ - ${ECHO_CMD} "@exec ${MKDIR} ${PREFIX}/$${D}"; \ + ${RM} -rf `${FIND} ${WRKSRC} -name .hg -o -name .hgignore \ + -o -name .hgtags -o -name .cvsignore` + @( cd ${WRKDIR} ; \ + ${FIND} plan9 -type f; \ + ${ECHO_CMD} "@dir(,,1777) plan9/news"; \ + for D in ${EMPTY_DIRS}; do \ + ${ECHO_CMD} "@dir $${D}"; \ done; \ - ${FIND} plan9 -type d | ${SORT} -r | ${SED} -e 's|^|@dirrm |'; \ - ) | ${PERL} -pe '$$_ =~ s,plan9/bin/auxstats,\@group kmem\n\@mode\ - 2755\n$$&\n\@group\n\@mode,' > ${PLIST} + ) | sed -e '/plan9\/bin\/auxstats/s|^|\@\(,kmem,2755\) |' > ${PLIST} do-install: ${CP} -a ${WRKSRC} ${STAGEDIR}${PREFIX} @@ -91,7 +95,6 @@ post-install: cd ${STAGEDIR}${PLAN9} && ${SETENV} PLAN9=${PLAN9} \ PATH=${PATH}:${STAGEDIR}${PLAN9}/bin \ ${SH} lib/moveplan9.sh ${WRKSRC} - ${CHMOD} 01777 ${STAGEDIR}${PLAN9}/news install-user: @${MKDIR} ${HOME}/lib From owner-svn-ports-branches@freebsd.org Tue Jan 5 17:08:13 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 266A5A63EC7; Tue, 5 Jan 2016 17:08:13 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E5D751C92; Tue, 5 Jan 2016 17:08:12 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u05H8C62000233; Tue, 5 Jan 2016 17:08:12 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u05H8B9B000224; Tue, 5 Jan 2016 17:08:11 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201601051708.u05H8B9B000224@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Tue, 5 Jan 2016 17:08:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405303 - in branches/2016Q1: emulators/xen emulators/xen-kernel emulators/xen-kernel/files sysutils/xen-tools sysutils/xen-tools/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 05 Jan 2016 17:08:13 -0000 Author: royger (src committer) Date: Tue Jan 5 17:08:11 2016 New Revision: 405303 URL: https://svnweb.freebsd.org/changeset/ports/405303 Log: -n MFH: -n r405279 xen: fix XSAs Add the following XSA patches: 159, 160, 162, 165, 166. Security: CVE-2015-8339 Security: CVE-2015-8340 Security: CVE-2015-8341 Security: CVE-2015-7504 Security: CVE-2015-8555 PR: 205841 Sponsored by: Citrix Systems R&D Requested by: junovitch Reviewed by: junovitch Differential revision: https://reviews.freebsd.org/D4783 Approved by: ports-secteam (miwi) Added: branches/2016Q1/emulators/xen-kernel/files/xsa159.patch - copied unchanged from r405279, head/emulators/xen-kernel/files/xsa159.patch branches/2016Q1/emulators/xen-kernel/files/xsa165-4.5.patch - copied unchanged from r405279, head/emulators/xen-kernel/files/xsa165-4.5.patch branches/2016Q1/emulators/xen-kernel/files/xsa166-4.5.patch - copied unchanged from r405279, head/emulators/xen-kernel/files/xsa166-4.5.patch branches/2016Q1/sysutils/xen-tools/files/xsa160-4.6.patch - copied unchanged from r405279, head/sysutils/xen-tools/files/xsa160-4.6.patch branches/2016Q1/sysutils/xen-tools/files/xsa162-qemuu.patch - copied unchanged from r405279, head/sysutils/xen-tools/files/xsa162-qemuu.patch Modified: branches/2016Q1/emulators/xen-kernel/Makefile branches/2016Q1/emulators/xen/Makefile branches/2016Q1/sysutils/xen-tools/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/emulators/xen-kernel/Makefile ============================================================================== --- branches/2016Q1/emulators/xen-kernel/Makefile Tue Jan 5 16:35:38 2016 (r405302) +++ branches/2016Q1/emulators/xen-kernel/Makefile Tue Jan 5 17:08:11 2016 (r405303) @@ -3,6 +3,7 @@ PORTNAME= xen PKGNAMESUFFIX= -kernel PORTVERSION= 4.5.2 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ @@ -30,7 +31,11 @@ EXTRA_PATCHES= ${FILESDIR}/0001-introduc ${FILESDIR}/0005-x86-rework-paging_log_dirty_op-to-work-with-hvm-gues.patch:-p2 \ ${FILESDIR}/0006-xen-pvh-enable-mmu_update-hypercall.patch:-p2 \ ${FILESDIR}/0007-iommu-fix-usage-of-shared-EPT-IOMMU-page-tables-on-P.patch:-p2 \ - ${FILESDIR}/xsa156-4.5.patch:-p2 + ${FILESDIR}/xsa156-4.5.patch:-p2 \ + ${FILESDIR}/xsa159.patch:-p2 \ + ${FILESDIR}/xsa165-4.5.patch:-p2 \ + ${FILESDIR}/xsa166-4.5.patch:-p2 + .include Copied: branches/2016Q1/emulators/xen-kernel/files/xsa159.patch (from r405279, head/emulators/xen-kernel/files/xsa159.patch) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/emulators/xen-kernel/files/xsa159.patch Tue Jan 5 17:08:11 2016 (r405303, copy of r405279, head/emulators/xen-kernel/files/xsa159.patch) @@ -0,0 +1,47 @@ +memory: fix XENMEM_exchange error handling + +assign_pages() can fail due to the domain getting killed in parallel, +which should not result in a hypervisor crash. + +Also delete a redundant put_gfn() - all relevant paths leading to the +"fail" label already do this (and there are also paths where it was +plain wrong). All of the put_gfn()-s got introduced by 51032ca058 +("Modify naming of queries into the p2m"), including the otherwise +unneeded initializer for k (with even a kind of misleading comment - +the compiler warning could actually have served as a hint that the use +is wrong). + +This is XSA-159. + +Reported-by: Julien Grall +Signed-off-by: Jan Beulich +Acked-by: Ian Campbell + +--- a/xen/common/memory.c ++++ b/xen/common/memory.c +@@ -334,7 +334,7 @@ static long memory_exchange(XEN_GUEST_HA + PAGE_LIST_HEAD(out_chunk_list); + unsigned long in_chunk_order, out_chunk_order; + xen_pfn_t gpfn, gmfn, mfn; +- unsigned long i, j, k = 0; /* gcc ... */ ++ unsigned long i, j, k; + unsigned int memflags = 0; + long rc = 0; + struct domain *d; +@@ -572,11 +572,12 @@ static long memory_exchange(XEN_GUEST_HA + fail: + /* Reassign any input pages we managed to steal. */ + while ( (page = page_list_remove_head(&in_chunk_list)) ) +- { +- put_gfn(d, gmfn + k--); + if ( assign_pages(d, page, 0, MEMF_no_refcount) ) +- BUG(); +- } ++ { ++ BUG_ON(!d->is_dying); ++ if ( test_and_clear_bit(_PGC_allocated, &page->count_info) ) ++ put_page(page); ++ } + + dying: + rcu_unlock_domain(d); Copied: branches/2016Q1/emulators/xen-kernel/files/xsa165-4.5.patch (from r405279, head/emulators/xen-kernel/files/xsa165-4.5.patch) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/emulators/xen-kernel/files/xsa165-4.5.patch Tue Jan 5 17:08:11 2016 (r405303, copy of r405279, head/emulators/xen-kernel/files/xsa165-4.5.patch) @@ -0,0 +1,85 @@ +x86: don't leak ST(n)/XMMn values to domains first using them + +FNINIT doesn't alter these registers, and hence using it is +insufficient to initialize a guest's initial state. + +This is XSA-165. + +Signed-off-by: Jan Beulich +Reviewed-by: Andrew Cooper + +--- a/xen/arch/x86/domain.c ++++ b/xen/arch/x86/domain.c +@@ -798,6 +798,17 @@ int arch_set_info_guest( + if ( v->arch.xsave_area ) + v->arch.xsave_area->xsave_hdr.xstate_bv = XSTATE_FP_SSE; + } ++ else if ( v->arch.xsave_area ) ++ memset(&v->arch.xsave_area->xsave_hdr, 0, ++ sizeof(v->arch.xsave_area->xsave_hdr)); ++ else ++ { ++ typeof(v->arch.xsave_area->fpu_sse) *fpu_sse = v->arch.fpu_ctxt; ++ ++ memset(fpu_sse, 0, sizeof(*fpu_sse)); ++ fpu_sse->fcw = FCW_DEFAULT; ++ fpu_sse->mxcsr = MXCSR_DEFAULT; ++ } + + if ( !compat ) + { +--- a/xen/arch/x86/i387.c ++++ b/xen/arch/x86/i387.c +@@ -17,19 +17,6 @@ + #include + #include + +-static void fpu_init(void) +-{ +- unsigned long val; +- +- asm volatile ( "fninit" ); +- if ( cpu_has_xmm ) +- { +- /* load default value into MXCSR control/status register */ +- val = MXCSR_DEFAULT; +- asm volatile ( "ldmxcsr %0" : : "m" (val) ); +- } +-} +- + /*******************************/ + /* FPU Restore Functions */ + /*******************************/ +@@ -248,15 +235,8 @@ void vcpu_restore_fpu_lazy(struct vcpu * + + if ( cpu_has_xsave ) + fpu_xrstor(v, XSTATE_LAZY); +- else if ( v->fpu_initialised ) +- { +- if ( cpu_has_fxsr ) +- fpu_fxrstor(v); +- else +- fpu_frstor(v); +- } + else +- fpu_init(); ++ fpu_fxrstor(v); + + v->fpu_initialised = 1; + v->fpu_dirtied = 1; +@@ -317,7 +297,14 @@ int vcpu_init_fpu(struct vcpu *v) + else + { + v->arch.fpu_ctxt = _xzalloc(sizeof(v->arch.xsave_area->fpu_sse), 16); +- if ( !v->arch.fpu_ctxt ) ++ if ( v->arch.fpu_ctxt ) ++ { ++ typeof(v->arch.xsave_area->fpu_sse) *fpu_sse = v->arch.fpu_ctxt; ++ ++ fpu_sse->fcw = FCW_DEFAULT; ++ fpu_sse->mxcsr = MXCSR_DEFAULT; ++ } ++ else + { + rc = -ENOMEM; + goto done; Copied: branches/2016Q1/emulators/xen-kernel/files/xsa166-4.5.patch (from r405279, head/emulators/xen-kernel/files/xsa166-4.5.patch) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/emulators/xen-kernel/files/xsa166-4.5.patch Tue Jan 5 17:08:11 2016 (r405303, copy of r405279, head/emulators/xen-kernel/files/xsa166-4.5.patch) @@ -0,0 +1,44 @@ +x86/HVM: avoid reading ioreq state more than once + +Otherwise, especially when the compiler chooses to translate the +switch() to a jump table, unpredictable behavior (and in the jump table +case arbitrary code execution) can result. + +This is XSA-166. + +Signed-off-by: Jan Beulich +Acked-by: Ian Campbell + +--- a/xen/arch/x86/hvm/hvm.c ++++ b/xen/arch/x86/hvm/hvm.c +@@ -400,23 +400,23 @@ bool_t hvm_io_pending(struct vcpu *v) + + static bool_t hvm_wait_for_io(struct hvm_ioreq_vcpu *sv, ioreq_t *p) + { ++ unsigned int state; ++ + /* NB. Optimised for common case (p->state == STATE_IOREQ_NONE). */ +- while ( p->state != STATE_IOREQ_NONE ) ++ while ( (state = p->state) != STATE_IOREQ_NONE ) + { +- switch ( p->state ) ++ rmb(); ++ switch ( state ) + { + case STATE_IORESP_READY: /* IORESP_READY -> NONE */ +- rmb(); /* see IORESP_READY /then/ read contents of ioreq */ + hvm_io_assist(p); + break; + case STATE_IOREQ_READY: /* IOREQ_{READY,INPROCESS} -> IORESP_READY */ + case STATE_IOREQ_INPROCESS: +- wait_on_xen_event_channel(sv->ioreq_evtchn, +- (p->state != STATE_IOREQ_READY) && +- (p->state != STATE_IOREQ_INPROCESS)); ++ wait_on_xen_event_channel(sv->ioreq_evtchn, p->state != state); + break; + default: +- gdprintk(XENLOG_ERR, "Weird HVM iorequest state %d.\n", p->state); ++ gdprintk(XENLOG_ERR, "Weird HVM iorequest state %u\n", state); + domain_crash(sv->vcpu->domain); + return 0; /* bail */ + } Modified: branches/2016Q1/emulators/xen/Makefile ============================================================================== --- branches/2016Q1/emulators/xen/Makefile Tue Jan 5 16:35:38 2016 (r405302) +++ branches/2016Q1/emulators/xen/Makefile Tue Jan 5 17:08:11 2016 (r405303) @@ -2,6 +2,7 @@ PORTNAME= xen PORTVERSION= 4.5.2 +PORTREVISION= 1 CATEGORIES= emulators MAINTAINER= royger@FreeBSD.org Modified: branches/2016Q1/sysutils/xen-tools/Makefile ============================================================================== --- branches/2016Q1/sysutils/xen-tools/Makefile Tue Jan 5 16:35:38 2016 (r405302) +++ branches/2016Q1/sysutils/xen-tools/Makefile Tue Jan 5 17:08:11 2016 (r405303) @@ -2,6 +2,7 @@ PORTNAME= xen PORTVERSION= 4.5.2 +PORTREVISION= 1 CATEGORIES= sysutils emulators MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ \ http://code.coreboot.org/p/seabios/downloads/get/:seabios @@ -47,7 +48,8 @@ QEMU_ARGS= --disable-gtk \ --disable-curl \ --cxx=c++ -EXTRA_PATCHES= ${FILESDIR}/0002-libxc-fix-xc_dom_load_elf_symtab.patch:-p1 +EXTRA_PATCHES= ${FILESDIR}/0002-libxc-fix-xc_dom_load_elf_symtab.patch:-p1 \ + ${FILESDIR}/xsa160-4.6.patch:-p1 CONFIGURE_ARGS+= --with-extra-qemuu-configure-args="${QEMU_ARGS}" SHEBANG_FILES= tools/misc/xencov_split \ @@ -74,6 +76,10 @@ post-patch: ${WRKSRC}/tools/libxl/libxl_dm.c \ ${WRKSRC}/tools/qemu-xen-traditional/i386-dm/helper2.c \ ${WRKSRC}/docs/man/* + @for p in ${FILESDIR}/*qemuu*.patch; do \ + ${ECHO_CMD} "====> Applying $${p##*/}" ; \ + ${PATCH} -s -p1 -i $${p} -d ${WRKSRC}/tools/qemu-xen ; \ + done post-install: ${MKDIR} ${STAGEDIR}/var/run/xen Copied: branches/2016Q1/sysutils/xen-tools/files/xsa160-4.6.patch (from r405279, head/sysutils/xen-tools/files/xsa160-4.6.patch) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/sysutils/xen-tools/files/xsa160-4.6.patch Tue Jan 5 17:08:11 2016 (r405303, copy of r405279, head/sysutils/xen-tools/files/xsa160-4.6.patch) @@ -0,0 +1,69 @@ +From adcbd15b1aec8367f790774c998db199c9b577bf Mon Sep 17 00:00:00 2001 +From: Ian Jackson +Date: Wed, 18 Nov 2015 15:34:54 +0000 +Subject: [PATCH] libxl: Fix bootloader-related virtual memory leak on pv + build failure + +The bootloader may call libxl__file_reference_map(), which mmap's the +pv_kernel and pv_ramdisk into process memory. This was only unmapped, +however, on the success path of libxl__build_pv(). If there were a +failure anywhere between libxl_bootloader.c:parse_bootloader_result() +and the end of libxl__build_pv(), the calls to +libxl__file_reference_unmap() would be skipped, leaking the mapped +virtual memory. + +Ideally this would be fixed by adding the unmap calls to the +destruction path for libxl__domain_build_state. Unfortunately the +lifetime of the libxl__domain_build_state is opaque, and it doesn't +have a proper destruction path. But, the only thing in it that isn't +from the gc are these bootloader references, and they are only ever +set for one libxl__domain_build_state, the one which is +libxl__domain_create_state.build_state. + +So we can clean up in the exit path from libxl__domain_create_*, which +always comes through domcreate_complete. + +Remove the now-redundant unmaps in libxl__build_pv's success path. + +This is XSA-160. + +Signed-off-by: George Dunlap +Signed-off-by: Ian Jackson +Tested-by: George Dunlap +Acked-by: Ian Campbell +--- + tools/libxl/libxl_create.c | 3 +++ + tools/libxl/libxl_dom.c | 3 --- + 2 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/tools/libxl/libxl_create.c b/tools/libxl/libxl_create.c +index f5771da..278b9ed 100644 +--- a/tools/libxl/libxl_create.c ++++ b/tools/libxl/libxl_create.c +@@ -1484,6 +1484,9 @@ static void domcreate_complete(libxl__egc *egc, + libxl_domain_config *const d_config = dcs->guest_config; + libxl_domain_config *d_config_saved = &dcs->guest_config_saved; + ++ libxl__file_reference_unmap(&dcs->build_state.pv_kernel); ++ libxl__file_reference_unmap(&dcs->build_state.pv_ramdisk); ++ + if (!rc && d_config->b_info.exec_ssidref) + rc = xc_flask_relabel_domain(CTX->xch, dcs->guest_domid, d_config->b_info.exec_ssidref); + +diff --git a/tools/libxl/libxl_dom.c b/tools/libxl/libxl_dom.c +index 8019f4e..2da3ac4 100644 +--- a/tools/libxl/libxl_dom.c ++++ b/tools/libxl/libxl_dom.c +@@ -750,9 +750,6 @@ int libxl__build_pv(libxl__gc *gc, uint32_t domid, + state->store_mfn = xc_dom_p2m_host(dom, dom->xenstore_pfn); + } + +- libxl__file_reference_unmap(&state->pv_kernel); +- libxl__file_reference_unmap(&state->pv_ramdisk); +- + ret = 0; + out: + xc_dom_release(dom); +-- +1.7.10.4 + Copied: branches/2016Q1/sysutils/xen-tools/files/xsa162-qemuu.patch (from r405279, head/sysutils/xen-tools/files/xsa162-qemuu.patch) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/sysutils/xen-tools/files/xsa162-qemuu.patch Tue Jan 5 17:08:11 2016 (r405303, copy of r405279, head/sysutils/xen-tools/files/xsa162-qemuu.patch) @@ -0,0 +1,42 @@ +net: pcnet: add check to validate receive data size(CVE-2015-7504) + +In loopback mode, pcnet_receive routine appends CRC code to the +receive buffer. If the data size given is same as the buffer size, +the appended CRC code overwrites 4 bytes after s->buffer. Added a +check to avoid that. + +Reported-by: Qinghao Tang +Signed-off-by: Prasad J Pandit +--- + hw/net/pcnet.c | 10 ++++++---- + 1 file changed, 6 insertions(+), 4 deletions(-) + +diff --git a/hw/net/pcnet.c b/hw/net/pcnet.c +index 3437376..5f55591 100644 +--- a/hw/net/pcnet.c ++++ b/hw/net/pcnet.c +@@ -1085,7 +1085,7 @@ ssize_t pcnet_receive(NetClientState *nc, const uint8_t *buf, size_t size_) + uint32_t fcs = ~0; + uint8_t *p = src; + +- while (p != &src[size-4]) ++ while (p != &src[size]) + CRC(fcs, *p++); + crc_err = (*(uint32_t *)p != htonl(fcs)); + } +@@ -1234,8 +1234,10 @@ static void pcnet_transmit(PCNetState *s) + bcnt = 4096 - GET_FIELD(tmd.length, TMDL, BCNT); + + /* if multi-tmd packet outsizes s->buffer then skip it silently. +- Note: this is not what real hw does */ +- if (s->xmit_pos + bcnt > sizeof(s->buffer)) { ++ * Note: this is not what real hw does. ++ * Last four bytes of s->buffer are used to store CRC FCS code. ++ */ ++ if (s->xmit_pos + bcnt > sizeof(s->buffer) - 4) { + s->xmit_pos = -1; + goto txdone; + } +-- +2.4.3 + From owner-svn-ports-branches@freebsd.org Tue Jan 5 17:51:47 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36C90A63139; Tue, 5 Jan 2016 17:51:47 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 08647112F; Tue, 5 Jan 2016 17:51:46 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u05Hpklw012503; Tue, 5 Jan 2016 17:51:46 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u05HpkHN012502; Tue, 5 Jan 2016 17:51:46 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601051751.u05HpkHN012502@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Tue, 5 Jan 2016 17:51:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405307 - branches/2016Q1/devel/py-cycler X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 05 Jan 2016 17:51:47 -0000 Author: rakuco Date: Tue Jan 5 17:51:45 2016 New Revision: 405307 URL: https://svnweb.freebsd.org/changeset/ports/405307 Log: MFH: r405306 Revert r404408. It actually broke `make fetch'. The tarball location in PyPI is a bit tricky since the directory is called Cycler but the tarball is called cycler, and this confuses the MASTER_SITE_SUBDIR substitutions. Approved by: portmgr blanket Modified: branches/2016Q1/devel/py-cycler/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/py-cycler/Makefile ============================================================================== --- branches/2016Q1/devel/py-cycler/Makefile Tue Jan 5 17:50:29 2016 (r405306) +++ branches/2016Q1/devel/py-cycler/Makefile Tue Jan 5 17:51:45 2016 (r405307) @@ -1,12 +1,12 @@ # Created by: Yuri Victorovich # $FreeBSD$ -PORTNAME= Cycler +PORTNAME= cycler PORTVERSION= 0.9.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP +MASTER_SITE_SUBDIR= source/C/Cycler PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= cycler-${PORTVERSION} MAINTAINER= yuri@rawbw.com COMMENT= Composable style cycles From owner-svn-ports-branches@freebsd.org Tue Jan 5 18:06:46 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B320A635D3; Tue, 5 Jan 2016 18:06:46 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 396CC1F24; Tue, 5 Jan 2016 18:06:46 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u05I6jDg018555; Tue, 5 Jan 2016 18:06:45 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u05I6j37018554; Tue, 5 Jan 2016 18:06:45 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601051806.u05I6j37018554@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Tue, 5 Jan 2016 18:06:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405311 - branches/2016Q1/www/py-blogofile X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 05 Jan 2016 18:06:46 -0000 Author: rakuco Date: Tue Jan 5 18:06:45 2016 New Revision: 405311 URL: https://svnweb.freebsd.org/changeset/ports/405311 Log: MFH: r405310 Set MASTER_SITE_SUBDIR again. The port had been broken since October 2014 when r371113 stopped setting the MASTER_SITE_SUBDIR. Like devel/py-cycler, the PyPI location is a bit unusual, with the tarball name being "blogofile-XXX.tar.gz" (lowercase 'b') and the directory being called "Blogofile", with capital 'B'. Approved by: portmgr blanket Modified: branches/2016Q1/www/py-blogofile/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/py-blogofile/Makefile ============================================================================== --- branches/2016Q1/www/py-blogofile/Makefile Tue Jan 5 18:04:43 2016 (r405310) +++ branches/2016Q1/www/py-blogofile/Makefile Tue Jan 5 18:06:45 2016 (r405311) @@ -6,6 +6,7 @@ PORTVERSION= 0.7.1 PORTREVISION= 3 CATEGORIES= www python MASTER_SITES= CHEESESHOP +MASTER_SITE_SUBDIR= source/B/Blogofile PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= lwhsu@FreeBSD.org From owner-svn-ports-branches@freebsd.org Tue Jan 5 23:29:51 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C2E9A63172; Tue, 5 Jan 2016 23:29:51 +0000 (UTC) (envelope-from amdmi3@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 E7B7712AF; Tue, 5 Jan 2016 23:29:50 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u05NTo8m012881; Tue, 5 Jan 2016 23:29:50 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u05NTn03012879; Tue, 5 Jan 2016 23:29:49 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201601052329.u05NTn03012879@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 5 Jan 2016 23:29:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405321 - in branches/2016Q1/security/zenmap: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 05 Jan 2016 23:29:51 -0000 Author: amdmi3 Date: Tue Jan 5 23:29:49 2016 New Revision: 405321 URL: https://svnweb.freebsd.org/changeset/ports/405321 Log: MFH: r405296 - Fix broken zenmap-root script - While here, add LICENSE_FILE, switch to WRKSRC_SUBDIR, add NO_ARCH and switch to options helpers PR: 204713 Submitted by: admin@vladiom.com.ua Approved by: maintainer timeout (nemysis, 6 weeks) Approved by: ports-secteam (feld) Modified: branches/2016Q1/security/zenmap/Makefile branches/2016Q1/security/zenmap/files/zenmap-root.in Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/security/zenmap/Makefile ============================================================================== --- branches/2016Q1/security/zenmap/Makefile Tue Jan 5 22:39:46 2016 (r405320) +++ branches/2016Q1/security/zenmap/Makefile Tue Jan 5 23:29:49 2016 (r405321) @@ -3,6 +3,7 @@ PORTNAME= zenmap PORTVERSION= 6.47 +PORTREVISION= 1 CATEGORIES= security ipv6 MASTER_SITES= http://nmap.org/dist/ \ SF/nemysisfreebsdp/security/:icons @@ -15,16 +16,18 @@ MAINTAINER= nemysis@FreeBSD.org COMMENT= GUI frontend for the Nmap scanning utility LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= nmap:${PORTSDIR}/security/nmap \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 -WRKSRC= ${WRKDIR}/${DISTNAME}/${PORTNAME} +WRKSRC_SUBDIR= ${PORTNAME} USES= dos2unix python tar:bzip2 DOS2UNIX_GLOB= *.xml USE_GNOME= pygtk2 USE_PYTHON= autoplist distutils +NO_ARCH= yes OPTIONS_DEFINE= NLS OPTIONS_SUB= yes @@ -34,8 +37,6 @@ NLS_USES= gettext SUB_FILES= zenmap-root -.include - post-extract: @${RM} -f ${WRKSRC}/install_scripts/unix/su-to-zenmap.sh @${CP} -a ${FILESDIR}/pc-su ${WRKSRC}/install_scripts/unix/su-to-zenmap.sh @@ -65,9 +66,8 @@ post-patch: @${FIND} ${WRKSRC} -name "*.bak" -delete @${FIND} ${WRKSRC}/../ndiff -name "*.bak" -delete -.if ! ${PORT_OPTIONS:MNLS} +post-patch-NLS-off: @${REINPLACE_CMD} -i '' '/locale_dir, mo_find, /d' ${WRKSRC}/setup.py -.endif post-install: ${INSTALL_SCRIPT} ${WRKDIR}/zenmap-root ${STAGEDIR}${PREFIX}/bin/ Modified: branches/2016Q1/security/zenmap/files/zenmap-root.in ============================================================================== --- branches/2016Q1/security/zenmap/files/zenmap-root.in Tue Jan 5 22:39:46 2016 (r405320) +++ branches/2016Q1/security/zenmap/files/zenmap-root.in Tue Jan 5 23:29:49 2016 (r405321) @@ -3,6 +3,4 @@ # $FreeBSD$ # -cd "%%DATADIR%%" && exec su-to-zenmap.sh zenmap - - +exec %%DATADIR%%/su-to-zenmap.sh zenmap From owner-svn-ports-branches@freebsd.org Wed Jan 6 01:44:14 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13F47A63099; Wed, 6 Jan 2016 01:44:14 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA61C1BC7; Wed, 6 Jan 2016 01:44:13 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u061iDOP053257; Wed, 6 Jan 2016 01:44:13 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u061iDof053255; Wed, 6 Jan 2016 01:44:13 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201601060144.u061iDof053255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Wed, 6 Jan 2016 01:44:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405326 - in branches/2016Q1/net-mgmt/cacti: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 01:44:14 -0000 Author: junovitch Date: Wed Jan 6 01:44:12 2016 New Revision: 405326 URL: https://svnweb.freebsd.org/changeset/ports/405326 Log: MFH: r405325 net-mgmt/cacti: add patch for SQL injection in the graphs.php page PR: 205920 Submitted by: rakuco Approved by: Daniel Austin (maintainer) Approved by: ports-secteam (miwi) Obtained from: http://svn.cacti.net/viewvc?view=rev&revision=7767 Security: CVE-2015-8369 Security: https://vuxml.FreeBSD.org/freebsd/bb961ff3-b3a4-11e5-8255-5453ed2e2b49.html Added: branches/2016Q1/net-mgmt/cacti/files/patch-CVE-2015-8369 - copied unchanged from r405325, head/net-mgmt/cacti/files/patch-CVE-2015-8369 Modified: branches/2016Q1/net-mgmt/cacti/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net-mgmt/cacti/Makefile ============================================================================== --- branches/2016Q1/net-mgmt/cacti/Makefile Wed Jan 6 01:33:23 2016 (r405325) +++ branches/2016Q1/net-mgmt/cacti/Makefile Wed Jan 6 01:44:12 2016 (r405326) @@ -2,7 +2,7 @@ PORTNAME= cacti PORTVERSION= 0.8.8f${PATCHLEVEL} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt www MASTER_SITES= http://www.cacti.net/downloads/ \ ftp://ftpmirror.uk/freebsd-ports/cacti/ Copied: branches/2016Q1/net-mgmt/cacti/files/patch-CVE-2015-8369 (from r405325, head/net-mgmt/cacti/files/patch-CVE-2015-8369) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/net-mgmt/cacti/files/patch-CVE-2015-8369 Wed Jan 6 01:44:12 2016 (r405326, copy of r405325, head/net-mgmt/cacti/files/patch-CVE-2015-8369) @@ -0,0 +1,218 @@ +------------------------------------------------------------------------ +r7767 | cigamit | 2015-11-28 20:08:16 +0000 (Sat, 28 Nov 2015) | 1 line +Changed paths: + M /cacti/tags/0.8.8g/docs/CHANGELOG + M /cacti/tags/0.8.8g/graph.php + M /cacti/tags/0.8.8g/include/top_graph_header.php +------------------------------------------------------------------------ + +-bug:0002646: SQL injection in graph.php + +--- graph.php (revision 7766) ++++ graph.php (revision 7767) +@@ -32,29 +32,29 @@ + + api_plugin_hook_function('graph'); + +-include_once("./lib/html_tree.php"); +-include_once("./include/top_graph_header.php"); +- + /* ================= input validation ================= */ +-input_validate_input_regex(get_request_var("rra_id"), "^([0-9]+|all)$"); +-input_validate_input_number(get_request_var("local_graph_id")); +-input_validate_input_number(get_request_var("graph_end")); +-input_validate_input_number(get_request_var("graph_start")); ++input_validate_input_regex(get_request_var_request("rra_id"), "^([0-9]+|all)$"); ++input_validate_input_number(get_request_var_request("local_graph_id")); ++input_validate_input_number(get_request_var_request("graph_end")); ++input_validate_input_number(get_request_var_request("graph_start")); + input_validate_input_regex(get_request_var_request("view_type"), "^([a-zA-Z0-9]+)$"); + /* ==================================================== */ + +-if (!isset($_GET['rra_id'])) { +- $_GET['rra_id'] = 'all'; ++include_once("./lib/html_tree.php"); ++include_once("./include/top_graph_header.php"); ++ ++if (!isset($_REQUEST['rra_id'])) { ++ $_REQUEST['rra_id'] = 'all'; + } + +-if ($_GET["rra_id"] == "all") { ++if ($_REQUEST["rra_id"] == "all") { + $sql_where = " where id is not null"; + }else{ +- $sql_where = " where id=" . $_GET["rra_id"]; ++ $sql_where = " where id=" . $_REQUEST["rra_id"]; + } + + /* make sure the graph requested exists (sanity) */ +-if (!(db_fetch_cell("select local_graph_id from graph_templates_graph where local_graph_id=" . $_GET["local_graph_id"]))) { ++if (!(db_fetch_cell("select local_graph_id from graph_templates_graph where local_graph_id=" . $_REQUEST["local_graph_id"]))) { + print "GRAPH DOES NOT EXIST"; exit; + } + +@@ -61,7 +61,7 @@ + /* take graph permissions into account here, if the user does not have permission + give an "access denied" message */ + if (read_config_option("auth_method") != 0) { +- $access_denied = !(is_graph_allowed($_GET["local_graph_id"])); ++ $access_denied = !(is_graph_allowed($_REQUEST["local_graph_id"])); + + if ($access_denied == true) { + print "ACCESS DENIED"; exit; +@@ -68,7 +68,7 @@ + } + } + +-$graph_title = get_graph_title($_GET["local_graph_id"]); ++$graph_title = get_graph_title($_REQUEST["local_graph_id"]); + + if ($_REQUEST["view_type"] == "tree") { + print ""; +@@ -76,15 +76,15 @@ + print "
"; + } + +-$rras = get_associated_rras($_GET["local_graph_id"]); ++$rras = get_associated_rras($_REQUEST["local_graph_id"]); + + switch ($_REQUEST["action"]) { + case 'view': + api_plugin_hook_function('page_buttons', +- array('lgid' => $_GET["local_graph_id"], ++ array('lgid' => $_REQUEST["local_graph_id"], + 'leafid' => '',//$leaf_id, + 'mode' => 'mrtg', +- 'rraid' => $_GET["rra_id"]) ++ 'rraid' => $_REQUEST["rra_id"]) + ); + ?> + +@@ -105,13 +105,13 @@ +
+ + + + +@@ -143,7 +143,7 @@ + } + + /* fetch information for the current RRA */ +- $rra = db_fetch_row("select id,timespan,steps,name from rra where id=" . $_GET["rra_id"]); ++ $rra = db_fetch_row("select id,timespan,steps,name from rra where id=" . $_REQUEST["rra_id"]); + + /* define the time span, which decides which rra to use */ + $timespan = -($rra["timespan"]); +@@ -154,7 +154,7 @@ + FROM (data_template_data,data_template_rrd,graph_templates_item) + WHERE graph_templates_item.task_item_id=data_template_rrd.id + AND data_template_rrd.local_data_id=data_template_data.local_data_id +- AND graph_templates_item.local_graph_id=" . $_GET["local_graph_id"] . ++ AND graph_templates_item.local_graph_id=" . $_REQUEST["local_graph_id"] . + " LIMIT 0,1"); + $ds_step = empty($ds_step) ? 300 : $ds_step; + $seconds_between_graph_updates = ($ds_step * $rra["steps"]); +@@ -161,17 +161,17 @@ + + $now = time(); + +- if (isset($_GET["graph_end"]) && ($_GET["graph_end"] <= $now - $seconds_between_graph_updates)) { +- $graph_end = $_GET["graph_end"]; ++ if (isset($_REQUEST["graph_end"]) && ($_REQUEST["graph_end"] <= $now - $seconds_between_graph_updates)) { ++ $graph_end = $_REQUEST["graph_end"]; + }else{ + $graph_end = $now - $seconds_between_graph_updates; + } + +- if (isset($_GET["graph_start"])) { +- if (($graph_end - $_GET["graph_start"])>$max_timespan) { ++ if (isset($_REQUEST["graph_start"])) { ++ if (($graph_end - $_REQUEST["graph_start"])>$max_timespan) { + $graph_start = $now - $max_timespan; + }else { +- $graph_start = $_GET["graph_start"]; ++ $graph_start = $_REQUEST["graph_start"]; + } + }else{ + $graph_start = $now + $timespan; +@@ -186,7 +186,7 @@ + graph_templates_graph.height, + graph_templates_graph.width + from graph_templates_graph +- where graph_templates_graph.local_graph_id=" . $_GET["local_graph_id"]); ++ where graph_templates_graph.local_graph_id=" . $_REQUEST["local_graph_id"]); + + $graph_height = $graph["height"]; + $graph_width = $graph["width"]; +@@ -214,12 +214,12 @@ +
+- <?php print htmlspecialchars($graph_title, ENT_QUOTES);?> ++ <?php print htmlspecialchars($graph_title, ENT_QUOTES);?> + +- Zoom Graph
+- CSV Export
+- Graph Source/Properties +- 'view', 'local_graph_id' => $_GET['local_graph_id'], 'rra' => $rra['id'], 'view_type' => $_REQUEST['view_type'])); ?> ++ Zoom Graph
++ CSV Export
++ Graph Source/Properties ++ 'view', 'local_graph_id' => $_REQUEST['local_graph_id'], 'rra' => $rra['id'], 'view_type' => $_REQUEST['view_type'])); ?> + images/graph_page_top.gif' border='0' alt='Page Top' title='Page Top' style='padding: 3px;'>
+
+ + + + + +@@ -249,17 +249,17 @@ +
+- <?php print htmlspecialchars($graph_title, ENT_QUOTES);?> ++ <?php print htmlspecialchars($graph_title, ENT_QUOTES);?> + +- Graph Source/Properties +- CSV Export
+- 'zoom', 'local_graph_id' => $_GET['local_graph_id'], 'rra' => $_GET['rra_id'], 'view_type' => $_REQUEST['view_type'])); ?> ++ Graph Source/Properties ++ CSV Export
++ 'zoom', 'local_graph_id' => $_REQUEST['local_graph_id'], 'rra' => $_REQUEST['rra_id'], 'view_type' => $_REQUEST['view_type'])); ?> +
+ + + + + + + +
+- <?php print htmlspecialchars($graph_title);?> ++ <?php print htmlspecialchars($graph_title);?> + +- Zoom Graph
+- CSV Export
+- 'properties', 'local_graph_id' => $_GET['local_graph_id'], 'rra' => $_GET['rra_id'], 'view_type' => $_REQUEST['view_type'])); ?> ++ Zoom Graph
++ CSV Export
++ 'properties', 'local_graph_id' => $_REQUEST['local_graph_id'], 'rra' => $_REQUEST['rra_id'], 'view_type' => $_REQUEST['view_type'])); ?> +
+- ++ +
+--- include/top_graph_header.php (revision 7766) ++++ include/top_graph_header.php (revision 7767) +@@ -146,12 +146,12 @@ + $graph_data_array["print_source"] = true; + + /* override: graph start time (unix time) */ +- if (!empty($_GET["graph_start"])) { ++ if (!empty($_REQUEST["graph_start"])) { + $graph_data_array["graph_start"] = get_request_var_request("graph_start"); + } + + /* override: graph end time (unix time) */ +- if (!empty($_GET["graph_end"])) { ++ if (!empty($_REQUEST["graph_end"])) { + $graph_data_array["graph_end"] = get_request_var_request("graph_end"); + } + + From owner-svn-ports-branches@freebsd.org Wed Jan 6 11:52:25 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CFFF6A6520D; Wed, 6 Jan 2016 11:52:25 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A2AE31178; Wed, 6 Jan 2016 11:52:25 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u06BqOX9035473; Wed, 6 Jan 2016 11:52:24 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u06BqOb3035472; Wed, 6 Jan 2016 11:52:24 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201601061152.u06BqOb3035472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Wed, 6 Jan 2016 11:52:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405344 - branches/2016Q1/mail/maildrop X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 11:52:25 -0000 Author: madpilot Date: Wed Jan 6 11:52:24 2016 New Revision: 405344 URL: https://svnweb.freebsd.org/changeset/ports/405344 Log: MFH: r405342 Stop DOCS option appearing twice in this port. PR: 205924 Submitted by: marino@ Approved by: portmgr (erwin) Modified: branches/2016Q1/mail/maildrop/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/mail/maildrop/Makefile ============================================================================== --- branches/2016Q1/mail/maildrop/Makefile Wed Jan 6 11:36:38 2016 (r405343) +++ branches/2016Q1/mail/maildrop/Makefile Wed Jan 6 11:52:24 2016 (r405344) @@ -59,7 +59,7 @@ DOCS= AUTHORS INSTALL INSTALL.html READM .if exists(${.CURDIR}/../../security/courier-authlib/Makefile.opt) .include "${.CURDIR}/../../security/courier-authlib/Makefile.opt" -OPTIONS_MULTI_AUTHLIB:= ${OPTIONS_DEFINE} +OPTIONS_MULTI_AUTHLIB:= ${OPTIONS_DEFINE:NDOCS} OPTIONS_DEFINE= AUTHLIB OPTIONS_MULTI= AUTHLIB AUTHLIB_DESC= Courier Auth Library support From owner-svn-ports-branches@freebsd.org Wed Jan 6 11:53:25 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C686FA65294; Wed, 6 Jan 2016 11:53:25 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 970E91440; Wed, 6 Jan 2016 11:53:25 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u06BrOHs035653; Wed, 6 Jan 2016 11:53:24 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u06BrOEU035652; Wed, 6 Jan 2016 11:53:24 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201601061153.u06BrOEU035652@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Wed, 6 Jan 2016 11:53:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405345 - branches/2016Q1/deskutils/calibre X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 11:53:25 -0000 Author: madpilot Date: Wed Jan 6 11:53:24 2016 New Revision: 405345 URL: https://svnweb.freebsd.org/changeset/ports/405345 Log: MFH: r405343 Add missing BUILD_DEPENDS. PR: 205927 Submitted by: Igor Pavlov Approved by: portmgr (erwin) Modified: branches/2016Q1/deskutils/calibre/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/deskutils/calibre/Makefile ============================================================================== --- branches/2016Q1/deskutils/calibre/Makefile Wed Jan 6 11:52:24 2016 (r405344) +++ branches/2016Q1/deskutils/calibre/Makefile Wed Jan 6 11:53:24 2016 (r405345) @@ -3,6 +3,7 @@ PORTNAME= calibre PORTVERSION= 2.46.0 +PORTREVISION= 1 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ @@ -28,7 +29,9 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}si ${PYTHON_PKGNAMEPREFIX}dateutil>=0:${PORTSDIR}/devel/py-dateutil \ ${PYTHON_PKGNAMEPREFIX}pillow>=0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}psutil>=2.0.0:${PORTSDIR}/sysutils/py-psutil \ - ${PYTHON_PKGNAMEPREFIX}lxml>=0:${PORTSDIR}/devel/py-lxml + ${PYTHON_PKGNAMEPREFIX}lxml>=0:${PORTSDIR}/devel/py-lxml \ + ${PYTHON_PKGNAMEPREFIX}cssutils>=0.9.9:${PORTSDIR}/www/py-cssutils \ + ${PYTHON_PKGNAMEPREFIX}apsw>=0:${PORTSDIR}/databases/py-apsw RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils \ ${PYTHON_PKGNAMEPREFIX}cssutils>=0.9.9:${PORTSDIR}/www/py-cssutils \ ${PYTHON_PKGNAMEPREFIX}dnspython>=0:${PORTSDIR}/dns/py-dnspython \ From owner-svn-ports-branches@freebsd.org Wed Jan 6 14:32:43 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 694A6A65D5B; Wed, 6 Jan 2016 14:32:43 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 379901B9D; Wed, 6 Jan 2016 14:32:43 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u06EWgDn082345; Wed, 6 Jan 2016 14:32:42 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u06EWg5e082344; Wed, 6 Jan 2016 14:32:42 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601061432.u06EWg5e082344@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Wed, 6 Jan 2016 14:32:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405354 - branches/2016Q1/misc/grun X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 14:32:43 -0000 Author: rakuco Date: Wed Jan 6 14:32:42 2016 New Revision: 405354 URL: https://svnweb.freebsd.org/changeset/ports/405354 Log: MFH: r405353 Unmark BROKEN. `make fetch' works fine, and `make checksum' passes. Approved by: portmgr blanket Modified: branches/2016Q1/misc/grun/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/misc/grun/Makefile ============================================================================== --- branches/2016Q1/misc/grun/Makefile Wed Jan 6 14:31:59 2016 (r405353) +++ branches/2016Q1/misc/grun/Makefile Wed Jan 6 14:32:42 2016 (r405354) @@ -10,7 +10,6 @@ MASTER_SITES= http://www.brettnacher.org MAINTAINER= ports@FreeBSD.org COMMENT= Gtk-launcher similar to the Windows(tm) "Run..." dialog -BROKEN= Does not fetch USE_GNOME= gtk12 GNU_CONFIGURE= yes CONFIGURE_ARGS+=--enable-testfile From owner-svn-ports-branches@freebsd.org Wed Jan 6 15:13:32 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5FD5FA64CAA; Wed, 6 Jan 2016 15:13:32 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CAD11547; Wed, 6 Jan 2016 15:13:32 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u06FDVFn094293; Wed, 6 Jan 2016 15:13:31 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u06FDV1j094292; Wed, 6 Jan 2016 15:13:31 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601061513.u06FDV1j094292@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Wed, 6 Jan 2016 15:13:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405357 - branches/2016Q1/www/tokyopromenade X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 15:13:32 -0000 Author: rakuco Date: Wed Jan 6 15:13:31 2016 New Revision: 405357 URL: https://svnweb.freebsd.org/changeset/ports/405357 Log: MFH: r405356 Fix MASTER_SITES and unmark BROKEN. Approved by: portmgr blanket Modified: branches/2016Q1/www/tokyopromenade/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/tokyopromenade/Makefile ============================================================================== --- branches/2016Q1/www/tokyopromenade/Makefile Wed Jan 6 15:12:17 2016 (r405356) +++ branches/2016Q1/www/tokyopromenade/Makefile Wed Jan 6 15:13:31 2016 (r405357) @@ -5,13 +5,11 @@ PORTNAME= tokyopromenade PORTVERSION= 0.9.22 PORTREVISION= 2 CATEGORIES= www -MASTER_SITES= http://fallabs.com/${PORTNAME}/ +MASTER_SITES= http://fallabs.com/${PORTNAME}/pkg/ MAINTAINER= ports@FreeBSD.org COMMENT= Content management system -BROKEN= unfetchable - BUILD_DEPENDS= tokyocabinet>=1.4.31:${PORTSDIR}/databases/tokyocabinet \ fcgi-devkit>=0:${PORTSDIR}/www/fcgi LIB_DEPENDS= libtokyocabinet.so:${PORTSDIR}/databases/tokyocabinet From owner-svn-ports-branches@freebsd.org Wed Jan 6 15:18:55 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE5DDA64EEF; Wed, 6 Jan 2016 15:18:55 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A465E1A23; Wed, 6 Jan 2016 15:18:55 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u06FIs2S094757; Wed, 6 Jan 2016 15:18:54 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u06FIsed094755; Wed, 6 Jan 2016 15:18:54 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601061518.u06FIsed094755@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Wed, 6 Jan 2016 15:18:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405359 - branches/2016Q1/www/textpattern X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 15:18:56 -0000 Author: rakuco Date: Wed Jan 6 15:18:54 2016 New Revision: 405359 URL: https://svnweb.freebsd.org/changeset/ports/405359 Log: MFH: r405358 Fix MASTER_SITES, regenerate distinfo and unmark BROKEN. The old download URL was pointing to the zip version of the source code. Switch to the url that serves a .tar.gz, regenerate distinfo (it contained information about the .zip file with the wrong extension) and remove a non-working mirror. Approved by: portmgr blanket Modified: branches/2016Q1/www/textpattern/Makefile branches/2016Q1/www/textpattern/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/textpattern/Makefile ============================================================================== --- branches/2016Q1/www/textpattern/Makefile Wed Jan 6 15:17:54 2016 (r405358) +++ branches/2016Q1/www/textpattern/Makefile Wed Jan 6 15:18:54 2016 (r405359) @@ -4,14 +4,11 @@ PORTNAME= textpattern PORTVERSION= 4.2.0 CATEGORIES= www -MASTER_SITES= http://textpattern.com/file_download/57/ \ - http://freebsd.unixfreunde.de/sources/ +MASTER_SITES= http://textpattern.com/file_download/56/ MAINTAINER= ports@FreeBSD.org COMMENT= Free, flexible, elegant, easy-to-use content management system -BROKEN= unfetchable - USES= cpe NO_BUILD= yes NO_ARCH= yes Modified: branches/2016Q1/www/textpattern/distinfo ============================================================================== --- branches/2016Q1/www/textpattern/distinfo Wed Jan 6 15:17:54 2016 (r405358) +++ branches/2016Q1/www/textpattern/distinfo Wed Jan 6 15:18:54 2016 (r405359) @@ -1,2 +1,2 @@ -SHA256 (textpattern-4.2.0.tar.gz) = 53fd97a92d1eeb61fee6df939724baa1595f792132fe01af42da999bb3b35064 -SIZE (textpattern-4.2.0.tar.gz) = 437483 +SHA256 (textpattern-4.2.0.tar.gz) = cbe4e47f3e92d3fc150b9f2169c8ffe8a1bffb04b116a2800d20c25691eace94 +SIZE (textpattern-4.2.0.tar.gz) = 385044 From owner-svn-ports-branches@freebsd.org Wed Jan 6 15:55:42 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19DB3A4ECB1; Wed, 6 Jan 2016 15:55:42 +0000 (UTC) (envelope-from miwi@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 C7FB11FB4; Wed, 6 Jan 2016 15:55:41 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u06FteS0006940; Wed, 6 Jan 2016 15:55:40 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u06FteX6006938; Wed, 6 Jan 2016 15:55:40 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201601061555.u06FteX6006938@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Wed, 6 Jan 2016 15:55:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405363 - in branches/2016Q1/databases/opentsdb: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 15:55:42 -0000 Author: miwi Date: Wed Jan 6 15:55:40 2016 New Revision: 405363 URL: https://svnweb.freebsd.org/changeset/ports/405363 Log: MFH: r405340 - Fix wrong path searching for logback.xml - While here remove unused sed line - Bump PORTREVISION PR: 205868 Submitted by: Davide D'Amico (based on) Approved by: Johannes Jost Meixner (maintainer) Approved by: portmgr blanket Modified: branches/2016Q1/databases/opentsdb/Makefile branches/2016Q1/databases/opentsdb/files/patch-Makefile.in (contents, props changed) Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/databases/opentsdb/Makefile ============================================================================== --- branches/2016Q1/databases/opentsdb/Makefile Wed Jan 6 15:37:07 2016 (r405362) +++ branches/2016Q1/databases/opentsdb/Makefile Wed Jan 6 15:55:40 2016 (r405363) @@ -3,6 +3,7 @@ PORTNAME= opentsdb PORTVERSION= 2.1.3 +PORTREVISION= 1 CATEGORIES= databases java MASTER_SITES= https://github.com/OpenTSDB/opentsdb/releases/download/v${PORTVERSION}/ @@ -45,7 +46,6 @@ SUB_LIST= OPENTSDB_USER="${OPENTSDB_USER post-patch: ${REINPLACE_CMD} -i "" -e "s|python|${PYTHON_CMD}|" ${WRKSRC}/build-aux/gen_build_data.sh - #${REINPLACE_CMD} -i "" -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/Makefile.in ${REINPLACE_CMD} -i "" -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/src/utils/Config.java ${REINPLACE_CMD} -i "" -e "s|tsd.http.staticroot =|tsd.http.staticroot = ${DATADIR}/static|; s|tsd.http.cachedir =|tsd.http.cachedir = /tmp/opentsdb|; s|tsd.network.port =|tsd.network.port = 4242|;" ${WRKSRC}/src/opentsdb.conf Modified: branches/2016Q1/databases/opentsdb/files/patch-Makefile.in ============================================================================== --- branches/2016Q1/databases/opentsdb/files/patch-Makefile.in Wed Jan 6 15:37:07 2016 (r405362) +++ branches/2016Q1/databases/opentsdb/files/patch-Makefile.in Wed Jan 6 15:55:40 2016 (r405363) @@ -1,8 +1,11 @@ --- Makefile.in.orig 2015-11-11 20:54:56 UTC +++ Makefile.in -@@ -1315,7 +1315,9 @@ printdeps: +@@ -1313,9 +1313,11 @@ printdeps: + # This is kind of a hack, but I couldn't find a better way to adjust the paths + # in the script before it gets installed... install-exec-hook: - script=tsdb; pkgdatadir='$(pkgdatadir)'; configdir='$(sysconfigdir)/etc/opentsdb'; \ +- script=tsdb; pkgdatadir='$(pkgdatadir)'; configdir='$(sysconfigdir)/etc/opentsdb'; \ ++ script=tsdb; pkgdatadir='$(pkgdatadir)'; configdir='$(sysconfdir)/opentsdb'; \ abs_srcdir=''; abs_builddir=''; $(edit_tsdb_script) + chmod u+w "$(DESTDIR)$(bindir)/tsdb" cat tsdb.tmp >"$(DESTDIR)$(bindir)/tsdb" From owner-svn-ports-branches@freebsd.org Wed Jan 6 21:46:09 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B2013A65F51; Wed, 6 Jan 2016 21:46:09 +0000 (UTC) (envelope-from johans@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 72B6A1A78; Wed, 6 Jan 2016 21:46:09 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u06Lk8aC016274; Wed, 6 Jan 2016 21:46:08 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u06Lk8WD016270; Wed, 6 Jan 2016 21:46:08 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201601062146.u06Lk8WD016270@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Wed, 6 Jan 2016 21:46:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405394 - branches/2016Q1/security/wolfssl X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jan 2016 21:46:09 -0000 Author: johans Date: Wed Jan 6 21:46:08 2016 New Revision: 405394 URL: https://svnweb.freebsd.org/changeset/ports/405394 Log: MFH: r405390 - Update WolfSSL to 3.8.0 (new MASTER_SITES, WWW entry and description) - Includes important security fixes for CVE-2015-7744 and CVE-2015-6925 see https://www.wolfssl.com/wolfSSL/Blog/Entries/2015/9/17_Two_Vulnerabilities_Recently_Found%2C_An_Attack_on_RSA_using_CRT_and_DoS_Vulnerability_With_DTLS.html - Disables support for SSLv3 PR: 205936 Submitted by: Christoph Moench-Tegeder Approved by: portmgr (droso), ports-secteam (feld) Modified: branches/2016Q1/security/wolfssl/Makefile branches/2016Q1/security/wolfssl/distinfo branches/2016Q1/security/wolfssl/pkg-descr branches/2016Q1/security/wolfssl/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/security/wolfssl/Makefile ============================================================================== --- branches/2016Q1/security/wolfssl/Makefile Wed Jan 6 21:38:59 2016 (r405393) +++ branches/2016Q1/security/wolfssl/Makefile Wed Jan 6 21:46:08 2016 (r405394) @@ -1,16 +1,16 @@ # $FreeBSD$ PORTNAME= wolfssl -PORTVERSION= 3.4.6 +PORTVERSION= 3.8.0 CATEGORIES= security devel -MASTER_SITES= http://www.yassl.com/ +MASTER_SITES= http://www.wolfssl.com/ MAINTAINER= johans@FreeBSD.org COMMENT= Embedded SSL C-Library LICENSE= GPLv2 -USES= zip libtool +USES= libtool zip GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-dependency-tracking \ --enable-shared --enable-static \ Modified: branches/2016Q1/security/wolfssl/distinfo ============================================================================== --- branches/2016Q1/security/wolfssl/distinfo Wed Jan 6 21:38:59 2016 (r405393) +++ branches/2016Q1/security/wolfssl/distinfo Wed Jan 6 21:46:08 2016 (r405394) @@ -1,2 +1,2 @@ -SHA256 (wolfssl-3.4.6.zip) = 515e2b0f719bc9f9c66a20c22166b1395426cf230e3fce2ffb49c26aaf4c37f0 -SIZE (wolfssl-3.4.6.zip) = 2118363 +SHA256 (wolfssl-3.8.0.zip) = 36369304dd107b2ae1360c91f3d0eea491802dcacb2155562652bf5257117016 +SIZE (wolfssl-3.8.0.zip) = 2437850 Modified: branches/2016Q1/security/wolfssl/pkg-descr ============================================================================== --- branches/2016Q1/security/wolfssl/pkg-descr Wed Jan 6 21:38:59 2016 (r405393) +++ branches/2016Q1/security/wolfssl/pkg-descr Wed Jan 6 21:46:08 2016 (r405394) @@ -1,23 +1,22 @@ -Wolfssl is an embedded SSL Library for programmers building security +WolfSSL is an embedded SSL Library for programmers building security functionality into their applications and devices. -Features - SSL version 3 and TLS versions 1, 1.1 and 1.2 (client and server) - Minimum size of 60-100kb, depending on build options - Runtime memory usage between 5-50kb - DTLS support (client and server) - OpenSSL compatibility layer - zlib compression support - integration in MySQL, stunnel, Lighttpd availible. - MD2, MD4, MD5, SHA-1, RIPEMD, HMAC, DES, 3DES, AES, ARC4, TWOFISH, BLOWFISH, - RSA, DSS, DH, and PKCS#5 PBKDF2 - ia32 assembly for AES, 3DES, BLOWFISH, TWOFISH, ARC4, MD5, SHA, and RIPEMD - SSE2 instructions for Large Integers - Simple API - Interchangeable crypto and certificate libraries - PEM and DER certificate support - Very fast +Highlights +- Up to TLS 1.2 and DTLS 1.2 +- Full client and server support +- Progressive list of supported ciphers +- Key and Certificate generation +- OCSP, CRL support -LICENSE: GPL2 with FOSS extension +Lightweight +- Small Size: 20-100kB +- Runtime Memory: 1-36kB +- 20x smaller than OpenSSL -WWW: http://www.yassl.com/ +Portable +- Abstraction Layers (OS, Custom I/O, Standard C library, and more) +- Simple API +- OpenSSL Compatibility Layer +- Long list of supported platforms + +WWW: http://www.wolfssl.com/ Modified: branches/2016Q1/security/wolfssl/pkg-plist ============================================================================== --- branches/2016Q1/security/wolfssl/pkg-plist Wed Jan 6 21:38:59 2016 (r405393) +++ branches/2016Q1/security/wolfssl/pkg-plist Wed Jan 6 21:46:08 2016 (r405394) @@ -57,7 +57,10 @@ include/cyassl/openssl/des.h include/cyassl/openssl/dh.h include/cyassl/openssl/dsa.h include/cyassl/openssl/ec.h +include/cyassl/openssl/ec25519.h +include/cyassl/openssl/ecdh.h include/cyassl/openssl/ecdsa.h +include/cyassl/openssl/ed25519.h include/cyassl/openssl/engine.h include/cyassl/openssl/err.h include/cyassl/openssl/evp.h @@ -100,7 +103,10 @@ include/wolfssl/openssl/des.h include/wolfssl/openssl/dh.h include/wolfssl/openssl/dsa.h include/wolfssl/openssl/ec.h +include/wolfssl/openssl/ec25519.h +include/wolfssl/openssl/ecdh.h include/wolfssl/openssl/ecdsa.h +include/wolfssl/openssl/ed25519.h include/wolfssl/openssl/engine.h include/wolfssl/openssl/err.h include/wolfssl/openssl/evp.h @@ -151,8 +157,10 @@ include/wolfssl/wolfcrypt/error-crypt.h include/wolfssl/wolfcrypt/fe_operations.h include/wolfssl/wolfcrypt/fips_test.h include/wolfssl/wolfcrypt/ge_operations.h +include/wolfssl/wolfcrypt/hash.h include/wolfssl/wolfcrypt/hc128.h include/wolfssl/wolfcrypt/hmac.h +include/wolfssl/wolfcrypt/idea.h include/wolfssl/wolfcrypt/integer.h include/wolfssl/wolfcrypt/logging.h include/wolfssl/wolfcrypt/md2.h @@ -173,12 +181,15 @@ include/wolfssl/wolfcrypt/settings.h include/wolfssl/wolfcrypt/sha.h include/wolfssl/wolfcrypt/sha256.h include/wolfssl/wolfcrypt/sha512.h +include/wolfssl/wolfcrypt/signature.h +include/wolfssl/wolfcrypt/srp.h include/wolfssl/wolfcrypt/tfm.h include/wolfssl/wolfcrypt/types.h include/wolfssl/wolfcrypt/visibility.h +include/wolfssl/wolfcrypt/wc_encrypt.h include/wolfssl/wolfcrypt/wc_port.h lib/libwolfssl.a lib/libwolfssl.so -lib/libwolfssl.so.0 -lib/libwolfssl.so.0.0.1 +lib/libwolfssl.so.3 +lib/libwolfssl.so.3.1.0 libdata/pkgconfig/wolfssl.pc From owner-svn-ports-branches@freebsd.org Thu Jan 7 11:59:03 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AEE66A666C3; Thu, 7 Jan 2016 11:59:03 +0000 (UTC) (envelope-from tijl@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 654721EB4; Thu, 7 Jan 2016 11:59:03 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u07Bx295073910; Thu, 7 Jan 2016 11:59:02 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u07Bx27Y073906; Thu, 7 Jan 2016 11:59:02 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201601071159.u07Bx27Y073906@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 7 Jan 2016 11:59:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405431 - in branches/2016Q1/security: mbedtls polarssl13 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 07 Jan 2016 11:59:03 -0000 Author: tijl Date: Thu Jan 7 11:59:02 2016 New Revision: 405431 URL: https://svnweb.freebsd.org/changeset/ports/405431 Log: MFH: r405429 Update to PolarSSL 1.3.16 and mbed TLS 2.2.1 Approved by: ports-secteam (miwi) Security: https://tls.mbed.org/tech-updates/releases/mbedtls-2.2.1-2.1.4-1.3.16-and-polarssl.1.2.19-released Modified: branches/2016Q1/security/mbedtls/Makefile branches/2016Q1/security/mbedtls/distinfo branches/2016Q1/security/polarssl13/Makefile branches/2016Q1/security/polarssl13/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/security/mbedtls/Makefile ============================================================================== --- branches/2016Q1/security/mbedtls/Makefile Thu Jan 7 11:53:14 2016 (r405430) +++ branches/2016Q1/security/mbedtls/Makefile Thu Jan 7 11:59:02 2016 (r405431) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mbedtls -PORTVERSION= 2.2.0 +PORTVERSION= 2.2.1 DISTVERSIONSUFFIX= -apache CATEGORIES= security devel MASTER_SITES= https://tls.mbed.org/download/ Modified: branches/2016Q1/security/mbedtls/distinfo ============================================================================== --- branches/2016Q1/security/mbedtls/distinfo Thu Jan 7 11:53:14 2016 (r405430) +++ branches/2016Q1/security/mbedtls/distinfo Thu Jan 7 11:59:02 2016 (r405431) @@ -1,2 +1,2 @@ -SHA256 (mbedtls-2.2.0-apache.tgz) = 3c6d3487ab056da94450cf907afc84f026aff7880182baffe137c98e3d00fb55 -SIZE (mbedtls-2.2.0-apache.tgz) = 1860353 +SHA256 (mbedtls-2.2.1-apache.tgz) = 6ddd5ca2e7dfb43d2fd750400856246fc1c98344dabf01b1594eb2f9880ef7ce +SIZE (mbedtls-2.2.1-apache.tgz) = 1863674 Modified: branches/2016Q1/security/polarssl13/Makefile ============================================================================== --- branches/2016Q1/security/polarssl13/Makefile Thu Jan 7 11:53:14 2016 (r405430) +++ branches/2016Q1/security/polarssl13/Makefile Thu Jan 7 11:59:02 2016 (r405431) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= polarssl -PORTVERSION= 1.3.15 +PORTVERSION= 1.3.16 DISTVERSIONSUFFIX= -gpl CATEGORIES= security devel MASTER_SITES= https://polarssl.org/download/ Modified: branches/2016Q1/security/polarssl13/distinfo ============================================================================== --- branches/2016Q1/security/polarssl13/distinfo Thu Jan 7 11:53:14 2016 (r405430) +++ branches/2016Q1/security/polarssl13/distinfo Thu Jan 7 11:59:02 2016 (r405431) @@ -1,2 +1,2 @@ -SHA256 (mbedtls-1.3.15-gpl.tgz) = ed0be9905ba08f614772ac2b6dcce0c65cf3fb235cab7e6894838efc19518da3 -SIZE (mbedtls-1.3.15-gpl.tgz) = 1758935 +SHA256 (mbedtls-1.3.16-gpl.tgz) = f413146c177c52d4ad8f48015e2fb21dd3a029ca30a2ea000cbc4f9bd092c933 +SIZE (mbedtls-1.3.16-gpl.tgz) = 1760112 From owner-svn-ports-branches@freebsd.org Thu Jan 7 16:14:56 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6EEC9A6785E; Thu, 7 Jan 2016 16:14:56 +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 479D11776; Thu, 7 Jan 2016 16:14:56 +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 u07GEtse053720; Thu, 7 Jan 2016 16:14:55 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u07GEt5U053718; Thu, 7 Jan 2016 16:14:55 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201601071614.u07GEt5U053718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 7 Jan 2016 16:14:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405466 - in branches/2016Q1/net/ntp: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 07 Jan 2016 16:14:56 -0000 Author: koobs Date: Thu Jan 7 16:14:55 2016 New Revision: 405466 URL: https://svnweb.freebsd.org/changeset/ports/405466 Log: MFH: r405439 net/ntp: Fix untracked gettext dependency & lots more ntp links against gettext (libintl) if it is installed on the system: - Add an NLS OPTION to explicitly enable, disable and track libintl dependency - Add DEBUG and THREADS OPTIONS. Keep the latter enabled by OPTIONS_DEFAULT to preserve compatibility with existing behaviour. - Explicitly pass OpenSSL include / library dir paths to configure - Unsilence install command - Enable verbose building (--disable-silent-rules) - Use TOUCH variable instead of hardcoded command - Add TEST_TARGET to enable test suite - Patch sntp tests to ensure they link correctly to threading library - Pet portlint (*_DEPENDS order, group USE{S} sections, sort OPTIONS) Approved by: cy (maintainer) Differential Revision: D4812 Approved by: portmgr (feld) Added: branches/2016Q1/net/ntp/files/patch-sntp_tests_Makefile.in - copied unchanged from r405439, head/net/ntp/files/patch-sntp_tests_Makefile.in Modified: branches/2016Q1/net/ntp/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/ntp/Makefile ============================================================================== --- branches/2016Q1/net/ntp/Makefile Thu Jan 7 16:09:24 2016 (r405465) +++ branches/2016Q1/net/ntp/Makefile Thu Jan 7 16:14:55 2016 (r405466) @@ -3,6 +3,7 @@ PORTNAME= ntp PORTVERSION= 4.2.8p4 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ \ http://archive.ntp.org/ntp4/ntp-4.2/ \ @@ -12,12 +13,16 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/P/ MAINTAINER= cy@FreeBSD.org COMMENT= The Network Time Protocol Distribution +LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 + CONFLICTS= ntp-rc-* ntp-devel-* -GNU_CONFIGURE= yes -OPTIONS_SUB= yes USES= cpe pathfix shebangfix libedit libtool pkgconfig -LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-silent-rules + +TEST_TARGET= check SHEBANG_FILES= scripts/ntptrace/ntptrace.in \ scripts/ntp-wait/ntp-wait.in \ @@ -26,20 +31,32 @@ perl_OLD_CMD= @PATH_PERL@ .include "Makefile.inc" -PERL_UTILS_USES= perl5 +OPTIONS_DEFINE+= DEBUG NLS THREADS +OPTIONS_DEFAULT+= THREADS +OPTIONS_SUB= yes -SSL_USE= OPENSSL=yes -SSL_CONFIGURE_OFF= --without-crypto +DEBUG_CONFIGURE_ENABLE= debugging IPV6_CONFIGURE_ENABLE= ipv6 +NLS_CONFIGURE_ENABLE= nls +NLS_CONFIGURE_OFF= ac_cv_lib_intl_gettext=no +NLS_USES= gettext-runtime + NTP_SIGND_CONFIGURE_ENABLE= ntp-signd NTPSNMPD_LIB_DEPENDS= libnetsnmp.so:${PORTSDIR}/net-mgmt/net-snmp NTPSNMPD_CONFIGURE_OFF= --without-ntpsnmpd +PERL_UTILS_USES= perl5 + +SSL_USE= OPENSSL=yes SSL_CONFIGURE_ON= --with-openssl-incdir=${OPENSSLINC} \ --with-openssl-libdir=${OPENSSLLIB} +SSL_CONFIGURE_OFF= --without-crypto + +THREADS_CONFIGURE_ENABLE= thread-support +THREADS_CONFIGURE_WITH= threads .for D in ${NTP_DRIVERS} ${D}_CONFIGURE_ON= --enable-${D} @@ -47,12 +64,12 @@ ${D}_CONFIGURE_ON= --enable-${D} # XXX Temporary hack. Remember to remove this next commit. post-extract: - @/usr/bin/touch ${WRKSRC}/scripts/build/checkHtmlFileDates + @${TOUCH} ${WRKSRC}/scripts/build/checkHtmlFileDates @${CHMOD} +x ${WRKSRC}/scripts/build/checkHtmlFileDates post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/conf/* ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/conf/* ${STAGEDIR}${EXAMPLESDIR} @${MKDIR} ${STAGEDIR}${DOCSDIR} @${FIND} ${WRKSRC}/html -type f | ${XARGS} ${CHMOD} ${SHAREMODE} @cd ${WRKSRC}/html && ${FIND} . -print | \ Copied: branches/2016Q1/net/ntp/files/patch-sntp_tests_Makefile.in (from r405439, head/net/ntp/files/patch-sntp_tests_Makefile.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/net/ntp/files/patch-sntp_tests_Makefile.in Thu Jan 7 16:14:55 2016 (r405466, copy of r405439, head/net/ntp/files/patch-sntp_tests_Makefile.in) @@ -0,0 +1,10 @@ +--- sntp/tests/Makefile.in.orig 2015-10-27 12:47:07 UTC ++++ sntp/tests/Makefile.in +@@ -791,6 +791,7 @@ LDADD = \ + $(base_LDADD) \ + $(top_builddir)/unity/libunity.a \ + $(LIBM) \ ++ $(PTHREAD_LIBS) \ + $(NULL) + + AM_CFLAGS = $(CFLAGS_NTP) From owner-svn-ports-branches@freebsd.org Thu Jan 7 16:16:42 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 682FBA678E6; Thu, 7 Jan 2016 16:16:42 +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 3DEB61998; Thu, 7 Jan 2016 16:16:42 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u07GGfKt054038; Thu, 7 Jan 2016 16:16:41 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u07GGfhW054036; Thu, 7 Jan 2016 16:16:41 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201601071616.u07GGfhW054036@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 7 Jan 2016 16:16:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405468 - branches/2016Q1/net/ntp-devel X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 07 Jan 2016 16:16:42 -0000 Author: koobs Date: Thu Jan 7 16:16:40 2016 New Revision: 405468 URL: https://svnweb.freebsd.org/changeset/ports/405468 Log: MFH: r405440 net/ntp-devel: Fix untracked gettext dependency & lots more ntp links against gettext (libintl) if it is installed on the system: - Add an NLS OPTION to explicitly enable, disable and track libintl dependency - Add DEBUG and THREADS OPTIONS. Keep the latter enabled by OPTIONS_DEFAULT to preserve compatibility with existing behaviour. - Explicitly pass OpenSSL include / library dir paths to configure - Unsilence install command - Enable verbose building (--disable-silent-rules) - Use TOUCH variable instead of hardcoded command - Add TEST_TARGET to enable test suite - Pet portlint (*_DEPENDS order, group USE{S} sections, sort OPTIONS) - Remove empty line in pkg-plist Approved by: cy (maintainer) Differential Revision: D4812 Approved by: portmgr (feld) Modified: branches/2016Q1/net/ntp-devel/Makefile branches/2016Q1/net/ntp-devel/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/ntp-devel/Makefile ============================================================================== --- branches/2016Q1/net/ntp-devel/Makefile Thu Jan 7 16:16:28 2016 (r405467) +++ branches/2016Q1/net/ntp-devel/Makefile Thu Jan 7 16:16:40 2016 (r405468) @@ -3,6 +3,7 @@ PORTNAME= ntp PORTVERSION= 4.3.88 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-dev/ \ http://archive.ntp.org/ntp4/ntp-dev/ @@ -12,12 +13,19 @@ DISTNAME= ${PORTNAME}-dev-${PORTVERSION: MAINTAINER= cy@FreeBSD.org COMMENT= The Network Time Protocol Distribution +LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 + CONFLICTS= ntp-[0-9].* ntp-rc-* -GNU_CONFIGURE= yes -OPTIONS_SUB= yes USES= cpe pathfix shebangfix libedit libtool pkgconfig -LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 + +USE_OPENSSL= yes +USES+= gettext-runtime + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-silent-rules + +TEST_TARGET= check SHEBANG_FILES= scripts/ntptrace/ntptrace.in \ scripts/ntp-wait/ntp-wait.in \ @@ -26,24 +34,32 @@ perl_OLD_CMD= @PATH_PERL@ .include "Makefile.inc" -PERL_UTILS_USES= perl5 - -SSL_USE= OPENSSL=yes -SSL_CONFIGURE_OFF= --without-crypto +OPTIONS_DEFINE+= DEBUG NLS THREADS +OPTIONS_DEFAULT+= THREADS +OPTIONS_SUB= yes IPV6_CONFIGURE_ENABLE= ipv6 +NLS_CONFIGURE_ENABLE= nls +NLS_CONFIGURE_OFF= ac_cv_lib_intl_gettext=no +NLS_USES= gettext-runtime + NTP_SIGND_CONFIGURE_ENABLE= ntp-signd NTPSNMPD_LIB_DEPENDS= libnetsnmp.so:${PORTSDIR}/net-mgmt/net-snmp NTPSNMPD_CONFIGURE_OFF= --without-ntpsnmpd -.include +PERL_UTILS_USES= perl5 -.if ${PORT_OPTIONS:MSSL} -CONFIGURE_ARGS+= --with-openssl-incdir=${OPENSSLINC} \ +SSL_USE= OPENSSL=yes +SSL_CONFIGURE_ON= --with-openssl-incdir=${OPENSSLINC} \ --with-openssl-libdir=${OPENSSLLIB} -.endif +SSL_CONFIGURE_OFF= --without-crypto + +THREADS_CONFIGURE_ENABLE= thread-support +THREADS_CONFIGURE_WITH= threads + +.include .for D in ${NTP_DRIVERS} .if ${PORT_OPTIONS:M${D}} @@ -53,12 +69,12 @@ CONFIGURE_ARGS+= --enable-${D} # XXX Temporary hack. Remember to remove this next commit. post-extract: - @/usr/bin/touch ${WRKSRC}/scripts/build/checkHtmlFileDates + @${TOUCH} ${WRKSRC}/scripts/build/checkHtmlFileDates @${CHMOD} +x ${WRKSRC}/scripts/build/checkHtmlFileDates post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/conf/* ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/conf/* ${STAGEDIR}${EXAMPLESDIR} @${MKDIR} ${STAGEDIR}${DOCSDIR} @${FIND} ${WRKSRC}/html -type f | ${XARGS} ${CHMOD} ${SHAREMODE} @cd ${WRKSRC}/html && ${FIND} . -print | \ Modified: branches/2016Q1/net/ntp-devel/pkg-plist ============================================================================== --- branches/2016Q1/net/ntp-devel/pkg-plist Thu Jan 7 16:16:28 2016 (r405467) +++ branches/2016Q1/net/ntp-devel/pkg-plist Thu Jan 7 16:16:40 2016 (r405468) @@ -499,4 +499,3 @@ sbin/update-leap %%EXAMPLESDIR%%/malarky.conf %%EXAMPLESDIR%%/pogo.conf %%EXAMPLESDIR%%/rackety.conf - From owner-svn-ports-branches@freebsd.org Thu Jan 7 17:27:23 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39E06A6563A; Thu, 7 Jan 2016 17:27:23 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E61D818F2; Thu, 7 Jan 2016 17:27:22 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u07HRMNK076380; Thu, 7 Jan 2016 17:27:22 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u07HRL4O076377; Thu, 7 Jan 2016 17:27:21 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601071727.u07HRL4O076377@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 7 Jan 2016 17:27:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405478 - in branches/2016Q1/net-p2p/sonarr: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 07 Jan 2016 17:27:23 -0000 Author: feld Date: Thu Jan 7 17:27:21 2016 New Revision: 405478 URL: https://svnweb.freebsd.org/changeset/ports/405478 Log: MFH: r405476 net-p2p/sonarr: Fix $sonarr_data_dir creation Now that $sonarr_data_dir is configurable, move creation from package to rc script to prevent sonarr from failing to start successfully. PR: 205986 Approved by: ports-secteam (with hat) Modified: branches/2016Q1/net-p2p/sonarr/Makefile branches/2016Q1/net-p2p/sonarr/files/sonarr.in branches/2016Q1/net-p2p/sonarr/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net-p2p/sonarr/Makefile ============================================================================== --- branches/2016Q1/net-p2p/sonarr/Makefile Thu Jan 7 17:26:33 2016 (r405477) +++ branches/2016Q1/net-p2p/sonarr/Makefile Thu Jan 7 17:27:21 2016 (r405478) @@ -2,7 +2,7 @@ PORTNAME= sonarr PORTVERSION= 2.0.0.3645 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-p2p MASTER_SITES= http://download.sonarr.tv/v2/master/mono/ DISTNAME= NzbDrone.master.${PORTVERSION}.mono @@ -27,6 +27,5 @@ USERS= sonarr do-install: ${INSTALL} -d -m 755 ${STAGEDIR}/${DATADIR} cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}/${DATADIR} - ${MKDIR} ${STAGEDIR}/${PREFIX}/sonarr .include Modified: branches/2016Q1/net-p2p/sonarr/files/sonarr.in ============================================================================== --- branches/2016Q1/net-p2p/sonarr/files/sonarr.in Thu Jan 7 17:26:33 2016 (r405477) +++ branches/2016Q1/net-p2p/sonarr/files/sonarr.in Thu Jan 7 17:27:21 2016 (r405478) @@ -27,6 +27,15 @@ pidfile="${sonarr_data_dir}/nzbdrone.pid procname="%%PREFIX%%/bin/mono" command="/usr/sbin/daemon" command_args="-f ${procname} %%DATADIR%%/NzbDrone.exe --nobrowser --data=${sonarr_data_dir}" -start_precmd="export XDG_CONFIG_HOME=${sonarr_data_dir}" +start_precmd=sonarr_precmd + +sonarr_precmd() +{ + export XDG_CONFIG_HOME=${sonarr_data_dir} + + if [ ! -d ${sonarr_data_dir} ]; then + install -d -o ${sonarr_user} ${sonarr_data_dir} + fi +} run_rc_command "$1" Modified: branches/2016Q1/net-p2p/sonarr/pkg-plist ============================================================================== --- branches/2016Q1/net-p2p/sonarr/pkg-plist Thu Jan 7 17:26:33 2016 (r405477) +++ branches/2016Q1/net-p2p/sonarr/pkg-plist Thu Jan 7 17:27:21 2016 (r405478) @@ -148,4 +148,3 @@ %%DATADIR%%/UI/templates.js %%DATADIR%%/UI/vendor.js %%DATADIR%%/UI/vendor.map -@dir(sonarr,wheel,755) sonarr From owner-svn-ports-branches@freebsd.org Fri Jan 8 01:28:13 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E961A66D1A; Fri, 8 Jan 2016 01:28:13 +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 3CE9213E5; Fri, 8 Jan 2016 01:28:13 +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 u081SCkl028324; Fri, 8 Jan 2016 01:28:12 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u081SCJC028322; Fri, 8 Jan 2016 01:28:12 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201601080128.u081SCJC028322@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 8 Jan 2016 01:28:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405500 - branches/2016Q1/games/openra X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 01:28:13 -0000 Author: jbeich Date: Fri Jan 8 01:28:11 2016 New Revision: 405500 URL: https://svnweb.freebsd.org/changeset/ports/405500 Log: MFH: r405355 games/openra: update GeoLite2 to January snapshot Approved by: ports-secteam (feld) Modified: branches/2016Q1/games/openra/Makefile branches/2016Q1/games/openra/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/games/openra/Makefile ============================================================================== --- branches/2016Q1/games/openra/Makefile Fri Jan 8 01:06:06 2016 (r405499) +++ branches/2016Q1/games/openra/Makefile Fri Jan 8 01:28:11 2016 (r405500) @@ -3,6 +3,7 @@ PORTNAME= openra PORTVERSION= 20151224 DISTVERSIONPREFIX= release- +PORTREVISION= 1 CATEGORIES= games # XXX Convert to USES=nuget or package dependencies instead MASTER_SITES= https://nuget.org/api/v2/package/StyleCopPlus.MSBuild/4.7.49.5?dummy=/:StyleCopPlus \ Modified: branches/2016Q1/games/openra/distinfo ============================================================================== --- branches/2016Q1/games/openra/distinfo Fri Jan 8 01:06:06 2016 (r405499) +++ branches/2016Q1/games/openra/distinfo Fri Jan 8 01:28:11 2016 (r405500) @@ -28,5 +28,5 @@ SHA256 (SDL2-CS.dll) = acb68619a8043b044 SIZE (SDL2-CS.dll) = 2884608 SHA256 (Eluant.dll) = abb67679c241ae35a430f79696792cbd9093ceda5998f6f578d0fd763ee440b0 SIZE (Eluant.dll) = 64000 -SHA256 (GeoLite2-Country.mmdb.gz) = 15547cab201f47d142bb6e32d75170d1098bb29ee5729e8d66a80ef9c1fc6081 -SIZE (GeoLite2-Country.mmdb.gz) = 1074451 +SHA256 (GeoLite2-Country.mmdb.gz) = 951ab95ae114f38a4eb5e4ae4fba9d65751abb87b280f3a508fc3949a1e2b86a +SIZE (GeoLite2-Country.mmdb.gz) = 1085151 From owner-svn-ports-branches@freebsd.org Fri Jan 8 01:30:58 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE667A66DD9; Fri, 8 Jan 2016 01:30:57 +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 791F815B7; Fri, 8 Jan 2016 01:30:57 +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 u081UudD028652; Fri, 8 Jan 2016 01:30:56 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u081UuNe028646; Fri, 8 Jan 2016 01:30:56 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201601080130.u081UuNe028646@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 8 Jan 2016 01:30:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405501 - in branches/2016Q1/www: firefox firefox-i18n linux-firefox X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 01:30:58 -0000 Author: jbeich Date: Fri Jan 8 01:30:55 2016 New Revision: 405501 URL: https://svnweb.freebsd.org/changeset/ports/405501 Log: MFH: r405495 www/firefox: update to 43.0.4 Changes: https://www.mozilla.org/firefox/43.0.4/releasenotes/ PR: 205984 Approved by: ports-secteam (miwi) Modified: branches/2016Q1/www/firefox-i18n/Makefile branches/2016Q1/www/firefox-i18n/distinfo branches/2016Q1/www/firefox/Makefile branches/2016Q1/www/firefox/distinfo branches/2016Q1/www/linux-firefox/Makefile branches/2016Q1/www/linux-firefox/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/firefox-i18n/Makefile ============================================================================== --- branches/2016Q1/www/firefox-i18n/Makefile Fri Jan 8 01:28:11 2016 (r405500) +++ branches/2016Q1/www/firefox-i18n/Makefile Fri Jan 8 01:30:55 2016 (r405501) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 43.0.3 +PORTVERSION= 43.0.4 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi Modified: branches/2016Q1/www/firefox-i18n/distinfo ============================================================================== --- branches/2016Q1/www/firefox-i18n/distinfo Fri Jan 8 01:28:11 2016 (r405500) +++ branches/2016Q1/www/firefox-i18n/distinfo Fri Jan 8 01:30:55 2016 (r405501) @@ -1,178 +1,178 @@ -SHA256 (xpi/firefox-i18n-43.0.3/ach.xpi) = 5143a7cdd9243695f64db4288c8e4b8dda5732bd20d5e9d4651016e13bb95d58 -SIZE (xpi/firefox-i18n-43.0.3/ach.xpi) = 486757 -SHA256 (xpi/firefox-i18n-43.0.3/af.xpi) = 7d21f67d3b7cecafd406d1aada00efec98b51f3b984f59491926d3cd49657c56 -SIZE (xpi/firefox-i18n-43.0.3/af.xpi) = 493734 -SHA256 (xpi/firefox-i18n-43.0.3/an.xpi) = 4588545c42bbf9e2c8cab715bd45ee60fdb30e58862562bb829b0ab20883968d -SIZE (xpi/firefox-i18n-43.0.3/an.xpi) = 472422 -SHA256 (xpi/firefox-i18n-43.0.3/ar.xpi) = cc789a29d6fa1eefac014519968d26e4ecc95175f095739641141298ecd958dd -SIZE (xpi/firefox-i18n-43.0.3/ar.xpi) = 531445 -SHA256 (xpi/firefox-i18n-43.0.3/as.xpi) = f98110cfa9564f200fbfacf244a18c1be50602adae848648cdfe052d496f6f04 -SIZE (xpi/firefox-i18n-43.0.3/as.xpi) = 520380 -SHA256 (xpi/firefox-i18n-43.0.3/ast.xpi) = 4cfd3a347f2ad7051436011fbe29e44f1546450535b4dfe40f07d0876d1d368a -SIZE (xpi/firefox-i18n-43.0.3/ast.xpi) = 414848 -SHA256 (xpi/firefox-i18n-43.0.3/az.xpi) = b47f5f9f81ba06756e77a14525d82aff1b07b32803773b93f599603f1924d9f3 -SIZE (xpi/firefox-i18n-43.0.3/az.xpi) = 501044 -SHA256 (xpi/firefox-i18n-43.0.3/be.xpi) = fc167d8f12e668f486aa01b8f5376171c4465ef4b20b8be743a1f051f071789d -SIZE (xpi/firefox-i18n-43.0.3/be.xpi) = 462185 -SHA256 (xpi/firefox-i18n-43.0.3/bg.xpi) = 874045bd5a6bf8248b9c6ba62b712190c9c171915796eece3250c373b77eef03 -SIZE (xpi/firefox-i18n-43.0.3/bg.xpi) = 503615 -SHA256 (xpi/firefox-i18n-43.0.3/bn-BD.xpi) = f78b8ae019873d295770780d0254033a7f0829670f931012be5cec946918621f -SIZE (xpi/firefox-i18n-43.0.3/bn-BD.xpi) = 550339 -SHA256 (xpi/firefox-i18n-43.0.3/bn-IN.xpi) = bb4ac58e1b2a33477db6b44c1c26f8e9309b94f59436dd88308c2e0369b3267f -SIZE (xpi/firefox-i18n-43.0.3/bn-IN.xpi) = 541700 -SHA256 (xpi/firefox-i18n-43.0.3/br.xpi) = 0916f7b4e21a7e1ba57358883f10196e9ce39ab622a61e2f4c1fb94796fac87e -SIZE (xpi/firefox-i18n-43.0.3/br.xpi) = 452046 -SHA256 (xpi/firefox-i18n-43.0.3/bs.xpi) = 1cd64ba3b75b7b3e1e9f8d1dfa9a84cf67ad7ef5e312626d0e048ca5f2bb84c3 -SIZE (xpi/firefox-i18n-43.0.3/bs.xpi) = 491002 -SHA256 (xpi/firefox-i18n-43.0.3/ca.xpi) = 6b266ba2f3799994622d666d0e77c95d47150c1db53155552369e53dad3f82a0 -SIZE (xpi/firefox-i18n-43.0.3/ca.xpi) = 469148 -SHA256 (xpi/firefox-i18n-43.0.3/cs.xpi) = 4412b79943edaa1902b292f564a648d1fe880530d2b2a03bd55c34a1ba0e3882 -SIZE (xpi/firefox-i18n-43.0.3/cs.xpi) = 458384 -SHA256 (xpi/firefox-i18n-43.0.3/cy.xpi) = 95fb6a01556c97636ebd754fc2f06597d677c50e963f55aac3039228ee29aaf4 -SIZE (xpi/firefox-i18n-43.0.3/cy.xpi) = 454624 -SHA256 (xpi/firefox-i18n-43.0.3/da.xpi) = 39794ef4165e9ca3eab7413b1545b9e1e96c39c503e67170200c2c476a776091 -SIZE (xpi/firefox-i18n-43.0.3/da.xpi) = 462528 -SHA256 (xpi/firefox-i18n-43.0.3/de.xpi) = b1f734919f6c2271f9f81983e5eb9cd0e85146a5e6931f38f084a605388159cd -SIZE (xpi/firefox-i18n-43.0.3/de.xpi) = 463840 -SHA256 (xpi/firefox-i18n-43.0.3/dsb.xpi) = 54423cb8262c079da861d60603c7ed19a8daf9848f76964de5814fbfeffba51f -SIZE (xpi/firefox-i18n-43.0.3/dsb.xpi) = 482634 -SHA256 (xpi/firefox-i18n-43.0.3/el.xpi) = d0677dd4ab1baf22f45d20696b3c4f8af0b5c62981e6146eec2f673b24558d6c -SIZE (xpi/firefox-i18n-43.0.3/el.xpi) = 508364 -SHA256 (xpi/firefox-i18n-43.0.3/en-GB.xpi) = 7eb8c0b5dac1b147782961f6b1e8592eb914f0af7c4dafc5e2753e7653bead17 -SIZE (xpi/firefox-i18n-43.0.3/en-GB.xpi) = 448389 -SHA256 (xpi/firefox-i18n-43.0.3/en-US.xpi) = e5f4b3fdfaa0192c3a2c440127eb93e6bbf8d63f88eaa2389117f7fb4d6a69e2 -SIZE (xpi/firefox-i18n-43.0.3/en-US.xpi) = 500718 -SHA256 (xpi/firefox-i18n-43.0.3/en-ZA.xpi) = aff3c5017d640bdf09533261e20275eb910f7021205f95b195ab4fb65be0b7d3 -SIZE (xpi/firefox-i18n-43.0.3/en-ZA.xpi) = 453305 -SHA256 (xpi/firefox-i18n-43.0.3/eo.xpi) = b717abf1170509b2db672cfa775bd41ba94de16e291a8fa87898006f37bfb0f4 -SIZE (xpi/firefox-i18n-43.0.3/eo.xpi) = 494360 -SHA256 (xpi/firefox-i18n-43.0.3/es-AR.xpi) = 82b8739a9745c10872792c80d2ecd6441f4ec7cfe7a0e10c6fbca187cda8792e -SIZE (xpi/firefox-i18n-43.0.3/es-AR.xpi) = 462418 -SHA256 (xpi/firefox-i18n-43.0.3/es-CL.xpi) = 677534acfcf999e8d731192438f8225ee71c73ab3c7eef95d5b4d3f2f1a4831c -SIZE (xpi/firefox-i18n-43.0.3/es-CL.xpi) = 388434 -SHA256 (xpi/firefox-i18n-43.0.3/es-ES.xpi) = d2e8808c5e732fb626f30b85069dbe0163466e941232a963ce96760e455f4792 -SIZE (xpi/firefox-i18n-43.0.3/es-ES.xpi) = 375333 -SHA256 (xpi/firefox-i18n-43.0.3/es-MX.xpi) = f01b0ec955cdff2bcf7623de2612ea34d9e472308bc62d6acf581ca20ab81c68 -SIZE (xpi/firefox-i18n-43.0.3/es-MX.xpi) = 468294 -SHA256 (xpi/firefox-i18n-43.0.3/et.xpi) = 9bf3275e29a112484cd2be079153228d2913acb55d102a11ff80e5aa948272b5 -SIZE (xpi/firefox-i18n-43.0.3/et.xpi) = 455409 -SHA256 (xpi/firefox-i18n-43.0.3/eu.xpi) = 40e44aff6272b3a9fea0f9f01e3b4da408ff08d1c75adc56a59df009317d3ee9 -SIZE (xpi/firefox-i18n-43.0.3/eu.xpi) = 477496 -SHA256 (xpi/firefox-i18n-43.0.3/fa.xpi) = fd4c493405c3539f88f07456b41f5c15fb8d3e5c29b913654ba04d81ded79283 -SIZE (xpi/firefox-i18n-43.0.3/fa.xpi) = 529697 -SHA256 (xpi/firefox-i18n-43.0.3/ff.xpi) = 6a58a66a06f9633701bbf083a3ee7fbb69f4801cc99bc8b92cc7300e055db15e -SIZE (xpi/firefox-i18n-43.0.3/ff.xpi) = 465024 -SHA256 (xpi/firefox-i18n-43.0.3/fi.xpi) = ca70e27e3ef49b9ca2832ea381ce90831029f5f47e9a08dae73c6dc3d7c7c006 -SIZE (xpi/firefox-i18n-43.0.3/fi.xpi) = 454717 -SHA256 (xpi/firefox-i18n-43.0.3/fr.xpi) = 0baf1ea9947febd84c02b35c2c96e0c364ba40390754e7bf467cdb55785cc6d0 -SIZE (xpi/firefox-i18n-43.0.3/fr.xpi) = 473568 -SHA256 (xpi/firefox-i18n-43.0.3/fy-NL.xpi) = 80be3038dadeb3ff2e825f2abf06e728da69651358468fe423ffa2729a9ed2a8 -SIZE (xpi/firefox-i18n-43.0.3/fy-NL.xpi) = 466648 -SHA256 (xpi/firefox-i18n-43.0.3/ga-IE.xpi) = d123063fea8b5faf65cb3359869d5b8962143c4cd96120b3ddeb22438b28e32e -SIZE (xpi/firefox-i18n-43.0.3/ga-IE.xpi) = 478966 -SHA256 (xpi/firefox-i18n-43.0.3/gd.xpi) = 628e2b8fd05e423bafa191fb35edf6edaa70a8bb1d966cda95d913d0087af653 -SIZE (xpi/firefox-i18n-43.0.3/gd.xpi) = 464868 -SHA256 (xpi/firefox-i18n-43.0.3/gl.xpi) = 279f104d8dc3643146893fa970bb456d0a71b8272755f1b407b4ebc70f1621f5 -SIZE (xpi/firefox-i18n-43.0.3/gl.xpi) = 454573 -SHA256 (xpi/firefox-i18n-43.0.3/gu-IN.xpi) = b534a34454e80b9b2ba9ec468d399909c1066ccbe8aa4921de819d7a3f21bb0c -SIZE (xpi/firefox-i18n-43.0.3/gu-IN.xpi) = 495781 -SHA256 (xpi/firefox-i18n-43.0.3/he.xpi) = 836bb18046f7b80cd9620edeb48effd6fb578f17123b0db886c80c541715a19a -SIZE (xpi/firefox-i18n-43.0.3/he.xpi) = 484110 -SHA256 (xpi/firefox-i18n-43.0.3/hi-IN.xpi) = a773c716bbca540c4db6ca1d3aef51741d702a3b803be5ecaed39cd0a22b0908 -SIZE (xpi/firefox-i18n-43.0.3/hi-IN.xpi) = 519473 -SHA256 (xpi/firefox-i18n-43.0.3/hr.xpi) = 12718da68aa24c96ccfa680e5b9e4a734b9d02f4a52331c9782a6a78f76e1666 -SIZE (xpi/firefox-i18n-43.0.3/hr.xpi) = 489138 -SHA256 (xpi/firefox-i18n-43.0.3/hsb.xpi) = 3e35608440981cf1abf19688d0bfc996fce716c000c4fdea289df6c09d363df3 -SIZE (xpi/firefox-i18n-43.0.3/hsb.xpi) = 480278 -SHA256 (xpi/firefox-i18n-43.0.3/hu.xpi) = 382f8a910c574aef5485f4063d83398c9c19f10d59cb0f8c99ba3a6ea5fd8825 -SIZE (xpi/firefox-i18n-43.0.3/hu.xpi) = 464706 -SHA256 (xpi/firefox-i18n-43.0.3/hy-AM.xpi) = 6370ba053f783fe1aec5088ac12d3b17bd55c68442242786599777dec5c58e19 -SIZE (xpi/firefox-i18n-43.0.3/hy-AM.xpi) = 548747 -SHA256 (xpi/firefox-i18n-43.0.3/id.xpi) = 915a93cefea2d8963491552fb9a617d3fb756d095fe4dbffba517aaa6c9b3e06 -SIZE (xpi/firefox-i18n-43.0.3/id.xpi) = 443809 -SHA256 (xpi/firefox-i18n-43.0.3/is.xpi) = c7d73398a3c5af5f2f987303bd9275434d99bd3fe32df63fc731bc249202ef0f -SIZE (xpi/firefox-i18n-43.0.3/is.xpi) = 495909 -SHA256 (xpi/firefox-i18n-43.0.3/it.xpi) = 04cb2f6ea7b749fffb6ff2375f456c809180a64c2712e8f28ee5ae5ca9fe4145 -SIZE (xpi/firefox-i18n-43.0.3/it.xpi) = 369329 -SHA256 (xpi/firefox-i18n-43.0.3/ja.xpi) = c67c7d66b732fdcae5db2463b272b796e449832b0d886b0528de6741259647e5 -SIZE (xpi/firefox-i18n-43.0.3/ja.xpi) = 491472 -SHA256 (xpi/firefox-i18n-43.0.3/kk.xpi) = dabfdd5c3220c3bed528ca48dd8b546642ddcc0c57cd4e16ea907eaed59784ed -SIZE (xpi/firefox-i18n-43.0.3/kk.xpi) = 516825 -SHA256 (xpi/firefox-i18n-43.0.3/km.xpi) = 7052bd6ed591683b1f7c71c21542757c7d6596d575de98951abb721c5d091b54 -SIZE (xpi/firefox-i18n-43.0.3/km.xpi) = 581656 -SHA256 (xpi/firefox-i18n-43.0.3/kn.xpi) = a728251af4c8a3303d16d44fd853f364bbac52627a792ac715265e765536f447 -SIZE (xpi/firefox-i18n-43.0.3/kn.xpi) = 548586 -SHA256 (xpi/firefox-i18n-43.0.3/ko.xpi) = bacd19e897b98ded3505979f8a720ee65c444df0d217e943825daf07e060140f -SIZE (xpi/firefox-i18n-43.0.3/ko.xpi) = 477482 -SHA256 (xpi/firefox-i18n-43.0.3/lij.xpi) = 5feb07eaa32efe9f796fb5dbc4e0282f2c5d5b51882afa09f6f57ac6adeeb558 -SIZE (xpi/firefox-i18n-43.0.3/lij.xpi) = 403511 -SHA256 (xpi/firefox-i18n-43.0.3/lt.xpi) = 5fd8768347700ad23755094a2a753fec8d75d358a3c64aaecb2a2317e1fe500a -SIZE (xpi/firefox-i18n-43.0.3/lt.xpi) = 498173 -SHA256 (xpi/firefox-i18n-43.0.3/lv.xpi) = 5469223688d81ebcf1a68e68899aa3c81876219dab57a5b8b5876e0bfe041c52 -SIZE (xpi/firefox-i18n-43.0.3/lv.xpi) = 478097 -SHA256 (xpi/firefox-i18n-43.0.3/mai.xpi) = af60084c2c6f0ccb1500a08e5232f16c0f5b90d34b83eed72186ef7c6c759809 -SIZE (xpi/firefox-i18n-43.0.3/mai.xpi) = 527786 -SHA256 (xpi/firefox-i18n-43.0.3/mk.xpi) = 9d3b3645e412b8ebca3acfee68657bf40a758b81203719f216a7c82b8709a8f6 -SIZE (xpi/firefox-i18n-43.0.3/mk.xpi) = 537952 -SHA256 (xpi/firefox-i18n-43.0.3/ml.xpi) = f9cdc42f0a9c5e91d7147ca5528e468217804a1e77905ae68c0eb77d757e86b2 -SIZE (xpi/firefox-i18n-43.0.3/ml.xpi) = 537548 -SHA256 (xpi/firefox-i18n-43.0.3/mr.xpi) = d53b0a34be8c4c02a39535b396f702af958987071cf8ec9b13eb3aefcb780f1f -SIZE (xpi/firefox-i18n-43.0.3/mr.xpi) = 527027 -SHA256 (xpi/firefox-i18n-43.0.3/ms.xpi) = 7f161da08b0860cdf65ad8aca8a07cfe8e1ef67a6d864d347d39513f9a9c1531 -SIZE (xpi/firefox-i18n-43.0.3/ms.xpi) = 502123 -SHA256 (xpi/firefox-i18n-43.0.3/nb-NO.xpi) = 98217f7eb1be0503fa1cfad51dec52383efaf2bcab592f95c0beef6f2d952fdd -SIZE (xpi/firefox-i18n-43.0.3/nb-NO.xpi) = 456065 -SHA256 (xpi/firefox-i18n-43.0.3/nl.xpi) = 9787336b7c0db11f9038c6f5d8525fe51d9ceef0a8039cae84ea39beba372802 -SIZE (xpi/firefox-i18n-43.0.3/nl.xpi) = 454467 -SHA256 (xpi/firefox-i18n-43.0.3/nn-NO.xpi) = 302189cc5f7d6f2bc352d86d2057130dc139264c24ee0f7d517c075c0cae08bf -SIZE (xpi/firefox-i18n-43.0.3/nn-NO.xpi) = 450234 -SHA256 (xpi/firefox-i18n-43.0.3/or.xpi) = 930abf71a2cf04b8da155f3b98da09b0f7996b53c8d6369fb14bbd5828e470bd -SIZE (xpi/firefox-i18n-43.0.3/or.xpi) = 536915 -SHA256 (xpi/firefox-i18n-43.0.3/pa-IN.xpi) = ff4071f0b778ba24a9864b797fce8e66f62b1e1c5dc76e29e8626a3a8e69ee7b -SIZE (xpi/firefox-i18n-43.0.3/pa-IN.xpi) = 511159 -SHA256 (xpi/firefox-i18n-43.0.3/pl.xpi) = 8882afb4a8b5f68109fd2087d300a97c78a7b0117d18f2f2942a5ccb8219007b -SIZE (xpi/firefox-i18n-43.0.3/pl.xpi) = 404460 -SHA256 (xpi/firefox-i18n-43.0.3/pt-BR.xpi) = fed79a4c26f3135ef63f66113a04bb834d0a6012c3815a34533842935c4ae17b -SIZE (xpi/firefox-i18n-43.0.3/pt-BR.xpi) = 473005 -SHA256 (xpi/firefox-i18n-43.0.3/pt-PT.xpi) = 63a67adf4cb8fe314a860a294f52b50cd525b9c244dd32ad9d947191e320fefa -SIZE (xpi/firefox-i18n-43.0.3/pt-PT.xpi) = 451858 -SHA256 (xpi/firefox-i18n-43.0.3/rm.xpi) = 1103fca20fe8cbf9a4a57ef5f6dabeac90d7cce122fddb922853018874c51811 -SIZE (xpi/firefox-i18n-43.0.3/rm.xpi) = 457314 -SHA256 (xpi/firefox-i18n-43.0.3/ro.xpi) = 282930373bd05848cf7ed52599356b993f08bc94bd40000cae179d13b69b9480 -SIZE (xpi/firefox-i18n-43.0.3/ro.xpi) = 505833 -SHA256 (xpi/firefox-i18n-43.0.3/ru.xpi) = c825f6aa735bc35e9b9a2515c5036043b39d3e934371199c47a35f28434930e0 -SIZE (xpi/firefox-i18n-43.0.3/ru.xpi) = 417904 -SHA256 (xpi/firefox-i18n-43.0.3/si.xpi) = 27a7e7f0236167f27fc96a4a73ed0c4085a3166728769e4dbe7d116ac3048cbd -SIZE (xpi/firefox-i18n-43.0.3/si.xpi) = 548392 -SHA256 (xpi/firefox-i18n-43.0.3/sk.xpi) = 31b021b458533954bdee1b5cccdaeb66e18089678d77e7af151b3fb4ca260647 -SIZE (xpi/firefox-i18n-43.0.3/sk.xpi) = 480519 -SHA256 (xpi/firefox-i18n-43.0.3/sl.xpi) = a50bfdfe25874918baa5332ab3e08d2986f1dc4704b494e8dd80be3f3468f293 -SIZE (xpi/firefox-i18n-43.0.3/sl.xpi) = 453338 -SHA256 (xpi/firefox-i18n-43.0.3/son.xpi) = 81aa3883107aafc65759a05d9baf3e9ef5de7e1f0e0fdbc8f14d607eb8f99a45 -SIZE (xpi/firefox-i18n-43.0.3/son.xpi) = 462151 -SHA256 (xpi/firefox-i18n-43.0.3/sq.xpi) = a5981eb087585d3d17b1574c90f0f6c6ce244c56597562394293f0fc786036cb -SIZE (xpi/firefox-i18n-43.0.3/sq.xpi) = 497506 -SHA256 (xpi/firefox-i18n-43.0.3/sr.xpi) = 7b46ba42d8fd170aea736bff7348aac662d6b723ff5c16895850d777ad916f56 -SIZE (xpi/firefox-i18n-43.0.3/sr.xpi) = 489349 -SHA256 (xpi/firefox-i18n-43.0.3/sv-SE.xpi) = 77e204a48b29226296469152bee9b603fca7fb96696832b715122c53d3088535 -SIZE (xpi/firefox-i18n-43.0.3/sv-SE.xpi) = 463026 -SHA256 (xpi/firefox-i18n-43.0.3/ta.xpi) = 564f2767b4b33e3d62a65666488b8d5cb649f9e12f900a0ca53b577bbf16eb7e -SIZE (xpi/firefox-i18n-43.0.3/ta.xpi) = 519590 -SHA256 (xpi/firefox-i18n-43.0.3/te.xpi) = 11ca12227d9ad7a782047756a2260c0287647b5b7fd6a44ad43e323839053725 -SIZE (xpi/firefox-i18n-43.0.3/te.xpi) = 537274 -SHA256 (xpi/firefox-i18n-43.0.3/th.xpi) = ef69ed03ea5d58c2452624d0662a7e96427a39cbf72fe94c338970fcb4bc1b63 -SIZE (xpi/firefox-i18n-43.0.3/th.xpi) = 546510 -SHA256 (xpi/firefox-i18n-43.0.3/tr.xpi) = dd59ff9cf74825038d040dc624340a3faf5572cc95845b647342d8dd52cea6b3 -SIZE (xpi/firefox-i18n-43.0.3/tr.xpi) = 492360 -SHA256 (xpi/firefox-i18n-43.0.3/uk.xpi) = 70214e508b881deffa3d4b90abdc61f8d22dbdbeb53d42c81c8d3c281adb5920 -SIZE (xpi/firefox-i18n-43.0.3/uk.xpi) = 508886 -SHA256 (xpi/firefox-i18n-43.0.3/uz.xpi) = 0deecb69f798b452077dcf574ab073a3a49b3885148ac329b08d79e0ee39ad8b -SIZE (xpi/firefox-i18n-43.0.3/uz.xpi) = 510089 -SHA256 (xpi/firefox-i18n-43.0.3/vi.xpi) = bf20b9d85497574e587494b2e43d8e81c897bfda39c30ae9d10b7d3d7c80fd7b -SIZE (xpi/firefox-i18n-43.0.3/vi.xpi) = 476613 -SHA256 (xpi/firefox-i18n-43.0.3/xh.xpi) = 366f809cd956546b764d6bbaf6acf35ad70056ceb76ec8e94936c8e60fbe5d03 -SIZE (xpi/firefox-i18n-43.0.3/xh.xpi) = 458721 -SHA256 (xpi/firefox-i18n-43.0.3/zh-CN.xpi) = bd9b067281609e9969d307ea132aa3cecf13f5ee787954846301fe8c08571c84 -SIZE (xpi/firefox-i18n-43.0.3/zh-CN.xpi) = 493641 -SHA256 (xpi/firefox-i18n-43.0.3/zh-TW.xpi) = 79744dfee12121f8b6f092527ae76b15e90eb2f582ea3ec39558a615bf59e4e3 -SIZE (xpi/firefox-i18n-43.0.3/zh-TW.xpi) = 485318 +SHA256 (xpi/firefox-i18n-43.0.4/ach.xpi) = be9c47f34e5e0ee73075fc4f47c5a545eb41ad6040b78a78d6e332070ff7f269 +SIZE (xpi/firefox-i18n-43.0.4/ach.xpi) = 486757 +SHA256 (xpi/firefox-i18n-43.0.4/af.xpi) = 380af6d7da7218d58db1c21fa3782e4b87808953c4020a807f4b0a18c3f45f18 +SIZE (xpi/firefox-i18n-43.0.4/af.xpi) = 493734 +SHA256 (xpi/firefox-i18n-43.0.4/an.xpi) = 3b54dff514bea2f13209de8e826df0910acc85cd20fde87a1cfaa0b71fe81d63 +SIZE (xpi/firefox-i18n-43.0.4/an.xpi) = 472422 +SHA256 (xpi/firefox-i18n-43.0.4/ar.xpi) = fcb0e08c19d365ca93f902f0e801877fbe6fc612803c9fe435624f15c472938b +SIZE (xpi/firefox-i18n-43.0.4/ar.xpi) = 531445 +SHA256 (xpi/firefox-i18n-43.0.4/as.xpi) = 56cacee4af42f04de55b982078137d41ea6b169460984c9fe7b921f9c6897550 +SIZE (xpi/firefox-i18n-43.0.4/as.xpi) = 520380 +SHA256 (xpi/firefox-i18n-43.0.4/ast.xpi) = df3876da8e60998ae906757bbd41d9894a1633caef72f55ab95905db7259c04c +SIZE (xpi/firefox-i18n-43.0.4/ast.xpi) = 414848 +SHA256 (xpi/firefox-i18n-43.0.4/az.xpi) = 3d64e3a7e6a50d0a30f02ca90f2eb39dc26349ff4c6468613a62fbbbb6444b1b +SIZE (xpi/firefox-i18n-43.0.4/az.xpi) = 501044 +SHA256 (xpi/firefox-i18n-43.0.4/be.xpi) = 1982702275033557f202069cc0931997b4b65fce20ec77a33e5f1e21444695a4 +SIZE (xpi/firefox-i18n-43.0.4/be.xpi) = 462185 +SHA256 (xpi/firefox-i18n-43.0.4/bg.xpi) = 3675f48a41c2ff751b7804ed055924f5c7f9a4fa762165c5a2eeb716059cda54 +SIZE (xpi/firefox-i18n-43.0.4/bg.xpi) = 503615 +SHA256 (xpi/firefox-i18n-43.0.4/bn-BD.xpi) = 9cec06da8bb3716f6068e9820093ab8b7192a1c3dd1c4e78cbefc94f37692b7e +SIZE (xpi/firefox-i18n-43.0.4/bn-BD.xpi) = 550339 +SHA256 (xpi/firefox-i18n-43.0.4/bn-IN.xpi) = 54999616675a065d5ef380c97a3d321cb917e6a3e69f249ca82348122e9c53f0 +SIZE (xpi/firefox-i18n-43.0.4/bn-IN.xpi) = 541700 +SHA256 (xpi/firefox-i18n-43.0.4/br.xpi) = 335b805ec9916b718060795f6043c04a2acbf73374f0df7a1884f01efa0ee907 +SIZE (xpi/firefox-i18n-43.0.4/br.xpi) = 452046 +SHA256 (xpi/firefox-i18n-43.0.4/bs.xpi) = 889965720e4102db67dd48338a25214b67ff4a11d55c39d5bb119c10dacc1be7 +SIZE (xpi/firefox-i18n-43.0.4/bs.xpi) = 491002 +SHA256 (xpi/firefox-i18n-43.0.4/ca.xpi) = 012be42481d7b73151ddbc8a1ef3eafd818f342fae63b2d9c681516bbe9d69c7 +SIZE (xpi/firefox-i18n-43.0.4/ca.xpi) = 469148 +SHA256 (xpi/firefox-i18n-43.0.4/cs.xpi) = 1b82dd23bf824d4593384be72cb65a587ce3e95359dfa063564629b48518f689 +SIZE (xpi/firefox-i18n-43.0.4/cs.xpi) = 458384 +SHA256 (xpi/firefox-i18n-43.0.4/cy.xpi) = db3469854526a317ad32386aaff8716c39dcf835883252973dc8deb8803af139 +SIZE (xpi/firefox-i18n-43.0.4/cy.xpi) = 454624 +SHA256 (xpi/firefox-i18n-43.0.4/da.xpi) = bc996025468c2160ce88b208a581a369ea9f9785aff2931d5a4435edcd26dd13 +SIZE (xpi/firefox-i18n-43.0.4/da.xpi) = 462528 +SHA256 (xpi/firefox-i18n-43.0.4/de.xpi) = 039604218be58c1b8dd8dc6997b49171c49003ce1495efe52970babbf3191ae1 +SIZE (xpi/firefox-i18n-43.0.4/de.xpi) = 463840 +SHA256 (xpi/firefox-i18n-43.0.4/dsb.xpi) = 465409d7fffda20fabd7ce7fad8c37a2e702772f897f92df4981260d4845d750 +SIZE (xpi/firefox-i18n-43.0.4/dsb.xpi) = 482633 +SHA256 (xpi/firefox-i18n-43.0.4/el.xpi) = 9bc661e5c9d6f7e59bf785225550c0f27b3c3906b73581e8bdd7e1503a4bf6a0 +SIZE (xpi/firefox-i18n-43.0.4/el.xpi) = 508363 +SHA256 (xpi/firefox-i18n-43.0.4/en-GB.xpi) = a5cba52fe095db18f6793cd190b516ce582dbec4878931631949a64c4cd98ae4 +SIZE (xpi/firefox-i18n-43.0.4/en-GB.xpi) = 448389 +SHA256 (xpi/firefox-i18n-43.0.4/en-US.xpi) = 5ce5680f9a8c17dfebd70580d6108aa36e0e820aa8b3d74f5109a1c9ba1ecf6d +SIZE (xpi/firefox-i18n-43.0.4/en-US.xpi) = 500718 +SHA256 (xpi/firefox-i18n-43.0.4/en-ZA.xpi) = 1fa4acd321d1a50859f1c743d353104786536c3dd48f78864a525aad23c2f51b +SIZE (xpi/firefox-i18n-43.0.4/en-ZA.xpi) = 453305 +SHA256 (xpi/firefox-i18n-43.0.4/eo.xpi) = 019ccdda113b9abe1f89b42602cb80e3b096665e36284d516b7122124ab3b603 +SIZE (xpi/firefox-i18n-43.0.4/eo.xpi) = 494360 +SHA256 (xpi/firefox-i18n-43.0.4/es-AR.xpi) = 65dfd8ebc2e46b8e01958a4e1ad378cf66d26afed45212328b8e7af2132f3a02 +SIZE (xpi/firefox-i18n-43.0.4/es-AR.xpi) = 462418 +SHA256 (xpi/firefox-i18n-43.0.4/es-CL.xpi) = 6abd7e4e7a636e3e939bef18620998114340be5ba4ee1ee945d2e9bd30971c82 +SIZE (xpi/firefox-i18n-43.0.4/es-CL.xpi) = 388434 +SHA256 (xpi/firefox-i18n-43.0.4/es-ES.xpi) = 41dc64ef5e35192d92fde41a97e8dddc278cc7967c96f37881747d99dcab818c +SIZE (xpi/firefox-i18n-43.0.4/es-ES.xpi) = 375333 +SHA256 (xpi/firefox-i18n-43.0.4/es-MX.xpi) = b2b9e05ebbfdf8c4da2a515c9eacb973fca4dab30bcc659baf338e375ff5f8b7 +SIZE (xpi/firefox-i18n-43.0.4/es-MX.xpi) = 468294 +SHA256 (xpi/firefox-i18n-43.0.4/et.xpi) = 6f5e3a9eee857def394c40b0eb22dc7e4ff3c44d86d2643deadeccd4477d2e65 +SIZE (xpi/firefox-i18n-43.0.4/et.xpi) = 455409 +SHA256 (xpi/firefox-i18n-43.0.4/eu.xpi) = 9cfe5f5a4a5b666cca0b2d7fb44b92b1898ab1361dcd89234fa7fe22e57662b6 +SIZE (xpi/firefox-i18n-43.0.4/eu.xpi) = 477496 +SHA256 (xpi/firefox-i18n-43.0.4/fa.xpi) = 7bc8df5d37488421d921151751db7187b306982ef3b4c5a803c16543928ab0b2 +SIZE (xpi/firefox-i18n-43.0.4/fa.xpi) = 529698 +SHA256 (xpi/firefox-i18n-43.0.4/ff.xpi) = 7364289cb2cf3b5f6089bbdcd9068935fd7a44cecb33bc8de57bcd81c508383d +SIZE (xpi/firefox-i18n-43.0.4/ff.xpi) = 465024 +SHA256 (xpi/firefox-i18n-43.0.4/fi.xpi) = 88416fb5761d95ffaa6174857da3964ec433a381089386dbfbed1134ad93ce0f +SIZE (xpi/firefox-i18n-43.0.4/fi.xpi) = 454717 +SHA256 (xpi/firefox-i18n-43.0.4/fr.xpi) = 37fd098a0eb49377f6449140dfc5a0433be1242188dbdc9ef8ed2a196adf2e91 +SIZE (xpi/firefox-i18n-43.0.4/fr.xpi) = 473568 +SHA256 (xpi/firefox-i18n-43.0.4/fy-NL.xpi) = b56ac063d560dc934b813b76c6db1e055827e42114077480039ee116319d85b2 +SIZE (xpi/firefox-i18n-43.0.4/fy-NL.xpi) = 466648 +SHA256 (xpi/firefox-i18n-43.0.4/ga-IE.xpi) = 6c7f017927a9f1cc8d1cee0e55f6c7a3ac0da72a6b85d6cefbbbda872022ac51 +SIZE (xpi/firefox-i18n-43.0.4/ga-IE.xpi) = 478966 +SHA256 (xpi/firefox-i18n-43.0.4/gd.xpi) = 74886e7f163eb5abce12916381e2b446df892ebdda1478486ddee053c19260e9 +SIZE (xpi/firefox-i18n-43.0.4/gd.xpi) = 464868 +SHA256 (xpi/firefox-i18n-43.0.4/gl.xpi) = 29d5477baa9cabd6901fcdf0583cc88e672dd38a548724252764f69f5a4859bc +SIZE (xpi/firefox-i18n-43.0.4/gl.xpi) = 454573 +SHA256 (xpi/firefox-i18n-43.0.4/gu-IN.xpi) = 3f6703e783322706018e91719ecb97512cb7ddf0c324380ce1e605b799348c4b +SIZE (xpi/firefox-i18n-43.0.4/gu-IN.xpi) = 495781 +SHA256 (xpi/firefox-i18n-43.0.4/he.xpi) = 2fcc0ba9b06850566207187ef4a9b3879928c70b30e06c38dccd175699f90ff2 +SIZE (xpi/firefox-i18n-43.0.4/he.xpi) = 484110 +SHA256 (xpi/firefox-i18n-43.0.4/hi-IN.xpi) = 356115b71d00e034b250c5b3f069e102c8de5d9ea654fc56527f3c89bc75ce2b +SIZE (xpi/firefox-i18n-43.0.4/hi-IN.xpi) = 519473 +SHA256 (xpi/firefox-i18n-43.0.4/hr.xpi) = 89cc93306ff796d764f5a11ccbc9dcd4d4302ec72f5206a95fca92a827f35c00 +SIZE (xpi/firefox-i18n-43.0.4/hr.xpi) = 489138 +SHA256 (xpi/firefox-i18n-43.0.4/hsb.xpi) = dcb605cf5e15e219272741a8be6023adb599af6493420c92f7c4dfcfd14f3892 +SIZE (xpi/firefox-i18n-43.0.4/hsb.xpi) = 480278 +SHA256 (xpi/firefox-i18n-43.0.4/hu.xpi) = 1c6260f6134617c69a431492b80bdf42df797970cd883beed57376a3d7fc0e78 +SIZE (xpi/firefox-i18n-43.0.4/hu.xpi) = 464706 +SHA256 (xpi/firefox-i18n-43.0.4/hy-AM.xpi) = 6e92b4e47c827bee830e0882d4e80ec9ba4f6ea2c22a0009bb5c4a86154bf7b9 +SIZE (xpi/firefox-i18n-43.0.4/hy-AM.xpi) = 548747 +SHA256 (xpi/firefox-i18n-43.0.4/id.xpi) = 828c5adde35c091a74c47849564e0fd74ffc58f97e2cd270cae45e9f11ba1db9 +SIZE (xpi/firefox-i18n-43.0.4/id.xpi) = 443809 +SHA256 (xpi/firefox-i18n-43.0.4/is.xpi) = 69a799a871d0376422106134a977f823c1ae16e70776b51441950365da61203c +SIZE (xpi/firefox-i18n-43.0.4/is.xpi) = 495909 +SHA256 (xpi/firefox-i18n-43.0.4/it.xpi) = fbc3246a3bb031788476513374779a53f8123d83530226bb98c870d27d3f74d4 +SIZE (xpi/firefox-i18n-43.0.4/it.xpi) = 369329 +SHA256 (xpi/firefox-i18n-43.0.4/ja.xpi) = 371d979ba4a6d208d245c6756b00db94996d585fffa6f2d95c29c31cd56dfb33 +SIZE (xpi/firefox-i18n-43.0.4/ja.xpi) = 491472 +SHA256 (xpi/firefox-i18n-43.0.4/kk.xpi) = 46cda50a6f3f4797855291bf482395949650910c2ea5a768979356562c7b6fcc +SIZE (xpi/firefox-i18n-43.0.4/kk.xpi) = 516825 +SHA256 (xpi/firefox-i18n-43.0.4/km.xpi) = 7252b78211fdfbc37d255772f734f874236eddd4be949a41f21da5b6fca78d05 +SIZE (xpi/firefox-i18n-43.0.4/km.xpi) = 581656 +SHA256 (xpi/firefox-i18n-43.0.4/kn.xpi) = dba40b46126b0a16e7c9a1e9ac149cd53402e1fbbbce4b67c84c0258a661eeb4 +SIZE (xpi/firefox-i18n-43.0.4/kn.xpi) = 548586 +SHA256 (xpi/firefox-i18n-43.0.4/ko.xpi) = 8f1b7cc009de57f888c71d9b65510ac1a1aa2f95dce71f6e022d4ff578932f42 +SIZE (xpi/firefox-i18n-43.0.4/ko.xpi) = 477482 +SHA256 (xpi/firefox-i18n-43.0.4/lij.xpi) = 4b50e8a8b085f9ce06209236ecc31e356f70df04975e90bc1fbc382a41633728 +SIZE (xpi/firefox-i18n-43.0.4/lij.xpi) = 403511 +SHA256 (xpi/firefox-i18n-43.0.4/lt.xpi) = 1c121dabb4a54e9a13a53ef7a50c61096dc211debea85d66f713bf45a633e83f +SIZE (xpi/firefox-i18n-43.0.4/lt.xpi) = 498173 +SHA256 (xpi/firefox-i18n-43.0.4/lv.xpi) = 1365138c3dfd49816f52ffcc0a9e6167e846d746f624cc74a5f3de72a7065b71 +SIZE (xpi/firefox-i18n-43.0.4/lv.xpi) = 478097 +SHA256 (xpi/firefox-i18n-43.0.4/mai.xpi) = 0dd5e3acba12776d64d73ff9722278a06ba5eaebc16d056cd3d8625e59a7b38e +SIZE (xpi/firefox-i18n-43.0.4/mai.xpi) = 527786 +SHA256 (xpi/firefox-i18n-43.0.4/mk.xpi) = f6eb4a921becfab296515533c9f47a8bbe4f90259dd013fcc70631b622d78844 +SIZE (xpi/firefox-i18n-43.0.4/mk.xpi) = 537952 +SHA256 (xpi/firefox-i18n-43.0.4/ml.xpi) = 3e3db979621f0f60f8030cc6efd8cc7186f71c1b7fe86f6a54bbe453abfaa80a +SIZE (xpi/firefox-i18n-43.0.4/ml.xpi) = 537548 +SHA256 (xpi/firefox-i18n-43.0.4/mr.xpi) = 74d0b37e935ede8a8f1c6bc51698c75a4284c3822b9d339a561949c1715c97f2 +SIZE (xpi/firefox-i18n-43.0.4/mr.xpi) = 527027 +SHA256 (xpi/firefox-i18n-43.0.4/ms.xpi) = 111cd12ab67087f03ff2d090751ecaf2dbf6f3c85af651274daed4e642a98d1c +SIZE (xpi/firefox-i18n-43.0.4/ms.xpi) = 502123 +SHA256 (xpi/firefox-i18n-43.0.4/nb-NO.xpi) = c0378118f6d870d58b04ffb642c2878e457a91002943281be6c513f62496be24 +SIZE (xpi/firefox-i18n-43.0.4/nb-NO.xpi) = 456065 +SHA256 (xpi/firefox-i18n-43.0.4/nl.xpi) = 90862665e01c5356bdcfe7945c10747442d01ffe4235512af492dedb3e115149 +SIZE (xpi/firefox-i18n-43.0.4/nl.xpi) = 454468 +SHA256 (xpi/firefox-i18n-43.0.4/nn-NO.xpi) = 1a837ac1d7852e93b66e7842c450c2c0e92f31715d1d989e5e25d96b6c02552a +SIZE (xpi/firefox-i18n-43.0.4/nn-NO.xpi) = 450234 +SHA256 (xpi/firefox-i18n-43.0.4/or.xpi) = e42cc46f4676cb14ff9cfe7ba902600599a3e67148d5c8440b4e22dc6bf6e144 +SIZE (xpi/firefox-i18n-43.0.4/or.xpi) = 536913 +SHA256 (xpi/firefox-i18n-43.0.4/pa-IN.xpi) = b98114d8bc3b08efc95a125b9fc289f8b18157b52d66f2e5643b4bf9fdd382eb +SIZE (xpi/firefox-i18n-43.0.4/pa-IN.xpi) = 511159 +SHA256 (xpi/firefox-i18n-43.0.4/pl.xpi) = 2764c38202fe76bf129bb7eeb5548aeda5222553729bcbdc1f0b9ee8d88f6890 +SIZE (xpi/firefox-i18n-43.0.4/pl.xpi) = 404460 +SHA256 (xpi/firefox-i18n-43.0.4/pt-BR.xpi) = 6854741c77c2a810b137c166dd6e82b1359c4838087ab8706555b9ed3ea19a0d +SIZE (xpi/firefox-i18n-43.0.4/pt-BR.xpi) = 473005 +SHA256 (xpi/firefox-i18n-43.0.4/pt-PT.xpi) = c57c6c7a9d1f744c16593a3228ed21019e6d88d0ec241ab44510787cd79b08cd +SIZE (xpi/firefox-i18n-43.0.4/pt-PT.xpi) = 451858 +SHA256 (xpi/firefox-i18n-43.0.4/rm.xpi) = 3798ff1095c776af9a89ba7e21cc44ec672969a39bbd577a0d20ca2955d37ce2 +SIZE (xpi/firefox-i18n-43.0.4/rm.xpi) = 457314 +SHA256 (xpi/firefox-i18n-43.0.4/ro.xpi) = 12d4b080fa8dfb66805c9ad046883d917c85b2a802bb1fdddaabd45510a29c02 +SIZE (xpi/firefox-i18n-43.0.4/ro.xpi) = 505833 +SHA256 (xpi/firefox-i18n-43.0.4/ru.xpi) = 2ec0ffa59c2b91a1b948d137ea1cc38d9d96b2bd1487b99a7d4ef8fb820db241 +SIZE (xpi/firefox-i18n-43.0.4/ru.xpi) = 417904 +SHA256 (xpi/firefox-i18n-43.0.4/si.xpi) = 2c26d8786e5c6a6aee8e46bff066f7e2cfa423a2851fc48e9442c862edc86b50 +SIZE (xpi/firefox-i18n-43.0.4/si.xpi) = 548392 +SHA256 (xpi/firefox-i18n-43.0.4/sk.xpi) = ad2b7f87fc7b5786d4d190e2240f37d2026eff78e6e6d3754cc7fd42ea87e472 +SIZE (xpi/firefox-i18n-43.0.4/sk.xpi) = 480519 +SHA256 (xpi/firefox-i18n-43.0.4/sl.xpi) = 11c626fb2ec0bb71bd58bffe0c860c47b07c3c598db52493c17b35813661d8bb +SIZE (xpi/firefox-i18n-43.0.4/sl.xpi) = 453338 +SHA256 (xpi/firefox-i18n-43.0.4/son.xpi) = c26e656b9bb7106b7cc57ae8fdcf3816e3bdd05e2594c479d3754c928790ec6c +SIZE (xpi/firefox-i18n-43.0.4/son.xpi) = 462151 +SHA256 (xpi/firefox-i18n-43.0.4/sq.xpi) = 5dfd60759209e75e03670776c46a1d46ada59c503c35dc31e99b2fe53fefe1e7 +SIZE (xpi/firefox-i18n-43.0.4/sq.xpi) = 497506 +SHA256 (xpi/firefox-i18n-43.0.4/sr.xpi) = cc61a83ae225993c2a9f9e6f56d2d79ec9d300e22d30ebb8114d77a95a465b14 +SIZE (xpi/firefox-i18n-43.0.4/sr.xpi) = 489349 +SHA256 (xpi/firefox-i18n-43.0.4/sv-SE.xpi) = 05c7136f5e9d6b7621ae2f62134f80a84271e1b9618de68f4c58c348ce351008 +SIZE (xpi/firefox-i18n-43.0.4/sv-SE.xpi) = 463026 +SHA256 (xpi/firefox-i18n-43.0.4/ta.xpi) = 5269939c588f83c0e8cf69ca1ef81da5e4cbcaf043097ffea5eee4719a9bc29f +SIZE (xpi/firefox-i18n-43.0.4/ta.xpi) = 519590 +SHA256 (xpi/firefox-i18n-43.0.4/te.xpi) = e9be798dfb43216afae27728bd9048cbe652554a8c80b9e7698242386029a774 +SIZE (xpi/firefox-i18n-43.0.4/te.xpi) = 537274 +SHA256 (xpi/firefox-i18n-43.0.4/th.xpi) = d130d707ccccaec362fa4131cf1fe142d80930bee21050997598cd60dafb0a79 +SIZE (xpi/firefox-i18n-43.0.4/th.xpi) = 546510 +SHA256 (xpi/firefox-i18n-43.0.4/tr.xpi) = 4d904ea0972c7cd46851cbd9a7eef4f77b13de9af5b1391def33e3be7daff4d8 +SIZE (xpi/firefox-i18n-43.0.4/tr.xpi) = 492360 +SHA256 (xpi/firefox-i18n-43.0.4/uk.xpi) = 59a9ead947aced2c53bb213c86e456988cbdeb21bdf3503f3aeb6b8c22db917a +SIZE (xpi/firefox-i18n-43.0.4/uk.xpi) = 508886 +SHA256 (xpi/firefox-i18n-43.0.4/uz.xpi) = 0759eef72e46c37c48aa5d4667e787f85f9030a6aae5844442d79065e5b4d833 +SIZE (xpi/firefox-i18n-43.0.4/uz.xpi) = 510089 +SHA256 (xpi/firefox-i18n-43.0.4/vi.xpi) = bc3b2205e1970870159a1dff74b1d812e20651f78b042c088e37d4b04b046ab3 +SIZE (xpi/firefox-i18n-43.0.4/vi.xpi) = 476613 +SHA256 (xpi/firefox-i18n-43.0.4/xh.xpi) = b9083f13a53fdd6556b03c71fa0011ea193bd64f783cb6b88999551c314c9903 +SIZE (xpi/firefox-i18n-43.0.4/xh.xpi) = 458721 +SHA256 (xpi/firefox-i18n-43.0.4/zh-CN.xpi) = ac473d28b37d248d2d73bf026f666871cd6ed53a586d60d8c2a26ca39d3e732e +SIZE (xpi/firefox-i18n-43.0.4/zh-CN.xpi) = 493641 +SHA256 (xpi/firefox-i18n-43.0.4/zh-TW.xpi) = 16c89b88bfe3c0b1700ecb7688448011cfc86e1c116ba1d31d46119e2d202702 +SIZE (xpi/firefox-i18n-43.0.4/zh-TW.xpi) = 485318 Modified: branches/2016Q1/www/firefox/Makefile ============================================================================== --- branches/2016Q1/www/firefox/Makefile Fri Jan 8 01:28:11 2016 (r405500) +++ branches/2016Q1/www/firefox/Makefile Fri Jan 8 01:30:55 2016 (r405501) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 43.0.3 +DISTVERSION= 43.0.4 DISTVERSIONSUFFIX=.source -PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: branches/2016Q1/www/firefox/distinfo ============================================================================== --- branches/2016Q1/www/firefox/distinfo Fri Jan 8 01:28:11 2016 (r405500) +++ branches/2016Q1/www/firefox/distinfo Fri Jan 8 01:30:55 2016 (r405501) @@ -1,2 +1,2 @@ -SHA256 (firefox-43.0.3.source.tar.xz) = 15c5222e3b0a6a766f0a1c5452ff5c31498454187165a281448954a5eb462e89 -SIZE (firefox-43.0.3.source.tar.xz) = 175427272 +SHA256 (firefox-43.0.4.source.tar.xz) = 76cfa99285d49dede4097096ab3e7ee4bdedb64084b1fc23f2de216884245a76 +SIZE (firefox-43.0.4.source.tar.xz) = 175443372 Modified: branches/2016Q1/www/linux-firefox/Makefile ============================================================================== --- branches/2016Q1/www/linux-firefox/Makefile Fri Jan 8 01:28:11 2016 (r405500) +++ branches/2016Q1/www/linux-firefox/Makefile Fri Jan 8 01:30:55 2016 (r405501) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 43.0.3 +DISTVERSION= 43.0.4 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US \ Modified: branches/2016Q1/www/linux-firefox/distinfo ============================================================================== --- branches/2016Q1/www/linux-firefox/distinfo Fri Jan 8 01:28:11 2016 (r405500) +++ branches/2016Q1/www/linux-firefox/distinfo Fri Jan 8 01:30:55 2016 (r405501) @@ -1,5 +1,5 @@ -SHA256 (firefox-43.0.3.tar.bz2) = 78b95a47e73d2ef7d436f59fb1e7f300c6075bae4ab41d3557b6b17520416d57 -SIZE (firefox-43.0.3.tar.bz2) = 53515636 +SHA256 (firefox-43.0.4.tar.bz2) = be03a282b7da67899c988f89423594b91e017ce5f4569d55ea23f6ba28f59414 +SIZE (firefox-43.0.4.tar.bz2) = 53519232 SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99 SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908 SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b From owner-svn-ports-branches@freebsd.org Fri Jan 8 01:47:03 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 73079A67383; Fri, 8 Jan 2016 01:47:03 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 320941F91; Fri, 8 Jan 2016 01:47:03 +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 u081l26C034782; Fri, 8 Jan 2016 01:47:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u081l27a034779; Fri, 8 Jan 2016 01:47:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201601080147.u081l27a034779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 8 Jan 2016 01:47:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405504 - in branches/2016Q1: mail/thunderbird/files www/firefox-esr/files www/libxul/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 01:47:03 -0000 Author: jbeich Date: Fri Jan 8 01:47:01 2016 New Revision: 405504 URL: https://svnweb.freebsd.org/changeset/ports/405504 Log: MFH: r405496 gecko: unbreak FFMPEG=off build on esr38 PR: 205747 Approved by: ports-secteam (miwi) Added: branches/2016Q1/mail/thunderbird/files/patch-bug1148203 - copied unchanged from r405496, head/mail/thunderbird/files/patch-bug1148203 branches/2016Q1/www/firefox-esr/files/patch-bug1148203 - copied unchanged from r405496, head/www/firefox-esr/files/patch-bug1148203 branches/2016Q1/www/libxul/files/patch-bug1148203 - copied unchanged from r405496, head/www/libxul/files/patch-bug1148203 Modified: Directory Properties: branches/2016Q1/ (props changed) Copied: branches/2016Q1/mail/thunderbird/files/patch-bug1148203 (from r405496, head/mail/thunderbird/files/patch-bug1148203) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/mail/thunderbird/files/patch-bug1148203 Fri Jan 8 01:47:01 2016 (r405504, copy of r405496, head/mail/thunderbird/files/patch-bug1148203) @@ -0,0 +1,38 @@ +# HG changeset patch +# User Chris Double +# Date 1427767594 -46800 +# Tue Mar 31 15:06:34 2015 +1300 +# Node ID 858ea94746eedc4b65734f8ceedfff7021940cb2 +# Parent 1b8f36a7ee321ca62cf87424910d0e2ed6fed076 +Bug 1148203 - Fix build errors with combinations of enable/disable of ffmp4/ffmpeg/eme - r=cpearce,ted + +Fixes build error with all three disabled. Prevents other combinations +that cause build errors by detecting them at configure time and displaying +an error message. + +diff --git a/configure.in b/configure.in +--- mozilla/configure.in ++++ mozilla/configure.in +@@ -5316,6 +5316,10 @@ MOZ_ARG_DISABLE_BOOL(fmp4, + MOZ_FMP4=, + MOZ_FMP4=1) + ++if test -n "$MOZ_FFMPEG" -a -z "$MOZ_FMP4"; then ++ AC_MSG_ERROR([Fragmented MP4 support must be enabled if using FFMPEG]) ++fi ++ + if test -n "$MOZ_FMP4"; then + AC_DEFINE(MOZ_FMP4) + MOZ_EME=1 +diff --git a/media/libstagefright/binding/MoofParser.cpp b/media/libstagefright/binding/MoofParser.cpp +--- mozilla/media/libstagefright/binding/MoofParser.cpp ++++ mozilla/media/libstagefright/binding/MoofParser.cpp +@@ -9,7 +9,7 @@ + + #include "prlog.h" + +-#ifdef PR_LOGGING ++#if defined(MOZ_FMP4) && defined(PR_LOGGING) + extern PRLogModuleInfo* GetDemuxerLog(); + + /* Polyfill __func__ on MSVC to pass to the log. */ Copied: branches/2016Q1/www/firefox-esr/files/patch-bug1148203 (from r405496, head/www/firefox-esr/files/patch-bug1148203) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/www/firefox-esr/files/patch-bug1148203 Fri Jan 8 01:47:01 2016 (r405504, copy of r405496, head/www/firefox-esr/files/patch-bug1148203) @@ -0,0 +1,38 @@ +# HG changeset patch +# User Chris Double +# Date 1427767594 -46800 +# Tue Mar 31 15:06:34 2015 +1300 +# Node ID 858ea94746eedc4b65734f8ceedfff7021940cb2 +# Parent 1b8f36a7ee321ca62cf87424910d0e2ed6fed076 +Bug 1148203 - Fix build errors with combinations of enable/disable of ffmp4/ffmpeg/eme - r=cpearce,ted + +Fixes build error with all three disabled. Prevents other combinations +that cause build errors by detecting them at configure time and displaying +an error message. + +diff --git a/configure.in b/configure.in +--- configure.in ++++ configure.in +@@ -5316,6 +5316,10 @@ MOZ_ARG_DISABLE_BOOL(fmp4, + MOZ_FMP4=, + MOZ_FMP4=1) + ++if test -n "$MOZ_FFMPEG" -a -z "$MOZ_FMP4"; then ++ AC_MSG_ERROR([Fragmented MP4 support must be enabled if using FFMPEG]) ++fi ++ + if test -n "$MOZ_FMP4"; then + AC_DEFINE(MOZ_FMP4) + MOZ_EME=1 +diff --git a/media/libstagefright/binding/MoofParser.cpp b/media/libstagefright/binding/MoofParser.cpp +--- media/libstagefright/binding/MoofParser.cpp ++++ media/libstagefright/binding/MoofParser.cpp +@@ -9,7 +9,7 @@ + + #include "prlog.h" + +-#ifdef PR_LOGGING ++#if defined(MOZ_FMP4) && defined(PR_LOGGING) + extern PRLogModuleInfo* GetDemuxerLog(); + + /* Polyfill __func__ on MSVC to pass to the log. */ Copied: branches/2016Q1/www/libxul/files/patch-bug1148203 (from r405496, head/www/libxul/files/patch-bug1148203) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/www/libxul/files/patch-bug1148203 Fri Jan 8 01:47:01 2016 (r405504, copy of r405496, head/www/libxul/files/patch-bug1148203) @@ -0,0 +1,38 @@ +# HG changeset patch +# User Chris Double +# Date 1427767594 -46800 +# Tue Mar 31 15:06:34 2015 +1300 +# Node ID 858ea94746eedc4b65734f8ceedfff7021940cb2 +# Parent 1b8f36a7ee321ca62cf87424910d0e2ed6fed076 +Bug 1148203 - Fix build errors with combinations of enable/disable of ffmp4/ffmpeg/eme - r=cpearce,ted + +Fixes build error with all three disabled. Prevents other combinations +that cause build errors by detecting them at configure time and displaying +an error message. + +diff --git a/configure.in b/configure.in +--- configure.in ++++ configure.in +@@ -5316,6 +5316,10 @@ MOZ_ARG_DISABLE_BOOL(fmp4, + MOZ_FMP4=, + MOZ_FMP4=1) + ++if test -n "$MOZ_FFMPEG" -a -z "$MOZ_FMP4"; then ++ AC_MSG_ERROR([Fragmented MP4 support must be enabled if using FFMPEG]) ++fi ++ + if test -n "$MOZ_FMP4"; then + AC_DEFINE(MOZ_FMP4) + MOZ_EME=1 +diff --git a/media/libstagefright/binding/MoofParser.cpp b/media/libstagefright/binding/MoofParser.cpp +--- media/libstagefright/binding/MoofParser.cpp ++++ media/libstagefright/binding/MoofParser.cpp +@@ -9,7 +9,7 @@ + + #include "prlog.h" + +-#ifdef PR_LOGGING ++#if defined(MOZ_FMP4) && defined(PR_LOGGING) + extern PRLogModuleInfo* GetDemuxerLog(); + + /* Polyfill __func__ on MSVC to pass to the log. */ From owner-svn-ports-branches@freebsd.org Fri Jan 8 01:49:55 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D29FFA67462; Fri, 8 Jan 2016 01:49:55 +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 AE89A1121; Fri, 8 Jan 2016 01:49:55 +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 u081ns12035048; Fri, 8 Jan 2016 01:49:54 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u081nsTh035044; Fri, 8 Jan 2016 01:49:54 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201601080149.u081nsTh035044@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 8 Jan 2016 01:49:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405505 - branches/2016Q1/games/katawa-shoujo X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 01:49:56 -0000 Author: jbeich Date: Fri Jan 8 01:49:54 2016 New Revision: 405505 URL: https://svnweb.freebsd.org/changeset/ports/405505 Log: MFH: r405498 games/katawa-shoujo: include Italian translation Changes: http://katawashoujo.blogspot.fi/2015/12/katawa-shoujo-in-italian.html Approved by: ports-secteam (miwi) Modified: branches/2016Q1/games/katawa-shoujo/Makefile branches/2016Q1/games/katawa-shoujo/distinfo branches/2016Q1/games/katawa-shoujo/pkg-descr Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/games/katawa-shoujo/Makefile ============================================================================== --- branches/2016Q1/games/katawa-shoujo/Makefile Fri Jan 8 01:47:01 2016 (r405504) +++ branches/2016Q1/games/katawa-shoujo/Makefile Fri Jan 8 01:49:54 2016 (r405505) @@ -3,14 +3,16 @@ PORTNAME= katawa-shoujo PORTVERSION= 1.3.1 DISTVERSIONSUFFIX=-[linux-x86][18161880] -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= http://dl.katawa-shoujo.com/gold_${PORTVERSION}/:game \ + http://dl.katawa-shoujo.com/patches/:patch \ GENTOO:icon DISTFILES= [4ls]_${DISTNAME:S|-|_|:S|-|_|}${EXTRACT_SUFX}:game \ + ${PORTNAME:S|-|_|}_italiano_v1.0.zip:patch \ ${PORTNAME}-48.png:icon \ ${PORTNAME}-256.png:icon -EXTRACT_ONLY= [4ls]_${DISTNAME:S|-|_|:S|-|_|}${EXTRACT_SUFX} +EXTRACT_ONLY= ${DISTFILES:N*\:icon:C/:.*//} MAINTAINER= jbeich@FreeBSD.org COMMENT= Bishoujo-style visual novel about disabled adolescents @@ -41,6 +43,9 @@ DESKTOP_ENTRIES="Katawa Shoujo" \ OPTIONS_DEFINE= DOCS +post-extract: + @${MV} ${WRKDIR}/*.rpy* ${WRKSRC}/game/ # :patch + pre-install: ${PRINTF} '#! /bin/sh\nrenpy ${DATADIR} "$$@"\n' \ >${WRKDIR}/${PORTNAME} Modified: branches/2016Q1/games/katawa-shoujo/distinfo ============================================================================== --- branches/2016Q1/games/katawa-shoujo/distinfo Fri Jan 8 01:47:01 2016 (r405504) +++ branches/2016Q1/games/katawa-shoujo/distinfo Fri Jan 8 01:49:54 2016 (r405505) @@ -1,5 +1,7 @@ SHA256 ([4ls]_katawa_shoujo_1.3.1-[linux-x86][18161880].tar.bz2) = ec5a05cfcf1d5981ecdbfa71904c279a215e79bdfeb256b2ad6927109a0007da SIZE ([4ls]_katawa_shoujo_1.3.1-[linux-x86][18161880].tar.bz2) = 496188604 +SHA256 (katawa_shoujo_italiano_v1.0.zip) = dab0abebce8fbf2fe5d40885322c4c6e5e5bb11f12d1884e76d60d701d6a6794 +SIZE (katawa_shoujo_italiano_v1.0.zip) = 1245209 SHA256 (katawa-shoujo-48.png) = a366a52fd9dd241182d163e28a37f537fa71d5d46f1fc899da08b492c371a0fd SIZE (katawa-shoujo-48.png) = 3621 SHA256 (katawa-shoujo-256.png) = 8130b39af5341b0e1c85cbd6ef5be229de2877d696e5b372e1aacf176778df45 Modified: branches/2016Q1/games/katawa-shoujo/pkg-descr ============================================================================== --- branches/2016Q1/games/katawa-shoujo/pkg-descr Fri Jan 8 01:47:01 2016 (r405504) +++ branches/2016Q1/games/katawa-shoujo/pkg-descr Fri Jan 8 01:49:54 2016 (r405505) @@ -8,6 +8,6 @@ plays his cards right. There are five ma 5 main female characters, each path following the storyline pertaining to that character. -This package contains English, Spanish, French and Japanese versions. +This package contains English, Spanish, French, Italian and Japanese versions. WWW: http://www.katawa-shoujo.com/ From owner-svn-ports-branches@freebsd.org Fri Jan 8 02:17:43 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92411A67C15; Fri, 8 Jan 2016 02:17:43 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5523E108A; Fri, 8 Jan 2016 02:17:43 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u082HgZg043678; Fri, 8 Jan 2016 02:17:42 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u082HgjT043673; Fri, 8 Jan 2016 02:17:42 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201601080217.u082HgjT043673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Fri, 8 Jan 2016 02:17:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405506 - in branches/2016Q1/net/dhcpcd: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 02:17:43 -0000 Author: junovitch Date: Fri Jan 8 02:17:41 2016 New Revision: 405506 URL: https://svnweb.freebsd.org/changeset/ports/405506 Log: MFH: r405503 net/dhcpcd: update 6.9.4 -> 6.10.0 Changes: * --noption requires an argument * optimise the ARP BPF filter, thanks to Nate Karstens * send gratuitous ARP each time we apply our IP address * fix truncation of hostnames based on the short hostname option * improve routing and address management by always loading all interfaces, routes and addresses even for interfaces we are not directly working on * timezone, lookup-hostname, wpa_supplicant and YP hooks are no longer installed by default but are installed to an example directory * fix compile on kFreeBSD thanks to Christoph Egger for providing a temporary build host * improve error logging of packet parsing * fix ignoring routing messages generated by dhcpcd just before forking * fix handling of rapid commit messages (allow ACK after DISCOVER) * add PROBE state so we can easily reject DHCP messages received during the ARP probe phase * fix CVE-2016-1503 * fix CVE-2016-1504 PR: 206015 Submitted by: Roy Marples (maintainer) Approved by: ports-secteam (miwi) Security: CVE-2016-1504 Security: CVE-2016-1503 Security: https://vuxml.FreeBSD.org/freebsd/df587aa2-b5a5-11e5-9728-002590263bf5.html Modified: branches/2016Q1/net/dhcpcd/Makefile branches/2016Q1/net/dhcpcd/distinfo branches/2016Q1/net/dhcpcd/files/patch-dhcpcd.conf branches/2016Q1/net/dhcpcd/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/dhcpcd/Makefile ============================================================================== --- branches/2016Q1/net/dhcpcd/Makefile Fri Jan 8 01:49:54 2016 (r405505) +++ branches/2016Q1/net/dhcpcd/Makefile Fri Jan 8 02:17:41 2016 (r405506) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dhcpcd -PORTVERSION= 6.9.4 +PORTVERSION= 6.10.0 CATEGORIES= net MASTER_SITES= http://roy.marples.name/downloads/dhcpcd/ \ http://roy.aydogan.net/dhcpcd/ \ @@ -17,6 +17,7 @@ LICENSE= BSD2CLAUSE USES= cpe tar:xz CPE_VENDOR= dhcpcd_project GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --datadir=${PREFIX}/share/examples USE_RC_SUBR= dhcpcd post-install: Modified: branches/2016Q1/net/dhcpcd/distinfo ============================================================================== --- branches/2016Q1/net/dhcpcd/distinfo Fri Jan 8 01:49:54 2016 (r405505) +++ branches/2016Q1/net/dhcpcd/distinfo Fri Jan 8 02:17:41 2016 (r405506) @@ -1,2 +1,2 @@ -SHA256 (dhcpcd-6.9.4.tar.xz) = c3f3ff7473ef158a1e71db9aea7424df2c3477ad064e2b542f27948a5abc9ba0 -SIZE (dhcpcd-6.9.4.tar.xz) = 178632 +SHA256 (dhcpcd-6.10.0.tar.xz) = ab56af9b2e86913c55a965cb0f835e87749df78318564acf90d5d698f413ad35 +SIZE (dhcpcd-6.10.0.tar.xz) = 179804 Modified: branches/2016Q1/net/dhcpcd/files/patch-dhcpcd.conf ============================================================================== --- branches/2016Q1/net/dhcpcd/files/patch-dhcpcd.conf Fri Jan 8 01:49:54 2016 (r405505) +++ branches/2016Q1/net/dhcpcd/files/patch-dhcpcd.conf Fri Jan 8 02:17:41 2016 (r405506) @@ -3,14 +3,11 @@ by default. See http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194485 ---- dhcpcd.conf.orig 2015-05-02 23:07:59 UTC +--- dhcpcd.conf.orig 2016-01-07 16:47:19 UTC +++ dhcpcd.conf -@@ -34,7 +34,7 @@ +@@ -35,4 +35,4 @@ option interface_mtu require dhcp_server_identifier # Generate Stable Private IPv6 Addresses instead of hardware based ones -slaac private +#slaac private - - # A hook script is provided to lookup the hostname if not set by the DHCP - # server, but it should not be run by default. Modified: branches/2016Q1/net/dhcpcd/pkg-plist ============================================================================== --- branches/2016Q1/net/dhcpcd/pkg-plist Fri Jan 8 01:49:54 2016 (r405505) +++ branches/2016Q1/net/dhcpcd/pkg-plist Fri Jan 8 02:17:41 2016 (r405506) @@ -1,15 +1,15 @@ @sample etc/dhcpcd.conf.sample libexec/dhcpcd-hooks/01-test libexec/dhcpcd-hooks/02-dump -libexec/dhcpcd-hooks/10-wpa_supplicant -libexec/dhcpcd-hooks/15-timezone libexec/dhcpcd-hooks/20-resolv.conf -libexec/dhcpcd-hooks/29-lookup-hostname libexec/dhcpcd-hooks/30-hostname libexec/dhcpcd-hooks/50-ntp.conf -libexec/dhcpcd-hooks/50-ypbind libexec/dhcpcd-run-hooks man/man5/dhcpcd.conf.5.gz man/man8/dhcpcd-run-hooks.8.gz man/man8/dhcpcd.8.gz sbin/dhcpcd +share/examples/dhcpcd/hooks/10-wpa_supplicant +share/examples/dhcpcd/hooks/15-timezone +share/examples/dhcpcd/hooks/29-lookup-hostname +share/examples/dhcpcd/hooks/50-ypbind From owner-svn-ports-branches@freebsd.org Fri Jan 8 03:16:40 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A577A67216; Fri, 8 Jan 2016 03:16:40 +0000 (UTC) (envelope-from gjb@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 508F61A19; Fri, 8 Jan 2016 03:16:40 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u083GdHO062143; Fri, 8 Jan 2016 03:16:39 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u083Gdrt062141; Fri, 8 Jan 2016 03:16:39 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201601080316.u083Gdrt062141@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Fri, 8 Jan 2016 03:16:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405509 - branches/2016Q1/sysutils/azure-agent X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 03:16:40 -0000 Author: gjb Date: Fri Jan 8 03:16:39 2016 New Revision: 405509 URL: https://svnweb.freebsd.org/changeset/ports/405509 Log: MFH r405479: Update sysutils/azure-agent to 2.0.16. Approved by: portmgr (antoine) Sponsored by: The FreeBSD Foundation Modified: branches/2016Q1/sysutils/azure-agent/Makefile branches/2016Q1/sysutils/azure-agent/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/sysutils/azure-agent/Makefile ============================================================================== --- branches/2016Q1/sysutils/azure-agent/Makefile Fri Jan 8 02:46:59 2016 (r405508) +++ branches/2016Q1/sysutils/azure-agent/Makefile Fri Jan 8 03:16:39 2016 (r405509) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= azure-agent -PORTVERSION= ${GH_TAGNAME}.11 -PORTREVISION= 1 +PORTVERSION= ${GH_TAGNAME}.16 CATEGORIES= sysutils MAINTAINER= gjb@FreeBSD.org @@ -13,7 +12,8 @@ LICENSE= APACHE20 RUN_DEPENDS= python:${PORTSDIR}/lang/python \ sudo:${PORTSDIR}/security/sudo \ bash:${PORTSDIR}/shells/bash \ - ${PYTHON_PKGNAMEPREFIX}pyasn1>=0:${PORTSDIR}/devel/py-pyasn1 + ${PYTHON_PKGNAMEPREFIX}pyasn1>=0:${PORTSDIR}/devel/py-pyasn1 \ + ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss NO_BUILD= yes USES= python:2 Modified: branches/2016Q1/sysutils/azure-agent/distinfo ============================================================================== --- branches/2016Q1/sysutils/azure-agent/distinfo Fri Jan 8 02:46:59 2016 (r405508) +++ branches/2016Q1/sysutils/azure-agent/distinfo Fri Jan 8 03:16:39 2016 (r405509) @@ -1,2 +1,2 @@ -SHA256 (Azure-WALinuxAgent-2.0.11-2.0_GH0.tar.gz) = e979617e4ff7ec6e3b50aa1347d7bb7e7913b65ff815feb5679b5c5fd21ce6bc -SIZE (Azure-WALinuxAgent-2.0.11-2.0_GH0.tar.gz) = 89445 +SHA256 (Azure-WALinuxAgent-2.0.16-2.0_GH0.tar.gz) = abb51b068a1c38dd50323722e05bd1066dc179be07e9e8dd1a3d0c92c46724ea +SIZE (Azure-WALinuxAgent-2.0.16-2.0_GH0.tar.gz) = 100991 From owner-svn-ports-branches@freebsd.org Fri Jan 8 06:20:28 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C91AA67072; Fri, 8 Jan 2016 06:20:28 +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 2F118139E; Fri, 8 Jan 2016 06:20:28 +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 u086KR5L017939; Fri, 8 Jan 2016 06:20:27 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u086KRwn017937; Fri, 8 Jan 2016 06:20:27 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201601080620.u086KRwn017937@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Fri, 8 Jan 2016 06:20:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405532 - branches/2016Q1/net/ntp X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 06:20:28 -0000 Author: delphij Date: Fri Jan 8 06:20:27 2016 New Revision: 405532 URL: https://svnweb.freebsd.org/changeset/ports/405532 Log: MFH: r405531 Update to 4.2.8p5. Security: CVE-2015-5300 Security: 4eae4f46-b5ce-11e5-8a2b-d050996490d0 Approved by: ports-secteam Modified: branches/2016Q1/net/ntp/Makefile branches/2016Q1/net/ntp/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/ntp/Makefile ============================================================================== --- branches/2016Q1/net/ntp/Makefile Fri Jan 8 06:19:33 2016 (r405531) +++ branches/2016Q1/net/ntp/Makefile Fri Jan 8 06:20:27 2016 (r405532) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ntp -PORTVERSION= 4.2.8p4 -PORTREVISION= 1 +PORTVERSION= 4.2.8p5 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ \ http://archive.ntp.org/ntp4/ntp-4.2/ \ Modified: branches/2016Q1/net/ntp/distinfo ============================================================================== --- branches/2016Q1/net/ntp/distinfo Fri Jan 8 06:19:33 2016 (r405531) +++ branches/2016Q1/net/ntp/distinfo Fri Jan 8 06:20:27 2016 (r405532) @@ -1,2 +1,2 @@ -SHA256 (ntp-4.2.8p4.tar.gz) = 0d6961572548d2c4af96f58f763e22ac620f5afef717384ddc317a0e365cfdb9 -SIZE (ntp-4.2.8p4.tar.gz) = 7104852 +SHA256 (ntp-4.2.8p5.tar.gz) = ca28baf4f6bb6fabdc1b62fd1dcec412be2e621192b40466a469a2496164f696 +SIZE (ntp-4.2.8p5.tar.gz) = 7138233 From owner-svn-ports-branches@freebsd.org Fri Jan 8 16:44:11 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DEC48A689DB; Fri, 8 Jan 2016 16:44:11 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 93D531448; Fri, 8 Jan 2016 16:44:11 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u08GiAPL005645; Fri, 8 Jan 2016 16:44:10 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u08GiAbE005644; Fri, 8 Jan 2016 16:44:10 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201601081644.u08GiAbE005644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Fri, 8 Jan 2016 16:44:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405568 - branches/2016Q1/multimedia/transcode/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 16:44:12 -0000 Author: brd Date: Fri Jan 8 16:44:10 2016 New Revision: 405568 URL: https://svnweb.freebsd.org/changeset/ports/405568 Log: MFHL r405492. Remove stale freetype patch that is breaking build PR: 205711 Submitted by: cyberbotx@cyberbotx.com (mentor) Approved by: bdrewery (mentor) Approved by: ports-secteam (miwi) Deleted: branches/2016Q1/multimedia/transcode/files/patch-filter-subtitler-load_font.c Modified: Directory Properties: branches/2016Q1/ (props changed) From owner-svn-ports-branches@freebsd.org Fri Jan 8 17:51:51 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D284DA685A7; Fri, 8 Jan 2016 17:51:51 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A5B321618; Fri, 8 Jan 2016 17:51:51 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u08Hpoom026345; Fri, 8 Jan 2016 17:51:50 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u08HpoCA026344; Fri, 8 Jan 2016 17:51:50 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601081751.u08HpoCA026344@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 8 Jan 2016 17:51:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405575 - branches/2016Q1/graphics/agg X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 17:51:51 -0000 Author: feld Date: Fri Jan 8 17:51:50 2016 New Revision: 405575 URL: https://svnweb.freebsd.org/changeset/ports/405575 Log: MFH: r405574 graphics/agg: remove BROKEN, add some mirrors Approved by: ports-secteam (with hat) Modified: branches/2016Q1/graphics/agg/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/graphics/agg/Makefile ============================================================================== --- branches/2016Q1/graphics/agg/Makefile Fri Jan 8 17:51:02 2016 (r405574) +++ branches/2016Q1/graphics/agg/Makefile Fri Jan 8 17:51:50 2016 (r405575) @@ -5,13 +5,13 @@ PORTNAME= agg PORTVERSION= 2.5 PORTREVISION= 11 CATEGORIES= graphics -MASTER_SITES= http://www.antigrain.com/ \ - http://freebsd.unixfreunde.de/sources/ +MASTER_SITES= http://distfiles.alpinelinux.org/distfiles/ \ + http://distfiles.lesslinux.org/ \ + http://gentoo.netnitco.net/distfiles/ MAINTAINER= ports@FreeBSD.org COMMENT= High Quality Rendering Engine for C++ -BROKEN= unfetchable LICENSE= GPLv2 # or later LICENSE_FILE= ${WRKSRC}/copying From owner-svn-ports-branches@freebsd.org Fri Jan 8 17:53:55 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5741CA68641; Fri, 8 Jan 2016 17:53:55 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 14A791999; Fri, 8 Jan 2016 17:53:55 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u08HrsT9027396; Fri, 8 Jan 2016 17:53:54 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u08Hrr24027393; Fri, 8 Jan 2016 17:53:53 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601081753.u08Hrr24027393@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 8 Jan 2016 17:53:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405577 - in branches/2016Q1/graphics/exact-image: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 17:53:55 -0000 Author: feld Date: Fri Jan 8 17:53:53 2016 New Revision: 405577 URL: https://svnweb.freebsd.org/changeset/ports/405577 Log: MFH: r405576 graphics/exact-image: Update to 0.9.1 Add patch to resolve CVE PR: 200201 Security: CVE-2015-3885 Approved by: ports-secteam (with hat) Added: branches/2016Q1/graphics/exact-image/files/patch-codecs_dcraw.h - copied unchanged from r405576, head/graphics/exact-image/files/patch-codecs_dcraw.h Modified: branches/2016Q1/graphics/exact-image/Makefile branches/2016Q1/graphics/exact-image/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/graphics/exact-image/Makefile ============================================================================== --- branches/2016Q1/graphics/exact-image/Makefile Fri Jan 8 17:53:08 2016 (r405576) +++ branches/2016Q1/graphics/exact-image/Makefile Fri Jan 8 17:53:53 2016 (r405577) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= exact-image -PORTVERSION= 0.8.9 -PORTREVISION= 10 +PORTVERSION= 0.9.1 +PORTREVISION= 0 CATEGORIES= graphics perl5 python MASTER_SITES= http://dl.exactcode.de/oss/${PORTNAME}/ LOCAL/bf Modified: branches/2016Q1/graphics/exact-image/distinfo ============================================================================== --- branches/2016Q1/graphics/exact-image/distinfo Fri Jan 8 17:53:08 2016 (r405576) +++ branches/2016Q1/graphics/exact-image/distinfo Fri Jan 8 17:53:53 2016 (r405577) @@ -1,2 +1,2 @@ -SHA256 (exact-image-0.8.9.tar.bz2) = 0709913e5852214de3bdfa5df0474a4a86b0e686df28f8afd826b5ad8676c372 -SIZE (exact-image-0.8.9.tar.bz2) = 297438 +SHA256 (exact-image-0.9.1.tar.bz2) = 79e6a58522897f9740aa3b5a337f63ad1e0361a772141b24aaff2e31264ece7d +SIZE (exact-image-0.9.1.tar.bz2) = 299565 Copied: branches/2016Q1/graphics/exact-image/files/patch-codecs_dcraw.h (from r405576, head/graphics/exact-image/files/patch-codecs_dcraw.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/graphics/exact-image/files/patch-codecs_dcraw.h Fri Jan 8 17:53:53 2016 (r405577, copy of r405576, head/graphics/exact-image/files/patch-codecs_dcraw.h) @@ -0,0 +1,24 @@ +--- codecs/dcraw.h.orig 2013-10-22 14:00:07 UTC ++++ codecs/dcraw.h +@@ -775,7 +775,8 @@ struct jhead { + + int CLASS ljpeg_start (struct jhead *jh, int info_only) + { +- int c, tag, len; ++ int c,tag; ++ ushort len; + uchar data[0x10000]; + const uchar *dp; + +@@ -786,8 +787,9 @@ int CLASS ljpeg_start (struct jhead *jh, + do { + fread (data, 2, 2, ifp); + tag = data[0] << 8 | data[1]; +- len = (data[2] << 8 | data[3]) - 2; +- if (tag <= 0xff00) return 0; ++ len = (data[2] << 8 | data[3]); ++ if (tag <= 0xff00 || len <= 2) return 0; ++ len -= 2; + fread (data, 1, len, ifp); + switch (tag) { + case 0xffc3: From owner-svn-ports-branches@freebsd.org Fri Jan 8 19:03:46 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0347A683C3; Fri, 8 Jan 2016 19:03:46 +0000 (UTC) (envelope-from miwi@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 816971E88; Fri, 8 Jan 2016 19:03:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u08J3jsj048811; Fri, 8 Jan 2016 19:03:45 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u08J3jPt048807; Fri, 8 Jan 2016 19:03:45 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201601081903.u08J3jPt048807@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Fri, 8 Jan 2016 19:03:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405586 - branches/2016Q1/lang/python34 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 19:03:46 -0000 Author: miwi Date: Fri Jan 8 19:03:45 2016 New Revision: 405586 URL: https://svnweb.freebsd.org/changeset/ports/405586 Log: MFH: r405078 - Update to 3.4.4 - Sort plist Changelog: https://docs.python.org/3.4/whatsnew/changelog.html#python-3-4-4 Approved by: portmgr (swilles) Modified: branches/2016Q1/lang/python34/Makefile branches/2016Q1/lang/python34/Makefile.version branches/2016Q1/lang/python34/distinfo branches/2016Q1/lang/python34/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/lang/python34/Makefile ============================================================================== --- branches/2016Q1/lang/python34/Makefile Fri Jan 8 18:49:51 2016 (r405585) +++ branches/2016Q1/lang/python34/Makefile Fri Jan 8 19:03:45 2016 (r405586) @@ -3,7 +3,7 @@ PORTNAME= python34 PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 2 +PORTREVISION= 0 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} Modified: branches/2016Q1/lang/python34/Makefile.version ============================================================================== --- branches/2016Q1/lang/python34/Makefile.version Fri Jan 8 18:49:51 2016 (r405585) +++ branches/2016Q1/lang/python34/Makefile.version Fri Jan 8 19:03:45 2016 (r405586) @@ -1,4 +1,4 @@ # Mk/Uses/python.mk includes this file, don't remove it! # $FreeBSD$ -PYTHON_PORTVERSION= 3.4.3 +PYTHON_PORTVERSION= 3.4.4 Modified: branches/2016Q1/lang/python34/distinfo ============================================================================== --- branches/2016Q1/lang/python34/distinfo Fri Jan 8 18:49:51 2016 (r405585) +++ branches/2016Q1/lang/python34/distinfo Fri Jan 8 19:03:45 2016 (r405586) @@ -1,2 +1,2 @@ -SHA256 (python/Python-3.4.3.tar.xz) = b5b3963533768d5fc325a4d7a6bd6f666726002d696f1d399ec06b043ea996b8 -SIZE (python/Python-3.4.3.tar.xz) = 14421964 +SHA256 (python/Python-3.4.4.tar.xz) = a797d3820155ec6cb654a652b9acfb11792d4e7d568eef1f9199009e042b6ba2 +SIZE (python/Python-3.4.4.tar.xz) = 14307620 Modified: branches/2016Q1/lang/python34/pkg-plist ============================================================================== --- branches/2016Q1/lang/python34/pkg-plist Fri Jan 8 18:49:51 2016 (r405585) +++ branches/2016Q1/lang/python34/pkg-plist Fri Jan 8 19:03:45 2016 (r405586) @@ -101,7 +101,6 @@ include/python3.4%%ABI%%/warnings.h include/python3.4%%ABI%%/weakrefobject.h lib/libpython3.4%%ABI%%.so lib/libpython3.4%%ABI%%.so.1 -libdata/pkgconfig/python-3.4.pc lib/python3.4/LICENSE.txt lib/python3.4/__future__.py lib/python3.4/__phello__.foo.py @@ -458,6 +457,8 @@ lib/python3.4/asyncio/__pycache__/base_e lib/python3.4/asyncio/__pycache__/base_events.cpython-34.pyo lib/python3.4/asyncio/__pycache__/base_subprocess.cpython-34.pyc lib/python3.4/asyncio/__pycache__/base_subprocess.cpython-34.pyo +lib/python3.4/asyncio/__pycache__/compat.cpython-34.pyc +lib/python3.4/asyncio/__pycache__/compat.cpython-34.pyo lib/python3.4/asyncio/__pycache__/constants.cpython-34.pyc lib/python3.4/asyncio/__pycache__/constants.cpython-34.pyo lib/python3.4/asyncio/__pycache__/coroutines.cpython-34.pyc @@ -498,6 +499,7 @@ lib/python3.4/asyncio/__pycache__/window lib/python3.4/asyncio/__pycache__/windows_utils.cpython-34.pyo lib/python3.4/asyncio/base_events.py lib/python3.4/asyncio/base_subprocess.py +lib/python3.4/asyncio/compat.py lib/python3.4/asyncio/constants.py lib/python3.4/asyncio/coroutines.py lib/python3.4/asyncio/events.py @@ -1546,8 +1548,8 @@ lib/python3.4/ensurepip/__pycache__/__ma lib/python3.4/ensurepip/__pycache__/__main__.cpython-34.pyo lib/python3.4/ensurepip/__pycache__/_uninstall.cpython-34.pyc lib/python3.4/ensurepip/__pycache__/_uninstall.cpython-34.pyo -lib/python3.4/ensurepip/_bundled/pip-6.0.8-py2.py3-none-any.whl -lib/python3.4/ensurepip/_bundled/setuptools-12.0.5-py2.py3-none-any.whl +lib/python3.4/ensurepip/_bundled/pip-7.1.2-py2.py3-none-any.whl +lib/python3.4/ensurepip/_bundled/setuptools-18.2-py2.py3-none-any.whl lib/python3.4/ensurepip/_uninstall.py lib/python3.4/enum.py lib/python3.4/filecmp.py @@ -1757,6 +1759,8 @@ lib/python3.4/idlelib/__pycache__/config lib/python3.4/idlelib/__pycache__/configSectionNameDialog.cpython-34.pyo lib/python3.4/idlelib/__pycache__/dynOptionMenuWidget.cpython-34.pyc lib/python3.4/idlelib/__pycache__/dynOptionMenuWidget.cpython-34.pyo +lib/python3.4/idlelib/__pycache__/help.cpython-34.pyc +lib/python3.4/idlelib/__pycache__/help.cpython-34.pyo lib/python3.4/idlelib/__pycache__/idle.cpython-34.pyc lib/python3.4/idlelib/__pycache__/idle.cpython-34.pyo lib/python3.4/idlelib/__pycache__/idlever.cpython-34.pyc @@ -1784,6 +1788,8 @@ lib/python3.4/idlelib/configHelpSourceEd lib/python3.4/idlelib/configSectionNameDialog.py lib/python3.4/idlelib/dynOptionMenuWidget.py lib/python3.4/idlelib/extend.txt +lib/python3.4/idlelib/help.html +lib/python3.4/idlelib/help.py lib/python3.4/idlelib/help.txt lib/python3.4/idlelib/idle.bat lib/python3.4/idlelib/idle.py @@ -1802,62 +1808,68 @@ lib/python3.4/idlelib/idle_test/__pycach lib/python3.4/idlelib/idle_test/__pycache__/test_autocomplete.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_autoexpand.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_autoexpand.cpython-34.pyo -lib/python3.4/idlelib/idle_test/__pycache__/test_configdialog.cpython-34.pyc -lib/python3.4/idlelib/idle_test/__pycache__/test_configdialog.cpython-34.pyo -lib/python3.4/idlelib/idle_test/__pycache__/test_hyperparser.cpython-34.pyc -lib/python3.4/idlelib/idle_test/__pycache__/test_hyperparser.cpython-34.pyo -lib/python3.4/idlelib/idle_test/__pycache__/test_parenmatch.cpython-34.pyc -lib/python3.4/idlelib/idle_test/__pycache__/test_parenmatch.cpython-34.pyo -lib/python3.4/idlelib/idle_test/__pycache__/test_searchdialogbase.cpython-34.pyc -lib/python3.4/idlelib/idle_test/__pycache__/test_textview.cpython-34.pyc -lib/python3.4/idlelib/idle_test/__pycache__/test_textview.cpython-34.pyo -lib/python3.4/idlelib/idle_test/__pycache__/test_widgetredir.cpython-34.pyc -lib/python3.4/idlelib/idle_test/__pycache__/test_widgetredir.cpython-34.pyo -lib/python3.4/idlelib/idle_test/__pycache__/test_searchdialogbase.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_calltips.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_calltips.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_config_name.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_config_name.cpython-34.pyo +lib/python3.4/idlelib/idle_test/__pycache__/test_configdialog.cpython-34.pyc +lib/python3.4/idlelib/idle_test/__pycache__/test_configdialog.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_delegator.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_delegator.cpython-34.pyo +lib/python3.4/idlelib/idle_test/__pycache__/test_editor.cpython-34.pyc +lib/python3.4/idlelib/idle_test/__pycache__/test_editor.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_formatparagraph.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_formatparagraph.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_grep.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_grep.cpython-34.pyo +lib/python3.4/idlelib/idle_test/__pycache__/test_hyperparser.cpython-34.pyc +lib/python3.4/idlelib/idle_test/__pycache__/test_hyperparser.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_idlehistory.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_idlehistory.cpython-34.pyo +lib/python3.4/idlelib/idle_test/__pycache__/test_io.cpython-34.pyc +lib/python3.4/idlelib/idle_test/__pycache__/test_io.cpython-34.pyo +lib/python3.4/idlelib/idle_test/__pycache__/test_parenmatch.cpython-34.pyc +lib/python3.4/idlelib/idle_test/__pycache__/test_parenmatch.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_rstrip.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_rstrip.cpython-34.pyo +lib/python3.4/idlelib/idle_test/__pycache__/test_searchdialogbase.cpython-34.pyc +lib/python3.4/idlelib/idle_test/__pycache__/test_searchdialogbase.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_searchengine.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_searchengine.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_text.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_text.cpython-34.pyo +lib/python3.4/idlelib/idle_test/__pycache__/test_textview.cpython-34.pyc +lib/python3.4/idlelib/idle_test/__pycache__/test_textview.cpython-34.pyo lib/python3.4/idlelib/idle_test/__pycache__/test_warning.cpython-34.pyc lib/python3.4/idlelib/idle_test/__pycache__/test_warning.cpython-34.pyo -lib/python3.4/idlelib/idle_test/test_autocomplete.py -lib/python3.4/idlelib/idle_test/test_autoexpand.py -lib/python3.4/idlelib/idle_test/test_configdialog.py -lib/python3.4/idlelib/idle_test/test_hyperparser.py -lib/python3.4/idlelib/idle_test/test_parenmatch.py -lib/python3.4/idlelib/idle_test/test_searchdialogbase.py -lib/python3.4/idlelib/idle_test/test_textview.py -lib/python3.4/idlelib/idle_test/test_widgetredir.py +lib/python3.4/idlelib/idle_test/__pycache__/test_widgetredir.cpython-34.pyc +lib/python3.4/idlelib/idle_test/__pycache__/test_widgetredir.cpython-34.pyo lib/python3.4/idlelib/idle_test/htest.py lib/python3.4/idlelib/idle_test/mock_idle.py lib/python3.4/idlelib/idle_test/mock_tk.py +lib/python3.4/idlelib/idle_test/test_autocomplete.py +lib/python3.4/idlelib/idle_test/test_autoexpand.py lib/python3.4/idlelib/idle_test/test_calltips.py lib/python3.4/idlelib/idle_test/test_config_name.py +lib/python3.4/idlelib/idle_test/test_configdialog.py lib/python3.4/idlelib/idle_test/test_delegator.py +lib/python3.4/idlelib/idle_test/test_editor.py lib/python3.4/idlelib/idle_test/test_formatparagraph.py lib/python3.4/idlelib/idle_test/test_grep.py +lib/python3.4/idlelib/idle_test/test_hyperparser.py lib/python3.4/idlelib/idle_test/test_idlehistory.py +lib/python3.4/idlelib/idle_test/test_io.py +lib/python3.4/idlelib/idle_test/test_parenmatch.py lib/python3.4/idlelib/idle_test/test_pathbrowser.py lib/python3.4/idlelib/idle_test/test_rstrip.py +lib/python3.4/idlelib/idle_test/test_searchdialogbase.py lib/python3.4/idlelib/idle_test/test_searchengine.py lib/python3.4/idlelib/idle_test/test_text.py +lib/python3.4/idlelib/idle_test/test_textview.py lib/python3.4/idlelib/idle_test/test_warning.py +lib/python3.4/idlelib/idle_test/test_widgetredir.py lib/python3.4/idlelib/idlever.py lib/python3.4/idlelib/keybindingDialog.py lib/python3.4/idlelib/macosxSupport.py @@ -1963,9 +1975,9 @@ lib/python3.4/lib-dynload/unicodedata.so %%NO_DEBUG%%lib/python3.4/lib-dynload/xxlimited.so lib/python3.4/lib-dynload/zlib.so lib/python3.4/lib2to3/Grammar.txt -lib/python3.4/lib2to3/Grammar3.4.3.final.0.pickle +lib/python3.4/lib2to3/Grammar3.4.4.final.0.pickle lib/python3.4/lib2to3/PatternGrammar.txt -lib/python3.4/lib2to3/PatternGrammar3.4.3.final.0.pickle +lib/python3.4/lib2to3/PatternGrammar3.4.4.final.0.pickle lib/python3.4/lib2to3/__init__.py lib/python3.4/lib2to3/__main__.py lib/python3.4/lib2to3/__pycache__/__init__.cpython-34.pyc @@ -2528,8 +2540,6 @@ lib/python3.4/test/__pycache__/seq_tests lib/python3.4/test/__pycache__/seq_tests.cpython-34.pyo lib/python3.4/test/__pycache__/sortperf.cpython-34.pyc lib/python3.4/test/__pycache__/sortperf.cpython-34.pyo -lib/python3.4/test/__pycache__/test_spwd.cpython-34.pyc -lib/python3.4/test/__pycache__/test_spwd.cpython-34.pyo lib/python3.4/test/__pycache__/ssl_servers.cpython-34.pyc lib/python3.4/test/__pycache__/ssl_servers.cpython-34.pyo lib/python3.4/test/__pycache__/ssltests.cpython-34.pyc @@ -2962,6 +2972,8 @@ lib/python3.4/test/__pycache__/test_oper lib/python3.4/test/__pycache__/test_operator.cpython-34.pyo lib/python3.4/test/__pycache__/test_optparse.cpython-34.pyc lib/python3.4/test/__pycache__/test_optparse.cpython-34.pyo +lib/python3.4/test/__pycache__/test_ordered_dict.cpython-34.pyc +lib/python3.4/test/__pycache__/test_ordered_dict.cpython-34.pyo lib/python3.4/test/__pycache__/test_os.cpython-34.pyc lib/python3.4/test/__pycache__/test_os.cpython-34.pyo lib/python3.4/test/__pycache__/test_ossaudiodev.cpython-34.pyc @@ -3116,6 +3128,8 @@ lib/python3.4/test/__pycache__/test_sort lib/python3.4/test/__pycache__/test_sort.cpython-34.pyo lib/python3.4/test/__pycache__/test_source_encoding.cpython-34.pyc lib/python3.4/test/__pycache__/test_source_encoding.cpython-34.pyo +lib/python3.4/test/__pycache__/test_spwd.cpython-34.pyc +lib/python3.4/test/__pycache__/test_spwd.cpython-34.pyo lib/python3.4/test/__pycache__/test_sqlite.cpython-34.pyc lib/python3.4/test/__pycache__/test_sqlite.cpython-34.pyo lib/python3.4/test/__pycache__/test_ssl.cpython-34.pyc @@ -3539,7 +3553,7 @@ lib/python3.4/test/decimaltestdata/testa lib/python3.4/test/decimaltestdata/tointegral.decTest lib/python3.4/test/decimaltestdata/tointegralx.decTest lib/python3.4/test/decimaltestdata/xor.decTest -lib/python3.4/test/dh512.pem +lib/python3.4/test/dh1024.pem lib/python3.4/test/dis_module.py lib/python3.4/test/doctest_aliases.py lib/python3.4/test/double_const.py @@ -4273,6 +4287,7 @@ lib/python3.4/test/test_opcodes.py lib/python3.4/test/test_openpty.py lib/python3.4/test/test_operator.py lib/python3.4/test/test_optparse.py +lib/python3.4/test/test_ordered_dict.py lib/python3.4/test/test_os.py lib/python3.4/test/test_ossaudiodev.py lib/python3.4/test/test_osx_env.py @@ -4885,4 +4900,5 @@ lib/python3.4/xmlrpc/__pycache__/server. lib/python3.4/xmlrpc/client.py lib/python3.4/xmlrpc/server.py lib/python3.4/zipfile.py +libdata/pkgconfig/python-3.4.pc man/man1/python3.4.1.gz From owner-svn-ports-branches@freebsd.org Fri Jan 8 21:52:26 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 43DC2A67691; Fri, 8 Jan 2016 21:52:26 +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 0315515EB; Fri, 8 Jan 2016 21:52:25 +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 u08LqPsG099061; Fri, 8 Jan 2016 21:52:25 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u08LqORH099057; Fri, 8 Jan 2016 21:52:24 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201601082152.u08LqORH099057@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 8 Jan 2016 21:52:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405595 - in branches/2016Q1/devel: py-game_sdl2 py-game_sdl2/files renpy X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 21:52:26 -0000 Author: jbeich Date: Fri Jan 8 21:52:24 2016 New Revision: 405595 URL: https://svnweb.freebsd.org/changeset/ports/405595 Log: MFH: r405497 devel/py-game_sdl2, devel/renpy: update to 6.99.8 Changes: http://www.renpy.org/doc/html/changelog.html#ren-py-6-99-8 Approved by: ports-secteam (feld) Deleted: branches/2016Q1/devel/py-game_sdl2/files/ Modified: branches/2016Q1/devel/py-game_sdl2/Makefile branches/2016Q1/devel/py-game_sdl2/distinfo branches/2016Q1/devel/renpy/Makefile branches/2016Q1/devel/renpy/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/py-game_sdl2/Makefile ============================================================================== --- branches/2016Q1/devel/py-game_sdl2/Makefile Fri Jan 8 21:48:14 2016 (r405594) +++ branches/2016Q1/devel/py-game_sdl2/Makefile Fri Jan 8 21:52:24 2016 (r405595) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= game_sdl2 -PORTVERSION= 6.99.7 -PORTREVISION= 1 +PORTVERSION= 6.99.8 CATEGORIES= devel python MASTER_SITES= http://www.renpy.org/dl/${PORTVERSION}/ \ GENTOO Modified: branches/2016Q1/devel/py-game_sdl2/distinfo ============================================================================== --- branches/2016Q1/devel/py-game_sdl2/distinfo Fri Jan 8 21:48:14 2016 (r405594) +++ branches/2016Q1/devel/py-game_sdl2/distinfo Fri Jan 8 21:52:24 2016 (r405595) @@ -1,2 +1,2 @@ -SHA256 (pygame_sdl2-for-renpy-6.99.7.tar.bz2) = 24830ec6942203a3b859efce3f694a09ed0cfa988258a27301ab16d7e45f068d -SIZE (pygame_sdl2-for-renpy-6.99.7.tar.bz2) = 133763 +SHA256 (pygame_sdl2-for-renpy-6.99.8.tar.bz2) = cf6c5acd21af92554c404a24d66af9292f126e10d0d8eea1f7d44432e80b0942 +SIZE (pygame_sdl2-for-renpy-6.99.8.tar.bz2) = 133690 Modified: branches/2016Q1/devel/renpy/Makefile ============================================================================== --- branches/2016Q1/devel/renpy/Makefile Fri Jan 8 21:48:14 2016 (r405594) +++ branches/2016Q1/devel/renpy/Makefile Fri Jan 8 21:52:24 2016 (r405595) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= renpy -PORTVERSION= 6.99.7 +PORTVERSION= 6.99.8 DISTVERSIONSUFFIX=-sdk CATEGORIES= devel games MASTER_SITES= http://www.renpy.org/dl/${PORTVERSION}/ Modified: branches/2016Q1/devel/renpy/distinfo ============================================================================== --- branches/2016Q1/devel/renpy/distinfo Fri Jan 8 21:48:14 2016 (r405594) +++ branches/2016Q1/devel/renpy/distinfo Fri Jan 8 21:52:24 2016 (r405595) @@ -1,2 +1,2 @@ -SHA256 (renpy-6.99.7-sdk.tar.bz2) = 0a56745476901b8abec3d9d13bf9ee501c4cae50c2ffdd98a17d55b1d78893f2 -SIZE (renpy-6.99.7-sdk.tar.bz2) = 53029769 +SHA256 (renpy-6.99.8-sdk.tar.bz2) = 5745413ed2308ad73cd787d26ee684f6d214969cd5ff22f4a66d98ec7cad8f94 +SIZE (renpy-6.99.8-sdk.tar.bz2) = 53156812 From owner-svn-ports-branches@freebsd.org Sat Jan 9 02:18:26 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CDF1CA68501; Sat, 9 Jan 2016 02:18:26 +0000 (UTC) (envelope-from gordon@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 A87D91D8A; Sat, 9 Jan 2016 02:18:26 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u092IPIZ075956; Sat, 9 Jan 2016 02:18:25 GMT (envelope-from gordon@FreeBSD.org) Received: (from gordon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u092IPXu075951; Sat, 9 Jan 2016 02:18:25 GMT (envelope-from gordon@FreeBSD.org) Message-Id: <201601090218.u092IPXu075951@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gordon set sender to gordon@FreeBSD.org using -f From: Gordon Tetlow Date: Sat, 9 Jan 2016 02:18:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405602 - branches/2016Q1/devel/p4d X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 09 Jan 2016 02:18:27 -0000 Author: gordon Date: Sat Jan 9 02:18:25 2016 New Revision: 405602 URL: https://svnweb.freebsd.org/changeset/ports/405602 Log: MFH: r405529 Update devel/p4d to 2015.1/1321385 due to micropatching. Approved by: mat (mentor, implicit) Approved by: portmgr (erwin) Modified: branches/2016Q1/devel/p4d/Makefile branches/2016Q1/devel/p4d/distinfo.freebsd100x86 branches/2016Q1/devel/p4d/distinfo.freebsd100x86_64 branches/2016Q1/devel/p4d/distinfo.freebsd70x86 branches/2016Q1/devel/p4d/distinfo.freebsd70x86_64 Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/p4d/Makefile ============================================================================== --- branches/2016Q1/devel/p4d/Makefile Sat Jan 9 00:57:40 2016 (r405601) +++ branches/2016Q1/devel/p4d/Makefile Sat Jan 9 02:18:25 2016 (r405602) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p4d -PORTVERSION= 2015.1.1314399 +PORTVERSION= 2015.1.1321385 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ \ http://filehost.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ Modified: branches/2016Q1/devel/p4d/distinfo.freebsd100x86 ============================================================================== --- branches/2016Q1/devel/p4d/distinfo.freebsd100x86 Sat Jan 9 00:57:40 2016 (r405601) +++ branches/2016Q1/devel/p4d/distinfo.freebsd100x86 Sat Jan 9 02:18:25 2016 (r405602) @@ -1,2 +1,2 @@ -SHA256 (perforce/2015.1.1314399/bin.freebsd100x86/p4d) = 26087ddf1b213f865c4e7bcc6e6bd511fc80de870188ee1eb201cf2dafdf2de6 -SIZE (perforce/2015.1.1314399/bin.freebsd100x86/p4d) = 5226524 +SHA256 (perforce/2015.1.1321385/bin.freebsd100x86/p4d) = a85f521e46bcd918d4e02749bb45f31536c07baa04e5ffeb0e160f3c97d0024b +SIZE (perforce/2015.1.1321385/bin.freebsd100x86/p4d) = 5230428 Modified: branches/2016Q1/devel/p4d/distinfo.freebsd100x86_64 ============================================================================== --- branches/2016Q1/devel/p4d/distinfo.freebsd100x86_64 Sat Jan 9 00:57:40 2016 (r405601) +++ branches/2016Q1/devel/p4d/distinfo.freebsd100x86_64 Sat Jan 9 02:18:25 2016 (r405602) @@ -1,2 +1,2 @@ -SHA256 (perforce/2015.1.1314399/bin.freebsd100x86_64/p4d) = 0b6149f8292c1da50c2b702d98e3708ee97994cf92773adb0b3934ee353f6b01 -SIZE (perforce/2015.1.1314399/bin.freebsd100x86_64/p4d) = 5380032 +SHA256 (perforce/2015.1.1321385/bin.freebsd100x86_64/p4d) = 141da1ed5f3a1752ca4fb9be63b9697ad84624768e1eaa775ad77b5e89abe20a +SIZE (perforce/2015.1.1321385/bin.freebsd100x86_64/p4d) = 5380032 Modified: branches/2016Q1/devel/p4d/distinfo.freebsd70x86 ============================================================================== --- branches/2016Q1/devel/p4d/distinfo.freebsd70x86 Sat Jan 9 00:57:40 2016 (r405601) +++ branches/2016Q1/devel/p4d/distinfo.freebsd70x86 Sat Jan 9 02:18:25 2016 (r405602) @@ -1,2 +1,2 @@ -SHA256 (perforce/2015.1.1314399/bin.freebsd70x86/p4d) = 980e432b6a0d8f5e58b37e7e3f863420b59e097ed4415f09b325de23dae10b25 -SIZE (perforce/2015.1.1314399/bin.freebsd70x86/p4d) = 5592512 +SHA256 (perforce/2015.1.1321385/bin.freebsd70x86/p4d) = 8f199a5b09e68454860b60c37d4bd432f0622d26dcc4863a8720a9bfacb111df +SIZE (perforce/2015.1.1321385/bin.freebsd70x86/p4d) = 5592928 Modified: branches/2016Q1/devel/p4d/distinfo.freebsd70x86_64 ============================================================================== --- branches/2016Q1/devel/p4d/distinfo.freebsd70x86_64 Sat Jan 9 00:57:40 2016 (r405601) +++ branches/2016Q1/devel/p4d/distinfo.freebsd70x86_64 Sat Jan 9 02:18:25 2016 (r405602) @@ -1,2 +1,2 @@ -SHA256 (perforce/2015.1.1314399/bin.freebsd70x86_64/p4d) = e40bb691eff4c53aeb13a25e443f9761fb601a5fc302f6a1eeac6c86ede02d76 -SIZE (perforce/2015.1.1314399/bin.freebsd70x86_64/p4d) = 5770400 +SHA256 (perforce/2015.1.1321385/bin.freebsd70x86_64/p4d) = d412f0b922b7700d2d2332f1026c01b1c0267d0313941305d8533b6a42ad4590 +SIZE (perforce/2015.1.1321385/bin.freebsd70x86_64/p4d) = 5770528 From owner-svn-ports-branches@freebsd.org Sat Jan 9 07:04:08 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59751A68F83; Sat, 9 Jan 2016 07:04:08 +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 1E65B13CC; Sat, 9 Jan 2016 07:04:08 +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 u09747Nn066753; Sat, 9 Jan 2016 07:04:07 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u09746aN066739; Sat, 9 Jan 2016 07:04:06 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201601090704.u09746aN066739@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 9 Jan 2016 07:04:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r405609 - in branches/2016Q1/lang: python27 python27/files python32 python32/files python33 python33/files python34 python34/files python35 python35/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 09 Jan 2016 07:04:08 -0000 Author: koobs Date: Sat Jan 9 07:04:05 2016 New Revision: 405609 URL: https://svnweb.freebsd.org/changeset/ports/405609 Log: MFH: r405569: lang/python{27,3*}: Backport patch in upstream issue20397 In certain situations, file references (.py[co]) for Python files that fail to compile with compileall() are still added to distutils --record output. This output is used for pkg-plist generation and must only contain references to files that will be installed. One example of a failure condition is when a Python 2/3 compatible package containing a file containing Python 3.x only code is built with Python 2.x, such as Gunicorn's _gaiohttp.py [1] This change backports patches submitted against upstream issue 20397 [2] that has not yet been committed. - For Python 2.7 and 3.5, backport both install_lib and test - For Python 3.2, 3.3 and 3.4, only backport install_lib [1] https://svnweb.freebsd.org/changeset/ports/404558 [2] https://bugs.python.org/issue20397 Thank you to Brendan Molloy for producing and submitting the patches against upstream sources. Reviewed by: sbz (python) Differential Revision: D4832 Approved by: ports-secteam (miwi) Added: branches/2016Q1/lang/python27/files/patch-Lib_distutils_command_install__lib.py - copied unchanged from r405569, head/lang/python27/files/patch-Lib_distutils_command_install__lib.py branches/2016Q1/lang/python27/files/patch-Lib_distutils_tests_test__install__lib.py - copied unchanged from r405569, head/lang/python27/files/patch-Lib_distutils_tests_test__install__lib.py branches/2016Q1/lang/python32/files/patch-Lib_distutils_command_install__lib.py - copied unchanged from r405569, head/lang/python32/files/patch-Lib_distutils_command_install__lib.py branches/2016Q1/lang/python33/files/patch-Lib_distutils_command_install__lib.py - copied unchanged from r405569, head/lang/python33/files/patch-Lib_distutils_command_install__lib.py branches/2016Q1/lang/python34/files/patch-Lib_distutils_command_install__lib.py - copied unchanged from r405569, head/lang/python34/files/patch-Lib_distutils_command_install__lib.py branches/2016Q1/lang/python35/files/patch-Lib_distutils_command_install__lib.py - copied unchanged from r405569, head/lang/python35/files/patch-Lib_distutils_command_install__lib.py branches/2016Q1/lang/python35/files/patch-Lib_distutils_tests_test__install__lib.py - copied unchanged from r405569, head/lang/python35/files/patch-Lib_distutils_tests_test__install__lib.py Modified: branches/2016Q1/lang/python27/Makefile branches/2016Q1/lang/python32/Makefile branches/2016Q1/lang/python33/Makefile branches/2016Q1/lang/python34/Makefile branches/2016Q1/lang/python35/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/lang/python27/Makefile ============================================================================== --- branches/2016Q1/lang/python27/Makefile Sat Jan 9 05:05:44 2016 (r405608) +++ branches/2016Q1/lang/python27/Makefile Sat Jan 9 07:04:05 2016 (r405609) @@ -2,6 +2,7 @@ PORTNAME= python27 PORTVERSION= ${PYTHON_PORTVERSION} +PORTREVISION= 1 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} Copied: branches/2016Q1/lang/python27/files/patch-Lib_distutils_command_install__lib.py (from r405569, head/lang/python27/files/patch-Lib_distutils_command_install__lib.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/lang/python27/files/patch-Lib_distutils_command_install__lib.py Sat Jan 9 07:04:05 2016 (r405609, copy of r405569, head/lang/python27/files/patch-Lib_distutils_command_install__lib.py) @@ -0,0 +1,34 @@ +From 9934ce31b8447667f71c211e559a8de71e8263db Mon Sep 17 00:00:00 2001 +From: Brendan Molloy +Date: Mon, 4 Jan 2016 23:14:06 +1100 +Subject: [PATCH] Check bytecode file actually exists and tests + +Should solve issue 20397, where using the --record argument results +in files that failed to generate bytecode files are added to the +record file nonetheless. +--- + Lib/distutils/command/install_lib.py | 17 +++++++++++++---- + Lib/distutils/tests/test_install_lib.py | 8 ++++++-- + 2 files changed, 19 insertions(+), 6 deletions(-) + +--- Lib/distutils/command/install_lib.py.orig 2015-12-05 19:46:56 UTC ++++ Lib/distutils/command/install_lib.py +@@ -168,10 +168,14 @@ class install_lib(Command): + ext = os.path.splitext(os.path.normcase(py_file))[1] + if ext != PYTHON_SOURCE_EXTENSION: + continue +- if self.compile: +- bytecode_files.append(py_file + "c") +- if self.optimize > 0: +- bytecode_files.append(py_file + "o") ++ ++ pyc_file = py_file + "c" ++ if self.compile and os.path.isfile(pyc_file): ++ bytecode_files.append(pyc_file) ++ ++ pyo_file = py_file + "o" ++ if self.optimize > 0 and os.path.isfile(pyo_file): ++ bytecode_files.append(pyo_file) + + return bytecode_files + Copied: branches/2016Q1/lang/python27/files/patch-Lib_distutils_tests_test__install__lib.py (from r405569, head/lang/python27/files/patch-Lib_distutils_tests_test__install__lib.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/lang/python27/files/patch-Lib_distutils_tests_test__install__lib.py Sat Jan 9 07:04:05 2016 (r405609, copy of r405569, head/lang/python27/files/patch-Lib_distutils_tests_test__install__lib.py) @@ -0,0 +1,30 @@ +From 9934ce31b8447667f71c211e559a8de71e8263db Mon Sep 17 00:00:00 2001 +From: Brendan Molloy +Date: Mon, 4 Jan 2016 23:14:06 +1100 +Subject: [PATCH] Check bytecode file actually exists and tests + +Should solve issue 20397, where using the --record argument results +in files that failed to generate bytecode files are added to the +record file nonetheless. +--- + Lib/distutils/command/install_lib.py | 17 +++++++++++++---- + Lib/distutils/tests/test_install_lib.py | 8 ++++++-- + 2 files changed, 19 insertions(+), 6 deletions(-) + +--- Lib/distutils/tests/test_install_lib.py.orig 2015-12-05 19:46:57 UTC ++++ Lib/distutils/tests/test_install_lib.py +@@ -64,8 +64,12 @@ class InstallLibTestCase(support.Tempdir + cmd.distribution.packages = [pkg_dir] + cmd.distribution.script_name = 'setup.py' + +- # get_output should return 4 elements +- self.assertGreaterEqual(len(cmd.get_outputs()), 2) ++ # Create rubbish, uncompilable file ++ f = os.path.join(pkg_dir, 'rubbish.py') ++ self.write_file(f, 'rubbish()') ++ ++ # get_output should return 3 elements ++ self.assertEqual(len(cmd.get_outputs()), 3) + + def test_get_inputs(self): + pkg_dir, dist = self.create_dist() Modified: branches/2016Q1/lang/python32/Makefile ============================================================================== --- branches/2016Q1/lang/python32/Makefile Sat Jan 9 05:05:44 2016 (r405608) +++ branches/2016Q1/lang/python32/Makefile Sat Jan 9 07:04:05 2016 (r405609) @@ -2,6 +2,7 @@ PORTNAME= python32 PORTVERSION= ${PYTHON_PORTVERSION} +PORTREVISION= 1 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} Copied: branches/2016Q1/lang/python32/files/patch-Lib_distutils_command_install__lib.py (from r405569, head/lang/python32/files/patch-Lib_distutils_command_install__lib.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/lang/python32/files/patch-Lib_distutils_command_install__lib.py Sat Jan 9 07:04:05 2016 (r405609, copy of r405569, head/lang/python32/files/patch-Lib_distutils_command_install__lib.py) @@ -0,0 +1,34 @@ +From 9934ce31b8447667f71c211e559a8de71e8263db Mon Sep 17 00:00:00 2001 +From: Brendan Molloy +Date: Mon, 4 Jan 2016 23:14:06 +1100 +Subject: [PATCH] Check bytecode file actually exists and tests + +Should solve issue 20397, where using the --record argument results +in files that failed to generate bytecode files are added to the +record file nonetheless. + +--- Lib/distutils/command/install_lib.py.orig 2014-10-12 06:52:02 UTC ++++ Lib/distutils/command/install_lib.py +@@ -165,11 +165,18 @@ class install_lib(Command): + if ext != PYTHON_SOURCE_EXTENSION: + continue + if self.compile: +- bytecode_files.append(imp.cache_from_source( +- py_file, debug_override=True)) ++ candidate = imp.cache_from_source( ++ py_file, debug_override=True) ++ ++ if os.path.isfile(candidate): ++ bytecode_files.append(candidate) ++ + if self.optimize > 0: +- bytecode_files.append(imp.cache_from_source( +- py_file, debug_override=False)) ++ candidate = imp.cache_from_source( ++ py_file, debug_override=False) ++ ++ if os.path.isfile(candidate): ++ bytecode_files.append(candidate) + + return bytecode_files + Modified: branches/2016Q1/lang/python33/Makefile ============================================================================== --- branches/2016Q1/lang/python33/Makefile Sat Jan 9 05:05:44 2016 (r405608) +++ branches/2016Q1/lang/python33/Makefile Sat Jan 9 07:04:05 2016 (r405609) @@ -2,7 +2,7 @@ PORTNAME= python33 PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} Copied: branches/2016Q1/lang/python33/files/patch-Lib_distutils_command_install__lib.py (from r405569, head/lang/python33/files/patch-Lib_distutils_command_install__lib.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/lang/python33/files/patch-Lib_distutils_command_install__lib.py Sat Jan 9 07:04:05 2016 (r405609, copy of r405569, head/lang/python33/files/patch-Lib_distutils_command_install__lib.py) @@ -0,0 +1,34 @@ +From 9934ce31b8447667f71c211e559a8de71e8263db Mon Sep 17 00:00:00 2001 +From: Brendan Molloy +Date: Mon, 4 Jan 2016 23:14:06 +1100 +Subject: [PATCH] Check bytecode file actually exists and tests + +Should solve issue 20397, where using the --record argument results +in files that failed to generate bytecode files are added to the +record file nonetheless. + +--- Lib/distutils/command/install_lib.py.orig 2014-10-12 06:52:02 UTC ++++ Lib/distutils/command/install_lib.py +@@ -165,11 +165,18 @@ class install_lib(Command): + if ext != PYTHON_SOURCE_EXTENSION: + continue + if self.compile: +- bytecode_files.append(imp.cache_from_source( +- py_file, debug_override=True)) ++ candidate = imp.cache_from_source( ++ py_file, debug_override=True) ++ ++ if os.path.isfile(candidate): ++ bytecode_files.append(candidate) ++ + if self.optimize > 0: +- bytecode_files.append(imp.cache_from_source( +- py_file, debug_override=False)) ++ candidate = imp.cache_from_source( ++ py_file, debug_override=False) ++ ++ if os.path.isfile(candidate): ++ bytecode_files.append(candidate) + + return bytecode_files + Modified: branches/2016Q1/lang/python34/Makefile ============================================================================== --- branches/2016Q1/lang/python34/Makefile Sat Jan 9 05:05:44 2016 (r405608) +++ branches/2016Q1/lang/python34/Makefile Sat Jan 9 07:04:05 2016 (r405609) @@ -3,7 +3,7 @@ PORTNAME= python34 PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} Copied: branches/2016Q1/lang/python34/files/patch-Lib_distutils_command_install__lib.py (from r405569, head/lang/python34/files/patch-Lib_distutils_command_install__lib.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/lang/python34/files/patch-Lib_distutils_command_install__lib.py Sat Jan 9 07:04:05 2016 (r405609, copy of r405569, head/lang/python34/files/patch-Lib_distutils_command_install__lib.py) @@ -0,0 +1,35 @@ +From 9934ce31b8447667f71c211e559a8de71e8263db Mon Sep 17 00:00:00 2001 +From: Brendan Molloy +Date: Mon, 4 Jan 2016 23:14:06 +1100 +Subject: [PATCH] Check bytecode file actually exists and tests + +Should solve issue 20397, where using the --record argument results +in files that failed to generate bytecode files are added to the +record file nonetheless. + +--- Lib/distutils/command/install_lib.py.orig 2016-01-08 12:38:49 UTC ++++ Lib/distutils/command/install_lib.py +@@ -165,11 +165,19 @@ class install_lib(Command): + if ext != PYTHON_SOURCE_EXTENSION: + continue + if self.compile: +- bytecode_files.append(importlib.util.cache_from_source( +- py_file, debug_override=True)) ++ candidate = importlib.util.cache_from_source( ++ py_file, debug_override=True) ++ ++ if os.path.isfile(candidate): ++ bytecode_files.append(candidate) ++ + if self.optimize > 0: +- bytecode_files.append(importlib.util.cache_from_source( +- py_file, debug_override=False)) ++ candidate = importlib.util.cache_from_source( ++ py_file, debug_override=False) ++ ++ if os.path.isfile(candidate): ++ bytecode_files.append(candidate) ++ + + return bytecode_files + Modified: branches/2016Q1/lang/python35/Makefile ============================================================================== --- branches/2016Q1/lang/python35/Makefile Sat Jan 9 05:05:44 2016 (r405608) +++ branches/2016Q1/lang/python35/Makefile Sat Jan 9 07:04:05 2016 (r405609) @@ -3,6 +3,7 @@ PORTNAME= python DISTVERSION= ${PYTHON_PORTVERSION} +PORTREVISION= 1 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PYTHON_PORTVERSION} PKGNAMESUFFIX= ${PYTHON_SUFFIX} Copied: branches/2016Q1/lang/python35/files/patch-Lib_distutils_command_install__lib.py (from r405569, head/lang/python35/files/patch-Lib_distutils_command_install__lib.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/lang/python35/files/patch-Lib_distutils_command_install__lib.py Sat Jan 9 07:04:05 2016 (r405609, copy of r405569, head/lang/python35/files/patch-Lib_distutils_command_install__lib.py) @@ -0,0 +1,41 @@ +From 9934ce31b8447667f71c211e559a8de71e8263db Mon Sep 17 00:00:00 2001 +From: Brendan Molloy +Date: Mon, 4 Jan 2016 23:14:06 +1100 +Subject: [PATCH] Check bytecode file actually exists and tests + +Should solve issue 20397, where using the --record argument results +in files that failed to generate bytecode files are added to the +record file nonetheless. +--- + Lib/distutils/command/install_lib.py | 17 +++++++++++++---- + Lib/distutils/tests/test_install_lib.py | 8 ++++++-- + 2 files changed, 19 insertions(+), 6 deletions(-) + +--- Lib/distutils/command/install_lib.py.orig 2015-12-07 01:39:07 UTC ++++ Lib/distutils/command/install_lib.py +@@ -164,12 +164,21 @@ class install_lib(Command): + ext = os.path.splitext(os.path.normcase(py_file))[1] + if ext != PYTHON_SOURCE_EXTENSION: + continue ++ + if self.compile: +- bytecode_files.append(importlib.util.cache_from_source( +- py_file, optimization='')) ++ candidate = importlib.util.cache_from_source( ++ py_file, optimization='') ++ ++ if os.path.isfile(candidate): ++ bytecode_files.append(candidate) ++ + if self.optimize > 0: +- bytecode_files.append(importlib.util.cache_from_source( +- py_file, optimization=self.optimize)) ++ candidate = importlib.util.cache_from_source( ++ py_file, optimization=self.optimize) ++ ++ if os.path.isfile(candidate): ++ bytecode_files.append(candidate) ++ + + return bytecode_files + Copied: branches/2016Q1/lang/python35/files/patch-Lib_distutils_tests_test__install__lib.py (from r405569, head/lang/python35/files/patch-Lib_distutils_tests_test__install__lib.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/lang/python35/files/patch-Lib_distutils_tests_test__install__lib.py Sat Jan 9 07:04:05 2016 (r405609, copy of r405569, head/lang/python35/files/patch-Lib_distutils_tests_test__install__lib.py) @@ -0,0 +1,33 @@ +From 9934ce31b8447667f71c211e559a8de71e8263db Mon Sep 17 00:00:00 2001 +From: Brendan Molloy +Date: Mon, 4 Jan 2016 23:14:06 +1100 +Subject: [PATCH] Check bytecode file actually exists and tests + +Should solve issue 20397, where using the --record argument results +in files that failed to generate bytecode files are added to the +record file nonetheless. +--- + Lib/distutils/command/install_lib.py | 17 +++++++++++++---- + Lib/distutils/tests/test_install_lib.py | 8 ++++++-- + 2 files changed, 19 insertions(+), 6 deletions(-) + +--- Lib/distutils/tests/test_install_lib.py.orig 2015-12-07 01:39:07 UTC ++++ Lib/distutils/tests/test_install_lib.py +@@ -64,11 +64,15 @@ class InstallLibTestCase(support.Tempdir + cmd.distribution.ext_modules = [Extension('foo', ['xxx'])] + cmd.distribution.packages = ['spam'] + cmd.distribution.script_name = 'setup.py' ++ ++ # Create rubbish, uncompilable file ++ f = os.path.join(project_dir, 'spam', 'rubbish.py') ++ self.write_file(f, 'rubbish()') + + # get_outputs should return 4 elements: spam/__init__.py and .pyc, +- # foo.import-tag-abiflags.so / foo.pyd ++ # foo.import-tag-abiflags.so / foo.pyd and rubbish.py (no .pyc) + outputs = cmd.get_outputs() +- self.assertEqual(len(outputs), 4, outputs) ++ self.assertEqual(len(outputs), 5, outputs) + + def test_get_inputs(self): + project_dir, dist = self.create_dist()