From owner-svn-ports-branches@freebsd.org Sun Mar 4 03:21:14 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0FFCF2ED12; Sun, 4 Mar 2018 03:21:13 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 92D6485A1C; Sun, 4 Mar 2018 03:21:13 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8D97D7BDF; Sun, 4 Mar 2018 03:21:13 +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 w243LDTn040135; Sun, 4 Mar 2018 03:21:13 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w243LD8v040132; Sun, 4 Mar 2018 03:21:13 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201803040321.w243LD8v040132@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sun, 4 Mar 2018 03:21:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463548 - in branches/2018Q1/editors/mp: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jhale X-SVN-Commit-Paths: in branches/2018Q1/editors/mp: . files X-SVN-Commit-Revision: 463548 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 04 Mar 2018 03:21:14 -0000 Author: jhale Date: Sun Mar 4 03:21:12 2018 New Revision: 463548 URL: https://svnweb.freebsd.org/changeset/ports/463548 Log: MFH: r463547 - Fix build with aarch64, armv6, armv7 - Fix QT4 option on all platforms (needs USES=gmake, and fix for moc location) - Remove some substitutions that didn't do anything - Don't try to create directories already in mtree Approved by: ports-secteam (blanket) Added: branches/2018Q1/editors/mp/files/patch-config.sh - copied unchanged from r463547, head/editors/mp/files/patch-config.sh branches/2018Q1/editors/mp/files/patch-mpdm_mpdm__s.c - copied unchanged from r463547, head/editors/mp/files/patch-mpdm_mpdm__s.c Modified: branches/2018Q1/editors/mp/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/editors/mp/Makefile ============================================================================== --- branches/2018Q1/editors/mp/Makefile Sun Mar 4 03:12:31 2018 (r463547) +++ branches/2018Q1/editors/mp/Makefile Sun Mar 4 03:21:12 2018 (r463548) @@ -12,11 +12,7 @@ COMMENT= Programming text editor LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_aarch64= fails to compile: conflicting types for __wcwidth -BROKEN_armv6= fails to compile: conflicting types for __wcwidth -BROKEN_armv7= fails to compile: conflicting types for __wcwidth - -USES= iconv ncurses +USES= gmake iconv ncurses HAS_CONFIGURE= yes CONFIGURE_SCRIPT= config.sh CONFIGURE_ARGS= --prefix=${PREFIX} --without-win32 --without-kde4 @@ -35,8 +31,9 @@ GTK2_USE= gnome=gtk20 GTK3_USE= gnome=gtk30 PCRE_LIB_DEPENDS= libpcre.so:devel/pcre PCRE_CONFIGURE_WITH= pcre -QT4_USE= qt4=corelib,gui,moc_build -QT4_CONFIGURE_ENV= CPP="${CXX}" CCLINK="${CXX}" +QT4_USE= qt4=corelib,gui,moc_build \ + xorg=x11 +QT4_CONFIGURE_ENV= CPP="${CXX}" CCLINK="${CXX}" MOC="${MOC}" QT4_CONFIGURE_WITH= qt4 .include @@ -70,20 +67,17 @@ QT_NONSTANDARD= yes post-patch: @${REINPLACE_CMD} -e \ - 's|||g' ${WRKSRC}/${i} .endfor @@ -102,7 +96,6 @@ do-install: do-install-NLS-on: .for lang in de es it nl ru sv - @${MKDIR} ${STAGEDIR}${PREFIX}/share/locale/${lang}/LC_MESSAGES ${INSTALL_DATA} ${WRKSRC}/po/${lang}.mo \ ${STAGEDIR}${PREFIX}/share/locale/${lang}/LC_MESSAGES/minimum-profit.mo .endfor Copied: branches/2018Q1/editors/mp/files/patch-config.sh (from r463547, head/editors/mp/files/patch-config.sh) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/editors/mp/files/patch-config.sh Sun Mar 4 03:21:12 2018 (r463548, copy of r463547, head/editors/mp/files/patch-config.sh) @@ -0,0 +1,22 @@ +--- config.sh.orig 2018-03-04 01:48:31 UTC ++++ config.sh +@@ -101,7 +101,7 @@ if [ "$CPP" = "" ] ; then + which g++ > /dev/null 2>&1 && CPP=g++ + fi + +-MOC="moc" ++MOC?="moc" + which moc-qt4 > /dev/null 2>&1 && MOC=moc-qt4 + + echo "CC=$CC" >> makefile.opts +@@ -364,8 +364,8 @@ if [ "$WITHOUT_QT4" = "1" ] ; then + else + if which pkg-config > /dev/null 2>&1 + then +- TMP_CFLAGS=$(pkg-config --cflags QtGui) +- TMP_LDFLAGS="$(pkg-config --libs QtGui) -lX11" ++ TMP_CFLAGS="$(pkg-config --cflags QtGui) $(pkg-config --cflags x11)" ++ TMP_LDFLAGS="$(pkg-config --libs QtGui) $(pkg-config --libs x11)" + + echo "#include " > .tmp.cpp + echo "int main(int argc, char *argv[]) { new QApplication(argc, argv) ; return 0; } " >> .tmp.cpp Copied: branches/2018Q1/editors/mp/files/patch-mpdm_mpdm__s.c (from r463547, head/editors/mp/files/patch-mpdm_mpdm__s.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/editors/mp/files/patch-mpdm_mpdm__s.c Sun Mar 4 03:21:12 2018 (r463548, copy of r463547, head/editors/mp/files/patch-mpdm_mpdm__s.c) @@ -0,0 +1,26 @@ +Fix build with aarch64, armv6, and armv7 + +--- mpdm_s.o --- +mpdm_s.c:1070:5: error: conflicting types for '__wcwidth' +int wcwidth(wchar_t); + ^ +/usr/include/wchar.h:211:21: note: expanded from macro 'wcwidth' +#define wcwidth(_c) __wcwidth(_c) + ^ +/usr/include/_ctype.h:159:1: note: previous definition is here +__wcwidth(__ct_rune_t _c) +^ +1 error generated. +*** [mpdm_s.o] Error code 1 + +--- mpdm/mpdm_s.c.orig 2018-03-04 00:49:18 UTC ++++ mpdm/mpdm_s.c +@@ -1067,8 +1067,6 @@ int mpdm_gettext_domain(const mpdm_t dom, const mpdm_t + + #ifdef CONFOPT_WCWIDTH + +-int wcwidth(wchar_t); +- + int mpdm_wcwidth(wchar_t c) + { + return wcwidth(c); From owner-svn-ports-branches@freebsd.org Sun Mar 4 02:34:50 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 69A04F2C92B; Sun, 4 Mar 2018 02:34:50 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 185A083927; Sun, 4 Mar 2018 02:34:50 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 134BD7465; Sun, 4 Mar 2018 02:34:50 +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 w242YnTT017130; Sun, 4 Mar 2018 02:34:49 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w242Yn3D017129; Sun, 4 Mar 2018 02:34:49 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201803040234.w242Yn3D017129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sun, 4 Mar 2018 02:34:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463546 - in branches/2018Q1/audio/libsndfile: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jhale X-SVN-Commit-Paths: in branches/2018Q1/audio/libsndfile: . files X-SVN-Commit-Revision: 463546 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 04 Mar 2018 02:34:50 -0000 Author: jhale Date: Sun Mar 4 02:34:49 2018 New Revision: 463546 URL: https://svnweb.freebsd.org/changeset/ports/463546 Log: MFH: r463363 Add several security fixes addressing: - CVE-2017-6892 - CVE-2017-8361 - CVE-2017-8362 - CVE-2017-8363 - CVE-2017-8365 - CVE-2017-12562 - CVE-2017-14634 Note: - Fix for CVE-2017-8365 is included in files/patch-CVE-2017-8361 While here: - Fix LICENSE and add LICENSE_FILE PR: 226271 Submitted by: jhale Reviewed by: koobs, eadler, jbeich Approved by: ports-secteam (eadler) Obtained from: upstream (https://github.com/erikd/libsndfile) Security: 004debf9-1d16-11e8-b6aa-4ccc6adda413 Security: 2b386075-1d9c-11e8-b6aa-4ccc6adda413 Differential Revision: https://reviews.freebsd.org/D14552 Approved by: ports-secteam (riggs) Added: branches/2018Q1/audio/libsndfile/files/ - copied from r463363, head/audio/libsndfile/files/ Modified: branches/2018Q1/audio/libsndfile/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/audio/libsndfile/Makefile ============================================================================== --- branches/2018Q1/audio/libsndfile/Makefile Sun Mar 4 00:56:31 2018 (r463545) +++ branches/2018Q1/audio/libsndfile/Makefile Sun Mar 4 02:34:49 2018 (r463546) @@ -3,13 +3,15 @@ PORTNAME= libsndfile PORTVERSION= 1.0.28 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://www.mega-nerd.com/libsndfile/files/ MAINTAINER= multimedia@FreeBSD.org COMMENT= Reading and writing files containing sampled sound (like WAV or AIFF) -LICENSE= LGPL21 +LICENSE= LGPL21+ +LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe gmake libtool localbase pkgconfig CPE_VENDOR= ${CPE_PRODUCT}_project From owner-svn-ports-branches@freebsd.org Sun Mar 4 12:50:51 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D3F58F305E3; Sun, 4 Mar 2018 12:50:51 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 886E179928; Sun, 4 Mar 2018 12:50:51 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 835EE158D6; Sun, 4 Mar 2018 12:50:51 +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 w24Coppg021977; Sun, 4 Mar 2018 12:50:51 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w24CopXI021975; Sun, 4 Mar 2018 12:50:51 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201803041250.w24CopXI021975@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Sun, 4 Mar 2018 12:50:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463565 - branches/2018Q1/lang/php72 X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: branches/2018Q1/lang/php72 X-SVN-Commit-Revision: 463565 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 04 Mar 2018 12:50:52 -0000 Author: tz Date: Sun Mar 4 12:50:51 2018 New Revision: 463565 URL: https://svnweb.freebsd.org/changeset/ports/463565 Log: MFH: r463395 lang/php72: Update from 7.2.2 to 7.2.3 Changelog: http://www.php.net/ChangeLog-7.php#7.2.3 Approved by: ports-secteam (riggs) Modified: branches/2018Q1/lang/php72/Makefile branches/2018Q1/lang/php72/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/lang/php72/Makefile ============================================================================== --- branches/2018Q1/lang/php72/Makefile Sun Mar 4 12:47:18 2018 (r463564) +++ branches/2018Q1/lang/php72/Makefile Sun Mar 4 12:50:51 2018 (r463565) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= php72 -DISTVERSION= 7.2.2 +DISTVERSION= 7.2.3 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: branches/2018Q1/lang/php72/distinfo ============================================================================== --- branches/2018Q1/lang/php72/distinfo Sun Mar 4 12:47:18 2018 (r463564) +++ branches/2018Q1/lang/php72/distinfo Sun Mar 4 12:50:51 2018 (r463565) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517567373 -SHA256 (php-7.2.2.tar.xz) = 47d7607d38a1d565fc43ea942c92229a7cd165f156737f210937e375b243cb11 -SIZE (php-7.2.2.tar.xz) = 12022280 +TIMESTAMP = 1519983066 +SHA256 (php-7.2.3.tar.xz) = b3a94f1b562f413c0b96f54bc309706d83b29ac65d9b172bc7ed9fb40a5e651f +SIZE (php-7.2.3.tar.xz) = 12098236 From owner-svn-ports-branches@freebsd.org Mon Mar 5 10:32:33 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5FE09F46319; Mon, 5 Mar 2018 10:32:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0900971DED; Mon, 5 Mar 2018 10:32:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 03D1222B9A; Mon, 5 Mar 2018 10:32:33 +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 w25AWWFA083920; Mon, 5 Mar 2018 10:32:32 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w25AWW2G083918; Mon, 5 Mar 2018 10:32:32 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803051032.w25AWW2G083918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 5 Mar 2018 10:32:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463640 - in branches/2018Q1: Mk www/waterfox/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1: Mk www/waterfox/files X-SVN-Commit-Revision: 463640 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 05 Mar 2018 10:32:33 -0000 Author: jbeich Date: Mon Mar 5 10:32:32 2018 New Revision: 463640 URL: https://svnweb.freebsd.org/changeset/ports/463640 Log: MFH: r463637 www/waterfox: drop bindgen workaround Approved by: ports-secteam blanket Added: branches/2018Q1/www/waterfox/files/patch-bug1341234 - copied unchanged from r463637, head/www/waterfox/files/patch-bug1341234 Modified: branches/2018Q1/Mk/bsd.gecko.mk Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/Mk/bsd.gecko.mk ============================================================================== --- branches/2018Q1/Mk/bsd.gecko.mk Mon Mar 5 10:22:20 2018 (r463639) +++ branches/2018Q1/Mk/bsd.gecko.mk Mon Mar 5 10:32:32 2018 (r463640) @@ -111,15 +111,6 @@ USE_XORG+= xcb MESA_LLVM_VER?= 50 BUILD_DEPENDS+= llvm${MESA_LLVM_VER}>0:devel/llvm${MESA_LLVM_VER} MOZ_EXPORT+= LLVM_CONFIG=llvm-config${MESA_LLVM_VER} -.if ${MOZILLA_VER:R:R} < 58 -MOZ_EXPORT+= BINDGEN_CFLAGS="${BINDGEN_CFLAGS}" -. if ! ${USE_MOZILLA:M-nspr} -BINDGEN_CFLAGS+=-isystem${LOCALBASE}/include/nspr -. endif -. if ! ${USE_MOZILLA:M-pixman} -BINDGEN_CFLAGS+=-isystem${LOCALBASE}/include/pixman-1 -. endif -.endif # MOZILLA_VER < 58 .endif .if ${OPSYS} == FreeBSD && ${OSREL} == 11.1 Copied: branches/2018Q1/www/waterfox/files/patch-bug1341234 (from r463637, head/www/waterfox/files/patch-bug1341234) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/waterfox/files/patch-bug1341234 Mon Mar 5 10:32:32 2018 (r463640, copy of r463637, head/www/waterfox/files/patch-bug1341234) @@ -0,0 +1,215 @@ +commit 1009160a12a7 +Author: Nathan Froyd +Date: Fri Nov 10 10:05:36 2017 -0500 + + Bug 1341234 - part 0 - fix typo in AC_SUBST_SET checking; r=gps + + The various AC_SUBST macros generate AC_SUBST_*FOO macros for holding the + values to substitute. The macros also cross-check the AC_SUBST_* macros + generated by other variants to make sure that you don't try to do + something like AC_SUBST(FOO) and AC_SUBST_SET(FOO). However, the check + in AC_SUBST_SET for AC_SUBST_LIST duplicate is missing an underscore: + the AC_SUBST_LIST macro generates another macro starting with + AC_SUBST_LIST_, but the AC_SUBST_SET macro checks for the prefix + AC_SUBST_LIST, which is missing the trailing underscore. + + As we're going to be adding yet another AC_SUBST_* macro variant, and + therefore adding more checks to all existing macros, let's clean this up + before we start. +--- + build/autoconf/config.status.m4 | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git build/autoconf/config.status.m4 build/autoconf/config.status.m4 +index cede9d36928d..ae1a871952a9 100644 +--- build/autoconf/config.status.m4 ++++ build/autoconf/config.status.m4 +@@ -24,7 +24,7 @@ dnl with values got from the value of the environment variable, split on + dnl whitespaces. + define([AC_SUBST_SET], + [ifdef([AC_SUBST_$1], [m4_fatal([Cannot use AC_SUBST and AC_SUBST_SET on the same variable ($1)])], +-[ifdef([AC_SUBST_LIST$1], [m4_fatal([Cannot use AC_SUBST_LIST and AC_SUBST_SET on the same variable ($1)])], ++[ifdef([AC_SUBST_LIST_$1], [m4_fatal([Cannot use AC_SUBST_LIST and AC_SUBST_SET on the same variable ($1)])], + [ifdef([AC_SUBST_SET_$1], , + [define([AC_SUBST_SET_$1], )dnl + AC_DIVERT_PUSH(MOZ_DIVERSION_SUBST)dnl + +commit 380dc56df216 +Author: Nathan Froyd +Date: Fri Nov 10 10:05:36 2017 -0500 + + Bug 1341234 - part 1 - add AC_SUBST_TOML_LIST macro; r=gps + + Stylo's bindgen is configured partially through a .toml.in file that + substitutes the value of a configure variable (BINDGEN_CFLAGS) into a + TOML list. We can debate whether this is a good thing to do some other + time; the reality is that the current moz.configure code that provides + the set_config for BINDGEN_CFLAGS needs to perform all the quoting + itself. + + We want, however, to define the substituted variable in old-configure.in + land (some of the values that will go into BINDGEN_CFLAGS are only + defined in old-configure.in, and are not trivially ported to + moz.configure), which means that we need to have quoting logic in + m4/Python when we generate config.status. This patch adds an + appropriate macro for doing so. +--- + build/autoconf/config.status.m4 | 25 ++++++++++++++++++++++--- + 1 file changed, 22 insertions(+), 3 deletions(-) + +diff --git build/autoconf/config.status.m4 build/autoconf/config.status.m4 +index ae1a871952a9..c75575386129 100644 +--- build/autoconf/config.status.m4 ++++ build/autoconf/config.status.m4 +@@ -12,12 +12,13 @@ dnl AC_SOMETHING(foo,AC_SUBST(),bar) + define([AC_SUBST], + [ifdef([AC_SUBST_SET_$1], [m4_fatal([Cannot use AC_SUBST and AC_SUBST_SET on the same variable ($1)])], + [ifdef([AC_SUBST_LIST_$1], [m4_fatal([Cannot use AC_SUBST and AC_SUBST_LIST on the same variable ($1)])], ++[ifdef([AC_SUBST_TOML_LIST_$1], [m4_fatal([Cannot use AC_SUBST and AC_SUBST_TOML_LIST on the same variable ($1)])], + [ifdef([AC_SUBST_$1], , + [define([AC_SUBST_$1], )dnl + AC_DIVERT_PUSH(MOZ_DIVERSION_SUBST)dnl + (''' $1 ''', r''' [$]$1 ''') + AC_DIVERT_POP()dnl +-])])])]) ++])])])])]) + + dnl Like AC_SUBST, but makes the value available as a set in python, + dnl with values got from the value of the environment variable, split on +@@ -25,12 +26,13 @@ dnl whitespaces. + define([AC_SUBST_SET], + [ifdef([AC_SUBST_$1], [m4_fatal([Cannot use AC_SUBST and AC_SUBST_SET on the same variable ($1)])], + [ifdef([AC_SUBST_LIST_$1], [m4_fatal([Cannot use AC_SUBST_LIST and AC_SUBST_SET on the same variable ($1)])], ++[ifdef([AC_SUBST_TOML_LIST_$1], [m4_fatal([Cannot use AC_SUBST_TOML_LIST and AC_SUBST_SET on the same variable ($1)])], + [ifdef([AC_SUBST_SET_$1], , + [define([AC_SUBST_SET_$1], )dnl + AC_DIVERT_PUSH(MOZ_DIVERSION_SUBST)dnl + (''' $1 ''', unique_list(r''' [$]$1 '''.split())) + AC_DIVERT_POP()dnl +-])])])]) ++])])])])]) + + dnl Like AC_SUBST, but makes the value available as a list in python, + dnl with values got from the value of the environment variable, split on +@@ -38,12 +40,29 @@ dnl whitespaces. + define([AC_SUBST_LIST], + [ifdef([AC_SUBST_$1], [m4_fatal([Cannot use AC_SUBST and AC_SUBST_LIST on the same variable ($1)])], + [ifdef([AC_SUBST_SET_$1], [m4_fatal([Cannot use AC_SUBST_SET and AC_SUBST_LIST on the same variable ($1)])], ++[ifdef([AC_SUBST_TOML_LIST_$1], [m4_fatal([Cannot use AC_SUBST_TOML_LIST and AC_SUBST_LIST on the same variable ($1)])], + [ifdef([AC_SUBST_LIST_$1], , + [define([AC_SUBST_LIST_$1], )dnl + AC_DIVERT_PUSH(MOZ_DIVERSION_SUBST)dnl + (''' $1 ''', list(r''' [$]$1 '''.split())) + AC_DIVERT_POP()dnl +-])])])]) ++])])])])]) ++ ++dnl Like AC_SUBST, but makes the value available as a string of comma-separated ++dnl quoted strings in python, with values got from the value of the environment ++dnl variable, split on whitespaces. The value is suitable for embedding into a ++dnl .toml list. ++define([AC_SUBST_TOML_LIST], ++[ifdef([AC_SUBST_$1], [m4_fatal([Cannot use AC_SUBST and AC_SUBST_TOML_LIST on the same variable ($1)])], ++[ifdef([AC_SUBST_SET_$1], [m4_fatal([Cannot use AC_SUBST_SET and AC_SUBST_TOML_LIST on the same variable ($1)])], ++[ifdef([AC_SUBST_LIST_$1], [m4_fatal([Cannot use AC_SUBST_LIST and AC_SUBST_TOML_LIST on the same variable ($1)])], ++[ifdef([AC_SUBST_TOML_LIST_$1], , ++[define([AC_SUBST_TOML_LIST_$1], )dnl ++AC_DIVERT_PUSH(MOZ_DIVERSION_SUBST)dnl ++ (''' $1 ''', r''' %s ''' % str(', '.join("'%s'" % s for s in r''' [$]$1 '''.split()))) ++AC_DIVERT_POP()dnl ++])])])])]) ++ + + dnl Ignore AC_SUBSTs for variables we don't have use for but that autoconf + dnl itself exports. + +commit 17b61015519a +Author: Nathan Froyd +Date: Fri Nov 10 10:05:36 2017 -0500 + + Bug 1341234 - part 2 - add an intermediate step for determining bindgen's CFLAGS; r=gps + + Add an intermediate step in old-configure.in for setting up + BINDGEN_CFLAGS (renamed to BINDGEN_SYSTEM_FLAGS), so we can add whatever + flags we like (e.g. for system libaries with their includes in + non-standard places) at a later point. +--- + build/moz.configure/toolchain.configure | 9 +++------ + layout/style/bindgen.toml.in | 2 +- + old-configure.in | 3 +++ + 3 files changed, 7 insertions(+), 7 deletions(-) + +diff --git build/moz.configure/toolchain.configure build/moz.configure/toolchain.configure +index 002a4cbbc2f0..7e1a8acd5194 100755 +--- build/moz.configure/toolchain.configure ++++ build/moz.configure/toolchain.configure +@@ -902,15 +902,12 @@ option(env='BINDGEN_CFLAGS', + help='Options bindgen should pass to the C/C++ parser') + + @depends('BINDGEN_CFLAGS') +-@checking('bindgen cflags', lambda s: s if s and s.strip() else 'no') ++@checking('bindgen cflags', lambda s: s if s else 'no') + def bindgen_cflags(value): + if value and len(value): +- # Reformat the env value for substitution into a toml list. +- flags = value[0].split() +- return ', '.join('"' + flag + '"' for flag in flags) +- return '' ++ return value[0].split() + +-set_config('BINDGEN_CFLAGS', bindgen_cflags) ++add_old_configure_assignment('_BINDGEN_CFLAGS', bindgen_cflags) + + @depends(c_compiler) + def default_debug_flags(compiler_info): +diff --git layout/style/bindgen.toml.in layout/style/bindgen.toml.in +index 7b1c72c86ec7..894008d0cfb6 100644 +--- layout/style/bindgen.toml.in ++++ layout/style/bindgen.toml.in +@@ -1,4 +1,4 @@ + [build] + args = [ +- @BINDGEN_CFLAGS@ ++ @BINDGEN_SYSTEM_FLAGS@ + ] +diff --git old-configure.in old-configure.in +index f95c55515094..dd69eca8ff69 100644 +--- old-configure.in ++++ old-configure.in +@@ -4395,6 +4395,9 @@ AC_SUBST_LIST(MOZ_CAIRO_LIBS) + AC_SUBST_LIST(MOZ_CAIRO_OSLIBS) + AC_SUBST(MOZ_TREE_PIXMAN) + ++BINDGEN_SYSTEM_FLAGS="$_BINDGEN_CFLAGS" ++AC_SUBST_TOML_LIST(BINDGEN_SYSTEM_FLAGS) ++ + dnl ======================================================== + dnl disable xul + dnl ======================================================== + +commit 4d60ad6f6676 +Author: Nathan Froyd +Date: Fri Nov 10 10:05:36 2017 -0500 + + Bug 1341234 - part 3 - add various system library CFLAGS to BINDGEN_SYSTEM_FLAGS; r=gps + + This change ensures that folks who configure --with-system-FOO for + various values of FOO can build Stylo, since bindgen will know where to + find the flags for said FOO packages. +--- + old-configure.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git old-configure.in old-configure.in +index dd69eca8ff69..2f8161ad035e 100644 +--- old-configure.in ++++ old-configure.in +@@ -4395,7 +4395,7 @@ AC_SUBST_LIST(MOZ_CAIRO_LIBS) + AC_SUBST_LIST(MOZ_CAIRO_OSLIBS) + AC_SUBST(MOZ_TREE_PIXMAN) + +-BINDGEN_SYSTEM_FLAGS="$_BINDGEN_CFLAGS" ++BINDGEN_SYSTEM_FLAGS="$_BINDGEN_CFLAGS $NSPR_CFLAGS $NSS_CFLAGS $MOZ_PIXMAN_CFLAGS $MOZ_CAIRO_CFLAGS" + AC_SUBST_TOML_LIST(BINDGEN_SYSTEM_FLAGS) + + dnl ======================================================== From owner-svn-ports-branches@freebsd.org Mon Mar 5 11:39:17 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CEC8F2474F; Mon, 5 Mar 2018 11:39:17 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C69EF74187; Mon, 5 Mar 2018 11:39:16 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A08D723519; Mon, 5 Mar 2018 11:39:16 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w25BdGDw014753; Mon, 5 Mar 2018 11:39:16 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w25BdGpt014750; Mon, 5 Mar 2018 11:39:16 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201803051139.w25BdGpt014750@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Mon, 5 Mar 2018 11:39:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463645 - branches/2018Q1/security/strongswan X-SVN-Group: ports-branches X-SVN-Commit-Author: garga X-SVN-Commit-Paths: branches/2018Q1/security/strongswan X-SVN-Commit-Revision: 463645 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 05 Mar 2018 11:39:17 -0000 Author: garga Date: Mon Mar 5 11:39:16 2018 New Revision: 463645 URL: https://svnweb.freebsd.org/changeset/ports/463645 Log: MFH: r463323 - Update security/strongswan to 5.6.2 [1] - Enable CURL option by default [2] PR: 226043 [1], 220488 [2] Submitted by: strongswan@Nanoteq.com (maintainer) [1] karl@denninger.net [2] Approved by: maintainer [2] Security: CVE-2018-6459 Sponsored by: Rubicon Communications, LLC (Netgate) Approved by: ports-secteam (riggs) Modified: branches/2018Q1/security/strongswan/Makefile branches/2018Q1/security/strongswan/distinfo branches/2018Q1/security/strongswan/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/security/strongswan/Makefile ============================================================================== --- branches/2018Q1/security/strongswan/Makefile Mon Mar 5 11:25:35 2018 (r463644) +++ branches/2018Q1/security/strongswan/Makefile Mon Mar 5 11:39:16 2018 (r463645) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= strongswan -PORTVERSION= 5.6.0 +PORTVERSION= 5.6.2 CATEGORIES= security MASTER_SITES= http://download.strongswan.org/ \ http://download2.strongswan.org/ @@ -41,7 +41,7 @@ CONFIGURE_ARGS= --enable-kernel-pfkey \ OPTIONS_DEFINE= CURL EAPAKA3GPP2 EAPDYNAMIC EAPRADIUS EAPSIMFILE GCM IKEv1 \ IPSECKEY KERNELLIBIPSEC LOADTESTER LDAP MEDIATION MYSQL PKI SCEP SMP \ SQLITE SWANCTL TESTVECTOR TPM UNBOUND UNITY VICI XAUTH -OPTIONS_DEFAULT= IKEv1 BUILTIN PKI SWANCTL VICI +OPTIONS_DEFAULT= BUILTIN CURL IKEv1 PKI SWANCTL VICI OPTIONS_SINGLE= PRINTF_HOOKS OPTIONS_SINGLE_PRINTF_HOOKS= BUILTIN LIBC VSTR OPTIONS_SUB= yes Modified: branches/2018Q1/security/strongswan/distinfo ============================================================================== --- branches/2018Q1/security/strongswan/distinfo Mon Mar 5 11:25:35 2018 (r463644) +++ branches/2018Q1/security/strongswan/distinfo Mon Mar 5 11:39:16 2018 (r463645) @@ -1,3 +1,3 @@ -TIMESTAMP = 1503435125 -SHA256 (strongswan-5.6.0.tar.bz2) = a14dc0d92634ed52730bfc76a76db30943a28ed3c65a560066e1e9f785827b13 -SIZE (strongswan-5.6.0.tar.bz2) = 4850722 +TIMESTAMP = 1519043301 +SHA256 (strongswan-5.6.2.tar.bz2) = e0a60a30ebf3c534c223559e1686497a21ded709a5d605c5123c2f52bcc22e92 +SIZE (strongswan-5.6.2.tar.bz2) = 4977859 Modified: branches/2018Q1/security/strongswan/pkg-plist ============================================================================== --- branches/2018Q1/security/strongswan/pkg-plist Mon Mar 5 11:25:35 2018 (r463644) +++ branches/2018Q1/security/strongswan/pkg-plist Mon Mar 5 11:39:16 2018 (r463645) @@ -1,10 +1,10 @@ lib/ipsec/libcharon.la lib/ipsec/libcharon.so lib/ipsec/libcharon.so.0 -lib/ipsec/libtpmtss.la -lib/ipsec/libtpmtss.so -lib/ipsec/libtpmtss.so.0 -lib/ipsec/libtpmtss.so.0.0.0 +%%TPM%%lib/ipsec/libtpmtss.la +%%TPM%%lib/ipsec/libtpmtss.so +%%TPM%%lib/ipsec/libtpmtss.so.0 +%%TPM%%lib/ipsec/libtpmtss.so.0.0.0 lib/ipsec/libstrongswan.la lib/ipsec/libstrongswan.so lib/ipsec/libstrongswan.so.0 @@ -23,6 +23,8 @@ lib/ipsec/plugins/libstrongswan-cmac.la lib/ipsec/plugins/libstrongswan-cmac.so lib/ipsec/plugins/libstrongswan-constraints.la lib/ipsec/plugins/libstrongswan-constraints.so +lib/ipsec/plugins/libstrongswan-counters.la +lib/ipsec/plugins/libstrongswan-counters.so lib/ipsec/plugins/libstrongswan-curve25519.la lib/ipsec/plugins/libstrongswan-curve25519.so lib/ipsec/plugins/libstrongswan-des.la @@ -111,6 +113,7 @@ sbin/charon-cmd %%DATADIR%%/templates/config/plugins/blowfish.conf %%DATADIR%%/templates/config/plugins/cmac.conf %%DATADIR%%/templates/config/plugins/constraints.conf +%%DATADIR%%/templates/config/plugins/counters.conf %%DATADIR%%/templates/config/plugins/curve25519.conf %%DATADIR%%/templates/config/plugins/des.conf %%DATADIR%%/templates/config/plugins/dnskey.conf @@ -171,12 +174,16 @@ man/man8/charon-cmd.8.gz %%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-eap-aka-3gpp2.so %%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-gmp.la %%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-gmp.so +%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-mgf1.la +%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-mgf1.so %%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/eap-aka-3gpp2.conf %%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/eap-aka-3gpp2.conf.sample %%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/eap-aka.conf %%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/eap-aka.conf.sample %%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/gmp.conf %%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/gmp.conf.sample +%%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/mgf1.conf +%%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/mgf1.conf.sample %%EAPDYNAMIC%%lib/ipsec/plugins/libstrongswan-eap-dynamic.la %%EAPDYNAMIC%%lib/ipsec/plugins/libstrongswan-eap-dynamic.so %%EAPDYNAMIC%%%%DATADIR%%/templates/config/plugins/eap-dynamic.conf @@ -279,6 +286,7 @@ man/man8/charon-cmd.8.gz %%SWANCTL%%man/man8/swanctl.8.gz %%SWANCTL%%@sample %%ETCDIR%%.d/swanctl.conf.sample %%SWANCTL%%@sample etc/swanctl/swanctl.conf.sample +%%TPM%%bin/tpm_extendpcr %%TPM%%@sample %%ETCDIR%%.d/charon/tpm.conf.sample %%TPM%%lib/ipsec/plugins/libstrongswan-tpm.la %%TPM%%lib/ipsec/plugins/libstrongswan-tpm.so @@ -317,6 +325,7 @@ man/man8/charon-cmd.8.gz @sample %%ETCDIR%%.d/charon/blowfish.conf.sample @sample %%ETCDIR%%.d/charon/cmac.conf.sample @sample %%ETCDIR%%.d/charon/constraints.conf.sample +@sample %%ETCDIR%%.d/charon/counters.conf.sample @sample %%ETCDIR%%.d/charon/curve25519.conf.sample @sample %%ETCDIR%%.d/charon/des.conf.sample @sample %%ETCDIR%%.d/charon/dnskey.conf.sample From owner-svn-ports-branches@freebsd.org Tue Mar 6 01:01:06 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31874F3A4CB; Tue, 6 Mar 2018 01:01:06 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D8295769D1; Tue, 6 Mar 2018 01:01:05 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D2FB23BFF; Tue, 6 Mar 2018 01:01:05 +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 w26115qq016303; Tue, 6 Mar 2018 01:01:05 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w26115Ih016298; Tue, 6 Mar 2018 01:01:05 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803060101.w26115Ih016298@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 6 Mar 2018 01:01:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463681 - in branches/2018Q1/www/waterfox: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/www/waterfox: . files X-SVN-Commit-Revision: 463681 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 06 Mar 2018 01:01:06 -0000 Author: jbeich Date: Tue Mar 6 01:01:05 2018 New Revision: 463681 URL: https://svnweb.freebsd.org/changeset/ports/463681 Log: MFH: r463613 r463676 www/waterfox: update to 56.0.4.36 - Apply some FF59 fixes Changes: https://github.com/MrAlex94/Waterfox/compare/e03e284b083d...79492ecca478 Approved by: ports-secteam blanket Added: branches/2018Q1/www/waterfox/files/patch-bug1434384 - copied unchanged from r463613, head/www/waterfox/files/patch-bug1434384 branches/2018Q1/www/waterfox/files/patch-bug1440943 - copied unchanged from r463613, head/www/waterfox/files/patch-bug1440943 branches/2018Q1/www/waterfox/files/patch-bug1442504 - copied unchanged from r463613, head/www/waterfox/files/patch-bug1442504 Modified: branches/2018Q1/www/waterfox/Makefile branches/2018Q1/www/waterfox/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/waterfox/Makefile ============================================================================== --- branches/2018Q1/www/waterfox/Makefile Tue Mar 6 00:59:22 2018 (r463680) +++ branches/2018Q1/www/waterfox/Makefile Tue Mar 6 01:01:05 2018 (r463681) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= waterfox -DISTVERSION= 56.0.4-20 -DISTVERSIONSUFFIX= -ge03e284b083d -PORTREVISION= 3 +DISTVERSION= 56.0.4-36 +DISTVERSIONSUFFIX= -g79492ecca478 CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Modified: branches/2018Q1/www/waterfox/distinfo ============================================================================== --- branches/2018Q1/www/waterfox/distinfo Tue Mar 6 00:59:22 2018 (r463680) +++ branches/2018Q1/www/waterfox/distinfo Tue Mar 6 01:01:05 2018 (r463681) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519322366 -SHA256 (MrAlex94-Waterfox-56.0.4-20-ge03e284b083d_GH0.tar.gz) = f8103fee10acf9e32fc8d9ea8fca6418a557888a2bda781a92e96beb305c8c4e -SIZE (MrAlex94-Waterfox-56.0.4-20-ge03e284b083d_GH0.tar.gz) = 394048388 +TIMESTAMP = 1520292096 +SHA256 (MrAlex94-Waterfox-56.0.4-36-g79492ecca478_GH0.tar.gz) = c2cf8dc823e9c66976fd4abaa6a308b605706f3b0b740474a65802fe587ea90e +SIZE (MrAlex94-Waterfox-56.0.4-36-g79492ecca478_GH0.tar.gz) = 394042441 Copied: branches/2018Q1/www/waterfox/files/patch-bug1434384 (from r463613, head/www/waterfox/files/patch-bug1434384) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/waterfox/files/patch-bug1434384 Tue Mar 6 01:01:05 2018 (r463681, copy of r463613, head/www/waterfox/files/patch-bug1434384) @@ -0,0 +1,41 @@ +commit 8143391c68e1 +Author: Steve Fink +Date: Fri Jan 5 14:37:47 2018 -0800 + + Bug 1434384 - Mark v1 structured clone data as cross-process. r=jorendorff, a=RyanVM + + --HG-- + extra : source : d85679eb427513cb18650f3d4e7d37a6ccbefbab +--- + js/src/vm/StructuredClone.cpp | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +diff --git js/src/vm/StructuredClone.cpp js/src/vm/StructuredClone.cpp +index 55b7fd76ea2d..f595132256e0 100644 +--- js/src/vm/StructuredClone.cpp ++++ js/src/vm/StructuredClone.cpp +@@ -2374,12 +2374,14 @@ JSStructuredCloneReader::readHeader() + return in.reportTruncated(); + + if (tag != SCTAG_HEADER) { +- // Old structured clone buffer. We must have read it from disk or +- // somewhere, so we can assume it's scope-compatible. ++ // Old structured clone buffer. We must have read it from disk. ++ storedScope = JS::StructuredCloneScope::DifferentProcess; + return true; + } + + MOZ_ALWAYS_TRUE(in.readPair(&tag, &data)); ++ storedScope = JS::StructuredCloneScope(data); ++ + if (data != uint32_t(JS::StructuredCloneScope::SameProcessSameThread) && + data != uint32_t(JS::StructuredCloneScope::SameProcessDifferentThread) && + data != uint32_t(JS::StructuredCloneScope::DifferentProcess)) +@@ -2388,7 +2390,6 @@ JSStructuredCloneReader::readHeader() + "invalid structured clone scope"); + return false; + } +- storedScope = JS::StructuredCloneScope(data); + if (storedScope < allowedScope) { + JS_ReportErrorNumberASCII(context(), GetErrorMessage, nullptr, JSMSG_SC_BAD_SERIALIZED_DATA, + "incompatible structured clone scope"); Copied: branches/2018Q1/www/waterfox/files/patch-bug1440943 (from r463613, head/www/waterfox/files/patch-bug1440943) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/waterfox/files/patch-bug1440943 Tue Mar 6 01:01:05 2018 (r463681, copy of r463613, head/www/waterfox/files/patch-bug1440943) @@ -0,0 +1,60 @@ +commit 00e6df2e9693 +Author: Jonathan Kew +Date: Tue Feb 27 10:34:25 2018 +0000 + + Bug 1440943 - Make GetScriptTagForCode safely return UNKNOWN tag if called with a script code that is out of range for the system ICU version. r=m_kato, a=RyanVM + + --HG-- + extra : source : 03a12246dd84ae384f973e148cec64662383e588 +--- + intl/unicharutil/util/nsUnicodeProperties.h | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git intl/unicharutil/util/nsUnicodeProperties.h intl/unicharutil/util/nsUnicodeProperties.h +index e2ee2a99bfe4..57cff6bc5562 100644 +--- intl/unicharutil/util/nsUnicodeProperties.h ++++ intl/unicharutil/util/nsUnicodeProperties.h +@@ -119,7 +119,11 @@ inline uint32_t + GetScriptTagForCode(Script aScriptCode) + { + const char* tag = uscript_getShortName(UScriptCode(aScriptCode)); +- return HB_TAG(tag[0], tag[1], tag[2], tag[3]); ++ if (tag) { ++ return HB_TAG(tag[0], tag[1], tag[2], tag[3]); ++ } ++ // return UNKNOWN script tag (running with older ICU?) ++ return HB_SCRIPT_UNKNOWN; + } + + inline PairedBracketType +commit 412f5f20ada0 +Author: Jonathan Kew +Date: Tue Feb 27 10:34:25 2018 +0000 + + Bug 1440943 - Ensure we don't try to look up script tags for codes that are not supported by the system ICU version. r=m_kato, a=RyanVM + + --HG-- + extra : source : 34d3a58cafc25d01d081195d2a396bc77342bf2c +--- + gfx/thebes/gfxFont.cpp | 8 +++++++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +diff --git gfx/thebes/gfxFont.cpp gfx/thebes/gfxFont.cpp +index 1409cb087514..e4d04ffd48f5 100644 +--- gfx/thebes/gfxFont.cpp ++++ gfx/thebes/gfxFont.cpp +@@ -1193,7 +1193,13 @@ gfxFont::CheckForFeaturesInvolvingSpace() + new nsDataHashtable(size_t(Script::NUM_SCRIPT_CODES)); + sScriptTagToCode->Put(HB_TAG('D','F','L','T'), Script::COMMON); +- for (Script s = Script::ARABIC; s < Script::NUM_SCRIPT_CODES; ++ // Ensure that we don't try to look at script codes beyond what the ++ // current version of ICU (at runtime -- in case of system ICU) ++ // knows about. ++ Script scriptCount = ++ Script(std::min(u_getIntPropertyMaxValue(UCHAR_SCRIPT) + 1, ++ int(Script::NUM_SCRIPT_CODES))); ++ for (Script s = Script::ARABIC; s < scriptCount; + s = Script(static_cast(s) + 1)) { + hb_script_t scriptTag = hb_script_t(GetScriptTagForCode(s)); + hb_tag_t s1, s2; Copied: branches/2018Q1/www/waterfox/files/patch-bug1442504 (from r463613, head/www/waterfox/files/patch-bug1442504) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/waterfox/files/patch-bug1442504 Tue Mar 6 01:01:05 2018 (r463681, copy of r463613, head/www/waterfox/files/patch-bug1442504) @@ -0,0 +1,50 @@ +commit a5cc1f334aca +Author: Jeff Gilbert +Date: Sat Mar 3 00:50:10 2018 +0200 + + Bug 1442504 - Disable disjoint timer queries. r=milan, a=RyanVM + + MozReview-Commit-ID: IurPcGHzAoQ + + --HG-- + extra : source : bef3db82d7ca31a188f902e317713c88001938ed +--- + dom/canvas/WebGLContextExtensions.cpp | 4 ++-- + dom/canvas/test/webgl-mochitest/mochitest.ini | 2 +- + 2 files changed, 3 insertions(+), 3 deletions(-) + +diff --git dom/canvas/WebGLContextExtensions.cpp dom/canvas/WebGLContextExtensions.cpp +index 120ca85a01a2..04cbbbe6b31d 100644 +--- dom/canvas/WebGLContextExtensions.cpp ++++ dom/canvas/WebGLContextExtensions.cpp +@@ -93,6 +93,8 @@ bool WebGLContext::IsExtensionSupported(dom::CallerType callerType, + + if (allowPrivilegedExts) { + switch (ext) { ++ case WebGLExtensionID::EXT_disjoint_timer_query: ++ return WebGLExtensionDisjointTimerQuery::IsSupported(this); + case WebGLExtensionID::MOZ_debug: + return true; + case WebGLExtensionID::WEBGL_debug_renderer_info: +@@ -118,8 +120,6 @@ WebGLContext::IsExtensionSupported(WebGLExtensionID ext) const + switch (ext) { + // In alphabetical order + // EXT_ +- case WebGLExtensionID::EXT_disjoint_timer_query: +- return WebGLExtensionDisjointTimerQuery::IsSupported(this); + case WebGLExtensionID::EXT_texture_filter_anisotropic: + return gl->IsExtensionSupported(gl::GLContext::EXT_texture_filter_anisotropic); + +diff --git dom/canvas/test/webgl-mochitest/mochitest.ini dom/canvas/test/webgl-mochitest/mochitest.ini +index d36e66b7cdbd..08e2dd335dce 100644 +--- dom/canvas/test/webgl-mochitest/mochitest.ini ++++ dom/canvas/test/webgl-mochitest/mochitest.ini +@@ -19,7 +19,7 @@ fail-if = (os == 'android') + [ensure-exts/test_EXT_color_buffer_half_float.html] + fail-if = (os == 'android') + [ensure-exts/test_EXT_disjoint_timer_query.html] +-fail-if = (os == 'android') || (os == 'mac') || (os == 'win' && os_version == '5.1') ++fail-if = 1 + [ensure-exts/test_EXT_frag_depth.html] + fail-if = (os == 'android') + [ensure-exts/test_EXT_sRGB.html] From owner-svn-ports-branches@freebsd.org Tue Mar 6 01:02:05 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A596EF3A66D; Tue, 6 Mar 2018 01:02:05 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5493E76B80; Tue, 6 Mar 2018 01:02:05 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4F5113C48; Tue, 6 Mar 2018 01:02:05 +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 w26125Jn020250; Tue, 6 Mar 2018 01:02:05 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w26125pF020247; Tue, 6 Mar 2018 01:02:05 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803060102.w26125pF020247@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 6 Mar 2018 01:02:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463682 - in branches/2018Q1/emulators/citra: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/emulators/citra: . files X-SVN-Commit-Revision: 463682 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 06 Mar 2018 01:02:06 -0000 Author: jbeich Date: Tue Mar 6 01:02:04 2018 New Revision: 463682 URL: https://svnweb.freebsd.org/changeset/ports/463682 Log: MFH: r463465 r463677 emulators/citra: update to s20180302 Changes: https://github.com/citra-emu/citra/compare/ac626eda...7c1a2235 Approved by: ports-secteam (swills, implicit for snapshots) Deleted: branches/2018Q1/emulators/citra/files/patch-externals_cryptopp_cryptopp_config.h Modified: branches/2018Q1/emulators/citra/Makefile branches/2018Q1/emulators/citra/distinfo branches/2018Q1/emulators/citra/files/extra-patch-c++14 Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/emulators/citra/Makefile ============================================================================== --- branches/2018Q1/emulators/citra/Makefile Tue Mar 6 01:01:05 2018 (r463681) +++ branches/2018Q1/emulators/citra/Makefile Tue Mar 6 01:02:04 2018 (r463682) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20180228 +PORTVERSION= s20180302 PORTREVISION?= 0 CATEGORIES= emulators @@ -26,16 +26,16 @@ ONLY_FOR_ARCHS_REASON= https://github.com/MerryMage/dy USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= ac626eda +GH_TAGNAME= 7c1a2235 GH_TUPLE= citra-emu:ext-soundtouch:019d208:soundtouch/externals/soundtouch \ MerryMage:dynarmic:d1d4705:dynarmic/externals/dynarmic \ benhoyt:inih:r40:inih/externals/inih/inih \ catchorg:Catch2:v2.1.1:catch/externals/catch \ - fmtlib:fmt:4.0.0:fmt/externals/fmt \ + fmtlib:fmt:4.0.0-435-g4d35f94:fmt/externals/fmt \ herumi:xbyak:v5.53-1-gc5da377:xbyak/externals/xbyak \ lsalzman:enet:39a72ab:enet/externals/enet \ neobrain:nihstro:fd69de1:nihstro/externals/nihstro \ - weidai11:cryptopp:CRYPTOPP_6_0_0:cryptopp/externals/cryptopp/cryptopp + weidai11:cryptopp:CRYPTOPP_6_1_0:cryptopp/externals/cryptopp/cryptopp USES= cmake:outsource compiler:c++14-lang iconv localbase:ldflags USE_SDL= sdl2 Modified: branches/2018Q1/emulators/citra/distinfo ============================================================================== --- branches/2018Q1/emulators/citra/distinfo Tue Mar 6 01:01:05 2018 (r463681) +++ branches/2018Q1/emulators/citra/distinfo Tue Mar 6 01:02:04 2018 (r463682) @@ -1,6 +1,6 @@ -TIMESTAMP = 1519827933 -SHA256 (citra-emu-citra-s20180228-ac626eda_GH0.tar.gz) = ea5aaa73a5eca109698c710efb7ae4cbbae2824c76d9f15ecc12ac79cbaa1a36 -SIZE (citra-emu-citra-s20180228-ac626eda_GH0.tar.gz) = 1677326 +TIMESTAMP = 1520024323 +SHA256 (citra-emu-citra-s20180302-7c1a2235_GH0.tar.gz) = a4241e5acb813e33338a51c755bf5a4036bb23b07ecde3d55352a342f14c13fb +SIZE (citra-emu-citra-s20180302-7c1a2235_GH0.tar.gz) = 1677731 SHA256 (citra-emu-ext-soundtouch-019d208_GH0.tar.gz) = f48c211bbabe7ad79e1c504af1082756c74241be6bab4aca13140803f4b694e7 SIZE (citra-emu-ext-soundtouch-019d208_GH0.tar.gz) = 59366 SHA256 (MerryMage-dynarmic-d1d4705_GH0.tar.gz) = cf120bc77912cf58e0965db2abcb2067c36aca612c42459e0eb72b740ea6cb0e @@ -9,15 +9,15 @@ SHA256 (benhoyt-inih-r40_GH0.tar.gz) = 0a7d8600c523ccd SIZE (benhoyt-inih-r40_GH0.tar.gz) = 11436 SHA256 (catchorg-Catch2-v2.1.1_GH0.tar.gz) = c40d3c8133c9274946067007e911a55b0d0ad3ed7c59a1f258dfcdb6836d8eff SIZE (catchorg-Catch2-v2.1.1_GH0.tar.gz) = 481236 -SHA256 (fmtlib-fmt-4.0.0_GH0.tar.gz) = 35300a0d356529447a79ed5ccf419239d8b34f916e5d4625f046fd37afa3650a -SIZE (fmtlib-fmt-4.0.0_GH0.tar.gz) = 617818 +SHA256 (fmtlib-fmt-4.0.0-435-g4d35f94_GH0.tar.gz) = fb8f361a8b33cdca1bb5ca1b9124e35133c4f7469343f6d54f65cb3f2d5b7caf +SIZE (fmtlib-fmt-4.0.0-435-g4d35f94_GH0.tar.gz) = 621671 SHA256 (herumi-xbyak-v5.53-1-gc5da377_GH0.tar.gz) = 51129bc945fe2650f5fcd41f3b0166555b17589f03bda5d2216927234ef6446a SIZE (herumi-xbyak-v5.53-1-gc5da377_GH0.tar.gz) = 206888 SHA256 (lsalzman-enet-39a72ab_GH0.tar.gz) = cdeec4d447266d93dbd56564b260c57e411dc681caba6887a7e3f152009e6be1 SIZE (lsalzman-enet-39a72ab_GH0.tar.gz) = 79471 SHA256 (neobrain-nihstro-fd69de1_GH0.tar.gz) = cebeb307aad4b9fbc4d26eb54c01c90e118bc6287ab65688a50303a59272be5a SIZE (neobrain-nihstro-fd69de1_GH0.tar.gz) = 110417 -SHA256 (weidai11-cryptopp-CRYPTOPP_6_0_0_GH0.tar.gz) = ed951973ae4f4d52edcf25882fa5238145a00adc81edb9d7be4ce7b9aa744269 -SIZE (weidai11-cryptopp-CRYPTOPP_6_0_0_GH0.tar.gz) = 7158162 +SHA256 (weidai11-cryptopp-CRYPTOPP_6_1_0_GH0.tar.gz) = 69ee71fdff9cc0d56634712703c8eba97204bf58feacdfe1a94df87faffeff55 +SIZE (weidai11-cryptopp-CRYPTOPP_6_1_0_GH0.tar.gz) = 7195344 SHA256 (whoshuu-cpr-1.3.0-12-gb5758fb_GH0.tar.gz) = 84ea509dc08766d7182b867b78ba6dd16f3352d85b18b0654661079b8617dae4 SIZE (whoshuu-cpr-1.3.0-12-gb5758fb_GH0.tar.gz) = 34100 Modified: branches/2018Q1/emulators/citra/files/extra-patch-c++14 ============================================================================== --- branches/2018Q1/emulators/citra/files/extra-patch-c++14 Tue Mar 6 01:01:05 2018 (r463681) +++ branches/2018Q1/emulators/citra/files/extra-patch-c++14 Tue Mar 6 01:02:04 2018 (r463682) @@ -14,6 +14,18 @@ __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table /usr/include/c++/v1/__hash_table:866:5: note: previous declaration is here __hash_table(__hash_table&& __u) ^ +src/core/file_sys/archive_backend.cpp:24:21: error: cannot initialize a parameter of type 'void *' with an rvalue of type 'const std::__1::basic_string, std::__1::allocator >::value_type *' (aka 'const char *') + std::memcpy(string.data(), data.data(), string.size()); + ^~~~~~~~~~~~~ +/usr/include/string.h:62:31: note: passing argument to parameter here +void *memcpy(void * __restrict, const void * __restrict, size_t); + ^ +src/core/file_sys/archive_backend.cpp:30:21: error: cannot initialize a parameter of type 'void *' with an rvalue of type 'const std::__1::basic_string, std::__1::allocator >::value_type *' (aka 'const char16_t *') + std::memcpy(u16str.data(), data.data(), u16str.size() * sizeof(char16_t)); + ^~~~~~~~~~~~~ +/usr/include/string.h:62:31: note: passing argument to parameter here +void *memcpy(void * __restrict, const void * __restrict, size_t); + ^ --- CMakeLists.txt.orig 2018-02-14 15:32:26 UTC +++ CMakeLists.txt @@ -26,3 +38,21 @@ __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table set(CMAKE_CXX_STANDARD_REQUIRED ON) if (NOT MSVC) +--- src/core/file_sys/archive_backend.cpp.orig 2018-03-02 20:58:43 UTC ++++ src/core/file_sys/archive_backend.cpp +@@ -21,13 +21,13 @@ Path::Path(LowPathType type, const std::vector& da + + case LowPathType::Char: { + string.resize(data.size() - 1); // Data is always null-terminated. +- std::memcpy(string.data(), data.data(), string.size()); ++ std::memcpy(const_cast(string.data()), data.data(), string.size()); + break; + } + + case LowPathType::Wchar: { + u16str.resize(data.size() / 2 - 1); // Data is always null-terminated. +- std::memcpy(u16str.data(), data.data(), u16str.size() * sizeof(char16_t)); ++ std::memcpy(const_cast(u16str.data()), data.data(), u16str.size() * sizeof(char16_t)); + break; + } + From owner-svn-ports-branches@freebsd.org Tue Mar 6 01:02:53 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB98AF3A810; Tue, 6 Mar 2018 01:02:53 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 488DB76E1C; Tue, 6 Mar 2018 01:02:53 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3EED33C6B; Tue, 6 Mar 2018 01:02:53 +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 w2612rr2020404; Tue, 6 Mar 2018 01:02:53 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2612rdA020402; Tue, 6 Mar 2018 01:02:53 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803060102.w2612rdA020402@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 6 Mar 2018 01:02:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463683 - branches/2018Q1/emulators/rpcs3 X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q1/emulators/rpcs3 X-SVN-Commit-Revision: 463683 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 06 Mar 2018 01:02:53 -0000 Author: jbeich Date: Tue Mar 6 01:02:52 2018 New Revision: 463683 URL: https://svnweb.freebsd.org/changeset/ports/463683 Log: MFH: r463679 emulators/rpcs3: update to 0.0.5.36 Changes: https://github.com/RPCS3/rpcs3/compare/ec0cd9f00...91d051115 Approved by: ports-secteam (junovitch, implicit for snapshots) Modified: branches/2018Q1/emulators/rpcs3/Makefile branches/2018Q1/emulators/rpcs3/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/emulators/rpcs3/Makefile ============================================================================== --- branches/2018Q1/emulators/rpcs3/Makefile Tue Mar 6 01:02:04 2018 (r463682) +++ branches/2018Q1/emulators/rpcs3/Makefile Tue Mar 6 01:02:52 2018 (r463683) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-34 -DISTVERSIONSUFFIX= -gec0cd9f00 +DISTVERSION= 0.0.5-36 +DISTVERSIONSUFFIX= -g91d051115 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: branches/2018Q1/emulators/rpcs3/distinfo ============================================================================== --- branches/2018Q1/emulators/rpcs3/distinfo Tue Mar 6 01:02:04 2018 (r463682) +++ branches/2018Q1/emulators/rpcs3/distinfo Tue Mar 6 01:02:52 2018 (r463683) @@ -1,6 +1,6 @@ -TIMESTAMP = 1520013048 -SHA256 (RPCS3-rpcs3-v0.0.5-34-gec0cd9f00_GH0.tar.gz) = 602fbf011e8168c94b85636c975d81d2b77401bf39c199bd1b5d3e39df977e16 -SIZE (RPCS3-rpcs3-v0.0.5-34-gec0cd9f00_GH0.tar.gz) = 4305157 +TIMESTAMP = 1520277657 +SHA256 (RPCS3-rpcs3-v0.0.5-36-g91d051115_GH0.tar.gz) = 652c49f79dae4edd9319444302ebb4aab121714111071f1e31bedef9466a8756 +SIZE (RPCS3-rpcs3-v0.0.5-36-g91d051115_GH0.tar.gz) = 4305112 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = e50e4f4e9035e891e16867e995f44aac87ce734a9dde169f02fc9719b2ce3642 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = 105623 SHA256 (RPCS3-yaml-cpp-release-0.5.3-62-g017626a_GH0.tar.gz) = 1d4b32443f137c23b68d3cb183ba6fb48eb76be2b0b30016970adff5c770d841 From owner-svn-ports-branches@freebsd.org Tue Mar 6 12:33:52 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15C07F2D0C1; Tue, 6 Mar 2018 12:33:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B4A9074AB5; Tue, 6 Mar 2018 12:33:51 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AF4BC12EBE; Tue, 6 Mar 2018 12:33:51 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w26CXpkk066334; Tue, 6 Mar 2018 12:33:51 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w26CXp6o066333; Tue, 6 Mar 2018 12:33:51 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201803061233.w26CXp6o066333@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 6 Mar 2018 12:33:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463724 - branches/2018Q1/sysutils/testdisk X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: branches/2018Q1/sysutils/testdisk X-SVN-Commit-Revision: 463724 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 06 Mar 2018 12:33:52 -0000 Author: tobik Date: Tue Mar 6 12:33:51 2018 New Revision: 463724 URL: https://svnweb.freebsd.org/changeset/ports/463724 Log: MFH: r463720 sysutils/testdisk: Fix build with PROGREISERFS=on Fix LIB_DEPENDS: libreiserfs-0.3.so does not exist PR: 195339 Submitted by: crest@sahiro.org Approved by: flz (maintainer) Approved by: ports-secteam blanket Modified: branches/2018Q1/sysutils/testdisk/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/sysutils/testdisk/Makefile ============================================================================== --- branches/2018Q1/sysutils/testdisk/Makefile Tue Mar 6 12:32:00 2018 (r463723) +++ branches/2018Q1/sysutils/testdisk/Makefile Tue Mar 6 12:33:51 2018 (r463724) @@ -45,7 +45,7 @@ ICONV_CONFIGURE_OFF= --without-iconv NTFS_LIB_DEPENDS= libntfs-3g.so:sysutils/fusefs-ntfs NTFS_CONFIGURE_OFF= --without-ntfs3g -PROGSREISERFS_LIB_DEPENDS= libreiserfs-0.3.so:sysutils/progsreiserfs +PROGSREISERFS_LIB_DEPENDS= libreiserfs.so:sysutils/progsreiserfs PROGSREISERFS_CONFIGURE_OFF= --without-reiserfs post-patch: From owner-svn-ports-branches@freebsd.org Thu Mar 8 00:20:22 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 338E2F40AB3; Thu, 8 Mar 2018 00:20:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D5E5C77F0D; Thu, 8 Mar 2018 00:20:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D0DDDF8A; Thu, 8 Mar 2018 00:20:21 +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 w280KLFU043814; Thu, 8 Mar 2018 00:20:21 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w280KLqX043812; Thu, 8 Mar 2018 00:20:21 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803080020.w280KLqX043812@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 8 Mar 2018 00:20:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463848 - in branches/2018Q1/multimedia/libvpx: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/multimedia/libvpx: . files X-SVN-Commit-Revision: 463848 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 08 Mar 2018 00:20:22 -0000 Author: jbeich Date: Thu Mar 8 00:20:21 2018 New Revision: 463848 URL: https://svnweb.freebsd.org/changeset/ports/463848 Log: multimedia/libvpx: backport VP9 fix (direct commit) Obtained from: upstream (libvpx 1.7.0, via Firefox 59) Approved by: ports-secteam blanket Added: branches/2018Q1/multimedia/libvpx/files/patch-mozilla-bug1443865 (contents, props changed) Modified: branches/2018Q1/multimedia/libvpx/Makefile Modified: branches/2018Q1/multimedia/libvpx/Makefile ============================================================================== --- branches/2018Q1/multimedia/libvpx/Makefile Thu Mar 8 00:08:22 2018 (r463847) +++ branches/2018Q1/multimedia/libvpx/Makefile Thu Mar 8 00:20:21 2018 (r463848) @@ -4,7 +4,7 @@ PORTNAME= libvpx DISTVERSIONPREFIX= v DISTVERSION= 1.6.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ Added: branches/2018Q1/multimedia/libvpx/files/patch-mozilla-bug1443865 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/multimedia/libvpx/files/patch-mozilla-bug1443865 Thu Mar 8 00:20:21 2018 (r463848) @@ -0,0 +1,13 @@ +https://chromium.googlesource.com/webm/libvpx/+/84a7263d4c12%5E!/ + +--- vp9/encoder/x86/vp9_quantize_ssse3_x86_64.asm.orig 2017-01-12 20:27:27 UTC ++++ vp9/encoder/x86/vp9_quantize_ssse3_x86_64.asm +@@ -171,7 +171,7 @@ cglobal quantize_%1, 0, %2, 15, coeff, ncoeff, skip, z + pshuflw m7, m8, 0x1 + pmaxsw m8, m7 + pextrw r6, m8, 0 +- mov [r2], r6 ++ mov [r2], r6w + RET + + ; skip-block, i.e. just write all zeroes From owner-svn-ports-branches@freebsd.org Thu Mar 8 00:22:22 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E359F40E57; Thu, 8 Mar 2018 00:22:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4192078297; Thu, 8 Mar 2018 00:22:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3C9B41100; Thu, 8 Mar 2018 00:22:22 +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 w280MMP2048577; Thu, 8 Mar 2018 00:22:22 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w280MMHY048575; Thu, 8 Mar 2018 00:22:22 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803080022.w280MMHY048575@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 8 Mar 2018 00:22:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463849 - branches/2018Q1/emulators/rpcs3 X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q1/emulators/rpcs3 X-SVN-Commit-Revision: 463849 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 08 Mar 2018 00:22:22 -0000 Author: jbeich Date: Thu Mar 8 00:22:21 2018 New Revision: 463849 URL: https://svnweb.freebsd.org/changeset/ports/463849 Log: MFH: r463843 emulators/rpcs3: update to 0.0.5.38 Changes: https://github.com/RPCS3/rpcs3/compare/91d051115...7233640cf Approved by: ports-secteam (junovitch, implicit for snapshots) Modified: branches/2018Q1/emulators/rpcs3/Makefile branches/2018Q1/emulators/rpcs3/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/emulators/rpcs3/Makefile ============================================================================== --- branches/2018Q1/emulators/rpcs3/Makefile Thu Mar 8 00:20:21 2018 (r463848) +++ branches/2018Q1/emulators/rpcs3/Makefile Thu Mar 8 00:22:21 2018 (r463849) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-36 -DISTVERSIONSUFFIX= -g91d051115 +DISTVERSION= 0.0.5-38 +DISTVERSIONSUFFIX= -g7233640cf CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: branches/2018Q1/emulators/rpcs3/distinfo ============================================================================== --- branches/2018Q1/emulators/rpcs3/distinfo Thu Mar 8 00:20:21 2018 (r463848) +++ branches/2018Q1/emulators/rpcs3/distinfo Thu Mar 8 00:22:21 2018 (r463849) @@ -1,6 +1,6 @@ -TIMESTAMP = 1520277657 -SHA256 (RPCS3-rpcs3-v0.0.5-36-g91d051115_GH0.tar.gz) = 652c49f79dae4edd9319444302ebb4aab121714111071f1e31bedef9466a8756 -SIZE (RPCS3-rpcs3-v0.0.5-36-g91d051115_GH0.tar.gz) = 4305112 +TIMESTAMP = 1520431040 +SHA256 (RPCS3-rpcs3-v0.0.5-38-g7233640cf_GH0.tar.gz) = 56cc854fa3bd19189e7ccae88461dc7325c0bf99e7811f666249bd7647439fbc +SIZE (RPCS3-rpcs3-v0.0.5-38-g7233640cf_GH0.tar.gz) = 4305218 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = e50e4f4e9035e891e16867e995f44aac87ce734a9dde169f02fc9719b2ce3642 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = 105623 SHA256 (RPCS3-yaml-cpp-release-0.5.3-62-g017626a_GH0.tar.gz) = 1d4b32443f137c23b68d3cb183ba6fb48eb76be2b0b30016970adff5c770d841 From owner-svn-ports-branches@freebsd.org Thu Mar 8 00:24:36 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75140F41163; Thu, 8 Mar 2018 00:24:36 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1E17A7846E; Thu, 8 Mar 2018 00:24:36 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F13041116; Thu, 8 Mar 2018 00:24:35 +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 w280OZUf048774; Thu, 8 Mar 2018 00:24:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w280OZxo048772; Thu, 8 Mar 2018 00:24:35 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803080024.w280OZxo048772@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 8 Mar 2018 00:24:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463850 - branches/2018Q1/emulators/citra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q1/emulators/citra X-SVN-Commit-Revision: 463850 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 08 Mar 2018 00:24:36 -0000 Author: jbeich Date: Thu Mar 8 00:24:35 2018 New Revision: 463850 URL: https://svnweb.freebsd.org/changeset/ports/463850 Log: MFH: r463646 r463677 r463844 emulators/citra: update to s20180307 Changes: https://github.com/citra-emu/citra/compare/7c1a2235...3cda637c Approved by: ports-secteam (swills, implicit for snapshots) Modified: branches/2018Q1/emulators/citra/Makefile branches/2018Q1/emulators/citra/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/emulators/citra/Makefile ============================================================================== --- branches/2018Q1/emulators/citra/Makefile Thu Mar 8 00:22:21 2018 (r463849) +++ branches/2018Q1/emulators/citra/Makefile Thu Mar 8 00:24:35 2018 (r463850) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20180302 +PORTVERSION= s20180307 PORTREVISION?= 0 CATEGORIES= emulators @@ -18,7 +18,6 @@ LICENSE_FILE_MIT= ${WRKSRC}/externals/enet/LICENSE LICENSE_FILE_LGPL21+ = ${_LICENSE_STORE}/LGPL21 # soundtouch BUILD_DEPENDS= boost-libs>=1.63:devel/boost-libs -LIB_DEPENDS= libpng.so:graphics/png # backend_x64/hostloc.h:93:8: fatal error: no type named 'Reg64' in namespace 'Xbyak' ONLY_FOR_ARCHS= amd64 @@ -26,7 +25,7 @@ ONLY_FOR_ARCHS_REASON= https://github.com/MerryMage/dy USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= 7c1a2235 +GH_TAGNAME= 3cda637c GH_TUPLE= citra-emu:ext-soundtouch:019d208:soundtouch/externals/soundtouch \ MerryMage:dynarmic:d1d4705:dynarmic/externals/dynarmic \ benhoyt:inih:r40:inih/externals/inih/inih \ Modified: branches/2018Q1/emulators/citra/distinfo ============================================================================== --- branches/2018Q1/emulators/citra/distinfo Thu Mar 8 00:22:21 2018 (r463849) +++ branches/2018Q1/emulators/citra/distinfo Thu Mar 8 00:24:35 2018 (r463850) @@ -1,6 +1,6 @@ -TIMESTAMP = 1520024323 -SHA256 (citra-emu-citra-s20180302-7c1a2235_GH0.tar.gz) = a4241e5acb813e33338a51c755bf5a4036bb23b07ecde3d55352a342f14c13fb -SIZE (citra-emu-citra-s20180302-7c1a2235_GH0.tar.gz) = 1677731 +TIMESTAMP = 1520463818 +SHA256 (citra-emu-citra-s20180307-3cda637c_GH0.tar.gz) = d2e2b743ee656a04a4f5a398cf84098b124cdd336f5a8f84f7e3784b1a078517 +SIZE (citra-emu-citra-s20180307-3cda637c_GH0.tar.gz) = 1686137 SHA256 (citra-emu-ext-soundtouch-019d208_GH0.tar.gz) = f48c211bbabe7ad79e1c504af1082756c74241be6bab4aca13140803f4b694e7 SIZE (citra-emu-ext-soundtouch-019d208_GH0.tar.gz) = 59366 SHA256 (MerryMage-dynarmic-d1d4705_GH0.tar.gz) = cf120bc77912cf58e0965db2abcb2067c36aca612c42459e0eb72b740ea6cb0e From owner-svn-ports-branches@freebsd.org Thu Mar 8 18:34:27 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8892F4A96A; Thu, 8 Mar 2018 18:34:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5DEF669AE4; Thu, 8 Mar 2018 18:34:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3BFE614985; Thu, 8 Mar 2018 18:34:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w28IYRMs096759; Thu, 8 Mar 2018 18:34:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w28IYQdv096757; Thu, 8 Mar 2018 18:34:26 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803081834.w28IYQdv096757@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 8 Mar 2018 18:34:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463910 - in branches/2018Q1/multimedia/libvpx: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/multimedia/libvpx: . files X-SVN-Commit-Revision: 463910 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 08 Mar 2018 18:34:28 -0000 Author: jbeich Date: Thu Mar 8 18:34:26 2018 New Revision: 463910 URL: https://svnweb.freebsd.org/changeset/ports/463910 Log: multimedia/libvpx: backport vpx_image fix (direct commit) Reported by: Debian Obtained from: upstream (libvpx 1.7.0) Approved by: ports-secteam blanket Added: branches/2018Q1/multimedia/libvpx/files/patch-CVE-2017-13194 (contents, props changed) Modified: branches/2018Q1/multimedia/libvpx/Makefile Modified: branches/2018Q1/multimedia/libvpx/Makefile ============================================================================== --- branches/2018Q1/multimedia/libvpx/Makefile Thu Mar 8 17:21:23 2018 (r463909) +++ branches/2018Q1/multimedia/libvpx/Makefile Thu Mar 8 18:34:26 2018 (r463910) @@ -4,7 +4,7 @@ PORTNAME= libvpx DISTVERSIONPREFIX= v DISTVERSION= 1.6.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ Added: branches/2018Q1/multimedia/libvpx/files/patch-CVE-2017-13194 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/multimedia/libvpx/files/patch-CVE-2017-13194 Thu Mar 8 18:34:26 2018 (r463910) @@ -0,0 +1,43 @@ +https://chromium.googlesource.com/webm/libvpx/+/5a40c8fde11b%5E!/ +https://chromium.googlesource.com/webm/libvpx/+/33c598990bc7%5E!/ + +--- vpx/src/vpx_image.c.orig 2017-01-12 20:27:27 UTC ++++ vpx/src/vpx_image.c +@@ -88,11 +88,10 @@ static vpx_image_t *img_alloc_helper(vpx_image_t *img, + default: ycs = 0; break; + } + +- /* Calculate storage sizes given the chroma subsampling */ +- align = (1 << xcs) - 1; +- w = (d_w + align) & ~align; +- align = (1 << ycs) - 1; +- h = (d_h + align) & ~align; ++ /* Calculate storage sizes. If the buffer was allocated externally, the width ++ * and height shouldn't be adjusted. */ ++ w = d_w; ++ h = d_h; + s = (fmt & VPX_IMG_FMT_PLANAR) ? w : bps * w / 8; + s = (s + stride_align - 1) & ~(stride_align - 1); + stride_in_bytes = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? s * 2 : s; +@@ -111,9 +110,18 @@ static vpx_image_t *img_alloc_helper(vpx_image_t *img, + img->img_data = img_data; + + if (!img_data) { +- const uint64_t alloc_size = (fmt & VPX_IMG_FMT_PLANAR) +- ? (uint64_t)h * s * bps / 8 +- : (uint64_t)h * s; ++ uint64_t alloc_size; ++ /* Calculate storage sizes given the chroma subsampling */ ++ align = (1 << xcs) - 1; ++ w = (d_w + align) & ~align; ++ align = (1 << ycs) - 1; ++ h = (d_h + align) & ~align; ++ ++ s = (fmt & VPX_IMG_FMT_PLANAR) ? w : bps * w / 8; ++ s = (s + stride_align - 1) & ~(stride_align - 1); ++ stride_in_bytes = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? s * 2 : s; ++ alloc_size = (fmt & VPX_IMG_FMT_PLANAR) ? (uint64_t)h * s * bps / 8 ++ : (uint64_t)h * s; + + if (alloc_size != (size_t)alloc_size) goto fail; + From owner-svn-ports-branches@freebsd.org Thu Mar 8 22:35:52 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EDB65F37880; Thu, 8 Mar 2018 22:35:51 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A41AA74972; Thu, 8 Mar 2018 22:35:51 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9F05D16F87; Thu, 8 Mar 2018 22:35:51 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w28MZpqJ033495; Thu, 8 Mar 2018 22:35:51 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w28MZpCk033493; Thu, 8 Mar 2018 22:35:51 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201803082235.w28MZpCk033493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Thu, 8 Mar 2018 22:35:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463923 - branches/2018Q1/sysutils/py-salt X-SVN-Group: ports-branches X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: branches/2018Q1/sysutils/py-salt X-SVN-Commit-Revision: 463923 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 08 Mar 2018 22:35:52 -0000 Author: woodsb02 Date: Thu Mar 8 22:35:51 2018 New Revision: 463923 URL: https://svnweb.freebsd.org/changeset/ports/463923 Log: MFH: r463791 sysutils/py-salt: Update to 2017.7.4 This is a bugfix release for the 2017.7.x branch. Changes this release: https://docs.saltstack.com/en/latest/topics/releases/2017.7.4.html PR: 226319 Approved by: Christer Edwards (maintainer) Approved by: ports-secteam (riggs) Modified: branches/2018Q1/sysutils/py-salt/Makefile branches/2018Q1/sysutils/py-salt/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/sysutils/py-salt/Makefile ============================================================================== --- branches/2018Q1/sysutils/py-salt/Makefile Thu Mar 8 22:22:13 2018 (r463922) +++ branches/2018Q1/sysutils/py-salt/Makefile Thu Mar 8 22:35:51 2018 (r463923) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= salt -PORTVERSION= 2017.7.3 +PORTVERSION= 2017.7.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: branches/2018Q1/sysutils/py-salt/distinfo ============================================================================== --- branches/2018Q1/sysutils/py-salt/distinfo Thu Mar 8 22:22:13 2018 (r463922) +++ branches/2018Q1/sysutils/py-salt/distinfo Thu Mar 8 22:35:51 2018 (r463923) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519436462 -SHA256 (salt-2017.7.3.tar.gz) = 3d4e1aefe4fa1e53bf132e84961cf46cef3e5d654f4231a2f2e30e786ab7dc07 -SIZE (salt-2017.7.3.tar.gz) = 36461646 +TIMESTAMP = 1520059286 +SHA256 (salt-2017.7.4.tar.gz) = 1d573095776ba052eec7d7cae1472f4b1d4c15f16e1d79c2dc48db3129dbae97 +SIZE (salt-2017.7.4.tar.gz) = 11718327 From owner-svn-ports-branches@freebsd.org Fri Mar 9 06:49:29 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00EB4F3178E; Fri, 9 Mar 2018 06:49:29 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9E4D586C65; Fri, 9 Mar 2018 06:49:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8E73E1BC92; Fri, 9 Mar 2018 06:49:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w296nSES077261; Fri, 9 Mar 2018 06:49:28 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w296nSZV077259; Fri, 9 Mar 2018 06:49:28 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201803090649.w296nSZV077259@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 9 Mar 2018 06:49:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463932 - branches/2018Q1/www/gitea X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: branches/2018Q1/www/gitea X-SVN-Commit-Revision: 463932 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 06:49:29 -0000 Author: tobik Date: Fri Mar 9 06:49:27 2018 New Revision: 463932 URL: https://svnweb.freebsd.org/changeset/ports/463932 Log: MFH: r463605 www/gitea: Update to 1.3.3 PR: 226342 Approved by: stb@lassitu.de (maintainer) Changes: https://blog.gitea.io/2017/12/release-of-1.3.2/ Changes: https://blog.gitea.io/2018/02/release-of-1.3.3/ Approved by: ports-secteam blanket Modified: branches/2018Q1/www/gitea/Makefile branches/2018Q1/www/gitea/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/gitea/Makefile ============================================================================== --- branches/2018Q1/www/gitea/Makefile Fri Mar 9 06:30:20 2018 (r463931) +++ branches/2018Q1/www/gitea/Makefile Fri Mar 9 06:49:27 2018 (r463932) @@ -3,7 +3,7 @@ PORTNAME= gitea DISTVERSIONPREFIX= v -DISTVERSION= 1.3.1 +DISTVERSION= 1.3.3 CATEGORIES= www MAINTAINER= stb@lassitu.de Modified: branches/2018Q1/www/gitea/distinfo ============================================================================== --- branches/2018Q1/www/gitea/distinfo Fri Mar 9 06:30:20 2018 (r463931) +++ branches/2018Q1/www/gitea/distinfo Fri Mar 9 06:49:27 2018 (r463932) @@ -1,3 +1,3 @@ -TIMESTAMP = 1512842871 -SHA256 (go-gitea-gitea-v1.3.1_GH0.tar.gz) = 60de0b6864e3518865bf3effc4e40dd5d815abc0734f719798bae6107d69ed6e -SIZE (go-gitea-gitea-v1.3.1_GH0.tar.gz) = 14783710 +TIMESTAMP = 1520150143 +SHA256 (go-gitea-gitea-v1.3.3_GH0.tar.gz) = 998da8ef24487b455641cb544717a6fac8f8e58fa2f392426b3211d02b1462e3 +SIZE (go-gitea-gitea-v1.3.3_GH0.tar.gz) = 14790710 From owner-svn-ports-branches@freebsd.org Fri Mar 9 07:57:40 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC264F342D0; Fri, 9 Mar 2018 07:57:39 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6B59D68EE3; Fri, 9 Mar 2018 07:57:39 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 184C91C7CA; Fri, 9 Mar 2018 07:57:39 +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 w297vcfC012696; Fri, 9 Mar 2018 07:57:38 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w297vcOn012694; Fri, 9 Mar 2018 07:57:38 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803090757.w297vcOn012694@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Mar 2018 07:57:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463938 - branches/2018Q1/devel/nspr X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q1/devel/nspr X-SVN-Commit-Revision: 463938 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 07:57:40 -0000 Author: jbeich Date: Fri Mar 9 07:57:38 2018 New Revision: 463938 URL: https://svnweb.freebsd.org/changeset/ports/463938 Log: MFH: r463695 devel/nspr: update to 4.19 (nop) From upstream ChangeLog: - Update NSPR to build with Android NDK r16 - Add missing include for SIZE_MAX - Use atexit() to register _PR_Fini on OSX Changes: https://hg.mozilla.org/projects/nspr/shortlog/NSPR_4_19_RTM ABI: https://abi-laboratory.pro/tracker/timeline/nspr/ Approved by: ports-secteam (riggs) Modified: branches/2018Q1/devel/nspr/Makefile branches/2018Q1/devel/nspr/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/devel/nspr/Makefile ============================================================================== --- branches/2018Q1/devel/nspr/Makefile Fri Mar 9 07:57:34 2018 (r463937) +++ branches/2018Q1/devel/nspr/Makefile Fri Mar 9 07:57:38 2018 (r463938) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nspr -DISTVERSION= 4.18 +DISTVERSION= 4.19 CATEGORIES= devel MASTER_SITES= MOZILLA/${PORTNAME}/releases/v${PORTVERSION}/src Modified: branches/2018Q1/devel/nspr/distinfo ============================================================================== --- branches/2018Q1/devel/nspr/distinfo Fri Mar 9 07:57:34 2018 (r463937) +++ branches/2018Q1/devel/nspr/distinfo Fri Mar 9 07:57:38 2018 (r463938) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516279034 -SHA256 (nspr-4.18.tar.gz) = b89657c09bf88707d06ac238b8930d3ae08de68cb3edccfdc2e3dc97f9c8fb34 -SIZE (nspr-4.18.tar.gz) = 1139663 +TIMESTAMP = 1520265028 +SHA256 (nspr-4.19.tar.gz) = 2ed95917fa2277910d1d1cf36030607dccc0ba522bba08e2af13c113dcd8f729 +SIZE (nspr-4.19.tar.gz) = 1139967 From owner-svn-ports-branches@freebsd.org Fri Mar 9 07:59:18 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9BAFFF3440A; Fri, 9 Mar 2018 07:59:18 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4A6A86917C; Fri, 9 Mar 2018 07:59:18 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4563C1C7CC; Fri, 9 Mar 2018 07:59:18 +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 w297xIuj013078; Fri, 9 Mar 2018 07:59:18 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w297xHAS013072; Fri, 9 Mar 2018 07:59:17 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803090759.w297xHAS013072@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Mar 2018 07:59:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463940 - in branches/2018Q1/security: ca_root_nss nss nss/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/security: ca_root_nss nss nss/files X-SVN-Commit-Revision: 463940 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 07:59:18 -0000 Author: jbeich Date: Fri Mar 9 07:59:17 2018 New Revision: 463940 URL: https://svnweb.freebsd.org/changeset/ports/463940 Log: MFH: r463696 security/nss: update to 3.36 Changes: https://developer.mozilla.org/docs/Mozilla/Projects/NSS/NSS_3.36_release_notes Changes: https://hg.mozilla.org/projects/nss/shortlog/NSS_3_36_RTM ABI: https://abi-laboratory.pro/tracker/timeline/nss/ Approved by: ports-secteam (riggs) Added: branches/2018Q1/security/nss/files/patch-bug1443400 - copied unchanged from r463696, head/security/nss/files/patch-bug1443400 Deleted: branches/2018Q1/security/nss/files/patch-bug1432455 Modified: branches/2018Q1/security/ca_root_nss/Makefile branches/2018Q1/security/ca_root_nss/distinfo branches/2018Q1/security/nss/Makefile branches/2018Q1/security/nss/distinfo branches/2018Q1/security/nss/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/security/ca_root_nss/Makefile ============================================================================== --- branches/2018Q1/security/ca_root_nss/Makefile Fri Mar 9 07:58:05 2018 (r463939) +++ branches/2018Q1/security/ca_root_nss/Makefile Fri Mar 9 07:59:17 2018 (r463940) @@ -32,7 +32,7 @@ PLIST_SUB+= CERTDIR=${CERTDIR} # !!! Please DO NOT submit patches for new version until it has !!! # !!! been committed there first. !!! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -VERSION_NSS= 3.35 +VERSION_NSS= 3.36 #NSS_SUFFIX= -with-ckbi-1.98 CERTDATA_TXT_PATH= nss-${VERSION_NSS}/nss/lib/ckfw/builtins/certdata.txt BUNDLE_PROCESSOR= MAca-bundle.pl Modified: branches/2018Q1/security/ca_root_nss/distinfo ============================================================================== --- branches/2018Q1/security/ca_root_nss/distinfo Fri Mar 9 07:58:05 2018 (r463939) +++ branches/2018Q1/security/ca_root_nss/distinfo Fri Mar 9 07:59:17 2018 (r463940) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516285199 -SHA256 (nss-3.35.tar.gz) = f4127de09bede39f5fd0f789d33c3504c5d261e69ea03022d46b319b3e32f6fa -SIZE (nss-3.35.tar.gz) = 9620041 +TIMESTAMP = 1520265512 +SHA256 (nss-3.36.tar.gz) = a33cc7b8299b5ce3acf03f617c7896932ae26927ff9fb7c71c1b69a200c30095 +SIZE (nss-3.36.tar.gz) = 23025578 Modified: branches/2018Q1/security/nss/Makefile ============================================================================== --- branches/2018Q1/security/nss/Makefile Fri Mar 9 07:58:05 2018 (r463939) +++ branches/2018Q1/security/nss/Makefile Fri Mar 9 07:59:17 2018 (r463940) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nss -PORTVERSION= 3.35 +PORTVERSION= 3.36 #DISTVERSIONSUFFIX= -with-ckbi-1.98 CATEGORIES= security MASTER_SITES= MOZILLA/security/${PORTNAME}/releases/${DISTNAME:tu:C/[-.]/_/g}_RTM/src @@ -41,7 +41,7 @@ DIST= ${WRKSRC:H}/dist EXTRACT_AFTER_ARGS=--exclude */lib/zlib --exclude */lib/dbm --exclude */lib/sqlite -INSTALL_BINS= certcgi certutil cmsutil crlutil derdump makepqg \ +INSTALL_BINS= certutil cmsutil crlutil derdump makepqg \ mangle modutil ocspclnt oidcalc p7content p7env p7sign \ p7verify pk12util rsaperf shlibsign signtool signver \ ssltap strsclnt symkeyutil vfychain vfyserv Modified: branches/2018Q1/security/nss/distinfo ============================================================================== --- branches/2018Q1/security/nss/distinfo Fri Mar 9 07:58:05 2018 (r463939) +++ branches/2018Q1/security/nss/distinfo Fri Mar 9 07:59:17 2018 (r463940) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516285199 -SHA256 (nss-3.35.tar.gz) = f4127de09bede39f5fd0f789d33c3504c5d261e69ea03022d46b319b3e32f6fa -SIZE (nss-3.35.tar.gz) = 9620041 +TIMESTAMP = 1520265512 +SHA256 (nss-3.36.tar.gz) = a33cc7b8299b5ce3acf03f617c7896932ae26927ff9fb7c71c1b69a200c30095 +SIZE (nss-3.36.tar.gz) = 23025578 Copied: branches/2018Q1/security/nss/files/patch-bug1443400 (from r463696, head/security/nss/files/patch-bug1443400) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/security/nss/files/patch-bug1443400 Fri Mar 9 07:59:17 2018 (r463940, copy of r463696, head/security/nss/files/patch-bug1443400) @@ -0,0 +1,69 @@ +Don't try to use getauxval() if unsupported by platform. + +diff --git lib/freebl/blinit.c lib/freebl/blinit.c +index 4ac1c49adb..830d038374 100644 +--- lib/freebl/blinit.c ++++ lib/freebl/blinit.c +@@ -92,22 +92,33 @@ CheckX86CPUSupport() + #endif /* NSS_X86_OR_X64 */ + + #if (defined(__aarch64__) || defined(__arm__)) && !defined(__ANDROID__) +-#if defined(__GNUC__) && __GNUC__ >= 2 && defined(__ELF__) ++#ifndef __has_include ++#define __has_include(x) 0 ++#endif ++#if (__has_include() || defined(__linux__)) && defined(__GNUC__) && __GNUC__ >= 2 && defined(__ELF__) + #include + extern unsigned long getauxval(unsigned long type) __attribute__((weak)); + #else + static unsigned long (*getauxval)(unsigned long) = NULL; +-#define AT_HWCAP2 +-#define AT_HWCAP ++#define AT_HWCAP2 0 ++#define AT_HWCAP 0 + #endif /* defined(__GNUC__) && __GNUC__ >= 2 && defined(__ELF__)*/ + #endif /* (defined(__aarch64__) || defined(__arm__)) && !defined(__ANDROID__) */ + + #if defined(__aarch64__) && !defined(__ANDROID__) + // Defines from hwcap.h in Linux kernel - ARM64 ++#ifndef HWCAP_AES + #define HWCAP_AES (1 << 3) ++#endif ++#ifndef HWCAP_PMULL + #define HWCAP_PMULL (1 << 4) ++#endif ++#ifndef HWCAP_SHA1 + #define HWCAP_SHA1 (1 << 5) ++#endif ++#ifndef HWCAP_SHA2 + #define HWCAP_SHA2 (1 << 6) ++#endif + + void + CheckARMSupport() +@@ -131,15 +142,25 @@ CheckARMSupport() + /* + * HWCAP flags - for elf_hwcap (in kernel) and AT_HWCAP + */ ++#ifndef HWCAP_NEON + #define HWCAP_NEON (1 << 12) ++#endif + + /* + * HWCAP2 flags - for elf_hwcap2 (in kernel) and AT_HWCAP2 + */ ++#ifndef HWCAP2_AES + #define HWCAP2_AES (1 << 0) ++#endif ++#ifndef HWCAP2_PMULL + #define HWCAP2_PMULL (1 << 1) ++#endif ++#ifndef HWCAP2_SHA1 + #define HWCAP2_SHA1 (1 << 2) ++#endif ++#ifndef HWCAP2_SHA2 + #define HWCAP2_SHA2 (1 << 3) ++#endif + + void + CheckARMSupport() Modified: branches/2018Q1/security/nss/pkg-plist ============================================================================== --- branches/2018Q1/security/nss/pkg-plist Fri Mar 9 07:58:05 2018 (r463939) +++ branches/2018Q1/security/nss/pkg-plist Fri Mar 9 07:59:17 2018 (r463940) @@ -1,4 +1,3 @@ -bin/certcgi bin/certutil bin/cmsutil bin/crlutil From owner-svn-ports-branches@freebsd.org Fri Mar 9 11:41:42 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86EABF459FF; Fri, 9 Mar 2018 11:41:42 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 383DF72429; Fri, 9 Mar 2018 11:41:42 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 332DA1EBA8; Fri, 9 Mar 2018 11:41:42 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w29BfgOe026862; Fri, 9 Mar 2018 11:41:42 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29Bff55026860; Fri, 9 Mar 2018 11:41:41 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201803091141.w29Bff55026860@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 9 Mar 2018 11:41:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463954 - branches/2018Q1/sysutils/froxlor X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2018Q1/sysutils/froxlor X-SVN-Commit-Revision: 463954 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 11:41:42 -0000 Author: koobs Date: Fri Mar 9 11:41:41 2018 New Revision: 463954 URL: https://svnweb.freebsd.org/changeset/ports/463954 Log: MFH: r463710 sysutils/froxlor: Fix packaging when APACHE option is unset The pkg-plist for some entries relied on the AP_NAME variable, which is only defined when the APACHE option is set (the default), via bsd.apache.mk. The variables value is the ports name, so replace it with PORTNAME accordingly. While I'm here, fix misspelled PORTREVIION. Reported by: z3dm4n (via IRC) Approved by: portmgr (blanket) Modified: branches/2018Q1/sysutils/froxlor/Makefile branches/2018Q1/sysutils/froxlor/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/sysutils/froxlor/Makefile ============================================================================== --- branches/2018Q1/sysutils/froxlor/Makefile Fri Mar 9 11:37:45 2018 (r463953) +++ branches/2018Q1/sysutils/froxlor/Makefile Fri Mar 9 11:41:41 2018 (r463954) @@ -3,7 +3,7 @@ PORTNAME= froxlor PORTVERSION= 0.9.38.7 -PORTREVIION= 2 +PORTREVISION= 2 CATEGORIES= sysutils www MASTER_SITES= http://files.froxlor.org/releases/ @@ -15,7 +15,7 @@ LICENSE= GPLv2 WRKSRC= ${WRKDIR} SUB_FILES+= pkg-message pkg-deinstall -SUB_LIST+= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} +SUB_LIST+= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} PORTNAME=${PORTNAME} PLIST_SUB+= ${SUB_LIST} USE_PHP= bcmath curl filter ftp json pdo_mysql posix session xml zip Modified: branches/2018Q1/sysutils/froxlor/pkg-plist ============================================================================== --- branches/2018Q1/sysutils/froxlor/pkg-plist Fri Mar 9 11:37:45 2018 (r463953) +++ branches/2018Q1/sysutils/froxlor/pkg-plist Fri Mar 9 11:41:41 2018 (r463954) @@ -6,7 +6,7 @@ %%WWWDIR%%/actions/admin/settings/100.panel.php %%WWWDIR%%/actions/admin/settings/110.accounts.php %%WWWDIR%%/actions/admin/settings/120.system.php -%%WWWDIR%%/actions/admin/settings/122.%%AP_NAME%%vhost.php +%%WWWDIR%%/actions/admin/settings/122.%%PORTNAME%%vhost.php %%WWWDIR%%/actions/admin/settings/125.cronjob.php %%WWWDIR%%/actions/admin/settings/130.webserver.php %%WWWDIR%%/actions/admin/settings/131.ssl.php @@ -68,7 +68,7 @@ %%WWWDIR%%/customer_traffic.php %%WWWDIR%%/dns_editor.php %%WWWDIR%%/index.php -%%WWWDIR%%/install/%%AP_NAME%%.sql +%%WWWDIR%%/install/%%PORTNAME%%.sql %%WWWDIR%%/install/install.php %%WWWDIR%%/install/lib/class.FroxlorInstall.php %%WWWDIR%%/install/lng/english.lng.php @@ -93,8 +93,8 @@ %%WWWDIR%%/install/templates/page.tpl %%WWWDIR%%/install/templates/pagebottom.tpl %%WWWDIR%%/install/templates/textarea.tpl -%%WWWDIR%%/install/updates/%%AP_NAME%%/0.9/update_0.9.inc.php -%%WWWDIR%%/install/updates/%%AP_NAME%%/upgrade_syscp.inc.php +%%WWWDIR%%/install/updates/%%PORTNAME%%/0.9/update_0.9.inc.php +%%WWWDIR%%/install/updates/%%PORTNAME%%/upgrade_syscp.inc.php %%WWWDIR%%/install/updates/preconfig.php %%WWWDIR%%/install/updates/preconfig/0.9/preconfig_0.9.inc.php %%WWWDIR%%/install/updatesql.php @@ -258,32 +258,32 @@ %%WWWDIR%%/lib/functions/formfields/text/function.getFormFieldDataText.php %%WWWDIR%%/lib/functions/formfields/text/function.getFormFieldOutputText.php %%WWWDIR%%/lib/functions/formfields/text/function.validateFormFieldText.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.CorrectErrorDocument.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.CronjobFunctions.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.checkCrondConfigurationFile.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.checkMailAccDeletionState.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.createAWStatsConf.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.customerHasPerlEnabled.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.domainHasMainSubDomains.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.domainHasSslIpPort.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.generatePassword.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getCustomerDetail.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getFilesystemQuota.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getIpAddresses.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getIpPortCombinations.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getLanguages.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getLoginNameByUid.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getPhpConfigs.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getThemes.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.inserttask.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.isCustomerStdSubdomain.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.loadConfigArrayDir.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.moveCustomerToAdmin.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.phpErrHandler.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.triggerLetsEncryptCSRForAliasDestinationDomain.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.updateCounters.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.updateFunctions.php -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.version_compare2.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.CorrectErrorDocument.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.CronjobFunctions.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.checkCrondConfigurationFile.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.checkMailAccDeletionState.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.createAWStatsConf.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.customerHasPerlEnabled.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.domainHasMainSubDomains.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.domainHasSslIpPort.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.generatePassword.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getCustomerDetail.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getFilesystemQuota.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getIpAddresses.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getIpPortCombinations.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getLanguages.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getLoginNameByUid.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getPhpConfigs.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getThemes.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.inserttask.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.isCustomerStdSubdomain.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.loadConfigArrayDir.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.moveCustomerToAdmin.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.phpErrHandler.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.triggerLetsEncryptCSRForAliasDestinationDomain.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.updateCounters.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.updateFunctions.php +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.version_compare2.php %%WWWDIR%%/lib/functions/logger/constant.logger.php %%WWWDIR%%/lib/functions/logger/function.getLogLevelDesc.php %%WWWDIR%%/lib/functions/output/function.RedirectCode.php @@ -348,7 +348,7 @@ %%WWWDIR%%/lib/functions/validate/function.validateUsername.php %%WWWDIR%%/lib/functions/validate/function.validate_ip.php %%WWWDIR%%/lib/init.php -%%WWWDIR%%/lib/navigation/00.%%AP_NAME%%.main.php +%%WWWDIR%%/lib/navigation/00.%%PORTNAME%%.main.php %%WWWDIR%%/lib/navigation/10.tickets.php %%WWWDIR%%/lib/tables.inc.php %%WWWDIR%%/lib/version.inc.php @@ -364,7 +364,7 @@ %%WWWDIR%%/logs/index.html %%WWWDIR%%/scripts/classes/class.DnsBase.php %%WWWDIR%%/scripts/classes/class.HttpConfigBase.php -%%WWWDIR%%/scripts/%%AP_NAME%%_master_cronjob.php +%%WWWDIR%%/scripts/%%PORTNAME%%_master_cronjob.php %%WWWDIR%%/scripts/jobs/cron_backup.php %%WWWDIR%%/scripts/jobs/cron_letsencrypt.php %%WWWDIR%%/scripts/jobs/cron_mailboxsize.php @@ -483,7 +483,7 @@ %%WWWDIR%%/templates/Sparkle/admin/update/update_end.tpl %%WWWDIR%%/templates/Sparkle/admin/update/update_start.tpl %%WWWDIR%%/templates/Sparkle/assets/css/dark.css -%%WWWDIR%%/templates/Sparkle/assets/css/%%AP_NAME%%.css +%%WWWDIR%%/templates/Sparkle/assets/css/%%PORTNAME%%.css %%WWWDIR%%/templates/Sparkle/assets/css/main.css %%WWWDIR%%/templates/Sparkle/assets/css/main_ie.css %%WWWDIR%%/templates/Sparkle/assets/img/favicon.ico @@ -684,7 +684,7 @@ %%WWWDIR%%/templates/Sparkle/ssl_certificates/certs_cert.tpl %%WWWDIR%%/templates/Sparkle/ssl_certificates/certs_error.tpl %%WWWDIR%%/templates/Sparkle/ssl_certificates/certs_list.tpl -%%WWWDIR%%/templates/misc/awstats/awstats.%%AP_NAME%%.model.conf +%%WWWDIR%%/templates/misc/awstats/awstats.%%PORTNAME%%.model.conf %%WWWDIR%%/templates/misc/awstats/index.html %%WWWDIR%%/templates/misc/awstats/nav.html %%WWWDIR%%/templates/misc/standardcustomer/index.html From owner-svn-ports-branches@freebsd.org Fri Mar 9 11:45:17 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F8D0F45E6C; Fri, 9 Mar 2018 11:45:17 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pf0-x235.google.com (mail-pf0-x235.google.com [IPv6:2607:f8b0:400e:c00::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C659E72833; Fri, 9 Mar 2018 11:45:13 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by mail-pf0-x235.google.com with SMTP id x1so1174696pfh.7; Fri, 09 Mar 2018 03:45:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:subject:from:to:references:message-id:date:user-agent :mime-version:in-reply-to:content-language:content-transfer-encoding; bh=VqSv+FDaUeQM63rRwU+yo3jsko1fu/PDc7VbklZudSc=; b=U/dghNXeBApMgH7otOotpNIIs3Bh7MrOK0qIN+ZsKZea9GFRwc6TRARfdyScdNTblx FX/ZUGYvF9ca10BMz7m33rWixDCK5lGEUGuL0Cu9ps5jIneNz28TN2HXYRBE0Cg24g4H DDnaYXL2IAj06Wi5mfSovek7JIW4fEmSr4D4zsYE77kcAijqCiRpZF+8y7FkChnht1dD XMbv/G4+cx8d5L4tMGN6PHynWKaxznO2ufOfo1Uv0BgF0tbSZHXIQprn67jZBgejfVvL 96giu3dm0grSJ3ageBGN2r+8XPLldC+hJ0/WrK+0xmI6NVf5B7oNMCtDhrYXyWNUDZps /Veg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:subject:from:to:references:message-id :date:user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=VqSv+FDaUeQM63rRwU+yo3jsko1fu/PDc7VbklZudSc=; b=eF7aBODjAHOBokWBE+LHgMQAMdoh+77Dxq6z9cvnQJcC4n/sY6o6su7H9t+gB3MZ3y 4pV47TzzSCRLt7msk80N1fzM3CuF0btfNP0hCnR8YIKHjWcdaBO/Z6zPsnb4o8AehoLj x/wmfoVDS5vUdDwE97byisI8t1z0XVbqACIxz7DGtVcl2DwsEruBFwLbKVJV/3JFVw32 E1I9K7v4uDTt8Uq+M58ODdrwJzuK8AczmtipyhUm7jqSpNQoRwxv0+9Boo5nuAQhDKmC jo9jHc+thYl3FAJ3ki9SdV5OUjvYE6nTS9MrYqR0tXobttBJH3Zs4liRojxDcDwGHl35 VV9g== X-Gm-Message-State: APf1xPA1RAAcK5+GR4/J6DFgOT2vUW78Aj+k0k8UkRKTqvWOamQAmTY3 Fg+HaxnuahthvEWgsYKDHhU4+074 X-Google-Smtp-Source: AG47ELtu9hPoqxoogRGkG1DTdI0USt6Mgf2BAMNfS1R/F6aOYZ2TbXrf7VaIQ9HHsAFKeolcB7bmXg== X-Received: by 10.101.97.135 with SMTP id c7mr23969060pgv.425.1520595912595; Fri, 09 Mar 2018 03:45:12 -0800 (PST) Received: from [192.168.1.105] (152.94.214.218.sta.wbroadband.net.au. [218.214.94.152]) by smtp.gmail.com with ESMTPSA id a5sm2510757pfn.66.2018.03.09.03.45.10 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 09 Mar 2018 03:45:12 -0800 (PST) Sender: Kubilay Kocak Subject: Re: svn commit: r463954 - branches/2018Q1/sysutils/froxlor From: Kubilay Kocak To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org References: <201803091141.w29Bff55026860@repo.freebsd.org> Message-ID: Date: Fri, 9 Mar 2018 22:44:35 +1100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:59.0) Gecko/20100101 Thunderbird/59.0 MIME-Version: 1.0 In-Reply-To: <201803091141.w29Bff55026860@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-AU Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 11:45:17 -0000 On 9/03/2018 10:41 pm, Kubilay Kocak wrote: > Author: koobs > Date: Fri Mar 9 11:41:41 2018 > New Revision: 463954 > URL: https://svnweb.freebsd.org/changeset/ports/463954 > > Log: > MFH: r463710 > > sysutils/froxlor: Fix packaging when APACHE option is unset > > The pkg-plist for some entries relied on the AP_NAME variable, which is > only defined when the APACHE option is set (the default), via > bsd.apache.mk. The variables value is the ports name, so replace it with > PORTNAME accordingly. > > While I'm here, fix misspelled PORTREVIION. > > Reported by: z3dm4n (via IRC) > Approved by: portmgr (blanket) There was supposed to be an additional: Approved by: riggs (ports-secteam)' but I exited EDITOR during mfh without saving, assuming it would abort so I could redo it, and it didn't (abort). Since Approved by: portmgr existed, it committed without failing the pre-commit hook that looks for portmgr|ports-secteam. > Modified: > branches/2018Q1/sysutils/froxlor/Makefile > branches/2018Q1/sysutils/froxlor/pkg-plist > Directory Properties: > branches/2018Q1/ (props changed) > > Modified: branches/2018Q1/sysutils/froxlor/Makefile > ============================================================================== > --- branches/2018Q1/sysutils/froxlor/Makefile Fri Mar 9 11:37:45 2018 (r463953) > +++ branches/2018Q1/sysutils/froxlor/Makefile Fri Mar 9 11:41:41 2018 (r463954) > @@ -3,7 +3,7 @@ > > PORTNAME= froxlor > PORTVERSION= 0.9.38.7 > -PORTREVIION= 2 > +PORTREVISION= 2 > CATEGORIES= sysutils www > MASTER_SITES= http://files.froxlor.org/releases/ > > @@ -15,7 +15,7 @@ LICENSE= GPLv2 > WRKSRC= ${WRKDIR} > > SUB_FILES+= pkg-message pkg-deinstall > -SUB_LIST+= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} > +SUB_LIST+= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} PORTNAME=${PORTNAME} > PLIST_SUB+= ${SUB_LIST} > > USE_PHP= bcmath curl filter ftp json pdo_mysql posix session xml zip > > Modified: branches/2018Q1/sysutils/froxlor/pkg-plist > ============================================================================== > --- branches/2018Q1/sysutils/froxlor/pkg-plist Fri Mar 9 11:37:45 2018 (r463953) > +++ branches/2018Q1/sysutils/froxlor/pkg-plist Fri Mar 9 11:41:41 2018 (r463954) > @@ -6,7 +6,7 @@ > %%WWWDIR%%/actions/admin/settings/100.panel.php > %%WWWDIR%%/actions/admin/settings/110.accounts.php > %%WWWDIR%%/actions/admin/settings/120.system.php > -%%WWWDIR%%/actions/admin/settings/122.%%AP_NAME%%vhost.php > +%%WWWDIR%%/actions/admin/settings/122.%%PORTNAME%%vhost.php > %%WWWDIR%%/actions/admin/settings/125.cronjob.php > %%WWWDIR%%/actions/admin/settings/130.webserver.php > %%WWWDIR%%/actions/admin/settings/131.ssl.php > @@ -68,7 +68,7 @@ > %%WWWDIR%%/customer_traffic.php > %%WWWDIR%%/dns_editor.php > %%WWWDIR%%/index.php > -%%WWWDIR%%/install/%%AP_NAME%%.sql > +%%WWWDIR%%/install/%%PORTNAME%%.sql > %%WWWDIR%%/install/install.php > %%WWWDIR%%/install/lib/class.FroxlorInstall.php > %%WWWDIR%%/install/lng/english.lng.php > @@ -93,8 +93,8 @@ > %%WWWDIR%%/install/templates/page.tpl > %%WWWDIR%%/install/templates/pagebottom.tpl > %%WWWDIR%%/install/templates/textarea.tpl > -%%WWWDIR%%/install/updates/%%AP_NAME%%/0.9/update_0.9.inc.php > -%%WWWDIR%%/install/updates/%%AP_NAME%%/upgrade_syscp.inc.php > +%%WWWDIR%%/install/updates/%%PORTNAME%%/0.9/update_0.9.inc.php > +%%WWWDIR%%/install/updates/%%PORTNAME%%/upgrade_syscp.inc.php > %%WWWDIR%%/install/updates/preconfig.php > %%WWWDIR%%/install/updates/preconfig/0.9/preconfig_0.9.inc.php > %%WWWDIR%%/install/updatesql.php > @@ -258,32 +258,32 @@ > %%WWWDIR%%/lib/functions/formfields/text/function.getFormFieldDataText.php > %%WWWDIR%%/lib/functions/formfields/text/function.getFormFieldOutputText.php > %%WWWDIR%%/lib/functions/formfields/text/function.validateFormFieldText.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.CorrectErrorDocument.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.CronjobFunctions.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.checkCrondConfigurationFile.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.checkMailAccDeletionState.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.createAWStatsConf.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.customerHasPerlEnabled.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.domainHasMainSubDomains.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.domainHasSslIpPort.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.generatePassword.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getCustomerDetail.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getFilesystemQuota.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getIpAddresses.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getIpPortCombinations.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getLanguages.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getLoginNameByUid.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getPhpConfigs.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.getThemes.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.inserttask.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.isCustomerStdSubdomain.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.loadConfigArrayDir.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.moveCustomerToAdmin.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.phpErrHandler.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.triggerLetsEncryptCSRForAliasDestinationDomain.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.updateCounters.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.updateFunctions.php > -%%WWWDIR%%/lib/functions/%%AP_NAME%%/function.version_compare2.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.CorrectErrorDocument.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.CronjobFunctions.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.checkCrondConfigurationFile.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.checkMailAccDeletionState.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.createAWStatsConf.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.customerHasPerlEnabled.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.domainHasMainSubDomains.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.domainHasSslIpPort.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.generatePassword.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getCustomerDetail.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getFilesystemQuota.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getIpAddresses.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getIpPortCombinations.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getLanguages.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getLoginNameByUid.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getPhpConfigs.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.getThemes.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.inserttask.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.isCustomerStdSubdomain.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.loadConfigArrayDir.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.moveCustomerToAdmin.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.phpErrHandler.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.triggerLetsEncryptCSRForAliasDestinationDomain.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.updateCounters.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.updateFunctions.php > +%%WWWDIR%%/lib/functions/%%PORTNAME%%/function.version_compare2.php > %%WWWDIR%%/lib/functions/logger/constant.logger.php > %%WWWDIR%%/lib/functions/logger/function.getLogLevelDesc.php > %%WWWDIR%%/lib/functions/output/function.RedirectCode.php > @@ -348,7 +348,7 @@ > %%WWWDIR%%/lib/functions/validate/function.validateUsername.php > %%WWWDIR%%/lib/functions/validate/function.validate_ip.php > %%WWWDIR%%/lib/init.php > -%%WWWDIR%%/lib/navigation/00.%%AP_NAME%%.main.php > +%%WWWDIR%%/lib/navigation/00.%%PORTNAME%%.main.php > %%WWWDIR%%/lib/navigation/10.tickets.php > %%WWWDIR%%/lib/tables.inc.php > %%WWWDIR%%/lib/version.inc.php > @@ -364,7 +364,7 @@ > %%WWWDIR%%/logs/index.html > %%WWWDIR%%/scripts/classes/class.DnsBase.php > %%WWWDIR%%/scripts/classes/class.HttpConfigBase.php > -%%WWWDIR%%/scripts/%%AP_NAME%%_master_cronjob.php > +%%WWWDIR%%/scripts/%%PORTNAME%%_master_cronjob.php > %%WWWDIR%%/scripts/jobs/cron_backup.php > %%WWWDIR%%/scripts/jobs/cron_letsencrypt.php > %%WWWDIR%%/scripts/jobs/cron_mailboxsize.php > @@ -483,7 +483,7 @@ > %%WWWDIR%%/templates/Sparkle/admin/update/update_end.tpl > %%WWWDIR%%/templates/Sparkle/admin/update/update_start.tpl > %%WWWDIR%%/templates/Sparkle/assets/css/dark.css > -%%WWWDIR%%/templates/Sparkle/assets/css/%%AP_NAME%%.css > +%%WWWDIR%%/templates/Sparkle/assets/css/%%PORTNAME%%.css > %%WWWDIR%%/templates/Sparkle/assets/css/main.css > %%WWWDIR%%/templates/Sparkle/assets/css/main_ie.css > %%WWWDIR%%/templates/Sparkle/assets/img/favicon.ico > @@ -684,7 +684,7 @@ > %%WWWDIR%%/templates/Sparkle/ssl_certificates/certs_cert.tpl > %%WWWDIR%%/templates/Sparkle/ssl_certificates/certs_error.tpl > %%WWWDIR%%/templates/Sparkle/ssl_certificates/certs_list.tpl > -%%WWWDIR%%/templates/misc/awstats/awstats.%%AP_NAME%%.model.conf > +%%WWWDIR%%/templates/misc/awstats/awstats.%%PORTNAME%%.model.conf > %%WWWDIR%%/templates/misc/awstats/index.html > %%WWWDIR%%/templates/misc/awstats/nav.html > %%WWWDIR%%/templates/misc/standardcustomer/index.html > From owner-svn-ports-branches@freebsd.org Fri Mar 9 12:54:42 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81E09F4BE9A; Fri, 9 Mar 2018 12:54:42 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 32EAB75C0A; Fri, 9 Mar 2018 12:54:42 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2D5EA1F6B3; Fri, 9 Mar 2018 12:54:42 +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 w29CsgE7065033; Fri, 9 Mar 2018 12:54:42 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29CsewA065013; Fri, 9 Mar 2018 12:54:40 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201803091254.w29CsewA065013@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, 9 Mar 2018 12:54:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463958 - in branches/2018Q1/www/chromium: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: in branches/2018Q1/www/chromium: . files X-SVN-Commit-Revision: 463958 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 12:54:43 -0000 Author: cpm Date: Fri Mar 9 12:54:40 2018 New Revision: 463958 URL: https://svnweb.freebsd.org/changeset/ports/463958 Log: MFH: r463839 www/chromium: update to 64.0.3282.186 Changelog: https://chromium.googlesource.com/chromium/src/+log/63.0.3239.132..64.0.3282.186?pretty=fuller&n=10000 Security: https://vuxml.freebsd.org/freebsd/8e986b2b-1baa-11e8-a944-54ee754af08e.html Security: https://vuxml.freebsd.org/freebsd/abfc932e-1ba8-11e8-a944-54ee754af08e.html Approved by: ports-secteam (riggs) Added: branches/2018Q1/www/chromium/files/patch-chrome_browser_ssl_ssl_error_controller_client.cc - copied unchanged from r463839, head/www/chromium/files/patch-chrome_browser_ssl_ssl_error_controller_client.cc branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_sad_tab.cc - copied unchanged from r463839, head/www/chromium/files/patch-chrome_browser_ui_sad_tab.cc branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_views_frame_browser_non_client_frame_view_factory_views.cc - copied unchanged from r463839, head/www/chromium/files/patch-chrome_browser_ui_views_frame_browser_non_client_frame_view_factory_views.cc branches/2018Q1/www/chromium/files/patch-chrome_common_webui_url_constants.cc - copied unchanged from r463839, head/www/chromium/files/patch-chrome_common_webui_url_constants.cc branches/2018Q1/www/chromium/files/patch-chrome_common_webui_url_constants.h - copied unchanged from r463839, head/www/chromium/files/patch-chrome_common_webui_url_constants.h branches/2018Q1/www/chromium/files/patch-components_crash_core_common_BUILD.gn - copied unchanged from r463839, head/www/chromium/files/patch-components_crash_core_common_BUILD.gn branches/2018Q1/www/chromium/files/patch-content_gpu_BUILD.gn - copied unchanged from r463839, head/www/chromium/files/patch-content_gpu_BUILD.gn branches/2018Q1/www/chromium/files/patch-content_gpu_gpu_sandbox_hook_linux.cc - copied unchanged from r463839, head/www/chromium/files/patch-content_gpu_gpu_sandbox_hook_linux.cc branches/2018Q1/www/chromium/files/patch-services_device_hid_BUILD.gn - copied unchanged from r463839, head/www/chromium/files/patch-services_device_hid_BUILD.gn branches/2018Q1/www/chromium/files/patch-services_device_hid_hid__connection__freebsd.cc - copied unchanged from r463839, head/www/chromium/files/patch-services_device_hid_hid__connection__freebsd.cc branches/2018Q1/www/chromium/files/patch-services_device_hid_hid__connection__freebsd.h - copied unchanged from r463839, head/www/chromium/files/patch-services_device_hid_hid__connection__freebsd.h branches/2018Q1/www/chromium/files/patch-services_device_hid_hid__service.cc - copied unchanged from r463839, head/www/chromium/files/patch-services_device_hid_hid__service.cc branches/2018Q1/www/chromium/files/patch-services_device_hid_hid__service__freebsd.cc - copied unchanged from r463839, head/www/chromium/files/patch-services_device_hid_hid__service__freebsd.cc branches/2018Q1/www/chromium/files/patch-services_device_hid_hid__service__freebsd.h - copied unchanged from r463839, head/www/chromium/files/patch-services_device_hid_hid__service__freebsd.h branches/2018Q1/www/chromium/files/patch-services_service__manager_sandbox_BUILD.gn - copied unchanged from r463839, head/www/chromium/files/patch-services_service__manager_sandbox_BUILD.gn branches/2018Q1/www/chromium/files/patch-third__party_WebKit_Source_core_html_canvas_CanvasAsyncBlobCreator.cpp - copied unchanged from r463839, head/www/chromium/files/patch-third__party_WebKit_Source_core_html_canvas_CanvasAsyncBlobCreator.cpp branches/2018Q1/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_FontMetrics.cpp - copied unchanged from r463839, head/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_FontMetrics.cpp branches/2018Q1/www/chromium/files/patch-third__party_pdfium_fxjs_JS_Define.cpp - copied unchanged from r463839, head/www/chromium/files/patch-third__party_pdfium_fxjs_JS_Define.cpp branches/2018Q1/www/chromium/files/patch-third__party_pdfium_fxjs_cjs_publicmethods.cpp - copied unchanged from r463839, head/www/chromium/files/patch-third__party_pdfium_fxjs_cjs_publicmethods.cpp Deleted: branches/2018Q1/www/chromium/files/patch-chrome_app_chrome__main__delegate.h branches/2018Q1/www/chromium/files/patch-chrome_browser_extensions_api_webrtc__audio__private_webrtc__audio__private__api.cc branches/2018Q1/www/chromium/files/patch-chrome_browser_interstitials_chrome__controller__client.cc branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_views_message__center_message__center__frame__view.cc branches/2018Q1/www/chromium/files/patch-chrome_common_url__constants.cc branches/2018Q1/www/chromium/files/patch-chrome_common_url__constants.h branches/2018Q1/www/chromium/files/patch-content_browser_gpu_gpu__internals__ui.cc branches/2018Q1/www/chromium/files/patch-content_child_child__process.cc branches/2018Q1/www/chromium/files/patch-content_child_child__process.h branches/2018Q1/www/chromium/files/patch-content_child_child__thread__impl.cc branches/2018Q1/www/chromium/files/patch-content_child_child__thread__impl.h branches/2018Q1/www/chromium/files/patch-content_common_child__process__messages.h branches/2018Q1/www/chromium/files/patch-device_hid_BUILD.gn branches/2018Q1/www/chromium/files/patch-device_hid_hid__connection__freebsd.cc branches/2018Q1/www/chromium/files/patch-device_hid_hid__connection__freebsd.h branches/2018Q1/www/chromium/files/patch-device_hid_hid__service.cc branches/2018Q1/www/chromium/files/patch-device_hid_hid__service__freebsd.cc branches/2018Q1/www/chromium/files/patch-device_hid_hid__service__freebsd.h branches/2018Q1/www/chromium/files/patch-device_media__transfer__protocol_media__transfer__protocol__daemon__client.h branches/2018Q1/www/chromium/files/patch-device_media__transfer__protocol_media__transfer__protocol__manager.h branches/2018Q1/www/chromium/files/patch-headless_lib_headless__content__main__delegate.cc branches/2018Q1/www/chromium/files/patch-headless_lib_headless__content__main__delegate.h branches/2018Q1/www/chromium/files/patch-ppapi_shared__impl_private_net__address__private__impl.cc branches/2018Q1/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_SimpleFontData.cpp branches/2018Q1/www/chromium/files/patch-third__party_ots_include_opentype-sanitiser.h branches/2018Q1/www/chromium/files/patch-third__party_pdfium_fpdfsdk_javascript_JS__Value.cpp branches/2018Q1/www/chromium/files/patch-third__party_pdfium_fpdfsdk_javascript_PublicMethods.cpp branches/2018Q1/www/chromium/files/patch-third__party_webrtc_p2p_base_port.cc branches/2018Q1/www/chromium/files/patch-third__party_webrtc_system__wrappers_source_atomic32__non__darwin__unix.cc branches/2018Q1/www/chromium/files/patch-ui_base_ime_input__method__factory.cc Modified: branches/2018Q1/www/chromium/Makefile branches/2018Q1/www/chromium/distinfo branches/2018Q1/www/chromium/files/patch-BUILD.gn branches/2018Q1/www/chromium/files/patch-base_files_memory_mapped_file_posix.cc branches/2018Q1/www/chromium/files/patch-base_process_process__metrics.h branches/2018Q1/www/chromium/files/patch-base_process_process__metrics__freebsd.cc branches/2018Q1/www/chromium/files/patch-build_config_BUILDCONFIG.gn branches/2018Q1/www/chromium/files/patch-build_config_compiler_BUILD.gn branches/2018Q1/www/chromium/files/patch-chrome_app_chrome__main__delegate.cc branches/2018Q1/www/chromium/files/patch-chrome_app_generated__resources.grd branches/2018Q1/www/chromium/files/patch-chrome_browser_browser__resources.grd branches/2018Q1/www/chromium/files/patch-chrome_browser_chrome__content__browser__client.cc branches/2018Q1/www/chromium/files/patch-chrome_browser_first__run_first__run__internal__posix.cc branches/2018Q1/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group.cc branches/2018Q1/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group.h branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_browser__command__controller.cc branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_views_profiles_avatar_button.cc branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_webui_about__ui.cc branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_webui_chrome__web__ui__controller__factory.cc branches/2018Q1/www/chromium/files/patch-chrome_common_chrome__switches.cc branches/2018Q1/www/chromium/files/patch-components_crash_content_app_BUILD.gn branches/2018Q1/www/chromium/files/patch-components_password__manager_core_browser_password_manager.cc branches/2018Q1/www/chromium/files/patch-components_policy_resources_policy__templates.json branches/2018Q1/www/chromium/files/patch-content_app_content__main__runner.cc branches/2018Q1/www/chromium/files/patch-content_browser_browser__main__loop.cc branches/2018Q1/www/chromium/files/patch-content_browser_renderer__host_render__message__filter.cc branches/2018Q1/www/chromium/files/patch-content_common_BUILD.gn branches/2018Q1/www/chromium/files/patch-content_gpu_gpu__main.cc branches/2018Q1/www/chromium/files/patch-content_ppapi_plugin_ppapi_plugin_main.cc branches/2018Q1/www/chromium/files/patch-content_public_test_browser__test__base.cc branches/2018Q1/www/chromium/files/patch-content_renderer_render__thread__impl.cc branches/2018Q1/www/chromium/files/patch-content_renderer_renderer_main.cc branches/2018Q1/www/chromium/files/patch-extensions_common_feature_switch.cc branches/2018Q1/www/chromium/files/patch-gpu_ipc_common_gpu_memory_buffer_support.cc branches/2018Q1/www/chromium/files/patch-gpu_ipc_service_gpu__init.cc branches/2018Q1/www/chromium/files/patch-gpu_ipc_service_gpu__memory_buffer_factory.cc branches/2018Q1/www/chromium/files/patch-net_base_network__interfaces__freebsd.cc branches/2018Q1/www/chromium/files/patch-net_socket_udp__socket__posix.cc branches/2018Q1/www/chromium/files/patch-services_service__manager_public_cpp_standalone__service_BUILD.gn branches/2018Q1/www/chromium/files/patch-services_service__manager_public_cpp_standalone__service_standalone__service.cc branches/2018Q1/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_FontPlatformData.cpp branches/2018Q1/www/chromium/files/patch-third__party_webrtc_rtc_base_physicalsocketserver.cc branches/2018Q1/www/chromium/files/patch-ui_base_dragdrop_os__exchange__data__provider__factory.cc branches/2018Q1/www/chromium/files/patch-ui_gl_gl_bindings_autogen_glx.cc branches/2018Q1/www/chromium/files/patch-v8_src_base_platform_platform-posix.cc branches/2018Q1/www/chromium/files/patch-v8_src_globals.h branches/2018Q1/www/chromium/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/chromium/Makefile ============================================================================== --- branches/2018Q1/www/chromium/Makefile Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/Makefile Fri Mar 9 12:54:40 2018 (r463958) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 63.0.3239.132 +PORTVERSION= 64.0.3282.186 CATEGORIES?= www MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} @@ -31,7 +31,8 @@ BUILD_DEPENDS+= gperf:devel/gperf \ .endif .if !defined(GN_ONLY) -LIB_DEPENDS= libspeechd.so:accessibility/speech-dispatcher \ +LIB_DEPENDS= libatk-bridge-2.0.so:accessibility/at-spi2-atk \ + libspeechd.so:accessibility/speech-dispatcher \ libsnappy.so:archivers/snappy \ libFLAC.so:audio/flac \ libopus.so:audio/opus \ Modified: branches/2018Q1/www/chromium/distinfo ============================================================================== --- branches/2018Q1/www/chromium/distinfo Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/distinfo Fri Mar 9 12:54:40 2018 (r463958) @@ -1,5 +1,5 @@ -TIMESTAMP = 1515196732 -SHA256 (chromium-63.0.3239.132.tar.xz) = 84c46c2c42faaa102abe0647ee1213615a2522627124924c2741ddc2161b3d8d -SIZE (chromium-63.0.3239.132.tar.xz) = 534286424 -SHA256 (chromium-63.0.3239.132-testdata.tar.xz) = 3706e61b3473624dedea61730a6633d94e00fb3670ebdee97a9f73fbdf6bd672 -SIZE (chromium-63.0.3239.132-testdata.tar.xz) = 172896844 +TIMESTAMP = 1519947004 +SHA256 (chromium-64.0.3282.186.tar.xz) = 5fd0218759231ac00cc729235823592f6fd1e4a00ff64780a5fed7ab210f1860 +SIZE (chromium-64.0.3282.186.tar.xz) = 482247144 +SHA256 (chromium-64.0.3282.186-testdata.tar.xz) = edda88026371323a3515f6243c3ab35cc94a98527b0dd9afb057c9223987a913 +SIZE (chromium-64.0.3282.186-testdata.tar.xz) = 251883204 Modified: branches/2018Q1/www/chromium/files/patch-BUILD.gn ============================================================================== --- branches/2018Q1/www/chromium/files/patch-BUILD.gn Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-BUILD.gn Fri Mar 9 12:54:40 2018 (r463958) @@ -1,15 +1,6 @@ ---- BUILD.gn.orig 2017-12-15 02:04:03.000000000 +0100 -+++ BUILD.gn 2017-12-25 04:12:31.425198000 +0100 -@@ -99,7 +99,7 @@ - ] - } - -- if (!is_ios && !is_android && !is_chromecast && !is_fuchsia) { -+ if (!is_ios && !is_android && !is_chromecast && !is_fuchsia && !is_bsd) { - deps += [ - "//chrome", - "//chrome/installer/zucchini:zucchini", -@@ -368,7 +368,7 @@ +--- BUILD.gn.orig 2018-02-24 16:25:08.000000000 +0100 ++++ BUILD.gn 2018-03-03 19:04:30.972689000 +0100 +@@ -361,7 +361,7 @@ } } @@ -18,7 +9,7 @@ deps += [ "//third_party/breakpad:breakpad_unittests", "//third_party/breakpad:core-2-minidump", -@@ -408,8 +408,6 @@ +@@ -406,8 +406,6 @@ "//net:disk_cache_memory_test", "//net:quic_client", "//net:quic_server", @@ -27,7 +18,7 @@ ] if (use_dbus) { -@@ -465,10 +463,6 @@ +@@ -464,10 +462,6 @@ "//chrome/test/chromedriver:chromedriver", "//chrome/test/chromedriver:chromedriver_tests", "//components/sync:run_sync_testserver", @@ -38,7 +29,7 @@ "//media/cast:generate_barcode_video", "//media/cast:generate_timecode_audio", "//net:crash_cache", -@@ -523,10 +517,6 @@ +@@ -522,10 +516,6 @@ "//mojo/edk/test:mojo_public_system_perftests", "//services/service_manager/public/cpp", "//testing/gmock:gmock_main", @@ -49,7 +40,7 @@ ] if (!is_android) { -@@ -594,7 +584,7 @@ +@@ -593,7 +583,7 @@ deps += [ "//chrome/installer/mini_installer:next_version_mini_installer" ] } @@ -58,7 +49,7 @@ deps += [ "//third_party/breakpad:symupload($host_toolchain)" ] } -@@ -831,7 +821,6 @@ +@@ -835,7 +825,6 @@ "//ppapi/examples/video_decode", "//sandbox/linux:chrome_sandbox", "//sandbox/linux:sandbox_linux_unittests", @@ -67,7 +58,7 @@ # Blocked on https://github.com/catapult-project/catapult/issues/2297 #"//third_party/catapult/telemetry:bitmaptools", @@ -939,7 +928,7 @@ - data_deps += [ "//content/shell:content_shell_crash_service" ] + ] } - if (!is_win && !is_android) { @@ -84,13 +75,13 @@ data_deps += [ "//third_party/breakpad:dump_syms($host_toolchain)" ] } -@@ -1066,9 +1055,6 @@ - "//chrome/installer/mini_installer:mini_installer", - "//chrome/test:angle_perftests", - ] +@@ -1064,9 +1053,6 @@ + + if (is_win) { + data_deps += [ "//chrome/installer/mini_installer:mini_installer" ] - } else { - data_deps += - [ "//third_party/breakpad:minidump_stackwalk($host_toolchain)" ] } - } - } + if (is_win || is_android) { + data_deps += [ "//chrome/test:angle_perftests" ] Modified: branches/2018Q1/www/chromium/files/patch-base_files_memory_mapped_file_posix.cc ============================================================================== --- branches/2018Q1/www/chromium/files/patch-base_files_memory_mapped_file_posix.cc Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-base_files_memory_mapped_file_posix.cc Fri Mar 9 12:54:40 2018 (r463958) @@ -1,11 +1,11 @@ ---- base/files/memory_mapped_file_posix.cc.orig 2017-08-02 18:42:44.932652000 +0200 -+++ base/files/memory_mapped_file_posix.cc 2017-08-02 18:42:59.362655000 +0200 -@@ -114,7 +114,7 @@ - - #if defined(OS_ANDROID) && __ANDROID_API__ < 21 +--- base/files/memory_mapped_file_posix.cc.orig 2018-02-24 16:25:08.000000000 +0100 ++++ base/files/memory_mapped_file_posix.cc 2018-03-03 19:01:12.448678000 +0100 +@@ -110,6 +110,8 @@ + // Only Android API>=21 supports the fallocate call. Older versions need + // to manually extend the file by writing zeros at block intervals. do_manual_extension = true; --#elif !defined(OS_MACOSX) -+#elif !defined(OS_MACOSX) && !defined(OS_BSD) - if (posix_fallocate(file_.GetPlatformFile(), region.offset, - region.size) != 0) { - DPLOG(ERROR) << "posix_fallocate " << file_.GetPlatformFile(); ++#elif defined(OS_BSD) ++ do_manual_extension = true; + #elif defined(OS_MACOSX) + // MacOS doesn't support fallocate even though their new APFS filesystem + // does support sparse files. It does, however, have the functionality Modified: branches/2018Q1/www/chromium/files/patch-base_process_process__metrics.h ============================================================================== --- branches/2018Q1/www/chromium/files/patch-base_process_process__metrics.h Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-base_process_process__metrics.h Fri Mar 9 12:54:40 2018 (r463958) @@ -1,5 +1,5 @@ ---- base/process/process_metrics.h.orig 2017-12-23 20:56:16.823419000 +0100 -+++ base/process/process_metrics.h 2017-12-23 20:58:52.195249000 +0100 +--- base/process/process_metrics.h.orig 2018-02-24 16:25:08.000000000 +0100 ++++ base/process/process_metrics.h 2018-03-03 19:17:04.829273000 +0100 @@ -103,7 +103,7 @@ size_t image; }; @@ -72,3 +72,12 @@ int buffers = 0; int cached = 0; int active_anon = 0; +@@ -437,7 +437,7 @@ + #endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) || + // defined(OS_ANDROID) || defined(OS_AIX) || defined(OS_FUCHSIA) + +-#if defined(OS_LINUX) || defined(OS_ANDROID) || defined(OS_AIX) ++#if defined(OS_LINUX) || defined(OS_ANDROID) || defined(OS_AIX) || defined(OS_BSD) + // Parse the data found in /proc//stat and return the sum of the + // CPU-related ticks. Returns -1 on parse error. + // Exposed for testing. Modified: branches/2018Q1/www/chromium/files/patch-base_process_process__metrics__freebsd.cc ============================================================================== --- branches/2018Q1/www/chromium/files/patch-base_process_process__metrics__freebsd.cc Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-base_process_process__metrics__freebsd.cc Fri Mar 9 12:54:40 2018 (r463958) @@ -1,5 +1,5 @@ ---- base/process/process_metrics_freebsd.cc.orig 2018-01-04 21:05:38.000000000 +0100 -+++ base/process/process_metrics_freebsd.cc 2018-01-27 20:04:35.262483000 +0100 +--- base/process/process_metrics_freebsd.cc.orig 2018-02-24 16:25:08.000000000 +0100 ++++ base/process/process_metrics_freebsd.cc 2018-03-03 19:25:40.067505000 +0100 @@ -12,6 +12,10 @@ #include "base/macros.h" #include "base/memory/ptr_util.h" @@ -11,7 +11,19 @@ namespace base { ProcessMetrics::ProcessMetrics(ProcessHandle process) -@@ -118,6 +122,60 @@ +@@ -25,6 +29,11 @@ + return WrapUnique(new ProcessMetrics(process)); + } + ++bool GetVmStatInfo(VmStatInfo* vmstat) { ++ NOTIMPLEMENTED(); ++ return false; ++} ++ + size_t ProcessMetrics::GetPagefileUsage() const { + struct kinfo_proc info; + int mib[] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, process_ }; +@@ -118,6 +127,60 @@ pagesize = getpagesize(); return mem_total - (mem_free*pagesize) - (mem_inactive*pagesize); Modified: branches/2018Q1/www/chromium/files/patch-build_config_BUILDCONFIG.gn ============================================================================== --- branches/2018Q1/www/chromium/files/patch-build_config_BUILDCONFIG.gn Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-build_config_BUILDCONFIG.gn Fri Mar 9 12:54:40 2018 (r463958) @@ -1,6 +1,6 @@ ---- build/config/BUILDCONFIG.gn.orig 2017-12-15 02:04:05.000000000 +0100 -+++ build/config/BUILDCONFIG.gn 2017-12-30 02:24:17.939908000 +0100 -@@ -131,13 +131,13 @@ +--- build/config/BUILDCONFIG.gn.orig 2018-02-24 16:25:08.000000000 +0100 ++++ build/config/BUILDCONFIG.gn 2018-03-03 19:33:34.562749000 +0100 +@@ -131,14 +131,14 @@ is_official_build = false # Whether we're a traditional desktop unix. @@ -11,12 +11,13 @@ # to configure warnings. is_clang = current_os == "mac" || current_os == "ios" || current_os == "chromeos" || -- current_os == "fuchsia" || current_os == "android" || -+ current_os == "fuchsia" || current_os == "android" || current_os == "bsd" || + current_os == "fuchsia" || current_os == "android" || +- current_os == "win" || ++ current_os == "win" || current_os == "bsd" || (current_os == "linux" && current_cpu != "s390x" && current_cpu != "s390" && current_cpu != "ppc64" && current_cpu != "ppc" && current_cpu != "mips" && current_cpu != "mips64") -@@ -190,8 +190,8 @@ +@@ -191,8 +191,8 @@ # TODO(dpranke): Add some sort of assert here that verifies that # no toolchain omitted host_toolchain from its toolchain_args(). @@ -27,16 +28,16 @@ # TODO(dpranke) - is_clang normally applies only to the target # build, and there is no way to indicate that you want to override # it for both the target build *and* the host build. Do we need to -@@ -229,7 +229,7 @@ - } else { - _default_toolchain = "//build/toolchain/android:android_$target_cpu" - } +@@ -226,7 +226,7 @@ + assert(host_os == "linux" || host_os == "mac", + "Android builds are only supported on Linux and Mac hosts.") + _default_toolchain = "//build/toolchain/android:android_clang_$target_cpu" -} else if (target_os == "chromeos" || target_os == "linux") { +} else if (target_os == "chromeos" || target_os == "linux" || target_os == "bsd") { # See comments in build/toolchain/cros/BUILD.gn about board compiles. if (is_clang) { _default_toolchain = "//build/toolchain/linux:clang_$target_cpu" -@@ -297,6 +297,7 @@ +@@ -296,6 +296,7 @@ is_nacl = false is_posix = false is_win = true @@ -44,7 +45,7 @@ } else if (current_os == "mac") { is_android = false is_chromeos = false -@@ -307,6 +308,7 @@ +@@ -306,6 +307,7 @@ is_nacl = false is_posix = true is_win = false @@ -52,7 +53,7 @@ } else if (current_os == "android") { is_android = true is_chromeos = false -@@ -317,6 +319,7 @@ +@@ -316,6 +318,7 @@ is_nacl = false is_posix = true is_win = false @@ -60,7 +61,7 @@ } else if (current_os == "chromeos") { is_android = false is_chromeos = true -@@ -327,6 +330,7 @@ +@@ -326,6 +329,7 @@ is_nacl = false is_posix = true is_win = false @@ -68,7 +69,7 @@ } else if (current_os == "nacl") { # current_os == "nacl" will be passed by the nacl toolchain definition. # It is not set by default or on the command line. We treat is as a -@@ -340,6 +344,7 @@ +@@ -339,6 +343,7 @@ is_nacl = true is_posix = true is_win = false @@ -76,7 +77,7 @@ } else if (current_os == "fuchsia") { is_android = false is_chromeos = false -@@ -350,6 +355,7 @@ +@@ -349,6 +354,7 @@ is_nacl = false is_posix = true is_win = false @@ -84,7 +85,7 @@ } else if (current_os == "ios") { is_android = false is_chromeos = false -@@ -360,6 +366,7 @@ +@@ -359,6 +365,7 @@ is_nacl = false is_posix = true is_win = false @@ -92,7 +93,7 @@ } else if (current_os == "linux") { is_android = false is_chromeos = false -@@ -370,6 +377,7 @@ +@@ -369,6 +376,7 @@ is_nacl = false is_posix = true is_win = false @@ -100,7 +101,7 @@ } else if (current_os == "aix") { is_android = false is_chromeos = false -@@ -379,8 +387,20 @@ +@@ -378,6 +386,18 @@ is_nacl = false is_posix = true is_win = false @@ -111,14 +112,11 @@ + is_fuchsia = false + is_ios = false + is_linux = true -+ is_bsd = true + is_mac = false + is_nacl = false + is_posix = true + is_win = false + is_bsd = true } -- - # ============================================================================= - # SOURCES FILTERS + # ============================================================================= Modified: branches/2018Q1/www/chromium/files/patch-build_config_compiler_BUILD.gn ============================================================================== --- branches/2018Q1/www/chromium/files/patch-build_config_compiler_BUILD.gn Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-build_config_compiler_BUILD.gn Fri Mar 9 12:54:40 2018 (r463958) @@ -1,6 +1,6 @@ ---- build/config/compiler/BUILD.gn.orig 2018-01-04 21:05:38.000000000 +0100 -+++ build/config/compiler/BUILD.gn 2018-01-20 16:53:24.701867000 +0100 -@@ -47,7 +47,7 @@ +--- build/config/compiler/BUILD.gn.orig 2018-02-24 16:25:08.000000000 +0100 ++++ build/config/compiler/BUILD.gn 2018-03-03 19:36:38.111753000 +0100 +@@ -48,7 +48,7 @@ # only two architectures that are currently checked in). Turn this off when # you are using a custom toolchain and need to control -B in cflags. linux_use_bundled_binutils = @@ -9,7 +9,7 @@ (current_cpu == "x64" || current_cpu == "x86") binutils_path = rebase_path("//third_party/binutils/Linux_x64/Release/bin", root_build_dir) -@@ -222,7 +222,7 @@ +@@ -223,7 +223,7 @@ # Linker warnings. if (fatal_linker_warnings && !(is_chromeos && current_cpu == "arm") && !(is_android && use_order_profiling) && !is_mac && !is_ios && @@ -18,7 +18,7 @@ # TODO(jochen): Enable this on chromeos on arm. http://crbug.com/356580 # TODO(lizeb,pasko): Fix link errors when linking with order_profiling=1 # crbug.com/485542 -@@ -326,8 +326,6 @@ +@@ -327,8 +327,6 @@ "-Wl,-z,relro", ] if (!using_sanitizer) { @@ -27,7 +27,7 @@ # Functions interposed by the sanitizers can make ld think # that some libraries aren't needed when they actually are, # http://crbug.com/234010. As workaround, disable --as-needed. -@@ -424,7 +422,7 @@ +@@ -425,7 +423,7 @@ # TODO(hans): Remove this once Clang generates better optimized debug info by # default. https://crbug.com/765793 if (is_clang && !is_nacl && current_toolchain == host_toolchain && @@ -36,7 +36,7 @@ cflags += [ "-Xclang", "-mllvm", -@@ -638,7 +636,7 @@ +@@ -622,7 +620,7 @@ cflags += [ "-mtune=$arm_tune" ] } } else if (current_cpu == "arm64") { @@ -45,7 +45,7 @@ cflags += [ "--target=aarch64-linux-gnu" ] ldflags += [ "--target=aarch64-linux-gnu" ] } -@@ -1261,23 +1259,8 @@ +@@ -1280,27 +1278,8 @@ # TODO(hans): https://crbug.com/637306 "-Wno-address-of-packed-member", @@ -65,11 +65,15 @@ - "-Wno-null-pointer-arithmetic", - - # TODO(hans): https://crbug.com/767059 -- "-Wno-tautological-unsigned-enum-zero-compare", +- # Disable -Wtautological-constant-compare (and implicitly also +- # -Wtautological-unsigned-enum-zero-compare), but re-enable +- # useful sub-diagnostics in that group. +- "-Wno-tautological-constant-compare", +- "-Wtautological-constant-out-of-range-compare", ] - } else if (use_xcode_clang && xcode_version_int >= 830) { - # This is necessary to allow a progressive transition from using xcode 8.0 -@@ -1861,7 +1844,7 @@ + } else if (use_xcode_clang) { + cflags += [ +@@ -1920,7 +1899,7 @@ # [1] crrev.com/a81d5ade0b043208e06ad71a38bcf9c348a1a52f cflags += [ "-gdwarf-3" ] } @@ -78,7 +82,7 @@ } if (use_debug_fission && !is_nacl) { cflags += [ "-gsplit-dwarf" ] -@@ -1875,7 +1858,7 @@ +@@ -1934,7 +1913,7 @@ # DWARF info may be corrupt; offsets in a range list entry are in different # sections" there. Maybe just a bug in nacl_switch_32.S. if (!is_mac && !is_ios && !is_nacl && target_cpu != "x86" && Modified: branches/2018Q1/www/chromium/files/patch-chrome_app_chrome__main__delegate.cc ============================================================================== --- branches/2018Q1/www/chromium/files/patch-chrome_app_chrome__main__delegate.cc Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-chrome_app_chrome__main__delegate.cc Fri Mar 9 12:54:40 2018 (r463958) @@ -1,6 +1,6 @@ ---- chrome/app/chrome_main_delegate.cc.orig 2017-12-15 02:04:07.000000000 +0100 -+++ chrome/app/chrome_main_delegate.cc 2017-12-24 00:00:14.610706000 +0100 -@@ -96,7 +96,7 @@ +--- chrome/app/chrome_main_delegate.cc.orig 2018-02-24 16:25:09.000000000 +0100 ++++ chrome/app/chrome_main_delegate.cc 2018-03-03 20:07:40.484969000 +0100 +@@ -98,7 +98,7 @@ #include "chrome/app/shutdown_signal_handlers_posix.h" #endif @@ -9,7 +9,7 @@ #include "components/nacl/common/nacl_paths.h" #include "components/nacl/zygote/nacl_fork_delegate_linux.h" #endif -@@ -137,7 +137,7 @@ +@@ -133,7 +133,7 @@ #include "v8/include/v8.h" #endif @@ -18,34 +18,16 @@ #include "base/environment.h" #endif -@@ -176,7 +176,7 @@ - g_chrome_content_browser_client = LAZY_INSTANCE_INITIALIZER; - #endif +@@ -238,7 +238,7 @@ --#if defined(OS_POSIX) -+#if defined(OS_POSIX) && !defined(OS_BSD) - base::LazyInstance::Leaky g_chrome_crash_client = - LAZY_INSTANCE_INITIALIZER; - #endif -@@ -304,7 +304,7 @@ - // and resources loaded. - bool SubprocessNeedsResourceBundle(const std::string& process_type) { - return --#if defined(OS_POSIX) && !defined(OS_MACOSX) -+#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_BSD) - // The zygote process opens the resources for the renderers. - process_type == switches::kZygoteProcess || - #endif -@@ -356,7 +356,7 @@ - } - #endif + #endif // defined(OS_WIN) --#if !defined(OS_MACOSX) && !defined(OS_ANDROID) -+#if !defined(OS_MACOSX) && !defined(OS_ANDROID) && !defined(OS_BSD) - void SIGTERMProfilingShutdown(int signal) { - Profiling::Stop(); - struct sigaction sigact; -@@ -408,7 +408,7 @@ +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) && !defined(OS_BSD) + void AdjustLinuxOOMScore(const std::string& process_type) { + // Browsers and zygotes should still be killable, but killed last. + const int kZygoteScore = 0; +@@ -407,7 +407,7 @@ std::string process_type = command_line->GetSwitchValueASCII(switches::kProcessType); @@ -54,7 +36,7 @@ // On Linux, Chrome does not support running multiple copies under different // DISPLAYs, so the profile directory can be specified in the environment to // support the virtual desktop use-case. -@@ -582,7 +582,7 @@ +@@ -581,7 +581,7 @@ #if defined(OS_CHROMEOS) chromeos::RegisterPathProvider(); #endif @@ -63,7 +45,7 @@ nacl::RegisterPathProvider(); #endif -@@ -604,7 +604,7 @@ +@@ -603,7 +603,7 @@ std::string format_str = command_line.GetSwitchValueASCII(switches::kDiagnosticsFormat); if (format_str == "machine") { @@ -72,7 +54,7 @@ } else if (format_str == "log") { format = diagnostics::DiagnosticsWriter::LOG; } else { -@@ -654,7 +654,7 @@ +@@ -653,7 +653,7 @@ std::string format_str = command_line.GetSwitchValueASCII(switches::kDiagnosticsFormat); if (format_str == "machine") { @@ -81,25 +63,16 @@ } else if (format_str == "human") { format = diagnostics::DiagnosticsWriter::HUMAN; } else { -@@ -766,7 +766,7 @@ - std::string process_type = - command_line.GetSwitchValueASCII(switches::kProcessType); - --#if defined(OS_POSIX) -+#if defined(OS_POSIX) && !defined(OS_BSD) - crash_reporter::SetCrashReporterClient(g_chrome_crash_client.Pointer()); +@@ -915,7 +915,7 @@ + InitializePDF(); #endif -@@ -906,7 +906,7 @@ - chrome::InitializePDF(); - #endif - -#if defined(OS_POSIX) && !defined(OS_MACOSX) +#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_BSD) // Zygote needs to call InitCrashReporter() in RunZygote(). if (process_type != switches::kZygoteProcess) { #if defined(OS_ANDROID) -@@ -922,7 +922,7 @@ +@@ -931,7 +931,7 @@ breakpad::InitCrashReporter(process_type); #endif // defined(OS_ANDROID) } @@ -108,21 +81,12 @@ // After all the platform Breakpads have been initialized, store the command // line for crash reporting. -@@ -975,7 +975,7 @@ - // This entry is not needed on Linux, where the NaCl loader - // process is launched via nacl_helper instead. - #if BUILDFLAG(ENABLE_NACL) && !defined(CHROME_MULTIPLE_DLL_BROWSER) && \ -- !defined(OS_LINUX) -+ !defined(OS_LINUX) && !defined(OS_BSD) - {switches::kNaClLoaderProcess, NaClMain}, - #else - {"", NULL}, // To avoid constant array of size 0 -@@ -1028,7 +1028,7 @@ +@@ -941,7 +941,7 @@ + void ChromeMainDelegate::SandboxInitialized(const std::string& process_type) { + // Note: If you are adding a new process type below, be sure to adjust the + // AdjustLinuxOOMScore function too. +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) && !defined(OS_BSD) + AdjustLinuxOOMScore(process_type); #endif - return process_type == switches::kRelauncherProcess; - } --#elif defined(OS_POSIX) && !defined(OS_ANDROID) -+#elif defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_BSD) - void ChromeMainDelegate::ZygoteStarting( - std::vector>* delegates) { - #if defined(OS_CHROMEOS) + #if defined(OS_WIN) Modified: branches/2018Q1/www/chromium/files/patch-chrome_app_generated__resources.grd ============================================================================== --- branches/2018Q1/www/chromium/files/patch-chrome_app_generated__resources.grd Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-chrome_app_generated__resources.grd Fri Mar 9 12:54:40 2018 (r463958) @@ -1,6 +1,6 @@ ---- chrome/app/generated_resources.grd.orig 2017-12-15 02:04:07.000000000 +0100 -+++ chrome/app/generated_resources.grd 2017-12-24 00:06:55.397820000 +0100 -@@ -6903,7 +6903,7 @@ +--- chrome/app/generated_resources.grd.orig 2018-02-24 16:25:09.000000000 +0100 ++++ chrome/app/generated_resources.grd 2018-03-03 20:22:12.855371000 +0100 +@@ -6919,7 +6919,7 @@ Google Payments @@ -9,7 +9,7 @@ Themes -@@ -6911,7 +6911,7 @@ +@@ -6927,7 +6927,7 @@ Reset to default theme @@ -18,12 +18,12 @@ Use GTK+ theme -@@ -8061,7 +8061,7 @@ +@@ -8076,7 +8076,7 @@ Set as default - + - - Use system title bar and borders + + Minimize Modified: branches/2018Q1/www/chromium/files/patch-chrome_browser_browser__resources.grd ============================================================================== --- branches/2018Q1/www/chromium/files/patch-chrome_browser_browser__resources.grd Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-chrome_browser_browser__resources.grd Fri Mar 9 12:54:40 2018 (r463958) @@ -1,7 +1,16 @@ ---- chrome/browser/browser_resources.grd.orig 2017-12-15 02:04:08.000000000 +0100 -+++ chrome/browser/browser_resources.grd 2017-12-24 00:39:53.904855000 +0100 -@@ -370,7 +370,7 @@ - +--- chrome/browser/browser_resources.grd.orig 2018-02-24 16:25:09.000000000 +0100 ++++ chrome/browser/browser_resources.grd 2018-03-04 09:28:51.895810000 +0100 +@@ -77,7 +77,7 @@ + + + +- ++ + + + +@@ -369,7 +369,7 @@ + - @@ -9,8 +18,8 @@ -@@ -620,7 +620,7 @@ - +@@ -619,7 +619,7 @@ + - Modified: branches/2018Q1/www/chromium/files/patch-chrome_browser_chrome__content__browser__client.cc ============================================================================== --- branches/2018Q1/www/chromium/files/patch-chrome_browser_chrome__content__browser__client.cc Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-chrome_browser_chrome__content__browser__client.cc Fri Mar 9 12:54:40 2018 (r463958) @@ -1,6 +1,6 @@ ---- chrome/browser/chrome_content_browser_client.cc.orig 2017-09-05 21:05:12.000000000 +0200 -+++ chrome/browser/chrome_content_browser_client.cc 2017-09-06 17:56:29.888034000 +0200 -@@ -258,7 +258,7 @@ +--- chrome/browser/chrome_content_browser_client.cc.orig 2018-02-24 16:25:09.000000000 +0100 ++++ chrome/browser/chrome_content_browser_client.cc 2018-03-03 20:34:31.799512000 +0100 +@@ -281,7 +281,7 @@ #include "chromeos/chromeos_switches.h" #include "components/user_manager/user_manager.h" #include "services/service_manager/public/interfaces/interface_provider_spec.mojom.h" @@ -8,9 +8,9 @@ +#elif defined(OS_LINUX) || defined(OS_BSD) #include "chrome/browser/chrome_browser_main_linux.h" #elif defined(OS_ANDROID) - #include "chrome/browser/android/app_hooks.h" -@@ -286,7 +286,7 @@ - #include "chrome/browser/payments/payment_request_factory.h" + #include "base/android/application_status_listener.h" +@@ -316,7 +316,7 @@ + #include "chrome/common/importer/profile_import.mojom.h" #endif -#if defined(OS_LINUX) || defined(OS_WIN) @@ -18,7 +18,7 @@ #include "chrome/browser/webshare/share_service_impl.h" #endif -@@ -300,7 +300,7 @@ +@@ -330,7 +330,7 @@ #include "chrome/browser/ui/views/chrome_browser_main_extra_parts_views.h" #endif @@ -27,25 +27,7 @@ #include "chrome/browser/ui/views/chrome_browser_main_extra_parts_views_linux.h" #endif -@@ -548,7 +548,7 @@ - return false; - } - --#if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) -+#if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) && !defined(OS_BSD) - breakpad::CrashHandlerHostLinux* CreateCrashHandlerHost( - const std::string& process_type) { - base::FilePath dumps_path; -@@ -598,7 +598,7 @@ - - return -1; - } --#endif // defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) -+#endif // defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) && !defined(OS_BSD) - - void SetApplicationLocaleOnIOThread(const std::string& locale) { - DCHECK_CURRENTLY_ON(BrowserThread::IO); -@@ -876,7 +876,7 @@ +@@ -912,7 +912,7 @@ main_parts = new ChromeBrowserMainPartsMac(parameters); #elif defined(OS_CHROMEOS) main_parts = new chromeos::ChromeBrowserMainPartsChromeos(parameters); @@ -54,7 +36,7 @@ main_parts = new ChromeBrowserMainPartsLinux(parameters); #elif defined(OS_ANDROID) main_parts = new ChromeBrowserMainPartsAndroid(parameters); -@@ -892,7 +892,7 @@ +@@ -928,7 +928,7 @@ // Construct additional browser parts. Stages are called in the order in // which they are added. #if defined(TOOLKIT_VIEWS) @@ -63,16 +45,16 @@ main_parts->AddParts(new ChromeBrowserMainExtraPartsViewsLinux()); #else main_parts->AddParts(new ChromeBrowserMainExtraPartsViews()); -@@ -1540,7 +1540,7 @@ +@@ -1651,7 +1651,7 @@ command_line->AppendSwitchASCII(switches::kMetricsClientID, client_info->client_id); } -#elif defined(OS_POSIX) +#elif defined(OS_POSIX) && !defined(OS_BSD) - if (breakpad::IsCrashReporterEnabled()) { - std::string switch_value; - std::unique_ptr client_info = -@@ -2710,7 +2710,7 @@ + bool enable_crash_reporter = breakpad::IsCrashReporterEnabled(); + #if defined(OS_CHROMEOS) + // Chrome OS uses the OS-level crash_reporter for mash services, so disable +@@ -2913,7 +2913,7 @@ } } @@ -81,7 +63,7 @@ void ChromeContentBrowserClient::GetAdditionalMappedFilesForChildProcess( const base::CommandLine& command_line, int child_process_id, -@@ -2752,7 +2752,7 @@ +@@ -2949,7 +2949,7 @@ } #endif // defined(OS_ANDROID) } @@ -90,7 +72,7 @@ #if defined(OS_WIN) base::string16 ChromeContentBrowserClient::GetAppContainerSidForSandboxType( -@@ -3316,7 +3316,7 @@ +@@ -3630,7 +3630,7 @@ #if defined(OS_ANDROID) frame_interfaces_parameterized_->AddInterface(base::Bind( &ForwardToJavaWebContentsRegistry)); Modified: branches/2018Q1/www/chromium/files/patch-chrome_browser_first__run_first__run__internal__posix.cc ============================================================================== --- branches/2018Q1/www/chromium/files/patch-chrome_browser_first__run_first__run__internal__posix.cc Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-chrome_browser_first__run_first__run__internal__posix.cc Fri Mar 9 12:54:40 2018 (r463958) @@ -1,11 +1,20 @@ ---- chrome/browser/first_run/first_run_internal_posix.cc.orig 2017-04-19 19:06:29 UTC -+++ chrome/browser/first_run/first_run_internal_posix.cc -@@ -24,7 +24,7 @@ namespace first_run { +--- chrome/browser/first_run/first_run_internal_posix.cc.orig 2018-02-24 16:25:09.000000000 +0100 ++++ chrome/browser/first_run/first_run_internal_posix.cc 2018-03-03 21:26:08.717035000 +0100 +@@ -34,7 +34,7 @@ namespace internal { + namespace { +-#if !defined(OS_CHROMEOS) ++#if !defined(OS_CHROMEOS) && !defined(OS_BSD) + // Returns whether the first run dialog should be shown. This is only true for + // certain builds, and only if the user has not already set preferences. In a + // real, official-build first run, initializes the default metrics reporting if +@@ -80,7 +80,7 @@ + } // namespace + void DoPostImportPlatformSpecificTasks(Profile* profile) { -#if !defined(OS_CHROMEOS) +#if !defined(OS_CHROMEOS) && !defined(OS_BSD) - base::FilePath local_state_path; - PathService::Get(chrome::FILE_LOCAL_STATE, &local_state_path); - bool local_state_file_exists = base::PathExists(local_state_path); + if (!ShouldShowFirstRunDialog()) + return; + Copied: branches/2018Q1/www/chromium/files/patch-chrome_browser_ssl_ssl_error_controller_client.cc (from r463839, head/www/chromium/files/patch-chrome_browser_ssl_ssl_error_controller_client.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/chromium/files/patch-chrome_browser_ssl_ssl_error_controller_client.cc Fri Mar 9 12:54:40 2018 (r463958, copy of r463839, head/www/chromium/files/patch-chrome_browser_ssl_ssl_error_controller_client.cc) @@ -0,0 +1,20 @@ +--- chrome/browser/ssl/ssl_error_controller_client.cc.orig 2018-03-03 21:13:39.612526000 +0100 ++++ chrome/browser/ssl/ssl_error_controller_client.cc 2018-03-03 21:14:15.298290000 +0100 +@@ -55,7 +55,7 @@ + #if defined(OS_ANDROID) + chrome::android::OpenDateAndTimeSettings(); + +-#elif defined(OS_LINUX) ++#elif defined(OS_LINUX) || defined(OS_BSD) + struct ClockCommand { + const char* const pathname; + const char* const argument; +@@ -185,7 +185,7 @@ + + bool SSLErrorControllerClient::CanLaunchDateAndTimeSettings() { + #if defined(OS_ANDROID) || defined(OS_LINUX) || defined(OS_MACOSX) || \ +- defined(OS_WIN) ++ defined(OS_WIN) || defined(OS_BSD) + return true; + #else + return false; Modified: branches/2018Q1/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group.cc ============================================================================== --- branches/2018Q1/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group.cc Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group.cc Fri Mar 9 12:54:40 2018 (r463958) @@ -1,6 +1,6 @@ ---- chrome/browser/task_manager/sampling/task_group.cc.orig 2017-12-15 02:04:10.000000000 +0100 -+++ chrome/browser/task_manager/sampling/task_group.cc 2017-12-24 02:18:09.634446000 +0100 -@@ -28,9 +28,9 @@ +--- chrome/browser/task_manager/sampling/task_group.cc.orig 2018-02-24 16:25:10.000000000 +0100 ++++ chrome/browser/task_manager/sampling/task_group.cc 2018-03-03 21:46:29.318291000 +0100 +@@ -29,9 +29,9 @@ #if defined(OS_WIN) REFRESH_TYPE_START_TIME | REFRESH_TYPE_CPU_TIME | #endif // defined(OS_WIN) @@ -12,19 +12,19 @@ #if BUILDFLAG(ENABLE_NACL) REFRESH_TYPE_NACL | #endif // BUILDFLAG(ENABLE_NACL) -@@ -103,9 +103,9 @@ +@@ -105,9 +105,9 @@ + #if BUILDFLAG(ENABLE_NACL) nacl_debug_stub_port_(nacl::kGdbDebugStubPortUnknown), #endif // BUILDFLAG(ENABLE_NACL) - idle_wakeups_per_second_(-1), -#if defined(OS_LINUX) +#if defined(OS_LINUX) || defined(OS_BSD) open_fd_count_(-1), -#endif // defined(OS_LINUX) +#endif // defined(OS_LINUX) || defined(OS_BSD) + idle_wakeups_per_second_(-1), gpu_memory_has_duplicates_(false), is_backgrounded_(false), - weak_ptr_factory_(this) { -@@ -118,10 +118,10 @@ +@@ -121,10 +121,10 @@ weak_ptr_factory_.GetWeakPtr()), base::Bind(&TaskGroup::OnIdleWakeupsRefreshDone, weak_ptr_factory_.GetWeakPtr()), @@ -37,9 +37,9 @@ base::Bind(&TaskGroup::OnProcessPriorityDone, weak_ptr_factory_.GetWeakPtr())); -@@ -338,14 +338,14 @@ - OnBackgroundRefreshTypeFinished(REFRESH_TYPE_IDLE_WAKEUPS); +@@ -284,14 +284,14 @@ } + #endif // BUILDFLAG(ENABLE_NACL) -#if defined(OS_LINUX) +#if defined(OS_LINUX) || defined(OS_BSD) @@ -52,5 +52,5 @@ -#endif // defined(OS_LINUX) +#endif // defined(OS_LINUX) || defined(OS_BSD) - void TaskGroup::OnProcessPriorityDone(bool is_backgrounded) { + void TaskGroup::OnCpuRefreshDone(double cpu_usage) { DCHECK_CURRENTLY_ON(content::BrowserThread::UI); Modified: branches/2018Q1/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group.h ============================================================================== --- branches/2018Q1/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group.h Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group.h Fri Mar 9 12:54:40 2018 (r463958) @@ -1,8 +1,8 @@ ---- chrome/browser/task_manager/sampling/task_group.h.orig 2017-04-19 19:06:30 UTC -+++ chrome/browser/task_manager/sampling/task_group.h -@@ -96,9 +96,9 @@ class TaskGroup { +--- chrome/browser/task_manager/sampling/task_group.h.orig 2018-02-24 16:25:10.000000000 +0100 ++++ chrome/browser/task_manager/sampling/task_group.h 2018-03-03 21:51:35.928601000 +0100 +@@ -106,9 +106,9 @@ int nacl_debug_stub_port() const { return nacl_debug_stub_port_; } - #endif // !defined(DISABLE_NACL) + #endif // BUILDFLAG(ENABLE_NACL) -#if defined(OS_LINUX) +#if defined(OS_LINUX) || defined(OS_BSD) @@ -12,28 +12,28 @@ int idle_wakeups_per_second() const { return idle_wakeups_per_second_; } -@@ -124,9 +124,9 @@ class TaskGroup { - - void OnIdleWakeupsRefreshDone(int idle_wakeups_per_second); - +@@ -122,9 +122,9 @@ + void RefreshNaClDebugStubPort(int child_process_unique_id); + void OnRefreshNaClDebugStubPortDone(int port); + #endif -#if defined(OS_LINUX) +#if defined(OS_LINUX) || defined(OS_BSD) void OnOpenFdCountRefreshDone(int open_fd_count); -#endif // defined(OS_LINUX) +#endif // defined(OS_LINUX) || defined(OS_BSD) - void OnProcessPriorityDone(bool is_backgrounded); - -@@ -174,10 +174,10 @@ class TaskGroup { + void OnCpuRefreshDone(double cpu_usage); + void OnMemoryUsageRefreshDone(MemoryUsageStats memory_usage); +@@ -184,10 +184,10 @@ + #if BUILDFLAG(ENABLE_NACL) int nacl_debug_stub_port_; - #endif // !defined(DISABLE_NACL) - int idle_wakeups_per_second_; + #endif // BUILDFLAG(ENABLE_NACL) -#if defined(OS_LINUX) +#if defined(OS_LINUX) || defined(OS_BSD) // The number of file descriptors currently open by the process. int open_fd_count_; -#endif // defined(OS_LINUX) +#endif // defined(OS_LINUX) || defined(OS_BSD) + int idle_wakeups_per_second_; bool gpu_memory_has_duplicates_; bool is_backgrounded_; - Modified: branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_browser__command__controller.cc ============================================================================== --- branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_browser__command__controller.cc Fri Mar 9 12:34:33 2018 (r463957) +++ branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_browser__command__controller.cc Fri Mar 9 12:54:40 2018 (r463958) @@ -1,7 +1,7 @@ ---- chrome/browser/ui/browser_command_controller.cc.orig 2017-06-05 19:03:03 UTC -+++ chrome/browser/ui/browser_command_controller.cc -@@ -80,7 +80,7 @@ - #include "chrome/browser/ui/browser_commands_chromeos.h" +--- chrome/browser/ui/browser_command_controller.cc.orig 2018-02-24 16:25:10.000000000 +0100 ++++ chrome/browser/ui/browser_command_controller.cc 2018-03-03 21:58:39.480640000 +0100 +@@ -83,7 +83,7 @@ + #include "ui/base/clipboard/clipboard_types.h" #endif -#if defined(OS_LINUX) && !defined(OS_CHROMEOS) @@ -9,7 +9,7 @@ #include "ui/base/ime/linux/text_edit_key_bindings_delegate_auralinux.h" #endif -@@ -209,7 +209,7 @@ bool BrowserCommandController::IsReservedCommandOrKey( +@@ -216,7 +216,7 @@ #endif } @@ -18,21 +18,21 @@ // If this key was registered by the user as a content editing hotkey, then // it is not reserved. ui::TextEditKeyBindingsDelegateAuraLinux* delegate = -@@ -413,7 +413,7 @@ void BrowserCommandController::ExecuteCommandWithDispo +@@ -425,7 +425,7 @@ break; #endif -#if defined(OS_LINUX) && !defined(OS_CHROMEOS) +#if (defined(OS_LINUX) || defined(OS_BSD)) && !defined(OS_CHROMEOS) - case IDC_USE_SYSTEM_TITLE_BAR: { - PrefService* prefs = profile()->GetPrefs(); - prefs->SetBoolean(prefs::kUseCustomChromeFrame, -@@ -766,7 +766,7 @@ void BrowserCommandController::InitCommandState() { + case IDC_MINIMIZE_WINDOW: + browser_->window()->Minimize(); + break; +@@ -853,7 +853,7 @@ command_updater_.UpdateCommandEnabled(IDC_VISIT_DESKTOP_OF_LRU_USER_2, true); command_updater_.UpdateCommandEnabled(IDC_VISIT_DESKTOP_OF_LRU_USER_3, true); #endif -#if defined(OS_LINUX) && !defined(OS_CHROMEOS) +#if (defined(OS_LINUX) || defined(OS_BSD)) && !defined(OS_CHROMEOS) - command_updater_.UpdateCommandEnabled(IDC_USE_SYSTEM_TITLE_BAR, true); - #endif - + command_updater_.UpdateCommandEnabled(IDC_MINIMIZE_WINDOW, true); + command_updater_.UpdateCommandEnabled(IDC_MAXIMIZE_WINDOW, true); + command_updater_.UpdateCommandEnabled(IDC_RESTORE_WINDOW, true); Copied: branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_sad_tab.cc (from r463839, head/www/chromium/files/patch-chrome_browser_ui_sad_tab.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_sad_tab.cc Fri Mar 9 12:54:40 2018 (r463958, copy of r463839, head/www/chromium/files/patch-chrome_browser_ui_sad_tab.cc) @@ -0,0 +1,11 @@ +--- chrome/browser/ui/sad_tab.cc.orig 2018-03-03 21:11:09.039038000 +0100 ++++ chrome/browser/ui/sad_tab.cc 2018-03-03 21:11:28.213027000 +0100 +@@ -180,7 +180,7 @@ + // Only show incognito suggestion if not already in Incognito mode. + if (!web_contents_->GetBrowserContext()->IsOffTheRecord()) + message_ids.insert(message_ids.begin(), IDS_SAD_TAB_RELOAD_INCOGNITO); +-#if defined(OS_MACOSX) || defined(OS_LINUX) ++#if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_BSD) + // Note: on macOS, Linux and ChromeOS, the first bullet is either one of + // IDS_SAD_TAB_RELOAD_CLOSE_TABS or IDS_SAD_TAB_RELOAD_CLOSE_NOTABS + // followed by one of the above suggestions. Copied: branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_views_frame_browser_non_client_frame_view_factory_views.cc (from r463839, head/www/chromium/files/patch-chrome_browser_ui_views_frame_browser_non_client_frame_view_factory_views.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/chromium/files/patch-chrome_browser_ui_views_frame_browser_non_client_frame_view_factory_views.cc Fri Mar 9 12:54:40 2018 (r463958, copy of r463839, head/www/chromium/files/patch-chrome_browser_ui_views_frame_browser_non_client_frame_view_factory_views.cc) @@ -0,0 +1,11 @@ +--- chrome/browser/ui/views/frame/browser_non_client_frame_view_factory_views.cc.orig 2018-03-03 21:07:27.595112000 +0100 ++++ chrome/browser/ui/views/frame/browser_non_client_frame_view_factory_views.cc 2018-03-03 21:07:57.689186000 +0100 +@@ -18,7 +18,7 @@ + #include "chrome/browser/ui/views/frame/glass_browser_frame_view.h" + #endif + *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Fri Mar 9 14:39:01 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD7B2F2D974; Fri, 9 Mar 2018 14:39:01 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 60E6C79D20; Fri, 9 Mar 2018 14:39:01 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5BDD020624; Fri, 9 Mar 2018 14:39:01 +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 w29Ed1PA015348; Fri, 9 Mar 2018 14:39:01 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29Ed1BP015346; Fri, 9 Mar 2018 14:39:01 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803091439.w29Ed1BP015346@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Mar 2018 14:39:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463963 - in branches/2018Q1/www: firefox/files waterfox/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/www: firefox/files waterfox/files X-SVN-Commit-Revision: 463963 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 14:39:01 -0000 Author: jbeich Date: Fri Mar 9 14:39:00 2018 New Revision: 463963 URL: https://svnweb.freebsd.org/changeset/ports/463963 Log: MFH: r460539 www/firefox: unbreak with Rust 1.25 error: unnecessary parentheses around function argument --> servo/ports/geckolib/glue.rs:4391:36 | 4391 | let name = unsafe { Atom::from((&*name)) }; | ^^^^^^^^ help: remove these parentheses | note: lint level defined here --> servo/ports/geckolib/lib.rs:5:9 | 5 | #![deny(warnings)] | ^^^^^^^^ = note: #[deny(unused_parens)] implied by #[deny(warnings)] Obtained from: upstream (Firefox 59) Approved by: ports-secteam blanket Added: branches/2018Q1/www/firefox/files/patch-bug1434619 - copied unchanged from r460539, head/www/firefox/files/patch-bug1434619 branches/2018Q1/www/waterfox/files/patch-bug1434619 - copied unchanged from r460539, head/www/waterfox/files/patch-bug1434619 Modified: Directory Properties: branches/2018Q1/ (props changed) Copied: branches/2018Q1/www/firefox/files/patch-bug1434619 (from r460539, head/www/firefox/files/patch-bug1434619) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/firefox/files/patch-bug1434619 Fri Mar 9 14:39:00 2018 (r463963, copy of r460539, head/www/firefox/files/patch-bug1434619) @@ -0,0 +1,42 @@ +commit 98c3940f8b16 +Author: Simon Sapin +Date: Wed Jan 31 11:01:26 2018 -0600 + + servo: Merge #19914 - Remove #![deny(warnings)] (from servo:dont-deny); r=nox + + We already have https://github.com/servo/servo/pull/19612 to deny warnings at the time of landing into master. But it’s not useful to break the build when later compiler with a more recent Rust version that has introduced new warnings: + + https://bugzilla.mozilla.org/show_bug.cgi?id=1434619 + + Source-Repo: https://github.com/servo/servo + Source-Revision: 7546c37f1e921a112fef5828c59c6738a98c3f30 +--- + servo/components/style/lib.rs | 1 - + servo/ports/geckolib/lib.rs | 1 - + servo/support/gecko/nsstring/src/lib.rs | 1 - + 3 files changed, 3 deletions(-) + +diff --git servo/ports/geckolib/lib.rs servo/ports/geckolib/lib.rs +index ca57307c245a..15c42509a811 100644 +--- servo/ports/geckolib/lib.rs ++++ servo/ports/geckolib/lib.rs +@@ -2,7 +2,6 @@ + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +-#![deny(warnings)] + + extern crate cssparser; + extern crate env_logger; +diff --git servo/support/gecko/nsstring/src/lib.rs servo/support/gecko/nsstring/src/lib.rs +index 0321e38f8bbf..d5c5f147c480 100644 +--- servo/support/gecko/nsstring/src/lib.rs ++++ servo/support/gecko/nsstring/src/lib.rs +@@ -113,7 +113,6 @@ + //! which invoke their member's destructors through C++ code. + + #![allow(non_camel_case_types)] +-#![deny(warnings)] + + #[macro_use] + extern crate bitflags; Copied: branches/2018Q1/www/waterfox/files/patch-bug1434619 (from r460539, head/www/waterfox/files/patch-bug1434619) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/waterfox/files/patch-bug1434619 Fri Mar 9 14:39:00 2018 (r463963, copy of r460539, head/www/waterfox/files/patch-bug1434619) @@ -0,0 +1,54 @@ +commit 98c3940f8b16 +Author: Simon Sapin +Date: Wed Jan 31 11:01:26 2018 -0600 + + servo: Merge #19914 - Remove #![deny(warnings)] (from servo:dont-deny); r=nox + + We already have https://github.com/servo/servo/pull/19612 to deny warnings at the time of landing into master. But it’s not useful to break the build when later compiler with a more recent Rust version that has introduced new warnings: + + https://bugzilla.mozilla.org/show_bug.cgi?id=1434619 + + Source-Repo: https://github.com/servo/servo + Source-Revision: 7546c37f1e921a112fef5828c59c6738a98c3f30 +--- + servo/components/style/lib.rs | 1 - + servo/ports/geckolib/lib.rs | 1 - + servo/support/gecko/nsstring/src/lib.rs | 1 - + 3 files changed, 3 deletions(-) + +diff --git servo/components/style/lib.rs servo/components/style/lib.rs +index d789c1d3305d..8a343496e6de 100644 +--- servo/components/style/lib.rs ++++ servo/components/style/lib.rs +@@ -23,7 +23,6 @@ + //! [cssparser]: ../cssparser/index.html + //! [selectors]: ../selectors/index.html + +-#![deny(warnings)] + #![deny(missing_docs)] + + #![recursion_limit = "500"] // For define_css_keyword_enum! in -moz-appearance +diff --git servo/ports/geckolib/lib.rs servo/ports/geckolib/lib.rs +index ca57307c245a..15c42509a811 100644 +--- servo/ports/geckolib/lib.rs ++++ servo/ports/geckolib/lib.rs +@@ -2,7 +2,6 @@ + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +-#![deny(warnings)] + + extern crate cssparser; + extern crate env_logger; +diff --git servo/support/gecko/nsstring/src/lib.rs servo/support/gecko/nsstring/src/lib.rs +index 0321e38f8bbf..d5c5f147c480 100644 +--- servo/components/style/gecko_bindings/nsstring_vendor/src/lib.rs ++++ servo/components/style/gecko_bindings/nsstring_vendor/src/lib.rs +@@ -113,7 +113,6 @@ + //! which invoke their member's destructors through C++ code. + + #![allow(non_camel_case_types)] +-#![deny(warnings)] + + #[macro_use] + extern crate bitflags; From owner-svn-ports-branches@freebsd.org Fri Mar 9 14:42:50 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18AE9F2DFB4; Fri, 9 Mar 2018 14:42:50 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B46477A2B0; Fri, 9 Mar 2018 14:42:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AB504207C2; Fri, 9 Mar 2018 14:42:49 +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 w29Egn0h020938; Fri, 9 Mar 2018 14:42:49 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29EgmtH020927; Fri, 9 Mar 2018 14:42:48 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803091442.w29EgmtH020927@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Mar 2018 14:42:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463964 - in branches/2018Q1: Mk Mk/Uses www/firefox www/firefox-i18n www/firefox/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1: Mk Mk/Uses www/firefox www/firefox-i18n www/firefox/files X-SVN-Commit-Revision: 463964 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 14:42:50 -0000 Author: jbeich Date: Fri Mar 9 14:42:48 2018 New Revision: 463964 URL: https://svnweb.freebsd.org/changeset/ports/463964 Log: MFH: r463675 r463875 r463877 r463894 r463962 www/firefox: update to 59.0 Changes: https://www.mozilla.org/firefox/59.0/releasenotes/ Security: c71cdc95-3c18-45b7-866a-af28b59aabb5 Approved by: ports-secteam (riggs) Added: branches/2018Q1/www/firefox/files/patch-bug1444074 - copied unchanged from r463894, head/www/firefox/files/patch-bug1444074 Deleted: branches/2018Q1/www/firefox/files/patch-bug1388744 branches/2018Q1/www/firefox/files/patch-bug1434619 branches/2018Q1/www/firefox/files/patch-config-baseconfig.mk Modified: branches/2018Q1/Mk/Uses/gecko.mk branches/2018Q1/Mk/bsd.gecko.mk branches/2018Q1/www/firefox-i18n/Makefile branches/2018Q1/www/firefox-i18n/Makefile.lang branches/2018Q1/www/firefox-i18n/Makefile.option branches/2018Q1/www/firefox-i18n/distinfo branches/2018Q1/www/firefox/Makefile branches/2018Q1/www/firefox/distinfo branches/2018Q1/www/firefox/files/patch-bug847568 branches/2018Q1/www/firefox/files/patch-z-bug517422 Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/Mk/Uses/gecko.mk ============================================================================== --- branches/2018Q1/Mk/Uses/gecko.mk Fri Mar 9 14:39:00 2018 (r463963) +++ branches/2018Q1/Mk/Uses/gecko.mk Fri Mar 9 14:42:48 2018 (r463964) @@ -37,12 +37,12 @@ RUN_DEPENDS+= libxul>=45:www/libxul .elif ${gecko_ARGS:Mfirefox} _GECKO_DEFAULT_VERSION= 52 -_GECKO_VERSIONS= 52 58 +_GECKO_VERSIONS= 52 59 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions 52_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr -58_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox +59_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null Modified: branches/2018Q1/Mk/bsd.gecko.mk ============================================================================== --- branches/2018Q1/Mk/bsd.gecko.mk Fri Mar 9 14:39:00 2018 (r463963) +++ branches/2018Q1/Mk/bsd.gecko.mk Fri Mar 9 14:42:48 2018 (r463964) @@ -384,7 +384,7 @@ post-patch-SNDIO-on: .endif .if ${PORT_OPTIONS:MRUST} || ${MOZILLA_VER:R:R} >= 54 -BUILD_DEPENDS+= ${RUST_PORT:T}>=1.21.0:${RUST_PORT} +BUILD_DEPENDS+= ${RUST_PORT:T}>=1.22.1:${RUST_PORT} RUST_PORT?= lang/rust . if ${MOZILLA_VER:R:R} < 54 MOZ_OPTIONS+= --enable-rust Modified: branches/2018Q1/www/firefox-i18n/Makefile ============================================================================== --- branches/2018Q1/www/firefox-i18n/Makefile Fri Mar 9 14:39:00 2018 (r463963) +++ branches/2018Q1/www/firefox-i18n/Makefile Fri Mar 9 14:42:48 2018 (r463964) @@ -2,10 +2,11 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 58.0.2 +PORTVERSION= 59.0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build4/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} @@ -15,7 +16,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:archivers/zip -USES= zip:infozip gecko:firefox,58,build +USES= zip:infozip gecko:firefox,59,build USE_XPI= firefox NO_ARCH= yes Modified: branches/2018Q1/www/firefox-i18n/Makefile.lang ============================================================================== --- branches/2018Q1/www/firefox-i18n/Makefile.lang Fri Mar 9 14:39:00 2018 (r463963) +++ branches/2018Q1/www/firefox-i18n/Makefile.lang Fri Mar 9 14:42:48 2018 (r463964) @@ -4,7 +4,7 @@ FIREFOX_I18N_ALL_= ach af an ar as ast az be bg bn-BD bn-IN br bs ca cak \ cs cy da de dsb el en-GB en-US en-ZA eo es-AR es-CL \ es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl gn \ - gu-IN he hi-IN hr hsb hu hy-AM id is it ja ka kab \ + gu-IN he hi-IN hr hsb hu hy-AM ia id is it ja ka kab \ kk km kn ko lij lt lv mai mk ml mr ms my nb-NO ne-NP nl \ nn-NO or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son \ sq sr sv-SE ta te th tr uk ur uz vi xh zh-CN zh-TW @@ -152,6 +152,9 @@ FIREFOX_I18N+= hu .endif .if ${PORT_OPTIONS:MLANG_AM} FIREFOX_I18N+= hy-AM +.endif +.if ${PORT_OPTIONS:MLANG_IA} +FIREFOX_I18N+= ia .endif .if ${PORT_OPTIONS:MLANG_ID} FIREFOX_I18N+= id Modified: branches/2018Q1/www/firefox-i18n/Makefile.option ============================================================================== --- branches/2018Q1/www/firefox-i18n/Makefile.option Fri Mar 9 14:39:00 2018 (r463963) +++ branches/2018Q1/www/firefox-i18n/Makefile.option Fri Mar 9 14:42:48 2018 (r463964) @@ -49,6 +49,7 @@ OPTIONS_DEFINE= LANG_ACH \ LANG_HSB \ LANG_HU \ LANG_AM \ + LANG_IA \ LANG_ID \ LANG_IS \ LANG_IT \ @@ -113,6 +114,7 @@ LANG_DSB_DESC?= Lower Sorbian language support LANG_FF_DESC?= Fulah language support LANG_GN_DESC?= Guarani (Paraguay) language support LANG_HSB_DESC?= Upper Sorbian language support +LANG_IA_DESC?= Interlingua language support LANG_KA_DESC?= Georgian language support LANG_KAB_DESC?= Taqbaylit language support LANG_KM_DESC?= Khmer language support Modified: branches/2018Q1/www/firefox-i18n/distinfo ============================================================================== --- branches/2018Q1/www/firefox-i18n/distinfo Fri Mar 9 14:39:00 2018 (r463963) +++ branches/2018Q1/www/firefox-i18n/distinfo Fri Mar 9 14:42:48 2018 (r463964) @@ -1,193 +1,195 @@ -TIMESTAMP = 1517954713 -SHA256 (xpi/firefox-i18n-58.0.2/ach.xpi) = ffae1fab1fa4e65938f9ba6e0245406a9738a805a3bf59521ff1b2d8cc322427 -SIZE (xpi/firefox-i18n-58.0.2/ach.xpi) = 445613 -SHA256 (xpi/firefox-i18n-58.0.2/af.xpi) = 010e8ee7bd1bdab8fc73687ca57d0c1f6c899bd294d17392c875c3943a43f625 -SIZE (xpi/firefox-i18n-58.0.2/af.xpi) = 445015 -SHA256 (xpi/firefox-i18n-58.0.2/an.xpi) = 217a62b3c977bee1945d82ddd9f761597fda54966198f37d2a7c02074122b106 -SIZE (xpi/firefox-i18n-58.0.2/an.xpi) = 469442 -SHA256 (xpi/firefox-i18n-58.0.2/ar.xpi) = ff666ff72fac3afcc52811b15c05c4ffdad98cd3540e4cd6638eb9c00d4234e4 -SIZE (xpi/firefox-i18n-58.0.2/ar.xpi) = 494894 -SHA256 (xpi/firefox-i18n-58.0.2/as.xpi) = d7fe6ce5bce6cae7c83c30c096b3224b37dcd8db186c902df4c22db6c55f3b39 -SIZE (xpi/firefox-i18n-58.0.2/as.xpi) = 492796 -SHA256 (xpi/firefox-i18n-58.0.2/ast.xpi) = c1764023b7acc91cd94625c7e480724b9c9235b7bb92799126c392d9a24f0b6a -SIZE (xpi/firefox-i18n-58.0.2/ast.xpi) = 462088 -SHA256 (xpi/firefox-i18n-58.0.2/az.xpi) = e870cfc8d1dbaf783e1d5d4c1f25ed08423b4b53017469667f9cd4adc86bd1bb -SIZE (xpi/firefox-i18n-58.0.2/az.xpi) = 470909 -SHA256 (xpi/firefox-i18n-58.0.2/be.xpi) = a1ef1c9607450193cd0906fcad1dd726374d19642728ab57c9edc26afd15124a -SIZE (xpi/firefox-i18n-58.0.2/be.xpi) = 524437 -SHA256 (xpi/firefox-i18n-58.0.2/bg.xpi) = 5be684f90ca4f1ef80a918f0e32433d197317ab6f7c3b6fcef43acbdccdd287f -SIZE (xpi/firefox-i18n-58.0.2/bg.xpi) = 517352 -SHA256 (xpi/firefox-i18n-58.0.2/bn-BD.xpi) = 359ceb220d4371797e6ff3513c6d8ab22ae58db4e64cb1cdb6bc300f940f0bfc -SIZE (xpi/firefox-i18n-58.0.2/bn-BD.xpi) = 533458 -SHA256 (xpi/firefox-i18n-58.0.2/bn-IN.xpi) = e30c7166f35d1007da00853d3d2ec3a1517c63f1b3fad7c01f0f0db604850f02 -SIZE (xpi/firefox-i18n-58.0.2/bn-IN.xpi) = 518930 -SHA256 (xpi/firefox-i18n-58.0.2/br.xpi) = fec6efe22ff5bb5c1a8a95285801063b6bbc882645d8cac9f916e1132ed1ea8e -SIZE (xpi/firefox-i18n-58.0.2/br.xpi) = 457661 -SHA256 (xpi/firefox-i18n-58.0.2/bs.xpi) = a2a741ee5b6251d0c9c57bea13228dbc69620b688975ac81e4bb3bdc98127fb1 -SIZE (xpi/firefox-i18n-58.0.2/bs.xpi) = 466550 -SHA256 (xpi/firefox-i18n-58.0.2/ca.xpi) = c4bb69d90fd8ed292f0737d2760b6fb39d960c7f58e9ae3bb766701d1d2c720a -SIZE (xpi/firefox-i18n-58.0.2/ca.xpi) = 472769 -SHA256 (xpi/firefox-i18n-58.0.2/cak.xpi) = 8d7a572400c306457c4477df949fabaf1bd8f236bc03c3bafb1265f7c6d4481f -SIZE (xpi/firefox-i18n-58.0.2/cak.xpi) = 483420 -SHA256 (xpi/firefox-i18n-58.0.2/cs.xpi) = 3084cc2ce4f365b23b56ebb9f9813fd46bc50459776d02d3c4f0ecc14501bcb0 -SIZE (xpi/firefox-i18n-58.0.2/cs.xpi) = 479563 -SHA256 (xpi/firefox-i18n-58.0.2/cy.xpi) = 22f68a9070c4864c614779b724a1aa18b4878d8e97ecf851514848a6e695e21e -SIZE (xpi/firefox-i18n-58.0.2/cy.xpi) = 462230 -SHA256 (xpi/firefox-i18n-58.0.2/da.xpi) = 2c2db5c2cb94aab0422ebcf2f5a878043400fdf1b71f541a658469b4f2e3811e -SIZE (xpi/firefox-i18n-58.0.2/da.xpi) = 455555 -SHA256 (xpi/firefox-i18n-58.0.2/de.xpi) = f407ffa0275150e8221dba6f7c77b958bcf6db678569ad3f661e617bdedcc5c6 -SIZE (xpi/firefox-i18n-58.0.2/de.xpi) = 467225 -SHA256 (xpi/firefox-i18n-58.0.2/dsb.xpi) = 94c5f3f57288d55120ea3e42f881ca0a396f69a4a90fafc41a90f3255bea9892 -SIZE (xpi/firefox-i18n-58.0.2/dsb.xpi) = 486456 -SHA256 (xpi/firefox-i18n-58.0.2/el.xpi) = 96e5ebe692f491c122b768d354ddeeae5ea0576553c007db0ed6949b5e05c35b -SIZE (xpi/firefox-i18n-58.0.2/el.xpi) = 540702 -SHA256 (xpi/firefox-i18n-58.0.2/en-GB.xpi) = a2c0edf50da90a9371f860f4fe1757a42df856d33a2c71b38c5ebd3f4b7a31ac -SIZE (xpi/firefox-i18n-58.0.2/en-GB.xpi) = 443435 -SHA256 (xpi/firefox-i18n-58.0.2/en-US.xpi) = 470c7996c1e6d9a5b3a3950da1bbb4387510dd326e8eb6ef83caaf145d5ea0ca -SIZE (xpi/firefox-i18n-58.0.2/en-US.xpi) = 440004 -SHA256 (xpi/firefox-i18n-58.0.2/en-ZA.xpi) = 7569accd7837d62b284ec64233a11311f158b518b2e407cdb5c20b74fa4e66b1 -SIZE (xpi/firefox-i18n-58.0.2/en-ZA.xpi) = 434820 -SHA256 (xpi/firefox-i18n-58.0.2/eo.xpi) = f9d0fae4a19ce9292beef098d689e559a4e3628771b49eacc6b0c2e114ae427f -SIZE (xpi/firefox-i18n-58.0.2/eo.xpi) = 461031 -SHA256 (xpi/firefox-i18n-58.0.2/es-AR.xpi) = 9214ce61dc02cf61c72d7fafbd9d72c1f33d10d9d0c589ef9eb994c35a588e33 -SIZE (xpi/firefox-i18n-58.0.2/es-AR.xpi) = 470709 -SHA256 (xpi/firefox-i18n-58.0.2/es-CL.xpi) = 8304ac17ac6a586d2f4aca378140e8676f1ff957e2a0fead9306ad5e11b9d335 -SIZE (xpi/firefox-i18n-58.0.2/es-CL.xpi) = 473178 -SHA256 (xpi/firefox-i18n-58.0.2/es-ES.xpi) = 51c3d1bec3b600eb073020863dc3d1c074947342f3e9d7b930298e01bdfc6af2 -SIZE (xpi/firefox-i18n-58.0.2/es-ES.xpi) = 357315 -SHA256 (xpi/firefox-i18n-58.0.2/es-MX.xpi) = e6fac608d664d2eb4a6e7ce5967036571d9e03c62a93d552a8858e56763adccf -SIZE (xpi/firefox-i18n-58.0.2/es-MX.xpi) = 474515 -SHA256 (xpi/firefox-i18n-58.0.2/et.xpi) = 28b952f7b7d54a2bf76d9414cce87a323c4ddd1690922ed2c65b9844d0b7ce42 -SIZE (xpi/firefox-i18n-58.0.2/et.xpi) = 450940 -SHA256 (xpi/firefox-i18n-58.0.2/eu.xpi) = 905328de45a9ac6df28b431da5d6e199779e2799a91b8a96c4958823cec38a23 -SIZE (xpi/firefox-i18n-58.0.2/eu.xpi) = 462884 -SHA256 (xpi/firefox-i18n-58.0.2/fa.xpi) = 3bbe89504bf353a9579b29c1d2690f87f5b387103974c9e8b491df5912c91757 -SIZE (xpi/firefox-i18n-58.0.2/fa.xpi) = 517078 -SHA256 (xpi/firefox-i18n-58.0.2/ff.xpi) = 2e66e3b60bb2ba73b45eae39ea985e782b1418bda7b084de5a293457b8f8ed38 -SIZE (xpi/firefox-i18n-58.0.2/ff.xpi) = 462449 -SHA256 (xpi/firefox-i18n-58.0.2/fi.xpi) = 0df8411c9271b8e9c9d582f2c1dff070e5f0dc5e7617d520f518d0824cf8d340 -SIZE (xpi/firefox-i18n-58.0.2/fi.xpi) = 454071 -SHA256 (xpi/firefox-i18n-58.0.2/fr.xpi) = acf9d8083f772e80ef4377109e753d58c178ec3c67b71683120b03350e4a41df -SIZE (xpi/firefox-i18n-58.0.2/fr.xpi) = 479101 -SHA256 (xpi/firefox-i18n-58.0.2/fy-NL.xpi) = 1e07a1845a73af1f38c24c58137c8904af780d224861663d2b07b69b7ded3784 -SIZE (xpi/firefox-i18n-58.0.2/fy-NL.xpi) = 472089 -SHA256 (xpi/firefox-i18n-58.0.2/ga-IE.xpi) = 178dafd22494461de1f555e25d82bd285a6ba92e10bf802fcc20020f8f2c02d5 -SIZE (xpi/firefox-i18n-58.0.2/ga-IE.xpi) = 479801 -SHA256 (xpi/firefox-i18n-58.0.2/gd.xpi) = 36618a7bf4486b4376394ae5de4152bdc98d45b24caaad78b5cd9dc4a6373c13 -SIZE (xpi/firefox-i18n-58.0.2/gd.xpi) = 467540 -SHA256 (xpi/firefox-i18n-58.0.2/gl.xpi) = ca764ff7a8fcef604df4f60cf5a42bc4e8853fb8872404a4765f727f82d9acbb -SIZE (xpi/firefox-i18n-58.0.2/gl.xpi) = 454325 -SHA256 (xpi/firefox-i18n-58.0.2/gn.xpi) = 057f2d7fb73c77c2bc4f2b4e892ad6799dac68bc8579154cc61d4b1ec84f2852 -SIZE (xpi/firefox-i18n-58.0.2/gn.xpi) = 477176 -SHA256 (xpi/firefox-i18n-58.0.2/gu-IN.xpi) = bacecba903be09b7c957d62801f7562eaaf9cd20cf61cad7227dae6be943d807 -SIZE (xpi/firefox-i18n-58.0.2/gu-IN.xpi) = 523537 -SHA256 (xpi/firefox-i18n-58.0.2/he.xpi) = 06ab9028c7bb88f3e77aa07c5c498bb2dc9e5a6f18bf662ba9d90ec28b62b99d -SIZE (xpi/firefox-i18n-58.0.2/he.xpi) = 480620 -SHA256 (xpi/firefox-i18n-58.0.2/hi-IN.xpi) = a4847144ad4c7cadf5b925ba2cd7567a513e2379676e4b584dcc7498ee1c88b8 -SIZE (xpi/firefox-i18n-58.0.2/hi-IN.xpi) = 532364 -SHA256 (xpi/firefox-i18n-58.0.2/hr.xpi) = a320f0beda72a79371b10520bf4764ffb9400d6a51f67aa2affb9ac2311eab97 -SIZE (xpi/firefox-i18n-58.0.2/hr.xpi) = 467252 -SHA256 (xpi/firefox-i18n-58.0.2/hsb.xpi) = b31474fec7f730c402b81be68e5ec2f04d832ea7cd4c7c72eb50c892e5987a04 -SIZE (xpi/firefox-i18n-58.0.2/hsb.xpi) = 483712 -SHA256 (xpi/firefox-i18n-58.0.2/hu.xpi) = 35d85ac54871e6a79b81cff7c32e97a395d5a0a28b3425f0f1a1e43f3bdf5ce6 -SIZE (xpi/firefox-i18n-58.0.2/hu.xpi) = 482701 -SHA256 (xpi/firefox-i18n-58.0.2/hy-AM.xpi) = 966cbddbc630c0971c4b5d6027ef456de212e664faadc2a24231e523f24fecb7 -SIZE (xpi/firefox-i18n-58.0.2/hy-AM.xpi) = 515596 -SHA256 (xpi/firefox-i18n-58.0.2/id.xpi) = 0e1c3d40970e8bfdbbe046562db30a0ddcc7dd638fa2bae76be4d80c08a085b8 -SIZE (xpi/firefox-i18n-58.0.2/id.xpi) = 449311 -SHA256 (xpi/firefox-i18n-58.0.2/is.xpi) = a20b335120e0e978a359e09b57d4bc5530ca33f42fe99bff4fb14e88a40bdf51 -SIZE (xpi/firefox-i18n-58.0.2/is.xpi) = 460733 -SHA256 (xpi/firefox-i18n-58.0.2/it.xpi) = be3afaaf42dc57cc8cccebccc5017786da04a42982aa9539c13373884490da6c -SIZE (xpi/firefox-i18n-58.0.2/it.xpi) = 350640 -SHA256 (xpi/firefox-i18n-58.0.2/ja.xpi) = f5f1de578f3955931c5dfcb437fe762f5effbea33aef131fbb058a863d404742 -SIZE (xpi/firefox-i18n-58.0.2/ja.xpi) = 514625 -SHA256 (xpi/firefox-i18n-58.0.2/ka.xpi) = 70e5693c770bfdda45f031b6fb2874debe2cfe723ab6266359e4a2b9fb35b909 -SIZE (xpi/firefox-i18n-58.0.2/ka.xpi) = 500998 -SHA256 (xpi/firefox-i18n-58.0.2/kab.xpi) = 6d3e49ecad6098cc3007596f28f2992ec2261007b125642760c4fe46d01713f2 -SIZE (xpi/firefox-i18n-58.0.2/kab.xpi) = 469449 -SHA256 (xpi/firefox-i18n-58.0.2/kk.xpi) = cb012d04339626798413c473683fc68a34effc93d11cab581608d60d1c572749 -SIZE (xpi/firefox-i18n-58.0.2/kk.xpi) = 527152 -SHA256 (xpi/firefox-i18n-58.0.2/km.xpi) = 14f0ebdb6e7cf5850251fc16fab2be16f6c4d2b0b79fe79a816d6f31652bfcc6 -SIZE (xpi/firefox-i18n-58.0.2/km.xpi) = 535393 -SHA256 (xpi/firefox-i18n-58.0.2/kn.xpi) = c51c15dc102c1ba9191df1563ff0d13bab1f9839c2101221fb48c57b47203cdc -SIZE (xpi/firefox-i18n-58.0.2/kn.xpi) = 537161 -SHA256 (xpi/firefox-i18n-58.0.2/ko.xpi) = 23f76ace573c320e950a0feacecc1dba6dc89aaa17228813e48e24f72d78df9f -SIZE (xpi/firefox-i18n-58.0.2/ko.xpi) = 494836 -SHA256 (xpi/firefox-i18n-58.0.2/lij.xpi) = 9a8b3d6b62b1ab042639061ee9911ad627cde634b6da62ba80e1491b9e816ec1 -SIZE (xpi/firefox-i18n-58.0.2/lij.xpi) = 455542 -SHA256 (xpi/firefox-i18n-58.0.2/lt.xpi) = 5bcbafbe84e3a2fd241daf85b37887cf9773ace2639831637499f5557badb724 -SIZE (xpi/firefox-i18n-58.0.2/lt.xpi) = 482159 -SHA256 (xpi/firefox-i18n-58.0.2/lv.xpi) = 04d6c2121cc8a628cacd0190bdb7662010fc41ff9d62a7cbb7a492c172f25f20 -SIZE (xpi/firefox-i18n-58.0.2/lv.xpi) = 471212 -SHA256 (xpi/firefox-i18n-58.0.2/mai.xpi) = 34f09d179b1596134c96ffc6c397e0714e876ead142b2ba2cfaa1fde86f5431b -SIZE (xpi/firefox-i18n-58.0.2/mai.xpi) = 509070 -SHA256 (xpi/firefox-i18n-58.0.2/mk.xpi) = 006cb642d44d2d1f041ef4859b4c820b3ff64c17bb0487108f26594f3020669b -SIZE (xpi/firefox-i18n-58.0.2/mk.xpi) = 492514 -SHA256 (xpi/firefox-i18n-58.0.2/ml.xpi) = e0c122f21e912d06d12144ffae8f04555184b58c8b1516deeeb7fb677126c3c2 -SIZE (xpi/firefox-i18n-58.0.2/ml.xpi) = 547686 -SHA256 (xpi/firefox-i18n-58.0.2/mr.xpi) = 0bbe464463c696bfb9031c4f7034c3837c6be4c25756d13d175adfe00a7adcbb -SIZE (xpi/firefox-i18n-58.0.2/mr.xpi) = 525039 -SHA256 (xpi/firefox-i18n-58.0.2/ms.xpi) = 41fc721cabe807495005d64de8141bfbe80424ad9f988184dcbacda014cf2361 -SIZE (xpi/firefox-i18n-58.0.2/ms.xpi) = 458427 -SHA256 (xpi/firefox-i18n-58.0.2/my.xpi) = 1c1faae6d62b358e8f46b623d1d4087a5af38983852ca0ed2104ee350ef8aac2 -SIZE (xpi/firefox-i18n-58.0.2/my.xpi) = 520423 -SHA256 (xpi/firefox-i18n-58.0.2/nb-NO.xpi) = 243c21975405947b87d2566071a1addbde47baed8ede24cec5f8ffa455fa023d -SIZE (xpi/firefox-i18n-58.0.2/nb-NO.xpi) = 457991 -SHA256 (xpi/firefox-i18n-58.0.2/ne-NP.xpi) = a2ab955a1e014dc1ce39bf3edae3e08ba31f184f181b58c6d06be0ba2b04e223 -SIZE (xpi/firefox-i18n-58.0.2/ne-NP.xpi) = 517685 -SHA256 (xpi/firefox-i18n-58.0.2/nl.xpi) = 96cfc1fe1e3b1f3ad2b2cbaa4a5a7a12f47f8a39286ab766191e5e8fb55ca43e -SIZE (xpi/firefox-i18n-58.0.2/nl.xpi) = 465559 -SHA256 (xpi/firefox-i18n-58.0.2/nn-NO.xpi) = f4284e8ca61292028d581e3d632150f7660229e4f05d2afc641c42c361100116 -SIZE (xpi/firefox-i18n-58.0.2/nn-NO.xpi) = 458439 -SHA256 (xpi/firefox-i18n-58.0.2/or.xpi) = 1fc34d631c5ceea2bb8a828c60aba9c5109eba1421427699b0a7ecda62652f52 -SIZE (xpi/firefox-i18n-58.0.2/or.xpi) = 502795 -SHA256 (xpi/firefox-i18n-58.0.2/pa-IN.xpi) = 53cf63db68fd1ad04e1c68725300d0834b1e4c4336a9b43e5a88b926f079c01b -SIZE (xpi/firefox-i18n-58.0.2/pa-IN.xpi) = 500542 -SHA256 (xpi/firefox-i18n-58.0.2/pl.xpi) = 9953f7c707c9d90792dbc5ccfe86b9ea1e6b4fd9f35f0730f77346f08dbab548 -SIZE (xpi/firefox-i18n-58.0.2/pl.xpi) = 365869 -SHA256 (xpi/firefox-i18n-58.0.2/pt-BR.xpi) = 29ab7eb7d7bcd2d34bbc32408308890acf162571ed23c3d18014d83d4d874150 -SIZE (xpi/firefox-i18n-58.0.2/pt-BR.xpi) = 463584 -SHA256 (xpi/firefox-i18n-58.0.2/pt-PT.xpi) = 70b3031aa5dd17553d84a444834307abe54bc8385930ab4380c6b82fa27b6827 -SIZE (xpi/firefox-i18n-58.0.2/pt-PT.xpi) = 466902 -SHA256 (xpi/firefox-i18n-58.0.2/rm.xpi) = ec03e613bd37ab3854b1d511c288c229695299b9cd3684f2420c89642505281e -SIZE (xpi/firefox-i18n-58.0.2/rm.xpi) = 458783 -SHA256 (xpi/firefox-i18n-58.0.2/ro.xpi) = e9a30407ffd974856a206781d32cdb673c58c41e1e33d4c2dfccc5bfbc53e2c9 -SIZE (xpi/firefox-i18n-58.0.2/ro.xpi) = 462430 -SHA256 (xpi/firefox-i18n-58.0.2/ru.xpi) = 762f01eb247145b2d6c1192851bda61f275263989a656bafef1ce196deb9e2cd -SIZE (xpi/firefox-i18n-58.0.2/ru.xpi) = 535054 -SHA256 (xpi/firefox-i18n-58.0.2/si.xpi) = 56ad752f0714d30844d54f32f63659829e00cb50698452206de88c62d4472b34 -SIZE (xpi/firefox-i18n-58.0.2/si.xpi) = 500879 -SHA256 (xpi/firefox-i18n-58.0.2/sk.xpi) = 6f7386a6f3a0c00aa1c469492c829647570c35b1171c7267efd27bfb834366fe -SIZE (xpi/firefox-i18n-58.0.2/sk.xpi) = 487583 -SHA256 (xpi/firefox-i18n-58.0.2/sl.xpi) = 9b48cf9b6c6ea65efbe0b991d90352639e930ddf729a1b4143502d1d7ed0052e -SIZE (xpi/firefox-i18n-58.0.2/sl.xpi) = 463914 -SHA256 (xpi/firefox-i18n-58.0.2/son.xpi) = 8ebd093168fec498134fc714de8c2c9a3bad2b6fa84416be6da8f96ad7878e0c -SIZE (xpi/firefox-i18n-58.0.2/son.xpi) = 453960 -SHA256 (xpi/firefox-i18n-58.0.2/sq.xpi) = ff243042e646cf531a459ae7452a986a80367f3ee290eb0f2603bb541154ff26 -SIZE (xpi/firefox-i18n-58.0.2/sq.xpi) = 472464 -SHA256 (xpi/firefox-i18n-58.0.2/sr.xpi) = aed1d5be1e957dad2a4ed02e8e3ac54cc3e18b8400287dfdc41cf3c224a4305c -SIZE (xpi/firefox-i18n-58.0.2/sr.xpi) = 493460 -SHA256 (xpi/firefox-i18n-58.0.2/sv-SE.xpi) = ee7dc63e3068a59417b1f82e1d9b0688b9e5494d25056710b51c8689d5ab609d -SIZE (xpi/firefox-i18n-58.0.2/sv-SE.xpi) = 466363 -SHA256 (xpi/firefox-i18n-58.0.2/ta.xpi) = d326e77afadf224bcc11d7b4b1238c0d626bc323a52a43e241ee1f72a6f5a1dc -SIZE (xpi/firefox-i18n-58.0.2/ta.xpi) = 519415 -SHA256 (xpi/firefox-i18n-58.0.2/te.xpi) = 8323f1257f7ab012518e717da1676f4b339c5a44a1aa49d2aea1ed113a9f4e7d -SIZE (xpi/firefox-i18n-58.0.2/te.xpi) = 535339 -SHA256 (xpi/firefox-i18n-58.0.2/th.xpi) = ffbcb330bc73760d1bf2b10c64dcea04b042c9db86eaec7956a4142610a075e5 -SIZE (xpi/firefox-i18n-58.0.2/th.xpi) = 506271 -SHA256 (xpi/firefox-i18n-58.0.2/tr.xpi) = ff574d59d56e10b4a846e2ccb6f751bb256e01d6ed87a227252d83e98527eaa6 -SIZE (xpi/firefox-i18n-58.0.2/tr.xpi) = 471866 -SHA256 (xpi/firefox-i18n-58.0.2/uk.xpi) = 7da20b9f9778b4daf33465e810dc22924a09fb82d2da5053ec7e7facad208c06 -SIZE (xpi/firefox-i18n-58.0.2/uk.xpi) = 525890 -SHA256 (xpi/firefox-i18n-58.0.2/ur.xpi) = 2a770bf8fc0814c07dc23ddbc7cbbbd16870f47527e3190c0ed4ebd3015d9e58 -SIZE (xpi/firefox-i18n-58.0.2/ur.xpi) = 515330 -SHA256 (xpi/firefox-i18n-58.0.2/uz.xpi) = 2a058b9e838cb78f2954e63a7411cfdd576eba475e292c2aa85d0c316a8865f6 -SIZE (xpi/firefox-i18n-58.0.2/uz.xpi) = 464527 -SHA256 (xpi/firefox-i18n-58.0.2/vi.xpi) = dff0af0670c984ea86a0a0372bdf5fef5ade1423f90ae2e21132ba8fb954f4b4 -SIZE (xpi/firefox-i18n-58.0.2/vi.xpi) = 476702 -SHA256 (xpi/firefox-i18n-58.0.2/xh.xpi) = 272083e5b80d3a0436a3c97ba36a8adf8eac56e29a4efc565b37fa56375c8b56 -SIZE (xpi/firefox-i18n-58.0.2/xh.xpi) = 467880 -SHA256 (xpi/firefox-i18n-58.0.2/zh-CN.xpi) = bd9f2a136294bb5189bcc3a332b098fa0190145884e56673514636213999a597 -SIZE (xpi/firefox-i18n-58.0.2/zh-CN.xpi) = 490106 -SHA256 (xpi/firefox-i18n-58.0.2/zh-TW.xpi) = 3e6c5562925b7eb3ebbab5ccb148c41e97b288fa442a7c8a65ee01991d485864 -SIZE (xpi/firefox-i18n-58.0.2/zh-TW.xpi) = 488340 +TIMESTAMP = 1520456550 +SHA256 (xpi/firefox-i18n-59.0/ach.xpi) = 1d3c6166b27b5e640733210faf4e7fa751d1acb8edd80448fd5cfb840c491987 +SIZE (xpi/firefox-i18n-59.0/ach.xpi) = 439224 +SHA256 (xpi/firefox-i18n-59.0/af.xpi) = 21ef31da94eb74b269e65c47961f93d17827a480756d282cf367f3ec4998866c +SIZE (xpi/firefox-i18n-59.0/af.xpi) = 436729 +SHA256 (xpi/firefox-i18n-59.0/an.xpi) = e544fcac272f5b3ee9365c53063164fb6f93e323c61fb0154e744fe046d0e348 +SIZE (xpi/firefox-i18n-59.0/an.xpi) = 463403 +SHA256 (xpi/firefox-i18n-59.0/ar.xpi) = 6443febaa553ae1f843a20ca5c78be7db122ffa98289f100cca883c86b17fb0a +SIZE (xpi/firefox-i18n-59.0/ar.xpi) = 486631 +SHA256 (xpi/firefox-i18n-59.0/as.xpi) = b8baf8448a59e13ae8ed5794f9a1b796f34029add488dc215023ff12c5549ccb +SIZE (xpi/firefox-i18n-59.0/as.xpi) = 483300 +SHA256 (xpi/firefox-i18n-59.0/ast.xpi) = 82876aa720ab6c98c5c1dd12fde7d62a47d1c42a87d70666b765144e620334e2 +SIZE (xpi/firefox-i18n-59.0/ast.xpi) = 454341 +SHA256 (xpi/firefox-i18n-59.0/az.xpi) = e799b35e4a8d2272378b6f0fadee5777660af8d96e6cfa9b23d5d4e3a7088693 +SIZE (xpi/firefox-i18n-59.0/az.xpi) = 464267 +SHA256 (xpi/firefox-i18n-59.0/be.xpi) = d4852d209ee8dfa9b88abc418f48cbb4df9599de9c4000455f50533ddc1dba08 +SIZE (xpi/firefox-i18n-59.0/be.xpi) = 517058 +SHA256 (xpi/firefox-i18n-59.0/bg.xpi) = ee011edf65e91faa21c8a75b8f9922484a899b4d6762f0a6a5f3b9f35521c2b3 +SIZE (xpi/firefox-i18n-59.0/bg.xpi) = 508611 +SHA256 (xpi/firefox-i18n-59.0/bn-BD.xpi) = 5c39189efa5daf9e8d6574b98bed66edad98bd0a4459955c666c5a9734c16d28 +SIZE (xpi/firefox-i18n-59.0/bn-BD.xpi) = 526351 +SHA256 (xpi/firefox-i18n-59.0/bn-IN.xpi) = cdacc3c3002f4bb335b13bea1ddf22d0725938156afe257d45ad1a2e1148aa68 +SIZE (xpi/firefox-i18n-59.0/bn-IN.xpi) = 510795 +SHA256 (xpi/firefox-i18n-59.0/br.xpi) = dfa4af49f1c379c1e299d252ba416310775c0f6a5802b1f26bb6610e20ab890d +SIZE (xpi/firefox-i18n-59.0/br.xpi) = 451718 +SHA256 (xpi/firefox-i18n-59.0/bs.xpi) = 75b095a9128248737edcb22a5c7926c51f1657762549453fe5dba045628baa97 +SIZE (xpi/firefox-i18n-59.0/bs.xpi) = 457857 +SHA256 (xpi/firefox-i18n-59.0/ca.xpi) = 5171bf8d0c0f40bea63e81ae282cd41e42484b2ec06b904460c8669ee6454a3b +SIZE (xpi/firefox-i18n-59.0/ca.xpi) = 464910 +SHA256 (xpi/firefox-i18n-59.0/cak.xpi) = eaae22a1be95e28d55aa849dc3699ebe5ee567574e38a306f26591da03a7e332 +SIZE (xpi/firefox-i18n-59.0/cak.xpi) = 475232 +SHA256 (xpi/firefox-i18n-59.0/cs.xpi) = 2843a427be283937c15f98e31cb23025960822a8faf0d71d7ef30e20007cecae +SIZE (xpi/firefox-i18n-59.0/cs.xpi) = 471573 +SHA256 (xpi/firefox-i18n-59.0/cy.xpi) = 9e83160f6142bc1189822957f7528f1a3ca4c221576cac1075dfed5731197516 +SIZE (xpi/firefox-i18n-59.0/cy.xpi) = 454431 +SHA256 (xpi/firefox-i18n-59.0/da.xpi) = 5803ba7d12156ef86fcc951ceac1b53f3fbce938826d51bc6f15780c1242d935 +SIZE (xpi/firefox-i18n-59.0/da.xpi) = 446947 +SHA256 (xpi/firefox-i18n-59.0/de.xpi) = 80cb4b481073f71acaa6e6d760ebf0b599a33895eab236cf2cc3a8c000be0697 +SIZE (xpi/firefox-i18n-59.0/de.xpi) = 466271 +SHA256 (xpi/firefox-i18n-59.0/dsb.xpi) = bcdb45e97f901fbff9b547a91a0b5c2a5bdadeea8ea5610ee5fceaf4484ef36f +SIZE (xpi/firefox-i18n-59.0/dsb.xpi) = 478973 +SHA256 (xpi/firefox-i18n-59.0/el.xpi) = 466c2fef631c844ab1280e3879add57aacb98e2f30a7d8223f865d196deeb487 +SIZE (xpi/firefox-i18n-59.0/el.xpi) = 531406 +SHA256 (xpi/firefox-i18n-59.0/en-GB.xpi) = cb42b3e458acc5ab249da6b55a9958585e4c064ddfb94b7bf49f9465626df0a4 +SIZE (xpi/firefox-i18n-59.0/en-GB.xpi) = 434298 +SHA256 (xpi/firefox-i18n-59.0/en-US.xpi) = 44e49f00faf5c818ca025e4845f667b33c9542f5cc876fb5779c1d0fb87cc8b9 +SIZE (xpi/firefox-i18n-59.0/en-US.xpi) = 432747 +SHA256 (xpi/firefox-i18n-59.0/en-ZA.xpi) = 4816897d2e2f2f5f3d3a35a0f335cd34673f4cc57fe82178af7522055b508e9b +SIZE (xpi/firefox-i18n-59.0/en-ZA.xpi) = 427364 +SHA256 (xpi/firefox-i18n-59.0/eo.xpi) = c17ce4751c46e83a293d7272ca8cfeff8602b223226d8fb60aab74e9dae5e7ad +SIZE (xpi/firefox-i18n-59.0/eo.xpi) = 453365 +SHA256 (xpi/firefox-i18n-59.0/es-AR.xpi) = 1a51d27cafa512ee25f9738f3b121f8d7e573ba277d1b834bae30a739c851e03 +SIZE (xpi/firefox-i18n-59.0/es-AR.xpi) = 461795 +SHA256 (xpi/firefox-i18n-59.0/es-CL.xpi) = f6c73332ed4ad8484aee9c87b70762ebf4795fbf340d87ee763879eb20788d14 +SIZE (xpi/firefox-i18n-59.0/es-CL.xpi) = 464652 +SHA256 (xpi/firefox-i18n-59.0/es-ES.xpi) = c1fc12302f57f526ef483ffb79a39c63b0f946b09fd1541989dd2b28ba7eb83c +SIZE (xpi/firefox-i18n-59.0/es-ES.xpi) = 348462 +SHA256 (xpi/firefox-i18n-59.0/es-MX.xpi) = 208182f94525a759cba128b892e80e99ee6dd1921906f8c054a8a515e283b35a +SIZE (xpi/firefox-i18n-59.0/es-MX.xpi) = 466310 +SHA256 (xpi/firefox-i18n-59.0/et.xpi) = 0414fc474c1457f8ec64a40d3f268aefe8ddc70cf85a07c5faba4b156f04353c +SIZE (xpi/firefox-i18n-59.0/et.xpi) = 445393 +SHA256 (xpi/firefox-i18n-59.0/eu.xpi) = 45a5df206d635e4b656c34e06e2c7df4b5614fd1584e7bd171432bff44cf155c +SIZE (xpi/firefox-i18n-59.0/eu.xpi) = 455235 +SHA256 (xpi/firefox-i18n-59.0/fa.xpi) = 375f9c9356891978d1b8558c63e34675ff3ed70dde54cbd70fbfee736a6dbe37 +SIZE (xpi/firefox-i18n-59.0/fa.xpi) = 508096 +SHA256 (xpi/firefox-i18n-59.0/ff.xpi) = ef8313cd46c2e68af5388d4c705958db8e2b75c4156b2b5ee76b2822c5bb921e +SIZE (xpi/firefox-i18n-59.0/ff.xpi) = 455025 +SHA256 (xpi/firefox-i18n-59.0/fi.xpi) = 2d568720cd7f1d3106c6e1c8d02e838786a7643cdc8a74362a449127636346b6 +SIZE (xpi/firefox-i18n-59.0/fi.xpi) = 445181 +SHA256 (xpi/firefox-i18n-59.0/fr.xpi) = 7dad72da0d5ea4d30b70f34319a9446044d952bcdcaef8e50e8735328f86e857 +SIZE (xpi/firefox-i18n-59.0/fr.xpi) = 473591 +SHA256 (xpi/firefox-i18n-59.0/fy-NL.xpi) = d1595e13a228471d0e675148d52855d0f18fb0352ac559323204dfa648233b44 +SIZE (xpi/firefox-i18n-59.0/fy-NL.xpi) = 462917 +SHA256 (xpi/firefox-i18n-59.0/ga-IE.xpi) = 21c43c03c285a53f47a56be397dafed998b60fdc763d370465f692d90ba967b1 +SIZE (xpi/firefox-i18n-59.0/ga-IE.xpi) = 471906 +SHA256 (xpi/firefox-i18n-59.0/gd.xpi) = 0ecf7b654d8ab199277c286849bc50e4289c30b7766e3a9de28a69cafa75aa6b +SIZE (xpi/firefox-i18n-59.0/gd.xpi) = 461296 +SHA256 (xpi/firefox-i18n-59.0/gl.xpi) = eddfdf159b7dc97c2ab00d5c13208fb161521cbeeaefbcabd3925f68fd28db0a +SIZE (xpi/firefox-i18n-59.0/gl.xpi) = 441613 +SHA256 (xpi/firefox-i18n-59.0/gn.xpi) = 14cb97943f1b501a77a843addd6b03c60518c8c30fb7337148f1803c492f91ad +SIZE (xpi/firefox-i18n-59.0/gn.xpi) = 469396 +SHA256 (xpi/firefox-i18n-59.0/gu-IN.xpi) = 3ffc20afbe2ad5a625079766ac286cb19f1052e874e3825169619364f8c843ba +SIZE (xpi/firefox-i18n-59.0/gu-IN.xpi) = 521802 +SHA256 (xpi/firefox-i18n-59.0/he.xpi) = 89ba85e80cf52e7743763804300a8b2e9c5e55b9d189954cf5d45c796ea77c04 +SIZE (xpi/firefox-i18n-59.0/he.xpi) = 472769 +SHA256 (xpi/firefox-i18n-59.0/hi-IN.xpi) = 16a5e4fbbf1ddd8827afb2382b82b59039fb040b16bd36f9c214ddaa4bd82db0 +SIZE (xpi/firefox-i18n-59.0/hi-IN.xpi) = 524277 +SHA256 (xpi/firefox-i18n-59.0/hr.xpi) = 2966dafaea8224e7e9e599f048fb9725f28704af53bb5f0a311dc9ef485f7325 +SIZE (xpi/firefox-i18n-59.0/hr.xpi) = 459976 +SHA256 (xpi/firefox-i18n-59.0/hsb.xpi) = 1311fdfe6784f73c1f7ead834a301e8818db253393510a0f6bc00e68ec5e4546 +SIZE (xpi/firefox-i18n-59.0/hsb.xpi) = 475939 +SHA256 (xpi/firefox-i18n-59.0/hu.xpi) = c362521efa6a58d80eff294bd1d85939c42c6a29cbba6903a3d00525fd4ca9e0 +SIZE (xpi/firefox-i18n-59.0/hu.xpi) = 476895 +SHA256 (xpi/firefox-i18n-59.0/hy-AM.xpi) = 4b28fd26b21abe6897399a72c4d99c765d3b08f55a1f36c184d33bf83d646668 +SIZE (xpi/firefox-i18n-59.0/hy-AM.xpi) = 508165 +SHA256 (xpi/firefox-i18n-59.0/ia.xpi) = 4c7f6069edb4cfab47bad733621b23d192f4ef666556877d441f224ed5f91dd9 +SIZE (xpi/firefox-i18n-59.0/ia.xpi) = 448827 +SHA256 (xpi/firefox-i18n-59.0/id.xpi) = e11d14366748f021c336254f1557ca62d0bbd13ca308be097b28e68db5a8e02f +SIZE (xpi/firefox-i18n-59.0/id.xpi) = 441951 +SHA256 (xpi/firefox-i18n-59.0/is.xpi) = 8bb7f3fb34c4fa15f297a99f5651f00a99844346a1d4469117c5dea0cd840843 +SIZE (xpi/firefox-i18n-59.0/is.xpi) = 451371 +SHA256 (xpi/firefox-i18n-59.0/it.xpi) = 619b955412cd52f1379a64f9bbc23f78d595dd0139c0097ea3e93c4267eef051 +SIZE (xpi/firefox-i18n-59.0/it.xpi) = 342522 +SHA256 (xpi/firefox-i18n-59.0/ja.xpi) = e32dc966b1164b0a8bc5e8efbf660d8c462c9e50c93a978de88eb3915ab41247 +SIZE (xpi/firefox-i18n-59.0/ja.xpi) = 508146 +SHA256 (xpi/firefox-i18n-59.0/ka.xpi) = d0cb6ec913abd01d5826032716cb12b780e591d273080972d3627ab5c51e2bbd +SIZE (xpi/firefox-i18n-59.0/ka.xpi) = 492567 +SHA256 (xpi/firefox-i18n-59.0/kab.xpi) = 3b56006aa799f9c6e402781843a4774a858532c1f53ba03f5918efa52a3dabac +SIZE (xpi/firefox-i18n-59.0/kab.xpi) = 461838 +SHA256 (xpi/firefox-i18n-59.0/kk.xpi) = c1bbedcb92a43c18c654b098705d513d7663876a30875c322a61657e6046b72c +SIZE (xpi/firefox-i18n-59.0/kk.xpi) = 517582 +SHA256 (xpi/firefox-i18n-59.0/km.xpi) = 9fa77a9347c77f23f52f0129a35fe290bb3d67e261817956ba265f3b68cacbe4 +SIZE (xpi/firefox-i18n-59.0/km.xpi) = 526357 +SHA256 (xpi/firefox-i18n-59.0/kn.xpi) = b62f5139ee71ed4107e878a5fab2e58e1dd910598b85199d1162c67ffc426c85 +SIZE (xpi/firefox-i18n-59.0/kn.xpi) = 527877 +SHA256 (xpi/firefox-i18n-59.0/ko.xpi) = 1c498889480fa8ea9a065ba12b185283edc518d738c6db8ff780098b38bf817a +SIZE (xpi/firefox-i18n-59.0/ko.xpi) = 487659 +SHA256 (xpi/firefox-i18n-59.0/lij.xpi) = 0312ca2b5aecd54f7456d8310542165f005f2e1bddc70bedb824541dcce4b65b +SIZE (xpi/firefox-i18n-59.0/lij.xpi) = 446604 +SHA256 (xpi/firefox-i18n-59.0/lt.xpi) = 7ba6037547b3e5f1d402ce698cd74dfbe6c2eca8013f9ebb9cda820233cca998 +SIZE (xpi/firefox-i18n-59.0/lt.xpi) = 475141 +SHA256 (xpi/firefox-i18n-59.0/lv.xpi) = 85f32e9a7fd03423ae0b7339990c076b84409f95d9dc010089389666f891c1da +SIZE (xpi/firefox-i18n-59.0/lv.xpi) = 463653 +SHA256 (xpi/firefox-i18n-59.0/mai.xpi) = 2cc0ec3dc2a0296d17c0fd71060291caac8981c496acc524b26da7ef4cb62ed3 +SIZE (xpi/firefox-i18n-59.0/mai.xpi) = 499908 +SHA256 (xpi/firefox-i18n-59.0/mk.xpi) = 0ffa52cdc876ceb990eb0b1d729ed5fa5fe92bfe2d65e9d4bfd759758ac216fa +SIZE (xpi/firefox-i18n-59.0/mk.xpi) = 484074 +SHA256 (xpi/firefox-i18n-59.0/ml.xpi) = ac845dba07dbbd76fe37c0bfc4dd5365e15254971f9588377a680e07745fed6f +SIZE (xpi/firefox-i18n-59.0/ml.xpi) = 539733 +SHA256 (xpi/firefox-i18n-59.0/mr.xpi) = 8bafe1760d2a1cf0093256cd019dac2c097e79f1484bfe66a1f3f73076d3b6b3 +SIZE (xpi/firefox-i18n-59.0/mr.xpi) = 517960 +SHA256 (xpi/firefox-i18n-59.0/ms.xpi) = 00c44f109551b23f0a904402573c06edf4d8bf087cc0e91b52b006621883c9b5 +SIZE (xpi/firefox-i18n-59.0/ms.xpi) = 450073 +SHA256 (xpi/firefox-i18n-59.0/my.xpi) = 37708298e5bcf83d9570a5144b633709666b69840315c680bae3f7dd2a186001 +SIZE (xpi/firefox-i18n-59.0/my.xpi) = 511892 +SHA256 (xpi/firefox-i18n-59.0/nb-NO.xpi) = 90c61e5724b618b5fdfc65fc37d60686cd374f94a6567d6aa290c8733eb45c86 +SIZE (xpi/firefox-i18n-59.0/nb-NO.xpi) = 450275 +SHA256 (xpi/firefox-i18n-59.0/ne-NP.xpi) = d6a3aebbb11faca5a07794648f13946a84807abb7325176b0da8b51e2c53f251 +SIZE (xpi/firefox-i18n-59.0/ne-NP.xpi) = 509175 +SHA256 (xpi/firefox-i18n-59.0/nl.xpi) = 95cdc03247c2e59313c59bf819401fcf140bcf556367755f79207ce38345c123 +SIZE (xpi/firefox-i18n-59.0/nl.xpi) = 458127 +SHA256 (xpi/firefox-i18n-59.0/nn-NO.xpi) = 87fa01ddab0d6545cced17229187b63bead047549ea7c73ba3947f9a555a8dd7 +SIZE (xpi/firefox-i18n-59.0/nn-NO.xpi) = 451469 +SHA256 (xpi/firefox-i18n-59.0/or.xpi) = a00da5f2a4b7c13947a27b526c0d35673eff42d9cab0979c6670ca54ee8f68c7 +SIZE (xpi/firefox-i18n-59.0/or.xpi) = 493180 +SHA256 (xpi/firefox-i18n-59.0/pa-IN.xpi) = e43dd78383255b594d8078c38d46e872565304427ab7bbeca47458477a34d4ef +SIZE (xpi/firefox-i18n-59.0/pa-IN.xpi) = 492418 +SHA256 (xpi/firefox-i18n-59.0/pl.xpi) = 323c5439304f6fbed7db49ae96ab513071551ef87e12bc11103b5b4be0d07289 +SIZE (xpi/firefox-i18n-59.0/pl.xpi) = 358509 +SHA256 (xpi/firefox-i18n-59.0/pt-BR.xpi) = 21bde4b1666858fb65682147fa235fe9688206a2e0d492affd019b3fd99e2c64 +SIZE (xpi/firefox-i18n-59.0/pt-BR.xpi) = 455913 +SHA256 (xpi/firefox-i18n-59.0/pt-PT.xpi) = d9008a9b59a265702ad5915149fa9960151bdd0699bafaf8c383ece97d182d9f +SIZE (xpi/firefox-i18n-59.0/pt-PT.xpi) = 459329 +SHA256 (xpi/firefox-i18n-59.0/rm.xpi) = 88192d2d2b3824d45ff862ba285ce36499ae15daaf89d21037a8ebfc0500fe61 +SIZE (xpi/firefox-i18n-59.0/rm.xpi) = 449756 +SHA256 (xpi/firefox-i18n-59.0/ro.xpi) = 6fe642ecbb2d3f2c181fc8f1194c1b08cf1d6d1f76b8f205ffdfbab650f8827a +SIZE (xpi/firefox-i18n-59.0/ro.xpi) = 453401 +SHA256 (xpi/firefox-i18n-59.0/ru.xpi) = 9905c2249e72bf8be629c59915298598ac6e63b90ba95ceee0795d077a4ad09b +SIZE (xpi/firefox-i18n-59.0/ru.xpi) = 526521 +SHA256 (xpi/firefox-i18n-59.0/si.xpi) = 9608ae50405741a544270d2256035a8ae6484767fe737db8b98ac296ccdcda67 +SIZE (xpi/firefox-i18n-59.0/si.xpi) = 492585 +SHA256 (xpi/firefox-i18n-59.0/sk.xpi) = ee8cc67c33edccc7b7291496fb20f2f850f6934f67a0694b1bb19774db254eb1 +SIZE (xpi/firefox-i18n-59.0/sk.xpi) = 480811 +SHA256 (xpi/firefox-i18n-59.0/sl.xpi) = 13a9308e3d93ecfb873f4fb9a4a6f14b77ac37a730c0700e7c0296ab81250de7 +SIZE (xpi/firefox-i18n-59.0/sl.xpi) = 458823 +SHA256 (xpi/firefox-i18n-59.0/son.xpi) = 557087d226148a636c89313de04b7dfad71bca392dde28236163ca556f9322be +SIZE (xpi/firefox-i18n-59.0/son.xpi) = 446398 +SHA256 (xpi/firefox-i18n-59.0/sq.xpi) = 492cbf457ad02ef8efdfc546207a2d6c9ea07df57741dcebf89bae235438ca55 +SIZE (xpi/firefox-i18n-59.0/sq.xpi) = 464461 +SHA256 (xpi/firefox-i18n-59.0/sr.xpi) = 30dc2cc54bd0bb4c88bd4ec016eba9285fc1d14d27417b402c2a44967baa4fd5 +SIZE (xpi/firefox-i18n-59.0/sr.xpi) = 486176 +SHA256 (xpi/firefox-i18n-59.0/sv-SE.xpi) = 69fc218bcf153772dbeb1000dc35849210d00ede91537b948b27876ec03ffddf +SIZE (xpi/firefox-i18n-59.0/sv-SE.xpi) = 458658 +SHA256 (xpi/firefox-i18n-59.0/ta.xpi) = d55bc8f1458d96d548d7ef3e01a1cec3dbd9c4b62f8dd539658d4ad90129fb58 +SIZE (xpi/firefox-i18n-59.0/ta.xpi) = 512841 +SHA256 (xpi/firefox-i18n-59.0/te.xpi) = 25368ecdd33ed9ec4ad5fd95f510afffc61740f2bbb33c814ec3a6863673dc39 +SIZE (xpi/firefox-i18n-59.0/te.xpi) = 527082 +SHA256 (xpi/firefox-i18n-59.0/th.xpi) = a7e8951f27666735eb6e2bb526c069ae26a7bf6ed2dde12c0b47a9adacc1c200 +SIZE (xpi/firefox-i18n-59.0/th.xpi) = 498542 +SHA256 (xpi/firefox-i18n-59.0/tr.xpi) = 50728d089f891362a4b1f0d036edbc556e8dbe922c2abdbb89ffe45d57d275f4 +SIZE (xpi/firefox-i18n-59.0/tr.xpi) = 463592 +SHA256 (xpi/firefox-i18n-59.0/uk.xpi) = 7b500089a303e93761054b3cda4e4a188ebe6ccc2a120e5c90fd5d4e7cf28cfe +SIZE (xpi/firefox-i18n-59.0/uk.xpi) = 516924 +SHA256 (xpi/firefox-i18n-59.0/ur.xpi) = 9cc9ece7f94e13894651b4c342d226552e8544e8488e447da6c9f1ddf8884d31 +SIZE (xpi/firefox-i18n-59.0/ur.xpi) = 507378 +SHA256 (xpi/firefox-i18n-59.0/uz.xpi) = 4ae7546f790afe6b931d137531a6ef6a7287f1959ed20758c62624e23d75fa53 +SIZE (xpi/firefox-i18n-59.0/uz.xpi) = 456922 +SHA256 (xpi/firefox-i18n-59.0/vi.xpi) = 778ee06852609372e0303a5354b6e8b1f2a22e999cbeedba6bf9d8d303c05bf9 +SIZE (xpi/firefox-i18n-59.0/vi.xpi) = 470067 +SHA256 (xpi/firefox-i18n-59.0/xh.xpi) = 41dfddbd064d2da408b93409bfacafd32226cd086a3da5e603a5a3fba4891656 +SIZE (xpi/firefox-i18n-59.0/xh.xpi) = 460770 +SHA256 (xpi/firefox-i18n-59.0/zh-CN.xpi) = 03679d815dee18016aae33fba44eafe8116d025c5f5d99b9efbba29d65886b8f +SIZE (xpi/firefox-i18n-59.0/zh-CN.xpi) = 483447 +SHA256 (xpi/firefox-i18n-59.0/zh-TW.xpi) = 40253d142f875a27e086c34737e0c437939cea29011160c7d7b252ad1f34f9d2 +SIZE (xpi/firefox-i18n-59.0/zh-TW.xpi) = 477087 Modified: branches/2018Q1/www/firefox/Makefile ============================================================================== --- branches/2018Q1/www/firefox/Makefile Fri Mar 9 14:39:00 2018 (r463963) +++ branches/2018Q1/www/firefox/Makefile Fri Mar 9 14:42:48 2018 (r463964) @@ -2,26 +2,28 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 58.0.2 +DISTVERSION= 59.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 -MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source -DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} +MASTER_SITES= https://hg.mozilla.org/releases/mozilla-release/archive/ +DISTNAME= ${MASTER_SITES:M*hg*:S,/archive/,,:T}-e9128973a480c8aedf3a2e1c67d3e168613fa17c +DISTFILES= ${DISTNAME:C/.*-//}${EXTRACT_SUFX} +DIST_SUBDIR= firefox MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla -BUILD_DEPENDS= nspr>=4.17:devel/nspr \ - nss>=3.34.1:security/nss \ +BUILD_DEPENDS= nspr>=4.18:devel/nspr \ + nss>=3.35:security/nss \ icu>=59.1,1:devel/icu \ libevent>=2.1.8:devel/libevent \ - harfbuzz>=1.7.2:print/harfbuzz \ + harfbuzz>=1.7.4:print/harfbuzz \ graphite2>=1.3.10:graphics/graphite2 \ png>=1.6.34:graphics/png \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ - sqlite3>=3.20.1:databases/sqlite3 \ + sqlite3>=3.21.0:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ @@ -34,10 +36,10 @@ LIB_DEPENDS= libv4l2.so:multimedia/libv4l USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -soundtouch +USE_MOZILLA= -cairo -soundtouch USE_GL= gl -USES= tar:xz +USES= tar:bz2 FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png @@ -45,12 +47,13 @@ FIREFOX_DESKTOP= ${MOZSRC}/taskcluster/docker/${MOZILL MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding -OPTIONS_DEFAULT= BUNDLED_CAIRO +OPTIONS_EXCLUDE= BUNDLED_CAIRO .include "${.CURDIR}/../../www/firefox/Makefile.options" post-patch: @${REINPLACE_CMD} -e 's/%u/%U/' -e '/X-MultipleArgs/d' \ + -e '/^Icon/s/=.*/=${FIREFOX_ICON:R}/' \ ${FIREFOX_DESKTOP} @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp Modified: branches/2018Q1/www/firefox/distinfo ============================================================================== --- branches/2018Q1/www/firefox/distinfo Fri Mar 9 14:39:00 2018 (r463963) +++ branches/2018Q1/www/firefox/distinfo Fri Mar 9 14:42:48 2018 (r463964) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517954713 -SHA256 (firefox-58.0.2.source.tar.xz) = 2b7794e4c2a24fa388f3acb2956c96bb2c3eae455467f0e386788ebaea7240c3 -SIZE (firefox-58.0.2.source.tar.xz) = 247576952 +TIMESTAMP = 1520456550 +SHA256 (firefox/e9128973a480c8aedf3a2e1c67d3e168613fa17c.tar.bz2) = bd6c5a7635009cb1a95824287b9751f1012f8e13bec057811d882e0db75e1258 +SIZE (firefox/e9128973a480c8aedf3a2e1c67d3e168613fa17c.tar.bz2) = 304977546 Copied: branches/2018Q1/www/firefox/files/patch-bug1444074 (from r463894, head/www/firefox/files/patch-bug1444074) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/firefox/files/patch-bug1444074 Fri Mar 9 14:42:48 2018 (r463964, copy of r463894, head/www/firefox/files/patch-bug1444074) @@ -0,0 +1,34 @@ +Enable full-duplex by default for all platforms + +diff --git modules/libpref/init/all.js modules/libpref/init/all.js +index a152e4944e95..322d009da739 100644 +--- modules/libpref/init/all.js ++++ modules/libpref/init/all.js +@@ -557,25 +557,18 @@ pref("media.getusermedia.agc", 3); // kAgcAdaptiveDigital + // capture_delay: Adjustments for OS-specific input delay (lower bound) + // playout_delay: Adjustments for OS-specific AudioStream+cubeb+output delay (lower bound) + // full_duplex: enable cubeb full-duplex capture/playback ++pref("media.navigator.audio.full_duplex", true); + #if defined(XP_MACOSX) + pref("media.peerconnection.capture_delay", 50); +-pref("media.navigator.audio.full_duplex", true); + #elif defined(XP_WIN) + pref("media.peerconnection.capture_delay", 50); +-pref("media.navigator.audio.full_duplex", true); + #elif defined(ANDROID) + pref("media.peerconnection.capture_delay", 100); +-pref("media.navigator.audio.full_duplex", true); + pref("media.navigator.hardware.vp8_encode.acceleration_enabled", true); + pref("media.navigator.hardware.vp8_encode.acceleration_remote_enabled", true); + pref("media.navigator.hardware.vp8_decode.acceleration_enabled", false); +-#elif defined(XP_LINUX) || defined(MOZ_SNDIO) +-pref("media.peerconnection.capture_delay", 70); +-pref("media.navigator.audio.full_duplex", true); + #else +-// *BSD, others - merely a guess for now +-pref("media.peerconnection.capture_delay", 50); +-pref("media.navigator.audio.full_duplex", false); ++pref("media.peerconnection.capture_delay", 70); + #endif + // Use MediaDataDecoder API for WebRTC, this includes hardware acceleration for + // decoding. Modified: branches/2018Q1/www/firefox/files/patch-bug847568 ============================================================================== --- branches/2018Q1/www/firefox/files/patch-bug847568 Fri Mar 9 14:39:00 2018 (r463963) +++ branches/2018Q1/www/firefox/files/patch-bug847568 Fri Mar 9 14:42:48 2018 (r463964) @@ -118,7 +118,7 @@ index e06ae3457a47..93faa61594a3 100755 +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + - if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'android'): + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk3', 'android'): CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] diff --git gfx/skia/moz.build gfx/skia/moz.build @@ -132,7 +132,7 @@ index 2118677ca3a8..e4978b413784 100644 +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + - if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'android'): + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk3', 'android'): CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] diff --git gfx/thebes/moz.build gfx/thebes/moz.build @@ -152,7 +152,7 @@ index 56f1b9fe3f4b..0ac1100b0df3 100644 +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] - if CONFIG['CLANG_CXX']: + if CONFIG['CC_TYPE'] == 'clang': # Suppress warnings from Skia header files. diff --git intl/unicharutil/util/moz.build intl/unicharutil/util/moz.build index cb1233c56d7e..06fb1f9f174b 100644 @@ -172,7 +172,7 @@ index 79c26e3e7001..c4d93bc5f7dc 100644 +++ netwerk/dns/moz.build @@ -73,3 +73,6 @@ USE_LIBS += ['icu'] - if CONFIG['GNU_CXX']: + if CONFIG['CC_TYPE'] in ('clang', 'gcc'): CXXFLAGS += ['-Wno-error=shadow'] + +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: @@ -249,7 +249,7 @@ index 9297e4d6f501..d8e273887e4b 100644 +option('--with-system-harfbuzz', + help="Use system harfbuzz (located with pkgconfig)") + -+system_harfbuzz = pkg_check_modules('MOZ_HARFBUZZ', 'harfbuzz >= 1.7.2', ++system_harfbuzz = pkg_check_modules('MOZ_HARFBUZZ', 'harfbuzz >= 1.7.4', + when='--with-system-harfbuzz') + +set_config('MOZ_SYSTEM_HARFBUZZ', depends_if(system_harfbuzz)(lambda _: True)) Modified: branches/2018Q1/www/firefox/files/patch-z-bug517422 ============================================================================== --- branches/2018Q1/www/firefox/files/patch-z-bug517422 Fri Mar 9 14:39:00 2018 (r463963) +++ branches/2018Q1/www/firefox/files/patch-z-bug517422 Fri Mar 9 14:42:48 2018 (r463964) @@ -45,7 +45,7 @@ index 029ff8504795..2c3a40caa1ba 100644 if CONFIG['MOZ_WEBM_ENCODER']: external_dirs += ['media/libmkv'] -@@ -51,12 +60,9 @@ external_dirs += [ +@@ -51,11 +60,8 @@ external_dirs += [ 'media/kiss_fft', 'media/libcubeb', 'media/libnestegg', @@ -53,11 +53,10 @@ index 029ff8504795..2c3a40caa1ba 100644 'media/libopus', - 'media/libtheora', 'media/libspeex_resampler', - 'media/libstagefright', - 'media/libsoundtouch', + 'media/mp4parse-rust', 'media/psshparser' ] - diff --git config/system-headers.mozbuild config/system-headers.mozbuild index 09d3db5ca8c0..c6533b84c470 100644 --- config/system-headers.mozbuild @@ -180,7 +179,7 @@ index 86b051c58d33..fb6186dce78b 100644 +if CONFIG['MOZ_SYSTEM_SOUNDTOUCH']: + CXXFLAGS += CONFIG['MOZ_SOUNDTOUCH_CFLAGS'] + - if CONFIG['MOZ_ANDROID_HLS_SUPPORT']: + if CONFIG['MOZ_ANDROID_HLS_SUPPORT'] and CONFIG['MOZ_BUILD_MOBILE_ANDROID_WITH_GRADLE']: DEFINES['MOZ_ANDROID_HLS_SUPPORT'] = True diff --git dom/media/platforms/ffmpeg/ffvpx/FFVPXRuntimeLinker.cpp dom/media/platforms/ffmpeg/ffvpx/FFVPXRuntimeLinker.cpp @@ -280,7 +279,7 @@ index c7f85eebff95..aae7b814adb5 100644 + CFLAGS += CONFIG['MOZ_OGG_CFLAGS'] + # Suppress warnings in third-party code. - if CONFIG['GNU_CC'] or CONFIG['CLANG_CL']: + if CONFIG['CC_TYPE'] in ('clang', 'clang-cl', 'gcc'): CFLAGS += ['-Wno-type-limits'] diff --git media/libtremor/README_MOZILLA media/libtremor/README_MOZILLA index ee67b53a05c5..81c971773d55 100644 @@ -320,7 +319,7 @@ index adf393782cc9..923b76231107 100644 +++ media/libvorbis/moz.build @@ -56,3 +56,6 @@ FINAL_LIBRARY = 'gkmedias' # Suppress warnings in third-party code. - if CONFIG['GNU_CC']: + if CONFIG['CC_TYPE'] in ('clang', 'gcc'): CFLAGS += ['-Wno-uninitialized'] + +if CONFIG['MOZ_SYSTEM_OGG']: From owner-svn-ports-branches@freebsd.org Fri Mar 9 16:41:06 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F1FDF37B5E; Fri, 9 Mar 2018 16:41:06 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4025280160; Fri, 9 Mar 2018 16:41:06 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3B2452196B; Fri, 9 Mar 2018 16:41:06 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w29Gf6Bj077527; Fri, 9 Mar 2018 16:41:06 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29Gf5Fc077525; Fri, 9 Mar 2018 16:41:05 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201803091641.w29Gf5Fc077525@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 9 Mar 2018 16:41:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463972 - in branches/2018Q1/net/rabbitmq: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: in branches/2018Q1/net/rabbitmq: . files X-SVN-Commit-Revision: 463972 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 16:41:06 -0000 Author: olgeni Date: Fri Mar 9 16:41:05 2018 New Revision: 463972 URL: https://svnweb.freebsd.org/changeset/ports/463972 Log: MFH: r463787 net/rabbitmq: recursively fix ownership of RABBITMQ_LOG_BASE on startup. Submitted by: Jeff Walter Approved by: portmgr Modified: branches/2018Q1/net/rabbitmq/Makefile branches/2018Q1/net/rabbitmq/files/rabbitmq.in Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/net/rabbitmq/Makefile ============================================================================== --- branches/2018Q1/net/rabbitmq/Makefile Fri Mar 9 16:27:35 2018 (r463971) +++ branches/2018Q1/net/rabbitmq/Makefile Fri Mar 9 16:41:05 2018 (r463972) @@ -3,6 +3,7 @@ PORTNAME= rabbitmq PORTVERSION= 3.6.14 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-server-${PORTVERSION} Modified: branches/2018Q1/net/rabbitmq/files/rabbitmq.in ============================================================================== --- branches/2018Q1/net/rabbitmq/files/rabbitmq.in Fri Mar 9 16:27:35 2018 (r463971) +++ branches/2018Q1/net/rabbitmq/files/rabbitmq.in Fri Mar 9 16:41:05 2018 (r463972) @@ -56,7 +56,7 @@ rabbitmq_start() mkdir -p ${RABBITMQ_LOG_BASE} - chown ${rabbitmq_user}:${rabbitmq_user} ${RABBITMQ_LOG_BASE} + chown -R ${rabbitmq_user}:${rabbitmq_user} ${RABBITMQ_LOG_BASE} if [ -f ${RABBITMQ_HOME}/.erlang.cookie ]; then chmod 600 ${RABBITMQ_HOME}/.erlang.cookie From owner-svn-ports-branches@freebsd.org Fri Mar 9 17:05:29 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC262F39BFE; Fri, 9 Mar 2018 17:05:29 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A394816E4; Fri, 9 Mar 2018 17:05:29 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 70AD921E04; Fri, 9 Mar 2018 17:05:29 +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 w29H5Ttj092065; Fri, 9 Mar 2018 17:05:29 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29H5Tgl092064; Fri, 9 Mar 2018 17:05:29 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201803091705.w29H5Tgl092064@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, 9 Mar 2018 17:05:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463978 - branches/2018Q1/www/chromium X-SVN-Group: ports-branches X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: branches/2018Q1/www/chromium X-SVN-Commit-Revision: 463978 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 17:05:30 -0000 Author: cpm Date: Fri Mar 9 17:05:29 2018 New Revision: 463978 URL: https://svnweb.freebsd.org/changeset/ports/463978 Log: MFH: r463831 - Switch from x11-fonts/noto to x11-fonts/noto-lite - Bump PORTREVISION PR: 226255 Reported by: tobik Approved by: ports-secteam (riggs) Modified: branches/2018Q1/www/chromium/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/chromium/Makefile ============================================================================== --- branches/2018Q1/www/chromium/Makefile Fri Mar 9 16:55:37 2018 (r463977) +++ branches/2018Q1/www/chromium/Makefile Fri Mar 9 17:05:29 2018 (r463978) @@ -3,6 +3,7 @@ PORTNAME= chromium PORTVERSION= 64.0.3282.186 +PORTREVISION= 1 CATEGORIES?= www MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} @@ -63,7 +64,7 @@ LIB_DEPENDS= libatk-bridge-2.0.so:accessibility/at-spi libfontconfig.so:x11-fonts/fontconfig RUN_DEPENDS= xdg-open:devel/xdg-utils \ - noto>0:x11-fonts/noto + noto-lite>0:x11-fonts/noto-lite BROKEN_FreeBSD_11_aarch64= components/safe_browsing_db/v4_rice.cc:120:18: use of overloaded operator '&' is ambiguous BROKEN_FreeBSD_12_aarch64= third_party/skia/src/core/SkCpu.cpp:84:27: use of undeclared identifier 'getauxval' From owner-svn-ports-branches@freebsd.org Fri Mar 9 19:33:01 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E79A1F4566C; Fri, 9 Mar 2018 19:33:00 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 87A816889D; Fri, 9 Mar 2018 19:33: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 807CF235AF; Fri, 9 Mar 2018 19:33: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 w29JX0PY069019; Fri, 9 Mar 2018 19:33:00 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29JX0m9069015; Fri, 9 Mar 2018 19:33:00 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803091933.w29JX0m9069015@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Mar 2018 19:33:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r463995 - in branches/2018Q1/www: firefox-esr firefox-esr-i18n X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/www: firefox-esr firefox-esr-i18n X-SVN-Commit-Revision: 463995 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 19:33:01 -0000 Author: jbeich Date: Fri Mar 9 19:32:59 2018 New Revision: 463995 URL: https://svnweb.freebsd.org/changeset/ports/463995 Log: MFH: r463874 www/firefox-esr: update to 52.7.0 Changes: https://www.mozilla.org/firefox/52.7.0/releasenotes/ Security: c71cdc95-3c18-45b7-866a-af28b59aabb5 Approved by: ports-secteam (riggs) Modified: branches/2018Q1/www/firefox-esr-i18n/Makefile branches/2018Q1/www/firefox-esr-i18n/distinfo branches/2018Q1/www/firefox-esr/Makefile branches/2018Q1/www/firefox-esr/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/firefox-esr-i18n/Makefile ============================================================================== --- branches/2018Q1/www/firefox-esr-i18n/Makefile Fri Mar 9 19:32:18 2018 (r463994) +++ branches/2018Q1/www/firefox-esr-i18n/Makefile Fri Mar 9 19:32:59 2018 (r463995) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 52.6.0 +PORTVERSION= 52.7.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build2/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build1/linux-i686/xpi PKGNAMEPREFIX= PKGNAMESUFFIX= -esr-i18n DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} Modified: branches/2018Q1/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2018Q1/www/firefox-esr-i18n/distinfo Fri Mar 9 19:32:18 2018 (r463994) +++ branches/2018Q1/www/firefox-esr-i18n/distinfo Fri Mar 9 19:32:59 2018 (r463995) @@ -1,185 +1,185 @@ -TIMESTAMP = 1516224795 -SHA256 (xpi/firefox-52.6.0/ach.xpi) = 474a766a4083bff88c3a00d407cf971b2a370a070e4c8932b4fdd94e5a96d9b2 -SIZE (xpi/firefox-52.6.0/ach.xpi) = 427641 -SHA256 (xpi/firefox-52.6.0/af.xpi) = fb700f446801276d555460493bb9fb84271ec8393f89955216898ed35a9880fd -SIZE (xpi/firefox-52.6.0/af.xpi) = 436824 -SHA256 (xpi/firefox-52.6.0/an.xpi) = 89fd98f651bfac33bc29d4eb1bf70b6b83770ffc44abce2c5b3eacbf10336747 -SIZE (xpi/firefox-52.6.0/an.xpi) = 445142 -SHA256 (xpi/firefox-52.6.0/ar.xpi) = 46099c26087d96dc0533c6f93501d4202be5e32edf13f2abf3e45d06ab33e58d -SIZE (xpi/firefox-52.6.0/ar.xpi) = 473382 -SHA256 (xpi/firefox-52.6.0/as.xpi) = 6d418734c5bf65f36c607b28d7047f2033aa19f2299c98956816f10e407b9af1 -SIZE (xpi/firefox-52.6.0/as.xpi) = 486889 -SHA256 (xpi/firefox-52.6.0/ast.xpi) = 8bb3cb0ea6840683e06b77048d6dafefbe13e809afed20ddf3763c2bc0cb5789 -SIZE (xpi/firefox-52.6.0/ast.xpi) = 440034 -SHA256 (xpi/firefox-52.6.0/az.xpi) = 1339a7ed59de39e1c7a6a7d8f34b9070b5e1665b21b8989888f3ada96a7e39e6 -SIZE (xpi/firefox-52.6.0/az.xpi) = 454923 -SHA256 (xpi/firefox-52.6.0/bg.xpi) = 6c50be8f79871cb335054566ea81cadce6fc865e9db2fb6d9dc0f3b65d7b1505 -SIZE (xpi/firefox-52.6.0/bg.xpi) = 487892 -SHA256 (xpi/firefox-52.6.0/bn-BD.xpi) = 83f734695ee95bfc8062689411806e06a77749645d1d53f12f6bb0b0f8e9858d -SIZE (xpi/firefox-52.6.0/bn-BD.xpi) = 511995 -SHA256 (xpi/firefox-52.6.0/bn-IN.xpi) = 88e4169d4fb0849e8355340705ed39186e65af5d3bab0fc2ade8f8d01f6f834e -SIZE (xpi/firefox-52.6.0/bn-IN.xpi) = 509376 -SHA256 (xpi/firefox-52.6.0/br.xpi) = ee5592aba2a3ec9a40aa4ad5059ae110177c9929b568d780f59598f7a06017ef -SIZE (xpi/firefox-52.6.0/br.xpi) = 435483 -SHA256 (xpi/firefox-52.6.0/bs.xpi) = 54d3c490eadb78544d48525ac8ce24d184e0d5fcb831b537b39f748a61170d19 -SIZE (xpi/firefox-52.6.0/bs.xpi) = 441782 -SHA256 (xpi/firefox-52.6.0/ca.xpi) = 87823f075577d8bb25c969fe37a0af1e015868a1d33e51c8f0d717c0b2151ba8 -SIZE (xpi/firefox-52.6.0/ca.xpi) = 443304 -SHA256 (xpi/firefox-52.6.0/cak.xpi) = de5e36ef86a13c8a3e2d76edc5e84d5b99c04b9065cae7b6dec71bdc74019e0e -SIZE (xpi/firefox-52.6.0/cak.xpi) = 459184 -SHA256 (xpi/firefox-52.6.0/cs.xpi) = 3833e83d4fd1f77fb23a6095d4dfc0a903ebc5618a67461c10e2ab27d5d63941 -SIZE (xpi/firefox-52.6.0/cs.xpi) = 444075 -SHA256 (xpi/firefox-52.6.0/cy.xpi) = 53550ec4df5815e81f5ea768ab5296ec7af9d697db9a830f1c57a5f73e9c500d -SIZE (xpi/firefox-52.6.0/cy.xpi) = 436583 -SHA256 (xpi/firefox-52.6.0/da.xpi) = 1a6430e139ac5ddfd09b5940b917c623196faecf9a9b86e6b7bb358fdefca5e7 -SIZE (xpi/firefox-52.6.0/da.xpi) = 424394 -SHA256 (xpi/firefox-52.6.0/de.xpi) = c535c11c856aab036b8a827fd0eb02283f4397807c10330c021b7fd5cdaaad9a -SIZE (xpi/firefox-52.6.0/de.xpi) = 442479 -SHA256 (xpi/firefox-52.6.0/dsb.xpi) = fe94c29278e0bcbb0fd4cac5585876e776638a47481ee254383f1002abe9dcaa -SIZE (xpi/firefox-52.6.0/dsb.xpi) = 459425 -SHA256 (xpi/firefox-52.6.0/el.xpi) = 2e2f5db8d523d3bbc366464b8143a7d37a6c76d9eb85d540dd0c48eb29bde43b -SIZE (xpi/firefox-52.6.0/el.xpi) = 516593 -SHA256 (xpi/firefox-52.6.0/en-GB.xpi) = 5b13c349310424b0d5abc05298bb891f10bd2ffa85eaf48bfc0fd52525de69d3 -SIZE (xpi/firefox-52.6.0/en-GB.xpi) = 419324 -SHA256 (xpi/firefox-52.6.0/en-US.xpi) = 5917ec73e61fd05657f9d11db5ddf0cd6dbcd404321c8313bb7756dd8afd677b -SIZE (xpi/firefox-52.6.0/en-US.xpi) = 428654 -SHA256 (xpi/firefox-52.6.0/en-ZA.xpi) = 36ad00ad00a88639edf7c6420894ce6c816dc3952978cc7156d015fd8445fee6 -SIZE (xpi/firefox-52.6.0/en-ZA.xpi) = 412212 -SHA256 (xpi/firefox-52.6.0/eo.xpi) = b8432617a8ed4e58464e989da0fa2dc292aaa36fdbed98ff4ef5ddf95076b338 -SIZE (xpi/firefox-52.6.0/eo.xpi) = 437474 -SHA256 (xpi/firefox-52.6.0/es-AR.xpi) = 7493ef3d013e402e8cb7e04f63f01da9554765ed55697f8cf9f8d4bfc863b6f7 -SIZE (xpi/firefox-52.6.0/es-AR.xpi) = 445926 -SHA256 (xpi/firefox-52.6.0/es-CL.xpi) = e35b9086d967680cd00b182ebeebbc8d15d3ad3a094022187737ee93f17ea7a2 -SIZE (xpi/firefox-52.6.0/es-CL.xpi) = 445676 -SHA256 (xpi/firefox-52.6.0/es-ES.xpi) = d4b8edfec828a74dd55b32b3a06ab25f86fed25c6ea0dd7e0b56c07807a694dd -SIZE (xpi/firefox-52.6.0/es-ES.xpi) = 344876 -SHA256 (xpi/firefox-52.6.0/es-MX.xpi) = 7ff49cd278e4c106aaebdd4198a3a8167afc23705b050ef904da413bcb46c823 -SIZE (xpi/firefox-52.6.0/es-MX.xpi) = 448385 -SHA256 (xpi/firefox-52.6.0/et.xpi) = c0f6680a14b29d2127462c576b630048bf20df3d328b00e149f2452e7e17c619 -SIZE (xpi/firefox-52.6.0/et.xpi) = 425113 -SHA256 (xpi/firefox-52.6.0/eu.xpi) = 3c75fe1cf197eed080b58587c49834171ca8d243765ae3eed5ebadc812cbfcb3 -SIZE (xpi/firefox-52.6.0/eu.xpi) = 438479 -SHA256 (xpi/firefox-52.6.0/fa.xpi) = 0ffbe98db610d53cf6c98d918af534096230d505c6b40c5fd7cfcc98253bce5e -SIZE (xpi/firefox-52.6.0/fa.xpi) = 491344 -SHA256 (xpi/firefox-52.6.0/ff.xpi) = 84eec2904035d3388dc8b56e80b6dbd0a9747cb5e1ac6f9ba2f393c27d2a4008 -SIZE (xpi/firefox-52.6.0/ff.xpi) = 440928 -SHA256 (xpi/firefox-52.6.0/fi.xpi) = ccca0f3cd155b40cefb27404116b6721567b5c05c37ea8836aa1206d272967da -SIZE (xpi/firefox-52.6.0/fi.xpi) = 430061 -SHA256 (xpi/firefox-52.6.0/fr.xpi) = a73f6b2848198d38b9a6ce4f61fd706aad862cf77929c7c271efb94c5c75c0fc -SIZE (xpi/firefox-52.6.0/fr.xpi) = 450211 -SHA256 (xpi/firefox-52.6.0/fy-NL.xpi) = 8b0dd1121198116b35b1a24076fdcd0818dd04482b7ac1fc9f57da915ea1444d -SIZE (xpi/firefox-52.6.0/fy-NL.xpi) = 444971 -SHA256 (xpi/firefox-52.6.0/ga-IE.xpi) = 444b43c2ec7dfd829db2b5380ad848bf2bb0ed63711dc18c5ffd7692bc088a73 -SIZE (xpi/firefox-52.6.0/ga-IE.xpi) = 458165 -SHA256 (xpi/firefox-52.6.0/gd.xpi) = 352aeed69b700d0048979d59327baa710ab362d15cd0937e67fc3f4a450184e0 -SIZE (xpi/firefox-52.6.0/gd.xpi) = 447268 -SHA256 (xpi/firefox-52.6.0/gl.xpi) = 92c45cad825c0a69862fc3622fb34fb31bf6740bfe83cbcf48fc976cad1b1d43 -SIZE (xpi/firefox-52.6.0/gl.xpi) = 447295 -SHA256 (xpi/firefox-52.6.0/gn.xpi) = b9f524dcabf3d0a9ee653f69e4a9f660fc2a8d1af333b154deba06369c79662d -SIZE (xpi/firefox-52.6.0/gn.xpi) = 456214 -SHA256 (xpi/firefox-52.6.0/gu-IN.xpi) = e5f19e08912210755ad20bb3312b148986a9df30ea4b13423357a2f2dc5f58c8 -SIZE (xpi/firefox-52.6.0/gu-IN.xpi) = 489366 -SHA256 (xpi/firefox-52.6.0/he.xpi) = d152d9d9417c76286ec99d41de9e90f6367602e0dd43068f7046a696caf63475 -SIZE (xpi/firefox-52.6.0/he.xpi) = 455282 -SHA256 (xpi/firefox-52.6.0/hi-IN.xpi) = fcbbe936c89164f1bc294b846936f603cd90ae3669d6a20aa2187766f0943371 -SIZE (xpi/firefox-52.6.0/hi-IN.xpi) = 506519 -SHA256 (xpi/firefox-52.6.0/hr.xpi) = 5188dd6ae015807de8745a5e14bd0e666998396ee190cea21a293028850009d6 -SIZE (xpi/firefox-52.6.0/hr.xpi) = 447503 -SHA256 (xpi/firefox-52.6.0/hsb.xpi) = 83147abce9594f785060811d6129093aba3c636d99af144e393c688b27bedccd -SIZE (xpi/firefox-52.6.0/hsb.xpi) = 457259 -SHA256 (xpi/firefox-52.6.0/hu.xpi) = 1b8e6bf7c740e9da0801362e9081aa5e4ae1c5c7c1dcc6087e75be6cdf88ea43 -SIZE (xpi/firefox-52.6.0/hu.xpi) = 451497 -SHA256 (xpi/firefox-52.6.0/hy-AM.xpi) = f4cdfe86b473e57634dc886a4005b9be27f721ff473b682a71b6f02ca9756463 -SIZE (xpi/firefox-52.6.0/hy-AM.xpi) = 495774 -SHA256 (xpi/firefox-52.6.0/id.xpi) = 2023fa8f5dd0017fbc93b3d1004c74fd58679167454fd90c8df5796b6070a5a3 -SIZE (xpi/firefox-52.6.0/id.xpi) = 426023 -SHA256 (xpi/firefox-52.6.0/is.xpi) = 263153b23d4f2f5c255102558c646a114aec6a339d5399343845fedfbb0e06b8 -SIZE (xpi/firefox-52.6.0/is.xpi) = 442694 -SHA256 (xpi/firefox-52.6.0/it.xpi) = b83554d0e33353100add2f2dec25027a2dccb7c71236a46494ac83009e0f097f -SIZE (xpi/firefox-52.6.0/it.xpi) = 339221 -SHA256 (xpi/firefox-52.6.0/ja.xpi) = 4716e54094a90dfa8b3f49803f20a46b7558a774f83a730abca70903ce399cf4 -SIZE (xpi/firefox-52.6.0/ja.xpi) = 488343 -SHA256 (xpi/firefox-52.6.0/ka.xpi) = 94c1ab9bb04e092e7952782e475460069b388a6e7d9743a6756b277a6d409ecd -SIZE (xpi/firefox-52.6.0/ka.xpi) = 475375 -SHA256 (xpi/firefox-52.6.0/kab.xpi) = f93c4dce26376ca62767d35876f51d7bb4e1088910d476b20ecdc46e2def8aa9 -SIZE (xpi/firefox-52.6.0/kab.xpi) = 444520 -SHA256 (xpi/firefox-52.6.0/kk.xpi) = 16062f201c591e55c0121324921473e4bce353af425f016c956303afecf89ca8 -SIZE (xpi/firefox-52.6.0/kk.xpi) = 496940 -SHA256 (xpi/firefox-52.6.0/km.xpi) = 9648d1e49d360c7e8a124708a5f98c22880fcc42e5efa2f5f5676099e3f68173 -SIZE (xpi/firefox-52.6.0/km.xpi) = 520344 -SHA256 (xpi/firefox-52.6.0/kn.xpi) = 1bb480998c9e869545f2ceb7ad7df52c554270aad5ce2c0a5442371c963a7a48 -SIZE (xpi/firefox-52.6.0/kn.xpi) = 519456 -SHA256 (xpi/firefox-52.6.0/ko.xpi) = 1d22a4331fb0a8cc4e504224cb7d60dcd372bd4fe55ed95ca965588879ae23f9 -SIZE (xpi/firefox-52.6.0/ko.xpi) = 463630 -SHA256 (xpi/firefox-52.6.0/lij.xpi) = d55b2d2d450b390b00e83b9781454ae7a08365a0b0fcfe3e748b23b117952b11 -SIZE (xpi/firefox-52.6.0/lij.xpi) = 421071 -SHA256 (xpi/firefox-52.6.0/lt.xpi) = cfaca90ff40f5874a4720b01acc74218709400c1a3ec6baf794fc30e70967ced -SIZE (xpi/firefox-52.6.0/lt.xpi) = 452236 -SHA256 (xpi/firefox-52.6.0/lv.xpi) = 38f61fabcc54acccbd417944a144449a1aac70253054d0c682afdc5dbb3cb38d -SIZE (xpi/firefox-52.6.0/lv.xpi) = 448451 -SHA256 (xpi/firefox-52.6.0/mai.xpi) = 26146a3af71661a15840e3be2ab4000ba47fd032ead5cbe299ece45e3df6cd96 -SIZE (xpi/firefox-52.6.0/mai.xpi) = 499841 -SHA256 (xpi/firefox-52.6.0/mk.xpi) = c1e2110ce2613ff693b034067b89a1725ad04b2d826927433d4f1413ea138a37 -SIZE (xpi/firefox-52.6.0/mk.xpi) = 496200 -SHA256 (xpi/firefox-52.6.0/ml.xpi) = 658d49fc128bf434eb9cdb44be4c9b7a9de7accc9e0ba02b7a9d0a49359f3c87 -SIZE (xpi/firefox-52.6.0/ml.xpi) = 516487 -SHA256 (xpi/firefox-52.6.0/mr.xpi) = fe2bc47ea980b83b455651752d5fe5a45ae199445dfc977e5ddce872e34a55ad -SIZE (xpi/firefox-52.6.0/mr.xpi) = 502431 -SHA256 (xpi/firefox-52.6.0/ms.xpi) = 1fca0f3d0ca1cda4a7d04564bbbd498040c4a6259361e576dac5ec7459d827ef -SIZE (xpi/firefox-52.6.0/ms.xpi) = 435991 -SHA256 (xpi/firefox-52.6.0/nb-NO.xpi) = 36ec79153da3d578e918a519ca026cdd0261c93aa3ca642ab70a24390ba7d92f -SIZE (xpi/firefox-52.6.0/nb-NO.xpi) = 434412 -SHA256 (xpi/firefox-52.6.0/nl.xpi) = 5bfae14edb40888d57d092108270ce067ba52150caa39ba83d0f2d57061d0136 -SIZE (xpi/firefox-52.6.0/nl.xpi) = 432008 -SHA256 (xpi/firefox-52.6.0/nn-NO.xpi) = 723e65dd29e128d4ecdfd7deed0e2c2adc3422ced264c60d080d251d32027d59 -SIZE (xpi/firefox-52.6.0/nn-NO.xpi) = 428645 -SHA256 (xpi/firefox-52.6.0/or.xpi) = 7a99747d95b2f38f91cfbb14c4d5b500a731d2a568db6b1e3baf466e84428193 -SIZE (xpi/firefox-52.6.0/or.xpi) = 496918 -SHA256 (xpi/firefox-52.6.0/pa-IN.xpi) = d1d03908d854fba978ff52898e8b7b1a493e27d251397c1ce478be76eba1880d -SIZE (xpi/firefox-52.6.0/pa-IN.xpi) = 476588 -SHA256 (xpi/firefox-52.6.0/pl.xpi) = db6a0b8286880d6bf85cd3a0953963c584c78690cf48650a7094cd48ee1781e8 -SIZE (xpi/firefox-52.6.0/pl.xpi) = 352852 -SHA256 (xpi/firefox-52.6.0/pt-BR.xpi) = 686b6b8adb998aeae598be3a7c9cd7e5677cca8ce93271e52b95adf408c393ac -SIZE (xpi/firefox-52.6.0/pt-BR.xpi) = 438170 -SHA256 (xpi/firefox-52.6.0/pt-PT.xpi) = ad2df766b51aefdb23f846cabfa02d09ce48746497134cf4306dc9a1cbb2e1f0 -SIZE (xpi/firefox-52.6.0/pt-PT.xpi) = 436727 -SHA256 (xpi/firefox-52.6.0/rm.xpi) = 29278498eff349a13a9ed87ad654bb46c36a57e4587cc2890607ead0c1fae94f -SIZE (xpi/firefox-52.6.0/rm.xpi) = 434608 -SHA256 (xpi/firefox-52.6.0/ro.xpi) = c8e61a24fda87f62eef775152027b31ca62431c9fe1ce3d39e296c57e72c35e4 -SIZE (xpi/firefox-52.6.0/ro.xpi) = 449938 -SHA256 (xpi/firefox-52.6.0/ru.xpi) = 238911629564181d96b43b9561d44bc0c7b984c59da69b05efb6793b03fcaa32 -SIZE (xpi/firefox-52.6.0/ru.xpi) = 395364 -SHA256 (xpi/firefox-52.6.0/si.xpi) = 821745c59c7c7c17829437760d040bd02ccb6273c60cf738c1bac3cab3a97fb2 -SIZE (xpi/firefox-52.6.0/si.xpi) = 491959 -SHA256 (xpi/firefox-52.6.0/sk.xpi) = 67042291540fae91aaf5859ee09b480299980a12e6ade769d521a160b05f4ee3 -SIZE (xpi/firefox-52.6.0/sk.xpi) = 455820 -SHA256 (xpi/firefox-52.6.0/sl.xpi) = 53b6de8f0334bd49399e308c265c92e3889776c85f07a303a81cad944a5d7363 -SIZE (xpi/firefox-52.6.0/sl.xpi) = 433483 -SHA256 (xpi/firefox-52.6.0/son.xpi) = 2b2fc43d885425b4a4df79d9ed7e21ade80d104d7d318af067b1093a58fe2aa0 -SIZE (xpi/firefox-52.6.0/son.xpi) = 435128 -SHA256 (xpi/firefox-52.6.0/sq.xpi) = 73083b4b384df8975fd6beb0d96e931856b30e7d4244938c20f1e599e5c74489 -SIZE (xpi/firefox-52.6.0/sq.xpi) = 448156 -SHA256 (xpi/firefox-52.6.0/sr.xpi) = 23f1f3a5cf15197c091c82ea0eff16e34ff6db305d7d7b5766bb03ff31787229 -SIZE (xpi/firefox-52.6.0/sr.xpi) = 463395 -SHA256 (xpi/firefox-52.6.0/sv-SE.xpi) = d5c3fc435af689107d239fdeced800653dfbe4c90790d05ec2b7280e5c2b0fa5 -SIZE (xpi/firefox-52.6.0/sv-SE.xpi) = 441178 -SHA256 (xpi/firefox-52.6.0/ta.xpi) = 4369e5f7047f4e89519980dde7c316848e13997bd51588f7125132959a16aaa2 -SIZE (xpi/firefox-52.6.0/ta.xpi) = 494799 -SHA256 (xpi/firefox-52.6.0/te.xpi) = 24c716cb562bd577af85ffe09312070bdcd81bf7aedc5b2873a431adcad9d7dc -SIZE (xpi/firefox-52.6.0/te.xpi) = 515241 -SHA256 (xpi/firefox-52.6.0/th.xpi) = 39260ae8188a167d5bb67ffdc2138f354e8885533ffd665aa33baa3dec272943 -SIZE (xpi/firefox-52.6.0/th.xpi) = 489379 -SHA256 (xpi/firefox-52.6.0/tr.xpi) = 8cc36366cc33dacbb04886c94a8a1cfe4e41ccb18262f4f59a47837ef0f96c7a -SIZE (xpi/firefox-52.6.0/tr.xpi) = 443674 -SHA256 (xpi/firefox-52.6.0/uk.xpi) = 6c5bb185967dae256871a8a01690fdd13425df3e43dde5c67fb4ffaf31cb205e -SIZE (xpi/firefox-52.6.0/uk.xpi) = 495096 -SHA256 (xpi/firefox-52.6.0/uz.xpi) = dd16a14d44e2349dc9697ca7f5740e3a0c39af84a3449e51754bc0b66961b14d -SIZE (xpi/firefox-52.6.0/uz.xpi) = 447917 -SHA256 (xpi/firefox-52.6.0/vi.xpi) = e9b1354846a186f691c08b3b6b01d2c6a9d15280a63ff43c4b56da14ea495f89 -SIZE (xpi/firefox-52.6.0/vi.xpi) = 450805 -SHA256 (xpi/firefox-52.6.0/xh.xpi) = aaf84fd012ac37cfd8b730002738ebf63504cb4c815020655cae02eb6097c704 -SIZE (xpi/firefox-52.6.0/xh.xpi) = 441173 -SHA256 (xpi/firefox-52.6.0/zh-CN.xpi) = bf93d65cb7bab6d999ae9a4dd4ecb509c2661141f39659fa2c8c921e92c2e5a5 -SIZE (xpi/firefox-52.6.0/zh-CN.xpi) = 461679 -SHA256 (xpi/firefox-52.6.0/zh-TW.xpi) = b66bcc4c71b7c612a9fe260858d3c7bde7666d1684265b0c3d15e53a8991f3bf -SIZE (xpi/firefox-52.6.0/zh-TW.xpi) = 470063 +TIMESTAMP = 1520470534 +SHA256 (xpi/firefox-52.7.0/ach.xpi) = b60630fef863824af52a7495f74f83107057e889a1d595f018e11b6bc1742e10 +SIZE (xpi/firefox-52.7.0/ach.xpi) = 420287 +SHA256 (xpi/firefox-52.7.0/af.xpi) = a113fed1eb6a13624d1e106164cd1cf39af4c9338eb43958838c59139cf67b27 +SIZE (xpi/firefox-52.7.0/af.xpi) = 429469 +SHA256 (xpi/firefox-52.7.0/an.xpi) = 8dcd84c821ca407ed6d7f885dcac0f135cac5fb5701b712c50e5df252b5ac34b +SIZE (xpi/firefox-52.7.0/an.xpi) = 437887 +SHA256 (xpi/firefox-52.7.0/ar.xpi) = 400e9726e6b2576bc86bd6af68163e68700ef74c991c54b0d8a4525817857f74 +SIZE (xpi/firefox-52.7.0/ar.xpi) = 466028 +SHA256 (xpi/firefox-52.7.0/as.xpi) = 2f640b578e7d16c7b8f2d589a59f9063d27f496b04740b8ee791b9286cc7b5ad +SIZE (xpi/firefox-52.7.0/as.xpi) = 479635 +SHA256 (xpi/firefox-52.7.0/ast.xpi) = 10b39ebe7d0078e5f9eba2d08ae97e9c71c1f86c04ca78b0cf9a5da8d596172e +SIZE (xpi/firefox-52.7.0/ast.xpi) = 432775 +SHA256 (xpi/firefox-52.7.0/az.xpi) = 8aa50ba09aa86921bfeb44002fa5ab2f05de098a18a8ae681812cd9c2b597835 +SIZE (xpi/firefox-52.7.0/az.xpi) = 454923 +SHA256 (xpi/firefox-52.7.0/bg.xpi) = f2f8b78da572c31d5b4e70a339a8bcb0d25d976208699dffe76ed91daebc1d1c +SIZE (xpi/firefox-52.7.0/bg.xpi) = 487891 +SHA256 (xpi/firefox-52.7.0/bn-BD.xpi) = f3ac0bfcf90af4c91ee12a07cec65c8b8451f61d66c8d89d1266a9b2a7d9d8af +SIZE (xpi/firefox-52.7.0/bn-BD.xpi) = 504633 +SHA256 (xpi/firefox-52.7.0/bn-IN.xpi) = a0764c62b042decece0ec4017837b199c53714f2c707f289e55d2e9f37c6e69e +SIZE (xpi/firefox-52.7.0/bn-IN.xpi) = 502114 +SHA256 (xpi/firefox-52.7.0/br.xpi) = a4988f38e4d22160086d728a5a887932da10960f463c7da37498248e94b70dbe +SIZE (xpi/firefox-52.7.0/br.xpi) = 428216 +SHA256 (xpi/firefox-52.7.0/bs.xpi) = 019081b23d5f8880bc8c12b8b6dedef1fb2004a10f404665faaf860a0c1086b4 +SIZE (xpi/firefox-52.7.0/bs.xpi) = 434428 +SHA256 (xpi/firefox-52.7.0/ca.xpi) = 4ef6abfe8b1971923d2e24e8793b6caca6e9999d8937406f0fed51ad0786b6e6 +SIZE (xpi/firefox-52.7.0/ca.xpi) = 443304 +SHA256 (xpi/firefox-52.7.0/cak.xpi) = 531023986ee84dd0189cf1b6b6b2e27d0922ca01069adbf4e4ca33451f5affd6 +SIZE (xpi/firefox-52.7.0/cak.xpi) = 451910 +SHA256 (xpi/firefox-52.7.0/cs.xpi) = ff1da27ce3194c8dbe08db5c9f32dfde802bb88c5f71dfe26b4dea4b4a7da4c0 +SIZE (xpi/firefox-52.7.0/cs.xpi) = 444075 +SHA256 (xpi/firefox-52.7.0/cy.xpi) = 325a5762d8641897f9491956c0d28f8c2ff7b0545cf42d9e504841a5f1e384f0 +SIZE (xpi/firefox-52.7.0/cy.xpi) = 429301 +SHA256 (xpi/firefox-52.7.0/da.xpi) = 697951a1830da4f9c3bebccd9d403d7e34d8ec07668e100ab4ec48af34a9a7ed +SIZE (xpi/firefox-52.7.0/da.xpi) = 424394 +SHA256 (xpi/firefox-52.7.0/de.xpi) = f5a4d490ac1afbdd466695abff863fb593bb7a8200a0bbef3360ae29b0934e8a +SIZE (xpi/firefox-52.7.0/de.xpi) = 435228 +SHA256 (xpi/firefox-52.7.0/dsb.xpi) = 8a0b4fef0abf9c98af56c49e57c36473b2aa387eb7cd8959ec79dd2941ee3ae7 +SIZE (xpi/firefox-52.7.0/dsb.xpi) = 452168 +SHA256 (xpi/firefox-52.7.0/el.xpi) = 54ab52c80cc44c324ed0ef3e027552f01632d4050e64877d968f73756228ec4e +SIZE (xpi/firefox-52.7.0/el.xpi) = 509237 +SHA256 (xpi/firefox-52.7.0/en-GB.xpi) = 8f1254aac3e2332570130762e4baab6f718374bc48626efd82117d9f254148f8 +SIZE (xpi/firefox-52.7.0/en-GB.xpi) = 412039 +SHA256 (xpi/firefox-52.7.0/en-US.xpi) = 6f65cde6c0d1fdd25efc60ce7842340e8e608c65cd906383d0927ec3f30d2e35 +SIZE (xpi/firefox-52.7.0/en-US.xpi) = 413902 +SHA256 (xpi/firefox-52.7.0/en-ZA.xpi) = 55725b6535315629c17bacf8da3589fd4a2003f169380ba686559ac7f3bab5ad +SIZE (xpi/firefox-52.7.0/en-ZA.xpi) = 412212 +SHA256 (xpi/firefox-52.7.0/eo.xpi) = ef7eff25895357e25606cc31b3425ea4cfbad175e0689d6f3687c15bff1a8380 +SIZE (xpi/firefox-52.7.0/eo.xpi) = 430117 +SHA256 (xpi/firefox-52.7.0/es-AR.xpi) = 8ef85f85ef064d889937392e7428781972ca30c8c9b92ac4aaf4bb6448ca64df +SIZE (xpi/firefox-52.7.0/es-AR.xpi) = 438660 +SHA256 (xpi/firefox-52.7.0/es-CL.xpi) = cb6c4476c39a2c969bdcbac08d8ffcd2517707d581d5244bd4af1fbe245d016a +SIZE (xpi/firefox-52.7.0/es-CL.xpi) = 438407 +SHA256 (xpi/firefox-52.7.0/es-ES.xpi) = 0fdbd13b574571fd8b0f1243f27eb3e1a20ce869f19052aecea333e8eb86cf46 +SIZE (xpi/firefox-52.7.0/es-ES.xpi) = 337614 +SHA256 (xpi/firefox-52.7.0/es-MX.xpi) = f9b150ea730e13c80a6e046b91e8f7d13fed29d1b64fb3a41123eab95a745266 +SIZE (xpi/firefox-52.7.0/es-MX.xpi) = 441127 +SHA256 (xpi/firefox-52.7.0/et.xpi) = ea5b03674db13c574b88908c8865b0abb42b1f3bcc5d19ac7db8337e47d9ed28 +SIZE (xpi/firefox-52.7.0/et.xpi) = 425113 +SHA256 (xpi/firefox-52.7.0/eu.xpi) = 97da8713003f7ee0c3260c6eda6ba0b27895c12f438e457a77d136bbd89943a2 +SIZE (xpi/firefox-52.7.0/eu.xpi) = 431124 +SHA256 (xpi/firefox-52.7.0/fa.xpi) = 3989d621b48234ba3205d533050c0409a602bb345f901057811729202e093a63 +SIZE (xpi/firefox-52.7.0/fa.xpi) = 483989 +SHA256 (xpi/firefox-52.7.0/ff.xpi) = cb2faa2fa72ba689b758354a952628cbb4925a78f20b82da1cb50df74dbbf31a +SIZE (xpi/firefox-52.7.0/ff.xpi) = 433662 +SHA256 (xpi/firefox-52.7.0/fi.xpi) = b26e5fe9b8519ef7a759a53a2a5fcaaf0c4c322481f26266013bf169db972f58 +SIZE (xpi/firefox-52.7.0/fi.xpi) = 422807 +SHA256 (xpi/firefox-52.7.0/fr.xpi) = 7dc7fb9ef5b9a4d0fc80a18df09f795720305c0aad44bc7364cc0d6b36762a22 +SIZE (xpi/firefox-52.7.0/fr.xpi) = 442944 +SHA256 (xpi/firefox-52.7.0/fy-NL.xpi) = e2dd60cc92ede4781963e4e46bc394caf15e86308b7e00fd97542ba3e2d96687 +SIZE (xpi/firefox-52.7.0/fy-NL.xpi) = 437700 +SHA256 (xpi/firefox-52.7.0/ga-IE.xpi) = 0b1baabcc30aab5a71404fa94313dadba270b786c4900948c0b26df12dbd6506 +SIZE (xpi/firefox-52.7.0/ga-IE.xpi) = 450876 +SHA256 (xpi/firefox-52.7.0/gd.xpi) = 19613a5e2c93bf460c4fc5e9e63b59e8de9916035c90b7b6f10eadc5ca2d6f2b +SIZE (xpi/firefox-52.7.0/gd.xpi) = 439988 +SHA256 (xpi/firefox-52.7.0/gl.xpi) = 497fc3d8804b7c08d5a98108167a409f4f6cb48f79dd1b218fa229ad027e050f +SIZE (xpi/firefox-52.7.0/gl.xpi) = 440039 +SHA256 (xpi/firefox-52.7.0/gn.xpi) = 8a361e216f16c04d1799f6b53c9347115c87626e0d99c3e7d166118d90598906 +SIZE (xpi/firefox-52.7.0/gn.xpi) = 448957 +SHA256 (xpi/firefox-52.7.0/gu-IN.xpi) = 1a8c00470270e574b0dbc29de383a3f130d3a505d204c3e28138394558b49c94 +SIZE (xpi/firefox-52.7.0/gu-IN.xpi) = 482104 +SHA256 (xpi/firefox-52.7.0/he.xpi) = 8e3ba942b7197861ac8e5697f462f27e0101c7ee7afa1b21c800cf84f168619d +SIZE (xpi/firefox-52.7.0/he.xpi) = 447926 +SHA256 (xpi/firefox-52.7.0/hi-IN.xpi) = c41948a8376db432449425d5fe9c4614c0676f104d86cb205513b057db30e9a9 +SIZE (xpi/firefox-52.7.0/hi-IN.xpi) = 499257 +SHA256 (xpi/firefox-52.7.0/hr.xpi) = 7aa0393aea0c1f699964f37bef2b1fb00cc95c9302748db18e18cd037b74b35c +SIZE (xpi/firefox-52.7.0/hr.xpi) = 440149 +SHA256 (xpi/firefox-52.7.0/hsb.xpi) = ac4be21aef62ab9d1b48c83860f04fb38ab0edd14cf45afb2cece161bef38cfc +SIZE (xpi/firefox-52.7.0/hsb.xpi) = 450002 +SHA256 (xpi/firefox-52.7.0/hu.xpi) = f338536bcd13f5129da08d6718d6153b84f9f85af37e190e52231d646bc80ccb +SIZE (xpi/firefox-52.7.0/hu.xpi) = 451496 +SHA256 (xpi/firefox-52.7.0/hy-AM.xpi) = eee8e6734f56a6541400525829cfc4247a0bc6ee540b5ea247cf3786ca58b9f5 +SIZE (xpi/firefox-52.7.0/hy-AM.xpi) = 488415 +SHA256 (xpi/firefox-52.7.0/id.xpi) = 6e3151a9fc1ba63c11b9603e9b48e461758b54a2d8abb81579e595d15e3d329a +SIZE (xpi/firefox-52.7.0/id.xpi) = 418765 +SHA256 (xpi/firefox-52.7.0/is.xpi) = 4a32b47b2ca68c30022c68c5f8c5d2bce3ef0d9050c88ecc99053ed42d29f8b9 +SIZE (xpi/firefox-52.7.0/is.xpi) = 435339 +SHA256 (xpi/firefox-52.7.0/it.xpi) = 946c9f5af1d13666e055cfac4dda0a5ec7339df0cf09bf725889212cad26b159 +SIZE (xpi/firefox-52.7.0/it.xpi) = 315854 +SHA256 (xpi/firefox-52.7.0/ja.xpi) = 302de6b9073eb123c88e7683b797c0b426bccfa2311d24c126555f14d1647753 +SIZE (xpi/firefox-52.7.0/ja.xpi) = 488343 +SHA256 (xpi/firefox-52.7.0/ka.xpi) = c676c29478cbad95733cd87be42d228f32e786e82543c51b9fc9f989df19e043 +SIZE (xpi/firefox-52.7.0/ka.xpi) = 468022 +SHA256 (xpi/firefox-52.7.0/kab.xpi) = 8905d5758554cf6a589e382165d7d1737db4e2be0155ff7a1160531a2dcc0e1e +SIZE (xpi/firefox-52.7.0/kab.xpi) = 437246 +SHA256 (xpi/firefox-52.7.0/kk.xpi) = 087facfa5111278b3f98c2f27edd1555641dc933472b2b18a202f3d06c20d709 +SIZE (xpi/firefox-52.7.0/kk.xpi) = 496940 +SHA256 (xpi/firefox-52.7.0/km.xpi) = 7bf1701014db5d8869af2c13b92c9cc8a651d029b16ca9b2ba4ad7d1bfe14598 +SIZE (xpi/firefox-52.7.0/km.xpi) = 512989 +SHA256 (xpi/firefox-52.7.0/kn.xpi) = 276fe6c551cda2d5f13c71c977c644ae7b71bcd0fee0fda42961501a5ce4be97 +SIZE (xpi/firefox-52.7.0/kn.xpi) = 512199 +SHA256 (xpi/firefox-52.7.0/ko.xpi) = e76358cbbe8e7e9c8ed186b44275b918140fce83ad4d094ee5fb7f840e5c9610 +SIZE (xpi/firefox-52.7.0/ko.xpi) = 463630 +SHA256 (xpi/firefox-52.7.0/lij.xpi) = 6dd06ec2a05d525365406f0d1e73abfae9b8e5cd0889c7becb7baa1ab4e8540d +SIZE (xpi/firefox-52.7.0/lij.xpi) = 413817 +SHA256 (xpi/firefox-52.7.0/lt.xpi) = 65dbdf5b942c8cb42d02ca806914f91d58f8053e3db0e5d70090ee47a40e1f74 +SIZE (xpi/firefox-52.7.0/lt.xpi) = 452236 +SHA256 (xpi/firefox-52.7.0/lv.xpi) = 846bb42fe8354d852881bb4218f55fe4f8a47551458d15b5978105c4bb7c0508 +SIZE (xpi/firefox-52.7.0/lv.xpi) = 441096 +SHA256 (xpi/firefox-52.7.0/mai.xpi) = b21715d9ad575036bc0374bbf989b20720b3d3e71158e820bad67da481fab10d +SIZE (xpi/firefox-52.7.0/mai.xpi) = 492586 +SHA256 (xpi/firefox-52.7.0/mk.xpi) = bbcf3c7f17f6a3d4819364e45568b4d7f03d513f45a3c536fa51219c202c4da7 +SIZE (xpi/firefox-52.7.0/mk.xpi) = 488847 +SHA256 (xpi/firefox-52.7.0/ml.xpi) = 331ca01d7cbc70995af2d2e16aaf1b161bb189ffe01c2154064affdec32c82d6 +SIZE (xpi/firefox-52.7.0/ml.xpi) = 516487 +SHA256 (xpi/firefox-52.7.0/mr.xpi) = 2612d7cad2fb5d865a03c3a414ec813333556b2e2a12766b4fb9774641aa9bf2 +SIZE (xpi/firefox-52.7.0/mr.xpi) = 495178 +SHA256 (xpi/firefox-52.7.0/ms.xpi) = de02d6e4f2deb88648e64b29e2ead85952061001bef99d1fec41fe842a8e1d8c +SIZE (xpi/firefox-52.7.0/ms.xpi) = 428635 +SHA256 (xpi/firefox-52.7.0/nb-NO.xpi) = 8b91db806b46c6769f6b1388f9c904960a55844961d7b2c3be4d4a0598ef45fd +SIZE (xpi/firefox-52.7.0/nb-NO.xpi) = 427148 +SHA256 (xpi/firefox-52.7.0/nl.xpi) = e83dbb8858cee1aaa2eb722aa1e9baca54d09dc0d85e08c51668c8c3df11beb4 +SIZE (xpi/firefox-52.7.0/nl.xpi) = 432007 +SHA256 (xpi/firefox-52.7.0/nn-NO.xpi) = f327833a3167678f10aaf2ca371756a81d2d9d6b6f49fefdef506fd60ef2d8bc +SIZE (xpi/firefox-52.7.0/nn-NO.xpi) = 428645 +SHA256 (xpi/firefox-52.7.0/or.xpi) = 05b6e3cde361bb707934f20a3359d6196dd78ae80676bd9b11c272d34d468735 +SIZE (xpi/firefox-52.7.0/or.xpi) = 489664 +SHA256 (xpi/firefox-52.7.0/pa-IN.xpi) = 8f81cd036bdcd6db9f6e6bad83dd4cc67ddde6c31229f22f57ef7ac5acb6f183 +SIZE (xpi/firefox-52.7.0/pa-IN.xpi) = 469326 +SHA256 (xpi/firefox-52.7.0/pl.xpi) = 58600752bb3b79b0942ee680cbd66fdf2ea5532bb53ea62182039f11b39cd255 +SIZE (xpi/firefox-52.7.0/pl.xpi) = 352851 +SHA256 (xpi/firefox-52.7.0/pt-BR.xpi) = e96e12a761bf1879dcd6e8a40126d725abb55242308a2fe3888c93dfcb192e1c +SIZE (xpi/firefox-52.7.0/pt-BR.xpi) = 430903 +SHA256 (xpi/firefox-52.7.0/pt-PT.xpi) = 5ddc539da003e9967b0777f38799f488dea7338daece590924efde3f353cc551 +SIZE (xpi/firefox-52.7.0/pt-PT.xpi) = 436727 +SHA256 (xpi/firefox-52.7.0/rm.xpi) = ef5637d5372ea4e581b1cd6616a86760b293e837f01e6cfaba8787c77ffe5885 +SIZE (xpi/firefox-52.7.0/rm.xpi) = 427341 +SHA256 (xpi/firefox-52.7.0/ro.xpi) = cb5c48d14ec999d8292491b568925dea603839a96951bd95252d8d2f74c9087a +SIZE (xpi/firefox-52.7.0/ro.xpi) = 442585 +SHA256 (xpi/firefox-52.7.0/ru.xpi) = 1e98c66241272a50b90c3a590352ddb553df9047eefc5367bb9724090240edcb +SIZE (xpi/firefox-52.7.0/ru.xpi) = 395364 +SHA256 (xpi/firefox-52.7.0/si.xpi) = c9f4d2a9d96488c4396e5d8562f7479f77d53a3ae35e3e267d08b8ec086d11cb +SIZE (xpi/firefox-52.7.0/si.xpi) = 484605 +SHA256 (xpi/firefox-52.7.0/sk.xpi) = 05200d2f3aeec9328028dc4df68c17498e1289dd44663c36fed024e315554b89 +SIZE (xpi/firefox-52.7.0/sk.xpi) = 455821 +SHA256 (xpi/firefox-52.7.0/sl.xpi) = c26851221a1362db015f3072d306c9480fa9dc518dcbfe6d79774a91cf69de97 +SIZE (xpi/firefox-52.7.0/sl.xpi) = 433482 +SHA256 (xpi/firefox-52.7.0/son.xpi) = 80841d5b36b7111754d885a5952860394be2c0158cbdae70b3ecad725926db51 +SIZE (xpi/firefox-52.7.0/son.xpi) = 427860 +SHA256 (xpi/firefox-52.7.0/sq.xpi) = 4ec07d85dc5b5e840ed055847f707526f0a2f1ff090e0786ac9be1deb34d6ab2 +SIZE (xpi/firefox-52.7.0/sq.xpi) = 440802 +SHA256 (xpi/firefox-52.7.0/sr.xpi) = 70c66d11df787d09c7c56f67cb33f4b986463a98bf2cb985ac3be05198050238 +SIZE (xpi/firefox-52.7.0/sr.xpi) = 463395 +SHA256 (xpi/firefox-52.7.0/sv-SE.xpi) = b8a736da71226612ea69b8f72c87a36e8b486889280aa3940e1f676a839af121 +SIZE (xpi/firefox-52.7.0/sv-SE.xpi) = 433912 +SHA256 (xpi/firefox-52.7.0/ta.xpi) = 4d6bc9d58fb2feac75b0651f7d704b2da561e76d561101ab97723d1792c423b7 +SIZE (xpi/firefox-52.7.0/ta.xpi) = 487542 +SHA256 (xpi/firefox-52.7.0/te.xpi) = 50e4384bef4ae84f0cd1317b83c4fb895f25b38ef1b9864897a6fb7299426ef2 +SIZE (xpi/firefox-52.7.0/te.xpi) = 507987 +SHA256 (xpi/firefox-52.7.0/th.xpi) = 71a1405f4ddad0ff3b3989b0d3c3ab936b487c8950c0d1ee9004dedcd1fb1170 +SIZE (xpi/firefox-52.7.0/th.xpi) = 482022 +SHA256 (xpi/firefox-52.7.0/tr.xpi) = db75d8b2ee4b59020befced4fecd2fdfb02afd7bc549aa946a027943f66987a9 +SIZE (xpi/firefox-52.7.0/tr.xpi) = 443673 +SHA256 (xpi/firefox-52.7.0/uk.xpi) = e1a7df84195861ded817f8baecd6816217492e2a30fc8a031fe5643bb6e90b13 +SIZE (xpi/firefox-52.7.0/uk.xpi) = 495095 +SHA256 (xpi/firefox-52.7.0/uz.xpi) = 6f4c1679ab26bcfc9b84fcd398ab6c45122e092914706e43f56f4640c696a6a6 +SIZE (xpi/firefox-52.7.0/uz.xpi) = 440565 +SHA256 (xpi/firefox-52.7.0/vi.xpi) = 5e369c1464d5ecdd12d84300b7e00b302f8614a0369efb654001dea1be7ccc4f +SIZE (xpi/firefox-52.7.0/vi.xpi) = 450805 +SHA256 (xpi/firefox-52.7.0/xh.xpi) = 117d664eda5021935cae9440ecc84797aaaa412df90007ecd3de62300929fa08 +SIZE (xpi/firefox-52.7.0/xh.xpi) = 441173 +SHA256 (xpi/firefox-52.7.0/zh-CN.xpi) = 3c7c8f9b1555f735193fa91ef7e748c2dac7f57a136b7095829204e0f889544f +SIZE (xpi/firefox-52.7.0/zh-CN.xpi) = 461679 +SHA256 (xpi/firefox-52.7.0/zh-TW.xpi) = 7d379b01e95b7cae3e3cf02f17f4d84844cc563052ef38e5df0a2a51c3d0f238 +SIZE (xpi/firefox-52.7.0/zh-TW.xpi) = 453068 Modified: branches/2018Q1/www/firefox-esr/Makefile ============================================================================== --- branches/2018Q1/www/firefox-esr/Makefile Fri Mar 9 19:32:18 2018 (r463994) +++ branches/2018Q1/www/firefox-esr/Makefile Fri Mar 9 19:32:59 2018 (r463995) @@ -2,13 +2,12 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 52.6.0 +DISTVERSION= 52.7.0 DISTVERSIONSUFFIX=esr -PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build2/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build1/source PKGNAMESUFFIX= -esr DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} Modified: branches/2018Q1/www/firefox-esr/distinfo ============================================================================== --- branches/2018Q1/www/firefox-esr/distinfo Fri Mar 9 19:32:18 2018 (r463994) +++ branches/2018Q1/www/firefox-esr/distinfo Fri Mar 9 19:32:59 2018 (r463995) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516314845 -SHA256 (firefox-52.6.0esr.source.tar.xz) = 587cd94a315f5a94bf5c1f85e4a0ea92c9103503b51d649a3c4a4a122d691e42 -SIZE (firefox-52.6.0esr.source.tar.xz) = 211735240 +TIMESTAMP = 1520470534 +SHA256 (firefox-52.7.0esr.source.tar.xz) = 293c8394ed7dab1ea833c50a7b19a2fa3432e7c2f9edd891403bca12fc0fed33 +SIZE (firefox-52.7.0esr.source.tar.xz) = 214056296 From owner-svn-ports-branches@freebsd.org Fri Mar 9 20:15:44 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6297F48751; Fri, 9 Mar 2018 20:15:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6368D6A6A0; Fri, 9 Mar 2018 20:15:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5DD2C23C15; Fri, 9 Mar 2018 20:15:44 +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 w29KFia0090112; Fri, 9 Mar 2018 20:15:44 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29KFiqF090110; Fri, 9 Mar 2018 20:15:44 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803092015.w29KFiqF090110@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Mar 2018 20:15:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464003 - branches/2018Q1/emulators/rpcs3 X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q1/emulators/rpcs3 X-SVN-Commit-Revision: 464003 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 20:15:45 -0000 Author: jbeich Date: Fri Mar 9 20:15:43 2018 New Revision: 464003 URL: https://svnweb.freebsd.org/changeset/ports/464003 Log: MFH: r464000 emulators/rpcs3: update to 0.0.5.40 Changes: https://github.com/RPCS3/rpcs3/compare/7233640cf...7bbadfd08 Approved by: ports-secteam (junovitch, implicit for snapshots) Modified: branches/2018Q1/emulators/rpcs3/Makefile branches/2018Q1/emulators/rpcs3/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/emulators/rpcs3/Makefile ============================================================================== --- branches/2018Q1/emulators/rpcs3/Makefile Fri Mar 9 20:14:08 2018 (r464002) +++ branches/2018Q1/emulators/rpcs3/Makefile Fri Mar 9 20:15:43 2018 (r464003) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-38 -DISTVERSIONSUFFIX= -g7233640cf +DISTVERSION= 0.0.5-40 +DISTVERSIONSUFFIX= -g7bbadfd08 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: branches/2018Q1/emulators/rpcs3/distinfo ============================================================================== --- branches/2018Q1/emulators/rpcs3/distinfo Fri Mar 9 20:14:08 2018 (r464002) +++ branches/2018Q1/emulators/rpcs3/distinfo Fri Mar 9 20:15:43 2018 (r464003) @@ -1,6 +1,6 @@ -TIMESTAMP = 1520431040 -SHA256 (RPCS3-rpcs3-v0.0.5-38-g7233640cf_GH0.tar.gz) = 56cc854fa3bd19189e7ccae88461dc7325c0bf99e7811f666249bd7647439fbc -SIZE (RPCS3-rpcs3-v0.0.5-38-g7233640cf_GH0.tar.gz) = 4305218 +TIMESTAMP = 1520613059 +SHA256 (RPCS3-rpcs3-v0.0.5-40-g7bbadfd08_GH0.tar.gz) = 52baba63ba0dcf49eb942f2b68a986ad8557e0f1edabdf9a8ce9675dbb7773b1 +SIZE (RPCS3-rpcs3-v0.0.5-40-g7bbadfd08_GH0.tar.gz) = 4305270 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = e50e4f4e9035e891e16867e995f44aac87ce734a9dde169f02fc9719b2ce3642 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = 105623 SHA256 (RPCS3-yaml-cpp-release-0.5.3-62-g017626a_GH0.tar.gz) = 1d4b32443f137c23b68d3cb183ba6fb48eb76be2b0b30016970adff5c770d841 From owner-svn-ports-branches@freebsd.org Fri Mar 9 20:16:43 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 783DAF48870; Fri, 9 Mar 2018 20:16:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 263156A7C0; Fri, 9 Mar 2018 20:16:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2114723C16; Fri, 9 Mar 2018 20:16:43 +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 w29KGhfV090277; Fri, 9 Mar 2018 20:16:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29KGgJn090275; Fri, 9 Mar 2018 20:16:42 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803092016.w29KGgJn090275@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 9 Mar 2018 20:16:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464004 - branches/2018Q1/emulators/citra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q1/emulators/citra X-SVN-Commit-Revision: 464004 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 20:16:43 -0000 Author: jbeich Date: Fri Mar 9 20:16:42 2018 New Revision: 464004 URL: https://svnweb.freebsd.org/changeset/ports/464004 Log: MFH: r464001 emulators/citra: update to s20180309 Changes: https://github.com/citra-emu/citra/compare/3cda637c...33a0e87a Approved by: ports-secteam (swills, implicit for snapshots) Modified: branches/2018Q1/emulators/citra/Makefile branches/2018Q1/emulators/citra/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/emulators/citra/Makefile ============================================================================== --- branches/2018Q1/emulators/citra/Makefile Fri Mar 9 20:15:43 2018 (r464003) +++ branches/2018Q1/emulators/citra/Makefile Fri Mar 9 20:16:42 2018 (r464004) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20180307 +PORTVERSION= s20180309 PORTREVISION?= 0 CATEGORIES= emulators @@ -25,7 +25,7 @@ ONLY_FOR_ARCHS_REASON= https://github.com/MerryMage/dy USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= 3cda637c +GH_TAGNAME= 33a0e87a GH_TUPLE= citra-emu:ext-soundtouch:019d208:soundtouch/externals/soundtouch \ MerryMage:dynarmic:d1d4705:dynarmic/externals/dynarmic \ benhoyt:inih:r40:inih/externals/inih/inih \ Modified: branches/2018Q1/emulators/citra/distinfo ============================================================================== --- branches/2018Q1/emulators/citra/distinfo Fri Mar 9 20:15:43 2018 (r464003) +++ branches/2018Q1/emulators/citra/distinfo Fri Mar 9 20:16:42 2018 (r464004) @@ -1,6 +1,6 @@ -TIMESTAMP = 1520463818 -SHA256 (citra-emu-citra-s20180307-3cda637c_GH0.tar.gz) = d2e2b743ee656a04a4f5a398cf84098b124cdd336f5a8f84f7e3784b1a078517 -SIZE (citra-emu-citra-s20180307-3cda637c_GH0.tar.gz) = 1686137 +TIMESTAMP = 1520614872 +SHA256 (citra-emu-citra-s20180309-33a0e87a_GH0.tar.gz) = 70bdff7a353a77a43499c8ad06e589b2c0410b43a3f878f24f38da57933c3d9e +SIZE (citra-emu-citra-s20180309-33a0e87a_GH0.tar.gz) = 1687270 SHA256 (citra-emu-ext-soundtouch-019d208_GH0.tar.gz) = f48c211bbabe7ad79e1c504af1082756c74241be6bab4aca13140803f4b694e7 SIZE (citra-emu-ext-soundtouch-019d208_GH0.tar.gz) = 59366 SHA256 (MerryMage-dynarmic-d1d4705_GH0.tar.gz) = cf120bc77912cf58e0965db2abcb2067c36aca612c42459e0eb72b740ea6cb0e From owner-svn-ports-branches@freebsd.org Fri Mar 9 22:20:50 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2AB05F2B126; Fri, 9 Mar 2018 22:20:50 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CCB3670A3F; Fri, 9 Mar 2018 22:20:49 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C7AF224EE1; Fri, 9 Mar 2018 22:20:49 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w29MKn5n053590; Fri, 9 Mar 2018 22:20:49 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29MKnA5053588; Fri, 9 Mar 2018 22:20:49 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201803092220.w29MKnA5053588@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Fri, 9 Mar 2018 22:20:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464035 - branches/2018Q1/irc/znc X-SVN-Group: ports-branches X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: branches/2018Q1/irc/znc X-SVN-Commit-Revision: 464035 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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, 09 Mar 2018 22:20:50 -0000 Author: bdrewery Date: Fri Mar 9 22:20:49 2018 New Revision: 464035 URL: https://svnweb.freebsd.org/changeset/ports/464035 Log: MFH: r463857 Update to 1.6.6. Changes: https://wiki.znc.in/ChangeLog/1.6.6 Approved by: dbaio (maintainer) Differential Revision: https://reviews.freebsd.org/D14615 Approved by: portmgr (implicit) Modified: branches/2018Q1/irc/znc/Makefile branches/2018Q1/irc/znc/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/irc/znc/Makefile ============================================================================== --- branches/2018Q1/irc/znc/Makefile Fri Mar 9 22:15:52 2018 (r464034) +++ branches/2018Q1/irc/znc/Makefile Fri Mar 9 22:20:49 2018 (r464035) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= znc -PORTVERSION= 1.6.5 -PORTREVISION= 4 +PORTVERSION= 1.6.6 CATEGORIES= irc ipv6 MASTER_SITES= http://znc.in/releases/ \ http://znc.in/releases/archive/ Modified: branches/2018Q1/irc/znc/distinfo ============================================================================== --- branches/2018Q1/irc/znc/distinfo Fri Mar 9 22:15:52 2018 (r464034) +++ branches/2018Q1/irc/znc/distinfo Fri Mar 9 22:20:49 2018 (r464035) @@ -1,3 +1,3 @@ -TIMESTAMP = 1489448484 -SHA256 (znc-1.6.5.tar.gz) = 2f0225d49c53a01f8d94feea4619a6fe92857792bb3401a4eb1edd65f0342aca -SIZE (znc-1.6.5.tar.gz) = 1470681 +TIMESTAMP = 1520470828 +SHA256 (znc-1.6.6.tar.gz) = 7fb841bc71dc1749b1dc081e9eaf22ceb56ebb03c6b1d8804a4f9eb8bbd59525 +SIZE (znc-1.6.6.tar.gz) = 1471612 From owner-svn-ports-branches@freebsd.org Sat Mar 10 07:03:22 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 949E0F2A545; Sat, 10 Mar 2018 07:03:22 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47CC4870A5; Sat, 10 Mar 2018 07:03:22 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4287026BC; Sat, 10 Mar 2018 07:03:22 +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 w2A73MNs019790; Sat, 10 Mar 2018 07:03:22 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2A73MBi019789; Sat, 10 Mar 2018 07:03:22 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201803100703.w2A73MBi019789@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 10 Mar 2018 07:03:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464045 - branches/2018Q1/devel/ispc X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2018Q1/devel/ispc X-SVN-Commit-Revision: 464045 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2018 07:03:22 -0000 Author: antoine Date: Sat Mar 10 07:03:21 2018 New Revision: 464045 URL: https://svnweb.freebsd.org/changeset/ports/464045 Log: MFH: r460800 BUILD_DEPENDS against `devel/llvm' was not sufficient, since ISPC binary is actually linked to libLLVM.so. Make it LIB_DEPENDS and thus try to unbreak `graphics/embree'. Reported by: pkg-fallout Modified: branches/2018Q1/devel/ispc/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/devel/ispc/Makefile ============================================================================== --- branches/2018Q1/devel/ispc/Makefile Sat Mar 10 06:46:00 2018 (r464044) +++ branches/2018Q1/devel/ispc/Makefile Sat Mar 10 07:03:21 2018 (r464045) @@ -4,7 +4,7 @@ PORTNAME= ispc DISTVERSIONPREFIX= v DISTVERSION= 1.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt ONLY_FOR_ARCHS= amd64 i386 ONLY_FOR_ARCHS_REASON= only available for x86 architectures -BUILD_DEPENDS= clang${CLANG_VERSION}:devel/llvm${CLANG_VERSION} +LIB_DEPENDS= libLLVM.so:devel/llvm${CLANG_VERSION} USES= bison gmake python:build shebangfix USE_GITHUB= yes From owner-svn-ports-branches@freebsd.org Sat Mar 10 13:48:18 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBD4FF38D9C; Sat, 10 Mar 2018 13:48:17 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 97FD4740E0; Sat, 10 Mar 2018 13:48:16 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3D7C86B1C; Sat, 10 Mar 2018 13:48:15 +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 w2ADmFPI021133; Sat, 10 Mar 2018 13:48:15 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2ADmE7s021129; Sat, 10 Mar 2018 13:48:14 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201803101348.w2ADmE7s021129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 10 Mar 2018 13:48:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464074 - in branches/2018Q1/security/tor: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in branches/2018Q1/security/tor: . files X-SVN-Commit-Revision: 464074 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2018 13:48:18 -0000 Author: feld Date: Sat Mar 10 13:48:14 2018 New Revision: 464074 URL: https://svnweb.freebsd.org/changeset/ports/464074 Log: MFH: r458993 r463489 security/tor: Update to 0.3.2.9 This release contains many new features and many bugfixes. Plesee see the complete list here: https://blog.torproject.org/tor-0329-released-we-have-new-stable-series Additionally, this update adds "#include " to qualm the compiler warning that was caused by the previous fix. Now security/tor and security/tor-devel are identical. security/tor: Update to 0.3.2.10 Backport of countermeasures to mitigate denial-of-service attacks against the Tor network. Changelog is in: https://gitweb.torproject.org/tor.git/tree/ChangeLog None of these fixes appear to be essential for clients, but relays should upgrade. Port changes: * Changed the implementation of 'tor_setuid': now it is done through the command line argument, instead of the torrc file. Modified: branches/2018Q1/security/tor/Makefile branches/2018Q1/security/tor/distinfo branches/2018Q1/security/tor/files/patch-orconfig.h.in branches/2018Q1/security/tor/files/tor.in Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/security/tor/Makefile ============================================================================== --- branches/2018Q1/security/tor/Makefile Sat Mar 10 13:12:26 2018 (r464073) +++ branches/2018Q1/security/tor/Makefile Sat Mar 10 13:48:14 2018 (r464074) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tor -PORTVERSION= 0.3.1.9 -PORTREVISION= 1 +DISTVERSION= 0.3.2.10 CATEGORIES= security net ipv6 MASTER_SITES= TOR Modified: branches/2018Q1/security/tor/distinfo ============================================================================== --- branches/2018Q1/security/tor/distinfo Sat Mar 10 13:12:26 2018 (r464073) +++ branches/2018Q1/security/tor/distinfo Sat Mar 10 13:48:14 2018 (r464074) @@ -1,3 +1,3 @@ -TIMESTAMP = 1512146746 -SHA256 (tor-0.3.1.9.tar.gz) = 6e1b04f7890e782fd56014a0de5075e4ab29b52a35d8bca1f6b80c93f58f3d26 -SIZE (tor-0.3.1.9.tar.gz) = 6092702 +TIMESTAMP = 1520087667 +SHA256 (tor-0.3.2.10.tar.gz) = 60df77c31dcf94fdd686c8ca8c34f3b70243b33a7344ecc0b719d5ca2617cbee +SIZE (tor-0.3.2.10.tar.gz) = 6421984 Modified: branches/2018Q1/security/tor/files/patch-orconfig.h.in ============================================================================== --- branches/2018Q1/security/tor/files/patch-orconfig.h.in Sat Mar 10 13:12:26 2018 (r464073) +++ branches/2018Q1/security/tor/files/patch-orconfig.h.in Sat Mar 10 13:48:14 2018 (r464074) @@ -1,9 +1,10 @@ --- orconfig.h.in.orig 2017-11-30 20:34:49 UTC +++ orconfig.h.in -@@ -517,7 +517,9 @@ +@@ -517,7 +517,10 @@ #undef HAVE_TIME_H /* Define to 1 if you have the `timingsafe_memcmp' function. */ ++#include +#if __FreeBSD_version >= 1200000 // disabled: timingsafe_memcmp(3) has been added only in 12.0, and isn't yet available on older systems #undef HAVE_TIMINGSAFE_MEMCMP +#endif Modified: branches/2018Q1/security/tor/files/tor.in ============================================================================== --- branches/2018Q1/security/tor/files/tor.in Sat Mar 10 13:12:26 2018 (r464073) +++ branches/2018Q1/security/tor/files/tor.in Sat Mar 10 13:48:14 2018 (r464074) @@ -114,16 +114,15 @@ command="%%PREFIX%%/bin/${name}" command_args="-f ${tor_conf} --PidFile ${tor_pidfile} --RunAsDaemon 1 --DataDirectory ${tor_datadir}" extra_commands="reload" +# clear user setting in conf file: it should be done through the command line +if grep -q "^User ${tor_user}$" ${tor_conf}; then + sed -i '' -e "s/^User ${tor_user}$//" ${tor_conf} +fi + if [ $tor_setuid = "YES" ]; then - if ! grep -q "^User ${tor_user}$" ${tor_conf}; then - echo "User ${tor_user}" >> ${tor_conf} - fi + command_args="${command_args} --User ${tor_user}" tor_user="root" tor_group="wheel" -else - if grep -q "^User ${tor_user}$" ${tor_conf}; then - sed -i '' -e "s/^User ${tor_user}$//" ${tor_conf} - fi fi if ! run_rc_command "$1"; then From owner-svn-ports-branches@freebsd.org Sat Mar 10 14:57:09 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9960F3F19F; Sat, 10 Mar 2018 14:57:09 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7AA8F76E3D; Sat, 10 Mar 2018 14:57:09 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 57F457634; Sat, 10 Mar 2018 14:57:09 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2AEv9C6056028; Sat, 10 Mar 2018 14:57:09 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2AEv97M056026; Sat, 10 Mar 2018 14:57:09 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201803101457.w2AEv97M056026@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 10 Mar 2018 14:57:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464077 - in branches/2018Q1/mail/cclient: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in branches/2018Q1/mail/cclient: . files X-SVN-Commit-Revision: 464077 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2018 14:57:10 -0000 Author: riggs Date: Sat Mar 10 14:57:08 2018 New Revision: 464077 URL: https://svnweb.freebsd.org/changeset/ports/464077 Log: MFH: r464076 Un-break with SSL OPTION (default) PR: 225885 Submitted by: brnrd Approved by: ports-secteam (riggs) Added: branches/2018Q1/mail/cclient/files/patch-src_osdep_unix_ssl__unix.c - copied unchanged from r464076, head/mail/cclient/files/patch-src_osdep_unix_ssl__unix.c Modified: branches/2018Q1/mail/cclient/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/mail/cclient/Makefile ============================================================================== --- branches/2018Q1/mail/cclient/Makefile Sat Mar 10 14:44:27 2018 (r464076) +++ branches/2018Q1/mail/cclient/Makefile Sat Mar 10 14:57:08 2018 (r464077) @@ -3,7 +3,7 @@ PORTNAME= cclient PORTVERSION= 2007f -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= mail devel ipv6 MASTER_SITES= ftp://ftp.cac.washington.edu/imap/%SUBDIR%/ \ @@ -25,8 +25,6 @@ OPTIONS_DEFINE= SSL SSL_AND_PLAINTEXT IPV6 MBX_DEFAULT OPTIONS_DEFAULT= SSL SSL_AND_PLAINTEXT_DESC= Allow plain text passwords and SSL MBX_DEFAULT_DESC= Use MBX as default mailbox format - -BROKEN_SSL= openssl-devel ALL_TARGET= bsf MAKE_JOBS_UNSAFE= yes Copied: branches/2018Q1/mail/cclient/files/patch-src_osdep_unix_ssl__unix.c (from r464076, head/mail/cclient/files/patch-src_osdep_unix_ssl__unix.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/mail/cclient/files/patch-src_osdep_unix_ssl__unix.c Sat Mar 10 14:57:08 2018 (r464077, copy of r464076, head/mail/cclient/files/patch-src_osdep_unix_ssl__unix.c) @@ -0,0 +1,26 @@ +--- src/osdep/unix/ssl_unix.c.orig 2011-07-23 00:20:10 UTC ++++ src/osdep/unix/ssl_unix.c +@@ -270,9 +270,9 @@ static char *ssl_start_work (SSLSTREAM * + (err = ssl_validate_cert (cert = SSL_get_peer_certificate (stream->con), + host))) { + /* application callback */ +- if (scq) return (*scq) (err,host,cert ? cert->name : "???") ? NIL : ""; ++ if (scq) return (*scq) (err,host,cert ? X509_get_subject_name(cert) : "???") ? NIL : ""; + /* error message to return via mm_log() */ +- sprintf (tmp,"*%.128s: %.255s",err,cert ? cert->name : "???"); ++ sprintf (tmp,"*%.128s: %.255s",err,cert ? X509_get_subject_name(cert) : "???"); + return ssl_last_error = cpystr (tmp); + } + return NIL; +@@ -322,9 +322,9 @@ static char *ssl_validate_cert (X509 *ce + /* make sure have a certificate */ + if (!cert) ret = "No certificate from server"; + /* and that it has a name */ +- else if (!cert->name) ret = "No name in certificate"; ++ else if (!X509_get_subject_name(cert)) ret = "No name in certificate"; + /* locate CN */ +- else if (s = strstr (cert->name,"/CN=")) { ++ else if (s = strstr (X509_get_subject_name(cert),"/CN=")) { + if (t = strchr (s += 4,'/')) *t = '\0'; + /* host name matches pattern? */ + ret = ssl_compare_hostnames (host,s) ? NIL : From owner-svn-ports-branches@freebsd.org Sat Mar 10 17:42:41 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C82DDF4B6BF; Sat, 10 Mar 2018 17:42:41 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 766A07CC1B; Sat, 10 Mar 2018 17:42:41 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 716CF11140; Sat, 10 Mar 2018 17: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 w2AHgfIk040271; Sat, 10 Mar 2018 17:42:41 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2AHgfUc040269; Sat, 10 Mar 2018 17:42:41 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803101742.w2AHgfUc040269@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 10 Mar 2018 17:42:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464081 - branches/2018Q1/games/openra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q1/games/openra X-SVN-Commit-Revision: 464081 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2018 17:42:42 -0000 Author: jbeich Date: Sat Mar 10 17:42:41 2018 New Revision: 464081 URL: https://svnweb.freebsd.org/changeset/ports/464081 Log: MFH: r463847 games/openra: update to 20180307 Changes: https://github.com/OpenRA/OpenRA/wiki/Changelog#release-20180218 Approved by: ports-secteam (riggs) Modified: branches/2018Q1/games/openra/Makefile branches/2018Q1/games/openra/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/games/openra/Makefile ============================================================================== --- branches/2018Q1/games/openra/Makefile Sat Mar 10 17:29:30 2018 (r464080) +++ branches/2018Q1/games/openra/Makefile Sat Mar 10 17:42:41 2018 (r464081) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= openra -PORTVERSION= 20180218 +PORTVERSION= 20180307 DISTVERSIONPREFIX= release- CATEGORIES= games MASTER_SITES= https://github.com/${GH_ACCOUNT}/SDL2-CS/releases/download/20161223/:SDL2_CS \ Modified: branches/2018Q1/games/openra/distinfo ============================================================================== --- branches/2018Q1/games/openra/distinfo Sat Mar 10 17:29:30 2018 (r464080) +++ branches/2018Q1/games/openra/distinfo Sat Mar 10 17:42:41 2018 (r464081) @@ -1,4 +1,4 @@ -TIMESTAMP = 1518967773 +TIMESTAMP = 1520458210 SHA256 (SDL2-CS.dll) = b06c14a771d14cb37210f476dfd973d4e7d80d97f90566bd5bc78996ade4f7a0 SIZE (SDL2-CS.dll) = 80896 SHA256 (SDL2-CS.dll.config) = eff0594f7e86d40a94c1b28f8db87478f3de1cf0857f3d46e384bcc6744ce094 @@ -31,5 +31,5 @@ SHA256 (stylecopplus.msbuild.4.7.49.5.nupkg) = b98a8ed SIZE (stylecopplus.msbuild.4.7.49.5.nupkg) = 124724 SHA256 (rix0rrr.beaconlib.1.0.1.nupkg) = e8e126b98ae7676cb0434455aa8a41c17a927c1b40c4cf368f9527af6bc251f2 SIZE (rix0rrr.beaconlib.1.0.1.nupkg) = 8421 -SHA256 (openra-OpenRA-release-20180218_GH0.tar.gz) = 8f8979f2124accea85e80e00e95573e82a46f0aa11f31d3167bf5f99a8df6ebc -SIZE (openra-OpenRA-release-20180218_GH0.tar.gz) = 23225441 +SHA256 (openra-OpenRA-release-20180307_GH0.tar.gz) = b775fd4845df3fdbf89c136c7267bacc57e213eedbecc31c599a8b80c3e26544 +SIZE (openra-OpenRA-release-20180307_GH0.tar.gz) = 23223873 From owner-svn-ports-branches@freebsd.org Sat Mar 10 17:45:50 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B642F4B907; Sat, 10 Mar 2018 17:45:50 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C64D7CE39; Sat, 10 Mar 2018 17:45:50 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 46F4A11144; Sat, 10 Mar 2018 17:45:50 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2AHjokC060578; Sat, 10 Mar 2018 17:45:50 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2AHjoTS060574; Sat, 10 Mar 2018 17:45:50 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803101745.w2AHjoTS060574@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 10 Mar 2018 17:45:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464083 - branches/2018Q1/games/openra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q1/games/openra X-SVN-Commit-Revision: 464083 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2018 17:45:50 -0000 Author: jbeich Date: Sat Mar 10 17:45:49 2018 New Revision: 464083 URL: https://svnweb.freebsd.org/changeset/ports/464083 Log: MFH: r464082 games/openra: update GeoLite2 to March snapshot fetch: https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz: size mismatch: expected 1687146, actual 1702260 Approved by: ports-secteam blanket Modified: branches/2018Q1/games/openra/Makefile branches/2018Q1/games/openra/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/games/openra/Makefile ============================================================================== --- branches/2018Q1/games/openra/Makefile Sat Mar 10 17:44:59 2018 (r464082) +++ branches/2018Q1/games/openra/Makefile Sat Mar 10 17:45:49 2018 (r464083) @@ -3,6 +3,7 @@ PORTNAME= openra PORTVERSION= 20180307 DISTVERSIONPREFIX= release- +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= https://github.com/${GH_ACCOUNT}/SDL2-CS/releases/download/20161223/:SDL2_CS \ https://github.com/${GH_ACCOUNT}/OpenAL-CS/releases/download/20151227/:OpenAL_CS \ Modified: branches/2018Q1/games/openra/distinfo ============================================================================== --- branches/2018Q1/games/openra/distinfo Sat Mar 10 17:44:59 2018 (r464082) +++ branches/2018Q1/games/openra/distinfo Sat Mar 10 17:45:49 2018 (r464083) @@ -9,8 +9,8 @@ SHA256 (OpenAL-CS.dll.config) = 58eaf46a749e466fce0a0e SIZE (OpenAL-CS.dll.config) = 301 SHA256 (Eluant.dll) = 218c4ea5424b44d746b5343563123beebc652fd9731967dfd49fed071b58df31 SIZE (Eluant.dll) = 71168 -SHA256 (GeoLite2-Country.mmdb.gz) = f5bbf524e2811336dc37812342b6bbe5f2b8a1e0879a578935713e1a8c91c77e -SIZE (GeoLite2-Country.mmdb.gz) = 1687146 +SHA256 (GeoLite2-Country.mmdb.gz) = 2639bf77abfb338ede92713bd274f8fe1e98b0bb3f00763ba9ab0f1c1d35a377 +SIZE (GeoLite2-Country.mmdb.gz) = 1702260 SHA256 (fuzzylogiclibrary.1.2.0.nupkg) = b464509236260f53d963771ed99410a7e1cdbd268a2bde43b189e7d15044a174 SIZE (fuzzylogiclibrary.1.2.0.nupkg) = 70571 SHA256 (maxmind.db.2.0.0.nupkg) = 095d62c6ecda38c1e8fe79935b4eaf228d2637f9498caec48b8b48a0aba6d5aa