From owner-svn-ports-branches@freebsd.org Sun Nov 20 21:12: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 155AEC4C403; Sun, 20 Nov 2016 21:12:08 +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 D857010E1; Sun, 20 Nov 2016 21:12:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAKLC6kb072642; Sun, 20 Nov 2016 21:12:06 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAKLC6dF072641; Sun, 20 Nov 2016 21:12:06 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611202112.uAKLC6dF072641@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 20 Nov 2016 21:12:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426634 - branches/2016Q4/devel/godot 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Nov 2016 21:12:08 -0000 Author: jbeich Date: Sun Nov 20 21:12:06 2016 New Revision: 426634 URL: https://svnweb.freebsd.org/changeset/ports/426634 Log: MFH: r426626 r426632 devel/godot: unbreak on some non-x86 targets In file included from platform/x11/godot_x11.cpp:30: In file included from platform/x11/os_x11.h:33: In file included from core/os/input.h:32: In file included from core/object.h:32: In file included from core/list.h:32: In file included from core/os/memory.h:33: core/safe_refcount.h:330:2: error: This platform cannot use safe refcount, compile with NO_THREADS or implement it. #error This platform cannot use safe refcount, compile with NO_THREADS or implement it. ^ core/safe_refcount.h:338:3: error: unknown type name 'REFCOUNT_T' REFCOUNT_T count; ^ PR: 214553 Reported by: pkg-fallout, linimon Submitted by: Shane (maintainer) Approved by: ports-secteam blanket Modified: branches/2016Q4/devel/godot/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/godot/Makefile ============================================================================== --- branches/2016Q4/devel/godot/Makefile Sun Nov 20 21:09:05 2016 (r426633) +++ branches/2016Q4/devel/godot/Makefile Sun Nov 20 21:12:06 2016 (r426634) @@ -32,6 +32,10 @@ MAKE_ARGS_clang= use_llvm=yes CXXFLAGS+= -DGLEW_NO_GLU -DRTAUDIO_ENABLED CXXFLAGS_i386= ${CXXFLAGS_i386_${CHOSEN_COMPILER_TYPE}} CXXFLAGS_i386_gcc= -march=i586 +CXXFLAGS_aarch64= -DNO_THREADS +CXXFLAGS_sparc64= -DNO_THREADS +CXXFLAGS_mips= -DNO_THREADS +CXXFLAGS_mips64= -DNO_THREADS OPTIONS_DEFINE= EXAMPLES TOOLS OPTIONS_DEFAULT= OSS From owner-svn-ports-branches@freebsd.org Mon Nov 21 20:31: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 6E463C4DAA6; Mon, 21 Nov 2016 20:31:56 +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 3D7951449; Mon, 21 Nov 2016 20:31:56 +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 uALKVtMj041352; Mon, 21 Nov 2016 20:31:55 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uALKVtXI041351; Mon, 21 Nov 2016 20:31:55 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201611212031.uALKVtXI041351@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Mon, 21 Nov 2016 20:31:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426753 - branches/2016Q4/irc/dxirc 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Nov 2016 20:31:56 -0000 Author: jhale Date: Mon Nov 21 20:31:55 2016 New Revision: 426753 URL: https://svnweb.freebsd.org/changeset/ports/426753 Log: MFH: r426752 Unbreak fetch, project now hosted on SourceForge. Newer version available. Approved by: portmgr (blanket) Approved by: ports-secteam (blanket) Modified: branches/2016Q4/irc/dxirc/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/irc/dxirc/Makefile ============================================================================== --- branches/2016Q4/irc/dxirc/Makefile Mon Nov 21 20:30:05 2016 (r426752) +++ branches/2016Q4/irc/dxirc/Makefile Mon Nov 21 20:31:55 2016 (r426753) @@ -4,7 +4,7 @@ PORTNAME= dxirc PORTVERSION= 1.10.0 PORTREVISION= 3 CATEGORIES= irc -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} MAINTAINER= arch_dvx@users.sourceforge.net COMMENT= Simple IRC client written using the FOX toolkit @@ -12,8 +12,6 @@ COMMENT= Simple IRC client written using LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= Unfetchable (google code has gone away) - LIB_DEPENDS= libFOX-1.6.so:x11-toolkits/fox16 USE_XORG= xft From owner-svn-ports-branches@freebsd.org Tue Nov 22 08: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 A48B7C4B2D9; Tue, 22 Nov 2016 08:12:58 +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 73E2E1C83; Tue, 22 Nov 2016 08:12:58 +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 uAM8Cvsf025480; Tue, 22 Nov 2016 08:12:57 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAM8CvEn025478; Tue, 22 Nov 2016 08:12:57 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201611220812.uAM8CvEn025478@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Tue, 22 Nov 2016 08:12:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426792 - branches/2016Q4/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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Nov 2016 08:12:58 -0000 Author: delphij Date: Tue Nov 22 08:12:57 2016 New Revision: 426792 URL: https://svnweb.freebsd.org/changeset/ports/426792 Log: MFH: r426791 Security update to 4.2.8p9. Approved by: ports-secteam Modified: branches/2016Q4/net/ntp/Makefile branches/2016Q4/net/ntp/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/net/ntp/Makefile ============================================================================== --- branches/2016Q4/net/ntp/Makefile Tue Nov 22 08:11:20 2016 (r426791) +++ branches/2016Q4/net/ntp/Makefile Tue Nov 22 08:12:57 2016 (r426792) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ntp -PORTVERSION= 4.2.8p8 -PORTREVISION= 1 +PORTVERSION= 4.2.8p9 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/2016Q4/net/ntp/distinfo ============================================================================== --- branches/2016Q4/net/ntp/distinfo Tue Nov 22 08:11:20 2016 (r426791) +++ branches/2016Q4/net/ntp/distinfo Tue Nov 22 08:12:57 2016 (r426792) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464934880 -SHA256 (ntp-4.2.8p8.tar.gz) = 2ab3d0b5f0456e6311dda1cc27ab75da108762773a19e46abd938bd9407b97ee -SIZE (ntp-4.2.8p8.tar.gz) = 7205710 +TIMESTAMP = 1479794099 +SHA256 (ntp-4.2.8p9.tar.gz) = b724287778e1bac625b447327c9851eedef020517a3545625e9f652a90f30b72 +SIZE (ntp-4.2.8p9.tar.gz) = 7231884 From owner-svn-ports-branches@freebsd.org Tue Nov 22 17:40: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 30121C50115; Tue, 22 Nov 2016 17:40: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 F3914257; Tue, 22 Nov 2016 17:40:54 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAMHesYc055347; Tue, 22 Nov 2016 17:40:54 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAMHerVP055346; Tue, 22 Nov 2016 17:40:53 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201611221740.uAMHerVP055346@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 22 Nov 2016 17:40:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426833 - branches/2016Q4/databases/mysql56-server 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Nov 2016 17:40:55 -0000 Author: feld Date: Tue Nov 22 17:40:53 2016 New Revision: 426833 URL: https://svnweb.freebsd.org/changeset/ports/426833 Log: MFH: r424398 Update to 5.6.34 release. Approved by: ports-secteam (with hat) PR: 214351 Modified: branches/2016Q4/databases/mysql56-server/Makefile branches/2016Q4/databases/mysql56-server/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/databases/mysql56-server/Makefile ============================================================================== --- branches/2016Q4/databases/mysql56-server/Makefile Tue Nov 22 15:42:57 2016 (r426832) +++ branches/2016Q4/databases/mysql56-server/Makefile Tue Nov 22 17:40:53 2016 (r426833) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.6.33 +PORTVERSION= 5.6.34 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.6 Modified: branches/2016Q4/databases/mysql56-server/distinfo ============================================================================== --- branches/2016Q4/databases/mysql56-server/distinfo Tue Nov 22 15:42:57 2016 (r426832) +++ branches/2016Q4/databases/mysql56-server/distinfo Tue Nov 22 17:40:53 2016 (r426833) @@ -1,3 +1,3 @@ -TIMESTAMP = 1474010208 -SHA256 (mysql-5.6.33.tar.gz) = 60776ec27d78b59f597e71738c5bcdea64dcba33c36fede320d5930320b1fef0 -SIZE (mysql-5.6.33.tar.gz) = 32094894 +TIMESTAMP = 1477038469 +SHA256 (mysql-5.6.34.tar.gz) = ee90bafec6af3abe2715ccb0b3cc9345ed8d1cce025d41e6ec2b2b7a7d820823 +SIZE (mysql-5.6.34.tar.gz) = 32094762 From owner-svn-ports-branches@freebsd.org Tue Nov 22 18:17: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 390A7C50E7D; Tue, 22 Nov 2016 18:17:23 +0000 (UTC) (envelope-from cmt@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 096B21FB; Tue, 22 Nov 2016 18:17:22 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAMIHMGN071831; Tue, 22 Nov 2016 18:17:22 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAMIHLSB071823; Tue, 22 Nov 2016 18:17:21 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201611221817.uAMIHLSB071823@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Tue, 22 Nov 2016 18:17:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426836 - in branches/2016Q4/mail: linux-thunderbird thunderbird thunderbird-i18n 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Nov 2016 18:17:23 -0000 Author: cmt Date: Tue Nov 22 18:17:21 2016 New Revision: 426836 URL: https://svnweb.freebsd.org/changeset/ports/426836 Log: MFH: r426389 Thunderbird 45.5.0 includes enigmail 1.9.6.1 PR: 214631 Approved by: jbeich (maintainer), rene (mentor, implicit) Security: d1853110-07f4-4645-895b-6fd462ad0589 Approved by: ports-secteam (feld) Modified: branches/2016Q4/mail/linux-thunderbird/Makefile branches/2016Q4/mail/linux-thunderbird/distinfo branches/2016Q4/mail/thunderbird-i18n/Makefile branches/2016Q4/mail/thunderbird-i18n/distinfo branches/2016Q4/mail/thunderbird/Makefile branches/2016Q4/mail/thunderbird/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/mail/linux-thunderbird/Makefile ============================================================================== --- branches/2016Q4/mail/linux-thunderbird/Makefile Tue Nov 22 18:13:50 2016 (r426835) +++ branches/2016Q4/mail/linux-thunderbird/Makefile Tue Nov 22 18:17:21 2016 (r426836) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 45.4.0 +DISTVERSION= 45.5.0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/linux-i686/en-US Modified: branches/2016Q4/mail/linux-thunderbird/distinfo ============================================================================== --- branches/2016Q4/mail/linux-thunderbird/distinfo Tue Nov 22 18:13:50 2016 (r426835) +++ branches/2016Q4/mail/linux-thunderbird/distinfo Tue Nov 22 18:17:21 2016 (r426836) @@ -1,6 +1,6 @@ -TIMESTAMP = 1475328167 -SHA256 (thunderbird-45.4.0.tar.bz2) = d3b3a6fec75b22e67bdc9d7ac4812ea3312195cc0a5fb4ffa500d7b896accb08 -SIZE (thunderbird-45.4.0.tar.bz2) = 44172292 +TIMESTAMP = 1479487530 +SHA256 (thunderbird-45.5.0.tar.bz2) = 93a2e42daa73c135f09beb90a29a7445084e553a5d8420ffd7f3259d7aaa7d70 +SIZE (thunderbird-45.5.0.tar.bz2) = 44218275 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 Modified: branches/2016Q4/mail/thunderbird-i18n/Makefile ============================================================================== --- branches/2016Q4/mail/thunderbird-i18n/Makefile Tue Nov 22 18:13:50 2016 (r426835) +++ branches/2016Q4/mail/thunderbird-i18n/Makefile Tue Nov 22 18:17:21 2016 (r426836) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 45.4.0 +PORTVERSION= 45.5.0 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi Modified: branches/2016Q4/mail/thunderbird-i18n/distinfo ============================================================================== --- branches/2016Q4/mail/thunderbird-i18n/distinfo Tue Nov 22 18:13:50 2016 (r426835) +++ branches/2016Q4/mail/thunderbird-i18n/distinfo Tue Nov 22 18:17:21 2016 (r426836) @@ -1,117 +1,117 @@ -TIMESTAMP = 1475328022 -SHA256 (xpi/thunderbird-i18n-45.4.0/ar.xpi) = 3742f91169a3b677f20deebf0a5303d67276952c217240123147fa33f2559f5c -SIZE (xpi/thunderbird-i18n-45.4.0/ar.xpi) = 490775 -SHA256 (xpi/thunderbird-i18n-45.4.0/ast.xpi) = 115338fcb25bb536580969f683e0712f9325371c50fde1040db39e6646e1127b -SIZE (xpi/thunderbird-i18n-45.4.0/ast.xpi) = 428059 -SHA256 (xpi/thunderbird-i18n-45.4.0/be.xpi) = e6d238d0c183f3c3443632984937948f96da0ab646da7fdf9d0137cb9cb94d60 -SIZE (xpi/thunderbird-i18n-45.4.0/be.xpi) = 469096 -SHA256 (xpi/thunderbird-i18n-45.4.0/bg.xpi) = 78f052076fac13bad9a41bae8f731a00af15575ebfe9276638665d7544f607bd -SIZE (xpi/thunderbird-i18n-45.4.0/bg.xpi) = 524299 -SHA256 (xpi/thunderbird-i18n-45.4.0/bn-BD.xpi) = 6ece88bd01954cc52a10bf1b3fb537eb3e12c4a1cd5d93d9100f476cb2f80512 -SIZE (xpi/thunderbird-i18n-45.4.0/bn-BD.xpi) = 581438 -SHA256 (xpi/thunderbird-i18n-45.4.0/br.xpi) = 79a64fdb3c68269866224b5b9a47b6ccf13c4eb6870f58c8059541ba3aaf818b -SIZE (xpi/thunderbird-i18n-45.4.0/br.xpi) = 466000 -SHA256 (xpi/thunderbird-i18n-45.4.0/ca.xpi) = 850f9ed3e20b6fb2f82e12898892c0ff92cdfd14bff3b853b843cc3a3f62887b -SIZE (xpi/thunderbird-i18n-45.4.0/ca.xpi) = 467980 -SHA256 (xpi/thunderbird-i18n-45.4.0/cs.xpi) = 01a18bc70d834c751f11b2eda248f239bad0f698631f668c3a691c0a992de6c1 -SIZE (xpi/thunderbird-i18n-45.4.0/cs.xpi) = 474328 -SHA256 (xpi/thunderbird-i18n-45.4.0/cy.xpi) = f2053a69135ced25c58e7afb65c05812a667d1097965e6cebc7d1d903897e03d -SIZE (xpi/thunderbird-i18n-45.4.0/cy.xpi) = 456120 -SHA256 (xpi/thunderbird-i18n-45.4.0/da.xpi) = 98669d0d53189e111b6766285702f0f2958112a2a1e72c250aa285de05a04253 -SIZE (xpi/thunderbird-i18n-45.4.0/da.xpi) = 445594 -SHA256 (xpi/thunderbird-i18n-45.4.0/de.xpi) = 0d899493efee990999f48260825eb19a9b3e840beb6e3d12eb76cd2abfea67a6 -SIZE (xpi/thunderbird-i18n-45.4.0/de.xpi) = 451956 -SHA256 (xpi/thunderbird-i18n-45.4.0/dsb.xpi) = ab8a06ea69d8aca4a33807c15e6bb8c8e103c798b25bcc07348e21a9c054b3fa -SIZE (xpi/thunderbird-i18n-45.4.0/dsb.xpi) = 481647 -SHA256 (xpi/thunderbird-i18n-45.4.0/el.xpi) = ef0dc8ea71f43a06023a7cf0ce5ac4b2fc46977dadb027e4bee45c3a947be2c8 -SIZE (xpi/thunderbird-i18n-45.4.0/el.xpi) = 514358 -SHA256 (xpi/thunderbird-i18n-45.4.0/en-GB.xpi) = 67d9b02860f07fd3b87690cb9bf7caf4f27b1c1f2076edbd55833721852df120 -SIZE (xpi/thunderbird-i18n-45.4.0/en-GB.xpi) = 437602 -SHA256 (xpi/thunderbird-i18n-45.4.0/en-US.xpi) = e82105e08ca25a3aa1f0bc12ddfa39ef673e476f0c067809e78e7f05ba26fc1b -SIZE (xpi/thunderbird-i18n-45.4.0/en-US.xpi) = 435474 -SHA256 (xpi/thunderbird-i18n-45.4.0/es-AR.xpi) = 32fee60118f9616b08d6cc82a571886b181fbb3c0ed8e51fe66567cf98fa8dda -SIZE (xpi/thunderbird-i18n-45.4.0/es-AR.xpi) = 464684 -SHA256 (xpi/thunderbird-i18n-45.4.0/es-ES.xpi) = bc0ec66057808053025008a1cb0b2023d91e6536d9f64b2aac34dab6e1f35240 -SIZE (xpi/thunderbird-i18n-45.4.0/es-ES.xpi) = 388000 -SHA256 (xpi/thunderbird-i18n-45.4.0/et.xpi) = 0e0321a4c04b707fb9d4a879eea38ff4f1df56ae6b1a0dceec724cfeb4a48031 -SIZE (xpi/thunderbird-i18n-45.4.0/et.xpi) = 458419 -SHA256 (xpi/thunderbird-i18n-45.4.0/eu.xpi) = 173862da12643d9ad5d0934e859081859a728cf604dd6d72f4b71de8e6d61865 -SIZE (xpi/thunderbird-i18n-45.4.0/eu.xpi) = 456708 -SHA256 (xpi/thunderbird-i18n-45.4.0/fi.xpi) = 73024f4eb37f2b48bec2e47f0fa6fa3e97ffe04400713e3b452143567f56b84d -SIZE (xpi/thunderbird-i18n-45.4.0/fi.xpi) = 458335 -SHA256 (xpi/thunderbird-i18n-45.4.0/fr.xpi) = 0a6031d4535de002a0cc040cafb1e598e2df98ef670338c25f754a8e242eae55 -SIZE (xpi/thunderbird-i18n-45.4.0/fr.xpi) = 475465 -SHA256 (xpi/thunderbird-i18n-45.4.0/fy-NL.xpi) = 72091838b72a7483f59aaa8b0c830560a75e5f1884ea257843c8a8bb526c88ca -SIZE (xpi/thunderbird-i18n-45.4.0/fy-NL.xpi) = 464757 -SHA256 (xpi/thunderbird-i18n-45.4.0/ga-IE.xpi) = 1f6fd5f118720491461ca51e342cf71af0aa6df5c92767ddee102fd35f14396f -SIZE (xpi/thunderbird-i18n-45.4.0/ga-IE.xpi) = 480316 -SHA256 (xpi/thunderbird-i18n-45.4.0/gd.xpi) = 1c2c3f6ef55aec121e981f78b3289beb53e0e11ad1fc4be969330eab2f3e28c6 -SIZE (xpi/thunderbird-i18n-45.4.0/gd.xpi) = 478296 -SHA256 (xpi/thunderbird-i18n-45.4.0/gl.xpi) = 6435b0ee04332a69c7284f221c58f0e5fac2208499f4f8850f5fe7f9c36cd8cb -SIZE (xpi/thunderbird-i18n-45.4.0/gl.xpi) = 478580 -SHA256 (xpi/thunderbird-i18n-45.4.0/he.xpi) = 1d63d030edb43a14fbeaaca01a048e5b7de6d001d9e1595efe2cdbbe32fc89cc -SIZE (xpi/thunderbird-i18n-45.4.0/he.xpi) = 497962 -SHA256 (xpi/thunderbird-i18n-45.4.0/hr.xpi) = aa7eee8d4ec03bbee12414d8526549925d742416b120c591099a7b8f465bfe26 -SIZE (xpi/thunderbird-i18n-45.4.0/hr.xpi) = 463959 -SHA256 (xpi/thunderbird-i18n-45.4.0/hu.xpi) = bc66e42252f1e206ae63625dc9d9038403301acbf5a8f7f71a624322fc1008e9 -SIZE (xpi/thunderbird-i18n-45.4.0/hu.xpi) = 479584 -SHA256 (xpi/thunderbird-i18n-45.4.0/hsb.xpi) = e905d2c8b5b62ffd898876c5bf5b4f1ee62198730eee6ee7e76f90e12a73fbb6 -SIZE (xpi/thunderbird-i18n-45.4.0/hsb.xpi) = 479414 -SHA256 (xpi/thunderbird-i18n-45.4.0/hy-AM.xpi) = 3f20eebddddd84b4da13b44335576c6bd541ec9286e7b6d3a2aaf5c50f7b5213 -SIZE (xpi/thunderbird-i18n-45.4.0/hy-AM.xpi) = 518883 -SHA256 (xpi/thunderbird-i18n-45.4.0/id.xpi) = f504cc06e99c0c4d5ecc4b4bdb53f63cd620c9107714c3f8cc0155cefd2d2a8d -SIZE (xpi/thunderbird-i18n-45.4.0/id.xpi) = 499981 -SHA256 (xpi/thunderbird-i18n-45.4.0/is.xpi) = b1d8415fb293c4f868306ac65e7ddadd06740ec473cb0477ccb4394e075467f0 -SIZE (xpi/thunderbird-i18n-45.4.0/is.xpi) = 462190 -SHA256 (xpi/thunderbird-i18n-45.4.0/it.xpi) = f0b70688b8f3fdf3fe287f8d502249008fc3e8e5a79e2bc794d37fdd6d1a031e -SIZE (xpi/thunderbird-i18n-45.4.0/it.xpi) = 376889 -SHA256 (xpi/thunderbird-i18n-45.4.0/ja.xpi) = 4b637aadf553b85dcab6cb7c589093ec7f42a4bc3cf9ebc44a9347f7839dc6cf -SIZE (xpi/thunderbird-i18n-45.4.0/ja.xpi) = 519552 -SHA256 (xpi/thunderbird-i18n-45.4.0/ko.xpi) = db0731e45fe914fc546f13c8c0e3dfe302333a8414b957abe01a8611b51d2d70 -SIZE (xpi/thunderbird-i18n-45.4.0/ko.xpi) = 487417 -SHA256 (xpi/thunderbird-i18n-45.4.0/lt.xpi) = 280c80246c5d0ff505814d3104f9e967d50210b52a8b95d31b14e42f17a2a167 -SIZE (xpi/thunderbird-i18n-45.4.0/lt.xpi) = 477736 -SHA256 (xpi/thunderbird-i18n-45.4.0/nb-NO.xpi) = 41eb2dbc26bf555ef46b00bc60700bb93ffafa46f9fbebb91a7b46c34599b9d8 -SIZE (xpi/thunderbird-i18n-45.4.0/nb-NO.xpi) = 460011 -SHA256 (xpi/thunderbird-i18n-45.4.0/nl.xpi) = 269f0821b14dbc2a07b9e211328a6dddf5dc60ab965e4c7716346486213401e7 -SIZE (xpi/thunderbird-i18n-45.4.0/nl.xpi) = 456664 -SHA256 (xpi/thunderbird-i18n-45.4.0/nn-NO.xpi) = 8480a9a81980119e7e9e0fe02d0a5f5dc8a150f848245975d46072a9991a8001 -SIZE (xpi/thunderbird-i18n-45.4.0/nn-NO.xpi) = 460880 -SHA256 (xpi/thunderbird-i18n-45.4.0/pa-IN.xpi) = 8fa60166d04fd0e8aa06c3ae0e47f6ffd7f8fd7c4488782df8f52b678be04b11 -SIZE (xpi/thunderbird-i18n-45.4.0/pa-IN.xpi) = 551067 -SHA256 (xpi/thunderbird-i18n-45.4.0/pl.xpi) = b691c8758b8b85cfcd1c255f96b8b6bfb6f74748fdfe087b962283bc97746d43 -SIZE (xpi/thunderbird-i18n-45.4.0/pl.xpi) = 423867 -SHA256 (xpi/thunderbird-i18n-45.4.0/pt-BR.xpi) = c6b847c7275389d7ce2a95f9203088aab18213b3515fc2950f3c91a0e50364c1 -SIZE (xpi/thunderbird-i18n-45.4.0/pt-BR.xpi) = 464682 -SHA256 (xpi/thunderbird-i18n-45.4.0/pt-PT.xpi) = d770f8ee181afff99bd5bc3200dad1c83bfd82589e62b7b486ac7f2309eba94a -SIZE (xpi/thunderbird-i18n-45.4.0/pt-PT.xpi) = 463751 -SHA256 (xpi/thunderbird-i18n-45.4.0/rm.xpi) = a7e0770679dd02dd1afa356a03f51e1b217bef1b3864e19f106962a9fc69a2be -SIZE (xpi/thunderbird-i18n-45.4.0/rm.xpi) = 462650 -SHA256 (xpi/thunderbird-i18n-45.4.0/ro.xpi) = 3f3664f5ad48e062ce73625aae545bfbf1860d8b247a1515b4d18f379291bde1 -SIZE (xpi/thunderbird-i18n-45.4.0/ro.xpi) = 468518 -SHA256 (xpi/thunderbird-i18n-45.4.0/ru.xpi) = 18643265f02d7d0398e219c12a2be407db40bd8c34b6dc29c79342734cd8acaf -SIZE (xpi/thunderbird-i18n-45.4.0/ru.xpi) = 463891 -SHA256 (xpi/thunderbird-i18n-45.4.0/si.xpi) = 5206e8b878183277c65d614377c154ebfab34b094c8aa76ab93fcd92157571e5 -SIZE (xpi/thunderbird-i18n-45.4.0/si.xpi) = 555995 -SHA256 (xpi/thunderbird-i18n-45.4.0/sk.xpi) = 775d268775de1c547e32981546e7bfcd6d73da880ebdbb85eeea414d7017293f -SIZE (xpi/thunderbird-i18n-45.4.0/sk.xpi) = 481492 -SHA256 (xpi/thunderbird-i18n-45.4.0/sl.xpi) = 0715d18ca9585d7f36d771e22a02b3890216c70ed1e68f6ab586929e613c6e5a -SIZE (xpi/thunderbird-i18n-45.4.0/sl.xpi) = 462777 -SHA256 (xpi/thunderbird-i18n-45.4.0/sq.xpi) = 1b3fa3df5140e934ea13906d5db934c365edd9573b1b0803902681a342bba08e -SIZE (xpi/thunderbird-i18n-45.4.0/sq.xpi) = 469535 -SHA256 (xpi/thunderbird-i18n-45.4.0/sr.xpi) = e8ec87ffdd35b598846b7389855145c702e763736f5481d180eabe90dee643e2 -SIZE (xpi/thunderbird-i18n-45.4.0/sr.xpi) = 565465 -SHA256 (xpi/thunderbird-i18n-45.4.0/sv-SE.xpi) = 83e2cb632f8bc2ccf5e38ffe3a952741410451e3e92a7e2e928f62ac5806ee20 -SIZE (xpi/thunderbird-i18n-45.4.0/sv-SE.xpi) = 465434 -SHA256 (xpi/thunderbird-i18n-45.4.0/ta-LK.xpi) = 6962a711d3e008f3e6d56b0e21bab1f877c9a94ab8b1bfc14fbd1461cbeb674c -SIZE (xpi/thunderbird-i18n-45.4.0/ta-LK.xpi) = 579219 -SHA256 (xpi/thunderbird-i18n-45.4.0/tr.xpi) = a38156623205abff1865263dabdbebbf834ef64f19761bef698eb244c3456fdd -SIZE (xpi/thunderbird-i18n-45.4.0/tr.xpi) = 467621 -SHA256 (xpi/thunderbird-i18n-45.4.0/uk.xpi) = 2b23b35e01d2a5d9a32b1a6e96ab4a2ad6b8fffb0ecec2faf6d5ee9b49659a10 -SIZE (xpi/thunderbird-i18n-45.4.0/uk.xpi) = 536438 -SHA256 (xpi/thunderbird-i18n-45.4.0/vi.xpi) = 35ea6857cbf496bf918756db414fb612a2817bf59c26134d57343207f2015072 -SIZE (xpi/thunderbird-i18n-45.4.0/vi.xpi) = 540497 -SHA256 (xpi/thunderbird-i18n-45.4.0/zh-CN.xpi) = 549174da246854c7826cb3047306d59c5e34cd6568d1091f07512e8a5557535d -SIZE (xpi/thunderbird-i18n-45.4.0/zh-CN.xpi) = 489209 -SHA256 (xpi/thunderbird-i18n-45.4.0/zh-TW.xpi) = a865d3403db417a513e29fdc80ffaeecaeffc130eb6d4183a533f46676809d32 -SIZE (xpi/thunderbird-i18n-45.4.0/zh-TW.xpi) = 490850 +TIMESTAMP = 1479487669 +SHA256 (xpi/thunderbird-i18n-45.5.0/ar.xpi) = fec980dd1fb857da2862cb7752593cb6ea633b60e27000359bb57509d8f9837d +SIZE (xpi/thunderbird-i18n-45.5.0/ar.xpi) = 490775 +SHA256 (xpi/thunderbird-i18n-45.5.0/ast.xpi) = a014aa0c52c7750afa405cf021804c6a3372c006e5ed1790727cc6dbd67ff6c9 +SIZE (xpi/thunderbird-i18n-45.5.0/ast.xpi) = 428059 +SHA256 (xpi/thunderbird-i18n-45.5.0/be.xpi) = f82e2f29997cbafed143a799191fa36da2f5b668cb4fb58520f1ffaa74cc1e9a +SIZE (xpi/thunderbird-i18n-45.5.0/be.xpi) = 469096 +SHA256 (xpi/thunderbird-i18n-45.5.0/bg.xpi) = 060113942fa37ba88abb1994603fdbcfdcd1cf0ed7c377f700cb54b92f1874dd +SIZE (xpi/thunderbird-i18n-45.5.0/bg.xpi) = 524299 +SHA256 (xpi/thunderbird-i18n-45.5.0/bn-BD.xpi) = 90aaaec5db7fb76e71bb092d0619fc6180ba2ede00313f11a30f7e10d9208f4b +SIZE (xpi/thunderbird-i18n-45.5.0/bn-BD.xpi) = 581440 +SHA256 (xpi/thunderbird-i18n-45.5.0/br.xpi) = 21bfd87ff4b5949ab265862bc2c16aa7fdbf1dedd3f6f612a121eaee82cafaea +SIZE (xpi/thunderbird-i18n-45.5.0/br.xpi) = 466000 +SHA256 (xpi/thunderbird-i18n-45.5.0/ca.xpi) = 55a05d560d61d2f78360a1a6dfd0d3c8b8efae2a705b10857a3d43116e4734d3 +SIZE (xpi/thunderbird-i18n-45.5.0/ca.xpi) = 467980 +SHA256 (xpi/thunderbird-i18n-45.5.0/cs.xpi) = c19e34d7717e12a8b85e13fd97ee3e7eedf1a34445fe74e2b14044b5cc501112 +SIZE (xpi/thunderbird-i18n-45.5.0/cs.xpi) = 474327 +SHA256 (xpi/thunderbird-i18n-45.5.0/cy.xpi) = 94df5bc2301a0ee4b7e94cc198395dea0bee71f054d842c5aea4445528cecb4f +SIZE (xpi/thunderbird-i18n-45.5.0/cy.xpi) = 456120 +SHA256 (xpi/thunderbird-i18n-45.5.0/da.xpi) = 83337bc7a3caf67bfb5bdb0e397e5337b2bfa4c09b123a241d1dc90507871a43 +SIZE (xpi/thunderbird-i18n-45.5.0/da.xpi) = 445594 +SHA256 (xpi/thunderbird-i18n-45.5.0/de.xpi) = a7342c3019b174ed3dba7ef647eff0fcb55347312bb1d84b4effcda050513932 +SIZE (xpi/thunderbird-i18n-45.5.0/de.xpi) = 451956 +SHA256 (xpi/thunderbird-i18n-45.5.0/dsb.xpi) = 6e7f2ff1ed0b42f932ef36dc3350ec1757e3897cd662165c347e97bb1bcad565 +SIZE (xpi/thunderbird-i18n-45.5.0/dsb.xpi) = 481644 +SHA256 (xpi/thunderbird-i18n-45.5.0/el.xpi) = 352b2968890884ebecdfb70f77729b25b4a595375ba9acbf1f4f8ba8e5c8f111 +SIZE (xpi/thunderbird-i18n-45.5.0/el.xpi) = 514358 +SHA256 (xpi/thunderbird-i18n-45.5.0/en-GB.xpi) = b3b533015d9f5a2ecc417f7c5dbcebe15a1be6cbe2325ffff357e34e905b3682 +SIZE (xpi/thunderbird-i18n-45.5.0/en-GB.xpi) = 437603 +SHA256 (xpi/thunderbird-i18n-45.5.0/en-US.xpi) = 28ed8e10f19e1b55b6dbdd48d065dddecae4a557e71c20fc4681b9f2f2fb7541 +SIZE (xpi/thunderbird-i18n-45.5.0/en-US.xpi) = 435475 +SHA256 (xpi/thunderbird-i18n-45.5.0/es-AR.xpi) = 6e1c85dce2fd30b4b9555164f98837fb06262a4285510d5c4a9d5d5433359516 +SIZE (xpi/thunderbird-i18n-45.5.0/es-AR.xpi) = 464683 +SHA256 (xpi/thunderbird-i18n-45.5.0/es-ES.xpi) = 929478450eca54157a907698f1d10f70b773419fc7ba155c50627be62e7248e4 +SIZE (xpi/thunderbird-i18n-45.5.0/es-ES.xpi) = 388000 +SHA256 (xpi/thunderbird-i18n-45.5.0/et.xpi) = b2820d101d9abd1779d9abeac757a7a48a86f617ace163f0447eaa57bcde1cd2 +SIZE (xpi/thunderbird-i18n-45.5.0/et.xpi) = 458418 +SHA256 (xpi/thunderbird-i18n-45.5.0/eu.xpi) = dedfffc8f8ced2de5d5e4bc326e6dfe8d8b8e5d927cd3d468fc6c3345c92b9b7 +SIZE (xpi/thunderbird-i18n-45.5.0/eu.xpi) = 456707 +SHA256 (xpi/thunderbird-i18n-45.5.0/fi.xpi) = 26745f076f0f337d941082646b2555bf877d16c9deb8dd95d8d90ef5d33d5c21 +SIZE (xpi/thunderbird-i18n-45.5.0/fi.xpi) = 458335 +SHA256 (xpi/thunderbird-i18n-45.5.0/fr.xpi) = 39635b8a71e8183fe77ef13bf60b87077c223bd9da91345f8349be19f37be140 +SIZE (xpi/thunderbird-i18n-45.5.0/fr.xpi) = 475466 +SHA256 (xpi/thunderbird-i18n-45.5.0/fy-NL.xpi) = 545b747982cbfa2aebc0857ee627f60f4bc314a97a51f862e5961deb6ab2f7f5 +SIZE (xpi/thunderbird-i18n-45.5.0/fy-NL.xpi) = 464757 +SHA256 (xpi/thunderbird-i18n-45.5.0/ga-IE.xpi) = 637a1b7d1ac97b77b862e2ed804b8c381c8a8d38e92a586166d51bdacb8d8522 +SIZE (xpi/thunderbird-i18n-45.5.0/ga-IE.xpi) = 480317 +SHA256 (xpi/thunderbird-i18n-45.5.0/gd.xpi) = b633407bf67b877655b25ba1d73cc7cc0916d6b75b9f104ac9833f09e6d11678 +SIZE (xpi/thunderbird-i18n-45.5.0/gd.xpi) = 478296 +SHA256 (xpi/thunderbird-i18n-45.5.0/gl.xpi) = cdae0ffa3198b7c1439a83d942d2be123e8a01ed8944532456fd8a6f2d31eda3 +SIZE (xpi/thunderbird-i18n-45.5.0/gl.xpi) = 478580 +SHA256 (xpi/thunderbird-i18n-45.5.0/he.xpi) = 649c04fc00d6259819ad20106649f3f3c1bdccfaf0f02f2155dbe8c71b7efdda +SIZE (xpi/thunderbird-i18n-45.5.0/he.xpi) = 497962 +SHA256 (xpi/thunderbird-i18n-45.5.0/hr.xpi) = 6ee8423130698115e72bdb46e80fa9d91730e7de4c6175e710a63dc35006c376 +SIZE (xpi/thunderbird-i18n-45.5.0/hr.xpi) = 463959 +SHA256 (xpi/thunderbird-i18n-45.5.0/hu.xpi) = 3bb4e71c47f4bd69c7440cf48275770486257e402355f92d29643c1c76296398 +SIZE (xpi/thunderbird-i18n-45.5.0/hu.xpi) = 479583 +SHA256 (xpi/thunderbird-i18n-45.5.0/hsb.xpi) = 9a11c854cd2b67850532f76ec405f12e14980cf742429aa806de0ef3716ea895 +SIZE (xpi/thunderbird-i18n-45.5.0/hsb.xpi) = 479414 +SHA256 (xpi/thunderbird-i18n-45.5.0/hy-AM.xpi) = 4308efa5b06b1964c3ccbdf0ddecd005235ea43084a58e8d1cbc75d0b7ea94af +SIZE (xpi/thunderbird-i18n-45.5.0/hy-AM.xpi) = 518883 +SHA256 (xpi/thunderbird-i18n-45.5.0/id.xpi) = 39500f98291b84ec81d6e0e9dfd1d3880c610331e8c64e3338f02d81837a7bdd +SIZE (xpi/thunderbird-i18n-45.5.0/id.xpi) = 499982 +SHA256 (xpi/thunderbird-i18n-45.5.0/is.xpi) = dadde3ffc441aba7910ce97d26537311e23f4181ebf58da1b14712f85ac0ae94 +SIZE (xpi/thunderbird-i18n-45.5.0/is.xpi) = 462190 +SHA256 (xpi/thunderbird-i18n-45.5.0/it.xpi) = 9b1a073a493511ebe765ebe9227e464de4df87061cd2e1755bfa883055742a5a +SIZE (xpi/thunderbird-i18n-45.5.0/it.xpi) = 376889 +SHA256 (xpi/thunderbird-i18n-45.5.0/ja.xpi) = 2c2c09097f559fab4b88869cec1580c7f5c01b9e20eafaeff3036c97beb932fe +SIZE (xpi/thunderbird-i18n-45.5.0/ja.xpi) = 519552 +SHA256 (xpi/thunderbird-i18n-45.5.0/ko.xpi) = 2e4b5cd28f5f0a8d186e22528e33e5e7650e670ae234812547d41bec343bfb6a +SIZE (xpi/thunderbird-i18n-45.5.0/ko.xpi) = 487418 +SHA256 (xpi/thunderbird-i18n-45.5.0/lt.xpi) = 24e2c85be75e15855daac0470b417b9c81b1dce1007561800dcb66dd8763b092 +SIZE (xpi/thunderbird-i18n-45.5.0/lt.xpi) = 477735 +SHA256 (xpi/thunderbird-i18n-45.5.0/nb-NO.xpi) = ef7b32bef23f9ced34d45b366c2646ba6298b3ec14cc7742887c4841b580d17a +SIZE (xpi/thunderbird-i18n-45.5.0/nb-NO.xpi) = 460011 +SHA256 (xpi/thunderbird-i18n-45.5.0/nl.xpi) = c54b5ec86b35aba0867a423cd031229c11b173b48107912eadde83266998268a +SIZE (xpi/thunderbird-i18n-45.5.0/nl.xpi) = 456664 +SHA256 (xpi/thunderbird-i18n-45.5.0/nn-NO.xpi) = b7bac0f0ed551cccb7f36894e61ec935db21dfe99d9896234ecb6d00ef08cc36 +SIZE (xpi/thunderbird-i18n-45.5.0/nn-NO.xpi) = 460880 +SHA256 (xpi/thunderbird-i18n-45.5.0/pa-IN.xpi) = c672bb1f9fb70eb1b5342bc5b78717aacdad21a0d19e087c3c83c5ee955ff984 +SIZE (xpi/thunderbird-i18n-45.5.0/pa-IN.xpi) = 551068 +SHA256 (xpi/thunderbird-i18n-45.5.0/pl.xpi) = daddde1dc789a1a451f0ef4dc5b8f2c1f6a31df12a360f285dbc8ad1e587bc36 +SIZE (xpi/thunderbird-i18n-45.5.0/pl.xpi) = 423867 +SHA256 (xpi/thunderbird-i18n-45.5.0/pt-BR.xpi) = 3018cc64cf7506e69b006a87f3f818ee3ce394de5c030a5a03fc82e0bd9ba6ae +SIZE (xpi/thunderbird-i18n-45.5.0/pt-BR.xpi) = 464682 +SHA256 (xpi/thunderbird-i18n-45.5.0/pt-PT.xpi) = 4b95ff7033e22cf33e80d37b76ba49beee8cd171912e7a69cd8486519a300cdb +SIZE (xpi/thunderbird-i18n-45.5.0/pt-PT.xpi) = 463751 +SHA256 (xpi/thunderbird-i18n-45.5.0/rm.xpi) = 66f00cdd771d825c06f92d1766c705f0a72337538de48fd5f9bba80c5e12bbd0 +SIZE (xpi/thunderbird-i18n-45.5.0/rm.xpi) = 462650 +SHA256 (xpi/thunderbird-i18n-45.5.0/ro.xpi) = 13207aaa727ce3fbf35b282fb69231ee1e0bae0ccea7a56f8588d1e5df12fe7d +SIZE (xpi/thunderbird-i18n-45.5.0/ro.xpi) = 468518 +SHA256 (xpi/thunderbird-i18n-45.5.0/ru.xpi) = 7e01a6b6395d7d1815b1260421b82b7b901c6318db4178342a8229ebd008d935 +SIZE (xpi/thunderbird-i18n-45.5.0/ru.xpi) = 463891 +SHA256 (xpi/thunderbird-i18n-45.5.0/si.xpi) = 03bb1b1959401ac6726caf3d7442e1f38ae1d8495b64cddbbd2f6c59437fc4ed +SIZE (xpi/thunderbird-i18n-45.5.0/si.xpi) = 555995 +SHA256 (xpi/thunderbird-i18n-45.5.0/sk.xpi) = 2f116dd7a8d87b575da007dc3dd99fb5b4f7ef1ca00feb46c570803e0d6b9a53 +SIZE (xpi/thunderbird-i18n-45.5.0/sk.xpi) = 481492 +SHA256 (xpi/thunderbird-i18n-45.5.0/sl.xpi) = 0b1a9a82cea99db266d0d20fe433775de8234ef08feb093205706b59feb8b2eb +SIZE (xpi/thunderbird-i18n-45.5.0/sl.xpi) = 462781 +SHA256 (xpi/thunderbird-i18n-45.5.0/sq.xpi) = de5dac529a7271b012826ba59cb1cf46319293c2defdcd51922f636a6e630a85 +SIZE (xpi/thunderbird-i18n-45.5.0/sq.xpi) = 469535 +SHA256 (xpi/thunderbird-i18n-45.5.0/sr.xpi) = 965e8dc6a6b96d991c521793db7957c76feab3b27667e46a3849639e38096906 +SIZE (xpi/thunderbird-i18n-45.5.0/sr.xpi) = 565466 +SHA256 (xpi/thunderbird-i18n-45.5.0/sv-SE.xpi) = 4ab6b4c523c2143ec72b15a6afbd5e326d67a212ef7f8e89ca605c9683cb1f78 +SIZE (xpi/thunderbird-i18n-45.5.0/sv-SE.xpi) = 465434 +SHA256 (xpi/thunderbird-i18n-45.5.0/ta-LK.xpi) = 7229c04541aa23c96a66af4f06e6deae8fb9b101f4153c1cc029916a64733514 +SIZE (xpi/thunderbird-i18n-45.5.0/ta-LK.xpi) = 579218 +SHA256 (xpi/thunderbird-i18n-45.5.0/tr.xpi) = aa94327b95f7ad0ec5bf89cf7ad083cebd6fa43b13ce03eb0a33532acca65d2b +SIZE (xpi/thunderbird-i18n-45.5.0/tr.xpi) = 467622 +SHA256 (xpi/thunderbird-i18n-45.5.0/uk.xpi) = 4359a54010c18b807a3cf46e8eee122e10b9ebb4d8ce810a7211060360725769 +SIZE (xpi/thunderbird-i18n-45.5.0/uk.xpi) = 536438 +SHA256 (xpi/thunderbird-i18n-45.5.0/vi.xpi) = 156b5944845979e73f7e9051f6afc2cdd5a8d9b106007fa558171b849aba99b0 +SIZE (xpi/thunderbird-i18n-45.5.0/vi.xpi) = 540498 +SHA256 (xpi/thunderbird-i18n-45.5.0/zh-CN.xpi) = f54fc5439f39ca8ede17beddbc44f3f2ee25bcb1db0c0b3a1f4084a157b5cc2a +SIZE (xpi/thunderbird-i18n-45.5.0/zh-CN.xpi) = 489209 +SHA256 (xpi/thunderbird-i18n-45.5.0/zh-TW.xpi) = 52c05b5064eec0d91fca90c5007454d0bf4225f45c6833a93b892c0592b4ada3 +SIZE (xpi/thunderbird-i18n-45.5.0/zh-TW.xpi) = 490850 Modified: branches/2016Q4/mail/thunderbird/Makefile ============================================================================== --- branches/2016Q4/mail/thunderbird/Makefile Tue Nov 22 18:13:50 2016 (r426835) +++ branches/2016Q4/mail/thunderbird/Makefile Tue Nov 22 18:17:21 2016 (r426836) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 45.4.0 -PORTREVISION= 1 +DISTVERSION= 45.5.0 +PORTREVISION= 0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -31,8 +31,8 @@ BUILD_DEPENDS= nspr>=4.12:devel/nspr \ LIB_DEPENDS= libv4l2.so:multimedia/libv4l -EM_VERSION= 1.9.5 -L_VERSION= 4.7.4 +EM_VERSION= 1.9.6.1 +L_VERSION= 4.7.5 SSP_UNSAFE= yes USE_GECKO= gecko Modified: branches/2016Q4/mail/thunderbird/distinfo ============================================================================== --- branches/2016Q4/mail/thunderbird/distinfo Tue Nov 22 18:13:50 2016 (r426835) +++ branches/2016Q4/mail/thunderbird/distinfo Tue Nov 22 18:17:21 2016 (r426836) @@ -1,5 +1,5 @@ -TIMESTAMP = 1475317656 -SHA256 (thunderbird-45.4.0.source.tar.xz) = 36f66edbb9b0f1ff9d0de8f12eab6cccbfa23db79e01db307fb2186904a38e61 -SIZE (thunderbird-45.4.0.source.tar.xz) = 201094212 -SHA256 (enigmail-1.9.5.tar.gz) = 831e53a4add0f465241f075be9475103367aa1452675adae054d8fb272e5d3ad -SIZE (enigmail-1.9.5.tar.gz) = 1744278 +TIMESTAMP = 1479487203 +SHA256 (thunderbird-45.5.0.source.tar.xz) = 9571dee75d14cab3533e09599b2c183624f159cf8ae623f01ca6dc69eb846082 +SIZE (thunderbird-45.5.0.source.tar.xz) = 201122644 +SHA256 (enigmail-1.9.6.1.tar.gz) = 3874331e981aed864443d3c965d856e003fd84f73e5a89fd5004ced9dc29b96f +SIZE (enigmail-1.9.6.1.tar.gz) = 1745021 From owner-svn-ports-branches@freebsd.org Wed Nov 23 11:25: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 8F7A8C50F16; Wed, 23 Nov 2016 11:25:54 +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 6129AD2; Wed, 23 Nov 2016 11:25:54 +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 uANBPrj9093555; Wed, 23 Nov 2016 11:25:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANBPrNw093553; Wed, 23 Nov 2016 11:25:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201611231125.uANBPrNw093553@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 23 Nov 2016 11:25:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426894 - branches/2016Q4/games/teeworlds 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 11:25:54 -0000 Author: amdmi3 Date: Wed Nov 23 11:25:53 2016 New Revision: 426894 URL: https://svnweb.freebsd.org/changeset/ports/426894 Log: MFH: r426731 - Update to 0.6.4 Approved by: ports-secteam (feld) Modified: branches/2016Q4/games/teeworlds/Makefile branches/2016Q4/games/teeworlds/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/games/teeworlds/Makefile ============================================================================== --- branches/2016Q4/games/teeworlds/Makefile Wed Nov 23 11:11:27 2016 (r426893) +++ branches/2016Q4/games/teeworlds/Makefile Wed Nov 23 11:25:53 2016 (r426894) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= teeworlds -PORTVERSION= 0.6.3 +PORTVERSION= 0.6.4 CATEGORIES= games MASTER_SITES= https://downloads.teeworlds.com/ \ http://mirror.amdmi3.ru/distfiles/ @@ -24,7 +24,7 @@ BAM_WRKSRC= ${WRKDIR}/bam-${BAM_VERSION} BAM_TARGET= release USE_GCC= any -PLIST_FILES+= bin/${PORTNAME}_srv +PLIST_FILES= bin/${PORTNAME}_srv PORTDATA= * OPTIONS_DEFINE= SERVER_ONLY Modified: branches/2016Q4/games/teeworlds/distinfo ============================================================================== --- branches/2016Q4/games/teeworlds/distinfo Wed Nov 23 11:11:27 2016 (r426893) +++ branches/2016Q4/games/teeworlds/distinfo Wed Nov 23 11:25:53 2016 (r426894) @@ -1,5 +1,5 @@ -TIMESTAMP = 1473635828 -SHA256 (teeworlds-0.6.3-src.tar.gz) = 490ee7c372898761c609af8d7b0c6bd55942c6c6fcd7f361eefa00abfc70077b -SIZE (teeworlds-0.6.3-src.tar.gz) = 13101446 +TIMESTAMP = 1478890194 +SHA256 (teeworlds-0.6.4-src.tar.gz) = 7815787035a8e2ea83a0b3b08cf862e6af59b78071a268f985b1e76b387f7257 +SIZE (teeworlds-0.6.4-src.tar.gz) = 9084190 SHA256 (bam-0.4.0.tar.gz) = 5e4e4920b4d265da582f66774e9b1ec8ddfbe75ddc028fba86c12f686ea18db3 SIZE (bam-0.4.0.tar.gz) = 206780 From owner-svn-ports-branches@freebsd.org Wed Nov 23 11:30:01 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 7E0FBC50FBE; Wed, 23 Nov 2016 11:30:01 +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 4FD1B214; Wed, 23 Nov 2016 11:30:01 +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 uANBU0BN093896; Wed, 23 Nov 2016 11:30:00 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANBU0V5093894; Wed, 23 Nov 2016 11:30:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201611231130.uANBU0V5093894@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 23 Nov 2016 11:30:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426895 - branches/2016Q4/games/teeworlds 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 11:30:01 -0000 Author: amdmi3 Date: Wed Nov 23 11:30:00 2016 New Revision: 426895 URL: https://svnweb.freebsd.org/changeset/ports/426895 Log: MFH: r426890 - Fix fetch: distfile was rerolled - Difference is only removal of generated files (object files and python cache) Approved by: ports-secteam blanket Modified: branches/2016Q4/games/teeworlds/Makefile branches/2016Q4/games/teeworlds/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/games/teeworlds/Makefile ============================================================================== --- branches/2016Q4/games/teeworlds/Makefile Wed Nov 23 11:25:53 2016 (r426894) +++ branches/2016Q4/games/teeworlds/Makefile Wed Nov 23 11:30:00 2016 (r426895) @@ -3,6 +3,7 @@ PORTNAME= teeworlds PORTVERSION= 0.6.4 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= https://downloads.teeworlds.com/ \ http://mirror.amdmi3.ru/distfiles/ Modified: branches/2016Q4/games/teeworlds/distinfo ============================================================================== --- branches/2016Q4/games/teeworlds/distinfo Wed Nov 23 11:25:53 2016 (r426894) +++ branches/2016Q4/games/teeworlds/distinfo Wed Nov 23 11:30:00 2016 (r426895) @@ -1,5 +1,5 @@ -TIMESTAMP = 1478890194 -SHA256 (teeworlds-0.6.4-src.tar.gz) = 7815787035a8e2ea83a0b3b08cf862e6af59b78071a268f985b1e76b387f7257 -SIZE (teeworlds-0.6.4-src.tar.gz) = 9084190 +TIMESTAMP = 1479896827 +SHA256 (teeworlds-0.6.4-src.tar.gz) = c261d19ebb00b5451faa2ceb4a7ca945cad2add48b06046eb43b40ccc9fd98e2 +SIZE (teeworlds-0.6.4-src.tar.gz) = 8771622 SHA256 (bam-0.4.0.tar.gz) = 5e4e4920b4d265da582f66774e9b1ec8ddfbe75ddc028fba86c12f686ea18db3 SIZE (bam-0.4.0.tar.gz) = 206780 From owner-svn-ports-branches@freebsd.org Wed Nov 23 15:09:50 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 8926DC519B1; Wed, 23 Nov 2016 15:09:50 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3EC169B1; Wed, 23 Nov 2016 15:09:50 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uANF9n4W093592; Wed, 23 Nov 2016 15:09:49 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANF9nfI093589; Wed, 23 Nov 2016 15:09:49 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201611231509.uANF9nfI093589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Wed, 23 Nov 2016 15:09:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426935 - branches/2016Q4/www/serendipity 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 15:09:50 -0000 Author: tz Date: Wed Nov 23 15:09:48 2016 New Revision: 426935 URL: https://svnweb.freebsd.org/changeset/ports/426935 Log: MFH: r426732 www/serendipity: Upgrade from 2.0.2 to 2.0.4 - https://blog.s9y.org/archives/269-Serendipity-2.0.4-and-2.1-beta2-released.html - https://blog.s9y.org/archives/266-Serendipity-2.0.3-released.html PR: 213968 Submitted by: Jochen Neumeister Approved by: ports-secteam (feld) Modified: branches/2016Q4/www/serendipity/Makefile branches/2016Q4/www/serendipity/distinfo branches/2016Q4/www/serendipity/pkg-plist Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/www/serendipity/Makefile ============================================================================== --- branches/2016Q4/www/serendipity/Makefile Wed Nov 23 15:04:41 2016 (r426934) +++ branches/2016Q4/www/serendipity/Makefile Wed Nov 23 15:09:48 2016 (r426935) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= serendipity -PORTVERSION= 2.0.2 +PORTVERSION= 2.0.4 CATEGORIES= www MASTER_SITES= SF/php-blog/${PORTNAME}/${PORTVERSION} Modified: branches/2016Q4/www/serendipity/distinfo ============================================================================== --- branches/2016Q4/www/serendipity/distinfo Wed Nov 23 15:04:41 2016 (r426934) +++ branches/2016Q4/www/serendipity/distinfo Wed Nov 23 15:09:48 2016 (r426935) @@ -1,2 +1,3 @@ -SHA256 (serendipity-2.0.2.tar.bz2) = 115e7c9779fe49a8f6f183184457cdce94932561d99f0ec67ac8eb40ba7f29a3 -SIZE (serendipity-2.0.2.tar.bz2) = 4932785 +TIMESTAMP = 1477987974 +SHA256 (serendipity-2.0.4.tar.bz2) = 471c9573e695340cf3bc0312607401381f1881c128131f72b64b555a185be091 +SIZE (serendipity-2.0.4.tar.bz2) = 4923751 Modified: branches/2016Q4/www/serendipity/pkg-plist ============================================================================== --- branches/2016Q4/www/serendipity/pkg-plist Wed Nov 23 15:04:41 2016 (r426934) +++ branches/2016Q4/www/serendipity/pkg-plist Wed Nov 23 15:09:48 2016 (r426935) @@ -2158,6 +2158,7 @@ %%WWWDIR%%/templates/2k11/admin/entries.inc.tpl %%WWWDIR%%/templates/2k11/admin/entries.tpl %%WWWDIR%%/templates/2k11/admin/entries_overview.inc.tpl +%%WWWDIR%%/templates/2k11/admin/font/config.json %%WWWDIR%%/templates/2k11/admin/font/fontello.eot %%WWWDIR%%/templates/2k11/admin/font/fontello.svg %%WWWDIR%%/templates/2k11/admin/font/fontello.ttf From owner-svn-ports-branches@freebsd.org Wed Nov 23 15:14:18 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19579C51B1D; Wed, 23 Nov 2016 15:14:18 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA47CD3F; Wed, 23 Nov 2016 15:14:17 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uANFEHYY097607; Wed, 23 Nov 2016 15:14:17 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANFEGSk097605; Wed, 23 Nov 2016 15:14:16 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201611231514.uANFEGSk097605@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Wed, 23 Nov 2016 15:14:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426936 - branches/2016Q4/lang/php70 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 15:14:18 -0000 Author: tz Date: Wed Nov 23 15:14:16 2016 New Revision: 426936 URL: https://svnweb.freebsd.org/changeset/ports/426936 Log: MFH: r426243 Update PHP 7 from 7.0.12 to 7.0.13 Changes: http://www.php.net/ChangeLog-7.php#7.0.13 Approved by: pi (mentor) Approved by: ports-secteam (feld) Modified: branches/2016Q4/lang/php70/Makefile branches/2016Q4/lang/php70/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/lang/php70/Makefile ============================================================================== --- branches/2016Q4/lang/php70/Makefile Wed Nov 23 15:09:48 2016 (r426935) +++ branches/2016Q4/lang/php70/Makefile Wed Nov 23 15:14:16 2016 (r426936) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php70 -PORTVERSION= 7.0.12 +PORTVERSION= 7.0.13 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: branches/2016Q4/lang/php70/distinfo ============================================================================== --- branches/2016Q4/lang/php70/distinfo Wed Nov 23 15:09:48 2016 (r426935) +++ branches/2016Q4/lang/php70/distinfo Wed Nov 23 15:14:16 2016 (r426936) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476438518 -SHA256 (php-7.0.12.tar.xz) = f3d6c49e1c242e5995dec15e503fde996c327eb86cd7ec45c690e93c971b83ff -SIZE (php-7.0.12.tar.xz) = 12520004 +TIMESTAMP = 1479305486 +SHA256 (php-7.0.13.tar.xz) = 357ba7f93975d7d836abed0852dc3ed96a988af539e87750613294cbee82f1bf +SIZE (php-7.0.13.tar.xz) = 12528816 From owner-svn-ports-branches@freebsd.org Wed Nov 23 18:12: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 A541AC51689; Wed, 23 Nov 2016 18:12:20 +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 57F80FB0; Wed, 23 Nov 2016 18:12:20 +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 uANICJbL071079; Wed, 23 Nov 2016 18:12:19 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANICJEo071076; Wed, 23 Nov 2016 18:12:19 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201611231812.uANICJEo071076@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 23 Nov 2016 18:12:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426947 - in branches/2016Q4/x11-themes: kde-icons-dark-glass kde-icons-icosx kde-icons-umicons 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 18:12:20 -0000 Author: antoine Date: Wed Nov 23 18:12:19 2016 New Revision: 426947 URL: https://svnweb.freebsd.org/changeset/ports/426947 Log: MFH: r426163 r426164 r426165 - Mark BROKEN: does not fetch Modified: branches/2016Q4/x11-themes/kde-icons-dark-glass/Makefile branches/2016Q4/x11-themes/kde-icons-icosx/Makefile branches/2016Q4/x11-themes/kde-icons-umicons/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/x11-themes/kde-icons-dark-glass/Makefile ============================================================================== --- branches/2016Q4/x11-themes/kde-icons-dark-glass/Makefile Wed Nov 23 17:33:39 2016 (r426946) +++ branches/2016Q4/x11-themes/kde-icons-dark-glass/Makefile Wed Nov 23 18:12:19 2016 (r426947) @@ -10,6 +10,8 @@ DISTNAME= DarkGlass_Reworked COMMENT= KDE Dark Glass iconset +BROKEN= does not fetch + PLIST_FILE_PATTERN_EXTRA= -v "^\./(buildset|README)" .include "${.CURDIR}/../kde-icons-noia/Makefile.icons" Modified: branches/2016Q4/x11-themes/kde-icons-icosx/Makefile ============================================================================== --- branches/2016Q4/x11-themes/kde-icons-icosx/Makefile Wed Nov 23 17:33:39 2016 (r426946) +++ branches/2016Q4/x11-themes/kde-icons-icosx/Makefile Wed Nov 23 18:12:19 2016 (r426947) @@ -10,6 +10,8 @@ MASTER_SITES= http://physics.ramapo.edu/ COMMENT= KDE IcOsX iconset +BROKEN= does not fetch + WRKSRC= ${WRKDIR}/${PORTNAME} PORT_SHAREDIR?= "${PORTNAME}-${PORTVERSION}" Modified: branches/2016Q4/x11-themes/kde-icons-umicons/Makefile ============================================================================== --- branches/2016Q4/x11-themes/kde-icons-umicons/Makefile Wed Nov 23 17:33:39 2016 (r426946) +++ branches/2016Q4/x11-themes/kde-icons-umicons/Makefile Wed Nov 23 18:12:19 2016 (r426947) @@ -11,6 +11,8 @@ EXTRACT_SUFX= .gz COMMENT= KDE Umicons iconset +BROKEN= does not fetch + WRKSRC= ${WRKDIR}/Umicons_${PORTVERSION} PORT_SHAREDIR?= "${PORTNAME}-${PORTVERSION}" From owner-svn-ports-branches@freebsd.org Wed Nov 23 20:39: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 28663C51911; Wed, 23 Nov 2016 20:39:35 +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 A5E2FB62; Wed, 23 Nov 2016 20:39:34 +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 uANKdXtF037627; Wed, 23 Nov 2016 20:39:33 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANKdXKH037620; Wed, 23 Nov 2016 20:39:33 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201611232039.uANKdXKH037620@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Wed, 23 Nov 2016 20:39:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426975 - in branches/2016Q4/www/chromium: . 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 20:39:35 -0000 Author: rene Date: Wed Nov 23 20:39:33 2016 New Revision: 426975 URL: https://svnweb.freebsd.org/changeset/ports/426975 Log: MFH: r426855 www/chromium: update to 54.0.2840.100 Submitted by: clutton Reviewed by: cpm, rene Obtained from: https://github.com/paranormal/ Security: https://vuxml.freebsd.org/freebsd/769ba449-79e1-11e6-bf75-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/653a8059-7c49-11e6-9242-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/9c135c7e-9fa4-11e6-a265-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/9118961b-9fa5-11e6-a265-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/ae9cb9b8-a203-11e6-a265-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/a3473f5a-a739-11e6-afaa-e8e0b747a45a.html Differential Revision: https://reviews.freebsd.org/D8517 Approved by: ports-secteam (feld) Added: branches/2016Q4/www/chromium/files/extra-patch-10 - copied unchanged from r426855, head/www/chromium/files/extra-patch-10 branches/2016Q4/www/chromium/files/patch-BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-BUILD.gn branches/2016Q4/www/chromium/files/patch-base_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-base_BUILD.gn branches/2016Q4/www/chromium/files/patch-base_allocator_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-base_allocator_BUILD.gn branches/2016Q4/www/chromium/files/patch-base_allocator_allocator__shim__default__dispatch__to__glibc.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_allocator_allocator__shim__default__dispatch__to__glibc.cc branches/2016Q4/www/chromium/files/patch-base_allocator_allocator__shim__override__libc__symbols.h - copied unchanged from r426855, head/www/chromium/files/patch-base_allocator_allocator__shim__override__libc__symbols.h branches/2016Q4/www/chromium/files/patch-base_allocator_allocator__shim__unittest.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_allocator_allocator__shim__unittest.cc branches/2016Q4/www/chromium/files/patch-base_debug_proc__maps__linux.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_debug_proc__maps__linux.cc branches/2016Q4/www/chromium/files/patch-base_files_file__path__unittest.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_files_file__path__unittest.cc branches/2016Q4/www/chromium/files/patch-base_files_file__util.h - copied unchanged from r426855, head/www/chromium/files/patch-base_files_file__util.h branches/2016Q4/www/chromium/files/patch-base_linux__util.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_linux__util.cc branches/2016Q4/www/chromium/files/patch-base_native__library__posix.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_native__library__posix.cc branches/2016Q4/www/chromium/files/patch-base_process_launch__posix.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_process_launch__posix.cc branches/2016Q4/www/chromium/files/patch-base_process_memory.h - copied unchanged from r426855, head/www/chromium/files/patch-base_process_memory.h branches/2016Q4/www/chromium/files/patch-base_process_process__handle__freebsd.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_process_process__handle__freebsd.cc branches/2016Q4/www/chromium/files/patch-base_profiler_stack__sampling__profiler__unittest.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_profiler_stack__sampling__profiler__unittest.cc branches/2016Q4/www/chromium/files/patch-base_test_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-base_test_BUILD.gn branches/2016Q4/www/chromium/files/patch-base_test_test__file__util__posix.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_test_test__file__util__posix.cc branches/2016Q4/www/chromium/files/patch-base_third__party_libevent_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-base_third__party_libevent_BUILD.gn branches/2016Q4/www/chromium/files/patch-base_trace__event_malloc__dump__provider.cc - copied unchanged from r426855, head/www/chromium/files/patch-base_trace__event_malloc__dump__provider.cc branches/2016Q4/www/chromium/files/patch-breakpad_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-breakpad_BUILD.gn branches/2016Q4/www/chromium/files/patch-build_config_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-build_config_BUILD.gn branches/2016Q4/www/chromium/files/patch-build_config_BUILDCONFIG.gn - copied unchanged from r426855, head/www/chromium/files/patch-build_config_BUILDCONFIG.gn branches/2016Q4/www/chromium/files/patch-build_config_allocator.gni - copied unchanged from r426855, head/www/chromium/files/patch-build_config_allocator.gni branches/2016Q4/www/chromium/files/patch-build_config_clang_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-build_config_clang_BUILD.gn branches/2016Q4/www/chromium/files/patch-build_config_compiler_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-build_config_compiler_BUILD.gn branches/2016Q4/www/chromium/files/patch-build_config_crypto.gni - copied unchanged from r426855, head/www/chromium/files/patch-build_config_crypto.gni branches/2016Q4/www/chromium/files/patch-build_config_features.gni - copied unchanged from r426855, head/www/chromium/files/patch-build_config_features.gni branches/2016Q4/www/chromium/files/patch-build_config_linux_gtk2_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-build_config_linux_gtk2_BUILD.gn branches/2016Q4/www/chromium/files/patch-build_config_linux_gtk3_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-build_config_linux_gtk3_BUILD.gn branches/2016Q4/www/chromium/files/patch-build_config_linux_pkg-config.py - copied unchanged from r426855, head/www/chromium/files/patch-build_config_linux_pkg-config.py branches/2016Q4/www/chromium/files/patch-build_config_sanitizers_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-build_config_sanitizers_BUILD.gn branches/2016Q4/www/chromium/files/patch-build_config_sanitizers_sanitizers.gni - copied unchanged from r426855, head/www/chromium/files/patch-build_config_sanitizers_sanitizers.gni branches/2016Q4/www/chromium/files/patch-build_config_ui.gni - copied unchanged from r426855, head/www/chromium/files/patch-build_config_ui.gni branches/2016Q4/www/chromium/files/patch-build_linux_libpci_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-build_linux_libpci_BUILD.gn branches/2016Q4/www/chromium/files/patch-build_secondary_third__party_nss_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-build_secondary_third__party_nss_BUILD.gn branches/2016Q4/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni - copied unchanged from r426855, head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni branches/2016Q4/www/chromium/files/patch-build_toolchain_get__concurrent__links.py - copied unchanged from r426855, head/www/chromium/files/patch-build_toolchain_get__concurrent__links.py branches/2016Q4/www/chromium/files/patch-chrome_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chrome_BUILD.gn branches/2016Q4/www/chromium/files/patch-chrome_app_chrome__command__ids.h - copied unchanged from r426855, head/www/chromium/files/patch-chrome_app_chrome__command__ids.h branches/2016Q4/www/chromium/files/patch-chrome_browser_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chrome_browser_BUILD.gn branches/2016Q4/www/chromium/files/patch-chrome_browser_browser__process__impl.cc - copied unchanged from r426855, head/www/chromium/files/patch-chrome_browser_browser__process__impl.cc branches/2016Q4/www/chromium/files/patch-chrome_browser_browser__process__impl.h - copied unchanged from r426855, head/www/chromium/files/patch-chrome_browser_browser__process__impl.h branches/2016Q4/www/chromium/files/patch-chrome_browser_extensions_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chrome_browser_extensions_BUILD.gn branches/2016Q4/www/chromium/files/patch-chrome_browser_resources_safe__browsing_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chrome_browser_resources_safe__browsing_BUILD.gn branches/2016Q4/www/chromium/files/patch-chrome_browser_safe__browsing_permission__reporter.cc - copied unchanged from r426855, head/www/chromium/files/patch-chrome_browser_safe__browsing_permission__reporter.cc branches/2016Q4/www/chromium/files/patch-chrome_browser_ui_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chrome_browser_ui_BUILD.gn branches/2016Q4/www/chromium/files/patch-chrome_browser_ui_libgtk2ui_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chrome_browser_ui_libgtk2ui_BUILD.gn branches/2016Q4/www/chromium/files/patch-chrome_common_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chrome_common_BUILD.gn branches/2016Q4/www/chromium/files/patch-chrome_common_extensions_api_schemas.gni - copied unchanged from r426855, head/www/chromium/files/patch-chrome_common_extensions_api_schemas.gni branches/2016Q4/www/chromium/files/patch-chrome_common_features.gni - copied unchanged from r426855, head/www/chromium/files/patch-chrome_common_features.gni branches/2016Q4/www/chromium/files/patch-chrome_common_variations_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chrome_common_variations_BUILD.gn branches/2016Q4/www/chromium/files/patch-chrome_test_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chrome_test_BUILD.gn branches/2016Q4/www/chromium/files/patch-chromecast_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chromecast_BUILD.gn branches/2016Q4/www/chromium/files/patch-chromecast_browser_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chromecast_browser_BUILD.gn branches/2016Q4/www/chromium/files/patch-chromecast_browser_metrics_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chromecast_browser_metrics_BUILD.gn branches/2016Q4/www/chromium/files/patch-chromecast_crash_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-chromecast_crash_BUILD.gn branches/2016Q4/www/chromium/files/patch-components_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-components_BUILD.gn branches/2016Q4/www/chromium/files/patch-components_content__settings_core_browser_website__settings__registry.cc - copied unchanged from r426855, head/www/chromium/files/patch-components_content__settings_core_browser_website__settings__registry.cc branches/2016Q4/www/chromium/files/patch-components_content__settings_core_browser_website__settings__registry.h - copied unchanged from r426855, head/www/chromium/files/patch-components_content__settings_core_browser_website__settings__registry.h branches/2016Q4/www/chromium/files/patch-components_crash_content_app_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-components_crash_content_app_BUILD.gn branches/2016Q4/www/chromium/files/patch-components_crash_content_browser_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-components_crash_content_browser_BUILD.gn branches/2016Q4/www/chromium/files/patch-components_gcm__driver_gcm__client.h - copied unchanged from r426855, head/www/chromium/files/patch-components_gcm__driver_gcm__client.h branches/2016Q4/www/chromium/files/patch-components_gcm__driver_gcm__client__impl.cc - copied unchanged from r426855, head/www/chromium/files/patch-components_gcm__driver_gcm__client__impl.cc branches/2016Q4/www/chromium/files/patch-components_metrics_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-components_metrics_BUILD.gn branches/2016Q4/www/chromium/files/patch-components_os__crypt_os__crypt.h - copied unchanged from r426855, head/www/chromium/files/patch-components_os__crypt_os__crypt.h branches/2016Q4/www/chromium/files/patch-components_plugins_renderer_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-components_plugins_renderer_BUILD.gn branches/2016Q4/www/chromium/files/patch-components_policy_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-components_policy_BUILD.gn branches/2016Q4/www/chromium/files/patch-components_storage__monitor_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-components_storage__monitor_BUILD.gn branches/2016Q4/www/chromium/files/patch-components_sync_base_get__session__name__linux.cc - copied unchanged from r426855, head/www/chromium/files/patch-components_sync_base_get__session__name__linux.cc branches/2016Q4/www/chromium/files/patch-components_variations_proto_study.proto - copied unchanged from r426855, head/www/chromium/files/patch-components_variations_proto_study.proto branches/2016Q4/www/chromium/files/patch-content_app_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-content_app_BUILD.gn branches/2016Q4/www/chromium/files/patch-content_browser_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-content_browser_BUILD.gn branches/2016Q4/www/chromium/files/patch-content_browser_device__sensors_data__fetcher__shared__memory.h - copied unchanged from r426855, head/www/chromium/files/patch-content_browser_device__sensors_data__fetcher__shared__memory.h branches/2016Q4/www/chromium/files/patch-content_browser_devtools_protocol_color__picker.cc - copied unchanged from r426855, head/www/chromium/files/patch-content_browser_devtools_protocol_color__picker.cc branches/2016Q4/www/chromium/files/patch-content_browser_gpu_gpu__data__manager__impl__private.h - copied unchanged from r426855, head/www/chromium/files/patch-content_browser_gpu_gpu__data__manager__impl__private.h branches/2016Q4/www/chromium/files/patch-content_browser_gpu_gpu__process__host.cc - copied unchanged from r426855, head/www/chromium/files/patch-content_browser_gpu_gpu__process__host.cc branches/2016Q4/www/chromium/files/patch-content_browser_media_media__internals.cc - copied unchanged from r426855, head/www/chromium/files/patch-content_browser_media_media__internals.cc branches/2016Q4/www/chromium/files/patch-content_browser_renderer__host_media_video__capture__device__client.cc - copied unchanged from r426855, head/www/chromium/files/patch-content_browser_renderer__host_media_video__capture__device__client.cc branches/2016Q4/www/chromium/files/patch-content_browser_tracing_tracing__controller__impl.cc - copied unchanged from r426855, head/www/chromium/files/patch-content_browser_tracing_tracing__controller__impl.cc branches/2016Q4/www/chromium/files/patch-content_common_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-content_common_BUILD.gn branches/2016Q4/www/chromium/files/patch-content_gpu_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-content_gpu_BUILD.gn branches/2016Q4/www/chromium/files/patch-content_public_common_child__process__host.h - copied unchanged from r426855, head/www/chromium/files/patch-content_public_common_child__process__host.h branches/2016Q4/www/chromium/files/patch-content_shell_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-content_shell_BUILD.gn branches/2016Q4/www/chromium/files/patch-content_test_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-content_test_BUILD.gn branches/2016Q4/www/chromium/files/patch-device_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-device_BUILD.gn branches/2016Q4/www/chromium/files/patch-device_battery_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-device_battery_BUILD.gn branches/2016Q4/www/chromium/files/patch-device_geolocation_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-device_geolocation_BUILD.gn branches/2016Q4/www/chromium/files/patch-device_geolocation_location__arbitrator__impl.cc - copied unchanged from r426855, head/www/chromium/files/patch-device_geolocation_location__arbitrator__impl.cc branches/2016Q4/www/chromium/files/patch-device_hid_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-device_hid_BUILD.gn branches/2016Q4/www/chromium/files/patch-device_media__transfer__protocol_media__transfer__protocol__manager.h - copied unchanged from r426855, head/www/chromium/files/patch-device_media__transfer__protocol_media__transfer__protocol__manager.h branches/2016Q4/www/chromium/files/patch-device_serial_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-device_serial_BUILD.gn branches/2016Q4/www/chromium/files/patch-extensions_browser_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-extensions_browser_BUILD.gn branches/2016Q4/www/chromium/files/patch-gpu_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-gpu_BUILD.gn branches/2016Q4/www/chromium/files/patch-gpu_config_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-gpu_config_BUILD.gn branches/2016Q4/www/chromium/files/patch-gpu_gles2__conform__support_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-gpu_gles2__conform__support_BUILD.gn branches/2016Q4/www/chromium/files/patch-gpu_gles2__conform__support_native_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-gpu_gles2__conform__support_native_BUILD.gn branches/2016Q4/www/chromium/files/patch-gpu_ipc_client_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-gpu_ipc_client_BUILD.gn branches/2016Q4/www/chromium/files/patch-gpu_ipc_service_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-gpu_ipc_service_BUILD.gn branches/2016Q4/www/chromium/files/patch-gpu_tools_compositor__model__bench_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-gpu_tools_compositor__model__bench_BUILD.gn branches/2016Q4/www/chromium/files/patch-gpu_vulkan_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-gpu_vulkan_BUILD.gn branches/2016Q4/www/chromium/files/patch-ipc_ipc__channel.h - copied unchanged from r426855, head/www/chromium/files/patch-ipc_ipc__channel.h branches/2016Q4/www/chromium/files/patch-ipc_ipc__channel__posix.cc - copied unchanged from r426855, head/www/chromium/files/patch-ipc_ipc__channel__posix.cc branches/2016Q4/www/chromium/files/patch-ipc_ipc__channel__posix.h - copied unchanged from r426855, head/www/chromium/files/patch-ipc_ipc__channel__posix.h branches/2016Q4/www/chromium/files/patch-media_audio_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-media_audio_BUILD.gn branches/2016Q4/www/chromium/files/patch-media_base_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-media_base_BUILD.gn branches/2016Q4/www/chromium/files/patch-media_capture_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-media_capture_BUILD.gn branches/2016Q4/www/chromium/files/patch-media_cast_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-media_cast_BUILD.gn branches/2016Q4/www/chromium/files/patch-media_cdm_ppapi_ppapi__cdm__adapter.gni - copied unchanged from r426855, head/www/chromium/files/patch-media_cdm_ppapi_ppapi__cdm__adapter.gni branches/2016Q4/www/chromium/files/patch-mojo_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-mojo_BUILD.gn branches/2016Q4/www/chromium/files/patch-mojo_edk_test_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-mojo_edk_test_BUILD.gn branches/2016Q4/www/chromium/files/patch-native__client__sdk_src_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-native__client__sdk_src_BUILD.gn branches/2016Q4/www/chromium/files/patch-net_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-net_BUILD.gn branches/2016Q4/www/chromium/files/patch-net_base_network__change__notifier.h - copied unchanged from r426855, head/www/chromium/files/patch-net_base_network__change__notifier.h branches/2016Q4/www/chromium/files/patch-ppapi_tests_extensions_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-ppapi_tests_extensions_BUILD.gn branches/2016Q4/www/chromium/files/patch-printing_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-printing_BUILD.gn branches/2016Q4/www/chromium/files/patch-printing_cups__config__helper.py - copied unchanged from r426855, head/www/chromium/files/patch-printing_cups__config__helper.py branches/2016Q4/www/chromium/files/patch-remoting_host_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-remoting_host_BUILD.gn branches/2016Q4/www/chromium/files/patch-sdch_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-sdch_BUILD.gn branches/2016Q4/www/chromium/files/patch-services_shell_standalone_context.cc - copied unchanged from r426855, head/www/chromium/files/patch-services_shell_standalone_context.cc branches/2016Q4/www/chromium/files/patch-services_ui_ws_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-services_ui_ws_BUILD.gn branches/2016Q4/www/chromium/files/patch-skia_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-skia_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_core_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_WebKit_Source_core_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_SimpleFontData.cpp - copied unchanged from r426855, head/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_SimpleFontData.cpp branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_web_PopupMenuImpl.cpp - copied unchanged from r426855, head/www/chromium/files/patch-third__party_WebKit_Source_web_PopupMenuImpl.cpp branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_wtf_Assertions.cpp - copied unchanged from r426855, head/www/chromium/files/patch-third__party_WebKit_Source_wtf_Assertions.cpp branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_wtf_Atomics.h - copied unchanged from r426855, head/www/chromium/files/patch-third__party_WebKit_Source_wtf_Atomics.h branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_wtf_ContainerAnnotations.h - copied unchanged from r426855, head/www/chromium/files/patch-third__party_WebKit_Source_wtf_ContainerAnnotations.h branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_wtf_ThreadingPthreads.cpp - copied unchanged from r426855, head/www/chromium/files/patch-third__party_WebKit_Source_wtf_ThreadingPthreads.cpp branches/2016Q4/www/chromium/files/patch-third__party_angle_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_angle_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_angle_build_angle__common.gni - copied unchanged from r426855, head/www/chromium/files/patch-third__party_angle_build_angle__common.gni branches/2016Q4/www/chromium/files/patch-third__party_angle_src_tests_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_angle_src_tests_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_boringssl_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_boringssl_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_boringssl_src_crypto_ex__data.c - copied unchanged from r426855, head/www/chromium/files/patch-third__party_boringssl_src_crypto_ex__data.c branches/2016Q4/www/chromium/files/patch-third__party_cython_rules.gni - copied unchanged from r426855, head/www/chromium/files/patch-third__party_cython_rules.gni branches/2016Q4/www/chromium/files/patch-third__party_expat_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_expat_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_ffmpeg_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_ffmpeg_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_fontconfig_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_fontconfig_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_freetype2_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_freetype2_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_glslang_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_glslang_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_harfbuzz-ng_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_harfbuzz-ng_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_libusb_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_libusb_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_libxml_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_libxml_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_libxslt_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_libxslt_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_mesa_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_mesa_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_minigbm_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_minigbm_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_opus_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_opus_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_pdfium_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_pdfium_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_pdfium_skia_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_pdfium_skia_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_sqlite_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_sqlite_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_usrsctp_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_usrsctp_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_webrtc_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_webrtc_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_webrtc_base_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_webrtc_base_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_webrtc_modules_audio__device_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_webrtc_modules_audio__device_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_webrtc_modules_video__coding_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_webrtc_modules_video__coding_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_webrtc_system__wrappers_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_webrtc_system__wrappers_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_webrtc_system__wrappers_source_atomic32__non__darwin__unix.cc - copied unchanged from r426855, head/www/chromium/files/patch-third__party_webrtc_system__wrappers_source_atomic32__non__darwin__unix.cc branches/2016Q4/www/chromium/files/patch-third__party_widevine_cdm_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_widevine_cdm_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_yasm_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_yasm_BUILD.gn branches/2016Q4/www/chromium/files/patch-third__party_zlib_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-third__party_zlib_BUILD.gn branches/2016Q4/www/chromium/files/patch-tools_battor__agent_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-tools_battor__agent_BUILD.gn branches/2016Q4/www/chromium/files/patch-tools_gn_args.cc - copied unchanged from r426855, head/www/chromium/files/patch-tools_gn_args.cc branches/2016Q4/www/chromium/files/patch-tools_gn_bootstrap_bootstrap.py - copied unchanged from r426855, head/www/chromium/files/patch-tools_gn_bootstrap_bootstrap.py branches/2016Q4/www/chromium/files/patch-tools_gn_gn__unittests.isolate - copied unchanged from r426855, head/www/chromium/files/patch-tools_gn_gn__unittests.isolate branches/2016Q4/www/chromium/files/patch-ui_app__list_views_app__list__item__view.cc - copied unchanged from r426855, head/www/chromium/files/patch-ui_app__list_views_app__list__item__view.cc branches/2016Q4/www/chromium/files/patch-ui_aura_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-ui_aura_BUILD.gn branches/2016Q4/www/chromium/files/patch-ui_base_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-ui_base_BUILD.gn branches/2016Q4/www/chromium/files/patch-ui_base_ime_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-ui_base_ime_BUILD.gn branches/2016Q4/www/chromium/files/patch-ui_base_ui__features.gni - copied unchanged from r426855, head/www/chromium/files/patch-ui_base_ui__features.gni branches/2016Q4/www/chromium/files/patch-ui_compositor_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-ui_compositor_BUILD.gn branches/2016Q4/www/chromium/files/patch-ui_gfx_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-ui_gfx_BUILD.gn branches/2016Q4/www/chromium/files/patch-ui_gl_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-ui_gl_BUILD.gn branches/2016Q4/www/chromium/files/patch-ui_views_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-ui_views_BUILD.gn branches/2016Q4/www/chromium/files/patch-ui_views_controls_webview_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-ui_views_controls_webview_BUILD.gn branches/2016Q4/www/chromium/files/patch-v8_BUILD.gn - copied unchanged from r426855, head/www/chromium/files/patch-v8_BUILD.gn Deleted: branches/2016Q4/www/chromium/files/extra-patch-fixup-ffmpeg branches/2016Q4/www/chromium/files/extra-patch-libusb-pc branches/2016Q4/www/chromium/files/patch-base_base.gyp branches/2016Q4/www/chromium/files/patch-base_base.gypi branches/2016Q4/www/chromium/files/patch-base_process_memory.cc branches/2016Q4/www/chromium/files/patch-base_third__party_libevent_libevent.gyp branches/2016Q4/www/chromium/files/patch-base_threading_platform__thread__linux.cc branches/2016Q4/www/chromium/files/patch-build_common.gypi branches/2016Q4/www/chromium/files/patch-build_filename__rules.gypi branches/2016Q4/www/chromium/files/patch-build_linux_system.gyp branches/2016Q4/www/chromium/files/patch-build_linux_unbundle_libwebp.gyp branches/2016Q4/www/chromium/files/patch-chrome_browser_browser__resources.grd branches/2016Q4/www/chromium/files/patch-chrome_browser_extensions_window__open__apitest.cc branches/2016Q4/www/chromium/files/patch-chrome_browser_ui_panels_panel__manager.cc branches/2016Q4/www/chromium/files/patch-chrome_browser_ui_views_panels_panel__frame__view.cc branches/2016Q4/www/chromium/files/patch-chrome_chrome__browser.gypi branches/2016Q4/www/chromium/files/patch-chrome_chrome__browser__extensions.gypi branches/2016Q4/www/chromium/files/patch-chrome_chrome__browser__ui.gypi branches/2016Q4/www/chromium/files/patch-chrome_chrome__common.gypi branches/2016Q4/www/chromium/files/patch-chrome_chrome__exe.gypi branches/2016Q4/www/chromium/files/patch-chrome_chrome__resources.gyp branches/2016Q4/www/chromium/files/patch-chrome_common_component__flash__hint__file__linux.h branches/2016Q4/www/chromium/files/patch-chrome_common_extensions_api_schemas.gypi branches/2016Q4/www/chromium/files/patch-chrome_common_variations_fieldtrial__testing__config.gyp branches/2016Q4/www/chromium/files/patch-components_dom__distiller_core_page__features.cc branches/2016Q4/www/chromium/files/patch-components_storage__monitor.gypi branches/2016Q4/www/chromium/files/patch-content_browser_geolocation_location__arbitrator__impl.cc branches/2016Q4/www/chromium/files/patch-content_browser_geolocation_wifi__data__provider__freebsd.cc branches/2016Q4/www/chromium/files/patch-content_browser_geolocation_wifi__data__provider__freebsd.h branches/2016Q4/www/chromium/files/patch-content_browser_indexed__db_indexed__db__backing__store.cc branches/2016Q4/www/chromium/files/patch-content_content__browser.gypi branches/2016Q4/www/chromium/files/patch-content_content__common.gypi branches/2016Q4/www/chromium/files/patch-content_content__tests.gypi branches/2016Q4/www/chromium/files/patch-content_renderer_media_webrtc__audio__renderer.cc branches/2016Q4/www/chromium/files/patch-device_hid_hid.gyp branches/2016Q4/www/chromium/files/patch-device_serial_serial.gyp branches/2016Q4/www/chromium/files/patch-device_usb_usb.gyp branches/2016Q4/www/chromium/files/patch-gpu_gpu__config.gypi branches/2016Q4/www/chromium/files/patch-gpu_gpu__ipc__service.gypi branches/2016Q4/www/chromium/files/patch-media_base_audio__splicer.cc branches/2016Q4/www/chromium/files/patch-media_capture_video_video__capture__device.cc branches/2016Q4/www/chromium/files/patch-media_capture_video_video__capture__device.h branches/2016Q4/www/chromium/files/patch-media_filters_decrypting__audio__decoder.cc branches/2016Q4/www/chromium/files/patch-media_media.gyp branches/2016Q4/www/chromium/files/patch-native__client_build_common.gypi branches/2016Q4/www/chromium/files/patch-native__client_src_shared_platform_platform.gyp branches/2016Q4/www/chromium/files/patch-net_base_address__tracker__linux.cc branches/2016Q4/www/chromium/files/patch-net_dns_dns__session.cc branches/2016Q4/www/chromium/files/patch-net_net.gyp branches/2016Q4/www/chromium/files/patch-net_net.gypi branches/2016Q4/www/chromium/files/patch-net_net__common.gypi branches/2016Q4/www/chromium/files/patch-net_quic_congestion__control_rtt__stats.cc branches/2016Q4/www/chromium/files/patch-printing_printing.gyp branches/2016Q4/www/chromium/files/patch-remoting_remoting__host.gypi branches/2016Q4/www/chromium/files/patch-services_shell_public_cpp_lib_initialize__base__and__icu.cc branches/2016Q4/www/chromium/files/patch-services_shell_runner_init.cc branches/2016Q4/www/chromium/files/patch-skia_skia__chrome.gypi branches/2016Q4/www/chromium/files/patch-skia_skia__common.gypi branches/2016Q4/www/chromium/files/patch-sync_util_get__session__name.cc branches/2016Q4/www/chromium/files/patch-sync_util_get__session__name__linux.cc branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_core_core.gyp branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_platform_blink__platform.gyp branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_platform_image-decoders_png_PNGImageDecoder.cpp branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_platform_text_CharacterPropertyDataGenerator.cpp branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_web_web.gyp branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_wtf_wtf.gyp branches/2016Q4/www/chromium/files/patch-third__party_ffmpeg_ffmpeg__generated.gypi branches/2016Q4/www/chromium/files/patch-third__party_jsoncpp_jsoncpp.gyp branches/2016Q4/www/chromium/files/patch-third__party_khronos_khronos.gyp branches/2016Q4/www/chromium/files/patch-third__party_libXNVCtrl_libXNVCtrl.gyp branches/2016Q4/www/chromium/files/patch-third__party_libjingle_libjingle.gyp branches/2016Q4/www/chromium/files/patch-third__party_libjpeg_libjpeg.gyp branches/2016Q4/www/chromium/files/patch-third__party_libphonenumber_libphonenumber.gyp branches/2016Q4/www/chromium/files/patch-third__party_libusb_libusb.gyp branches/2016Q4/www/chromium/files/patch-third__party_libxml_libxml.gyp branches/2016Q4/www/chromium/files/patch-third__party_libxslt_libxslt.gyp branches/2016Q4/www/chromium/files/patch-third__party_pdfium_build__gyp_standalone.gypi branches/2016Q4/www/chromium/files/patch-third__party_pdfium_pdfium.gyp branches/2016Q4/www/chromium/files/patch-third__party_protobuf_src_google_protobuf_stubs_platform__macros.h branches/2016Q4/www/chromium/files/patch-third__party_re2_re2.gyp branches/2016Q4/www/chromium/files/patch-third__party_sfntly_sfntly.gyp branches/2016Q4/www/chromium/files/patch-third__party_snappy_snappy.gyp branches/2016Q4/www/chromium/files/patch-third__party_sqlite_sqlite.gyp branches/2016Q4/www/chromium/files/patch-third__party_usrsctp_usrsctp.gyp branches/2016Q4/www/chromium/files/patch-third__party_webrtc_build_common.gypi branches/2016Q4/www/chromium/files/patch-third__party_webrtc_modules_audio__device_audio__device.gypi branches/2016Q4/www/chromium/files/patch-third__party_webrtc_modules_desktop__capture_desktop__capture.gypi branches/2016Q4/www/chromium/files/patch-third__party_webrtc_modules_video__coding_receiver.cc branches/2016Q4/www/chromium/files/patch-third__party_webrtc_system__wrappers_source_atomic32__posix.cc branches/2016Q4/www/chromium/files/patch-tools_gyp_pylib_gyp_generator_make.py branches/2016Q4/www/chromium/files/patch-tools_gyp_test_additional-targets_src_dir1_actions.gyp branches/2016Q4/www/chromium/files/patch-tools_gyp_test_library_src_library.gyp branches/2016Q4/www/chromium/files/patch-ui_accessibility_accessibility.gyp branches/2016Q4/www/chromium/files/patch-ui_base_ui__base.gyp branches/2016Q4/www/chromium/files/patch-ui_gl_gl.gyp branches/2016Q4/www/chromium/files/patch-ui_gl_gl__surface__glx.cc branches/2016Q4/www/chromium/files/patch-ui_views_controls_webview_webview.gyp branches/2016Q4/www/chromium/files/patch-ui_views_views.gyp branches/2016Q4/www/chromium/files/patch-v8_src_profiler_sampler.cc Modified: branches/2016Q4/www/chromium/Makefile branches/2016Q4/www/chromium/distinfo branches/2016Q4/www/chromium/files/extra-patch-clang branches/2016Q4/www/chromium/files/extra-patch-gcc branches/2016Q4/www/chromium/files/patch-base_posix_unix__domain__socket__linux.cc branches/2016Q4/www/chromium/files/patch-base_process_launch.cc branches/2016Q4/www/chromium/files/patch-base_process_launch.h branches/2016Q4/www/chromium/files/patch-base_process_memory__unittest.cc branches/2016Q4/www/chromium/files/patch-base_process_process__metrics.h branches/2016Q4/www/chromium/files/patch-base_process_process__posix.cc branches/2016Q4/www/chromium/files/patch-base_sys__info__freebsd.cc branches/2016Q4/www/chromium/files/patch-base_sys__info__posix.cc branches/2016Q4/www/chromium/files/patch-chrome_app_generated__resources.grd branches/2016Q4/www/chromium/files/patch-chrome_browser_memory__details.cc branches/2016Q4/www/chromium/files/patch-chrome_browser_resources_safe__browsing_gen__file__type__proto.py branches/2016Q4/www/chromium/files/patch-chrome_browser_ui_browser__command__controller.cc branches/2016Q4/www/chromium/files/patch-chrome_browser_ui_browser__view__prefs.cc branches/2016Q4/www/chromium/files/patch-chrome_browser_ui_views_first__run__dialog.cc branches/2016Q4/www/chromium/files/patch-chrome_browser_ui_webui_about__ui.cc branches/2016Q4/www/chromium/files/patch-chrome_common_chrome__switches.cc branches/2016Q4/www/chromium/files/patch-chrome_common_chrome__switches.h branches/2016Q4/www/chromium/files/patch-chrome_common_pref__names.cc branches/2016Q4/www/chromium/files/patch-chrome_common_pref__names.h branches/2016Q4/www/chromium/files/patch-components_policy_resources_policy__templates.json branches/2016Q4/www/chromium/files/patch-components_policy_tools_generate__policy__source.py branches/2016Q4/www/chromium/files/patch-content_browser_browser__main__loop.cc branches/2016Q4/www/chromium/files/patch-content_browser_gpu_gpu__data__manager__impl__private.cc branches/2016Q4/www/chromium/files/patch-content_browser_ppapi__plugin__process__host.cc branches/2016Q4/www/chromium/files/patch-content_browser_renderer__host_render__process__host__impl.cc branches/2016Q4/www/chromium/files/patch-content_browser_renderer__host_render__widget__host__view__aura.cc branches/2016Q4/www/chromium/files/patch-content_browser_utility__process__host__impl.cc branches/2016Q4/www/chromium/files/patch-content_gpu_gpu__child__thread.cc branches/2016Q4/www/chromium/files/patch-content_gpu_gpu__main.cc branches/2016Q4/www/chromium/files/patch-content_renderer_devtools_v8__sampling__profiler.cc branches/2016Q4/www/chromium/files/patch-content_renderer_media_webrtc_processed__local__audio__source.cc branches/2016Q4/www/chromium/files/patch-content_renderer_render__thread__impl.cc branches/2016Q4/www/chromium/files/patch-content_renderer_renderer__blink__platform__impl.cc branches/2016Q4/www/chromium/files/patch-content_renderer_webscrollbarbehavior__impl__gtkoraura.cc branches/2016Q4/www/chromium/files/patch-content_shell_browser_shell__browser__context.cc branches/2016Q4/www/chromium/files/patch-crypto_nss__util.cc branches/2016Q4/www/chromium/files/patch-device_usb_usb__service__impl.cc branches/2016Q4/www/chromium/files/patch-extensions_browser_api_serial_serial__api.cc branches/2016Q4/www/chromium/files/patch-gpu_config_gpu__control__list.cc branches/2016Q4/www/chromium/files/patch-media_audio_audio__manager.cc branches/2016Q4/www/chromium/files/patch-media_capture_video_fake__video__capture__device__factory.cc branches/2016Q4/www/chromium/files/patch-media_capture_video_file__video__capture__device__factory.cc branches/2016Q4/www/chromium/files/patch-media_capture_video_linux_video__capture__device__linux.cc branches/2016Q4/www/chromium/files/patch-media_capture_video_video__capture__device__factory.cc branches/2016Q4/www/chromium/files/patch-net_base_address__tracker__linux.h branches/2016Q4/www/chromium/files/patch-net_base_network__change__notifier.cc branches/2016Q4/www/chromium/files/patch-net_proxy_proxy__config__service__linux.cc branches/2016Q4/www/chromium/files/patch-net_proxy_proxy__service.cc branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_FontPlatformData.cpp branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_FontPlatformData.h branches/2016Q4/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_skia_FontCacheSkia.cpp branches/2016Q4/www/chromium/files/patch-third__party_ffmpeg_ffmpeg__generated.gni branches/2016Q4/www/chromium/files/patch-third__party_ffmpeg_libavutil_mem.c branches/2016Q4/www/chromium/files/patch-third__party_leveldatabase_env__chromium.cc branches/2016Q4/www/chromium/files/patch-third__party_pdfium_fpdfsdk_javascript_PublicMethods.cpp branches/2016Q4/www/chromium/files/patch-third__party_webrtc_base_physicalsocketserver.cc branches/2016Q4/www/chromium/files/patch-third__party_webrtc_base_platform__thread.cc branches/2016Q4/www/chromium/files/patch-ui_app__list_app__list__menu.cc branches/2016Q4/www/chromium/files/patch-ui_app__list_views_app__list__view.cc branches/2016Q4/www/chromium/files/patch-ui_base_ime_input__method__factory.cc branches/2016Q4/www/chromium/files/patch-ui_base_resource_resource__bundle.cc branches/2016Q4/www/chromium/files/patch-ui_gl_sync__control__vsync__provider.cc branches/2016Q4/www/chromium/files/patch-ui_gl_sync__control__vsync__provider.h branches/2016Q4/www/chromium/files/patch-ui_views_controls_textfield_textfield.cc branches/2016Q4/www/chromium/files/patch-ui_views_style_platform__style.cc branches/2016Q4/www/chromium/files/patch-v8_src_base_platform_platform-posix.cc branches/2016Q4/www/chromium/pkg-plist Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/www/chromium/Makefile ============================================================================== --- branches/2016Q4/www/chromium/Makefile Wed Nov 23 20:08:36 2016 (r426974) +++ branches/2016Q4/www/chromium/Makefile Wed Nov 23 20:39:33 2016 (r426975) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 52.0.2743.116 -PORTREVISION= 1 +PORTVERSION= 54.0.2840.100 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} # default, but needed to get distinfo correct if TEST is on @@ -14,9 +13,7 @@ COMMENT= Google web browser based on Web LICENSE= BSD3CLAUSE LGPL21 MPL LICENSE_COMB= multi -BROKEN_FreeBSD_9=does not patch - -CFLAGS+= -isystem${LOCALBASE}/include -I${PREFIX}/include/atk-1.0 +BROKEN_FreeBSD_9=does not configure BUILD_DEPENDS= ${LOCALBASE}/bin/gperf:devel/gperf \ bash:shells/bash \ @@ -28,8 +25,7 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/gperf:de ${PYTHON_PKGNAMEPREFIX}ply>0:devel/py-ply \ ${PYTHON_PKGNAMEPREFIX}html5lib>0:www/py-html5lib -LIB_DEPENDS= libasound.so:audio/alsa-lib \ - libcairo.so:graphics/cairo \ +LIB_DEPENDS= libcairo.so:graphics/cairo \ libcups.so:print/cups \ libdbus-1.so:devel/dbus \ libdbus-glib-1.so:devel/dbus-glib \ @@ -39,7 +35,6 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib libfreetype.so:print/freetype2 \ libgnome-keyring.so:security/libgnome-keyring \ libharfbuzz.so:print/harfbuzz \ - libevent.so:devel/libevent2 \ libexif.so:graphics/libexif \ libfontconfig.so:x11-fonts/fontconfig \ libgcrypt.so:security/libgcrypt \ @@ -56,101 +51,60 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib libwebp.so:graphics/webp \ libxml2.so:textproc/libxml2 -RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-plugins \ - alsa-lib>=1.1.1_1:audio/alsa-lib \ - droid-fonts-ttf>0:x11-fonts/droid-fonts-ttf \ +RUN_DEPENDS= droid-fonts-ttf>0:x11-fonts/droid-fonts-ttf \ xdg-open:devel/xdg-utils ONLY_FOR_ARCHS= i386 amd64 -USES= bison cpe desktop-file-utils execinfo jpeg \ +USES= compiler bison cpe desktop-file-utils execinfo jpeg \ ninja perl5 pkgconfig python:2,build shebangfix tar:xz -# chromium requires a recent compiler (C++11 capable, but clang 3.4 is -# not able to build chromium. OTOH clang36 on FreeBSD 9.3 cannot build -# chromium as the libc++ includes are not up to the task. USES flags -# have to be set before bsd.ports.pre.mk and thereby cannot depend on -# bsd.ports.pre.mk's variables, so I'm using a hack here. -.if exists(/usr/lib/libc++.a) -USES+= compiler:c++14-lang -.else -USES+= compiler:c++11-lib -.endif CPE_VENDOR= google CPE_PRODUCT= chrome USE_PERL5= build USE_XORG= scrnsaverproto x11 xcomposite xcursor xext xdamage xfixes xi \ xproto xrandr xrender xscrnsaver xtst -USE_GNOME= atk glib20 gtk20 dconf libxslt +USE_GNOME= atk glib20 gtk20 dconf libxslt libxml2 MAKE_ARGS= -C out/${BUILDTYPE} SHEBANG_FILES= chrome/tools/build/linux/chrome-wrapper ALL_TARGET= chrome INSTALLS_ICONS= yes -#TODO bz@ : install libwidevinecdm.so (see -# third_party/widevine/cdm/widevine_cdm.gyp) -# See build/common.gypi for all the available variables. -GYP_DEFINES+= \ - clang_use_chrome_plugins=0 \ - linux_breakpad=0 \ - linux_use_heapchecker=0 \ - linux_strip_binary=1 \ - use_aura=1 \ - test_isolation_mode=noop \ - disable_nacl=1 \ - enable_extensions=1 \ - enable_one_click_signin=1 \ - enable_openmax=1 \ - enable_webrtc=1 \ - werror= \ - no_gc_sections=1 \ - OS=freebsd \ - os_ver=${OSVERSION} \ - prefix_dir=${LOCALBASE} \ - python_ver=${PYTHON_VER} \ - use_allocator=none \ - use_cups=1 \ - linux_link_gsettings=1 \ - linux_link_libpci=1 \ - linux_link_libspeechd=1 \ - libspeechd_h_prefix=speech-dispatcher/ \ - usb_ids_path=${LOCALBASE}/share/usbids/usb.ids \ - want_separate_host_toolset=0 \ - use_system_bzip2=1 \ - use_system_flac=1 \ - use_system_harfbuzz=1 \ - use_system_icu=1 \ - use_system_jsoncpp=1 \ - use_system_libevent=1 \ - use_system_libexif=1 \ - use_system_libjpeg=1 \ - use_system_libpng=1 \ - use_system_libusb=1 \ - use_system_libwebp=1 \ - use_system_libxml=1 \ - use_system_libxslt=1 \ - use_system_nspr=1 \ - use_system_protobuf=0 \ - use_system_re2=1 \ - use_system_snappy=1 \ - use_system_speex=1 \ - use_system_xdg_utils=1 \ - use_system_yasm=1 \ - v8_use_external_startup_data=0 -# allow removal of third_party/adobe -GYP_DEFINES+= flapper_version_h_file='${WRKSRC}/flapper_version.h' +# TODO bz@ : install libwidevinecdm.so (see third_party/widevine/cdm/BUILD.gn) +# +# Run "./out/${BUILDTYPE}/gn args out/${BUILDTYPE} --list" for all the variables. +# Some parts don't have use_system_* flag, and can be turned on/off by using +# replace_gn_files.py script, some parts just turned on/off for target host +# OS "target_os == is_bsd", like libusb, libpci. +GN_ARGS+= \ + clang_use_chrome_plugins=false \ + enable_hevc_demuxing=true \ + enable_media_router=true \ + enable_nacl=false \ + enable_remoting=false \ + toolkit_views=true \ + use_allocator="none" \ + use_aura=true \ + use_experimental_allocator_shim=true \ + treat_warnings_as_errors=false \ + use_sysroot=false \ + use_system_libjpeg=true \ + use_system_sqlite=false # chrome has additional patches +# TODO: investigate building with these options: +# use_system_icu use_system_harfbuzz use_system_minigbm +GN_BOOTSTRAP_FLAGS= --no-clean --no-rebuild # FreeBSD Chromium Api Key # Set up Google API keys, see http://www.chromium.org/developers/how-tos/api-keys . # Note: these are for FreeBSD use ONLY. For your own distribution, # please get your own set of keys. -GYP_DEFINES+= google_api_key=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 \ - google_default_client_id=996322985003.apps.googleusercontent.com \ - google_default_client_secret=IR1za9-1VK0zZ0f_O8MVFicn +GN_ARGS+= google_api_key="AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8" \ + google_default_client_id="996322985003.apps.googleusercontent.com" \ + google_default_client_secret="IR1za9-1VK0zZ0f_O8MVFicn" SUB_FILES= chromium-browser.desktop chrome SUB_LIST+= COMMENT="${COMMENT}" -OPTIONS_DEFINE= CODECS GCONF PULSEAUDIO TEST KERBEROS DEBUG DRIVER +OPTIONS_DEFINE= ALSA CODECS GCONF PULSEAUDIO TEST KERBEROS DEBUG DRIVER CODECS_DESC= Compile and enable patented codecs like H.264 DRIVER_DESC= Install chromedriver @@ -158,44 +112,39 @@ OPTIONS_DEFAULT= CODECS GCONF KERBEROS OPTIONS_SUB= yes GCONF_USE= GNOME=gconf2 +ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib +ALSA_RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-plugins \ + alsa-lib>=1.1.1_1:audio/alsa-lib PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio DRIVER_MAKE_ARGS=chromedriver TEST_DISTFILES= ${PORTNAME}-${DISTVERSION}-testdata${EXTRACT_SUFX} .include +.if ${PORT_OPTIONS:MALSA} +GN_ARGS+= use_alsa=true +.else +GN_ARGS+= use_alsa=false +.endif + .if ${PORT_OPTIONS:MCODECS} -GYP_DEFINES+= ffmpeg_branding=Chrome -GYP_DEFINES+= proprietary_codecs=1 +GN_ARGS+= ffmpeg_branding="Chrome" +GN_ARGS+= proprietary_codecs=true .else -GYP_DEFINES+= ffmpeg_branding=Chromium -GYP_DEFINES+= proprietary_codecs=0 +GN_ARGS+= ffmpeg_branding="Chromium" +GN_ARGS+= proprietary_codecs=false .endif .if ${PORT_OPTIONS:MGCONF} -GYP_DEFINES+= use_gconf=1 +GN_ARGS+= use_gconf=true .else -GYP_DEFINES+= use_gconf=0 +GN_ARGS+= use_gconf=false .endif .if ${PORT_OPTIONS:MPULSEAUDIO} -GYP_DEFINES+= use_pulseaudio=1 +GN_ARGS+= use_pulseaudio=true .else -GYP_DEFINES+= use_pulseaudio=0 -.endif - -.if empty(MACHINE_CPU:Msse2) -GYP_DEFINES+= disable_sse2=1 -.endif - -.if !exists(/usr/libdata/pkgconfig/libusb-1.0.pc) -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libusb-pc -.endif - -# pointed out by "Tomek" on freebsd-chromium@ -.if !exists(/usr/lib/libexecinfo.so) -CFLAGS+= -fno-omit-frame-pointer -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-fixup-ffmpeg +GN_ARGS+= use_pulseaudio=false .endif .if ${PORT_OPTIONS:MTEST} @@ -206,180 +155,80 @@ ALL_TARGET+= ${TEST_TARGETS} DEBUG_MAKE_ENV= V=1 .if ${PORT_OPTIONS:MDEBUG} BUILDTYPE= Debug +GN_ARGS+= is_debug=true +GN_BOOTSTRAP_FLAGS+= --debug +#GN_ARGS+= is_component_build = true .else BUILDTYPE= Release +.if ${ARCH} == amd64 +GN_ARGS+= use_lld=true # harder, better, faster, stronger +.endif +GN_ARGS+= is_debug=false +GN_ARGS+= symbol_level=0 +GN_ARGS+= remove_webcore_debug_symbols=true .endif -CONFIGURE_ENV+= CC="${CC}" \ - CXX="${CXX}" \ - GYP_GENERATORS=ninja \ - GYP_DEFINES="${GYP_DEFINES}" MAKE_ENV+= BUILDTYPE=${BUILDTYPE} \ GPERF="${LOCALBASE}/bin/gperf" .include .if ${CHOSEN_COMPILER_TYPE} == gcc -GYP_DEFINES+= gcc_version=${CXX:S/g++//} +GN_ARGS+= gcc_version=${CXX:S/g++//} EXTRA_PATCHES+= ${FILESDIR}/extra-patch-gcc -CFLAGS+= -fno-stack-protector # gcc 4.8 cannot find __stack_chk_fail_local .else -GYP_DEFINES+= clang=1 -CFLAGS+= -Wno-unknown-warning-option \ - -D_LIBCPP_TRIVIAL_PAIR_COPY_CTOR=1 # work around base r261801 +BUILD_DEPENDS+= clang39:devel/llvm39 +CC= clang39 +CXX= clang++39 +# /usr/local/include unlike gcc isn't clang's default +MAKE_ENV+= C_INCLUDE_PATH=${LOCALBASE}/include \ + CPLUS_INCLUDE_PATH=${LOCALBASE}/include +GN_ARGS+= is_clang=true EXTRA_PATCHES+= ${FILESDIR}/extra-patch-clang -CONFIGURE_ENV+= AR=/usr/bin/ar .endif -.if ! ${PORT_OPTIONS:MKERBEROS} -GYP_DEFINES+= use_kerberos=0 +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1002000 +BUILD_DEPENDS+= ${LOCALBASE}/lib/c++/libstdc++.so:devel/libc++ +CXXFLAGS+= -stdlib=libc++ -isystem ${LOCALBASE}/include/c++/v1 .endif -# according to portlint the below is passed via bsd.port.mk, -# but 'make -V CONFIGURE_ENV' does not show it: -CONFIGURE_ENV+= CFLAGS="${CFLAGS}" \ - CPPFLAGS="${CPPFLAGS}" \ - CXXFLAGS="${CXXFLAGS}" \ - LDFLAGS="${LDFLAGS}" +.if ${OSVERSION} < 1100000 +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-10 +.endif + +.if ! ${PORT_OPTIONS:MKERBEROS} +GN_ARGS+= use_kerberos=true +.endif pre-everything:: @${ECHO_MSG} - @${ECHO_MSG} "To build Chromium, you should have around 2 GB of memory" + @${ECHO_MSG} "To build Chromium, you should have around 2GB of memory," .if ${PORT_OPTIONS:MDEBUG} - @${ECHO_MSG} "and lots of free diskspace (~ 8.5GB)." + @${ECHO_MSG} "lots of free diskspace (~ 40GB)" + @${ECHO_MSG} "and no less then 16GB of memory for linking." .else @${ECHO_MSG} "and a fair amount of free diskspace (~ 3.7GB)." .endif @${ECHO_MSG} @${ECHO_MSG} "Make sure you have Python build with the SEM option ON" @${ECHO_MSG} "(default in python27-2.7.8 since r361735)" - -post-patch: - @${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|" \ - ${WRKSRC}/crypto/crypto.gyp \ - ${WRKSRC}/v8/src/v8.gyp \ - ${WRKSRC}/v8/gypfiles/toolchain.gypi - @${REINPLACE_CMD} -e "s|/usr/local|${PREFIX}|" \ - ${WRKSRC}/chrome/common/chrome_paths.cc \ - ${WRKSRC}/base/base.gyp + @${ECHO_MSG} pre-configure: - # phajdan-jr: list of things *not* to remove, so maybe the script - # should be called "keep_bundled_libraries.py" + # We used to remove bundled libraries to be sure that chromium uses + # system libraries and not shippen ones. + # cd ${WRKSRC} && ${PYTHON_CMD} \ + #./build/linux/unbundle/remove_bundled_libraries.py [list of preserved] cd ${WRKSRC} && ${PYTHON_CMD} \ - ./build/linux/unbundle/remove_bundled_libraries.py \ - 'base/third_party/dmg_fp' \ - 'base/third_party/dynamic_annotations' \ - 'base/third_party/icu' \ - 'base/third_party/nspr' \ - 'base/third_party/superfasthash' \ - 'base/third_party/symbolize' \ - 'base/third_party/valgrind' \ - 'base/third_party/xdg_mime' \ - 'base/third_party/xdg_user_dirs' \ - 'breakpad/src/third_party/curl' \ - 'chrome/third_party/mock4js' \ - 'chrome/third_party/mozilla_security_manager' \ - 'courgette/third_party' \ - 'net/third_party/mozilla_security_manager' \ - 'net/third_party/nss' \ - 'third_party/WebKit' \ - 'third_party/analytics' \ - 'third_party/angle' \ - 'third_party/angle/src/third_party' \ - 'third_party/blanketjs' \ - 'third_party/brotli' \ - 'third_party/boringssl' \ - 'third_party/cacheinvalidation' \ - 'third_party/catapult' \ - 'third_party/catapult/third_party/beautifulsoup4' \ - 'third_party/catapult/third_party/py_vulcanize' \ - 'third_party/catapult/third_party/py_vulcanize/py_vulcanize' \ - 'third_party/catapult/third_party/py_vulcanize/third_party/rcssmin' \ - 'third_party/catapult/third_party/py_vulcanize/third_party/rjsmin' \ - 'third_party/catapult/tracing' \ - 'third_party/catapult/tracing/third_party' \ - 'third_party/cld' \ - 'third_party/cros_system_api' \ - 'third_party/dom_distiller_js' \ - 'third_party/dom_distiller_js/dist/proto_gen/third_party/dom_distiller_js' \ - 'third_party/ffmpeg' \ - 'third_party/gardiner_mod' \ - 'third_party/fips181' \ - 'third_party/flot' \ - 'third_party/google_input_tools' \ - 'third_party/google_input_tools/third_party/closure_library' \ - 'third_party/google_input_tools/third_party/closure_library/third_party/closure' \ - 'third_party/hunspell' \ - 'third_party/iccjpeg' \ - 'third_party/icu/icu.isolate' \ - 'third_party/jinja2' \ - 'third_party/jstemplate' \ - 'third_party/khronos' \ - 'third_party/leveldatabase' \ - 'third_party/libaddressinput' \ - 'third_party/libjingle' \ - 'third_party/libphonenumber' \ - 'third_party/libsrtp' \ - 'third_party/libvpx' \ - 'third_party/libvpx/source/libvpx/third_party/x86inc' \ - 'third_party/libwebm' \ - 'third_party/libxml/chromium' \ - 'third_party/libXNVCtrl' \ - 'third_party/libyuv' \ - 'third_party/lss' \ - 'third_party/lzma_sdk' \ - 'third_party/markupsafe' \ - 'third_party/mesa' \ - 'third_party/modp_b64' \ - 'third_party/mt19937ar' \ - 'third_party/openh264' \ - 'third_party/openmax_dl' \ - 'third_party/opus' \ - 'third_party/ots' \ - 'third_party/pdfium' \ - 'third_party/pdfium/third_party' \ - 'third_party/ply' \ - 'third_party/polymer' \ - 'third_party/protobuf' \ - 'third_party/protobuf/third_party' \ - 'third_party/protobuf/third_party/six' \ - 'third_party/pywebsocket' \ - 'third_party/qcms' \ - 'third_party/qunit' \ - 'third_party/sfntly' \ - 'third_party/sinonjs' \ - 'third_party/skia' \ - 'third_party/smhasher' \ - 'third_party/sqlite' \ - 'third_party/tcmalloc' \ - 'third_party/tlslite' \ - 'third_party/usrsctp' \ - 'third_party/web-animations-js' \ - 'third_party/webdriver' \ - 'third_party/webrtc' \ - 'third_party/widevine' \ - 'third_party/woff2' \ - 'third_party/x86inc' \ - 'third_party/yasm' \ - 'third_party/zlib' \ - 'url/third_party/mozilla' \ - 'v8/src/third_party/valgrind' \ - 'v8/src/third_party/fdlibm' \ - --do-remove || ${FALSE} - cd ${WRKSRC} && ${PYTHON_CMD} \ - ./build/linux/unbundle/replace_gyp_files.py \ - ${GYP_DEFINES:C/^/-D/} || ${FALSE} - # allow removal of third_party/adobe - ${ECHO_CMD} > ${WRKSRC}/flapper_version.h - # missing file: file is in -testdata only, but configure stage - # will fail if it's not there. do not break TESTS build while - # allowing regular build without pulling in -testdata. - ${TOUCH} ${WRKSRC}/chrome/test/data/webui/i18n_process_css_test.html + ./build/linux/unbundle/replace_gn_files.py --system-libraries \ + flac harfbuzz-ng libwebp libxml libxslt snappy yasm || ${FALSE} do-configure: - cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${PYTHON_CMD} \ - ./build/gyp_chromium chrome/chrome.gyp --depth . + # GN generator bootstrapping and generating ninja files + cd ${WRKSRC} && ${SETENV} CC=${CC} CXX=${CXX} ${PYTHON_CMD} \ + ./tools/gn/bootstrap/bootstrap.py ${GN_BOOTSTRAP_FLAGS} + cd ${WRKSRC} && ${SETENV} ./out/${BUILDTYPE}/gn \ + gen --args='${GN_ARGS}' out/${BUILDTYPE} test regression-test: build .for t in ${TEST_TARGETS} @@ -397,14 +246,17 @@ do-install: .endfor ${INSTALL_SCRIPT} ${WRKSRC}/chrome/tools/build/linux/chrome-wrapper \ ${STAGEDIR}${DATADIR} -.for p in chrome_100_percent content_resources keyboard_resources resources +.for p in chrome_100_percent chrome_200_percent keyboard_resources resources ${INSTALL_DATA} ${WRKSRC}/out/${BUILDTYPE}/${p}.pak \ ${STAGEDIR}${DATADIR} .endfor +.for d in icudtl.dat natives_blob.bin + ${INSTALL_DATA} ${WRKSRC}/out/${BUILDTYPE}/${d} ${STAGEDIR}${DATADIR} +.endfor ${INSTALL_PROGRAM} ${WRKSRC}/out/${BUILDTYPE}/chrome \ ${STAGEDIR}${DATADIR} cd ${WRKSRC}/out/${BUILDTYPE} && \ - ${COPYTREE_SHARE} "locales pseudo_locales resources" ${STAGEDIR}${DATADIR} + ${COPYTREE_SHARE} "locales resources" ${STAGEDIR}${DATADIR} @${MKDIR} ${STAGEDIR}${DESKTOPDIR} ${INSTALL_DATA} ${WRKDIR}/chromium-browser.desktop \ ${STAGEDIR}${DESKTOPDIR} Modified: branches/2016Q4/www/chromium/distinfo ============================================================================== --- branches/2016Q4/www/chromium/distinfo Wed Nov 23 20:08:36 2016 (r426974) +++ branches/2016Q4/www/chromium/distinfo Wed Nov 23 20:39:33 2016 (r426975) @@ -1,5 +1,5 @@ -TIMESTAMP = 1470404034 -SHA256 (chromium-52.0.2743.116.tar.xz) = a194ae1edb041024b3d4b6ba438f32fefdb6f1ecb24a96c50248a486b237a101 -SIZE (chromium-52.0.2743.116.tar.xz) = 458156660 -SHA256 (chromium-52.0.2743.116-testdata.tar.xz) = d3d059e1215702d8665f02b47a10e14458f54f423c323a9fcc987e6e43767c0b -SIZE (chromium-52.0.2743.116-testdata.tar.xz) = 122423496 +TIMESTAMP = 1478859835 +SHA256 (chromium-54.0.2840.100.tar.xz) = e2e7f54a780c93ec2e933af09e1126837e6cf940b57213d39f36d58df10c89df +SIZE (chromium-54.0.2840.100.tar.xz) = 479762112 +SHA256 (chromium-54.0.2840.100-testdata.tar.xz) = 44319fea6de4dbb1f6d0bbeeec633b69b7064f53a54893df5b720935a6d27460 +SIZE (chromium-54.0.2840.100-testdata.tar.xz) = 123519620 Copied: branches/2016Q4/www/chromium/files/extra-patch-10 (from r426855, head/www/chromium/files/extra-patch-10) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/www/chromium/files/extra-patch-10 Wed Nov 23 20:39:33 2016 (r426975, copy of r426855, head/www/chromium/files/extra-patch-10) @@ -0,0 +1,10 @@ +--- content/renderer/devtools/v8_sampling_profiler.cc.orig 2016-10-06 04:02:19.000000000 +0300 ++++ content/renderer/devtools/v8_sampling_profiler.cc 2016-10-30 03:00:33.775227000 +0300 +@@ -22,6 +22,7 @@ + + #if defined(OS_POSIX) + #include ++#include + #define USE_SIGNALS + #endif + Modified: branches/2016Q4/www/chromium/files/extra-patch-clang ============================================================================== --- branches/2016Q4/www/chromium/files/extra-patch-clang Wed Nov 23 20:08:36 2016 (r426974) +++ branches/2016Q4/www/chromium/files/extra-patch-clang Wed Nov 23 20:39:33 2016 (r426975) @@ -1,13 +1,14 @@ ---- base/strings/safe_sprintf_unittest.cc 2015-04-15 00:18:48.000000000 +0200 -+++ base/strings/safe_sprintf_unittest.cc 2015-04-18 22:08:45.000000000 +0200 -@@ -729,12 +729,14 @@ - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wconversion-null" - #endif +--- base/strings/safe_sprintf_unittest.cc.orig 2016-10-06 04:02:08.000000000 +0300 ++++ base/strings/safe_sprintf_unittest.cc 2016-10-25 21:42:28.951114000 +0300 +@@ -728,6 +728,7 @@ + } + + TEST(SafeSPrintfTest, EmitNULL) { +/* Avoid compiler error: http://pastebin.com/1edWUE84 - EXPECT_EQ(1, SafeSPrintf(buf, "%d", NULL)); - EXPECT_EQ("0", std::string(buf)); - EXPECT_EQ(3, SafeSPrintf(buf, "%p", NULL)); + char buf[40]; + #if defined(__GNUC__) + #pragma GCC diagnostic push +@@ -739,6 +740,7 @@ EXPECT_EQ("0x0", std::string(buf)); EXPECT_EQ(6, SafeSPrintf(buf, "%s", NULL)); EXPECT_EQ("", std::string(buf)); @@ -41,7 +42,7 @@ +++ base/tracked_objects_unittest.cc 2015-09-03 09:20:53.370191000 -0400 @@ -58,9 +58,9 @@ Births* birth = ThreadData::TallyABirthIfActive(location); - + if (ThreadData::status() == ThreadData::DEACTIVATED) - EXPECT_EQ(reinterpret_cast(NULL), birth); + EXPECT_EQ(static_cast(NULL), birth); @@ -49,7 +50,7 @@ - EXPECT_NE(reinterpret_cast(NULL), birth); + EXPECT_NE(static_cast(NULL), birth); } - + // Helper function to verify the most common test expectations. --- components/sync_sessions/synced_session_tracker.cc.orig 2016-01-21 13:04:41.772845558 +0100 +++ components/sync_sessions/synced_session_tracker.cc 2016-01-21 13:05:17.652842509 +0100 @@ -70,34 +71,34 @@ .Times(2) - .WillRepeatedly(Return(reinterpret_cast(NULL))); + .WillRepeatedly(Return(static_cast(NULL))); - + EXPECT_CALL(callback_, OnError(_)) .Times(2); --- third_party/hunspell/src/hunspell/affentry.hxx.orig 2015-07-21 18:46:37.322427000 -0400 +++ third_party/hunspell/src/hunspell/affentry.hxx 2015-07-21 18:48:02.034251000 -0400 @@ -27,7 +27,7 @@ - struct hentry * checkword(const char * word, int len, char in_compound, + struct hentry * checkword(const char * word, int len, char in_compound, const FLAG needflag = FLAG_NULL); - + - struct hentry * check_twosfx(const char * word, int len, char in_compound, const FLAG needflag = NULL); + struct hentry * check_twosfx(const char * word, int len, char in_compound, const FLAG needflag = 0); - + char * check_morph(const char * word, int len, char in_compound, const FLAG needflag = FLAG_NULL); @@ -90,7 +90,7 @@ // const FLAG cclass = FLAG_NULL, const FLAG needflag = FLAG_NULL, char in_compound=IN_CPD_NOT); const FLAG cclass = FLAG_NULL, const FLAG needflag = FLAG_NULL, const FLAG badflag = 0); - + - struct hentry * check_twosfx(const char * word, int len, int optflags, PfxEntry* ppfx, const FLAG needflag = NULL); + struct hentry * check_twosfx(const char * word, int len, int optflags, PfxEntry* ppfx, const FLAG needflag = 0); - + char * check_twosfx_morph(const char * word, int len, int optflags, PfxEntry* ppfx, const FLAG needflag = FLAG_NULL); --- third_party/sfntly/src/cpp/src/sfntly/table/core/cmap_table.cc 2015-04-15 00:31:48.000000000 +0200 +++ third_party/sfntly/src/cpp/src/sfntly/table/core/cmap_table.cc 2015-04-18 22:05:41.000000000 +0200 @@ -439,7 +439,7 @@ } - + CMapTable::CMapFormat0::Builder::Builder(const CMapId& cmap_id) - : CMap::Builder(reinterpret_cast(NULL), + : CMap::Builder(static_cast(NULL), @@ -133,13 +134,13 @@ glyph_id_array_(glyph_id_array->begin(), glyph_id_array->end()) { @@ -966,7 +966,7 @@ } - + CMapTable::CMapFormat4::Builder::Builder(const CMapId& cmap_id) - : CMap::Builder(reinterpret_cast(NULL), + : CMap::Builder(static_cast(NULL), CMapFormat::kFormat4, cmap_id) { } - + --- third_party/webrtc/base/taskrunner.cc 2015-04-15 00:32:17.000000000 +0200 +++ third_party/webrtc/base/taskrunner.cc 2015-04-18 22:10:53.000000000 +0200 @@ -102,7 +102,7 @@ @@ -148,6 +149,6 @@ tasks_.end(), - reinterpret_cast(NULL)); + static_cast(NULL)); - + tasks_.erase(it, tasks_.end()); - + Modified: branches/2016Q4/www/chromium/files/extra-patch-gcc ============================================================================== --- branches/2016Q4/www/chromium/files/extra-patch-gcc Wed Nov 23 20:08:36 2016 (r426974) +++ branches/2016Q4/www/chromium/files/extra-patch-gcc Wed Nov 23 20:39:33 2016 (r426975) @@ -3,27 +3,27 @@ @@ -5,6 +5,7 @@ #ifndef MEDIA_FILTERS_FILE_DATA_SOURCE_H_ #define MEDIA_FILTERS_FILE_DATA_SOURCE_H_ - + +#include #include - + #include "base/files/file.h" --- content/public/common/child_process_sandbox_support_linux.h.orig 2013-10-11 19:30:28.000000000 +0200 +++ content/public/common/child_process_sandbox_support_linux.h 2013-10-16 15:29:00.000000000 +0200 @@ -7,6 +7,7 @@ - + #include #include +#include - + #include "content/common/content_export.h" - + --- third_party/ffmpeg/libavutil/cpu.c.orig 2013-11-16 01:26:14.000000000 +0100 +++ third_party/ffmpeg/libavutil/cpu.c 2013-11-19 00:24:53.000000000 +0100 @@ -24,6 +24,9 @@ #include "opt.h" #include "common.h" - + +/* TODO(rene) work around a compile error with GCC 4.6.4 on FreeBSD */ +#define __BSD_VISIBLE 1 + @@ -35,22 +35,22 @@ @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. - + +#include + #include "content/browser/browser_shutdown_profile_dumper.h" - + #include "base/base_switches.h" --- testing/perf/perf_test.cc 2014-03-03 12:59:30.000000000 -0500 +++ testing/perf/perf_test.cc.orig 2014-02-20 15:28:27.000000000 -0500 @@ -2,10 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. - + +#include + #include "testing/perf/perf_test.h" - + -#include - #include "base/logging.h" @@ -59,7 +59,7 @@ --- ui/gfx/codec/jpeg_codec.cc.orig 2014-10-02 19:19:03.000000000 +0200 +++ ui/gfx/codec/jpeg_codec.cc 2014-10-05 22:38:28.000000000 +0200 @@ -13,6 +13,7 @@ - + extern "C" { #if defined(USE_SYSTEM_LIBJPEG) +#include @@ -70,77 +70,44 @@ +++ third_party/webrtc/common_audio/wav_file.h 2014-10-18 12:04:03.000000000 +0200 @@ -14,6 +14,7 @@ #ifdef __cplusplus - + #include +#include #include #include - + --- v8/src/base/platform/platform.h.orig 2015-01-27 03:22:59.000000000 +0100 +++ v8/src/base/platform/platform.h 2015-01-28 18:37:43.268781292 +0100 @@ -22,6 +22,7 @@ #define V8_BASE_PLATFORM_PLATFORM_H_ - + #include +#include #include #include - + --- v8/src/compiler/graph-visualizer.cc.orig 2015-04-28 22:29:10.000000000 +0200 +++ v8/src/compiler/graph-visualizer.cc 2015-05-02 21:01:32.086593000 +0200 @@ -5,6 +5,7 @@ #include "src/compiler/graph-visualizer.h" - + #include +#include #include - + #include "src/code-stubs.h" -@@ -25,7 +26,7 @@ - namespace compiler { - - --FILE* OpenVisualizerLogFile(CompilationInfo* info, const char* phase, -+std::FILE* OpenVisualizerLogFile(CompilationInfo* info, const char* phase, - const char* suffix, const char* mode) { - EmbeddedVector filename; - SmartArrayPointer function_name; --- third_party/ffmpeg/libavutil/autorename_libavutil_cpu.c.orig 2015-07-24 22:27:11.000000000 +0200 +++ third_party/ffmpeg/libavutil/autorename_libavutil_cpu.c 2015-07-26 17:38:40.937606000 +0200 -@@ -34,6 +34,7 @@ - #include - #endif - #if HAVE_SYSCTL +@@ -1,2 +1,3 @@ + // File automatically generated. See crbug.com/495833. +#define __BSD_VISIBLE 1 - #if HAVE_SYS_PARAM_H - #include - #endif ---- v8/src/compiler/graph-visualizer.h.orig 2015-07-24 22:28:03.000000000 +0200 -+++ v8/src/compiler/graph-visualizer.h 2015-07-26 18:37:45.488253000 +0200 -@@ -5,7 +5,7 @@ - #ifndef V8_COMPILER_GRAPH_VISUALIZER_H_ - #define V8_COMPILER_GRAPH_VISUALIZER_H_ - --#include -+#include - #include - - namespace v8 { -@@ -21,7 +21,7 @@ - class Schedule; - class SourcePositionTable; - --FILE* OpenVisualizerLogFile(CompilationInfo* info, const char* phase, -+std::FILE* OpenVisualizerLogFile(CompilationInfo* info, const char* phase, - const char* suffix, const char* mode); - - struct AsDOT { + #include "cpu.c" --- v8/src/log-utils.h.orig 2015-10-13 21:04:45.000000000 +0200 +++ v8/src/log-utils.h 2015-10-17 10:17:35.535561000 +0200 @@ -5,6 +5,9 @@ #ifndef V8_LOG_UTILS_H_ #define V8_LOG_UTILS_H_ - + +#include +#include + @@ -151,7 +118,7 @@ +++ third_party/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc 2015-11-01 11:32:36.293750000 +0100 @@ -11,6 +11,7 @@ #include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h" - + #include +#include #include @@ -162,15 +129,15 @@ @@ -42,7 +42,7 @@ else if (hue * 3.0 < 2.0) result = temp1 + (temp2 - temp1) * (2.0 / 3.0 - hue) * 6.0; - + - return static_cast(std::round(result * 255)); + return static_cast(round(result * 255)); } - + // Assumes sRGB. @@ -85,7 +85,7 @@ } - + uint8_t GetLuma(SkColor color) { - return static_cast(std::round((0.299 * SkColorGetR(color)) + + return static_cast(round((0.299 * SkColorGetR(color)) + @@ -188,12 +155,12 @@ + static_cast(round(g)), + static_cast(round(b))); } - + void BuildLumaHistogram(const SkBitmap& bitmap, int histogram[256]) { @@ -275,10 +275,10 @@ double b = (SkColorGetB(foreground) * f_weight + SkColorGetB(background) * b_weight) / 255.0; - + - return SkColorSetARGB(static_cast(std::round(normalizer)), - static_cast(std::round(r)), - static_cast(std::round(g)), @@ -203,18 +170,18 @@ + static_cast(round(g)), + static_cast(round(b))); } - + bool IsDark(SkColor color) { --- media/filters/audio_clock.cc.orig 2016-04-07 11:55:00.678817033 +0200 +++ media/filters/audio_clock.cc 2016-04-07 11:55:28.152814716 +0200 @@ -121,7 +121,7 @@ } - + return base::TimeDelta::FromMicroseconds( - std::round(frames_until_timestamp * microseconds_per_frame_)); + round(frames_until_timestamp * microseconds_per_frame_)); } - + void AudioClock::ContiguousAudioDataBufferedForTesting( --- media/filters/audio_clock.h.orig 2016-04-08 14:22:02.833940146 +0200 +++ media/filters/audio_clock.h 2016-04-08 14:22:14.433876920 +0200 @@ -230,7 +197,7 @@ - std::round(back_timestamp_micros_)); + round(back_timestamp_micros_)); } - + // Returns the amount of wall time until |timestamp| will be played by the --- content/browser/web_contents/web_contents_impl.cc.orig 2016-04-08 15:44:21.989537858 +0200 +++ content/browser/web_contents/web_contents_impl.cc 2016-04-08 15:44:44.574535099 +0200 @@ -246,7 +213,7 @@ --- chrome/browser/ui/views/frame/browser_root_view.cc.orig 2016-04-08 17:23:19.749128496 +0200 +++ chrome/browser/ui/views/frame/browser_root_view.cc 2016-04-08 17:23:30.609126494 +0200 @@ -139,10 +139,10 @@ - + // Number of integer scroll events that have passed in each direction. int whole_scroll_amount_x = - std::lround(static_cast(scroll_remainder_x_) / @@ -256,16 +223,16 @@ - std::lround(static_cast(scroll_remainder_y_) / + lround(static_cast(scroll_remainder_y_) / ui::MouseWheelEvent::kWheelDelta); - + // Adjust the remainder such that any whole scrolls we have taken action --- base/process/memory.h.orig 2016-06-06 21:05:12.000000000 +0200 +++ base/process/memory.h 2016-06-12 20:04:24.000000000 +0200 @@ -6,6 +6,7 @@ #define BASE_PROCESS_MEMORY_H_ - + #include +#include - + #include "base/base_export.h" #include "base/process/process_handle.h" --- media/audio/audio_output_device.cc.orig 2016-06-06 21:05:19.000000000 +0200 @@ -278,61 +245,39 @@ + render_callback_->Render(output_bus_.get(), round(frames_delayed), frames_skipped); } - + --- media/audio/audio_output_stream_sink.cc.orig 2016-06-06 21:05:19.000000000 +0200 +++ media/audio/audio_output_stream_sink.cc 2016-06-12 20:35:05.000000000 +0200 @@ -85,7 +85,7 @@ if (!active_render_callback_) return 0; - + - uint32_t frames_delayed = std::round(static_cast(total_bytes_delay) / + uint32_t frames_delayed = round(static_cast(total_bytes_delay) / active_params_.GetBytesPerFrame()); - + return active_render_callback_->Render(dest, frames_delayed, frames_skipped); ---- media/base/audio_renderer_mixer_input.cc.orig 2016-06-06 21:05:19.000000000 +0200 -+++ media/base/audio_renderer_mixer_input.cc 2016-06-12 20:50:35.000000000 +0200 -@@ -164,7 +164,7 @@ - // TODO(chcunningham): Delete this conversion and change ProvideInput to more - // precisely describe delay as a count of frames delayed instead of TimeDelta. - // See http://crbug.com/587522. -- uint32_t frames_delayed = std::round(buffer_delay.InMicroseconds() / -+ uint32_t frames_delayed = round(buffer_delay.InMicroseconds() / - params_.GetMicrosecondsPerFrame()); - - int frames_filled = callback_->Render(audio_bus, frames_delayed, 0); ---- media/base/audio_renderer_mixer.cc.orig 2016-06-06 21:05:19.000000000 +0200 -+++ media/base/audio_renderer_mixer.cc 2016-06-12 20:52:34.000000000 +0200 -@@ -138,7 +138,7 @@ - // expect a count of frames delayed instead of TimeDelta (less precise). - // See http://crbug.com/587522. - base::TimeDelta audio_delay = base::TimeDelta::FromMicroseconds( -- std::round(frames_delayed * output_params_.GetMicrosecondsPerFrame())); -+ round(frames_delayed * output_params_.GetMicrosecondsPerFrame())); - - master_converter_.ConvertWithDelay(audio_delay, audio_bus); - return audio_bus->frames(); --- third_party/WebKit/Source/modules/battery/battery_status.h.orig 2016-06-06 21:05:36.000000000 +0200 +++ third_party/WebKit/Source/modules/battery/battery_status.h 2016-06-13 20:21:31.000000000 +0200 @@ -46,7 +46,7 @@ // of reducing the possibility of fingerprinting and triggers less level // change events on platforms where the granularity is high. - ASSERT(level >= 0 && level <= 1); + DCHECK(level >= 0 && level <= 1); - return std::round(level * 100) / 100.f; + return round(level * 100) / 100.f; } - + bool charging_; --- chrome/common/channel_info_posix.cc.orig 2016-06-06 21:05:14.000000000 +0200 +++ chrome/common/channel_info_posix.cc 2016-06-13 21:36:53.000000000 +0200 @@ -8,6 +8,8 @@ #include "build/build_config.h" #include "components/version_info/version_info.h" - + +#include + namespace chrome { - + namespace { --- chrome/browser/ui/views/tabs/tab_strip.cc.orig 2016-06-06 21:05:14.000000000 +0200 +++ chrome/browser/ui/views/tabs/tab_strip.cc 2016-06-13 22:03:03.000000000 +0200 @@ -360,3 +305,13 @@ CreateShadowDrawLooper(SkColorSetA(stroke_color, alpha))); canvas->DrawPath(fill, paint); +--- base/trace_event/heap_profiler_allocation_context_tracker.cc.orig 2016-08-03 22:02:10.000000000 +0300 ++++ base/trace_event/heap_profiler_allocation_context_tracker.cc 2016-08-21 04:17:53.717876000 +0300 +@@ -13,6 +13,7 @@ + #include "base/threading/thread_local_storage.h" + #include "base/trace_event/heap_profiler_allocation_context.h" + ++#include + #if defined(OS_LINUX) || defined(OS_ANDROID) + #include + #endif Copied: branches/2016Q4/www/chromium/files/patch-BUILD.gn (from r426855, head/www/chromium/files/patch-BUILD.gn) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/www/chromium/files/patch-BUILD.gn Wed Nov 23 20:39:33 2016 (r426975, copy of r426855, head/www/chromium/files/patch-BUILD.gn) @@ -0,0 +1,164 @@ +--- BUILD.gn.orig 2016-10-06 04:02:07.000000000 +0300 ++++ BUILD.gn 2016-10-13 10:32:25.742762000 +0300 +@@ -201,7 +201,7 @@ + ] + } + +- if (!is_ios && !is_android && !is_chromecast) { ++ if (!is_ios && !is_android && !is_bsd && !is_chromecast) { + deps += [ + "//chrome", + "//chrome/test:browser_tests", +@@ -260,7 +260,7 @@ + ] + } + +- if (!is_ios) { ++ if (!is_ios && !is_bsd) { + # TODO(GYP): Figure out which of these should actually build on iOS, + # and whether there should be other targets that are iOS-only and missing. + deps += [ +@@ -300,7 +300,7 @@ + "//ui/touch_selection:ui_touch_selection_unittests", + "//url/ipc:url_ipc_unittests", + ] +- } else { ++ } else if (!is_bsd) { + deps += [ "//ios:all" ] + } + +@@ -457,7 +457,7 @@ + ] + } + +- if (is_linux) { ++ if (is_linux || is_bsd) { + # The following are definitely linux-only. *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Wed Nov 23 22:28:18 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CA94C511BF; Wed, 23 Nov 2016 22:28:18 +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 239551F7A; Wed, 23 Nov 2016 22:28:18 +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 uANMSHJD083356; Wed, 23 Nov 2016 22:28:17 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANMSH7p083353; Wed, 23 Nov 2016 22:28:17 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201611232228.uANMSH7p083353@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Wed, 23 Nov 2016 22:28:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426980 - branches/2016Q4/security/linux-c6-nss 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 22:28:18 -0000 Author: tijl Date: Wed Nov 23 22:28:16 2016 New Revision: 426980 URL: https://svnweb.freebsd.org/changeset/ports/426980 Log: MFH: r426891 Update to nss 3.21.3-2.el6_8 and nss-util 3.21.3-1.el6_8. PR: 214755 Submitted by: Piotr Kubaj Security: https://access.redhat.com/errata/RHSA-2016:2779 Approved by: ports-secteam (feld) Modified: branches/2016Q4/security/linux-c6-nss/Makefile branches/2016Q4/security/linux-c6-nss/distinfo.i386 branches/2016Q4/security/linux-c6-nss/distinfo.x86_64 Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/security/linux-c6-nss/Makefile ============================================================================== --- branches/2016Q4/security/linux-c6-nss/Makefile Wed Nov 23 21:44:10 2016 (r426979) +++ branches/2016Q4/security/linux-c6-nss/Makefile Wed Nov 23 22:28:16 2016 (r426980) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= nss -PORTVERSION= 3.21.0 -PORTREVISION= 3 +PORTVERSION= 3.21.3 CATEGORIES= security linux LIB_DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ - nss-util-${PORTVERSION}-2.el6${EXTRACT_SUFX} \ + nss-util-${PORTVERSION}-1.el6_8${EXTRACT_SUFX} \ nss-softokn-3.14.3-23.3.el6_8${EXTRACT_SUFX} \ nss-softokn-freebl-3.14.3-23.3.el6_8${EXTRACT_SUFX} @@ -15,14 +14,14 @@ COMMENT= Network Security Services (Linu LICENSE= MPL -RPMVERSION= 8.el6 +RPMVERSION= 2.el6_8 USES= linux:c6 USE_LINUX= nspr sqlite3 USE_LINUX_RPM= yes USE_LDCONFIG= yes SRC_DISTFILES= ${DISTNAME}${SRC_SUFX}:SOURCE \ - nss-util-${PORTVERSION}-2.el6.src.rpm:SOURCE \ + nss-util-${PORTVERSION}-1.el6_8.src.rpm:SOURCE \ nss-softokn-3.14.3-23.3.el6_8.src.rpm:SOURCE DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr Modified: branches/2016Q4/security/linux-c6-nss/distinfo.i386 ============================================================================== --- branches/2016Q4/security/linux-c6-nss/distinfo.i386 Wed Nov 23 21:44:10 2016 (r426979) +++ branches/2016Q4/security/linux-c6-nss/distinfo.i386 Wed Nov 23 22:28:16 2016 (r426980) @@ -1,15 +1,15 @@ -TIMESTAMP = 1468444432 -SHA256 (rpm/i686/centos/6.8/nss-3.21.0-8.el6.i686.rpm) = ab4f53ccbdcb2c2c409ea41dcd32d253f9d1acce61648d1bfb3efe7e01b14152 -SIZE (rpm/i686/centos/6.8/nss-3.21.0-8.el6.i686.rpm) = 881204 -SHA256 (rpm/i686/centos/6.8/nss-util-3.21.0-2.el6.i686.rpm) = 23021bfcd0016e9570cd64edda81063a271dedc30ce4dfc989cfacbbb36deca1 -SIZE (rpm/i686/centos/6.8/nss-util-3.21.0-2.el6.i686.rpm) = 68152 +TIMESTAMP = 1479846995 +SHA256 (rpm/i686/centos/6.8/nss-3.21.3-2.el6_8.i686.rpm) = f715cf616cb68f87d7e182a043e145afea7493e6b43f9cec966340cabf1d44ef +SIZE (rpm/i686/centos/6.8/nss-3.21.3-2.el6_8.i686.rpm) = 881768 +SHA256 (rpm/i686/centos/6.8/nss-util-3.21.3-1.el6_8.i686.rpm) = 2b1b1266d666edc9b6ea677d418ba62c208ffd52e7033b03887d646a90c22eba +SIZE (rpm/i686/centos/6.8/nss-util-3.21.3-1.el6_8.i686.rpm) = 68328 SHA256 (rpm/i686/centos/6.8/nss-softokn-3.14.3-23.3.el6_8.i686.rpm) = 05ddcfdc1ac5e369ce1fc6c11b5d11e96ee14a87e30d16b150950bf769029022 SIZE (rpm/i686/centos/6.8/nss-softokn-3.14.3-23.3.el6_8.i686.rpm) = 276536 SHA256 (rpm/i686/centos/6.8/nss-softokn-freebl-3.14.3-23.3.el6_8.i686.rpm) = c691e669816890bc0de9c05e83ce632836f9098acad04781c95abb9dc3de34dc SIZE (rpm/i686/centos/6.8/nss-softokn-freebl-3.14.3-23.3.el6_8.i686.rpm) = 161168 -SHA256 (rpm/i686/centos/6.8/nss-3.21.0-8.el6.src.rpm) = 008750a9f11ece3823ca9424addb5d491e73a579a85fe047b90640b70bd1083e -SIZE (rpm/i686/centos/6.8/nss-3.21.0-8.el6.src.rpm) = 5679718 -SHA256 (rpm/i686/centos/6.8/nss-util-3.21.0-2.el6.src.rpm) = e716c4b52d6f40b8350cde50061867d7d9cc4ba1dcde80dd2a62e2bcd124483c -SIZE (rpm/i686/centos/6.8/nss-util-3.21.0-2.el6.src.rpm) = 772768 +SHA256 (rpm/i686/centos/6.8/nss-3.21.3-2.el6_8.src.rpm) = e7beaea47d4af5a3f35bf85fa0a4907717b5e5e555e51e8e49d78be98b67b867 +SIZE (rpm/i686/centos/6.8/nss-3.21.3-2.el6_8.src.rpm) = 5680931 +SHA256 (rpm/i686/centos/6.8/nss-util-3.21.3-1.el6_8.src.rpm) = cb62c2b82021eb8f1063999fbb99cd30728b289e20e9df943405db1733d7524c +SIZE (rpm/i686/centos/6.8/nss-util-3.21.3-1.el6_8.src.rpm) = 764093 SHA256 (rpm/i686/centos/6.8/nss-softokn-3.14.3-23.3.el6_8.src.rpm) = 01fe8fafbbfcf904b24e8ea78cc064b2e89fb4c2c14eb8176fb13d15b542b91e SIZE (rpm/i686/centos/6.8/nss-softokn-3.14.3-23.3.el6_8.src.rpm) = 1305116 Modified: branches/2016Q4/security/linux-c6-nss/distinfo.x86_64 ============================================================================== --- branches/2016Q4/security/linux-c6-nss/distinfo.x86_64 Wed Nov 23 21:44:10 2016 (r426979) +++ branches/2016Q4/security/linux-c6-nss/distinfo.x86_64 Wed Nov 23 22:28:16 2016 (r426980) @@ -1,23 +1,23 @@ -TIMESTAMP = 1468442254 -SHA256 (rpm/x86_64/centos/6.8/nss-3.21.0-8.el6.i686.rpm) = ab4f53ccbdcb2c2c409ea41dcd32d253f9d1acce61648d1bfb3efe7e01b14152 -SIZE (rpm/x86_64/centos/6.8/nss-3.21.0-8.el6.i686.rpm) = 881204 -SHA256 (rpm/x86_64/centos/6.8/nss-util-3.21.0-2.el6.i686.rpm) = 23021bfcd0016e9570cd64edda81063a271dedc30ce4dfc989cfacbbb36deca1 -SIZE (rpm/x86_64/centos/6.8/nss-util-3.21.0-2.el6.i686.rpm) = 68152 +TIMESTAMP = 1479847070 +SHA256 (rpm/x86_64/centos/6.8/nss-3.21.3-2.el6_8.i686.rpm) = f715cf616cb68f87d7e182a043e145afea7493e6b43f9cec966340cabf1d44ef +SIZE (rpm/x86_64/centos/6.8/nss-3.21.3-2.el6_8.i686.rpm) = 881768 +SHA256 (rpm/x86_64/centos/6.8/nss-util-3.21.3-1.el6_8.i686.rpm) = 2b1b1266d666edc9b6ea677d418ba62c208ffd52e7033b03887d646a90c22eba +SIZE (rpm/x86_64/centos/6.8/nss-util-3.21.3-1.el6_8.i686.rpm) = 68328 SHA256 (rpm/x86_64/centos/6.8/nss-softokn-3.14.3-23.3.el6_8.i686.rpm) = 05ddcfdc1ac5e369ce1fc6c11b5d11e96ee14a87e30d16b150950bf769029022 SIZE (rpm/x86_64/centos/6.8/nss-softokn-3.14.3-23.3.el6_8.i686.rpm) = 276536 SHA256 (rpm/x86_64/centos/6.8/nss-softokn-freebl-3.14.3-23.3.el6_8.i686.rpm) = c691e669816890bc0de9c05e83ce632836f9098acad04781c95abb9dc3de34dc SIZE (rpm/x86_64/centos/6.8/nss-softokn-freebl-3.14.3-23.3.el6_8.i686.rpm) = 161168 -SHA256 (rpm/x86_64/centos/6.8/nss-3.21.0-8.el6.x86_64.rpm) = 8582989e907c34c87cefb49471df393d20f94850f53171dfe24f24c77ac5b815 -SIZE (rpm/x86_64/centos/6.8/nss-3.21.0-8.el6.x86_64.rpm) = 879240 -SHA256 (rpm/x86_64/centos/6.8/nss-util-3.21.0-2.el6.x86_64.rpm) = 8952da865017c64686144a381f00b43860928f4bf7e674907b0a1992d0405c76 -SIZE (rpm/x86_64/centos/6.8/nss-util-3.21.0-2.el6.x86_64.rpm) = 68704 +SHA256 (rpm/x86_64/centos/6.8/nss-3.21.3-2.el6_8.x86_64.rpm) = 7b8e3cf3ed3d0ae94b6a2161f73354ecfd2195d603ec45c1f079324c08d7cff9 +SIZE (rpm/x86_64/centos/6.8/nss-3.21.3-2.el6_8.x86_64.rpm) = 880044 +SHA256 (rpm/x86_64/centos/6.8/nss-util-3.21.3-1.el6_8.x86_64.rpm) = bd859704174322d1260f00a9ce08d7167cba9b8aef3fb6570c2e8c33bb8c7570 +SIZE (rpm/x86_64/centos/6.8/nss-util-3.21.3-1.el6_8.x86_64.rpm) = 68892 SHA256 (rpm/x86_64/centos/6.8/nss-softokn-3.14.3-23.3.el6_8.x86_64.rpm) = 7e4298904daec41067f01c8943055560cd153d1f39c668c6d2fa978a3d66dd81 SIZE (rpm/x86_64/centos/6.8/nss-softokn-3.14.3-23.3.el6_8.x86_64.rpm) = 268680 SHA256 (rpm/x86_64/centos/6.8/nss-softokn-freebl-3.14.3-23.3.el6_8.x86_64.rpm) = bccc1e55c5cf90d7ee5ef2d25253fc8dd2c3854121a65711f5f5618b097ffb70 SIZE (rpm/x86_64/centos/6.8/nss-softokn-freebl-3.14.3-23.3.el6_8.x86_64.rpm) = 171680 -SHA256 (rpm/x86_64/centos/6.8/nss-3.21.0-8.el6.src.rpm) = 008750a9f11ece3823ca9424addb5d491e73a579a85fe047b90640b70bd1083e -SIZE (rpm/x86_64/centos/6.8/nss-3.21.0-8.el6.src.rpm) = 5679718 -SHA256 (rpm/x86_64/centos/6.8/nss-util-3.21.0-2.el6.src.rpm) = e716c4b52d6f40b8350cde50061867d7d9cc4ba1dcde80dd2a62e2bcd124483c -SIZE (rpm/x86_64/centos/6.8/nss-util-3.21.0-2.el6.src.rpm) = 772768 +SHA256 (rpm/x86_64/centos/6.8/nss-3.21.3-2.el6_8.src.rpm) = e7beaea47d4af5a3f35bf85fa0a4907717b5e5e555e51e8e49d78be98b67b867 +SIZE (rpm/x86_64/centos/6.8/nss-3.21.3-2.el6_8.src.rpm) = 5680931 +SHA256 (rpm/x86_64/centos/6.8/nss-util-3.21.3-1.el6_8.src.rpm) = cb62c2b82021eb8f1063999fbb99cd30728b289e20e9df943405db1733d7524c +SIZE (rpm/x86_64/centos/6.8/nss-util-3.21.3-1.el6_8.src.rpm) = 764093 SHA256 (rpm/x86_64/centos/6.8/nss-softokn-3.14.3-23.3.el6_8.src.rpm) = 01fe8fafbbfcf904b24e8ea78cc064b2e89fb4c2c14eb8176fb13d15b542b91e SIZE (rpm/x86_64/centos/6.8/nss-softokn-3.14.3-23.3.el6_8.src.rpm) = 1305116 From owner-svn-ports-branches@freebsd.org Wed Nov 23 22:29: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 6523BC5124F; Wed, 23 Nov 2016 22:29:56 +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 1D0E6135; Wed, 23 Nov 2016 22:29:56 +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 uANMTt8I083580; Wed, 23 Nov 2016 22:29:55 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANMTtW3083578; Wed, 23 Nov 2016 22:29:55 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201611232229.uANMTtW3083578@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Wed, 23 Nov 2016 22:29:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426981 - in branches/2016Q4/net/mpich: . 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 22:29:56 -0000 Author: tijl Date: Wed Nov 23 22:29:55 2016 New Revision: 426981 URL: https://svnweb.freebsd.org/changeset/ports/426981 Log: MFH: r426949 Add patch to apply alignment attribute to a struct instead of a typedef. This rounds the size of the struct to a multiple of the alignment such that malloc and friends allocate memory with the correct alignment. PR: 214784 Approved by: ports-secteam (feld) Added: branches/2016Q4/net/mpich/files/patch-src-include-mpiimpl.h - copied unchanged from r426949, head/net/mpich/files/patch-src-include-mpiimpl.h Modified: branches/2016Q4/net/mpich/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/net/mpich/Makefile ============================================================================== --- branches/2016Q4/net/mpich/Makefile Wed Nov 23 22:28:16 2016 (r426980) +++ branches/2016Q4/net/mpich/Makefile Wed Nov 23 22:29:55 2016 (r426981) @@ -2,7 +2,7 @@ PORTNAME= mpich PORTVERSION= 3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net parallel MASTER_SITES= http://www.mpich.org/static/downloads/${DISTVERSION}/ Copied: branches/2016Q4/net/mpich/files/patch-src-include-mpiimpl.h (from r426949, head/net/mpich/files/patch-src-include-mpiimpl.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/net/mpich/files/patch-src-include-mpiimpl.h Wed Nov 23 22:29:55 2016 (r426981, copy of r426949, head/net/mpich/files/patch-src-include-mpiimpl.h) @@ -0,0 +1,11 @@ +--- src/include/mpiimpl.h.orig 2015-11-10 02:39:01 UTC ++++ src/include/mpiimpl.h +@@ -1528,7 +1528,7 @@ typedef struct MPID_Request { + #ifdef MPID_DEV_REQUEST_DECL + MPID_DEV_REQUEST_DECL + #endif +-} MPID_Request ATTRIBUTE((__aligned__(32))); ++} ATTRIBUTE((__aligned__(32))) MPID_Request; + + extern MPIU_Object_alloc_t MPID_Request_mem; + /* Preallocated request objects */ From owner-svn-ports-branches@freebsd.org Wed Nov 23 23:39:53 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 A11B7C515E7; Wed, 23 Nov 2016 23:39:53 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BAF3B62; Wed, 23 Nov 2016 23:39:53 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uANNdq78011811; Wed, 23 Nov 2016 23:39:52 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANNdq6L011807; Wed, 23 Nov 2016 23:39:52 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201611232339.uANNdq6L011807@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Wed, 23 Nov 2016 23:39:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426984 - branches/2016Q4/net/gnome-online-accounts 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 23:39:53 -0000 Author: cpm Date: Wed Nov 23 23:39:52 2016 New Revision: 426984 URL: https://svnweb.freebsd.org/changeset/ports/426984 Log: MFH: r426868 net/gnome-online-accounts: - Update gnome-online-accounts to 3.18.6 - Add LICENSE and LICENSE_FILE - Switch to USES=localbase:ldflags - Add missing dependencies - Record TIMESTAMP and distinfo checksum (3.18.6) - Add WWW to pkg-descr PR: 214246 Submitted by: cpm Reviewed by: amdmi3, feld (mentors) Approved by: kwm (GNOME team), amdmi3, feld (mentors) Approved by: ports-secteam (feld) Modified: branches/2016Q4/net/gnome-online-accounts/Makefile branches/2016Q4/net/gnome-online-accounts/distinfo branches/2016Q4/net/gnome-online-accounts/pkg-descr Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/net/gnome-online-accounts/Makefile ============================================================================== --- branches/2016Q4/net/gnome-online-accounts/Makefile Wed Nov 23 23:10:59 2016 (r426983) +++ branches/2016Q4/net/gnome-online-accounts/Makefile Wed Nov 23 23:39:52 2016 (r426984) @@ -2,14 +2,16 @@ # $FreeBSD$ PORTNAME= gnome-online-accounts -PORTVERSION= 3.18.4 -PORTREVISION= 1 +PORTVERSION= 3.18.6 CATEGORIES= net MASTER_SITES= GNOME MAINTAINER= gnome@FreeBSD.org COMMENT= Interface provider to access the user's online accounts +LICENSE= LGPL20+ +LICENSE_FILE= ${WRKSRC}/COPYING + BUILD_DEPENDS= docbook-xsl>=0:textproc/docbook-xsl LIB_DEPENDS= libwebkit2gtk-4.0.so:www/webkit2-gtk3 \ libdbus-glib-1.so:devel/dbus-glib \ @@ -17,17 +19,16 @@ LIB_DEPENDS= libwebkit2gtk-4.0.so:www/we libjson-glib-1.0.so:devel/json-glib \ libnotify.so:devel/libnotify \ libsecret-1.so:security/libsecret \ + libsoup-2.4.so:devel/libsoup \ librest-0.7.so:devel/librest PORTSCOUT= limitw:1,even -USES= gettext gmake gnome libtool pathfix pkgconfig tar:xz -USE_GNOME= gtk30 intlhack introspection:build libxslt:build +USES= gettext gmake gnome localbase:ldflags libtool pathfix pkgconfig tar:xz +USE_GNOME= cairo gtk30 intlhack introspection:build libxslt:build GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALLS_ICONS= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip CONFIGURE_ARGS= --enable-lastfm Modified: branches/2016Q4/net/gnome-online-accounts/distinfo ============================================================================== --- branches/2016Q4/net/gnome-online-accounts/distinfo Wed Nov 23 23:10:59 2016 (r426983) +++ branches/2016Q4/net/gnome-online-accounts/distinfo Wed Nov 23 23:39:52 2016 (r426984) @@ -1,2 +1,3 @@ -SHA256 (gnome-online-accounts-3.18.4.tar.xz) = 9f23460aa6b1d8a63a8f3e979cba791cc88b5e07116f07da59fdcea09d79c74d -SIZE (gnome-online-accounts-3.18.4.tar.xz) = 1384756 +TIMESTAMP = 1478316573 +SHA256 (gnome-online-accounts-3.18.6.tar.xz) = 7e7c581b19b213d04c56a080ed7240a90999d7be2daca27d4aa054d205b48fa5 +SIZE (gnome-online-accounts-3.18.6.tar.xz) = 1478544 Modified: branches/2016Q4/net/gnome-online-accounts/pkg-descr ============================================================================== --- branches/2016Q4/net/gnome-online-accounts/pkg-descr Wed Nov 23 23:10:59 2016 (r426983) +++ branches/2016Q4/net/gnome-online-accounts/pkg-descr Wed Nov 23 23:39:52 2016 (r426984) @@ -1,2 +1,4 @@ gnome-online-accounts provides interfaces so applications and libraries in GNOME can access the user's online accounts. + +WWW: https://wiki.gnome.org/Projects/GnomeOnlineAccounts From owner-svn-ports-branches@freebsd.org Thu Nov 24 14:26:00 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 E17A0C5302C; Thu, 24 Nov 2016 14:26:00 +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 BC3AC2C3; Thu, 24 Nov 2016 14:26:00 +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 uAOEPx7a070186; Thu, 24 Nov 2016 14:25:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAOEPxE8070184; Thu, 24 Nov 2016 14:25:59 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611241425.uAOEPxE8070184@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 24 Nov 2016 14:25:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r427015 - in branches/2016Q4/devel/renpy6: . 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Nov 2016 14:26:01 -0000 Author: jbeich Date: Thu Nov 24 14:25:59 2016 New Revision: 427015 URL: https://svnweb.freebsd.org/changeset/ports/427015 Log: MFH: r427014 devel/renpy6: bring back cython fixes lost in r421472 $ katawa-shoujo KeyError(4294967295,) Full traceback: File "renpy/common/00start.rpy", line 152, in script $ ui.interact(suppress_underlay=True, suppress_overlay=True) File "/usr/local/share/renpy/renpy/ast.py", line 785, in execute renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store) File "/usr/local/share/renpy/renpy/python.py", line 1382, in py_exec_bytecode exec bytecode in globals, locals File "renpy/common/00start.rpy", line 152, in $ ui.interact(suppress_underlay=True, suppress_overlay=True) File "/usr/local/share/renpy/renpy/ui.py", line 247, in interact rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs) File "/usr/local/share/renpy/renpy/display/core.py", line 2149, in interact repeat, rv = self.interact_core(preloads=preloads, **kwargs) File "/usr/local/share/renpy/renpy/display/core.py", line 2478, in interact_core self.draw_screen(root_widget, fullscreen_video, (not fullscreen_video) or video_frame_drawn) File "/usr/local/share/renpy/renpy/display/core.py", line 1681, in draw_screen renpy.display.draw.draw_screen(surftree, fullscreen_video) File "renpy/gl/gldraw.pyx", line 676, in renpy.gl.gldraw.GLDraw.draw_screen (gen/renpy.gl.gldraw.c:10499) gltexture.cleanup() File "renpy/gl/gltexture.pyx", line 559, in renpy.gl.gltexture.cleanup (gen/renpy.gl.gltexture.c:7100) t.deallocate() File "renpy/gl/gltexture.pyx", line 479, in renpy.gl.gltexture.TextureCore.deallocate (gen/renpy.gl.gltexture.c:5745) texture_numbers.remove(self.number) KeyError: 4294967295 Approved by: ports-secteam blanket Added: branches/2016Q4/devel/renpy6/files/patch-renpy_gl_gltexture.pyx - copied unchanged from r427014, head/devel/renpy6/files/patch-renpy_gl_gltexture.pyx Modified: branches/2016Q4/devel/renpy6/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/renpy6/Makefile ============================================================================== --- branches/2016Q4/devel/renpy6/Makefile Thu Nov 24 14:23:39 2016 (r427014) +++ branches/2016Q4/devel/renpy6/Makefile Thu Nov 24 14:25:59 2016 (r427015) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTVERSION= 6.18.3 -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= 6 CONFLICTS_INSTALL= ${PORTNAME}-[0-9]* Copied: branches/2016Q4/devel/renpy6/files/patch-renpy_gl_gltexture.pyx (from r427014, head/devel/renpy6/files/patch-renpy_gl_gltexture.pyx) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/devel/renpy6/files/patch-renpy_gl_gltexture.pyx Thu Nov 24 14:25:59 2016 (r427015, copy of r427014, head/devel/renpy6/files/patch-renpy_gl_gltexture.pyx) @@ -0,0 +1,45 @@ +https://github.com/renpy/renpy/commit/ecadc55616f3 +https://github.com/renpy/renpy/commit/e680702e87b8 + +--- renpy/gl/gltexture.pyx.orig 2014-10-05 01:47:19 UTC ++++ renpy/gl/gltexture.pyx +@@ -255,7 +255,7 @@ cdef class TextureCore: + # The number of the OpenGL texture this texture object + # represents. + self.generation = 0 +- self.number = -1 ++ self.number = 0 + + # The format of this texture in the GPU (or 0 if not known). + self.format = 0 +@@ -447,7 +447,7 @@ cdef class TextureCore: + + cdef unsigned int texnums[1] + +- if self.number != -1: ++ if self.number != 0: + return 0 + + glGenTextures(1, texnums) +@@ -468,17 +468,19 @@ cdef class TextureCore: + + global total_texture_size + +- if self.number == -1: ++ if self.number == 0: + return + + cdef GLuint texnums[1] + + texnums[0] = self.number + glDeleteTextures(1, texnums) ++ self.number = 0 + +- texture_numbers.remove(self.number) ++ texture_numbers.discard(self.number) + total_texture_size -= self.width * self.height * 4 + ++ + class Texture(TextureCore): + """ + We need to be a real python class, not a C extension, to ensure that From owner-svn-ports-branches@freebsd.org Thu Nov 24 14:55: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 E03D7C53D5A; Thu, 24 Nov 2016 14:55:02 +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 A26211D5; Thu, 24 Nov 2016 14:55:02 +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 uAOEt1NZ084128; Thu, 24 Nov 2016 14:55:01 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAOEt1Hx084122; Thu, 24 Nov 2016 14:55:01 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201611241455.uAOEt1Hx084122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 24 Nov 2016 14:55:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r427021 - in branches/2016Q4: . irc/znc irc/znc/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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Nov 2016 14:55:03 -0000 Author: amdmi3 Date: Thu Nov 24 14:55:01 2016 New Revision: 427021 URL: https://svnweb.freebsd.org/changeset/ports/427021 Log: MFH: r426896 - Create znc user/group - Set permissions properly on ETCDIR - Add an information on znc user/group to pkg-message - Pass maintainership to dbaio PR: 200005 Submitted by: josh+freebsd@zevlag.com, dbaio@bsd.com.br Approved by: ports-secteam (feld) Added: branches/2016Q4/irc/znc/files/pkg-message.in - copied unchanged from r426896, head/irc/znc/files/pkg-message.in Deleted: branches/2016Q4/irc/znc/pkg-message Modified: branches/2016Q4/GIDs branches/2016Q4/UIDs branches/2016Q4/irc/znc/Makefile branches/2016Q4/irc/znc/distinfo branches/2016Q4/irc/znc/pkg-plist Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/GIDs ============================================================================== --- branches/2016Q4/GIDs Thu Nov 24 14:50:36 2016 (r427020) +++ branches/2016Q4/GIDs Thu Nov 24 14:55:01 2016 (r427021) @@ -838,7 +838,7 @@ graylog:*:848: # free: 894 # free: 895 # free: 896 -# free: 897 +znc:*:897: ufdb:*:898: guacamole:*:899: seafile:*:900: Modified: branches/2016Q4/UIDs ============================================================================== --- branches/2016Q4/UIDs Thu Nov 24 14:50:36 2016 (r427020) +++ branches/2016Q4/UIDs Thu Nov 24 14:55:01 2016 (r427021) @@ -843,7 +843,7 @@ graylog:*:848:848::0:0:Graylog user:/non # free: 894 # free: 895 # free: 896 -# free: 897 +znc:*:897:897::0:0:ZNC User:/nonexistent:/usr/sbin/nologin ufdb:*:898:898::0:0:ufdb user:/nonexistent:/usr/sbin/nologin guacamole:*:899:899::0:0:Guacamole user:/nonexistent:/usr/sbin/nologin seafile:*:900:900::0:0:Seafile user:/nonexistent:/usr/bin/nologin Modified: branches/2016Q4/irc/znc/Makefile ============================================================================== --- branches/2016Q4/irc/znc/Makefile Thu Nov 24 14:50:36 2016 (r427020) +++ branches/2016Q4/irc/znc/Makefile Thu Nov 24 14:55:01 2016 (r427021) @@ -3,12 +3,12 @@ PORTNAME= znc PORTVERSION= 1.6.3 -PORTREVISION= 3 +PORTREVISION= 5 CATEGORIES= irc ipv6 MASTER_SITES= http://znc.in/releases/ \ http://znc.in/releases/archive/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dbaio@bsd.com.br COMMENT= Advanced IRC bouncer LICENSE= APACHE20 @@ -16,9 +16,15 @@ LICENSE_FILE= ${WRKSRC}/LICENSE GNU_CONFIGURE= yes USE_RC_SUBR= znc -USES= compiler:c++11-lib cpe gmake iconv pkgconfig +SUB_FILES= pkg-message +USES= compiler:c++11-lib cpe gmake iconv pathfix pkgconfig MAKE_ENV= V=1 +PORTDOCS= README.md + +USERS= znc +GROUPS= znc + OPTIONS_DEFINE= CHARSET CYRUS DEBUG DOCS IPV6 OPENSSL PERL PYTHON TCL OPTIONS_DEFAULT= OPENSSL PERL OPTIONS_SUB= yes @@ -53,8 +59,6 @@ TCL_CONFIGURE_ENABLE= tcl TCL_CONFIGURE_ON= --with-tcl=${TCL_LIBDIR} TCL_USES= tcl -PORTDOCS= README.md - # Instead of using bundled swig generated files, delete them to force # regeneration using swig 2.0.11+ (fixes port compilation using clang) # @@ -66,9 +70,6 @@ pre-configure-PYTHON-on: post-patch: @${REINPLACE_CMD} -e \ - 's#$$(libdir)/pkgconfig#${PREFIX}/libdata/pkgconfig#' \ - ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e \ 's#/usr/local#${LOCALBASE}#' ${WRKSRC}/configure post-install-DOCS-on: @@ -76,6 +77,8 @@ post-install-DOCS-on: .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}" + +post-install: + @${MKDIR} ${STAGEDIR}${ETCDIR} .include Modified: branches/2016Q4/irc/znc/distinfo ============================================================================== --- branches/2016Q4/irc/znc/distinfo Thu Nov 24 14:50:36 2016 (r427020) +++ branches/2016Q4/irc/znc/distinfo Thu Nov 24 14:55:01 2016 (r427021) @@ -1,2 +1,3 @@ +TIMESTAMP = 1475969471 SHA256 (znc-1.6.3.tar.gz) = 631c46de76fe601a41ef7676bc974958e9a302b72b25fc92b4a603a25d89b827 SIZE (znc-1.6.3.tar.gz) = 1464200 Copied: branches/2016Q4/irc/znc/files/pkg-message.in (from r426896, head/irc/znc/files/pkg-message.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/irc/znc/files/pkg-message.in Thu Nov 24 14:55:01 2016 (r427021, copy of r426896, head/irc/znc/files/pkg-message.in) @@ -0,0 +1,19 @@ +***************************************************************************** + +If you are upgrading znc from a version prior to 1.0, please be aware that +znc will modify your configuration file to incorporate support for new +functionality. + +Please visit the following URL for more information: + +http://wiki.znc.in/ChangeLog/1.0 + +***************************************************************************** + +For generate your config file using znc user, execute: + +su -m znc -c 'znc -d %%ETCDIR%% --makeconf' +or +sudo -u znc znc -d %%ETCDIR%% --makeconf + +***************************************************************************** Modified: branches/2016Q4/irc/znc/pkg-plist ============================================================================== --- branches/2016Q4/irc/znc/pkg-plist Thu Nov 24 14:50:36 2016 (r427020) +++ branches/2016Q4/irc/znc/pkg-plist Thu Nov 24 14:55:01 2016 (r427021) @@ -169,3 +169,4 @@ man/man1/znc.1.gz %%DATADIR%%/webskins/ice/pub/pagebg.gif %%DATADIR%%/webskins/ice/tmpl/FooterTag.tmpl %%DATADIR%%/webskins/ice/tmpl/Header.tmpl +@dir(znc,znc,755) %%ETCDIR%% From owner-svn-ports-branches@freebsd.org Thu Nov 24 17:14: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 B1F9BC52973; Thu, 24 Nov 2016 17:14:46 +0000 (UTC) (envelope-from pi@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 8C7EBDA; Thu, 24 Nov 2016 17:14:46 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAOHEj3I043569; Thu, 24 Nov 2016 17:14:45 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAOHEjgU043565; Thu, 24 Nov 2016 17:14:45 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201611241714.uAOHEjgU043565@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 24 Nov 2016 17:14:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r427055 - in branches/2016Q4/devel/distcc: . 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Nov 2016 17:14:46 -0000 Author: pi Date: Thu Nov 24 17:14:45 2016 New Revision: 427055 URL: https://svnweb.freebsd.org/changeset/ports/427055 Log: devel/distcc: Update MASTER_SITES to make fetchable, unbreak, regen patches MFH: r427000 PR: 213875 Submitted by: Matthieu Volat Approved by: ports-secteam (feld) Added: branches/2016Q4/devel/distcc/files/patch-src_dparent.c - copied unchanged from r427000, head/devel/distcc/files/patch-src_dparent.c Deleted: branches/2016Q4/devel/distcc/files/patch-src-dparent.c.diff Modified: branches/2016Q4/devel/distcc/Makefile branches/2016Q4/devel/distcc/distinfo branches/2016Q4/devel/distcc/files/patch-configure.ac Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/distcc/Makefile ============================================================================== --- branches/2016Q4/devel/distcc/Makefile Thu Nov 24 16:30:30 2016 (r427054) +++ branches/2016Q4/devel/distcc/Makefile Thu Nov 24 17:14:45 2016 (r427055) @@ -6,7 +6,6 @@ PORTNAME= distcc PORTVERSION= 3.1 PORTREVISION= 6 CATEGORIES= devel -MASTER_SITES= GOOGLE_CODE MAINTAINER= ports@FreeBSD.org COMMENT= Distribute compilation of C(++) code acrosss machines on a network @@ -14,19 +13,20 @@ COMMENT= Distribute compilation of C(++) LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= Unfetchable (google code has gone away) - LIB_DEPENDS= libpopt.so:devel/popt GNU_CONFIGURE= yes -USES= alias gmake tar:bzip2 +USES= autoreconf alias gmake libtool pkgconfig tar:bzip2 +USE_GITHUB= yes +GH_ACCOUNT= distcc +GH_TAGNAME= 9a09372 WANT_GNOME= yes GROUPS= distcc USERS= distcc CCLINKDIR?= libexec/distcc -CONFIGURE_ARGS= --disable-Werror +CONFIGURE_ARGS= --disable-Werror CC=${CC} PTHREAD_CC=${CC} CONFIGURE_ENV= PYTHON="${NONEXISTENT}" CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib @@ -72,7 +72,7 @@ DISTCC_COMPILERS= CC c++ cc .include .if ${PORT_OPTIONS:MCLANGLINK} -CLANG_COMPILERS= -devel 31 32 33 34 35 +CLANG_COMPILERS= -devel 31 32 33 34 35 36 37 38 39 DISTCC_COMPILERS+= clang++ clang DISTCC_COMPILERS+= ${CLANG_COMPILERS:S|^|clang++|} DISTCC_COMPILERS+= ${CLANG_COMPILERS:S|^|clang|} Modified: branches/2016Q4/devel/distcc/distinfo ============================================================================== --- branches/2016Q4/devel/distcc/distinfo Thu Nov 24 16:30:30 2016 (r427054) +++ branches/2016Q4/devel/distcc/distinfo Thu Nov 24 17:14:45 2016 (r427055) @@ -1,4 +1,3 @@ -SHA256 (distcc-3.1.tar.bz2) = f55dbafd76bed3ce57e1bbcdab1329227808890d90f4c724fcd2d53f934ddd89 -SIZE (distcc-3.1.tar.bz2) = 588820 -SHA256 (distcc-avahi-080101.patch) = 4e506a8a2299af18839c443b8665ea4fe4492bf3ecae010d262406c01509058e -SIZE (distcc-avahi-080101.patch) = 387519 +TIMESTAMP = 1477731710 +SHA256 (distcc-distcc-3.1-9a09372_GH0.tar.gz) = 3d98605a017c0a0e70f30a007801941bec9a87e9f41994bdfa0a9ea613a61e7b +SIZE (distcc-distcc-3.1-9a09372_GH0.tar.gz) = 908231 Modified: branches/2016Q4/devel/distcc/files/patch-configure.ac ============================================================================== --- branches/2016Q4/devel/distcc/files/patch-configure.ac Thu Nov 24 16:30:30 2016 (r427054) +++ branches/2016Q4/devel/distcc/files/patch-configure.ac Thu Nov 24 17:14:45 2016 (r427055) @@ -1,6 +1,6 @@ ---- configure.ac.orig 2008-12-03 05:50:31.000000000 +0800 -+++ configure.ac 2010-08-24 21:55:30.000000000 +0800 -@@ -86,9 +86,12 @@ +--- configure.ac.orig 2008-12-02 23:17:13 UTC ++++ configure.ac +@@ -86,9 +86,12 @@ AC_ARG_WITH(included-popt, AC_HELP_STRING([--with-included-popt], [use bundled popt library, not from system])) AC_ARG_ENABLE(rfc2553, Copied: branches/2016Q4/devel/distcc/files/patch-src_dparent.c (from r427000, head/devel/distcc/files/patch-src_dparent.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/devel/distcc/files/patch-src_dparent.c Thu Nov 24 17:14:45 2016 (r427055, copy of r427000, head/devel/distcc/files/patch-src_dparent.c) @@ -0,0 +1,20 @@ +--- src/dparent.c.orig 2008-12-02 23:17:13 UTC ++++ src/dparent.c +@@ -308,6 +308,9 @@ static void dcc_save_pid(pid_t pid) + **/ + void dcc_remove_pid(void) + { ++ /* distcc user, we are running as, cannot delete files in /var/run ++ */ ++#if 0 + if (!arg_pid_file) + return; + +@@ -315,6 +318,7 @@ void dcc_remove_pid(void) + rs_log_warning("failed to remove pid file %s: %s", + arg_pid_file, strerror(errno)); + } ++#endif + } + + From owner-svn-ports-branches@freebsd.org Fri Nov 25 00:40: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 B85C0C53537; Fri, 25 Nov 2016 00:40:41 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 79BFF93D; Fri, 25 Nov 2016 00:40:41 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAP0eeAP021674; Fri, 25 Nov 2016 00:40:40 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAP0ee4r021672; Fri, 25 Nov 2016 00:40:40 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201611250040.uAP0ee4r021672@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Fri, 25 Nov 2016 00:40:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r427070 - in branches/2016Q4/devel/libcrossguid: . 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Nov 2016 00:40:41 -0000 Author: cpm Date: Fri Nov 25 00:40:40 2016 New Revision: 427070 URL: https://svnweb.freebsd.org/changeset/ports/427070 Log: MFH: r427007 devel/libcrossguid: Add SONAME, cosmetic fixes - Add SONAME to libcrossguid.so - Cosmetic fixes - Bump PORTREVISION PR: 214499 Submitted by: cpm Reviewed by: Mickael Maillot (maintainer), amdmi3 (mentor) Approved by: Mickael Maillot (maintainer), amdmi3 (mentor) Approved by: ports-secteam (feld) Modified: branches/2016Q4/devel/libcrossguid/Makefile branches/2016Q4/devel/libcrossguid/files/libcrossguid.pc.in Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/libcrossguid/Makefile ============================================================================== --- branches/2016Q4/devel/libcrossguid/Makefile Thu Nov 24 21:40:15 2016 (r427069) +++ branches/2016Q4/devel/libcrossguid/Makefile Fri Nov 25 00:40:40 2016 (r427070) @@ -2,6 +2,7 @@ PORTNAME= libcrossguid PORTVERSION= 20150803 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= mickael.maillot@gmail.com @@ -20,18 +21,25 @@ GH_TAGNAME= 8f399e8 USES= compiler:c++11-lang pkgconfig USE_CXXSTD= c++11 CXXFLAGS+= `pkg-config --cflags uuid` -PLIST_FILES= include/guid.h lib/libcrossguid.so libdata/pkgconfig/libcrossguid.pc +USE_LDCONFIG= yes + +PLIST_FILES= include/guid.h \ + lib/libcrossguid.so \ + lib/libcrossguid.so.0 \ + libdata/pkgconfig/libcrossguid.pc post-patch: - @${SED} -e 's|%PREFIX%|${PREFIX}|g ; s|%VERSION%|${PORTVERSION}|g' \ + @${SED} -e 's|%PREFIX%|${PREFIX}|' -e 's|%VERSION%|${PORTVERSION}|' \ ${FILESDIR}/libcrossguid.pc.in > ${WRKDIR}/libcrossguid.pc do-build: - @cd ${WRKSRC} && ${CXX} ${CXXFLAGS} -shared -fPIC guid.cpp -o libcrossguid.so -DGUID_LIBUUID + cd ${WRKSRC} && ${CXX} ${CXXFLAGS} -shared -fPIC -Wl,-soname,libcrossguid.so.0 \ + -DGUID_LIBUUID -L${LOCALBASE}/lib guid.cpp -o libcrossguid.so.0 -luuid do-install: ${INSTALL_DATA} ${WRKSRC}/guid.h ${STAGEDIR}${PREFIX}/include - ${INSTALL_LIB} ${WRKSRC}/libcrossguid.so ${STAGEDIR}${PREFIX}/lib + ${INSTALL_LIB} ${WRKSRC}/libcrossguid.so.0 ${STAGEDIR}${PREFIX}/lib ${INSTALL_DATA} ${WRKDIR}/libcrossguid.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig + ${LN} -sf libcrossguid.so.0 ${STAGEDIR}${PREFIX}/lib/libcrossguid.so .include Modified: branches/2016Q4/devel/libcrossguid/files/libcrossguid.pc.in ============================================================================== --- branches/2016Q4/devel/libcrossguid/files/libcrossguid.pc.in Thu Nov 24 21:40:15 2016 (r427069) +++ branches/2016Q4/devel/libcrossguid/files/libcrossguid.pc.in Fri Nov 25 00:40:40 2016 (r427070) @@ -5,6 +5,5 @@ includedir=${prefix}/include Name: libguid Description: minimal and cross platform C++ GUID library Version: %VERSION% -Libs: -L${libdir} -lguid +Libs: -L${libdir} -lcrossguid Cflags: -I${includedir} - From owner-svn-ports-branches@freebsd.org Fri Nov 25 03:42: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 3C6DEC4DFE5; Fri, 25 Nov 2016 03:42:42 +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 EEB9021F; Fri, 25 Nov 2016 03:42:41 +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 uAP3gfMd099118; Fri, 25 Nov 2016 03:42:41 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAP3gfib099117; Fri, 25 Nov 2016 03:42:41 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611250342.uAP3gfib099117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 25 Nov 2016 03:42:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r427076 - branches/2016Q4/devel/rlvm/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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Nov 2016 03:42:42 -0000 Author: jbeich Date: Fri Nov 25 03:42:40 2016 New Revision: 427076 URL: https://svnweb.freebsd.org/changeset/ports/427076 Log: MFH: r427074 devel/rlvm: unbreak TEST=on + NLS=on build/release/librlvm.a(scenario.o): In function `libreallive::Script::Script(libreallive::Header const&, char const*, unsigned long, std::__1::basic_string, std::__1::allocator > const&, bool, libreallive::compression::XorKey const*)': src/libreallive/scenario.cc:(.text._ZN11libreallive6ScriptC2ERKNS_6HeaderEPKcmRKNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEbPKNS_11compression6XorKeyE+0x496): undefined reference to `libintl_gettext' src/libreallive/scenario.cc:(.text._ZN11libreallive6ScriptC2ERKNS_6HeaderEPKcmRKNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEbPKNS_11compression6XorKeyE+0x66c): undefined reference to `libintl_gettext' build/release/librlvm.a(serialization_global.o): In function `Serialization::saveGlobalMemory(RLMachine&)': src/machine/serialization_global.cc:(.text._ZN13Serialization16saveGlobalMemoryER9RLMachine+0xe8): undefined reference to `libintl_gettext' build/release/librlvm.a(serialization_local.o): In function `Serialization::saveGameForSlot(RLMachine&, int)': src/machine/serialization_local.cc:(.text._ZN13Serialization15saveGameForSlotER9RLMachinei+0x7b): undefined reference to `libintl_gettext' build/release/librlvm.a(serialization_local.o): In function `void (anonymous namespace)::checkInFileOpened > >(boost::filesystem::basic_ifstream >&, boost::filesystem::path const&)': src/machine/serialization_local.cc:(.text._ZN12_GLOBAL__N_117checkInFileOpenedIN5boost10filesystem14basic_ifstreamIcNSt3__111char_traitsIcEEEEEEvRT_RKNS2_4pathE+0x45): undefined reference to `libintl_gettext' Approved by: ports-secteam blanket Modified: branches/2016Q4/devel/rlvm/files/patch-SConstruct Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/rlvm/files/patch-SConstruct ============================================================================== --- branches/2016Q4/devel/rlvm/files/patch-SConstruct Fri Nov 25 03:41:08 2016 (r427075) +++ branches/2016Q4/devel/rlvm/files/patch-SConstruct Fri Nov 25 03:42:40 2016 (r427076) @@ -13,6 +13,14 @@ LIBS = ["z"], +@@ -278,6 +275,7 @@ if not config.CheckGuichan(): + # Get the configuration from sdl and freetype + env.ParseConfig("sdl-config --cflags") + env.ParseConfig("freetype-config --cflags --libs") ++config.CheckLibWithHeader('intl', 'libintl.h', "cpp") + + env = config.Finish() + @@ -314,7 +311,6 @@ if GetOption('release'): # Now add release optimizations to the environment env.Append( From owner-svn-ports-branches@freebsd.org Fri Nov 25 14:24: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 3A54FC54A84; Fri, 25 Nov 2016 14:24:40 +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 0981126D; Fri, 25 Nov 2016 14:24:39 +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 uAPEOdcc058054; Fri, 25 Nov 2016 14:24:39 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAPEOdPT058053; Fri, 25 Nov 2016 14:24:39 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201611251424.uAPEOdPT058053@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 25 Nov 2016 14:24:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r427114 - in branches/2016Q4/misc/p5-I18N-LangTags: . 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.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Nov 2016 14:24:40 -0000 Author: amdmi3 Date: Fri Nov 25 14:24:39 2016 New Revision: 427114 URL: https://svnweb.freebsd.org/changeset/ports/427114 Log: MFH: r426998 - Fix perl syntax with perl 5.24+ - While here, fix typo in documentation PR: 190531 Submitted by: vess@slavof.net Approved by: maintainer timeout (daemon, 2.5 years) Approved by: ports-secteam (feld) Added: branches/2016Q4/misc/p5-I18N-LangTags/files/ - copied from r426998, head/misc/p5-I18N-LangTags/files/ Modified: branches/2016Q4/misc/p5-I18N-LangTags/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/misc/p5-I18N-LangTags/Makefile ============================================================================== --- branches/2016Q4/misc/p5-I18N-LangTags/Makefile Fri Nov 25 13:18:34 2016 (r427113) +++ branches/2016Q4/misc/p5-I18N-LangTags/Makefile Fri Nov 25 14:24:39 2016 (r427114) @@ -3,7 +3,7 @@ PORTNAME= I18N-LangTags PORTVERSION= 0.35 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5-