From owner-svn-ports-branches@freebsd.org Sun Mar 11 08:49:07 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 90B25F3A9BA; Sun, 11 Mar 2018 08:49:07 +0000 (UTC) (envelope-from yuri@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 4506480C71; Sun, 11 Mar 2018 08:49:07 +0000 (UTC) (envelope-from yuri@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 3FFF71B07F; Sun, 11 Mar 2018 08:49:07 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2B8n7iO018206; Sun, 11 Mar 2018 08:49:07 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2B8n78F018204; Sun, 11 Mar 2018 08:49:07 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803110849.w2B8n78F018204@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 11 Mar 2018 08:49:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464151 - in branches/2018Q1/security/strongswan: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in branches/2018Q1/security/strongswan: . files X-SVN-Commit-Revision: 464151 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, 11 Mar 2018 08:49:07 -0000 Author: yuri Date: Sun Mar 11 08:49:06 2018 New Revision: 464151 URL: https://svnweb.freebsd.org/changeset/ports/464151 Log: MFH: r463768 security/strongswan: Fix crash in public key authentication with 5.6.2 While here, added LICENSE_FILE. PR: 226404 Submitted by: strongswan@Nanoteq.com (maintainer) Approved by: tcberner (mentor, implicit) Approved by: ports-secteam (lists@eitanadler.com) Added: branches/2018Q1/security/strongswan/files/patch-src_libcharon_sa_ikev2_authenticators_pubkey_authenticator.c - copied unchanged from r463768, head/security/strongswan/files/patch-src_libcharon_sa_ikev2_authenticators_pubkey_authenticator.c Modified: branches/2018Q1/security/strongswan/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/security/strongswan/Makefile ============================================================================== --- branches/2018Q1/security/strongswan/Makefile Sun Mar 11 08:46:12 2018 (r464150) +++ branches/2018Q1/security/strongswan/Makefile Sun Mar 11 08:49:06 2018 (r464151) @@ -3,6 +3,7 @@ PORTNAME= strongswan PORTVERSION= 5.6.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://download.strongswan.org/ \ http://download2.strongswan.org/ @@ -11,6 +12,7 @@ MAINTAINER= strongswan@nanoteq.com COMMENT= Open Source IKEv2 IPsec-based VPN solution LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE USES= cpe libtool:keepla pkgconfig tar:bzip2 ssl USE_RC_SUBR= strongswan Copied: branches/2018Q1/security/strongswan/files/patch-src_libcharon_sa_ikev2_authenticators_pubkey_authenticator.c (from r463768, head/security/strongswan/files/patch-src_libcharon_sa_ikev2_authenticators_pubkey_authenticator.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/security/strongswan/files/patch-src_libcharon_sa_ikev2_authenticators_pubkey_authenticator.c Sun Mar 11 08:49:06 2018 (r464151, copy of r463768, head/security/strongswan/files/patch-src_libcharon_sa_ikev2_authenticators_pubkey_authenticator.c) @@ -0,0 +1,22 @@ +--- src/libcharon/sa/ikev2/authenticators/pubkey_authenticator.c.orig ++++ src/libcharon/sa/ikev2/authenticators/pubkey_authenticator.c +@@ -164,7 +164,7 @@ static array_t *select_signature_schemes(keymat_v2_t *keymat, + signature_scheme_t schemes[] = { + SIGN_RSA_EMSA_PKCS1_SHA2_384, + SIGN_RSA_EMSA_PKCS1_SHA2_256, +- }, contained; ++ }; + bool found; + int i, j; + +@@ -174,8 +174,8 @@ static array_t *select_signature_schemes(keymat_v2_t *keymat, + found = FALSE; + for (j = 0; j < array_count(selected); j++) + { +- array_get(selected, j, &contained); +- if (scheme == contained) ++ array_get(selected, j, &config); ++ if (scheme == config->scheme) + { + found = TRUE; + break; From owner-svn-ports-branches@freebsd.org Sun Mar 11 18:00:45 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 DE9B9F41E88; Sun, 11 Mar 2018 18:00:44 +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 8B8AE76993; Sun, 11 Mar 2018 18:00:44 +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 8671D208C1; Sun, 11 Mar 2018 18:00:44 +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 w2BI0ipK098515; Sun, 11 Mar 2018 18:00:44 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2BI0hkj097983; Sun, 11 Mar 2018 18:00:43 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201803111800.w2BI0hkj097983@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 11 Mar 2018 18:00:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464191 - in branches/2018Q1/net-mgmt: netmagis-common netmagis-database netmagis-detecteq netmagis-metro netmagis-servers netmagis-topo netmagis-utils netmagis-www X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in branches/2018Q1/net-mgmt: netmagis-common netmagis-database netmagis-detecteq netmagis-metro netmagis-servers netmagis-topo netmagis-utils netmagis-www X-SVN-Commit-Revision: 464191 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, 11 Mar 2018 18:00:45 -0000 Author: riggs Date: Sun Mar 11 18:00:43 2018 New Revision: 464191 URL: https://svnweb.freebsd.org/changeset/ports/464191 Log: MFH: r464190 Update to upstream version 2.3.4 Details: - Fix issue where LDAP login with empty passwort was possible, see https://github.com/pdav/netmagis/issues/173 - Fix LICENSE* - Pet portlint PR: 226437 Submitted by: dgeo@centrale-marseille.fr Approved by: pdagog@gmail.com (maintainer) Approved by: ports-secteam (riggs) Modified: branches/2018Q1/net-mgmt/netmagis-common/Makefile branches/2018Q1/net-mgmt/netmagis-common/distinfo branches/2018Q1/net-mgmt/netmagis-database/Makefile branches/2018Q1/net-mgmt/netmagis-detecteq/Makefile branches/2018Q1/net-mgmt/netmagis-metro/Makefile branches/2018Q1/net-mgmt/netmagis-servers/Makefile branches/2018Q1/net-mgmt/netmagis-topo/Makefile branches/2018Q1/net-mgmt/netmagis-utils/Makefile branches/2018Q1/net-mgmt/netmagis-www/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/net-mgmt/netmagis-common/Makefile ============================================================================== --- branches/2018Q1/net-mgmt/netmagis-common/Makefile Sun Mar 11 17:53:51 2018 (r464190) +++ branches/2018Q1/net-mgmt/netmagis-common/Makefile Sun Mar 11 18:00:43 2018 (r464191) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= netmagis -PORTVERSION?= 2.3.3 +PORTVERSION?= 2.3.4 CATEGORIES?= net-mgmt MASTER_SITES= http://netmagis.org/files/ PKGNAMESUFFIX?= -common Modified: branches/2018Q1/net-mgmt/netmagis-common/distinfo ============================================================================== --- branches/2018Q1/net-mgmt/netmagis-common/distinfo Sun Mar 11 17:53:51 2018 (r464190) +++ branches/2018Q1/net-mgmt/netmagis-common/distinfo Sun Mar 11 18:00:43 2018 (r464191) @@ -1,3 +1,3 @@ -TIMESTAMP = 1480241381 -SHA256 (netmagis-2.3.3.tar.gz) = 22e2a4d4a7aa2c2bd4e22230a3d0ab29df439bcf65e70e4e4337b00b2dccc8a5 -SIZE (netmagis-2.3.3.tar.gz) = 671186 +TIMESTAMP = 1520103662 +SHA256 (netmagis-2.3.4.tar.gz) = 041c8de59e8dfa03f2fb02da2dea2e72aa19972a638d0226c36c45312ad132da +SIZE (netmagis-2.3.4.tar.gz) = 670861 Modified: branches/2018Q1/net-mgmt/netmagis-database/Makefile ============================================================================== --- branches/2018Q1/net-mgmt/netmagis-database/Makefile Sun Mar 11 17:53:51 2018 (r464190) +++ branches/2018Q1/net-mgmt/netmagis-database/Makefile Sun Mar 11 18:00:43 2018 (r464191) @@ -6,6 +6,8 @@ PKGNAMESUFFIX= -database COMMENT= Utilities for the netmagis database server +LICENSE= CECILL-B + RUN_DEPENDS= netmagis-config:net-mgmt/netmagis-common \ pwgen:sysutils/pwgen \ tcltls>=1.4.1:devel/tcltls \ Modified: branches/2018Q1/net-mgmt/netmagis-detecteq/Makefile ============================================================================== --- branches/2018Q1/net-mgmt/netmagis-detecteq/Makefile Sun Mar 11 17:53:51 2018 (r464190) +++ branches/2018Q1/net-mgmt/netmagis-detecteq/Makefile Sun Mar 11 18:00:43 2018 (r464191) @@ -6,6 +6,8 @@ PKGNAMESUFFIX= -detecteq COMMENT= Files for detection of equipment modifications +LICENSE= CECILL-B + RUN_DEPENDS= netmagis-config:net-mgmt/netmagis-common MASTERDIR= ${.CURDIR}/../netmagis-common Modified: branches/2018Q1/net-mgmt/netmagis-metro/Makefile ============================================================================== --- branches/2018Q1/net-mgmt/netmagis-metro/Makefile Sun Mar 11 17:53:51 2018 (r464190) +++ branches/2018Q1/net-mgmt/netmagis-metro/Makefile Sun Mar 11 18:00:43 2018 (r464191) @@ -6,6 +6,8 @@ PKGNAMESUFFIX= -metro COMMENT= Netmagis metrology module +LICENSE= CECILL-B + RUN_DEPENDS+= netmagis-config:net-mgmt/netmagis-common \ p5-DBD-Pg>0:databases/p5-DBD-Pg \ p5-Net-SNMP>=0:net-mgmt/p5-Net-SNMP \ Modified: branches/2018Q1/net-mgmt/netmagis-servers/Makefile ============================================================================== --- branches/2018Q1/net-mgmt/netmagis-servers/Makefile Sun Mar 11 17:53:51 2018 (r464190) +++ branches/2018Q1/net-mgmt/netmagis-servers/Makefile Sun Mar 11 18:00:43 2018 (r464191) @@ -6,6 +6,8 @@ PKGNAMESUFFIX= -servers COMMENT= Netmagis module for dhcp, bind and mail servers +LICENSE= CECILL-B + RUN_DEPENDS= netmagis-config:net-mgmt/netmagis-common MASTERDIR= ${.CURDIR}/../netmagis-common Modified: branches/2018Q1/net-mgmt/netmagis-topo/Makefile ============================================================================== --- branches/2018Q1/net-mgmt/netmagis-topo/Makefile Sun Mar 11 17:53:51 2018 (r464190) +++ branches/2018Q1/net-mgmt/netmagis-topo/Makefile Sun Mar 11 18:00:43 2018 (r464191) @@ -6,6 +6,8 @@ PKGNAMESUFFIX= -topo COMMENT= Netmagis topology module +LICENSE= CECILL-B + RUN_DEPENDS= netmagis-config:net-mgmt/netmagis-common \ rancid-run:net-mgmt/rancid3 \ fping:net/fping Modified: branches/2018Q1/net-mgmt/netmagis-utils/Makefile ============================================================================== --- branches/2018Q1/net-mgmt/netmagis-utils/Makefile Sun Mar 11 17:53:51 2018 (r464190) +++ branches/2018Q1/net-mgmt/netmagis-utils/Makefile Sun Mar 11 18:00:43 2018 (r464191) @@ -6,6 +6,8 @@ PKGNAMESUFFIX= -utils COMMENT= Netmagis command-line utilities +LICENSE= CECILL-B + RUN_DEPENDS= netmagis-config:net-mgmt/netmagis-common MASTERDIR= ${.CURDIR}/../netmagis-common Modified: branches/2018Q1/net-mgmt/netmagis-www/Makefile ============================================================================== --- branches/2018Q1/net-mgmt/netmagis-www/Makefile Sun Mar 11 17:53:51 2018 (r464190) +++ branches/2018Q1/net-mgmt/netmagis-www/Makefile Sun Mar 11 18:00:43 2018 (r464191) @@ -6,6 +6,8 @@ PKGNAMESUFFIX= -www COMMENT= Netmagis web module +LICENSE= CECILL-B + RUN_DEPENDS= netmagis-config:net-mgmt/netmagis-common \ dot:graphics/graphviz \ pwgen:sysutils/pwgen \ From owner-svn-ports-branches@freebsd.org Mon Mar 12 18:29:59 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 59D77F33B3B; Mon, 12 Mar 2018 18:29:59 +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 E60B76A4FF; Mon, 12 Mar 2018 18:29:58 +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 BBE6974F6; Mon, 12 Mar 2018 18:29:58 +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 w2CITwJF036630; Mon, 12 Mar 2018 18:29:58 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2CITwD9036629; Mon, 12 Mar 2018 18:29:58 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201803121829.w2CITwD9036629@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 12 Mar 2018 18:29:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464269 - branches/2018Q1/Mk X-SVN-Group: ports-branches X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: branches/2018Q1/Mk X-SVN-Commit-Revision: 464269 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, 12 Mar 2018 18:29:59 -0000 Author: bdrewery Date: Mon Mar 12 18:29:58 2018 New Revision: 464269 URL: https://svnweb.freebsd.org/changeset/ports/464269 Log: MFH: r464267 FLAVORS: Fix several 'make *recursive' targets not passing along FLAVOR properly. PR: 225659 comment #15 Approved by: portmgr (implicit) Modified: branches/2018Q1/Mk/bsd.port.mk Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/Mk/bsd.port.mk ============================================================================== --- branches/2018Q1/Mk/bsd.port.mk Mon Mar 12 18:21:09 2018 (r464268) +++ branches/2018Q1/Mk/bsd.port.mk Mon Mar 12 18:29:58 2018 (r464269) @@ -4037,6 +4037,29 @@ DEV_WARNING+= "It looks like the ${d} depends line has all-depends-list: @${ALL-DEPENDS-LIST} +_FLAVOR_RECURSIVE_SH= \ + if [ -z "$${recursive_cmd}" ]; then \ + ${ECHO_MSG} "_FLAVOR_RECURSIVE_SH requires recursive_cmd to be set to the recursive make target to run." >&2; \ + ${FALSE}; \ + fi; \ + if [ "$${recursive_dirs-null}" = "null" ]; then \ + ${ECHO_MSG} "_FLAVOR_RECURSIVE_SH requires recursive_dirs to be set to the directories to recurse." >&2; \ + ${FALSE}; \ + fi; \ + for dir in $${recursive_dirs}; do \ + case $${dir} in \ + *@*) \ + flavor=$${dir\#*@}; \ + dir=$${dir%@*}; \ + ;; \ + esac; \ + case $$dir in \ + /*) ;; \ + *) dir=${PORTSDIR}/$$dir ;; \ + esac; \ + (cd $$dir; ${SETENV} FLAVOR=$${flavor} ${MAKE} $${recursive_cmd}); \ + done + # This script is shared among several dependency list variables. See file for # usage. DEPENDS-LIST= \ @@ -4049,6 +4072,7 @@ DEPENDS-LIST= \ ${SH} ${SCRIPTSDIR}/depends-list.sh ALL-DEPENDS-LIST= ${DEPENDS-LIST} -r ${_UNIFIED_DEPENDS:Q} +ALL-DEPENDS-FLAVORS-LIST= ${DEPENDS-LIST} -f -r ${_UNIFIED_DEPENDS:Q} MISSING-DEPENDS-LIST= ${DEPENDS-LIST} -m ${_UNIFIED_DEPENDS:Q} BUILD-DEPENDS-LIST= ${DEPENDS-LIST} "${PKG_DEPENDS} ${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS}" RUN-DEPENDS-LIST= ${DEPENDS-LIST} "${LIB_DEPENDS} ${RUN_DEPENDS}" @@ -4072,42 +4096,32 @@ limited-clean-depends: .if !target(deinstall-depends) deinstall-depends: - @for dir in $$(${ALL-DEPENDS-LIST}); do \ - (cd $$dir; ${MAKE} deinstall); \ - done + @recursive_cmd="deinstall"; \ + recursive_dirs="$$(${ALL-DEPENDS-FLAVORS-LIST})"; \ + ${_FLAVOR_RECURSIVE_SH} .endif .if !target(fetch-specials) fetch-specials: @${ECHO_MSG} "===> Fetching all distfiles required by ${PKGNAME} for building" - @for dir in ${_DEPEND_SPECIALS}; do \ - case $${dir} in \ - *@*) \ - flavor=$${dir#*@}; \ - dir=$${dir%@*}; \ - ;; \ - esac; \ - case $$dir in \ - /*) ;; \ - *) dir=${PORTSDIR}/$$dir ;; \ - esac; \ - (cd $$dir; ${SETENV} FLAVOR=$${flavor} ${MAKE} fetch); \ - done + @recursive_cmd="fetch"; \ + recursive_dirs="${_DEPEND_SPECIALS}"; \ + ${_FLAVOR_RECURSIVE_SH} .endif .if !target(fetch-recursive) fetch-recursive: @${ECHO_MSG} "===> Fetching all distfiles for ${PKGNAME} and dependencies" - @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ - (cd $$dir; ${MAKE} fetch); \ - done + @recursive_cmd="fetch"; \ + recursive_dirs="${.CURDIR} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ + ${_FLAVOR_RECURSIVE_SH} .endif .if !target(fetch-recursive-list) fetch-recursive-list: - @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ - (cd $$dir; ${MAKE} fetch-list); \ - done + @recursive_cmd="fetch-list"; \ + recursive_dirs="${.CURDIR} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ + ${_FLAVOR_RECURSIVE_SH} .endif # Used by fetch-required and fetch-required list, this script looks @@ -4172,9 +4186,9 @@ fetch-required-list: fetch-list .if !target(checksum-recursive) checksum-recursive: @${ECHO_MSG} "===> Fetching and checking checksums for ${PKGNAME} and dependencies" - @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ - (cd $$dir; ${MAKE} checksum); \ - done + @recursive_cmd="checksum"; \ + recursive_dirs="${.CURDIR} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ + ${_FLAVOR_RECURSIVE_SH} .endif # Dependency lists: build and runtime. Print out directory names. @@ -4311,9 +4325,9 @@ actual-package-depends: # Build packages for port and dependencies package-recursive: package - @for dir in $$(${ALL-DEPENDS-LIST}); do \ - (cd $$dir; ${MAKE} package-noinstall); \ - done + @recursive_cmd="package-noinstall"; \ + recursive_dirs="$$(${ALL-DEPENDS-FLAVORS-LIST})"; \ + ${_FLAVOR_RECURSIVE_SH} # Show missing dependencies missing: @@ -4978,9 +4992,9 @@ config: .if !target(config-recursive) config-recursive: @${ECHO_MSG} "===> Setting user-specified options for ${PKGNAME} and dependencies"; - @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ - (cd $$dir; ${MAKE} config-conditional); \ - done + @recursive_cmd="config-conditional"; \ + recursive_dirs="${.CURDIR} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ + ${_FLAVOR_RECURSIVE_SH} .endif # config-recursive .if !target(config-conditional) @@ -5034,9 +5048,9 @@ showconfig: check-config .if !target(showconfig-recursive) showconfig-recursive: @${ECHO_MSG} "===> The following configuration options are available for ${PKGNAME} and dependencies"; - @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ - (cd $$dir; ${MAKE} showconfig); \ - done + @recursive_cmd="showconfig"; \ + recursive_dirs="${.CURDIR} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ + ${_FLAVOR_RECURSIVE_SH} .endif # showconfig-recursive .if !target(rmconfig) @@ -5061,9 +5075,9 @@ rmconfig: .if !target(rmconfig-recursive) rmconfig-recursive: @${ECHO_MSG} "===> Removing user-specified options for ${PKGNAME} and dependencies"; - @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \ - (cd $$dir; ${MAKE} rmconfig); \ - done + @recursive_cmd="rmconfig"; \ + recursive_dirs="${.CURDIR} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ + ${_FLAVOR_RECURSIVE_SH} .endif # rmconfig-recursive .if !target(pretty-print-config) From owner-svn-ports-branches@freebsd.org Mon Mar 12 18:30: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 E38C2F33BF8; Mon, 12 Mar 2018 18:30:43 +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 9625D6A61C; Mon, 12 Mar 2018 18:30:43 +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 90EE77508; Mon, 12 Mar 2018 18:30:43 +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 w2CIUhCQ036837; Mon, 12 Mar 2018 18:30:43 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2CIUhDv036834; Mon, 12 Mar 2018 18:30:43 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201803121830.w2CIUhDv036834@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 12 Mar 2018 18:30:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464270 - branches/2018Q1/ports-mgmt/poudriere X-SVN-Group: ports-branches X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: branches/2018Q1/ports-mgmt/poudriere X-SVN-Commit-Revision: 464270 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, 12 Mar 2018 18:30:44 -0000 Author: bdrewery Date: Mon Mar 12 18:30:43 2018 New Revision: 464270 URL: https://svnweb.freebsd.org/changeset/ports/464270 Log: MFH: r463997 Update to 3.2.5 Changes: https://github.com/freebsd/poudriere/wiki/release_notes_325 Approved by: portmgr (implicit) Modified: branches/2018Q1/ports-mgmt/poudriere/Makefile branches/2018Q1/ports-mgmt/poudriere/distinfo branches/2018Q1/ports-mgmt/poudriere/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/ports-mgmt/poudriere/Makefile ============================================================================== --- branches/2018Q1/ports-mgmt/poudriere/Makefile Mon Mar 12 18:29:58 2018 (r464269) +++ branches/2018Q1/ports-mgmt/poudriere/Makefile Mon Mar 12 18:30:43 2018 (r464270) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -DISTVERSION= 3.2.4 +DISTVERSION= 3.2.5 PORTREVISION= 0 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ Modified: branches/2018Q1/ports-mgmt/poudriere/distinfo ============================================================================== --- branches/2018Q1/ports-mgmt/poudriere/distinfo Mon Mar 12 18:29:58 2018 (r464269) +++ branches/2018Q1/ports-mgmt/poudriere/distinfo Mon Mar 12 18:30:43 2018 (r464270) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516129511 -SHA256 (freebsd-poudriere-3.2.4_GH0.tar.gz) = 08c718b32dc75e632ff8ba06dad2a636c8a3d2bda7afcbac20bf284d45074ff4 -SIZE (freebsd-poudriere-3.2.4_GH0.tar.gz) = 4350487 +TIMESTAMP = 1520624616 +SHA256 (freebsd-poudriere-3.2.5_GH0.tar.gz) = 7d05b0fc7d87ef536824593303692900755851b46e53e1b6fdbc6103239efdc9 +SIZE (freebsd-poudriere-3.2.5_GH0.tar.gz) = 4353920 Modified: branches/2018Q1/ports-mgmt/poudriere/pkg-plist ============================================================================== --- branches/2018Q1/ports-mgmt/poudriere/pkg-plist Mon Mar 12 18:29:58 2018 (r464269) +++ branches/2018Q1/ports-mgmt/poudriere/pkg-plist Mon Mar 12 18:30:43 2018 (r464270) @@ -27,14 +27,15 @@ man/man8/poudriere.8.gz %%PORTEXAMPLES%%%%EXAMPLESDIR%%/httpd.conf.sample %%PORTEXAMPLES%%%%EXAMPLESDIR%%/nginx.conf.sample %%DATADIR%%/MANIFESTS +%%DATADIR%%/api.sh %%DATADIR%%/awk/dependency_loop.awk %%DATADIR%%/awk/humanize.awk %%DATADIR%%/awk/json.awk %%DATADIR%%/awk/json_jail.awk %%DATADIR%%/awk/json_top.awk +%%DATADIR%%/awk/parse_MOVED.awk %%DATADIR%%/awk/processonelog2.awk %%DATADIR%%/awk/siginfo_buildtime.awk -%%DATADIR%%/api.sh %%DATADIR%%/bulk.sh %%DATADIR%%/clean.sh %%DATADIR%%/common.sh From owner-svn-ports-branches@freebsd.org Mon Mar 12 19:05:30 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 EB7DCF36FFD; Mon, 12 Mar 2018 19:05:29 +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 A0C256C2F1; Mon, 12 Mar 2018 19:05:29 +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 9BAE07B16; Mon, 12 Mar 2018 19:05:29 +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 w2CJ5TgP056696; Mon, 12 Mar 2018 19:05:29 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2CJ5ToB056695; Mon, 12 Mar 2018 19:05:29 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201803121905.w2CJ5ToB056695@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 12 Mar 2018 19:05:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464274 - branches/2018Q1/Mk X-SVN-Group: ports-branches X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: branches/2018Q1/Mk X-SVN-Commit-Revision: 464274 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, 12 Mar 2018 19:05:30 -0000 Author: bdrewery Date: Mon Mar 12 19:05:29 2018 New Revision: 464274 URL: https://svnweb.freebsd.org/changeset/ports/464274 Log: MFH: r464273 FLAVORS: Reorder so the default is first. It is documented that the first FLAVOR is the default. Due to some use of DEFAULT_VERSIONS and USES, the default FLAVOR may be determined dynamically. Poudriere in particular expects the default to be first and does the wrong thing for emacs ports currently [1]. This resolves that and avoids other tools making the same mistake. PR: 225659 comment #14 Approved by: portmgr (implicit) Modified: branches/2018Q1/Mk/bsd.port.mk Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/Mk/bsd.port.mk ============================================================================== --- branches/2018Q1/Mk/bsd.port.mk Mon Mar 12 19:04:59 2018 (r464273) +++ branches/2018Q1/Mk/bsd.port.mk Mon Mar 12 19:05:29 2018 (r464274) @@ -1488,6 +1488,11 @@ IGNORE= Unknown flavor '${FLAVOR}', possible flavors: FLAVOR= ${FLAVORS:[1]} .endif +# Reorder FLAVORS so the default is first if set by the port. +.if empty(_FLAVOR) && !empty(FLAVORS) && !empty(FLAVOR) +FLAVORS:= ${FLAVOR} ${FLAVORS:N${FLAVOR}} +.endif + .if !empty(FLAVOR) && !defined(_DID_FLAVORS_HELPERS) _DID_FLAVORS_HELPERS= yes _FLAVOR_HELPERS_OVERRIDE= DESCR PLIST PKGNAMEPREFIX PKGNAMESUFFIX From owner-svn-ports-branches@freebsd.org Mon Mar 12 20:46:48 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 2499DF4938D; Mon, 12 Mar 2018 20:46:48 +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 C33D471864; Mon, 12 Mar 2018 20:46:47 +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 BB60410A76; Mon, 12 Mar 2018 20:46:47 +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 w2CKklt8011258; Mon, 12 Mar 2018 20:46:47 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2CKklVA011255; Mon, 12 Mar 2018 20:46:47 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803122046.w2CKklVA011255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 12 Mar 2018 20:46:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464304 - branches/2018Q1/print/harfbuzz X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q1/print/harfbuzz X-SVN-Commit-Revision: 464304 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, 12 Mar 2018 20:46:48 -0000 Author: jbeich Date: Mon Mar 12 20:46:47 2018 New Revision: 464304 URL: https://svnweb.freebsd.org/changeset/ports/464304 Log: MFH: r460534 r463853 print/harfbuzz: update to 1.7.6 Changes: https://github.com/harfbuzz/harfbuzz/blob/1.7.5/NEWS Changes: https://github.com/harfbuzz/harfbuzz/blob/1.7.6/NEWS ABI: https://abi-laboratory.pro/tracker/timeline/harfbuzz/ Approved by: ports-secteam (riggs) Modified: branches/2018Q1/print/harfbuzz/Makefile branches/2018Q1/print/harfbuzz/distinfo branches/2018Q1/print/harfbuzz/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/print/harfbuzz/Makefile ============================================================================== --- branches/2018Q1/print/harfbuzz/Makefile Mon Mar 12 20:45:29 2018 (r464303) +++ branches/2018Q1/print/harfbuzz/Makefile Mon Mar 12 20:46:47 2018 (r464304) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= harfbuzz -PORTVERSION= 1.7.4 +PORTVERSION= 1.7.6 PORTREVISION?= 0 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ @@ -22,7 +22,7 @@ CONFIGURE_ARGS= --with-graphite2 --with-gobject=yes INSTALL_TARGET= install-strip TEST_TARGET= check -PLIST_SUB+= LIBVER=0.10704.0 +PLIST_SUB+= LIBVER=0.10706.0 HARFBUZZ_SLAVE?= no Modified: branches/2018Q1/print/harfbuzz/distinfo ============================================================================== --- branches/2018Q1/print/harfbuzz/distinfo Mon Mar 12 20:45:29 2018 (r464303) +++ branches/2018Q1/print/harfbuzz/distinfo Mon Mar 12 20:46:47 2018 (r464304) @@ -1,3 +1,3 @@ -TIMESTAMP = 1513789545 -SHA256 (harfbuzz-1.7.4.tar.bz2) = b5d6ac8415f97f3540d73f3f91c41c5c10f8a4d76350f11a7184062aae88ac0b -SIZE (harfbuzz-1.7.4.tar.bz2) = 1718260 +TIMESTAMP = 1520435118 +SHA256 (harfbuzz-1.7.6.tar.bz2) = da7bed39134826cd51e57c29f1dfbe342ccedb4f4773b1c951ff05ff383e2e9b +SIZE (harfbuzz-1.7.6.tar.bz2) = 2586909 Modified: branches/2018Q1/print/harfbuzz/pkg-plist ============================================================================== --- branches/2018Q1/print/harfbuzz/pkg-plist Mon Mar 12 20:45:29 2018 (r464303) +++ branches/2018Q1/print/harfbuzz/pkg-plist Mon Mar 12 20:46:47 2018 (r464304) @@ -1,5 +1,6 @@ bin/hb-ot-shape-closure bin/hb-shape +bin/hb-subset bin/hb-view include/harfbuzz/hb-blob.h include/harfbuzz/hb-buffer.h @@ -23,17 +24,26 @@ include/harfbuzz/hb-ot.h include/harfbuzz/hb-set.h include/harfbuzz/hb-shape-plan.h include/harfbuzz/hb-shape.h +include/harfbuzz/hb-subset-glyf.hh +include/harfbuzz/hb-subset-plan.hh +include/harfbuzz/hb-subset-private.hh +include/harfbuzz/hb-subset.h include/harfbuzz/hb-unicode.h include/harfbuzz/hb-version.h include/harfbuzz/hb.h +lib/cmake/harfbuzz/harfbuzz-config.cmake lib/girepository-1.0/HarfBuzz-0.0.typelib lib/libharfbuzz-gobject.so lib/libharfbuzz-gobject.so.0 lib/libharfbuzz-gobject.so.%%LIBVER%% +lib/libharfbuzz-subset.so +lib/libharfbuzz-subset.so.0 +lib/libharfbuzz-subset.so.%%LIBVER%% lib/libharfbuzz.so lib/libharfbuzz.so.0 lib/libharfbuzz.so.%%LIBVER%% libdata/pkgconfig/harfbuzz-gobject.pc +libdata/pkgconfig/harfbuzz-subset.pc libdata/pkgconfig/harfbuzz.pc share/gir-1.0/HarfBuzz-0.0.gir share/gtk-doc/html/harfbuzz/HarfBuzz.png From owner-svn-ports-branches@freebsd.org Mon Mar 12 21:01: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 30436F4A4DD; Mon, 12 Mar 2018 21:01: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 D730B72475; Mon, 12 Mar 2018 21:01:40 +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 B7EE610C40; Mon, 12 Mar 2018 21:01:40 +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 w2CL1eYh017776; Mon, 12 Mar 2018 21:01:40 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2CL1e7P017775; Mon, 12 Mar 2018 21:01:40 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803122101.w2CL1e7P017775@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 12 Mar 2018 21:01:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464305 - branches/2018Q1/print/harfbuzz-icu X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q1/print/harfbuzz-icu X-SVN-Commit-Revision: 464305 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, 12 Mar 2018 21:01:41 -0000 Author: jbeich Date: Mon Mar 12 21:01:40 2018 New Revision: 464305 URL: https://svnweb.freebsd.org/changeset/ports/464305 Log: MFH: r463856 print/harfbuzz-icu: pacify check-plist after r464304 =========================================================================== ====> Running Q/A tests (stage-qa) ====> Checking for pkg-plist issues (check-plist) ===> Parsing plist ===> Checking for items in STAGEDIR missing from pkg-plist Error: Orphaned: bin/hb-subset Error: Orphaned: include/harfbuzz/hb-subset-glyf.hh Error: Orphaned: include/harfbuzz/hb-subset-plan.hh Error: Orphaned: include/harfbuzz/hb-subset-private.hh Error: Orphaned: include/harfbuzz/hb-subset.h Error: Orphaned: lib/cmake/harfbuzz/harfbuzz-config.cmake Error: Orphaned: lib/libharfbuzz-subset.so Error: Orphaned: lib/libharfbuzz-subset.so.0 Error: Orphaned: lib/libharfbuzz-subset.so.%%LIBVER%% Error: Orphaned: libdata/pkgconfig/harfbuzz-subset.pc Pointy hat to: jbeich Approved by: ports-secteam blanket Modified: branches/2018Q1/print/harfbuzz-icu/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/print/harfbuzz-icu/pkg-plist ============================================================================== --- branches/2018Q1/print/harfbuzz-icu/pkg-plist Mon Mar 12 20:46:47 2018 (r464304) +++ branches/2018Q1/print/harfbuzz-icu/pkg-plist Mon Mar 12 21:01:40 2018 (r464305) @@ -1,5 +1,6 @@ @comment bin/hb-ot-shape-closure @comment bin/hb-shape +@comment bin/hb-subset @comment bin/hb-view @comment include/harfbuzz/hb-blob.h @comment include/harfbuzz/hb-buffer.h @@ -24,9 +25,14 @@ include/harfbuzz/hb-icu.h @comment include/harfbuzz/hb-set.h @comment include/harfbuzz/hb-shape-plan.h @comment include/harfbuzz/hb-shape.h +@comment include/harfbuzz/hb-subset-glyf.hh +@comment include/harfbuzz/hb-subset-plan.hh +@comment include/harfbuzz/hb-subset-private.hh +@comment include/harfbuzz/hb-subset.h @comment include/harfbuzz/hb-unicode.h @comment include/harfbuzz/hb-version.h @comment include/harfbuzz/hb.h +@comment lib/cmake/harfbuzz/harfbuzz-config.cmake @comment lib/girepository-1.0/HarfBuzz-0.0.typelib @comment lib/libharfbuzz-gobject.so @comment lib/libharfbuzz-gobject.so.0 @@ -34,10 +40,14 @@ include/harfbuzz/hb-icu.h lib/libharfbuzz-icu.so lib/libharfbuzz-icu.so.0 lib/libharfbuzz-icu.so.%%LIBVER%% +@comment lib/libharfbuzz-subset.so +@comment lib/libharfbuzz-subset.so.0 +@comment lib/libharfbuzz-subset.so.%%LIBVER%% @comment lib/libharfbuzz.so @comment lib/libharfbuzz.so.0 @comment lib/libharfbuzz.so.%%LIBVER%% @comment libdata/pkgconfig/harfbuzz-gobject.pc libdata/pkgconfig/harfbuzz-icu.pc +@comment libdata/pkgconfig/harfbuzz-subset.pc @comment libdata/pkgconfig/harfbuzz.pc @comment share/gir-1.0/HarfBuzz-0.0.gir From owner-svn-ports-branches@freebsd.org Mon Mar 12 22:15:16 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 9A135F4FC13; Mon, 12 Mar 2018 22:15:16 +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 4F7B377383; Mon, 12 Mar 2018 22:15:16 +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 45B391187A; Mon, 12 Mar 2018 22:15:16 +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 w2CMFGSC058821; Mon, 12 Mar 2018 22:15:16 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2CMFFfv058817; Mon, 12 Mar 2018 22:15:15 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803122215.w2CMFFfv058817@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 12 Mar 2018 22:15:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464328 - in branches/2018Q1/www: firefox firefox-i18n X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/www: firefox firefox-i18n X-SVN-Commit-Revision: 464328 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, 12 Mar 2018 22:15:16 -0000 Author: jbeich Date: Mon Mar 12 22:15:15 2018 New Revision: 464328 URL: https://svnweb.freebsd.org/changeset/ports/464328 Log: MFH: r464325 www/firefox: switch to rc5 Changes: https://hg.mozilla.org/releases/mozilla-release/pushloghtml?startdate=2018-03-08&enddate=2018-03-12 Changes: https://bugzilla.mozilla.org/show_bug.cgi?id=1444548 Approved by: ports-secteam blanket Modified: branches/2018Q1/www/firefox-i18n/Makefile branches/2018Q1/www/firefox-i18n/distinfo branches/2018Q1/www/firefox/Makefile branches/2018Q1/www/firefox/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/firefox-i18n/Makefile ============================================================================== --- branches/2018Q1/www/firefox-i18n/Makefile Mon Mar 12 22:13:35 2018 (r464327) +++ branches/2018Q1/www/firefox-i18n/Makefile Mon Mar 12 22:15:15 2018 (r464328) @@ -3,10 +3,10 @@ PORTNAME= firefox-i18n PORTVERSION= 59.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build4/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build5/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: branches/2018Q1/www/firefox-i18n/distinfo ============================================================================== --- branches/2018Q1/www/firefox-i18n/distinfo Mon Mar 12 22:13:35 2018 (r464327) +++ branches/2018Q1/www/firefox-i18n/distinfo Mon Mar 12 22:15:15 2018 (r464328) @@ -1,4 +1,4 @@ -TIMESTAMP = 1520456550 +TIMESTAMP = 1520650457 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 @@ -43,7 +43,7 @@ SHA256 (xpi/firefox-i18n-59.0/el.xpi) = 466c2fef631c84 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 +SHA256 (xpi/firefox-i18n-59.0/en-US.xpi) = d7a323080afc9cf936cf672e584da825413637b4b413153b0f4ddd5169fdf05a 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 Modified: branches/2018Q1/www/firefox/Makefile ============================================================================== --- branches/2018Q1/www/firefox/Makefile Mon Mar 12 22:13:35 2018 (r464327) +++ branches/2018Q1/www/firefox/Makefile Mon Mar 12 22:15:15 2018 (r464328) @@ -3,11 +3,11 @@ PORTNAME= firefox DISTVERSION= 59.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= https://hg.mozilla.org/releases/mozilla-release/archive/ -DISTNAME= ${MASTER_SITES:M*hg*:S,/archive/,,:T}-e9128973a480c8aedf3a2e1c67d3e168613fa17c +DISTNAME= ${MASTER_SITES:M*hg*:S,/archive/,,:T}-c61f5f5ead48c78a80c80db5c489bdc7cfaf8175 DISTFILES= ${DISTNAME:C/.*-//}${EXTRACT_SUFX} DIST_SUBDIR= firefox Modified: branches/2018Q1/www/firefox/distinfo ============================================================================== --- branches/2018Q1/www/firefox/distinfo Mon Mar 12 22:13:35 2018 (r464327) +++ branches/2018Q1/www/firefox/distinfo Mon Mar 12 22:15:15 2018 (r464328) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520456550 -SHA256 (firefox/e9128973a480c8aedf3a2e1c67d3e168613fa17c.tar.bz2) = bd6c5a7635009cb1a95824287b9751f1012f8e13bec057811d882e0db75e1258 -SIZE (firefox/e9128973a480c8aedf3a2e1c67d3e168613fa17c.tar.bz2) = 304977546 +TIMESTAMP = 1520650457 +SHA256 (firefox/c61f5f5ead48c78a80c80db5c489bdc7cfaf8175.tar.bz2) = 1c591e52ca808c3bfbdcd9bcca0c8c1457fe9503face27cde6272a3b791afec4 +SIZE (firefox/c61f5f5ead48c78a80c80db5c489bdc7cfaf8175.tar.bz2) = 304957396 From owner-svn-ports-branches@freebsd.org Mon Mar 12 22:15:49 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 51993F4FC92; Mon, 12 Mar 2018 22:15:49 +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 00E9B774B4; Mon, 12 Mar 2018 22:15: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 EEE4E1187B; Mon, 12 Mar 2018 22:15:48 +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 w2CMFmii058982; Mon, 12 Mar 2018 22:15:48 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2CMFmp5058979; Mon, 12 Mar 2018 22:15:48 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803122215.w2CMFmp5058979@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 12 Mar 2018 22:15:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464329 - in branches/2018Q1/emulators/rpcs3: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/emulators/rpcs3: . files X-SVN-Commit-Revision: 464329 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, 12 Mar 2018 22:15:49 -0000 Author: jbeich Date: Mon Mar 12 22:15:48 2018 New Revision: 464329 URL: https://svnweb.freebsd.org/changeset/ports/464329 Log: MFH: r464326 emulators/rpcs3: update to 0.0.5.54 Changes: https://github.com/RPCS3/rpcs3/compare/7bbadfd08...b8e920873 Approved by: ports-secteam (junovitch, implicit for snapshots) Modified: branches/2018Q1/emulators/rpcs3/Makefile branches/2018Q1/emulators/rpcs3/distinfo branches/2018Q1/emulators/rpcs3/files/extra-patch-no-thread_local Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/emulators/rpcs3/Makefile ============================================================================== --- branches/2018Q1/emulators/rpcs3/Makefile Mon Mar 12 22:15:15 2018 (r464328) +++ branches/2018Q1/emulators/rpcs3/Makefile Mon Mar 12 22:15:48 2018 (r464329) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-40 -DISTVERSIONSUFFIX= -g7bbadfd08 +DISTVERSION= 0.0.5-54 +DISTVERSIONSUFFIX= -gb8e920873 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: branches/2018Q1/emulators/rpcs3/distinfo ============================================================================== --- branches/2018Q1/emulators/rpcs3/distinfo Mon Mar 12 22:15:15 2018 (r464328) +++ branches/2018Q1/emulators/rpcs3/distinfo Mon Mar 12 22:15:48 2018 (r464329) @@ -1,6 +1,6 @@ -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 +TIMESTAMP = 1520871412 +SHA256 (RPCS3-rpcs3-v0.0.5-54-gb8e920873_GH0.tar.gz) = 35425eac00c37bf2523eb40d8992a878b58d46c70c28b6e8cab1336a9b806037 +SIZE (RPCS3-rpcs3-v0.0.5-54-gb8e920873_GH0.tar.gz) = 4305546 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 Modified: branches/2018Q1/emulators/rpcs3/files/extra-patch-no-thread_local ============================================================================== --- branches/2018Q1/emulators/rpcs3/files/extra-patch-no-thread_local Mon Mar 12 22:15:15 2018 (r464328) +++ branches/2018Q1/emulators/rpcs3/files/extra-patch-no-thread_local Mon Mar 12 22:15:48 2018 (r464329) @@ -1,6 +1,26 @@ FreeBSD 10.3 lacks __cxa_thread_atexit, so revert https://github.com/RPCS3/rpcs3/commit/c1450ad61627 +--- rpcs3/Emu/VFS.cpp.orig 2018-03-12 20:29:35 UTC ++++ rpcs3/Emu/VFS.cpp +@@ -18,7 +18,7 @@ bool vfs::mount(const std::string& dev_name, const std + { + const auto table = fxm::get_always(); + +- safe_writer_lock lock(table->mutex); ++ writer_lock lock(table->mutex); + + return table->mounted.emplace(dev_name, path).second; + } +@@ -27,7 +27,7 @@ std::string vfs::get(const std::string& vpath, const s + { + const auto table = fxm::get_always(); + +- safe_reader_lock lock(table->mutex); ++ reader_lock lock(table->mutex); + + std::smatch match; + --- Utilities/Log.cpp.orig 2017-09-19 12:07:07 UTC +++ Utilities/Log.cpp @@ -255,7 +255,7 @@ void logs::message::broadcast(const char* fmt, const f From owner-svn-ports-branches@freebsd.org Mon Mar 12 22:16:45 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 A5786F4FDB7; Mon, 12 Mar 2018 22:16:45 +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 597C9775BB; Mon, 12 Mar 2018 22:16:45 +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 53A0C1187C; Mon, 12 Mar 2018 22:16:45 +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 w2CMGj2r059142; Mon, 12 Mar 2018 22:16:45 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2CMGjCP059140; Mon, 12 Mar 2018 22:16:45 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803122216.w2CMGjCP059140@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 12 Mar 2018 22:16:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464330 - 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: 464330 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, 12 Mar 2018 22:16:46 -0000 Author: jbeich Date: Mon Mar 12 22:16:44 2018 New Revision: 464330 URL: https://svnweb.freebsd.org/changeset/ports/464330 Log: MFH: r464327 emulators/citra: update to s20180311 - Limit citra-room to master port as it doesn't have a GUI, anyway Changes: https://github.com/citra-emu/citra/compare/33a0e87a...6c63bb11 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 Mon Mar 12 22:15:48 2018 (r464329) +++ branches/2018Q1/emulators/citra/Makefile Mon Mar 12 22:16:44 2018 (r464330) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20180309 +PORTVERSION= s20180311 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= 33a0e87a +GH_TAGNAME= 6c63bb11 GH_TUPLE= citra-emu:ext-soundtouch:019d208:soundtouch/externals/soundtouch \ MerryMage:dynarmic:d1d4705:dynarmic/externals/dynarmic \ benhoyt:inih:r40:inih/externals/inih/inih \ @@ -56,12 +56,14 @@ CURL_CMAKE_BOOL=ENABLE_WEB_SERVICE USE_SYSTEM_CURL SDL_CMAKE_BOOL= ENABLE_SDL2 SDL_PLIST_FILES=bin/${PORTNAME} \ + bin/${PORTNAME}-room \ man/man6/${PORTNAME}.6.gz QT5_USES= desktop-file-utils shared-mime-info QT5_USE= QT5=qmake_build,buildtools_build,concurrent_build,core,gui,opengl,widgets QT5_CMAKE_BOOL= ENABLE_QT QT5_PLIST_FILES=bin/${PORTNAME}-qt \ + "@comment bin/${PORTNAME}-room" \ man/man6/${PORTNAME}-qt.6.gz \ share/applications/${PORTNAME}.desktop \ share/icons/hicolor/scalable/apps/${PORTNAME}.svg \ Modified: branches/2018Q1/emulators/citra/distinfo ============================================================================== --- branches/2018Q1/emulators/citra/distinfo Mon Mar 12 22:15:48 2018 (r464329) +++ branches/2018Q1/emulators/citra/distinfo Mon Mar 12 22:16:44 2018 (r464330) @@ -1,6 +1,6 @@ -TIMESTAMP = 1520614872 -SHA256 (citra-emu-citra-s20180309-33a0e87a_GH0.tar.gz) = 70bdff7a353a77a43499c8ad06e589b2c0410b43a3f878f24f38da57933c3d9e -SIZE (citra-emu-citra-s20180309-33a0e87a_GH0.tar.gz) = 1687270 +TIMESTAMP = 1520786449 +SHA256 (citra-emu-citra-s20180311-6c63bb11_GH0.tar.gz) = 063881f9e60b252b60d50d2cb8ec80df72374a636edab6d53109dd58c8698bd3 +SIZE (citra-emu-citra-s20180311-6c63bb11_GH0.tar.gz) = 1689749 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 Tue Mar 13 17:30:21 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 2C302F35509; Tue, 13 Mar 2018 17:30:21 +0000 (UTC) (envelope-from jkim@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 D25AB6ADBA; Tue, 13 Mar 2018 17:30:20 +0000 (UTC) (envelope-from jkim@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 CD2671CC28; Tue, 13 Mar 2018 17:30:20 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2DHUKnV036736; Tue, 13 Mar 2018 17:30:20 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2DHUKrC036734; Tue, 13 Mar 2018 17:30:20 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201803131730.w2DHUKrC036734@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 13 Mar 2018 17:30:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464397 - branches/2018Q1/www/linux-flashplayer X-SVN-Group: ports-branches X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: branches/2018Q1/www/linux-flashplayer X-SVN-Commit-Revision: 464397 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, 13 Mar 2018 17:30:21 -0000 Author: jkim Date: Tue Mar 13 17:30:20 2018 New Revision: 464397 URL: https://svnweb.freebsd.org/changeset/ports/464397 Log: MFH: r464394 Update to 29.0.0.113. https://helpx.adobe.com/security/products/flash-player/apsb18-05.html Approved by: ports-secteam (blanket) Modified: branches/2018Q1/www/linux-flashplayer/Makefile branches/2018Q1/www/linux-flashplayer/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/linux-flashplayer/Makefile ============================================================================== --- branches/2018Q1/www/linux-flashplayer/Makefile Tue Mar 13 17:25:25 2018 (r464396) +++ branches/2018Q1/www/linux-flashplayer/Makefile Tue Mar 13 17:30:20 2018 (r464397) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flashplayer -PORTVERSION= 28.0.0.161 +PORTVERSION= 29.0.0.113 CATEGORIES= www multimedia linux MASTER_SITES= https://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION}/ PKGNAMEPREFIX= linux- Modified: branches/2018Q1/www/linux-flashplayer/distinfo ============================================================================== --- branches/2018Q1/www/linux-flashplayer/distinfo Tue Mar 13 17:25:25 2018 (r464396) +++ branches/2018Q1/www/linux-flashplayer/distinfo Tue Mar 13 17:30:20 2018 (r464397) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517952142 -SHA256 (flashplayer/28.0.0.161/flash_player_npapi_linux.i386.tar.gz) = 3da1568d97eec0d34291472ddb51211e88ab10d37e5f38ea94c3252efe63b7d4 -SIZE (flashplayer/28.0.0.161/flash_player_npapi_linux.i386.tar.gz) = 8513055 +TIMESTAMP = 1520960976 +SHA256 (flashplayer/29.0.0.113/flash_player_npapi_linux.i386.tar.gz) = beb2f8660f7579dd96410db2805369cbdf1ad5156934bd0844f9a4cf3481b219 +SIZE (flashplayer/29.0.0.113/flash_player_npapi_linux.i386.tar.gz) = 8513691 From owner-svn-ports-branches@freebsd.org Tue Mar 13 17:30:48 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 5D528F3556F; Tue, 13 Mar 2018 17:30:48 +0000 (UTC) (envelope-from jkim@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 1136D6AEBB; Tue, 13 Mar 2018 17:30:48 +0000 (UTC) (envelope-from jkim@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 0C2871CC38; Tue, 13 Mar 2018 17:30:48 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2DHUlfT039074; Tue, 13 Mar 2018 17:30:47 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2DHUlRU039073; Tue, 13 Mar 2018 17:30:47 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201803131730.w2DHUlRU039073@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 13 Mar 2018 17:30:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464398 - branches/2018Q1/www/flashplayer X-SVN-Group: ports-branches X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: branches/2018Q1/www/flashplayer X-SVN-Commit-Revision: 464398 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, 13 Mar 2018 17:30:48 -0000 Author: jkim Date: Tue Mar 13 17:30:47 2018 New Revision: 464398 URL: https://svnweb.freebsd.org/changeset/ports/464398 Log: MFH: r464395 Catch up with www/linux-flashplayer. Approved by: ports-secteam (blanket) Modified: branches/2018Q1/www/flashplayer/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/flashplayer/Makefile ============================================================================== --- branches/2018Q1/www/flashplayer/Makefile Tue Mar 13 17:30:20 2018 (r464397) +++ branches/2018Q1/www/flashplayer/Makefile Tue Mar 13 17:30:47 2018 (r464398) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= flashplayer -PORTVERSION= 28.0 +PORTVERSION= 29.0 CATEGORIES= www multimedia DISTFILES= From owner-svn-ports-branches@freebsd.org Wed Mar 14 07:54:30 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 A37086924; Wed, 14 Mar 2018 07:54:30 +0000 (UTC) (envelope-from tota@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 4A91F73099; Wed, 14 Mar 2018 07:54:30 +0000 (UTC) (envelope-from tota@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 27BA325397; Wed, 14 Mar 2018 07:54:30 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2E7sUWi077452; Wed, 14 Mar 2018 07:54:30 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2E7sT1Y077442; Wed, 14 Mar 2018 07:54:29 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201803140754.w2E7sT1Y077442@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 14 Mar 2018 07:54:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464466 - in branches/2018Q1/japanese/mailman: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in branches/2018Q1/japanese/mailman: . files X-SVN-Commit-Revision: 464466 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: Wed, 14 Mar 2018 07:54:30 -0000 Author: tota Date: Wed Mar 14 07:54:28 2018 New Revision: 464466 URL: https://svnweb.freebsd.org/changeset/ports/464466 Log: MFH: r462947 r463639 - Add CVE-2018-5950 patch [1] - Update MASTER_SITES [1] - USES shebangfix - Regenerate patches with makepatch - Fix pkg-plist to make portlint happy - Remove unnecessary line from files/pkg-deinstall.in [2] - Fix files/pkg-install.in [2] PR: 225703 [1] Submitted by: Yasuhito FUTATSUKI Security: CVE-2018-5950 Pointed out by: riggs@ [2] Approved by: ports-secteam (riggs@) Added: branches/2018Q1/japanese/mailman/files/patch-CVE-2018-5950 - copied unchanged from r462947, head/japanese/mailman/files/patch-CVE-2018-5950 Modified: branches/2018Q1/japanese/mailman/Makefile branches/2018Q1/japanese/mailman/files/patch-CVE-2015-2775 branches/2018Q1/japanese/mailman/files/patch-Mailman-Defaults.py.in branches/2018Q1/japanese/mailman/files/patch-Mailman-htmlformat.py branches/2018Q1/japanese/mailman/files/patch-configure.in branches/2018Q1/japanese/mailman/files/patch-misc-mailman.in branches/2018Q1/japanese/mailman/files/pkg-deinstall.in (contents, props changed) branches/2018Q1/japanese/mailman/files/pkg-install.in (contents, props changed) branches/2018Q1/japanese/mailman/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/japanese/mailman/Makefile ============================================================================== --- branches/2018Q1/japanese/mailman/Makefile Wed Mar 14 07:26:22 2018 (r464465) +++ branches/2018Q1/japanese/mailman/Makefile Wed Mar 14 07:54:28 2018 (r464466) @@ -3,10 +3,10 @@ PORTNAME= mailman PORTVERSION= 2.1.14.j7 -PORTREVISION= 2 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= japanese mail -MASTER_SITES= http://www.python.jp/doc/contrib/mailman/_static/ \ +MASTER_SITES= https://docs.python.jp/contrib/mailman/_static/ \ LOCAL/tota/${PORTNAME} DISTNAME= ${PORTNAME}-${PORTVERSION:S/.j/+j/} DIST_SUBDIR= mailman @@ -21,7 +21,7 @@ CONFLICTS= mailman-2.1.* PORTSCOUT= limit:.*\.j\d+$$ -USES= autoreconf gettext python:2 tar:tgz +USES= autoreconf gettext python:2.7 shebangfix tar:tgz USE_RC_SUBR= mailman GNU_CONFIGURE= yes @@ -52,6 +52,10 @@ MAILMANDIR= ${PREFIX}/${MM_DIR} PLIST_SUB= MMDIR=${MM_DIR} IMGDIR=${IMGDIR} SUB_FILES= pkg-message pkg-install pkg-deinstall SUB_LIST= MAILMANDIR=${MAILMANDIR} USER=${MM_USERNAME} GROUP=${MM_GROUPNAME} + +SHEBANG_FILES= bin/msgfmt.py \ + tests/onebounce.py \ + tests/fblast.py IMGFILES= PythonPowered.png mailman.jpg mm-icon.png Modified: branches/2018Q1/japanese/mailman/files/patch-CVE-2015-2775 ============================================================================== --- branches/2018Q1/japanese/mailman/files/patch-CVE-2015-2775 Wed Mar 14 07:26:22 2018 (r464465) +++ branches/2018Q1/japanese/mailman/files/patch-CVE-2015-2775 Wed Mar 14 07:54:28 2018 (r464466) @@ -1,6 +1,6 @@ ---- Mailman/Utils.py.orig 2011-12-11 16:56:23.000000000 +0900 -+++ Mailman/Utils.py 2015-06-01 13:25:26.000000000 +0900 -@@ -93,6 +93,12 @@ +--- Mailman/Utils.py.orig 2011-12-11 07:56:23 UTC ++++ Mailman/Utils.py +@@ -93,6 +93,12 @@ def list_exists(listname): # # The former two are for 2.1alpha3 and beyond, while the latter two are # for all earlier versions. Copied: branches/2018Q1/japanese/mailman/files/patch-CVE-2018-5950 (from r462947, head/japanese/mailman/files/patch-CVE-2018-5950) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/japanese/mailman/files/patch-CVE-2018-5950 Wed Mar 14 07:54:28 2018 (r464466, copy of r462947, head/japanese/mailman/files/patch-CVE-2018-5950) @@ -0,0 +1,52 @@ +--- Mailman/Cgi/options.py.orig 2011-12-11 07:56:23 UTC ++++ Mailman/Cgi/options.py +@@ -1,4 +1,4 @@ +-# Copyright (C) 1998-2011 by the Free Software Foundation, Inc. ++# Copyright (C) 1998-2018 by the Free Software Foundation, Inc. + # + # This program is free software; you can redistribute it and/or + # modify it under the terms of the GNU General Public License +@@ -165,20 +165,6 @@ def main(): + doc.set_language(userlang) + i18n.set_language(userlang) + +- # See if this is VARHELP on topics. +- varhelp = None +- if cgidata.has_key('VARHELP'): +- varhelp = cgidata['VARHELP'].value +- elif os.environ.get('QUERY_STRING'): +- # POST methods, even if their actions have a query string, don't get +- # put into FieldStorage's keys :-( +- qs = cgi.parse_qs(os.environ['QUERY_STRING']).get('VARHELP') +- if qs and type(qs) == types.ListType: +- varhelp = qs[0] +- if varhelp: +- topic_details(mlist, doc, user, cpuser, userlang, varhelp) +- return +- + # Are we processing an unsubscription request from the login screen? + if cgidata.has_key('login-unsub'): + # Because they can't supply a password for unsubscribing, we'll need +@@ -290,6 +276,22 @@ def main(): + print doc.Format() + return + ++ # See if this is VARHELP on topics. ++ varhelp = None ++ if cgidata.has_key('VARHELP'): ++ varhelp = cgidata['VARHELP'].value ++ elif os.environ.get('QUERY_STRING'): ++ # POST methods, even if their actions have a query string, don't get ++ # put into FieldStorage's keys :-( ++ qs = cgi.parse_qs(os.environ['QUERY_STRING']).get('VARHELP') ++ if qs and type(qs) == types.ListType: ++ varhelp = qs[0] ++ if varhelp: ++ # Sanitize the topic name. ++ varhelp = re.sub('<.*', '', varhelp) ++ topic_details(mlist, doc, user, cpuser, userlang, varhelp) ++ return ++ + if cgidata.has_key('logout'): + print mlist.ZapCookie(mm_cfg.AuthUser, user) + loginpage(mlist, doc, user, language) Modified: branches/2018Q1/japanese/mailman/files/patch-Mailman-Defaults.py.in ============================================================================== --- branches/2018Q1/japanese/mailman/files/patch-Mailman-Defaults.py.in Wed Mar 14 07:26:22 2018 (r464465) +++ branches/2018Q1/japanese/mailman/files/patch-Mailman-Defaults.py.in Wed Mar 14 07:54:28 2018 (r464466) @@ -1,6 +1,6 @@ ---- Mailman/Defaults.py.in.orig 2011-12-11 16:56:23.000000000 +0900 -+++ Mailman/Defaults.py.in 2012-02-15 05:39:56.000000000 +0900 -@@ -62,7 +62,7 @@ +--- Mailman/Defaults.py.in.orig 2011-12-11 07:56:23 UTC ++++ Mailman/Defaults.py.in +@@ -62,7 +62,7 @@ SHORTCUT_ICON = 'mm-icon.png' # Banner images DELIVERED_BY = 'mailman.jpg' PYTHON_POWERED = 'PythonPowered.png' @@ -9,7 +9,7 @@ # Don't change MAILMAN_URL, unless you want to point it at one of the mirrors. MAILMAN_URL = 'http://www.gnu.org/software/mailman/index.html' -@@ -119,7 +119,7 @@ +@@ -119,7 +119,7 @@ FORM_LIFETIME = hours(1) # Command that is used to convert text/html parts into plain text. This # should output results to standard output. %(filename)s will contain the # name of the temporary file that the program should operate on. @@ -18,7 +18,7 @@ # A Python regular expression character class which defines the characters # allowed in list names. Lists cannot be created with names containing any -@@ -460,8 +460,8 @@ +@@ -460,8 +460,8 @@ VIRTUAL_MAILMAN_LOCAL_DOMAIN = None # and virtual-mailman.db files, respectively, from the associated plain text # files. The file being updated will be appended to this string (with a # separating space), so it must be appropriate for os.system(). @@ -29,7 +29,7 @@ # Ceiling on the number of recipients that can be specified in a single SMTP # transaction. Set to 0 to submit the entire recipient list in one -@@ -495,7 +495,7 @@ +@@ -495,7 +495,7 @@ SMTPPORT = 0 # Command for direct command pipe delivery to sendmail compatible program, # when DELIVERY_MODULE is 'Sendmail'. @@ -38,7 +38,7 @@ # Set these variables if you need to authenticate to your NNTP server for # Usenet posting or reading. If no authentication is necessary, specify None -@@ -747,6 +747,13 @@ +@@ -747,6 +747,13 @@ VERP_CONFIRMATIONS = No # debugging). MAX_AUTORESPONSES_PER_DAY = 10 Modified: branches/2018Q1/japanese/mailman/files/patch-Mailman-htmlformat.py ============================================================================== --- branches/2018Q1/japanese/mailman/files/patch-Mailman-htmlformat.py Wed Mar 14 07:26:22 2018 (r464465) +++ branches/2018Q1/japanese/mailman/files/patch-Mailman-htmlformat.py Wed Mar 14 07:54:28 2018 (r464466) @@ -1,6 +1,6 @@ ---- Mailman/htmlformat.py.orig 2011-12-11 16:56:23.000000000 +0900 -+++ Mailman/htmlformat.py 2012-02-15 16:46:34.000000000 +0900 -@@ -621,13 +621,13 @@ +--- Mailman/htmlformat.py.orig 2011-12-11 07:56:23 UTC ++++ Mailman/htmlformat.py +@@ -621,13 +621,13 @@ class DefinitionList(Container): # from mm_cfg import MAILMAN_URL PYTHON_URL = 'http://www.python.org/' @@ -16,7 +16,7 @@ def MailmanLogo(): -@@ -641,18 +641,18 @@ +@@ -641,18 +641,18 @@ def MailmanLogo(): pylink = 'Python Powered' % \ logo(PYTHON_POWERED) Modified: branches/2018Q1/japanese/mailman/files/patch-configure.in ============================================================================== --- branches/2018Q1/japanese/mailman/files/patch-configure.in Wed Mar 14 07:26:22 2018 (r464465) +++ branches/2018Q1/japanese/mailman/files/patch-configure.in Wed Mar 14 07:54:28 2018 (r464466) @@ -3,9 +3,9 @@ this creates a problem; we create the users just befor We remove the testing part. ---- configure.in.orig 2011-12-11 16:56:23.000000000 +0900 -+++ configure.in 2012-02-15 06:11:05.000000000 +0900 -@@ -341,28 +341,7 @@ +--- configure.in.orig 2011-12-11 07:56:23 UTC ++++ configure.in +@@ -341,28 +341,7 @@ AC_DEFUN([MM_FIND_GROUP_NAME], [ # $2 == user id to check for AC_SUBST($1) changequote(,) @@ -35,7 +35,7 @@ We remove the testing part. changequote([, ]) rm -f conftest.out conftest.py]) -@@ -373,28 +352,7 @@ +@@ -373,28 +352,7 @@ AC_DEFUN([MM_FIND_USER_NAME], [ # $2 == user id to check for AC_SUBST($1) changequote(,) Modified: branches/2018Q1/japanese/mailman/files/patch-misc-mailman.in ============================================================================== --- branches/2018Q1/japanese/mailman/files/patch-misc-mailman.in Wed Mar 14 07:26:22 2018 (r464465) +++ branches/2018Q1/japanese/mailman/files/patch-misc-mailman.in Wed Mar 14 07:54:28 2018 (r464466) @@ -1,6 +1,6 @@ ---- misc/mailman.in.orig 2011-12-11 16:56:23.000000000 +0900 -+++ misc/mailman.in 2012-02-15 06:27:15.000000000 +0900 -@@ -39,16 +39,20 @@ +--- misc/mailman.in.orig 2011-12-11 07:56:23 UTC ++++ misc/mailman.in +@@ -39,16 +39,20 @@ MAILMANCTL=$MAILMANHOME/bin/mailmanctl case "$1" in 'start') #rm -f $MAILMANHOME/locks/* Modified: branches/2018Q1/japanese/mailman/files/pkg-deinstall.in ============================================================================== --- branches/2018Q1/japanese/mailman/files/pkg-deinstall.in Wed Mar 14 07:26:22 2018 (r464465) +++ branches/2018Q1/japanese/mailman/files/pkg-deinstall.in Wed Mar 14 07:54:28 2018 (r464466) @@ -1,6 +1,6 @@ #! /bin/sh # -# $FreeBSD$ +# $FreeBSD: branches/2018Q1/japanese/mailman/files/pkg-deinstall.in 360783 2014-07-05 17:42:23Z tota $ PATH=/bin:/usr/bin:/usr/sbin @@ -40,7 +40,6 @@ POST-DEINSTALL) echo "---> Starting post-deinstall script" # try to kill all empty directories - necessary on pkg_add-based systems - find "%%MAILMANDIR%%" -depth -type d -exec rmdir '{}' + >/dev/null 2>&1 || : if [ -d "%%MAILMANDIR%%" ]; then echo '---> %%MAILMANDIR%% is not empty - this installation may have active lists!' ls -lRB "%%MAILMANDIR%%" | head -n200 || : Modified: branches/2018Q1/japanese/mailman/files/pkg-install.in ============================================================================== --- branches/2018Q1/japanese/mailman/files/pkg-install.in Wed Mar 14 07:26:22 2018 (r464465) +++ branches/2018Q1/japanese/mailman/files/pkg-install.in Wed Mar 14 07:54:28 2018 (r464466) @@ -1,6 +1,6 @@ #! /bin/sh # -# $FreeBSD$ +# $FreeBSD: branches/2018Q1/japanese/mailman/files/pkg-install.in 360783 2014-07-05 17:42:23Z tota $ PATH=/bin:/usr/bin:/usr/sbin @@ -15,6 +15,14 @@ POST-INSTALL) /bin/chmod g+s "%%MAILMANDIR%%" || exit 1 echo "---> Running update" + + for DIR in logs archives lists locks data spam qfiles \ + archives/private archives/public + do + if [ ! -e "%%MAILMANDIR%%/$DIR" ]; then + /bin/mkdir -p "%%MAILMANDIR%%/$DIR" + fi + done LC_ALL=C "%%MAILMANDIR%%/bin/update" || exit 1 Modified: branches/2018Q1/japanese/mailman/pkg-plist ============================================================================== --- branches/2018Q1/japanese/mailman/pkg-plist Wed Mar 14 07:26:22 2018 (r464465) +++ branches/2018Q1/japanese/mailman/pkg-plist Wed Mar 14 07:54:28 2018 (r464466) @@ -1,12 +1,5 @@ -@stopdaemon mailman -@exec mkdir -p %D/%%MMDIR%%/archives -@exec mkdir -p %D/%%MMDIR%%/archives/private -@exec mkdir -p %D/%%MMDIR%%/archives/public -@exec mkdir -p %D/%%MMDIR%%/lists -@exec mkdir -p %D/%%MMDIR%%/locks -@exec mkdir -p %D/%%MMDIR%%/logs -@exec mkdir -p %D/%%MMDIR%%/qfiles -@exec mkdir -p %D/%%MMDIR%%/spam +@postunexec if cmp -s %D/%%MMDIR%%/Mailman/mm_cfg.py %D/%%MMDIR%%/Mailman/mm_cfg.py.dist; then rm -f %D/%%MMDIR%%/Mailman/mm_cfg.py; fi +@postunexec rm -f %D/%%MMDIR%%/Mailman/mm_cfg.pyc %%IMGDIR%%/PythonPowered.png %%IMGDIR%%/mailman.jpg %%IMGDIR%%/mm-icon.png @@ -305,10 +298,7 @@ %%MMDIR%%/Mailman/htmlformat.pyc %%MMDIR%%/Mailman/i18n.py %%MMDIR%%/Mailman/i18n.pyc -@unexec if cmp -s %D/%%MMDIR%%/Mailman/mm_cfg.py.dist %D/%%MMDIR%%/Mailman/mm_cfg.py; then rm -f %D/%%MMDIR%%/Mailman/mm_cfg.py; fi -%%MMDIR%%/Mailman/mm_cfg.py.dist -@exec if [ ! -f %B/mm_cfg.py ] ; then cp -p %D/%F %B/mm_cfg.py; fi -@unexec rm -f %D/%%MMDIR%%/Mailman/mm_cfg.pyc +@sample %%MMDIR%%/Mailman/mm_cfg.py.dist %%MMDIR%%/Mailman/mm_cfg.py %%MMDIR%%/Mailman/versions.py %%MMDIR%%/Mailman/versions.pyc %%MMDIR%%/bin/add_members @@ -375,7 +365,7 @@ %%MMDIR%%/cron/mailpasswds %%MMDIR%%/cron/nightly_gzip %%MMDIR%%/cron/paths.py -@unexec rm -f %%MMDIR%%/cron/paths.pyc +@postunexec rm -f %%MMDIR%%/cron/paths.pyc %%MMDIR%%/cron/senddigests %%MMDIR%%/data/sitelist.cfg %%MMDIR%%/icons/PythonPowered.png @@ -2249,10 +2239,11 @@ %%MMDIR%%/tests/test_smtp.py %%MMDIR%%/tests/testall.py %%PYTHON_SITELIBDIR%%/mailman-info.txt -@dir %%MMDIR%%/archives/private -@dir %%MMDIR%%/archives/public -@dir %%MMDIR%%/lists -@dir %%MMDIR%%/locks -@dir %%MMDIR%%/logs -@dir %%MMDIR%%/qfiles @dir %%MMDIR%%/spam +@dir %%MMDIR%%/qfiles +@dir %%MMDIR%%/logs +@dir %%MMDIR%%/locks +@dir %%MMDIR%%/lists +@dir %%MMDIR%%/archives/public +@dir %%MMDIR%%/archives/private +@dir %%MMDIR%%/archives From owner-svn-ports-branches@freebsd.org Wed Mar 14 15:52:04 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 E5F62F5A2EA; Wed, 14 Mar 2018 15:52:03 +0000 (UTC) (envelope-from rm@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 9B04C871B8; Wed, 14 Mar 2018 15:52:03 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7B9371C98; Wed, 14 Mar 2018 15:52:03 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2EFq3HI020544; Wed, 14 Mar 2018 15:52:03 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2EFq32P020542; Wed, 14 Mar 2018 15:52:03 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201803141552.w2EFq32P020542@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Wed, 14 Mar 2018 15:52:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464506 - in branches/2018Q1/net-p2p/deluge-cli: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: rm X-SVN-Commit-Paths: in branches/2018Q1/net-p2p/deluge-cli: . files X-SVN-Commit-Revision: 464506 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: Wed, 14 Mar 2018 15:52:04 -0000 Author: rm Date: Wed Mar 14 15:52:02 2018 New Revision: 464506 URL: https://svnweb.freebsd.org/changeset/ports/464506 Log: MFH: r464430 net-p2p/deluge-cli: fix runtime Add upstream patch to fix bug with opening preferences window. This patch closing https://dev.deluge-torrent.org/ticket/3039 PR: 226443 Submitted by: Rainbow Approved by: ports-secteam (swills) Added: branches/2018Q1/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py - copied unchanged from r464430, head/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py Modified: branches/2018Q1/net-p2p/deluge-cli/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/net-p2p/deluge-cli/Makefile ============================================================================== --- branches/2018Q1/net-p2p/deluge-cli/Makefile Wed Mar 14 15:44:23 2018 (r464505) +++ branches/2018Q1/net-p2p/deluge-cli/Makefile Wed Mar 14 15:52:02 2018 (r464506) @@ -3,7 +3,7 @@ PORTNAME= deluge DISTVERSIONPREFIX= ${PORTNAME}- DISTVERSION= 1.3.15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-p2p python PKGNAMESUFFIX= -cli Copied: branches/2018Q1/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py (from r464430, head/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py Wed Mar 14 15:52:02 2018 (r464506, copy of r464430, head/net-p2p/deluge-cli/files/patch-deluge_ui_gtkui_preferences.py) @@ -0,0 +1,20 @@ +Closing upstream bug-report: https://dev.deluge-torrent.org/ticket/3039 + +Index: deluge/ui/gtkui/preferences.py +=================================================================== +--- deluge/ui/gtkui/preferences.py.orig 2017-05-12 12:57:19 UTC ++++ deluge/ui/gtkui/preferences.py +@@ -318,11 +318,8 @@ class Preferences(component.Component): + } + # Add proxy stuff + +- # Display workaround for single proxy in libtorrent >v0.16 +- try: +- lt_single_proxy = component.get("PreferencesManager").LT_SINGLE_PROXY +- except AttributeError: +- lt_single_proxy = False ++ # Display workaround for single proxy in libtorrent >= v0.16 ++ lt_single_proxy = True + + for t in ("peer", "web_seed", "tracker", "dht"): + if lt_single_proxy and not t == "peer": From owner-svn-ports-branches@freebsd.org Wed Mar 14 15:53: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 EA747F5A553; Wed, 14 Mar 2018 15:53:39 +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 9A2CD874E9; Wed, 14 Mar 2018 15:53:39 +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 9501F1CB5; Wed, 14 Mar 2018 15:53:39 +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 w2EFrdmP020776; Wed, 14 Mar 2018 15:53:39 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2EFrdXf020774; Wed, 14 Mar 2018 15:53:39 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201803141553.w2EFrdXf020774@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Wed, 14 Mar 2018 15:53:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464507 - branches/2018Q1/lang/php71 X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: branches/2018Q1/lang/php71 X-SVN-Commit-Revision: 464507 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: Wed, 14 Mar 2018 15:53:40 -0000 Author: tz Date: Wed Mar 14 15:53:39 2018 New Revision: 464507 URL: https://svnweb.freebsd.org/changeset/ports/464507 Log: MFH: r464250 Update PHP 7.1 from 7.1.14 to 7.1.15 Changelog: http://www.php.net/ChangeLog-7.php#7.1.15 Approved by: ports-secteam (swills) Modified: branches/2018Q1/lang/php71/Makefile branches/2018Q1/lang/php71/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/lang/php71/Makefile ============================================================================== --- branches/2018Q1/lang/php71/Makefile Wed Mar 14 15:52:02 2018 (r464506) +++ branches/2018Q1/lang/php71/Makefile Wed Mar 14 15:53:39 2018 (r464507) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php71 -PORTVERSION= 7.1.14 +PORTVERSION= 7.1.15 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: branches/2018Q1/lang/php71/distinfo ============================================================================== --- branches/2018Q1/lang/php71/distinfo Wed Mar 14 15:52:02 2018 (r464506) +++ branches/2018Q1/lang/php71/distinfo Wed Mar 14 15:53:39 2018 (r464507) @@ -1,5 +1,5 @@ -TIMESTAMP = 1517567359 -SHA256 (php-7.1.14.tar.xz) = c09f0c1074f5689b492d79034adb84e6a6c6d08c6763c02282e6318d41156779 -SIZE (php-7.1.14.tar.xz) = 12198612 +TIMESTAMP = 1520856067 +SHA256 (php-7.1.15.tar.xz) = 0e17192fb43532e4ebaa190ecec9c7e59deea7dadb7dab67b19c2081a68bd817 +SIZE (php-7.1.15.tar.xz) = 12201380 SHA256 (php-7.1.x-mail-header.patch) = 8f173d89672f7ebfabfcc3c5d7f8dec1c4243aba665db4b4046e67c34d9d4dc7 SIZE (php-7.1.x-mail-header.patch) = 4504 From owner-svn-ports-branches@freebsd.org Thu Mar 15 00:35:28 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 650A4F559C5; Thu, 15 Mar 2018 00:35:28 +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 0D15680150; Thu, 15 Mar 2018 00:35:28 +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 019DA709C; Thu, 15 Mar 2018 00:35:28 +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 w2F0ZRxF086170; Thu, 15 Mar 2018 00:35:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2F0ZREM086167; Thu, 15 Mar 2018 00:35:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803150035.w2F0ZREM086167@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 15 Mar 2018 00:35:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464546 - in branches/2018Q1/emulators/rpcs3: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/emulators/rpcs3: . files X-SVN-Commit-Revision: 464546 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, 15 Mar 2018 00:35:28 -0000 Author: jbeich Date: Thu Mar 15 00:35:27 2018 New Revision: 464546 URL: https://svnweb.freebsd.org/changeset/ports/464546 Log: MFH: r464544 emulators/rpcs3: update to 0.0.5.81 Changes: https://github.com/RPCS3/rpcs3/compare/b8e920873...5f047034a Approved by: ports-secteam (junovitch, implicit for snapshots) Modified: branches/2018Q1/emulators/rpcs3/Makefile branches/2018Q1/emulators/rpcs3/distinfo branches/2018Q1/emulators/rpcs3/files/patch-qt57 Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/emulators/rpcs3/Makefile ============================================================================== --- branches/2018Q1/emulators/rpcs3/Makefile Thu Mar 15 00:34:24 2018 (r464545) +++ branches/2018Q1/emulators/rpcs3/Makefile Thu Mar 15 00:35:27 2018 (r464546) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-54 -DISTVERSIONSUFFIX= -gb8e920873 +DISTVERSION= 0.0.5-81 +DISTVERSIONSUFFIX= -g5f047034a CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org @@ -35,7 +35,7 @@ GH_TUPLE= RPCS3:hidapi:hidapi-0.8.0-rc1-25-gca39ce8:hi USES= cmake compiler:c++14-lang iconv:wchar_t localbase:ldflags \ openal:soft pkgconfig USE_GL= gl glew -USE_QT5= qmake_build buildtools_build core dbus gui network widgets +USE_QT5= qmake_build buildtools_build core dbus gui network widgets qml USE_XORG= x11 EXTRA_PATCHES+= ${EXTRA_PATCHES_${OPSYS}_${OSREL}} EXTRA_PATCHES_FreeBSD_10.3= ${PATCHDIR}/extra-patch-no-thread_local Modified: branches/2018Q1/emulators/rpcs3/distinfo ============================================================================== --- branches/2018Q1/emulators/rpcs3/distinfo Thu Mar 15 00:34:24 2018 (r464545) +++ branches/2018Q1/emulators/rpcs3/distinfo Thu Mar 15 00:35:27 2018 (r464546) @@ -1,6 +1,6 @@ -TIMESTAMP = 1520871412 -SHA256 (RPCS3-rpcs3-v0.0.5-54-gb8e920873_GH0.tar.gz) = 35425eac00c37bf2523eb40d8992a878b58d46c70c28b6e8cab1336a9b806037 -SIZE (RPCS3-rpcs3-v0.0.5-54-gb8e920873_GH0.tar.gz) = 4305546 +TIMESTAMP = 1520956503 +SHA256 (RPCS3-rpcs3-v0.0.5-81-g5f047034a_GH0.tar.gz) = 604bf0cc2d8bc69589b414f73e28f695c498328cfd0eb17de868adfcf6d54e5d +SIZE (RPCS3-rpcs3-v0.0.5-81-g5f047034a_GH0.tar.gz) = 4314548 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 Modified: branches/2018Q1/emulators/rpcs3/files/patch-qt57 ============================================================================== --- branches/2018Q1/emulators/rpcs3/files/patch-qt57 Thu Mar 15 00:34:24 2018 (r464545) +++ branches/2018Q1/emulators/rpcs3/files/patch-qt57 Thu Mar 15 00:35:27 2018 (r464546) @@ -1,21 +1,21 @@ Revert https://github.com/RPCS3/rpcs3/commit/cf1c45dfe86e for Qt 5.7 compatibility ---- rpcs3/CMakeLists.txt.orig 2018-02-23 22:38:43 UTC +--- rpcs3/CMakeLists.txt.orig 2018-03-13 15:55:03 UTC +++ rpcs3/CMakeLists.txt @@ -6,12 +6,12 @@ set(CMAKE_CXX_STANDARD 14) include(CheckCXXCompilerFlag) # Qt section --find_package(Qt5 5.10 COMPONENTS Widgets Network) -+find_package(Qt5 5.7 COMPONENTS Widgets Network) +-find_package(Qt5 5.10 COMPONENTS Widgets Network Qml) ++find_package(Qt5 5.7 COMPONENTS Widgets Network Qml) if(WIN32) find_package(Qt5 5.10 COMPONENTS WinExtras REQUIRED) - set(RPCS3_QT_LIBS Qt5::Widgets Qt5::WinExtras Qt5::Network) + set(RPCS3_QT_LIBS Qt5::Widgets Qt5::WinExtras Qt5::Network Qt5::Qml) else() - find_package(Qt5 5.10 COMPONENTS DBus Gui) + find_package(Qt5 5.7 COMPONENTS DBus Gui) if(Qt5DBus_FOUND) - set(RPCS3_QT_LIBS Qt5::Widgets Qt5::DBus Qt5::Network) + set(RPCS3_QT_LIBS Qt5::Widgets Qt5::DBus Qt5::Network Qt5::Qml) add_definitions(-DHAVE_QTDBUS) --- rpcs3/main.cpp.orig 2018-02-21 20:18:14 UTC +++ rpcs3/main.cpp From owner-svn-ports-branches@freebsd.org Thu Mar 15 15:50: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 9C66AF5C1F4; Thu, 15 Mar 2018 15:50:42 +0000 (UTC) (envelope-from tijl@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 445A0879BB; Thu, 15 Mar 2018 15:50:42 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3F51517FA6; Thu, 15 Mar 2018 15:50:42 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2FFogX6051899; Thu, 15 Mar 2018 15:50:42 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2FFoep3051887; Thu, 15 Mar 2018 15:50:40 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201803151550.w2FFoep3051887@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 15 Mar 2018 15:50:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464595 - in branches/2018Q1: emulators/dolphin-emu lang/neko net/bctoolbox net/shadowsocks-libev security/mbedtls security/openvpn security/openvpn-devel security/polarssl13 www/hiawatha X-SVN-Group: ports-branches X-SVN-Commit-Author: tijl X-SVN-Commit-Paths: in branches/2018Q1: emulators/dolphin-emu lang/neko net/bctoolbox net/shadowsocks-libev security/mbedtls security/openvpn security/openvpn-devel security/polarssl13 www/hiawatha X-SVN-Commit-Revision: 464595 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, 15 Mar 2018 15:50:42 -0000 Author: tijl Date: Thu Mar 15 15:50:40 2018 New Revision: 464595 URL: https://svnweb.freebsd.org/changeset/ports/464595 Log: MFH: r464085, r464247 - Update security/polarssl13 to 1.3.22. - Update security/mbedtls to 2.7.1 and bump dependent ports. Security: https://tls.mbed.org/tech-updates/security-advisories/mbedtls-security-advisory-2018-01 Approved by: ports-secteam (swills) Modified: branches/2018Q1/emulators/dolphin-emu/Makefile branches/2018Q1/lang/neko/Makefile branches/2018Q1/net/bctoolbox/Makefile branches/2018Q1/net/shadowsocks-libev/Makefile branches/2018Q1/security/mbedtls/Makefile branches/2018Q1/security/mbedtls/distinfo branches/2018Q1/security/mbedtls/pkg-plist branches/2018Q1/security/openvpn-devel/Makefile branches/2018Q1/security/openvpn/Makefile branches/2018Q1/security/polarssl13/Makefile branches/2018Q1/security/polarssl13/distinfo branches/2018Q1/www/hiawatha/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/emulators/dolphin-emu/Makefile ============================================================================== --- branches/2018Q1/emulators/dolphin-emu/Makefile Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/emulators/dolphin-emu/Makefile Thu Mar 15 15:50:40 2018 (r464595) @@ -3,7 +3,7 @@ PORTNAME= dolphin-emu PORTVERSION= 5.0 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= emulators MAINTAINER= martymac@FreeBSD.org Modified: branches/2018Q1/lang/neko/Makefile ============================================================================== --- branches/2018Q1/lang/neko/Makefile Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/lang/neko/Makefile Thu Mar 15 15:50:40 2018 (r464595) @@ -2,6 +2,7 @@ PORTNAME= neko PORTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= lang MAINTAINER= penzin.dev@gmail.com Modified: branches/2018Q1/net/bctoolbox/Makefile ============================================================================== --- branches/2018Q1/net/bctoolbox/Makefile Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/net/bctoolbox/Makefile Thu Mar 15 15:50:40 2018 (r464595) @@ -3,6 +3,7 @@ PORTNAME= bctoolbox PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SAVANNAH/linphone/bctoolbox Modified: branches/2018Q1/net/shadowsocks-libev/Makefile ============================================================================== --- branches/2018Q1/net/shadowsocks-libev/Makefile Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/net/shadowsocks-libev/Makefile Thu Mar 15 15:50:40 2018 (r464595) @@ -4,6 +4,7 @@ PORTNAME= shadowsocks-libev DISTVERSIONPREFIX= v DISTVERSION= 3.1.3 +PORTREVISION= 1 CATEGORIES= net MAINTAINER= xiaoding+freebsd@xiaoding.org Modified: branches/2018Q1/security/mbedtls/Makefile ============================================================================== --- branches/2018Q1/security/mbedtls/Makefile Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/security/mbedtls/Makefile Thu Mar 15 15:50:40 2018 (r464595) @@ -1,10 +1,9 @@ # $FreeBSD$ PORTNAME= mbedtls -PORTVERSION= 2.6.0 -DISTVERSIONSUFFIX= -apache +PORTVERSION= 2.7.1 +DISTVERSIONPREFIX=${PORTNAME}- CATEGORIES= security devel -MASTER_SITES= https://tls.mbed.org/download/ MAINTAINER= tijl@FreeBSD.org COMMENT= SSL/TLS and cryptography library @@ -12,13 +11,14 @@ COMMENT= SSL/TLS and cryptography library LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/apache-2.0.txt +USE_GITHUB= yes +GH_ACCOUNT= ARMmbed + ALL_TARGET= no_test TEST_TARGET= test MAKE_ENV= SHARED=1 USES= gmake tar:tgz USE_LDCONFIG= yes - -WRKSRC= ${WRKDIR}/mbedtls-${PORTVERSION} CONFLICTS_INSTALL= polarssl13-[0-9]* Modified: branches/2018Q1/security/mbedtls/distinfo ============================================================================== --- branches/2018Q1/security/mbedtls/distinfo Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/security/mbedtls/distinfo Thu Mar 15 15:50:40 2018 (r464595) @@ -1,3 +1,3 @@ -TIMESTAMP = 1505971872 -SHA256 (mbedtls-2.6.0-apache.tgz) = 99bc9d4212d3d885eeb96273bcde8ecc649a481404b8d7ea7bb26397c9909687 -SIZE (mbedtls-2.6.0-apache.tgz) = 1973397 +TIMESTAMP = 1520855936 +SHA256 (ARMmbed-mbedtls-mbedtls-2.7.1_GH0.tar.gz) = f7e960626ada42677d8b0b6f0ddd1961edf589938eb7965887a362d2640fb543 +SIZE (ARMmbed-mbedtls-mbedtls-2.7.1_GH0.tar.gz) = 2040225 Modified: branches/2018Q1/security/mbedtls/pkg-plist ============================================================================== --- branches/2018Q1/security/mbedtls/pkg-plist Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/security/mbedtls/pkg-plist Thu Mar 15 15:50:40 2018 (r464595) @@ -98,6 +98,7 @@ include/mbedtls/platform.h include/mbedtls/platform_time.h include/mbedtls/ripemd160.h include/mbedtls/rsa.h +include/mbedtls/rsa_internal.h include/mbedtls/sha1.h include/mbedtls/sha256.h include/mbedtls/sha512.h @@ -117,7 +118,7 @@ include/mbedtls/x509_csr.h include/mbedtls/xtea.h lib/libmbedcrypto.a lib/libmbedcrypto.so -lib/libmbedcrypto.so.0 +lib/libmbedcrypto.so.2 lib/libmbedtls.a lib/libmbedtls.so lib/libmbedtls.so.10 Modified: branches/2018Q1/security/openvpn-devel/Makefile ============================================================================== --- branches/2018Q1/security/openvpn-devel/Makefile Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/security/openvpn-devel/Makefile Thu Mar 15 15:50:40 2018 (r464595) @@ -3,7 +3,7 @@ PORTNAME= openvpn DISTVERSION= 201725 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= security net MASTER_SITES= https://secure-computing.net/files/openvpn/ \ ftp://ftp2.secure-computing.net/pub/FreeBSD/openvpn-devel/ Modified: branches/2018Q1/security/openvpn/Makefile ============================================================================== --- branches/2018Q1/security/openvpn/Makefile Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/security/openvpn/Makefile Thu Mar 15 15:50:40 2018 (r464595) @@ -3,7 +3,7 @@ PORTNAME= openvpn DISTVERSION= 2.4.4 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= security net MASTER_SITES= https://swupdate.openvpn.net/community/releases/ \ https://build.openvpn.net/downloads/releases/ Modified: branches/2018Q1/security/polarssl13/Makefile ============================================================================== --- branches/2018Q1/security/polarssl13/Makefile Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/security/polarssl13/Makefile Thu Mar 15 15:50:40 2018 (r464595) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= polarssl -PORTVERSION= 1.3.21 +PORTVERSION= 1.3.22 DISTVERSIONSUFFIX= -gpl CATEGORIES= security devel MASTER_SITES= https://polarssl.org/download/ @@ -13,6 +13,9 @@ COMMENT= SSL/TLS and cryptography library LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE + +DEPRECATED= has reached end of life +EXPIRATION_DATE=2018-04-30 ALL_TARGET= no_test MAKE_ENV= SHARED=1 Modified: branches/2018Q1/security/polarssl13/distinfo ============================================================================== --- branches/2018Q1/security/polarssl13/distinfo Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/security/polarssl13/distinfo Thu Mar 15 15:50:40 2018 (r464595) @@ -1,3 +1,3 @@ -TIMESTAMP = 1505971554 -SHA256 (mbedtls-1.3.21-gpl.tgz) = 85ab0ac922e2b254063384fcae8f327acea48079eef8feccd90a4288a9d2ba84 -SIZE (mbedtls-1.3.21-gpl.tgz) = 1802357 +TIMESTAMP = 1520701401 +SHA256 (mbedtls-1.3.22-gpl.tgz) = ded041aa4acf9a3e4d0c85bf334b0860135da996e75afdcc3abf22f403d14457 +SIZE (mbedtls-1.3.22-gpl.tgz) = 1890430 Modified: branches/2018Q1/www/hiawatha/Makefile ============================================================================== --- branches/2018Q1/www/hiawatha/Makefile Thu Mar 15 15:21:33 2018 (r464594) +++ branches/2018Q1/www/hiawatha/Makefile Thu Mar 15 15:50:40 2018 (r464595) @@ -3,6 +3,7 @@ PORTNAME= hiawatha PORTVERSION= 10.7 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= https://www.hiawatha-webserver.org/files/ From owner-svn-ports-branches@freebsd.org Thu Mar 15 17:53:12 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 BB86FF31CD1; Thu, 15 Mar 2018 17:53:12 +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 6CF176F0C9; Thu, 15 Mar 2018 17:53:12 +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 67E121941B; Thu, 15 Mar 2018 17:53:12 +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 w2FHrC3L019022; Thu, 15 Mar 2018 17:53:12 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2FHrCAt019020; Thu, 15 Mar 2018 17:53:12 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201803151753.w2FHrCAt019020@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 15 Mar 2018 17:53:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464616 - in branches/2018Q1/sysutils/devcpu-data: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: in branches/2018Q1/sysutils/devcpu-data: . files X-SVN-Commit-Revision: 464616 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, 15 Mar 2018 17:53:13 -0000 Author: bdrewery Date: Thu Mar 15 17:53:11 2018 New Revision: 464616 URL: https://svnweb.freebsd.org/changeset/ports/464616 Log: MFH: r459266 sysutils/devcpu-data: Migrate our microcode update on Intel to use precreated files. Intel provides prefabricated per-cpu microcode update files. We no longer need a tool to extract them from the legacy microcode.dat store. This matches what upstream linux distributions are doing now. Tested on my Intel machines here and updates still succeed. Reviewed by: swills cem Sponsored by: Limelight Networks Differential Revision: https://reviews.freebsd.org/D13921 Approved by: portmgr (swills) Deleted: branches/2018Q1/sysutils/devcpu-data/files/Makefile branches/2018Q1/sysutils/devcpu-data/files/ucode-tool.c Modified: branches/2018Q1/sysutils/devcpu-data/Makefile branches/2018Q1/sysutils/devcpu-data/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/sysutils/devcpu-data/Makefile ============================================================================== --- branches/2018Q1/sysutils/devcpu-data/Makefile Thu Mar 15 17:52:27 2018 (r464615) +++ branches/2018Q1/sysutils/devcpu-data/Makefile Thu Mar 15 17:53:11 2018 (r464616) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= data -PORTVERSION= 1.14 -PORTREVISION= 3 +PORTVERSION= 1.15 CATEGORIES= sysutils MASTER_SITES= https://downloadmirror.intel.com/27337/eng/:intel \ LOCAL/sbruno:amd PKGNAMEPREFIX= devcpu- -DISTFILES= microcode-20171117.tgz:intel amd64-microcode_3.20171205.1.tar.xz:amd +DISTFILES= microcode-20171117.tgz:intel \ + amd64-microcode_3.20171205.1.tar.xz:amd MAINTAINER= clarkjc@runbox.com COMMENT= Intel and AMD CPUs microcode updates @@ -20,17 +20,19 @@ LICENSE_PERMS= dist-mirror no-dist-sell pkg-mirror no- ONLY_FOR_ARCHS= amd64 i386 NO_ARCH= yes +NO_BUILD= yes NO_WRKSUBDIR= yes DATADIR= ${PREFIX}/share/cpucontrol USE_RC_SUBR= microcode_update -post-extract: - ${CP} -p ${FILESDIR}/Makefile ${FILESDIR}/ucode-tool.c ${WRKSRC} - do-install: ${MKDIR} ${STAGEDIR}${DATADIR}/ - ${INSTALL_DATA} ${WRKSRC}/mcodes/* ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/intel-ucode/* ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/amd64-microcode-3.20171205.1/microcode_amd.bin ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/amd64-microcode-3.20171205.1/microcode_amd_fam15h.bin ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/amd64-microcode-3.20171205.1/microcode_amd_fam16h.bin ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/amd64-microcode-3.20171205.1/microcode_amd_fam17h.bin ${STAGEDIR}${DATADIR}/ .include Modified: branches/2018Q1/sysutils/devcpu-data/pkg-plist ============================================================================== --- branches/2018Q1/sysutils/devcpu-data/pkg-plist Thu Mar 15 17:52:27 2018 (r464615) +++ branches/2018Q1/sysutils/devcpu-data/pkg-plist Thu Mar 15 17:53:11 2018 (r464616) @@ -1,168 +1,98 @@ -%%DATADIR%%/2f0708.fw -%%DATADIR%%/M01106C2217.fw -%%DATADIR%%/M01106CA107.fw -%%DATADIR%%/M0120661104.fw -%%DATADIR%%/M0220661105_CV.fw -%%DATADIR%%/M04106C2218.fw -%%DATADIR%%/M04106CA107.fw -%%DATADIR%%/M08106C2219.fw -%%DATADIR%%/M08106CA107.fw -%%DATADIR%%/M10106CA107.fw -%%DATADIR%%/MU163202.fw -%%DATADIR%%/MU165040.fw -%%DATADIR%%/MU165041.fw -%%DATADIR%%/MU165045.fw -%%DATADIR%%/MU165140.fw -%%DATADIR%%/MU16522a.fw -%%DATADIR%%/MU16522c.fw -%%DATADIR%%/MU16530c.fw -%%DATADIR%%/MU16530d.fw -%%DATADIR%%/MU165310.fw -%%DATADIR%%/MU16600a.fw -%%DATADIR%%/MU166503.fw -%%DATADIR%%/MU166a0b.fw -%%DATADIR%%/MU166a0c.fw -%%DATADIR%%/MU166a0d.fw -%%DATADIR%%/MU166d05.fw -%%DATADIR%%/MU166d06.fw -%%DATADIR%%/MU166d07.fw -%%DATADIR%%/MU16810d.fw -%%DATADIR%%/MU16810e.fw -%%DATADIR%%/MU16810f.fw -%%DATADIR%%/MU168111.fw -%%DATADIR%%/MU168307.fw -%%DATADIR%%/MU168308.fw -%%DATADIR%%/MU168607.fw -%%DATADIR%%/MU168608.fw -%%DATADIR%%/MU16860a.fw -%%DATADIR%%/MU16860c.fw -%%DATADIR%%/MU168a01.fw -%%DATADIR%%/MU168a04.fw -%%DATADIR%%/MU168a05.fw -%%DATADIR%%/MU16b11c.fw -%%DATADIR%%/MU16b11d.fw -%%DATADIR%%/MU16b401.fw -%%DATADIR%%/MU16b402.fw -%%DATADIR%%/MU26522b.fw -%%DATADIR%%/MU26530b.fw -%%DATADIR%%/MU268110.fw -%%DATADIR%%/MU268602.fw -%%DATADIR%%/m011066143.fw -%%DATADIR%%/m011067660F.fw -%%DATADIR%%/m016fbBA.fw -%%DATADIR%%/m01f0712.fw -%%DATADIR%%/m01f0a13.fw -%%DATADIR%%/m01f2529.fw -%%DATADIR%%/m01f480c.fw -%%DATADIR%%/m01f6402.fw -%%DATADIR%%/m01f6508.fw -%%DATADIR%%/m021066142.fw -%%DATADIR%%/m02906eb_00000071_00000072.fw -%%DATADIR%%/m02f0a15.fw -%%DATADIR%%/m02f241f.fw -%%DATADIR%%/m02f252a.fw -%%DATADIR%%/m02f2610.fw -%%DATADIR%%/m02f2738.fw -%%DATADIR%%/m02f292d.fw -%%DATADIR%%/m02f4116.fw -%%DATADIR%%/m02f480e.fw -%%DATADIR%%/m03106a4_00000012.fw -%%DATADIR%%/m03106a5_00000019.fw -%%DATADIR%%/m041067660F.fw -%%DATADIR%%/m046fbBC.fw -%%DATADIR%%/m04f0a14.fw -%%DATADIR%%/m04f122e.fw -%%DATADIR%%/m04f241e.fw -%%DATADIR%%/m04f252b.fw -%%DATADIR%%/m04f2737.fw -%%DATADIR%%/m04f292e.fw -%%DATADIR%%/m04f620f.fw -%%DATADIR%%/m05206f2_00000037.fw -%%DATADIR%%/m08106d129.fw -%%DATADIR%%/m086fbBB.fw -%%DATADIR%%/m08f2739.fw -%%DATADIR%%/m08f292f.fw -%%DATADIR%%/m0df320a.fw -%%DATADIR%%/m0df330c.fw -%%DATADIR%%/m101067660F.fw -%%DATADIR%%/m101067770A.fw -%%DATADIR%%/m1050662_0000000f.fw -%%DATADIR%%/m1050663_0700000d.fw -%%DATADIR%%/m1050664_0f00000a.fw -%%DATADIR%%/m1069507.fw -%%DATADIR%%/m106f76a.fw -%%DATADIR%%/m106fbBA.fw -%%DATADIR%%/m10f2421.fw -%%DATADIR%%/m10f252c.fw -%%DATADIR%%/m111067AA0B.fw -%%DATADIR%%/m1220652_0000000e.fw -%%DATADIR%%/m12206a7_00000029.fw -%%DATADIR%%/m12306a9_0000001c.fw -%%DATADIR%%/m13106e5_00000007.fw -%%DATADIR%%/m16f25d.fw -%%DATADIR%%/m16f6d0.fw -%%DATADIR%%/m16fda4.fw -%%DATADIR%%/m1df3417.fw -%%DATADIR%%/m2069507.fw -%%DATADIR%%/m206d618.fw -%%DATADIR%%/m206e839.fw -%%DATADIR%%/m206ec54.fw -%%DATADIR%%/m206f25c.fw -%%DATADIR%%/m206f6d1.fw -%%DATADIR%%/m206fbBA.fw -%%DATADIR%%/m206fda4.fw -%%DATADIR%%/m2240671_00000017.fw -%%DATADIR%%/m22906ea_0000006f_00000070.fw -%%DATADIR%%/m22f6809.fw -%%DATADIR%%/m2a906e9_0000005d_0000005e.fw -%%DATADIR%%/m32306c3_00000022.fw -%%DATADIR%%/m3240661_00000017.fw -%%DATADIR%%/m34f6404.fw -%%DATADIR%%/m36506e3_000000b9_000000ba.fw -%%DATADIR%%/m401067660F.fw -%%DATADIR%%/m406f76b.fw -%%DATADIR%%/m406fbBC.fw -%%DATADIR%%/m441067AA0B.fw -%%DATADIR%%/m46f6d2.fw -%%DATADIR%%/m5cf4a04.fw -%%DATADIR%%/m5df4a02.fw -%%DATADIR%%/m5ff4807.fw -%%DATADIR%%/m6d206d6_00000619.fw -%%DATADIR%%/m6d206d7_00000710.fw -%%DATADIR%%/m6f306f2_0000003a.fw -%%DATADIR%%/m7240651_00000020.fw -%%DATADIR%%/m801066144.fw -%%DATADIR%%/m801067660F.fw -%%DATADIR%%/m80306f4_0000000f.fw -%%DATADIR%%/m8069547.fw -%%DATADIR%%/m806ec59.fw -%%DATADIR%%/m806fa95.fw -%%DATADIR%%/m806fbBA.fw -%%DATADIR%%/m806fda4.fw -%%DATADIR%%/m9220655_00000004.fw -%%DATADIR%%/m9df4305.fw -%%DATADIR%%/m9df4406.fw -%%DATADIR%%/m9df4703.fw -%%DATADIR%%/mA01067AA0B.fw -%%DATADIR%%/m_01_706a1_0000001e.fw -%%DATADIR%%/m_03_506c9_0000002c.fw -%%DATADIR%%/mb750654_02000035.fw -%%DATADIR%%/mbdf4117.fw -%%DATADIR%%/mbdf4903.fw -%%DATADIR%%/mc0306d4_00000025.fw -%%DATADIR%%/mc0406e3_000000b9_000000ba.fw -%%DATADIR%%/mc0806e9_00000061_00000062.fw -%%DATADIR%%/mc0806ea_0000006f_00000070.fw -%%DATADIR%%/med306e4_00000428.fw -%%DATADIR%%/med306e6_00000600.fw -%%DATADIR%%/med306e7_0000070d.fw -%%DATADIR%%/mef406f1_0b000021.fw +%%DATADIR%%/06-03-02 +%%DATADIR%%/06-05-00 +%%DATADIR%%/06-05-01 +%%DATADIR%%/06-05-02 +%%DATADIR%%/06-05-03 +%%DATADIR%%/06-06-00 +%%DATADIR%%/06-06-05 +%%DATADIR%%/06-06-0a +%%DATADIR%%/06-06-0d +%%DATADIR%%/06-07-01 +%%DATADIR%%/06-07-02 +%%DATADIR%%/06-07-03 +%%DATADIR%%/06-08-01 +%%DATADIR%%/06-08-03 +%%DATADIR%%/06-08-06 +%%DATADIR%%/06-08-0a +%%DATADIR%%/06-09-05 +%%DATADIR%%/06-0a-00 +%%DATADIR%%/06-0a-01 +%%DATADIR%%/06-0b-01 +%%DATADIR%%/06-0b-04 +%%DATADIR%%/06-0d-06 +%%DATADIR%%/06-0e-08 +%%DATADIR%%/06-0e-0c +%%DATADIR%%/06-0f-02 +%%DATADIR%%/06-0f-06 +%%DATADIR%%/06-0f-07 +%%DATADIR%%/06-0f-0a +%%DATADIR%%/06-0f-0b +%%DATADIR%%/06-0f-0d +%%DATADIR%%/06-16-01 +%%DATADIR%%/06-17-06 +%%DATADIR%%/06-17-07 +%%DATADIR%%/06-17-0a +%%DATADIR%%/06-1a-04 +%%DATADIR%%/06-1a-05 +%%DATADIR%%/06-1c-02 +%%DATADIR%%/06-1c-0a +%%DATADIR%%/06-1d-01 +%%DATADIR%%/06-1e-05 +%%DATADIR%%/06-25-02 +%%DATADIR%%/06-25-05 +%%DATADIR%%/06-26-01 +%%DATADIR%%/06-2a-07 +%%DATADIR%%/06-2d-06 +%%DATADIR%%/06-2d-07 +%%DATADIR%%/06-2f-02 +%%DATADIR%%/06-3a-09 +%%DATADIR%%/06-3c-03 +%%DATADIR%%/06-3d-04 +%%DATADIR%%/06-3e-04 +%%DATADIR%%/06-3e-06 +%%DATADIR%%/06-3e-07 +%%DATADIR%%/06-3f-02 +%%DATADIR%%/06-3f-04 +%%DATADIR%%/06-45-01 +%%DATADIR%%/06-46-01 +%%DATADIR%%/06-47-01 +%%DATADIR%%/06-4e-03 +%%DATADIR%%/06-4f-01 +%%DATADIR%%/06-55-04 +%%DATADIR%%/06-56-02 +%%DATADIR%%/06-56-03 +%%DATADIR%%/06-56-04 +%%DATADIR%%/06-5c-09 +%%DATADIR%%/06-5e-03 +%%DATADIR%%/06-7a-01 +%%DATADIR%%/06-8e-09 +%%DATADIR%%/06-8e-0a +%%DATADIR%%/06-9e-09 +%%DATADIR%%/06-9e-0a +%%DATADIR%%/06-9e-0b +%%DATADIR%%/0f-00-07 +%%DATADIR%%/0f-00-0a +%%DATADIR%%/0f-01-02 +%%DATADIR%%/0f-02-04 +%%DATADIR%%/0f-02-05 +%%DATADIR%%/0f-02-06 +%%DATADIR%%/0f-02-07 +%%DATADIR%%/0f-02-09 +%%DATADIR%%/0f-03-02 +%%DATADIR%%/0f-03-03 +%%DATADIR%%/0f-03-04 +%%DATADIR%%/0f-04-01 +%%DATADIR%%/0f-04-03 +%%DATADIR%%/0f-04-04 +%%DATADIR%%/0f-04-07 +%%DATADIR%%/0f-04-08 +%%DATADIR%%/0f-04-09 +%%DATADIR%%/0f-04-0a +%%DATADIR%%/0f-06-02 +%%DATADIR%%/0f-06-04 +%%DATADIR%%/0f-06-05 +%%DATADIR%%/0f-06-08 %%DATADIR%%/microcode_amd.bin %%DATADIR%%/microcode_amd_fam15h.bin %%DATADIR%%/microcode_amd_fam16h.bin %%DATADIR%%/microcode_amd_fam17h.bin -%%DATADIR%%/mu267114.fw -%%DATADIR%%/mu267238.fw -%%DATADIR%%/mu26732e.fw -%%DATADIR%%/mu26a003.fw -%%DATADIR%%/mu26a101.fw From owner-svn-ports-branches@freebsd.org Thu Mar 15 17:53: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 EF533F31DA1; Thu, 15 Mar 2018 17:53:40 +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 9A38E6F1C8; Thu, 15 Mar 2018 17:53:40 +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 951471941C; Thu, 15 Mar 2018 17:53:40 +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 w2FHregN019180; Thu, 15 Mar 2018 17:53:40 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2FHreur019176; Thu, 15 Mar 2018 17:53:40 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201803151753.w2FHreur019176@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 15 Mar 2018 17:53:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464617 - in branches/2018Q1/sysutils/devcpu-data: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: in branches/2018Q1/sysutils/devcpu-data: . files X-SVN-Commit-Revision: 464617 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, 15 Mar 2018 17:53:41 -0000 Author: bdrewery Date: Thu Mar 15 17:53:39 2018 New Revision: 464617 URL: https://svnweb.freebsd.org/changeset/ports/464617 Log: MFH: r459464 sysutils/devcpu-data: Revert back to legacy microcode.dat implementation. Either there is a problem with the Intel supplied microcode files or cpucontrol does not yet understand how to process a micrcode update file with multiple entries. For now, abort. Reviewed by: swills Sponsored by: Limelight Networks Differential Revision: https://reviews.freebsd.org/D13987 Approved by: portmgr (swills) Added: branches/2018Q1/sysutils/devcpu-data/files/Makefile - copied unchanged from r459464, head/sysutils/devcpu-data/files/Makefile branches/2018Q1/sysutils/devcpu-data/files/ucode-tool.c - copied unchanged from r459464, head/sysutils/devcpu-data/files/ucode-tool.c Modified: branches/2018Q1/sysutils/devcpu-data/Makefile branches/2018Q1/sysutils/devcpu-data/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/sysutils/devcpu-data/Makefile ============================================================================== --- branches/2018Q1/sysutils/devcpu-data/Makefile Thu Mar 15 17:53:11 2018 (r464616) +++ branches/2018Q1/sysutils/devcpu-data/Makefile Thu Mar 15 17:53:39 2018 (r464617) @@ -3,6 +3,7 @@ PORTNAME= data PORTVERSION= 1.15 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://downloadmirror.intel.com/27337/eng/:intel \ LOCAL/sbruno:amd @@ -20,19 +21,21 @@ LICENSE_PERMS= dist-mirror no-dist-sell pkg-mirror no- ONLY_FOR_ARCHS= amd64 i386 NO_ARCH= yes -NO_BUILD= yes NO_WRKSUBDIR= yes DATADIR= ${PREFIX}/share/cpucontrol USE_RC_SUBR= microcode_update +post-extract: + ${CP} -p ${FILESDIR}/Makefile ${FILESDIR}/ucode-tool.c ${WRKSRC} + do-install: ${MKDIR} ${STAGEDIR}${DATADIR}/ - ${INSTALL_DATA} ${WRKSRC}/intel-ucode/* ${STAGEDIR}${DATADIR}/ ${INSTALL_DATA} ${WRKSRC}/amd64-microcode-3.20171205.1/microcode_amd.bin ${STAGEDIR}${DATADIR}/ ${INSTALL_DATA} ${WRKSRC}/amd64-microcode-3.20171205.1/microcode_amd_fam15h.bin ${STAGEDIR}${DATADIR}/ ${INSTALL_DATA} ${WRKSRC}/amd64-microcode-3.20171205.1/microcode_amd_fam16h.bin ${STAGEDIR}${DATADIR}/ ${INSTALL_DATA} ${WRKSRC}/amd64-microcode-3.20171205.1/microcode_amd_fam17h.bin ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/mcodes/* ${STAGEDIR}${DATADIR}/ .include Copied: branches/2018Q1/sysutils/devcpu-data/files/Makefile (from r459464, head/sysutils/devcpu-data/files/Makefile) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/sysutils/devcpu-data/files/Makefile Thu Mar 15 17:53:39 2018 (r464617, copy of r459464, head/sysutils/devcpu-data/files/Makefile) @@ -0,0 +1,14 @@ +# $FreeBSD$ +INTEL_UCODE= microcode.dat +OUTPUT_DIR= mcodes +all: ucode +ucode: ucode-tool + mkdir -p $(OUTPUT_DIR) + ./ucode-tool -o $(OUTPUT_DIR) -i $(INTEL_UCODE) + +# Use the host cc to compile ucode-tool in case of cross-compile +ucode-tool: ucode-tool.c + cc ucode-tool.c -o $@ + +clean: + rm -rf $(OUTPUT_DIR) ucode-tool Copied: branches/2018Q1/sysutils/devcpu-data/files/ucode-tool.c (from r459464, head/sysutils/devcpu-data/files/ucode-tool.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/sysutils/devcpu-data/files/ucode-tool.c Thu Mar 15 17:53:39 2018 (r464617, copy of r459464, head/sysutils/devcpu-data/files/ucode-tool.c) @@ -0,0 +1,229 @@ +/*- + * Copyright (c) 2013 John Clark + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +/* $FreeBSD$ */ +#include +#include +#include +#include +#include +#include +#include + +#define BUFFER_SIZE 4096 + +static void error(const char *fmt, ...); +static void process_amd(const char *container, const char *outdir); +static void process_intel(const char *filename, const char *outdir); + +/* + * This tool extracts microcode from container files provided by + * Intel and AMD for their families of popular microprocessors. + */ +int +main(int argc, char *argv[]) +{ + int ch, i, mode = -1; + char *outdir = "."; + + /* Parse the command line arguments. */ + while ((ch = getopt(argc, argv, "aio:")) != -1) { + switch (ch) { + case 'a': /* Mode select */ + case 'i': + mode = ch; + break; + case 'o': /* Output directory */ + outdir = optarg; + break; + default: /* Unknown */ + error("Error: Invalid argument\n"); + } + } + + if (mode == 'i') { + /* Process Intel microcode container files */ + for (i = optind; i < argc; i++) { + process_intel(argv[i], outdir); + } + } else if (mode == 'a') { + /* Process AMD microcode container files */ + for (i = optind; i < argc; i++) { + process_amd(argv[i], outdir); + } + } else { + error("Error: Invalid mode\n"); + } + + return 0; +} + +/* Display an error message and exit with a status code of 1. */ +static void +error(const char *fmt, ...) +{ + va_list args; + + if (fmt == NULL) { + perror("Error"); + } else { + va_start(args, fmt); + vfprintf(stderr, fmt, args); + va_end(args); + } + exit(1); +} + +/* Process an AMD supplied microcode container file. */ +#define AMD_HEADER_LEN 12 +#define AMD_SKIP_OFFSET 8 +#define AMD_UCODE_HEADER_LEN 8 +#define AMD_UCODE_HEADER_TYPE 0x00000001 +#define AMD_UCODE_ID_OFFSET 4 +#define AMD_UCODE_SIG_OFFSET 24 +static void +process_amd(const char *container, const char *outdir) +{ + char outname[FILENAME_MAX]; + const uint8_t magic[] = { + 0x44, 0x4d, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00 + }; + FILE *fin, *fout; + uint8_t *buf; + uint32_t id, len, sig; + int num; + + if ((buf = malloc(BUFFER_SIZE)) == NULL) + error(NULL); + + /* Open the container file and read the header. */ + if ((fin = fopen(container, "rb")) == NULL) + error(NULL); + if (fread(buf, AMD_HEADER_LEN, 1, fin) != 1) { + error("Error: Truncated file: %s\n", container); + } + + /* Check the magic numbers. */ + if (memcmp(magic, buf, sizeof(magic)) != 0) { + error("Error: Invalid file: %s\n", container); + } + + /* Seek to the first microcode image. */ + if (fseek(fin, le32dec(buf + AMD_SKIP_OFFSET), SEEK_CUR) != 0) + error(NULL); + + /* Read all microcode images. */ + while ((num = fread(buf, 1, AMD_UCODE_HEADER_LEN, fin)) != 0) { + /* Read and validate the image. */ + if (num != AMD_UCODE_HEADER_LEN) { + error("Error: Truncated file: %s\n", container); + } + if (le32dec(buf) != AMD_UCODE_HEADER_TYPE) { + error("Error: Invalid type: %s\n", container); + } + len = le32dec(buf + sizeof(uint32_t)); + if (len > BUFFER_SIZE) { + if ((buf = realloc(buf, len)) == NULL) + error(NULL); + } + if (fread(buf, len, 1, fin) != 1) { + error("Error: Truncated file: %s\n", container); + } + + /* Write the image to an output file. */ + sig = le32dec(buf + AMD_UCODE_SIG_OFFSET); + id = le32dec(buf + AMD_UCODE_ID_OFFSET); + snprintf(outname, sizeof(outname), "%s/AMD-%08x-%08x.fw", + outdir, sig, id); + if ((fout = fopen(outname, "wb")) == NULL) + error(NULL); + if (fwrite(buf, len, 1, fout) != 1) + error(NULL); + if (fclose(fout) != 0) + error(NULL); + } + + if (fclose(fin) != 0) + error(NULL); + free(buf); +} + +/* Process an Intel supplied microcode container file. */ +static void +process_intel(const char *container, const char *outdir) +{ + char outname[FILENAME_MAX]; + FILE *fin, *fout = NULL; + char *buf, *token; + const char * const sep = ",. \t\n"; + uint32_t val; + + if ((buf = malloc(BUFFER_SIZE)) == NULL) + error(NULL); + if ((fin = fopen(container, "r")) == NULL) + error(NULL); + + /* Process the container file line by line. */ + while (fgets(buf, BUFFER_SIZE, fin) != NULL) { + if ((token = strtok(buf, sep)) == NULL) + continue; + + if (*token == '/') { + /* Process a comment line. */ + if (fout != NULL) { + /* Close previous output file. */ + if (fclose(fout) != 0) + error(NULL); + fout = NULL; + } + if ((token = strtok(NULL, sep)) != NULL) { + /* Construct next file name. */ + snprintf(outname, sizeof(outname), "%s/%s.fw", + outdir, token); + } + } else { + /* Process a data line. */ + if ((fout == NULL) && (token != NULL)) { + if ((fout = fopen(outname, "wb")) == NULL) + error(NULL); + } + while (token != NULL) { + val = htole32(strtoul(token, NULL, 0)); + if (fwrite(&val, sizeof(val), 1, fout) != 1) + error(NULL); + token = strtok(NULL, sep); + } + } + } + + if (fout != NULL) { + if (fclose(fout) != 0) + error(NULL); + } + if (fclose(fin) != 0) + error(NULL); + free(buf); +} Modified: branches/2018Q1/sysutils/devcpu-data/pkg-plist ============================================================================== --- branches/2018Q1/sysutils/devcpu-data/pkg-plist Thu Mar 15 17:53:11 2018 (r464616) +++ branches/2018Q1/sysutils/devcpu-data/pkg-plist Thu Mar 15 17:53:39 2018 (r464617) @@ -1,98 +1,168 @@ -%%DATADIR%%/06-03-02 -%%DATADIR%%/06-05-00 -%%DATADIR%%/06-05-01 -%%DATADIR%%/06-05-02 -%%DATADIR%%/06-05-03 -%%DATADIR%%/06-06-00 -%%DATADIR%%/06-06-05 -%%DATADIR%%/06-06-0a -%%DATADIR%%/06-06-0d -%%DATADIR%%/06-07-01 -%%DATADIR%%/06-07-02 -%%DATADIR%%/06-07-03 -%%DATADIR%%/06-08-01 -%%DATADIR%%/06-08-03 -%%DATADIR%%/06-08-06 -%%DATADIR%%/06-08-0a -%%DATADIR%%/06-09-05 -%%DATADIR%%/06-0a-00 -%%DATADIR%%/06-0a-01 -%%DATADIR%%/06-0b-01 -%%DATADIR%%/06-0b-04 -%%DATADIR%%/06-0d-06 -%%DATADIR%%/06-0e-08 -%%DATADIR%%/06-0e-0c -%%DATADIR%%/06-0f-02 -%%DATADIR%%/06-0f-06 -%%DATADIR%%/06-0f-07 -%%DATADIR%%/06-0f-0a -%%DATADIR%%/06-0f-0b -%%DATADIR%%/06-0f-0d -%%DATADIR%%/06-16-01 -%%DATADIR%%/06-17-06 -%%DATADIR%%/06-17-07 -%%DATADIR%%/06-17-0a -%%DATADIR%%/06-1a-04 -%%DATADIR%%/06-1a-05 -%%DATADIR%%/06-1c-02 -%%DATADIR%%/06-1c-0a -%%DATADIR%%/06-1d-01 -%%DATADIR%%/06-1e-05 -%%DATADIR%%/06-25-02 -%%DATADIR%%/06-25-05 -%%DATADIR%%/06-26-01 -%%DATADIR%%/06-2a-07 -%%DATADIR%%/06-2d-06 -%%DATADIR%%/06-2d-07 -%%DATADIR%%/06-2f-02 -%%DATADIR%%/06-3a-09 -%%DATADIR%%/06-3c-03 -%%DATADIR%%/06-3d-04 -%%DATADIR%%/06-3e-04 -%%DATADIR%%/06-3e-06 -%%DATADIR%%/06-3e-07 -%%DATADIR%%/06-3f-02 -%%DATADIR%%/06-3f-04 -%%DATADIR%%/06-45-01 -%%DATADIR%%/06-46-01 -%%DATADIR%%/06-47-01 -%%DATADIR%%/06-4e-03 -%%DATADIR%%/06-4f-01 -%%DATADIR%%/06-55-04 -%%DATADIR%%/06-56-02 -%%DATADIR%%/06-56-03 -%%DATADIR%%/06-56-04 -%%DATADIR%%/06-5c-09 -%%DATADIR%%/06-5e-03 -%%DATADIR%%/06-7a-01 -%%DATADIR%%/06-8e-09 -%%DATADIR%%/06-8e-0a -%%DATADIR%%/06-9e-09 -%%DATADIR%%/06-9e-0a -%%DATADIR%%/06-9e-0b -%%DATADIR%%/0f-00-07 -%%DATADIR%%/0f-00-0a -%%DATADIR%%/0f-01-02 -%%DATADIR%%/0f-02-04 -%%DATADIR%%/0f-02-05 -%%DATADIR%%/0f-02-06 -%%DATADIR%%/0f-02-07 -%%DATADIR%%/0f-02-09 -%%DATADIR%%/0f-03-02 -%%DATADIR%%/0f-03-03 -%%DATADIR%%/0f-03-04 -%%DATADIR%%/0f-04-01 -%%DATADIR%%/0f-04-03 -%%DATADIR%%/0f-04-04 -%%DATADIR%%/0f-04-07 -%%DATADIR%%/0f-04-08 -%%DATADIR%%/0f-04-09 -%%DATADIR%%/0f-04-0a -%%DATADIR%%/0f-06-02 -%%DATADIR%%/0f-06-04 -%%DATADIR%%/0f-06-05 -%%DATADIR%%/0f-06-08 +%%DATADIR%%/2f0708.fw +%%DATADIR%%/M01106C2217.fw +%%DATADIR%%/M01106CA107.fw +%%DATADIR%%/M0120661104.fw +%%DATADIR%%/M0220661105_CV.fw +%%DATADIR%%/M04106C2218.fw +%%DATADIR%%/M04106CA107.fw +%%DATADIR%%/M08106C2219.fw +%%DATADIR%%/M08106CA107.fw +%%DATADIR%%/M10106CA107.fw +%%DATADIR%%/MU163202.fw +%%DATADIR%%/MU165040.fw +%%DATADIR%%/MU165041.fw +%%DATADIR%%/MU165045.fw +%%DATADIR%%/MU165140.fw +%%DATADIR%%/MU16522a.fw +%%DATADIR%%/MU16522c.fw +%%DATADIR%%/MU16530c.fw +%%DATADIR%%/MU16530d.fw +%%DATADIR%%/MU165310.fw +%%DATADIR%%/MU16600a.fw +%%DATADIR%%/MU166503.fw +%%DATADIR%%/MU166a0b.fw +%%DATADIR%%/MU166a0c.fw +%%DATADIR%%/MU166a0d.fw +%%DATADIR%%/MU166d05.fw +%%DATADIR%%/MU166d06.fw +%%DATADIR%%/MU166d07.fw +%%DATADIR%%/MU16810d.fw +%%DATADIR%%/MU16810e.fw +%%DATADIR%%/MU16810f.fw +%%DATADIR%%/MU168111.fw +%%DATADIR%%/MU168307.fw +%%DATADIR%%/MU168308.fw +%%DATADIR%%/MU168607.fw +%%DATADIR%%/MU168608.fw +%%DATADIR%%/MU16860a.fw +%%DATADIR%%/MU16860c.fw +%%DATADIR%%/MU168a01.fw +%%DATADIR%%/MU168a04.fw +%%DATADIR%%/MU168a05.fw +%%DATADIR%%/MU16b11c.fw +%%DATADIR%%/MU16b11d.fw +%%DATADIR%%/MU16b401.fw +%%DATADIR%%/MU16b402.fw +%%DATADIR%%/MU26522b.fw +%%DATADIR%%/MU26530b.fw +%%DATADIR%%/MU268110.fw +%%DATADIR%%/MU268602.fw +%%DATADIR%%/m011066143.fw +%%DATADIR%%/m011067660F.fw +%%DATADIR%%/m016fbBA.fw +%%DATADIR%%/m01f0712.fw +%%DATADIR%%/m01f0a13.fw +%%DATADIR%%/m01f2529.fw +%%DATADIR%%/m01f480c.fw +%%DATADIR%%/m01f6402.fw +%%DATADIR%%/m01f6508.fw +%%DATADIR%%/m021066142.fw +%%DATADIR%%/m02906eb_00000071_00000072.fw +%%DATADIR%%/m02f0a15.fw +%%DATADIR%%/m02f241f.fw +%%DATADIR%%/m02f252a.fw +%%DATADIR%%/m02f2610.fw +%%DATADIR%%/m02f2738.fw +%%DATADIR%%/m02f292d.fw +%%DATADIR%%/m02f4116.fw +%%DATADIR%%/m02f480e.fw +%%DATADIR%%/m03106a4_00000012.fw +%%DATADIR%%/m03106a5_00000019.fw +%%DATADIR%%/m041067660F.fw +%%DATADIR%%/m046fbBC.fw +%%DATADIR%%/m04f0a14.fw +%%DATADIR%%/m04f122e.fw +%%DATADIR%%/m04f241e.fw +%%DATADIR%%/m04f252b.fw +%%DATADIR%%/m04f2737.fw +%%DATADIR%%/m04f292e.fw +%%DATADIR%%/m04f620f.fw +%%DATADIR%%/m05206f2_00000037.fw +%%DATADIR%%/m08106d129.fw +%%DATADIR%%/m086fbBB.fw +%%DATADIR%%/m08f2739.fw +%%DATADIR%%/m08f292f.fw +%%DATADIR%%/m0df320a.fw +%%DATADIR%%/m0df330c.fw +%%DATADIR%%/m101067660F.fw +%%DATADIR%%/m101067770A.fw +%%DATADIR%%/m1050662_0000000f.fw +%%DATADIR%%/m1050663_0700000d.fw +%%DATADIR%%/m1050664_0f00000a.fw +%%DATADIR%%/m1069507.fw +%%DATADIR%%/m106f76a.fw +%%DATADIR%%/m106fbBA.fw +%%DATADIR%%/m10f2421.fw +%%DATADIR%%/m10f252c.fw +%%DATADIR%%/m111067AA0B.fw +%%DATADIR%%/m1220652_0000000e.fw +%%DATADIR%%/m12206a7_00000029.fw +%%DATADIR%%/m12306a9_0000001c.fw +%%DATADIR%%/m13106e5_00000007.fw +%%DATADIR%%/m16f25d.fw +%%DATADIR%%/m16f6d0.fw +%%DATADIR%%/m16fda4.fw +%%DATADIR%%/m1df3417.fw +%%DATADIR%%/m2069507.fw +%%DATADIR%%/m206d618.fw +%%DATADIR%%/m206e839.fw +%%DATADIR%%/m206ec54.fw +%%DATADIR%%/m206f25c.fw +%%DATADIR%%/m206f6d1.fw +%%DATADIR%%/m206fbBA.fw +%%DATADIR%%/m206fda4.fw +%%DATADIR%%/m2240671_00000017.fw +%%DATADIR%%/m22906ea_0000006f_00000070.fw +%%DATADIR%%/m22f6809.fw +%%DATADIR%%/m2a906e9_0000005d_0000005e.fw +%%DATADIR%%/m32306c3_00000022.fw +%%DATADIR%%/m3240661_00000017.fw +%%DATADIR%%/m34f6404.fw +%%DATADIR%%/m36506e3_000000b9_000000ba.fw +%%DATADIR%%/m401067660F.fw +%%DATADIR%%/m406f76b.fw +%%DATADIR%%/m406fbBC.fw +%%DATADIR%%/m441067AA0B.fw +%%DATADIR%%/m46f6d2.fw +%%DATADIR%%/m5cf4a04.fw +%%DATADIR%%/m5df4a02.fw +%%DATADIR%%/m5ff4807.fw +%%DATADIR%%/m6d206d6_00000619.fw +%%DATADIR%%/m6d206d7_00000710.fw +%%DATADIR%%/m6f306f2_0000003a.fw +%%DATADIR%%/m7240651_00000020.fw +%%DATADIR%%/m801066144.fw +%%DATADIR%%/m801067660F.fw +%%DATADIR%%/m80306f4_0000000f.fw +%%DATADIR%%/m8069547.fw +%%DATADIR%%/m806ec59.fw +%%DATADIR%%/m806fa95.fw +%%DATADIR%%/m806fbBA.fw +%%DATADIR%%/m806fda4.fw +%%DATADIR%%/m9220655_00000004.fw +%%DATADIR%%/m9df4305.fw +%%DATADIR%%/m9df4406.fw +%%DATADIR%%/m9df4703.fw +%%DATADIR%%/mA01067AA0B.fw +%%DATADIR%%/m_01_706a1_0000001e.fw +%%DATADIR%%/m_03_506c9_0000002c.fw +%%DATADIR%%/mb750654_02000035.fw +%%DATADIR%%/mbdf4117.fw +%%DATADIR%%/mbdf4903.fw +%%DATADIR%%/mc0306d4_00000025.fw +%%DATADIR%%/mc0406e3_000000b9_000000ba.fw +%%DATADIR%%/mc0806e9_00000061_00000062.fw +%%DATADIR%%/mc0806ea_0000006f_00000070.fw +%%DATADIR%%/med306e4_00000428.fw +%%DATADIR%%/med306e6_00000600.fw +%%DATADIR%%/med306e7_0000070d.fw +%%DATADIR%%/mef406f1_0b000021.fw %%DATADIR%%/microcode_amd.bin %%DATADIR%%/microcode_amd_fam15h.bin %%DATADIR%%/microcode_amd_fam16h.bin %%DATADIR%%/microcode_amd_fam17h.bin +%%DATADIR%%/mu267114.fw +%%DATADIR%%/mu267238.fw +%%DATADIR%%/mu26732e.fw +%%DATADIR%%/mu26a003.fw +%%DATADIR%%/mu26a101.fw From owner-svn-ports-branches@freebsd.org Thu Mar 15 17:54: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 2A8DFF31E48; Thu, 15 Mar 2018 17:54:05 +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 C48026F2B5; Thu, 15 Mar 2018 17:54:04 +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 BF59C1941D; Thu, 15 Mar 2018 17:54:04 +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 w2FHs4Ug019333; Thu, 15 Mar 2018 17:54:04 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2FHs4Dn019330; Thu, 15 Mar 2018 17:54:04 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201803151754.w2FHs4Dn019330@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 15 Mar 2018 17:54:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464618 - branches/2018Q1/sysutils/devcpu-data X-SVN-Group: ports-branches X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: branches/2018Q1/sysutils/devcpu-data X-SVN-Commit-Revision: 464618 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, 15 Mar 2018 17:54:05 -0000 Author: bdrewery Date: Thu Mar 15 17:54:04 2018 New Revision: 464618 URL: https://svnweb.freebsd.org/changeset/ports/464618 Log: MFH: r464504 sysutils/devcpu-data Update to Intel microcode release 20180312: == Updates upon 20171117 release == MODEL STEP f-mm-s:pf version -- New Platforms -- BDX-DE EGW A0 6-56-5:10 e000009 SKX B1 6-55-3:97 1000140 -- Updates -- SNB D2 6-2a-7:12 29->2d JKT C1 6-2d-6:6d 619->61c JKT C2 6-2d-7:6d 710->713 IVB E2 6-3a-9:12 1c->1f IVT C0 6-3e-4:ed 428->42c IVT D1 6-3e-7:ed 70d->713 HSW Cx/Dx 6-3c-3:32 22->24 HSW-ULT Cx/Dx 6-45-1:72 20->23 CRW Cx 6-46-1:32 17->19 HSX C0 6-3f-2:6f 3a->3c HSX-EX E0 6-3f-4:80 0f->11 BDW-U/Y E/F 6-3d-4:c0 25->2a BDW-H E/G 6-47-1:22 17->1d BDX-DE V0/V1 6-56-2:10 0f->15 BDW-DE V2 6-56-3:10 700000d->7000012 BDW-DE Y0 6-56-4:10 f00000a->f000011 SKL-U/Y D0 6-4e-3:c0 ba->c2 SKL R0 6-5e-3:36 ba->c2 KBL-U/Y H0 6-8e-9:c0 62->84 KBL B0 6-9e-9:2a 5e->84 CFL D0 6-8e-a:c0 70->84 CFL U0 6-9e-a:22 70->84 CFL B0 6-9e-b:02 72->84 SKX H0 6-55-4:b7 2000035->2000043 Reviewed by: swills imp Security: yes Sponsored by: Limelight Networks Differential Revision: https://reviews.freebsd.org/D14686 Approved by: portmgr (swills) Modified: branches/2018Q1/sysutils/devcpu-data/Makefile branches/2018Q1/sysutils/devcpu-data/distinfo branches/2018Q1/sysutils/devcpu-data/pkg-plist Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/sysutils/devcpu-data/Makefile ============================================================================== --- branches/2018Q1/sysutils/devcpu-data/Makefile Thu Mar 15 17:53:39 2018 (r464617) +++ branches/2018Q1/sysutils/devcpu-data/Makefile Thu Mar 15 17:54:04 2018 (r464618) @@ -2,13 +2,12 @@ # $FreeBSD$ PORTNAME= data -PORTVERSION= 1.15 -PORTREVISION= 1 +PORTVERSION= 1.16 CATEGORIES= sysutils -MASTER_SITES= https://downloadmirror.intel.com/27337/eng/:intel \ +MASTER_SITES= https://downloadmirror.intel.com/27591/eng/:intel \ LOCAL/sbruno:amd PKGNAMEPREFIX= devcpu- -DISTFILES= microcode-20171117.tgz:intel \ +DISTFILES= microcode-20180312.tgz:intel \ amd64-microcode_3.20171205.1.tar.xz:amd MAINTAINER= clarkjc@runbox.com Modified: branches/2018Q1/sysutils/devcpu-data/distinfo ============================================================================== --- branches/2018Q1/sysutils/devcpu-data/distinfo Thu Mar 15 17:53:39 2018 (r464617) +++ branches/2018Q1/sysutils/devcpu-data/distinfo Thu Mar 15 17:54:04 2018 (r464618) @@ -1,5 +1,5 @@ -TIMESTAMP = 1515706070 -SHA256 (microcode-20171117.tgz) = 93bd1da9fa58ece0016702e657f708b7e496e56da637a3fe9a6d21f1d6f524dc -SIZE (microcode-20171117.tgz) = 3594762 +TIMESTAMP = 1520973336 +SHA256 (microcode-20180312.tgz) = 0b381face2df1b0a829dc4fa8fa93f47f39e11b1c9c22ebd44f8614657c1e779 +SIZE (microcode-20180312.tgz) = 3789662 SHA256 (amd64-microcode_3.20171205.1.tar.xz) = a38bc072f535a3d3c1bf4e9e545197aa5114e979e94ef7e4a67e615df2f853a7 SIZE (amd64-microcode_3.20171205.1.tar.xz) = 32584 Modified: branches/2018Q1/sysutils/devcpu-data/pkg-plist ============================================================================== --- branches/2018Q1/sysutils/devcpu-data/pkg-plist Thu Mar 15 17:53:39 2018 (r464617) +++ branches/2018Q1/sysutils/devcpu-data/pkg-plist Thu Mar 15 17:54:04 2018 (r464618) @@ -57,7 +57,7 @@ %%DATADIR%%/m01f6402.fw %%DATADIR%%/m01f6508.fw %%DATADIR%%/m021066142.fw -%%DATADIR%%/m02906eb_00000071_00000072.fw +%%DATADIR%%/m02906eb_00000083_00000084.fw %%DATADIR%%/m02f0a15.fw %%DATADIR%%/m02f241f.fw %%DATADIR%%/m02f252a.fw @@ -86,9 +86,10 @@ %%DATADIR%%/m0df330c.fw %%DATADIR%%/m101067660F.fw %%DATADIR%%/m101067770A.fw -%%DATADIR%%/m1050662_0000000f.fw -%%DATADIR%%/m1050663_0700000d.fw -%%DATADIR%%/m1050664_0f00000a.fw +%%DATADIR%%/m1050662_00000015.fw +%%DATADIR%%/m1050663_07000012.fw +%%DATADIR%%/m1050664_0f000011.fw +%%DATADIR%%/m1050665_0e000009.fw %%DATADIR%%/m1069507.fw %%DATADIR%%/m106f76a.fw %%DATADIR%%/m106fbBA.fw @@ -96,8 +97,8 @@ %%DATADIR%%/m10f252c.fw %%DATADIR%%/m111067AA0B.fw %%DATADIR%%/m1220652_0000000e.fw -%%DATADIR%%/m12206a7_00000029.fw -%%DATADIR%%/m12306a9_0000001c.fw +%%DATADIR%%/m12206a7_0000002d.fw +%%DATADIR%%/m12306a9_0000001f.fw %%DATADIR%%/m13106e5_00000007.fw %%DATADIR%%/m16f25d.fw %%DATADIR%%/m16f6d0.fw @@ -111,14 +112,14 @@ %%DATADIR%%/m206f6d1.fw %%DATADIR%%/m206fbBA.fw %%DATADIR%%/m206fda4.fw -%%DATADIR%%/m2240671_00000017.fw -%%DATADIR%%/m22906ea_0000006f_00000070.fw +%%DATADIR%%/m2240671_0000001d.fw +%%DATADIR%%/m22906ea_00000084.fw %%DATADIR%%/m22f6809.fw -%%DATADIR%%/m2a906e9_0000005d_0000005e.fw -%%DATADIR%%/m32306c3_00000022.fw -%%DATADIR%%/m3240661_00000017.fw +%%DATADIR%%/m2a906e9_00000083_00000084.fw +%%DATADIR%%/m32306c3_00000024.fw +%%DATADIR%%/m3240661_00000019.fw %%DATADIR%%/m34f6404.fw -%%DATADIR%%/m36506e3_000000b9_000000ba.fw +%%DATADIR%%/m36506e3_000000c1_000000c2.fw %%DATADIR%%/m401067660F.fw %%DATADIR%%/m406f76b.fw %%DATADIR%%/m406fbBC.fw @@ -127,35 +128,36 @@ %%DATADIR%%/m5cf4a04.fw %%DATADIR%%/m5df4a02.fw %%DATADIR%%/m5ff4807.fw -%%DATADIR%%/m6d206d6_00000619.fw -%%DATADIR%%/m6d206d7_00000710.fw -%%DATADIR%%/m6f306f2_0000003a.fw -%%DATADIR%%/m7240651_00000020.fw +%%DATADIR%%/m6d206d6_0000061c.fw +%%DATADIR%%/m6d206d7_00000713.fw +%%DATADIR%%/m6f306f2_0000003c.fw +%%DATADIR%%/m7240651_00000023.fw %%DATADIR%%/m801066144.fw %%DATADIR%%/m801067660F.fw -%%DATADIR%%/m80306f4_0000000f.fw +%%DATADIR%%/m80306f4_00000011.fw %%DATADIR%%/m8069547.fw %%DATADIR%%/m806ec59.fw %%DATADIR%%/m806fa95.fw %%DATADIR%%/m806fbBA.fw %%DATADIR%%/m806fda4.fw %%DATADIR%%/m9220655_00000004.fw +%%DATADIR%%/m9750653_01000140.fw %%DATADIR%%/m9df4305.fw %%DATADIR%%/m9df4406.fw %%DATADIR%%/m9df4703.fw %%DATADIR%%/mA01067AA0B.fw %%DATADIR%%/m_01_706a1_0000001e.fw %%DATADIR%%/m_03_506c9_0000002c.fw -%%DATADIR%%/mb750654_02000035.fw +%%DATADIR%%/mb750654_02000043.fw %%DATADIR%%/mbdf4117.fw %%DATADIR%%/mbdf4903.fw -%%DATADIR%%/mc0306d4_00000025.fw -%%DATADIR%%/mc0406e3_000000b9_000000ba.fw -%%DATADIR%%/mc0806e9_00000061_00000062.fw -%%DATADIR%%/mc0806ea_0000006f_00000070.fw -%%DATADIR%%/med306e4_00000428.fw +%%DATADIR%%/mc0306d4_0000002a.fw +%%DATADIR%%/mc0406e3_000000c1_000000c2.fw +%%DATADIR%%/mc0806e9_00000083_00000084.fw +%%DATADIR%%/mc0806ea_00000083_00000084.fw +%%DATADIR%%/med306e4_0000042c.fw %%DATADIR%%/med306e6_00000600.fw -%%DATADIR%%/med306e7_0000070d.fw +%%DATADIR%%/med306e7_00000713.fw %%DATADIR%%/mef406f1_0b000021.fw %%DATADIR%%/microcode_amd.bin %%DATADIR%%/microcode_amd_fam15h.bin From owner-svn-ports-branches@freebsd.org Thu Mar 15 22:33:21 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 936EAF59F04; Thu, 15 Mar 2018 22:33:21 +0000 (UTC) (envelope-from mandree@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 495ED7CBFB; Thu, 15 Mar 2018 22:33:21 +0000 (UTC) (envelope-from mandree@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 443661BFBC; Thu, 15 Mar 2018 22:33:21 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2FMXL6g061499; Thu, 15 Mar 2018 22:33:21 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2FMXKO4061497; Thu, 15 Mar 2018 22:33:20 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201803152233.w2FMXKO4061497@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Thu, 15 Mar 2018 22:33:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464644 - branches/2018Q1/sysutils/e2fsprogs X-SVN-Group: ports-branches X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: branches/2018Q1/sysutils/e2fsprogs X-SVN-Commit-Revision: 464644 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, 15 Mar 2018 22:33:21 -0000 Author: mandree Date: Thu Mar 15 22:33:20 2018 New Revision: 464644 URL: https://svnweb.freebsd.org/changeset/ports/464644 Log: MFH: r462277 r462457 r464542 Mark broken on both armv6 and armv7. Security/bug fix update to e2fsprogs 1.44.0. Reset e2fsprogs-libuuid's PORTREVISION. Changelog: Security: 2aa9967c-27e0-11e8-9ae1-080027ac955c Approved by: ports-secteam (swills@) Modified: branches/2018Q1/sysutils/e2fsprogs/Makefile branches/2018Q1/sysutils/e2fsprogs/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/sysutils/e2fsprogs/Makefile ============================================================================== --- branches/2018Q1/sysutils/e2fsprogs/Makefile Thu Mar 15 22:18:21 2018 (r464643) +++ branches/2018Q1/sysutils/e2fsprogs/Makefile Thu Mar 15 22:33:20 2018 (r464644) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= e2fsprogs -PORTVERSION= 1.43.8 +PORTVERSION= 1.44.0 PORTREVISION?= 0 CATEGORIES?= sysutils MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} @@ -20,6 +20,8 @@ PORTSCOUT= ignore # cannot handle the version in the d .if !defined(MASTERDIR) BROKEN_aarch64= fails to link: missing sbrk +BROKEN_armv6= fails to build: Tests failed: f_pre_1970_date_encoding +BROKEN_armv7= fails to build: Tests failed: f_pre_1970_date_encoding .endif USES= cpe gmake makeinfo pkgconfig tar:xz Modified: branches/2018Q1/sysutils/e2fsprogs/distinfo ============================================================================== --- branches/2018Q1/sysutils/e2fsprogs/distinfo Thu Mar 15 22:18:21 2018 (r464643) +++ branches/2018Q1/sysutils/e2fsprogs/distinfo Thu Mar 15 22:33:20 2018 (r464644) @@ -1,3 +1,3 @@ -TIMESTAMP = 1514978158 -SHA256 (e2fsprogs-1.43.8.tar.xz) = c0841d5fe724d49132158850f3975e886fccfcef642878dca2425a1b5d30b12a -SIZE (e2fsprogs-1.43.8.tar.xz) = 5287448 +TIMESTAMP = 1521069997 +SHA256 (e2fsprogs-1.44.0.tar.xz) = a3567042f03fcee0e01db8f923b24cec92e2ba5b11f8e39e245672ad5392723d +SIZE (e2fsprogs-1.44.0.tar.xz) = 5325356 From owner-svn-ports-branches@freebsd.org Fri Mar 16 09:31: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 BD161F5EC91; Fri, 16 Mar 2018 09:31:06 +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 709737509D; Fri, 16 Mar 2018 09:31:06 +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 6B9E7224A4; Fri, 16 Mar 2018 09:31:06 +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 w2G9V6Bo091245; Fri, 16 Mar 2018 09:31:06 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2G9V65R091026; Fri, 16 Mar 2018 09:31:06 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201803160931.w2G9V65R091026@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 16 Mar 2018 09:31:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464666 - branches/2018Q1/lang/php70 X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: branches/2018Q1/lang/php70 X-SVN-Commit-Revision: 464666 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, 16 Mar 2018 09:31:06 -0000 Author: tz Date: Fri Mar 16 09:31:05 2018 New Revision: 464666 URL: https://svnweb.freebsd.org/changeset/ports/464666 Log: MFH: r464598 lang/php70: Update from 7.0.27 to 7.0.28 Changelog: http://www.php.net/ChangeLog-7.php#7.0.28 Approved by: ports-secteam (swills) Modified: branches/2018Q1/lang/php70/Makefile branches/2018Q1/lang/php70/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/lang/php70/Makefile ============================================================================== --- branches/2018Q1/lang/php70/Makefile Fri Mar 16 09:27:17 2018 (r464665) +++ branches/2018Q1/lang/php70/Makefile Fri Mar 16 09:31:05 2018 (r464666) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php70 -PORTVERSION= 7.0.27 +PORTVERSION= 7.0.28 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: branches/2018Q1/lang/php70/distinfo ============================================================================== --- branches/2018Q1/lang/php70/distinfo Fri Mar 16 09:27:17 2018 (r464665) +++ branches/2018Q1/lang/php70/distinfo Fri Mar 16 09:31:05 2018 (r464666) @@ -1,5 +1,5 @@ -TIMESTAMP = 1515408469 -SHA256 (php-7.0.27.tar.xz) = 4b2bc823e806dbf7b62fe0b92b0d14b0c6e03f88c3fc5d96278416c54ce11f6c -SIZE (php-7.0.27.tar.xz) = 11916824 +TIMESTAMP = 1521042995 +SHA256 (php-7.0.28.tar.xz) = e738ffce2c30bc0e84be9446af86bef0a0607d321f1a3d04bbfe2402fb5f6de0 +SIZE (php-7.0.28.tar.xz) = 11917836 SHA256 (php-7.0.x-mail-header.patch) = b78cd5a36a4709ea4e43e5babe73648ae6ace870cc0e34a5417177045834b4f0 SIZE (php-7.0.x-mail-header.patch) = 4504 From owner-svn-ports-branches@freebsd.org Fri Mar 16 13:19: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 B8761F4E413; Fri, 16 Mar 2018 13:19: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 5F9B47DE77; Fri, 16 Mar 2018 13:19: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 4C48224637; Fri, 16 Mar 2018 13:19: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 w2GDJ5sB003345; Fri, 16 Mar 2018 13:19:05 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2GDJ43s003341; Fri, 16 Mar 2018 13:19:04 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803161319.w2GDJ43s003341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 16 Mar 2018 13:19:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464681 - in branches/2018Q1/www: firefox firefox-i18n X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/www: firefox firefox-i18n X-SVN-Commit-Revision: 464681 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, 16 Mar 2018 13:19:06 -0000 Author: jbeich Date: Fri Mar 16 13:19:04 2018 New Revision: 464681 URL: https://svnweb.freebsd.org/changeset/ports/464681 Log: MFH: r464675 www/firefox: update to 59.0.1 Changes: https://www.mozilla.org/firefox/59.0.1/releasenotes/ Security: 7943794f-707f-4e31-9fea-3bbf1ddcedc1 Approved by: ports-secteam blanket Modified: branches/2018Q1/www/firefox-i18n/Makefile branches/2018Q1/www/firefox-i18n/distinfo branches/2018Q1/www/firefox/Makefile branches/2018Q1/www/firefox/distinfo Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/firefox-i18n/Makefile ============================================================================== --- branches/2018Q1/www/firefox-i18n/Makefile Fri Mar 16 13:12:45 2018 (r464680) +++ branches/2018Q1/www/firefox-i18n/Makefile Fri Mar 16 13:19:04 2018 (r464681) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 59.0 -PORTREVISION= 2 +PORTVERSION= 59.0.1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build5/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: branches/2018Q1/www/firefox-i18n/distinfo ============================================================================== --- branches/2018Q1/www/firefox-i18n/distinfo Fri Mar 16 13:12:45 2018 (r464680) +++ branches/2018Q1/www/firefox-i18n/distinfo Fri Mar 16 13:19:04 2018 (r464681) @@ -1,195 +1,195 @@ -TIMESTAMP = 1520650457 -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) = d7a323080afc9cf936cf672e584da825413637b4b413153b0f4ddd5169fdf05a -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 +TIMESTAMP = 1521151925 +SHA256 (xpi/firefox-i18n-59.0.1/ach.xpi) = ecd1ba29435dd19943d2bdd38af4d65de1499e2a237e6d3a79288b9d141bb56a +SIZE (xpi/firefox-i18n-59.0.1/ach.xpi) = 439227 +SHA256 (xpi/firefox-i18n-59.0.1/af.xpi) = 917d879386cf361976fc0ee7bd1c0e0595066b4d4ce69aeb5f22f4ab3ababf6d +SIZE (xpi/firefox-i18n-59.0.1/af.xpi) = 436731 +SHA256 (xpi/firefox-i18n-59.0.1/an.xpi) = 7b0201eb9da4606f27381d684a15b5684a2db3251e7e97c27e3bc1ee2f109fbe +SIZE (xpi/firefox-i18n-59.0.1/an.xpi) = 463405 +SHA256 (xpi/firefox-i18n-59.0.1/ar.xpi) = 0674aa88c32b67c70d089bcf2798f9b5e407cb660da2cd3ddd8809da25be1692 +SIZE (xpi/firefox-i18n-59.0.1/ar.xpi) = 486633 +SHA256 (xpi/firefox-i18n-59.0.1/as.xpi) = d413a03fb978ee2eabaf120522fd673d1ce428b8ee6cfc0fc07a31bef26609f5 +SIZE (xpi/firefox-i18n-59.0.1/as.xpi) = 483301 +SHA256 (xpi/firefox-i18n-59.0.1/ast.xpi) = 956449e1fded28144ab8e318bc1a5f3567cef659d02a7a962cf61aa0b64d54a0 +SIZE (xpi/firefox-i18n-59.0.1/ast.xpi) = 454342 +SHA256 (xpi/firefox-i18n-59.0.1/az.xpi) = 257266c1a8a8498722eacb20dc37ccdea9da50a3069762f756f0539c235e6a1d +SIZE (xpi/firefox-i18n-59.0.1/az.xpi) = 464270 +SHA256 (xpi/firefox-i18n-59.0.1/be.xpi) = a83112c8d36c659ef733a47fc40e64d9015ed70e213814954d5761633c2cf30b +SIZE (xpi/firefox-i18n-59.0.1/be.xpi) = 517059 +SHA256 (xpi/firefox-i18n-59.0.1/bg.xpi) = 303749c1af03c5eb5304135849513f066d4ed2b276667edafe63405a85fa4a84 +SIZE (xpi/firefox-i18n-59.0.1/bg.xpi) = 508613 +SHA256 (xpi/firefox-i18n-59.0.1/bn-BD.xpi) = 13cc00f1bcb4feb573f2d2e68e556af4e01e3240c038b2e3b4b03ee6befc8f85 +SIZE (xpi/firefox-i18n-59.0.1/bn-BD.xpi) = 526352 +SHA256 (xpi/firefox-i18n-59.0.1/bn-IN.xpi) = 9075e2b278805451b4b52456ee954cea22740ceb63b82304b22cefd0b82b6848 +SIZE (xpi/firefox-i18n-59.0.1/bn-IN.xpi) = 510797 +SHA256 (xpi/firefox-i18n-59.0.1/br.xpi) = 74a20a0dbff85f72af70fa988990c7deadf38ba034c0706500538debf3545e84 +SIZE (xpi/firefox-i18n-59.0.1/br.xpi) = 451719 +SHA256 (xpi/firefox-i18n-59.0.1/bs.xpi) = 28f0a46f87dfebda97dafdc299164d6b24379019a82c458e68dfa3e8363faf03 +SIZE (xpi/firefox-i18n-59.0.1/bs.xpi) = 457859 +SHA256 (xpi/firefox-i18n-59.0.1/ca.xpi) = 97953e7ef3bdbadb386ef306d8be8f5ec28f9c012e48f9875855c25c044dc270 +SIZE (xpi/firefox-i18n-59.0.1/ca.xpi) = 464912 +SHA256 (xpi/firefox-i18n-59.0.1/cak.xpi) = fc12b006bf3f2f4d476c89f227b03ff59b51c81e4c3c0726e3cdb3016d0997bd +SIZE (xpi/firefox-i18n-59.0.1/cak.xpi) = 475234 +SHA256 (xpi/firefox-i18n-59.0.1/cs.xpi) = 63e37c027b27207ea3d3651d7b712ba4e2d661d4e5286e1a6ec8bb4469c3c30b +SIZE (xpi/firefox-i18n-59.0.1/cs.xpi) = 471575 +SHA256 (xpi/firefox-i18n-59.0.1/cy.xpi) = 357962244e13fea93e88bf486099b5c4cc117bf324ba8933d11a4f5fff61f852 +SIZE (xpi/firefox-i18n-59.0.1/cy.xpi) = 454433 +SHA256 (xpi/firefox-i18n-59.0.1/da.xpi) = a15f383e39f4b11e0fe014063224145f45429ae8b51d731db872e1b52b4ad749 +SIZE (xpi/firefox-i18n-59.0.1/da.xpi) = 446949 +SHA256 (xpi/firefox-i18n-59.0.1/de.xpi) = aa1d03f9aada0f5d575a021ea0944fce026a34a8ecf03a5b18077e2dcd7797a1 +SIZE (xpi/firefox-i18n-59.0.1/de.xpi) = 466273 +SHA256 (xpi/firefox-i18n-59.0.1/dsb.xpi) = 572b856c971bf7d99867fb462039f698dc5f068a49f3b564d7dd732d6b1d758d +SIZE (xpi/firefox-i18n-59.0.1/dsb.xpi) = 478975 +SHA256 (xpi/firefox-i18n-59.0.1/el.xpi) = 7378eed475cccfe541c65f8634ff24e8dc3bc62553b396e9f68da5821b417bed +SIZE (xpi/firefox-i18n-59.0.1/el.xpi) = 531408 +SHA256 (xpi/firefox-i18n-59.0.1/en-GB.xpi) = 92d00ee7eed2c099d3588227ba1ca172371f07b388fc866d20e4a3c22e7d3cc2 +SIZE (xpi/firefox-i18n-59.0.1/en-GB.xpi) = 434300 +SHA256 (xpi/firefox-i18n-59.0.1/en-US.xpi) = 6b78a5ba462f877fe1d64c9bf2e8db3e4426e66aaa5ad3151f8a429d46e988e0 +SIZE (xpi/firefox-i18n-59.0.1/en-US.xpi) = 432749 +SHA256 (xpi/firefox-i18n-59.0.1/en-ZA.xpi) = d084a136f8358f2c0709b983ceebded40cedb2249ef438a8ec1e1fb5e358e7ff +SIZE (xpi/firefox-i18n-59.0.1/en-ZA.xpi) = 427365 +SHA256 (xpi/firefox-i18n-59.0.1/eo.xpi) = 7bee8c904213fbfc33b2a8ddcace8d63b85fee996b753a49d7d77cc85152086a +SIZE (xpi/firefox-i18n-59.0.1/eo.xpi) = 453367 +SHA256 (xpi/firefox-i18n-59.0.1/es-AR.xpi) = 1835efdc6145a47e0d4fe94bcd5eb5904c0435d2d09c8673eaa981521a529ce6 +SIZE (xpi/firefox-i18n-59.0.1/es-AR.xpi) = 461797 +SHA256 (xpi/firefox-i18n-59.0.1/es-CL.xpi) = e8a31cb6715335f811565ba00dff5580e04139981344fd3ec91f92c028cdafa4 +SIZE (xpi/firefox-i18n-59.0.1/es-CL.xpi) = 464654 +SHA256 (xpi/firefox-i18n-59.0.1/es-ES.xpi) = bfb6038c30d18faa11490750ae19ecccbf61dfd25f8172792e99321e619230ad +SIZE (xpi/firefox-i18n-59.0.1/es-ES.xpi) = 348463 +SHA256 (xpi/firefox-i18n-59.0.1/es-MX.xpi) = f92ea0e49ed3e052228a84685cde361f7ddb222bca6c7d50ecbee013994df910 +SIZE (xpi/firefox-i18n-59.0.1/es-MX.xpi) = 466313 +SHA256 (xpi/firefox-i18n-59.0.1/et.xpi) = 0abf3c5686c301775ad9ffa6411c219d2d4d620589ff930ec1714123f48f6881 +SIZE (xpi/firefox-i18n-59.0.1/et.xpi) = 445394 +SHA256 (xpi/firefox-i18n-59.0.1/eu.xpi) = 1df512fac2219dd3decd48ea5aa7c5af6ba1eb65348d122020afaf237a04b238 +SIZE (xpi/firefox-i18n-59.0.1/eu.xpi) = 455236 +SHA256 (xpi/firefox-i18n-59.0.1/fa.xpi) = 83cf18e8fc6599b0f4fd3a4991ab01b99da4ecb65708c92848749cf2a7ef0867 +SIZE (xpi/firefox-i18n-59.0.1/fa.xpi) = 508098 +SHA256 (xpi/firefox-i18n-59.0.1/ff.xpi) = 1f90aa31ca2b9b93fe80a25a03d5a304c30cdcba9c77cf10bd1a4eff43bd0a91 +SIZE (xpi/firefox-i18n-59.0.1/ff.xpi) = 455026 +SHA256 (xpi/firefox-i18n-59.0.1/fi.xpi) = af9fb470144b4d524d27f683116bf40388b37e8a88266a53fc17d22978f88dd1 +SIZE (xpi/firefox-i18n-59.0.1/fi.xpi) = 445182 +SHA256 (xpi/firefox-i18n-59.0.1/fr.xpi) = 0df0b098a41723f4e950dc0e88d041ee89efdc984cb317c250f63cf0bb9d12a7 +SIZE (xpi/firefox-i18n-59.0.1/fr.xpi) = 473593 +SHA256 (xpi/firefox-i18n-59.0.1/fy-NL.xpi) = dbe46d9218b4b2ad83e678d2ab70422e779bde1b6254b10006d621a59a5af30b +SIZE (xpi/firefox-i18n-59.0.1/fy-NL.xpi) = 462918 +SHA256 (xpi/firefox-i18n-59.0.1/ga-IE.xpi) = 7efe47e0b58eb6acab98a7846a8100ead9e12666524cc90c63dc2a87ab1dd34c +SIZE (xpi/firefox-i18n-59.0.1/ga-IE.xpi) = 471909 +SHA256 (xpi/firefox-i18n-59.0.1/gd.xpi) = e72f3c50f114e2a697baafbf427e2a0372d74e73186925051f9a2a3647e80c91 +SIZE (xpi/firefox-i18n-59.0.1/gd.xpi) = 461297 +SHA256 (xpi/firefox-i18n-59.0.1/gl.xpi) = d6f18916ce2ac2cc9f15c9a05fc0f83bbbe2d092fbd06d1b46b7101cf0aae03b +SIZE (xpi/firefox-i18n-59.0.1/gl.xpi) = 441615 +SHA256 (xpi/firefox-i18n-59.0.1/gn.xpi) = 861f7023de8630e2d0daf69b333cf212d84c3389044eea500655729197a5457b +SIZE (xpi/firefox-i18n-59.0.1/gn.xpi) = 469397 +SHA256 (xpi/firefox-i18n-59.0.1/gu-IN.xpi) = fbbf3b4eb0527a01e6182128e1153d9ecafda1ecf0b6c48456c087a532281127 +SIZE (xpi/firefox-i18n-59.0.1/gu-IN.xpi) = 521804 +SHA256 (xpi/firefox-i18n-59.0.1/he.xpi) = ab2d7b59c2a6d09438efa7f712dc1a636e15f3e6da52fc00e9de3ce4fb2baa28 +SIZE (xpi/firefox-i18n-59.0.1/he.xpi) = 472771 +SHA256 (xpi/firefox-i18n-59.0.1/hi-IN.xpi) = b3fb9886a427a4b1849326ed94528bb157489fa778cb82eae724e7d91df59732 +SIZE (xpi/firefox-i18n-59.0.1/hi-IN.xpi) = 524280 +SHA256 (xpi/firefox-i18n-59.0.1/hr.xpi) = 3ad1dc76bc9afcc5ad7cf4e2f53c005d4861b79d00fb080c6487585e72a5380f +SIZE (xpi/firefox-i18n-59.0.1/hr.xpi) = 459978 +SHA256 (xpi/firefox-i18n-59.0.1/hsb.xpi) = 9cded87c1ee19a762f545efee71894db30ca66c35cacf8fc5cbe38207700be90 +SIZE (xpi/firefox-i18n-59.0.1/hsb.xpi) = 475941 +SHA256 (xpi/firefox-i18n-59.0.1/hu.xpi) = 072c5d90e274deb3d0398445561b78bbf4dee1ee03f0c0ecbdeaf4e2968727dd +SIZE (xpi/firefox-i18n-59.0.1/hu.xpi) = 476896 +SHA256 (xpi/firefox-i18n-59.0.1/hy-AM.xpi) = aa34c99ecc61ed34ff627d3fe77c4f1b8b0ff7eebf0cdec0d0ae28960547379e +SIZE (xpi/firefox-i18n-59.0.1/hy-AM.xpi) = 508168 +SHA256 (xpi/firefox-i18n-59.0.1/ia.xpi) = 1d52d87927398bb31f7f454aa9dc9114520b81145620b80b672132c5b67b31f6 +SIZE (xpi/firefox-i18n-59.0.1/ia.xpi) = 448829 +SHA256 (xpi/firefox-i18n-59.0.1/id.xpi) = c74e45cabffb0bce1e2c0b4a79d552f4b74d5307a1fb40e62ae9e213b1bbde1e +SIZE (xpi/firefox-i18n-59.0.1/id.xpi) = 441952 +SHA256 (xpi/firefox-i18n-59.0.1/is.xpi) = 305edff9a994bf7bc3be53223db00e5a893caeb8d9e9175eea60c5bd41a923ab +SIZE (xpi/firefox-i18n-59.0.1/is.xpi) = 451373 +SHA256 (xpi/firefox-i18n-59.0.1/it.xpi) = e282a584bc092d31839c277a471858715b616288c28255420bf41663af806dac +SIZE (xpi/firefox-i18n-59.0.1/it.xpi) = 342524 +SHA256 (xpi/firefox-i18n-59.0.1/ja.xpi) = a69ec46ff61841ef415e252be752ca9ec343d1cf30a73ac9c0e63598bf1d8fe7 +SIZE (xpi/firefox-i18n-59.0.1/ja.xpi) = 508147 +SHA256 (xpi/firefox-i18n-59.0.1/ka.xpi) = c06ba278e86d214a55cc582da20c2f277986d4e52e99fedee5cd19f4a7f5b3f1 +SIZE (xpi/firefox-i18n-59.0.1/ka.xpi) = 492569 +SHA256 (xpi/firefox-i18n-59.0.1/kab.xpi) = 5bba366b527907301a54817fd3c95d4d6617c9169cf20cf94b5292825dd8ca23 +SIZE (xpi/firefox-i18n-59.0.1/kab.xpi) = 461841 +SHA256 (xpi/firefox-i18n-59.0.1/kk.xpi) = 06c927cb3919d60bcb595b8e7690148613215ab92eb345a3775b856e5590b2cf +SIZE (xpi/firefox-i18n-59.0.1/kk.xpi) = 517584 +SHA256 (xpi/firefox-i18n-59.0.1/km.xpi) = 10a185cf715bccb9cf2c00a15384e6feb7df2adfadcf144751bee4d03496c9c5 +SIZE (xpi/firefox-i18n-59.0.1/km.xpi) = 526359 +SHA256 (xpi/firefox-i18n-59.0.1/kn.xpi) = 36a5d63ccbce763756d1aa145339794315e9ddd653420fe2fb1256b017da7b98 +SIZE (xpi/firefox-i18n-59.0.1/kn.xpi) = 527879 +SHA256 (xpi/firefox-i18n-59.0.1/ko.xpi) = f3b83409bd4d742ef6c6c5cfd0d8d463bf1cdd21608f8439f2f86901e95b5b4d +SIZE (xpi/firefox-i18n-59.0.1/ko.xpi) = 487661 +SHA256 (xpi/firefox-i18n-59.0.1/lij.xpi) = 62f4d6631b60b420954f1a7c42b5cc383801548c5780bf7badb67f1f0b4c7fb2 +SIZE (xpi/firefox-i18n-59.0.1/lij.xpi) = 446606 +SHA256 (xpi/firefox-i18n-59.0.1/lt.xpi) = 3c28029fb78c90726cf6dca3a22f80e45d855ad16aee431c008e0bf08fb77ce4 +SIZE (xpi/firefox-i18n-59.0.1/lt.xpi) = 475142 +SHA256 (xpi/firefox-i18n-59.0.1/lv.xpi) = b618edf282a60d6a64dac68f796d45cd8fe79dc497176b5c821907eb50720e47 +SIZE (xpi/firefox-i18n-59.0.1/lv.xpi) = 463655 +SHA256 (xpi/firefox-i18n-59.0.1/mai.xpi) = b622a93edf7341d11a23df83d155b86f45a4af769f2ff45996701431c36707e2 +SIZE (xpi/firefox-i18n-59.0.1/mai.xpi) = 499910 +SHA256 (xpi/firefox-i18n-59.0.1/mk.xpi) = 996df991c2945d7591c9b90633e83eef72be4533ab55e3ba48745232b0e83430 +SIZE (xpi/firefox-i18n-59.0.1/mk.xpi) = 484075 +SHA256 (xpi/firefox-i18n-59.0.1/ml.xpi) = fe75a2f4885b7c4538a7447a650de9f338169549e5451d1e5fe2a70d6c26cfa1 +SIZE (xpi/firefox-i18n-59.0.1/ml.xpi) = 539735 +SHA256 (xpi/firefox-i18n-59.0.1/mr.xpi) = 9f9a053dda0e1a7f15dd2bb5564582d6c10f465b20d9165210c487f1816e52a8 +SIZE (xpi/firefox-i18n-59.0.1/mr.xpi) = 517962 +SHA256 (xpi/firefox-i18n-59.0.1/ms.xpi) = 1a40eb19a6f607434d5180474925ab903bd0d8e12c5861713b3de574fda2673d +SIZE (xpi/firefox-i18n-59.0.1/ms.xpi) = 450075 +SHA256 (xpi/firefox-i18n-59.0.1/my.xpi) = 7b0a1e894808bb4f17d6012ba978b180dd0f4825733e357d63708f2298fdb278 +SIZE (xpi/firefox-i18n-59.0.1/my.xpi) = 511894 +SHA256 (xpi/firefox-i18n-59.0.1/nb-NO.xpi) = 390904624102a0c5c1be82712954a57ee628a170361a57fda0e5e6dd5e4b9f56 +SIZE (xpi/firefox-i18n-59.0.1/nb-NO.xpi) = 450277 +SHA256 (xpi/firefox-i18n-59.0.1/ne-NP.xpi) = 4acaaa5ee3746176dd1349ea51d47b99cbd965d8aff21b44169235b5798e6d04 +SIZE (xpi/firefox-i18n-59.0.1/ne-NP.xpi) = 509177 +SHA256 (xpi/firefox-i18n-59.0.1/nl.xpi) = 938f70cd0452f87ca4da3f1ed17802aad48e581b8fe7cb214f9c579bb647b795 +SIZE (xpi/firefox-i18n-59.0.1/nl.xpi) = 458128 +SHA256 (xpi/firefox-i18n-59.0.1/nn-NO.xpi) = eeeea6999c44df8e6657e65e07c96f741bef6530b8198f79547c36867ad3e694 +SIZE (xpi/firefox-i18n-59.0.1/nn-NO.xpi) = 451471 +SHA256 (xpi/firefox-i18n-59.0.1/or.xpi) = de8adc3a0a20bc650739a1a39c55140c0b5f5f5a078a6a2414a7602561bfd798 +SIZE (xpi/firefox-i18n-59.0.1/or.xpi) = 493181 +SHA256 (xpi/firefox-i18n-59.0.1/pa-IN.xpi) = 682e548375a925583d723ffb9889a5ffbaa049ed2d2fe33cbb17dbd50ad263f4 +SIZE (xpi/firefox-i18n-59.0.1/pa-IN.xpi) = 492420 +SHA256 (xpi/firefox-i18n-59.0.1/pl.xpi) = 694b181873f7667a6720e3f6023bae756e8a0ed55fb4fd395b5be80db786f6b4 +SIZE (xpi/firefox-i18n-59.0.1/pl.xpi) = 358511 +SHA256 (xpi/firefox-i18n-59.0.1/pt-BR.xpi) = 1f1177c60948d15d7d86a374dbfb44bfdce462dbb5496bcd01499cf8b17f9130 +SIZE (xpi/firefox-i18n-59.0.1/pt-BR.xpi) = 455916 +SHA256 (xpi/firefox-i18n-59.0.1/pt-PT.xpi) = f85995c2b7f847dd9cd6325daf7436882e659a4e984b342e081058517f388908 +SIZE (xpi/firefox-i18n-59.0.1/pt-PT.xpi) = 459331 +SHA256 (xpi/firefox-i18n-59.0.1/rm.xpi) = e0a9c8c617d804eab0bc8530f15d1d8ae5e47147a23cb010a9c1f5eb5cd8d892 +SIZE (xpi/firefox-i18n-59.0.1/rm.xpi) = 449757 +SHA256 (xpi/firefox-i18n-59.0.1/ro.xpi) = 479b2ebbda57bafda0a34f29cc3e65a9a73db76967579d59c228bb03f0aca4f6 +SIZE (xpi/firefox-i18n-59.0.1/ro.xpi) = 453403 +SHA256 (xpi/firefox-i18n-59.0.1/ru.xpi) = 1be7524ab110feaa15dcbcc4ecdcf3399604b2fe79f41c82b1a68bea9e7b77bb +SIZE (xpi/firefox-i18n-59.0.1/ru.xpi) = 526523 +SHA256 (xpi/firefox-i18n-59.0.1/si.xpi) = 2d32228ebf6a6b79a20a18eed4091d8131b923fd127eeae01f677c157766840b +SIZE (xpi/firefox-i18n-59.0.1/si.xpi) = 492588 +SHA256 (xpi/firefox-i18n-59.0.1/sk.xpi) = 0b99e28c1b337008ac3d4a3c7b629cf71aaaad9c3f30e48f50603becb3064a06 +SIZE (xpi/firefox-i18n-59.0.1/sk.xpi) = 480814 +SHA256 (xpi/firefox-i18n-59.0.1/sl.xpi) = 18aa40a2cf30fe967c034ee2e084be6309ad848379c8eceb137381b308d6e297 +SIZE (xpi/firefox-i18n-59.0.1/sl.xpi) = 458825 +SHA256 (xpi/firefox-i18n-59.0.1/son.xpi) = 8162c10692ed8723f2c47ba322770335ec821550ec3031ea4b67b99b560466e7 +SIZE (xpi/firefox-i18n-59.0.1/son.xpi) = 446399 +SHA256 (xpi/firefox-i18n-59.0.1/sq.xpi) = 5882a6234a746ef9bb23b405ec15d8e74083598924eabeba3f18a6bc681cdce4 +SIZE (xpi/firefox-i18n-59.0.1/sq.xpi) = 464463 +SHA256 (xpi/firefox-i18n-59.0.1/sr.xpi) = 2ec1aa0c85ebd456a560f1e34a65183eef4f7d3105c69c779e83c9ca91e0a442 +SIZE (xpi/firefox-i18n-59.0.1/sr.xpi) = 486178 +SHA256 (xpi/firefox-i18n-59.0.1/sv-SE.xpi) = 0913865b4c5edd6cb0006b1c2149463b6a0ff22870cf6c1c2b6cf55f7b7f76d4 +SIZE (xpi/firefox-i18n-59.0.1/sv-SE.xpi) = 458660 +SHA256 (xpi/firefox-i18n-59.0.1/ta.xpi) = 92300249eac9468ab15a5a81a2bb5ca7b96ed4d0ede1aa52659ceb50bfcb041b +SIZE (xpi/firefox-i18n-59.0.1/ta.xpi) = 512843 +SHA256 (xpi/firefox-i18n-59.0.1/te.xpi) = a3d972a645fefa7e1860f043a85c5c5e00e9b6c46712cd3f98b7db006d98258e +SIZE (xpi/firefox-i18n-59.0.1/te.xpi) = 527083 +SHA256 (xpi/firefox-i18n-59.0.1/th.xpi) = 8e0f5c8eeb12f185aaeddf244363034fe0b8e14f875be5892b68f0fd6530d135 +SIZE (xpi/firefox-i18n-59.0.1/th.xpi) = 498544 +SHA256 (xpi/firefox-i18n-59.0.1/tr.xpi) = 3cbb4cdea0c2001f94cff5078e730e02ce03370eaef1645be60c892ba284be5f +SIZE (xpi/firefox-i18n-59.0.1/tr.xpi) = 463594 +SHA256 (xpi/firefox-i18n-59.0.1/uk.xpi) = d7c86d1f09df639dfc2f3c487cb9d8eabca02efa848371a5e1e7ca1406561de3 +SIZE (xpi/firefox-i18n-59.0.1/uk.xpi) = 516926 +SHA256 (xpi/firefox-i18n-59.0.1/ur.xpi) = c893dd6cd191a2fded4d0c372c9a089528dffaaeeead193ad4080a3f5f21fe90 +SIZE (xpi/firefox-i18n-59.0.1/ur.xpi) = 507380 +SHA256 (xpi/firefox-i18n-59.0.1/uz.xpi) = d1b3e43d2850f9da05d92e1f3b933c54e716db163d462c62adac4395e78c6c7b +SIZE (xpi/firefox-i18n-59.0.1/uz.xpi) = 456923 +SHA256 (xpi/firefox-i18n-59.0.1/vi.xpi) = bfa5f3a23b29349cee54a85538c0eadb7f838cb50788c1927b7aa5d39d061bc2 +SIZE (xpi/firefox-i18n-59.0.1/vi.xpi) = 470069 +SHA256 (xpi/firefox-i18n-59.0.1/xh.xpi) = 6d8bfed15e2b48a7969de06f43fac314e3d0af99c4d24b8b86eacd26a03b3fca +SIZE (xpi/firefox-i18n-59.0.1/xh.xpi) = 460771 +SHA256 (xpi/firefox-i18n-59.0.1/zh-CN.xpi) = 95d5129eb1211c25516a8ac3f3a5463ec087583c12acf6546aa2915bdf86b463 +SIZE (xpi/firefox-i18n-59.0.1/zh-CN.xpi) = 483449 +SHA256 (xpi/firefox-i18n-59.0.1/zh-TW.xpi) = e95d71b32bb94f8c75a8ec9cd042b5a2f4ba61be4f31195aba8eccea0443d6ec +SIZE (xpi/firefox-i18n-59.0.1/zh-TW.xpi) = 477089 Modified: branches/2018Q1/www/firefox/Makefile ============================================================================== --- branches/2018Q1/www/firefox/Makefile Fri Mar 16 13:12:45 2018 (r464680) +++ branches/2018Q1/www/firefox/Makefile Fri Mar 16 13:19:04 2018 (r464681) @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 59.0 -PORTREVISION= 2 +DISTVERSION= 59.0.1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= https://hg.mozilla.org/releases/mozilla-release/archive/ -DISTNAME= ${MASTER_SITES:M*hg*:S,/archive/,,:T}-c61f5f5ead48c78a80c80db5c489bdc7cfaf8175 +DISTNAME= ${MASTER_SITES:M*hg*:S,/archive/,,:T}-3db9e3d52b17563efca181ccbb50deb8660c59ae DISTFILES= ${DISTNAME:C/.*-//}${EXTRACT_SUFX} DIST_SUBDIR= firefox Modified: branches/2018Q1/www/firefox/distinfo ============================================================================== --- branches/2018Q1/www/firefox/distinfo Fri Mar 16 13:12:45 2018 (r464680) +++ branches/2018Q1/www/firefox/distinfo Fri Mar 16 13:19:04 2018 (r464681) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520650457 -SHA256 (firefox/c61f5f5ead48c78a80c80db5c489bdc7cfaf8175.tar.bz2) = 1c591e52ca808c3bfbdcd9bcca0c8c1457fe9503face27cde6272a3b791afec4 -SIZE (firefox/c61f5f5ead48c78a80c80db5c489bdc7cfaf8175.tar.bz2) = 304957396 +TIMESTAMP = 1521151925 +SHA256 (firefox/3db9e3d52b17563efca181ccbb50deb8660c59ae.tar.bz2) = e8bc6d63c045dfad28116165dbf1f40e5f579542c020bbfb232b801cffd778e4 +SIZE (firefox/3db9e3d52b17563efca181ccbb50deb8660c59ae.tar.bz2) = 304956890 From owner-svn-ports-branches@freebsd.org Fri Mar 16 13:19: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 47CCBF4E4B7; Fri, 16 Mar 2018 13:19: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 E63BB7DF60; Fri, 16 Mar 2018 13:19:35 +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 DFEE324638; Fri, 16 Mar 2018 13:19: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 w2GDJZaQ003519; Fri, 16 Mar 2018 13:19:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2GDJZcc003515; Fri, 16 Mar 2018 13:19:35 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803161319.w2GDJZcc003515@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 16 Mar 2018 13:19:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464682 - 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: 464682 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, 16 Mar 2018 13:19:36 -0000 Author: jbeich Date: Fri Mar 16 13:19:35 2018 New Revision: 464682 URL: https://svnweb.freebsd.org/changeset/ports/464682 Log: MFH: r464676 www/firefox-esr: update to 52.7.2 Changes: https://www.mozilla.org/firefox/52.7.2/releasenotes/ Security: 7943794f-707f-4e31-9fea-3bbf1ddcedc1 Approved by: ports-secteam blanket 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 16 13:19:04 2018 (r464681) +++ branches/2018Q1/www/firefox-esr-i18n/Makefile Fri Mar 16 13:19:35 2018 (r464682) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 52.7.0 +PORTVERSION= 52.7.2 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build1/linux-i686/xpi Modified: branches/2018Q1/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2018Q1/www/firefox-esr-i18n/distinfo Fri Mar 16 13:19:04 2018 (r464681) +++ branches/2018Q1/www/firefox-esr-i18n/distinfo Fri Mar 16 13:19:35 2018 (r464682) @@ -1,185 +1,185 @@ -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 +TIMESTAMP = 1521170856 +SHA256 (xpi/firefox-52.7.2/ach.xpi) = d616c7d64f83f060b117dbfdce5e0084e64ec009b15e188293401310056aff86 +SIZE (xpi/firefox-52.7.2/ach.xpi) = 420286 +SHA256 (xpi/firefox-52.7.2/af.xpi) = 8d2375d43bf735510291ed39bbe953e083e735ce0bc528dec0d5f445fdd049e3 +SIZE (xpi/firefox-52.7.2/af.xpi) = 429469 +SHA256 (xpi/firefox-52.7.2/an.xpi) = 012c4870bb8a67239a3ed1da26dda963fc0a1629ec71f6f760e23b68a12bff69 +SIZE (xpi/firefox-52.7.2/an.xpi) = 437887 +SHA256 (xpi/firefox-52.7.2/ar.xpi) = 1ea6c872347029404b042e486763c2c401e3ec5299569116b38d293a7453bda6 +SIZE (xpi/firefox-52.7.2/ar.xpi) = 466027 +SHA256 (xpi/firefox-52.7.2/as.xpi) = 8d1da92e108347806f5cab354d282ec456b28584083f1b7453b9d106b172f55d +SIZE (xpi/firefox-52.7.2/as.xpi) = 479634 +SHA256 (xpi/firefox-52.7.2/ast.xpi) = ff4c6d4c11aa3d0fb555b9f3df43be43efa523abc73cdce8d3684a20a9312df4 +SIZE (xpi/firefox-52.7.2/ast.xpi) = 432775 +SHA256 (xpi/firefox-52.7.2/az.xpi) = aa6a6864e2a1bf983b8b311f1fec0870a31b4732d7625f71b454f176b6d9a0ac +SIZE (xpi/firefox-52.7.2/az.xpi) = 454923 +SHA256 (xpi/firefox-52.7.2/bg.xpi) = 7432e6cacde13269fbe0e029929a3bb60745f69c853ad472089352665a97ee6b +SIZE (xpi/firefox-52.7.2/bg.xpi) = 487891 +SHA256 (xpi/firefox-52.7.2/bn-BD.xpi) = fd8a2c093b989f54c6dd9fc180178d99383d2077cbb17e425f04cb42356aefb6 +SIZE (xpi/firefox-52.7.2/bn-BD.xpi) = 504633 +SHA256 (xpi/firefox-52.7.2/bn-IN.xpi) = c37d7ea69c62b12879b43047a35306e7a2b144b388608beebe4ce2d923d97a2d +SIZE (xpi/firefox-52.7.2/bn-IN.xpi) = 502113 +SHA256 (xpi/firefox-52.7.2/br.xpi) = c169451745b557a568da0470c4d22089813bb2ca917a7e3471b4d4f26d184884 +SIZE (xpi/firefox-52.7.2/br.xpi) = 428215 +SHA256 (xpi/firefox-52.7.2/bs.xpi) = 19b35432c17070a2813790bf1e8af9d8f80c6a0518b24bfb0b0233f11524056f +SIZE (xpi/firefox-52.7.2/bs.xpi) = 434428 +SHA256 (xpi/firefox-52.7.2/ca.xpi) = 548a767022c75cc1db76de17ec305a0023163ca254f6a7ccd8152aea47993551 +SIZE (xpi/firefox-52.7.2/ca.xpi) = 443304 +SHA256 (xpi/firefox-52.7.2/cak.xpi) = e567a4ae38cc1bb74ca3e881a5aebcff8cb4ef920e0e3b8ffaae97570cbeaa1d +SIZE (xpi/firefox-52.7.2/cak.xpi) = 451910 +SHA256 (xpi/firefox-52.7.2/cs.xpi) = 20d1b7bcebc973d8af4e4f025a578a53280acb06edc7a9c1c070e4744bd98094 +SIZE (xpi/firefox-52.7.2/cs.xpi) = 444075 +SHA256 (xpi/firefox-52.7.2/cy.xpi) = fd2268bcdd51784521b845c6f2cd0778d06e110f5697e9144f194d7e748c558c +SIZE (xpi/firefox-52.7.2/cy.xpi) = 429300 +SHA256 (xpi/firefox-52.7.2/da.xpi) = 42ff5538719ec281381864fa364b7a738099526c24788f4d591a6d7ab0416032 +SIZE (xpi/firefox-52.7.2/da.xpi) = 424393 +SHA256 (xpi/firefox-52.7.2/de.xpi) = f40d045b6ef25e595c62db1392d529b8fd48e7f30d0d6d78c50fc34fe123ff7e +SIZE (xpi/firefox-52.7.2/de.xpi) = 435227 +SHA256 (xpi/firefox-52.7.2/dsb.xpi) = f780e180e33b3cc653a3568fa2e8af7a572a7fa69bb26d4a1025964106e79238 +SIZE (xpi/firefox-52.7.2/dsb.xpi) = 452168 +SHA256 (xpi/firefox-52.7.2/el.xpi) = 6335350cbef215767ea1aea7905a298fbd4a5fc801d4d2ff63e7f3c4e97c13fc +SIZE (xpi/firefox-52.7.2/el.xpi) = 509237 +SHA256 (xpi/firefox-52.7.2/en-GB.xpi) = a912347394ded7703a6ecd0040f4f943c3c4369feaee0266cfd45a61be3ca4a8 +SIZE (xpi/firefox-52.7.2/en-GB.xpi) = 412038 +SHA256 (xpi/firefox-52.7.2/en-US.xpi) = d18809d2410eb50226b7e50c2f91d7d836fbc6486658cc3cfef155321b246111 +SIZE (xpi/firefox-52.7.2/en-US.xpi) = 413902 +SHA256 (xpi/firefox-52.7.2/en-ZA.xpi) = 20a23ac96e51cb0d7d51c14f2a4eca6cac2761e2bbd16ab3fb6317c9488cb60e +SIZE (xpi/firefox-52.7.2/en-ZA.xpi) = 412212 +SHA256 (xpi/firefox-52.7.2/eo.xpi) = 65206897b8e2dbc6833b8d1447e1f13012f5acdd878049a38c163616a5f91ab7 +SIZE (xpi/firefox-52.7.2/eo.xpi) = 430116 +SHA256 (xpi/firefox-52.7.2/es-AR.xpi) = 7d95935e96882b69f5d809a95339605ea54d4baaeb8db73f808035bb0b6162b0 +SIZE (xpi/firefox-52.7.2/es-AR.xpi) = 438659 +SHA256 (xpi/firefox-52.7.2/es-CL.xpi) = e6e22394157689c3f9cc1c76574e35e9b1460c5384b1ac6276f0c531a796a25e +SIZE (xpi/firefox-52.7.2/es-CL.xpi) = 438406 +SHA256 (xpi/firefox-52.7.2/es-ES.xpi) = a740d025d9a6a85d6f3ac0dd34c694d6151b95a9f601a3f6219aa5673d50a5fa +SIZE (xpi/firefox-52.7.2/es-ES.xpi) = 337614 +SHA256 (xpi/firefox-52.7.2/es-MX.xpi) = 3a27a6f3f849e3e89c7839286293f78d5b6943e8323989d5ae642571900a4fe3 +SIZE (xpi/firefox-52.7.2/es-MX.xpi) = 441127 +SHA256 (xpi/firefox-52.7.2/et.xpi) = a661def8088ec2503243e3af2b084df85f9f19c4c0fb2e1a9e41e45a96e1ca62 +SIZE (xpi/firefox-52.7.2/et.xpi) = 425113 +SHA256 (xpi/firefox-52.7.2/eu.xpi) = d2ef53119eb7afba7a748f62cce3bed4f9cbed9b4b5d37346f79a242fb0aecb7 +SIZE (xpi/firefox-52.7.2/eu.xpi) = 431124 +SHA256 (xpi/firefox-52.7.2/fa.xpi) = d8695988ebdda70340a75a9ce3630fabdadbbb39f9dd66da1f88cc130ce0120a +SIZE (xpi/firefox-52.7.2/fa.xpi) = 483990 +SHA256 (xpi/firefox-52.7.2/ff.xpi) = 77692abfdf66cc5953d8df5759045e7f0eeba6fe73b7ab127d5cde0ce6f8260a +SIZE (xpi/firefox-52.7.2/ff.xpi) = 433662 +SHA256 (xpi/firefox-52.7.2/fi.xpi) = cc0a28e620b19628588b87db09276fe827e7e730ef4e7993f97ed81a9f8447b7 +SIZE (xpi/firefox-52.7.2/fi.xpi) = 422807 +SHA256 (xpi/firefox-52.7.2/fr.xpi) = a4ed0394e87f0fe082eda8b210b83b60340cb288356f043fe5eafb985176f4ff +SIZE (xpi/firefox-52.7.2/fr.xpi) = 442944 +SHA256 (xpi/firefox-52.7.2/fy-NL.xpi) = b901c414ab5dbf883d79925decd53c3d964b913227589b813775b6a083b68efa +SIZE (xpi/firefox-52.7.2/fy-NL.xpi) = 437701 +SHA256 (xpi/firefox-52.7.2/ga-IE.xpi) = 2b532b5e71cd90d728b1efb54fe7013c83dca538b218bcbd247ea5f0f35f4b85 +SIZE (xpi/firefox-52.7.2/ga-IE.xpi) = 450876 +SHA256 (xpi/firefox-52.7.2/gd.xpi) = daf0a3c8825f77167ee2bcee484f9d6387ef7adc3b74029f550fd5e3f8799520 +SIZE (xpi/firefox-52.7.2/gd.xpi) = 439987 +SHA256 (xpi/firefox-52.7.2/gl.xpi) = e5c6b72c89d6d0d12f5302002a84ed785b65845d3f6268f7ba208a96ff54a8ff +SIZE (xpi/firefox-52.7.2/gl.xpi) = 440039 +SHA256 (xpi/firefox-52.7.2/gn.xpi) = 26963ffd543ae38076768de2edd8bf6f86c98aecf9f79f64421229dce5213fed +SIZE (xpi/firefox-52.7.2/gn.xpi) = 448957 +SHA256 (xpi/firefox-52.7.2/gu-IN.xpi) = 19d817df5d3839757c1dfa5364393fc52f01607b11e2a2c8cbb371b051776556 +SIZE (xpi/firefox-52.7.2/gu-IN.xpi) = 482104 +SHA256 (xpi/firefox-52.7.2/he.xpi) = b3624e359c2e90fbab23266752ae77254001f774d35a149a8ae4f3fa89ba6cc0 +SIZE (xpi/firefox-52.7.2/he.xpi) = 447927 +SHA256 (xpi/firefox-52.7.2/hi-IN.xpi) = 399158726f7aee797b34c75219ed276201fc89bdb4fbb6c2e5a2a13f398b1c82 +SIZE (xpi/firefox-52.7.2/hi-IN.xpi) = 499256 +SHA256 (xpi/firefox-52.7.2/hr.xpi) = d36efaf226b335d09c15feb90f5733ac160aa6dac36d8a84d90ef7b804392c5a +SIZE (xpi/firefox-52.7.2/hr.xpi) = 440149 +SHA256 (xpi/firefox-52.7.2/hsb.xpi) = 90a4f0c3ebc44aa694dc955b51bfafcd9ec702d6e0e9f9871f2b1fe17cf93d8f +SIZE (xpi/firefox-52.7.2/hsb.xpi) = 450001 +SHA256 (xpi/firefox-52.7.2/hu.xpi) = 6533a709691619e89bf2aa46fe14bda5d42d79954cccad098187e0e9f6c76bf8 +SIZE (xpi/firefox-52.7.2/hu.xpi) = 451496 +SHA256 (xpi/firefox-52.7.2/hy-AM.xpi) = e66a18cc56f06bfecaec7a1303dcbe1eeef1dae6b2ead23fbfc23efe1a59a24d +SIZE (xpi/firefox-52.7.2/hy-AM.xpi) = 488414 +SHA256 (xpi/firefox-52.7.2/id.xpi) = 2edbdf7207e6149145679b1e62b82848d8dbf2623dfb72d8685c2c6511ef1cbf +SIZE (xpi/firefox-52.7.2/id.xpi) = 418764 +SHA256 (xpi/firefox-52.7.2/is.xpi) = 4da3f00fc7ceb5d1aa28dbca611cf7a8a66c9e4b6c1b7e7ff05ac90cb7b7dbd4 +SIZE (xpi/firefox-52.7.2/is.xpi) = 435342 +SHA256 (xpi/firefox-52.7.2/it.xpi) = b5a1d6cb581edc8b144dddd8ce83a355ef27ee4c76858d60398c7506e29d81de +SIZE (xpi/firefox-52.7.2/it.xpi) = 331968 +SHA256 (xpi/firefox-52.7.2/ja.xpi) = 8620a27e23ee7a4b1494b018f12f76fba211916351a3b08fe92f311abbb51b4a +SIZE (xpi/firefox-52.7.2/ja.xpi) = 488342 +SHA256 (xpi/firefox-52.7.2/ka.xpi) = 5ee88d0e2b4ac9f7f8b0e74c01f6497023c46276c81a7d752fb2a6e6db46731f +SIZE (xpi/firefox-52.7.2/ka.xpi) = 468023 +SHA256 (xpi/firefox-52.7.2/kab.xpi) = 4d142c23146d4fc0246f617da9088a1581a3122d437245e61698fa936144c558 +SIZE (xpi/firefox-52.7.2/kab.xpi) = 437247 +SHA256 (xpi/firefox-52.7.2/kk.xpi) = 1019eea85fa28a0e7a0cf2ec8e1c1147676c4173040379e4fbdd3bc9044f9f1b +SIZE (xpi/firefox-52.7.2/kk.xpi) = 496939 +SHA256 (xpi/firefox-52.7.2/km.xpi) = 35cc9b4d5a8834d41748632750d10ed7a907a805f498a04586117621146694ee +SIZE (xpi/firefox-52.7.2/km.xpi) = 512988 +SHA256 (xpi/firefox-52.7.2/kn.xpi) = 1867723db82f167608fd81e8c048c931b6d83dcbb3484dc1b737e11662d6a50d +SIZE (xpi/firefox-52.7.2/kn.xpi) = 512199 +SHA256 (xpi/firefox-52.7.2/ko.xpi) = c391bc39e24ab71f440a5814bcb10571a61d4ffb1b92cfd52b6270325ad37657 +SIZE (xpi/firefox-52.7.2/ko.xpi) = 463629 +SHA256 (xpi/firefox-52.7.2/lij.xpi) = b60cdee6cd77803ac7158c7bb4963bbf34dee354b037309cb1a40fdce2124551 +SIZE (xpi/firefox-52.7.2/lij.xpi) = 413820 +SHA256 (xpi/firefox-52.7.2/lt.xpi) = da6672fe4fc7562d1f99a3bb6d8007fa7d93f5fe75a1c29d724111ab392490b4 +SIZE (xpi/firefox-52.7.2/lt.xpi) = 452236 +SHA256 (xpi/firefox-52.7.2/lv.xpi) = 5347ad4cacb833cdd6b62a1517117f605a0e604f608ef9953a824b11fe8db09c +SIZE (xpi/firefox-52.7.2/lv.xpi) = 441096 +SHA256 (xpi/firefox-52.7.2/mai.xpi) = 5762c0459faa8429efa110f43196c6a22d092ba53106084b8938c58fb2a40347 +SIZE (xpi/firefox-52.7.2/mai.xpi) = 492585 +SHA256 (xpi/firefox-52.7.2/mk.xpi) = dd72966a9beba60ab7f9cbc958046b418f682bbc87461ce5c13befb58a0568f9 +SIZE (xpi/firefox-52.7.2/mk.xpi) = 488846 +SHA256 (xpi/firefox-52.7.2/ml.xpi) = 1a1524fae8f40a93c8e113b3a149da910d3778da0d9f6534803fa7891a1b3ea2 +SIZE (xpi/firefox-52.7.2/ml.xpi) = 516486 +SHA256 (xpi/firefox-52.7.2/mr.xpi) = 85940771664f5fa7731f684dbb0eb56b26fd45357a2306a8273d85b8fa0eb37f +SIZE (xpi/firefox-52.7.2/mr.xpi) = 495178 +SHA256 (xpi/firefox-52.7.2/ms.xpi) = 3e0e60d10516e506c7343dfb923f3148a704cdb933960598bd890ba3c4ab5ac2 +SIZE (xpi/firefox-52.7.2/ms.xpi) = 428635 +SHA256 (xpi/firefox-52.7.2/nb-NO.xpi) = 7a93f8f8792da8b3ee210605ee9a217e85735b1fc6f7bf8afbe0458ac6c03899 +SIZE (xpi/firefox-52.7.2/nb-NO.xpi) = 427148 +SHA256 (xpi/firefox-52.7.2/nl.xpi) = 71b2b38a3435c12a4224dca71963e9827c54c3f2d54a90244e7ef18333659c51 +SIZE (xpi/firefox-52.7.2/nl.xpi) = 432007 +SHA256 (xpi/firefox-52.7.2/nn-NO.xpi) = 5043942c1a805768710c4b998e8c3ad1357c7906b3c324681b8b8ca7c45728c6 +SIZE (xpi/firefox-52.7.2/nn-NO.xpi) = 428644 +SHA256 (xpi/firefox-52.7.2/or.xpi) = 195854df3cbda791a906da24a60abc8f637ea7db0770f5ce89b237c385c5932d +SIZE (xpi/firefox-52.7.2/or.xpi) = 489664 +SHA256 (xpi/firefox-52.7.2/pa-IN.xpi) = 6692b246329bcd282bd40f3ac898493d4410e0108e01bb398fd9d0ec3753082e +SIZE (xpi/firefox-52.7.2/pa-IN.xpi) = 469325 +SHA256 (xpi/firefox-52.7.2/pl.xpi) = 479200510bc88ef4b6e335e43a07e3fafe9f4abda2a4cc538792a5f7aa525e11 +SIZE (xpi/firefox-52.7.2/pl.xpi) = 352851 +SHA256 (xpi/firefox-52.7.2/pt-BR.xpi) = 01b29cb6635e75bcd195f9493a9f08d533c4451d1c9b8971399f4eefe814f004 +SIZE (xpi/firefox-52.7.2/pt-BR.xpi) = 430903 +SHA256 (xpi/firefox-52.7.2/pt-PT.xpi) = 31bbbb1928a7a99ec24936b81f9c81622f8d49d479ddb4286de7707d6adb6036 +SIZE (xpi/firefox-52.7.2/pt-PT.xpi) = 436727 +SHA256 (xpi/firefox-52.7.2/rm.xpi) = 6671ddaf7480abfdbec1e426029f992792ad4ca27ae7534d8a2f5a8b23029722 +SIZE (xpi/firefox-52.7.2/rm.xpi) = 427341 +SHA256 (xpi/firefox-52.7.2/ro.xpi) = 9f77c141aea75b3d00ef31cc51309999c1c304066f18bec717e6f83e1bd75e11 +SIZE (xpi/firefox-52.7.2/ro.xpi) = 442585 +SHA256 (xpi/firefox-52.7.2/ru.xpi) = b8648df4487fc99ec7bf509a481bd85964caf9b96e37b7917b74123eb6ac64f9 +SIZE (xpi/firefox-52.7.2/ru.xpi) = 395364 +SHA256 (xpi/firefox-52.7.2/si.xpi) = af89c3a0f371eb5e320ef5d3aad2369c49a908f39eb342001c12b80f1d1d5202 +SIZE (xpi/firefox-52.7.2/si.xpi) = 484604 +SHA256 (xpi/firefox-52.7.2/sk.xpi) = 9d03c2be92ede20df7aff5934196a86f501c8da74fc0c648a64bee8e75b7ec23 +SIZE (xpi/firefox-52.7.2/sk.xpi) = 455820 +SHA256 (xpi/firefox-52.7.2/sl.xpi) = 2baada45442164525bf353603e24683e7a2e84ecfcffbf2539834affc40a724b +SIZE (xpi/firefox-52.7.2/sl.xpi) = 433482 +SHA256 (xpi/firefox-52.7.2/son.xpi) = e5f8e4cf0c5cdfa32dc01ebad0206e8f4e2e2fe2e8cd39b6f724662919aaa6cb +SIZE (xpi/firefox-52.7.2/son.xpi) = 427860 +SHA256 (xpi/firefox-52.7.2/sq.xpi) = d9baee1628f3952f6c60469a83e123cc51cda41a3173b8aefabe2e8171574518 +SIZE (xpi/firefox-52.7.2/sq.xpi) = 440802 +SHA256 (xpi/firefox-52.7.2/sr.xpi) = bb171d9ae1c5bf89ec4bbf9007a2d0aaf5fc8a57ab1e2beaf62e114cac45ae25 +SIZE (xpi/firefox-52.7.2/sr.xpi) = 463395 +SHA256 (xpi/firefox-52.7.2/sv-SE.xpi) = fdd9b55f1dcf51144f1e1ef291b0788ac06572b519be1a574bb6f6bd4044a608 +SIZE (xpi/firefox-52.7.2/sv-SE.xpi) = 433911 +SHA256 (xpi/firefox-52.7.2/ta.xpi) = 456ab7fd3f0ce8635bbb97edf2811734f5e34cd9ef44d795f8504e38f45f5e81 +SIZE (xpi/firefox-52.7.2/ta.xpi) = 487542 +SHA256 (xpi/firefox-52.7.2/te.xpi) = c7e3326890f44a2f82dce28e66396086635f393d2547d93dc731be716c03ee32 +SIZE (xpi/firefox-52.7.2/te.xpi) = 507987 +SHA256 (xpi/firefox-52.7.2/th.xpi) = fa0d15ba5b56c0d118d5c84dda7f451441fa2635f5c157e98f69381779513ada +SIZE (xpi/firefox-52.7.2/th.xpi) = 482021 +SHA256 (xpi/firefox-52.7.2/tr.xpi) = 2d9c40b6901cc0e218c44b2ec2bfcf30c182244f32a0f1f52c73792c656f5563 +SIZE (xpi/firefox-52.7.2/tr.xpi) = 443673 +SHA256 (xpi/firefox-52.7.2/uk.xpi) = 523a6bd0165ade15864a2bd530c5150c568d95bd283e64369d586a461b9dcb0e +SIZE (xpi/firefox-52.7.2/uk.xpi) = 495095 +SHA256 (xpi/firefox-52.7.2/uz.xpi) = 12831131fdac4a3e9a66c4b8f18c9ec89281d389a653fdbb508c652638eff84f +SIZE (xpi/firefox-52.7.2/uz.xpi) = 440564 +SHA256 (xpi/firefox-52.7.2/vi.xpi) = a2227eb0f9aa4428a406d8de6c0ff23ed52ce3b598b1e550653e83e1d4de5863 +SIZE (xpi/firefox-52.7.2/vi.xpi) = 450804 +SHA256 (xpi/firefox-52.7.2/xh.xpi) = b5fdb1c2854069685d00d851526f3e43bb941a11fabb02513c07cab1bbf38fee +SIZE (xpi/firefox-52.7.2/xh.xpi) = 441172 +SHA256 (xpi/firefox-52.7.2/zh-CN.xpi) = 5212aa8fd0f1dcf8e4c1c257de43da4c7a8ec335a4c1e0635f22b371e71e6d48 +SIZE (xpi/firefox-52.7.2/zh-CN.xpi) = 461678 +SHA256 (xpi/firefox-52.7.2/zh-TW.xpi) = 2d0deafff4859e970850c6c753a4a3670f9b1ec02ee14fb0c8ff5b7f567c1308 +SIZE (xpi/firefox-52.7.2/zh-TW.xpi) = 453067 Modified: branches/2018Q1/www/firefox-esr/Makefile ============================================================================== --- branches/2018Q1/www/firefox-esr/Makefile Fri Mar 16 13:19:04 2018 (r464681) +++ branches/2018Q1/www/firefox-esr/Makefile Fri Mar 16 13:19:35 2018 (r464682) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 52.7.0 +DISTVERSION= 52.7.2 DISTVERSIONSUFFIX=esr PORTEPOCH= 1 CATEGORIES= www ipv6 Modified: branches/2018Q1/www/firefox-esr/distinfo ============================================================================== --- branches/2018Q1/www/firefox-esr/distinfo Fri Mar 16 13:19:04 2018 (r464681) +++ branches/2018Q1/www/firefox-esr/distinfo Fri Mar 16 13:19:35 2018 (r464682) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520470534 -SHA256 (firefox-52.7.0esr.source.tar.xz) = 293c8394ed7dab1ea833c50a7b19a2fa3432e7c2f9edd891403bca12fc0fed33 -SIZE (firefox-52.7.0esr.source.tar.xz) = 214056296 +TIMESTAMP = 1521170856 +SHA256 (firefox-52.7.2esr.source.tar.xz) = 659260afe0016d0ef46862ce08035e22b38fafc536d73e5bfefd0cbd9ae6fb05 +SIZE (firefox-52.7.2esr.source.tar.xz) = 212673520 From owner-svn-ports-branches@freebsd.org Fri Mar 16 13:24: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 AEC9FF4EB86; Fri, 16 Mar 2018 13:24: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 64E347E432; Fri, 16 Mar 2018 13:24: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 5BB0C247B0; Fri, 16 Mar 2018 13:24: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 w2GDOXU2008620; Fri, 16 Mar 2018 13:24:33 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2GDOXjX008618; Fri, 16 Mar 2018 13:24:33 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803161324.w2GDOXjX008618@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 16 Mar 2018 13:24:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464683 - 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: 464683 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, 16 Mar 2018 13:24:33 -0000 Author: jbeich Date: Fri Mar 16 13:24:33 2018 New Revision: 464683 URL: https://svnweb.freebsd.org/changeset/ports/464683 Log: MFH: r463842 www/waterfox: apply FF60 fix Approved by: ports-secteam blanket Added: branches/2018Q1/www/waterfox/files/patch-bug1411415 - copied unchanged from r463842, head/www/waterfox/files/patch-bug1411415 Modified: branches/2018Q1/www/waterfox/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/waterfox/Makefile ============================================================================== --- branches/2018Q1/www/waterfox/Makefile Fri Mar 16 13:19:35 2018 (r464682) +++ branches/2018Q1/www/waterfox/Makefile Fri Mar 16 13:24:33 2018 (r464683) @@ -3,6 +3,7 @@ PORTNAME= waterfox DISTVERSION= 56.0.4-36 DISTVERSIONSUFFIX= -g79492ecca478 +PORTREVISION= 1 CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Copied: branches/2018Q1/www/waterfox/files/patch-bug1411415 (from r463842, head/www/waterfox/files/patch-bug1411415) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q1/www/waterfox/files/patch-bug1411415 Fri Mar 16 13:24:33 2018 (r464683, copy of r463842, head/www/waterfox/files/patch-bug1411415) @@ -0,0 +1,383 @@ +commit 627eb6ae9a72 +Author: Kannan Vijayan +Date: Mon Mar 5 19:27:02 2018 -0500 + + Bug 1411415 - r=bz r=fitzgen +--- + dom/bindings/BindingUtils.cpp | 20 +++++------ + dom/bindings/ErrorResult.h | 2 +- + dom/xslt/xpath/txXPCOMExtensionFunction.cpp | 2 +- + js/public/Value.h | 55 ++++++++++++++++++++++++++--- + js/rust/build.rs | 1 + + js/src/jit/BaselineFrameInfo.h | 4 +-- + js/src/jit/CacheIRCompiler.cpp | 2 +- + js/src/jit/RegisterSets.h | 8 ++--- + js/src/jit/RematerializedFrame.cpp | 14 ++++++-- + js/src/wasm/AsmJS.cpp | 10 +++--- + js/xpconnect/src/XPCWrappedNative.cpp | 7 ++-- + layout/style/ServoBindings.toml | 6 ++-- + xpcom/reflect/xptcall/xptcall.h | 2 +- + 13 files changed, 97 insertions(+), 36 deletions(-) + +diff --git dom/bindings/BindingUtils.cpp dom/bindings/BindingUtils.cpp +index 93069ac4a8b8..ac8c7a2229f3 100644 +--- dom/bindings/BindingUtils.cpp ++++ dom/bindings/BindingUtils.cpp +@@ -287,8 +287,8 @@ TErrorResult::ThrowJSException(JSContext* cx, JS::Handle::SetPendingJSException(JSContext* cx) + mJSException = exception; + // If JS_WrapValue failed, not much we can do about it... No matter + // what, go ahead and unroot mJSException. +- js::RemoveRawValueRoot(cx, &mJSException); ++ js::RemoveRawValueRoot(cx, &mJSException.asValueRef()); + + mResult = NS_OK; + #ifdef DEBUG +@@ -423,8 +423,8 @@ TErrorResult::ClearUnionData() + if (IsJSException()) { + JSContext* cx = dom::danger::GetJSContext(); + MOZ_ASSERT(cx); +- mJSException.setUndefined(); +- js::RemoveRawValueRoot(cx, &mJSException); ++ mJSException.asValueRef().setUndefined(); ++ js::RemoveRawValueRoot(cx, &mJSException.asValueRef()); + #ifdef DEBUG + mUnionState = HasNothing; + #endif // DEBUG +@@ -467,13 +467,13 @@ TErrorResult::operator=(TErrorResult&& aRHS) + } else if (aRHS.IsJSException()) { + JSContext* cx = dom::danger::GetJSContext(); + MOZ_ASSERT(cx); +- mJSException.setUndefined(); +- if (!js::AddRawValueRoot(cx, &mJSException, "TErrorResult::mJSException")) { ++ mJSException.asValueRef().setUndefined(); ++ if (!js::AddRawValueRoot(cx, &mJSException.asValueRef(), "TErrorResult::mJSException")) { + MOZ_CRASH("Could not root mJSException, we're about to OOM"); + } + mJSException = aRHS.mJSException; +- aRHS.mJSException.setUndefined(); +- js::RemoveRawValueRoot(cx, &aRHS.mJSException); ++ aRHS.mJSException.asValueRef().setUndefined(); ++ js::RemoveRawValueRoot(cx, &aRHS.mJSException.asValueRef()); + } else if (aRHS.IsDOMException()) { + mDOMExceptionInfo = aRHS.mDOMExceptionInfo; + aRHS.mDOMExceptionInfo = nullptr; +@@ -525,7 +525,7 @@ TErrorResult::CloneTo(TErrorResult& aRv) const + aRv.mUnionState = HasJSException; + #endif + JSContext* cx = dom::danger::GetJSContext(); +- JS::Rooted exception(cx, mJSException); ++ JS::Rooted exception(cx, mJSException.asValueRef()); + aRv.ThrowJSException(cx, exception); + } + } +diff --git dom/bindings/ErrorResult.h dom/bindings/ErrorResult.h +index 7b38226691bb..a406a2c490a5 100644 +--- dom/bindings/ErrorResult.h ++++ dom/bindings/ErrorResult.h +@@ -507,7 +507,7 @@ private: + // (and deallocated) by SetPendingDOMException. + union { + Message* mMessage; // valid when IsErrorWithMessage() +- JS::Value mJSException; // valid when IsJSException() ++ JS::UninitializedValue mJSException; // valid when IsJSException() + DOMExceptionInfo* mDOMExceptionInfo; // valid when IsDOMException() + }; + +diff --git dom/xslt/xpath/txXPCOMExtensionFunction.cpp dom/xslt/xpath/txXPCOMExtensionFunction.cpp +index e95baa0bbde8..e1387422c303 100644 +--- dom/xslt/xpath/txXPCOMExtensionFunction.cpp ++++ dom/xslt/xpath/txXPCOMExtensionFunction.cpp +@@ -322,7 +322,7 @@ public: + void trace(JSTracer* trc) { + for (uint8_t i = 0; i < mCount; ++i) { + if (mArray[i].type == nsXPTType::T_JSVAL) { +- JS::UnsafeTraceRoot(trc, &mArray[i].val.j, "txParam value"); ++ JS::UnsafeTraceRoot(trc, &mArray[i].val.j.asValueRef(), "txParam value"); + } + } + } +diff --git js/public/Value.h js/public/Value.h +index b7c4e1b8a770..96a1b703bbc1 100644 +--- js/public/Value.h ++++ js/public/Value.h +@@ -137,12 +137,16 @@ static_assert(sizeof(JSValueShiftedTag) == sizeof(uint64_t), + + #define JSVAL_TYPE_TO_TAG(type) ((JSValueTag)(JSVAL_TAG_CLEAR | (type))) + ++#define JSVAL_RAW64_UNDEFINED (uint64_t(JSVAL_TAG_UNDEFINED) << 32) ++ + #define JSVAL_UPPER_EXCL_TAG_OF_PRIMITIVE_SET JSVAL_TAG_OBJECT + #define JSVAL_UPPER_INCL_TAG_OF_NUMBER_SET JSVAL_TAG_INT32 + #define JSVAL_LOWER_INCL_TAG_OF_GCTHING_SET JSVAL_TAG_STRING + + #elif defined(JS_PUNBOX64) + ++#define JSVAL_RAW64_UNDEFINED (uint64_t(JSVAL_TAG_UNDEFINED) << JSVAL_TAG_SHIFT) ++ + #define JSVAL_PAYLOAD_MASK 0x00007FFFFFFFFFFFLL + #define JSVAL_TAG_MASK 0xFFFF800000000000LL + #define JSVAL_TYPE_TO_TAG(type) ((JSValueTag)(JSVAL_TAG_MAX_DOUBLE | (type))) +@@ -814,7 +818,7 @@ class MOZ_NON_PARAM alignas(8) Value + double asDouble; + void* asPtr; + +- layout() = default; ++ layout() : asBits(JSVAL_RAW64_UNDEFINED) {} + explicit constexpr layout(uint64_t bits) : asBits(bits) {} + explicit constexpr layout(double d) : asDouble(d) {} + } data; +@@ -840,7 +844,7 @@ class MOZ_NON_PARAM alignas(8) Value + size_t asWord; + uintptr_t asUIntPtr; + +- layout() = default; ++ layout() : asBits(JSVAL_RAW64_UNDEFINED) {} + explicit constexpr layout(uint64_t bits) : asBits(bits) {} + explicit constexpr layout(double d) : asDouble(d) {} + } data; +@@ -868,7 +872,7 @@ class MOZ_NON_PARAM alignas(8) Value + double asDouble; + void* asPtr; + +- layout() = default; ++ layout() : asBits(JSVAL_RAW64_UNDEFINED) {} + explicit constexpr layout(uint64_t bits) : asBits(bits) {} + explicit constexpr layout(double d) : asDouble(d) {} + } data; +@@ -892,7 +896,7 @@ class MOZ_NON_PARAM alignas(8) Value + size_t asWord; + uintptr_t asUIntPtr; + +- layout() = default; ++ layout() : asBits(JSVAL_RAW64_UNDEFINED) {} + explicit constexpr layout(uint64_t bits) : asBits(bits) {} + explicit constexpr layout(double d) : asDouble(d) {} + } data; +@@ -945,8 +949,51 @@ class MOZ_NON_PARAM alignas(8) Value + } + } JS_HAZ_GC_POINTER; + ++/** ++ * This is a null-constructible structure that can convert to and from ++ * a Value, allowing UninitializedValue to be stored in unions. ++ */ ++struct MOZ_NON_PARAM alignas(8) UninitializedValue ++{ ++ private: ++ uint64_t bits; ++ ++ public: ++ UninitializedValue() = default; ++ UninitializedValue(const UninitializedValue&) = default; ++ MOZ_IMPLICIT UninitializedValue(const Value& val) : bits(val.asRawBits()) {} ++ ++ inline uint64_t asRawBits() const { ++ return bits; ++ } ++ ++ inline Value& asValueRef() { ++ return *reinterpret_cast(this); ++ } ++ inline const Value& asValueRef() const { ++ return *reinterpret_cast(this); ++ } ++ ++ inline operator Value&() { ++ return asValueRef(); ++ } ++ inline operator Value const&() const { ++ return asValueRef(); ++ } ++ inline operator Value() const { ++ return asValueRef(); ++ } ++ ++ inline void operator=(Value const& other) { ++ asValueRef() = other; ++ } ++}; ++ + static_assert(sizeof(Value) == 8, "Value size must leave three tag bits, be a binary power, and is ubiquitously depended upon everywhere"); + ++static_assert(sizeof(UninitializedValue) == sizeof(Value), "Value and UninitializedValue must be the same size"); ++static_assert(alignof(UninitializedValue) == alignof(Value), "Value and UninitializedValue must have same alignment"); ++ + inline bool + IsOptimizedPlaceholderMagicValue(const Value& v) + { +diff --git js/src/jit/BaselineFrameInfo.h js/src/jit/BaselineFrameInfo.h +index 13bf0358d944..1691270acf17 100644 +--- js/src/jit/BaselineFrameInfo.h ++++ js/src/jit/BaselineFrameInfo.h +@@ -67,7 +67,7 @@ class StackValue + + union { + struct { +- Value v; ++ JS::UninitializedValue v; + } constant; + struct { + mozilla::AlignedStorage2 reg; +@@ -112,7 +112,7 @@ class StackValue + } + Value constant() const { + MOZ_ASSERT(kind_ == Constant); +- return data.constant.v; ++ return data.constant.v.asValueRef(); + } + ValueOperand reg() const { + MOZ_ASSERT(kind_ == Register); +diff --git js/src/jit/CacheIRCompiler.cpp js/src/jit/CacheIRCompiler.cpp +index 98d2dcbf1b23..35357ed7c8da 100644 +--- js/src/jit/CacheIRCompiler.cpp ++++ js/src/jit/CacheIRCompiler.cpp +@@ -925,7 +925,7 @@ CacheIRWriter::copyStubData(uint8_t* dest) const + *reinterpret_cast(destWords) = field.asInt64(); + break; + case StubField::Type::Value: +- InitGCPtr(destWords, field.asInt64()); ++ AsGCPtr(destWords)->init(Value::fromRawBits(uint64_t(field.asInt64()))); + break; + case StubField::Type::Limit: + MOZ_CRASH("Invalid type"); +diff --git js/src/jit/RegisterSets.h js/src/jit/RegisterSets.h +index b6436a801b1c..749730aac4c6 100644 +--- js/src/jit/RegisterSets.h ++++ js/src/jit/RegisterSets.h +@@ -226,13 +226,13 @@ class ConstantOrRegister + + // Space to hold either a Value or a TypedOrValueRegister. + union U { +- Value constant; ++ JS::UninitializedValue constant; + TypedOrValueRegister reg; + } data; + +- const Value& dataValue() const { ++ Value dataValue() const { + MOZ_ASSERT(constant()); +- return data.constant; ++ return data.constant.asValueRef(); + } + void setDataValue(const Value& value) { + MOZ_ASSERT(constant()); +@@ -268,7 +268,7 @@ class ConstantOrRegister + return constant_; + } + +- const Value& value() const { ++ Value value() const { + return dataValue(); + } + +diff --git js/src/jit/RematerializedFrame.cpp js/src/jit/RematerializedFrame.cpp +index f12475e5ee55..8cfb0c0d0b87 100644 +--- js/src/jit/RematerializedFrame.cpp ++++ js/src/jit/RematerializedFrame.cpp +@@ -60,9 +60,17 @@ RematerializedFrame::New(JSContext* cx, uint8_t* top, InlineFrameIterator& iter, + { + unsigned numFormals = iter.isFunctionFrame() ? iter.calleeTemplate()->nargs() : 0; + unsigned argSlots = Max(numFormals, iter.numActualArgs()); +- size_t numBytes = sizeof(RematerializedFrame) + +- (argSlots + iter.script()->nfixed()) * sizeof(Value) - +- sizeof(Value); // 1 Value included in sizeof(RematerializedFrame) ++ unsigned extraSlots = argSlots + iter.script()->nfixed(); ++ ++ // One Value slot is included in sizeof(RematerializedFrame), so we can ++ // reduce the extra slot count by one. However, if there are zero slot ++ // allocations total, then reducing the slots by one will lead to ++ // the memory allocation being smaller than sizeof(RematerializedFrame). ++ if (extraSlots > 0) ++ extraSlots -= 1; ++ ++ size_t numBytes = sizeof(RematerializedFrame) + (extraSlots * sizeof(Value)); ++ MOZ_ASSERT(numBytes >= sizeof(RematerializedFrame)); + + void* buf = cx->pod_calloc(numBytes); + if (!buf) +diff --git js/src/wasm/AsmJS.cpp js/src/wasm/AsmJS.cpp +index a5102bd66373..9fe705976ea3 100644 +--- js/src/wasm/AsmJS.cpp ++++ js/src/wasm/AsmJS.cpp +@@ -851,7 +851,7 @@ class NumLit + private: + Which which_; + union { +- Value scalar_; ++ JS::UninitializedValue scalar_; + SimdConstant simd_; + } u; + +@@ -874,7 +874,7 @@ class NumLit + + int32_t toInt32() const { + MOZ_ASSERT(which_ == Fixnum || which_ == NegativeInt || which_ == BigUnsigned); +- return u.scalar_.toInt32(); ++ return u.scalar_.asValueRef().toInt32(); + } + + uint32_t toUint32() const { +@@ -883,17 +883,17 @@ class NumLit + + double toDouble() const { + MOZ_ASSERT(which_ == Double); +- return u.scalar_.toDouble(); ++ return u.scalar_.asValueRef().toDouble(); + } + + float toFloat() const { + MOZ_ASSERT(which_ == Float); +- return float(u.scalar_.toDouble()); ++ return float(u.scalar_.asValueRef().toDouble()); + } + + Value scalarValue() const { + MOZ_ASSERT(which_ != OutOfRangeInt); +- return u.scalar_; ++ return u.scalar_.asValueRef(); + } + + bool isSimd() const +diff --git js/xpconnect/src/XPCWrappedNative.cpp js/xpconnect/src/XPCWrappedNative.cpp +index fd992eb22465..946d671ddd00 100644 +--- js/xpconnect/src/XPCWrappedNative.cpp ++++ js/xpconnect/src/XPCWrappedNative.cpp +@@ -1723,9 +1723,12 @@ CallMethodHelper::ConvertIndependentParam(uint8_t i) + // indirectly, regardless of in/out-ness. + if (type_tag == nsXPTType::T_JSVAL) { + // Root the value. +- dp->val.j.setUndefined(); +- if (!js::AddRawValueRoot(mCallContext, &dp->val.j, "XPCWrappedNative::CallMethod param")) ++ dp->val.j.asValueRef().setUndefined(); ++ if (!js::AddRawValueRoot(mCallContext, &dp->val.j.asValueRef(), ++ "XPCWrappedNative::CallMethod param")) ++ { + return false; ++ } + } + + // Flag cleanup for anything that isn't self-contained. +diff --git xpcom/reflect/xptcall/xptcall.h xpcom/reflect/xptcall/xptcall.h +index ddab2e4af127..4b387e8ee9c1 100644 +--- xpcom/reflect/xptcall/xptcall.h ++++ xpcom/reflect/xptcall/xptcall.h +@@ -39,7 +39,7 @@ struct nsXPTCMiniVariant + // Types below here are unknown to the assembly implementations, and + // therefore _must_ be passed with indirect semantics. We put them in + // the union here for type safety, so that we can avoid void* tricks. +- JS::Value j; ++ JS::UninitializedValue j; + } val; + }; + From owner-svn-ports-branches@freebsd.org Fri Mar 16 13:25:32 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 EA4CCF4EC88; Fri, 16 Mar 2018 13:25:31 +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 9FE4F7E55E; Fri, 16 Mar 2018 13:25:31 +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 9A9CA247B1; Fri, 16 Mar 2018 13:25:31 +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 w2GDPV9X008807; Fri, 16 Mar 2018 13:25:31 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2GDPViW008804; Fri, 16 Mar 2018 13:25:31 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201803161325.w2GDPViW008804@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 16 Mar 2018 13:25:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r464684 - in branches/2018Q1/www: firefox/files waterfox waterfox/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q1/www: firefox/files waterfox waterfox/files X-SVN-Commit-Revision: 464684 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, 16 Mar 2018 13:25:32 -0000 Author: jbeich Date: Fri Mar 16 13:25:30 2018 New Revision: 464684 URL: https://svnweb.freebsd.org/changeset/ports/464684 Log: MFH: r463893 www/firefox: fix and