From owner-svn-ports-branches@freebsd.org Sun Nov 13 09:33:58 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D548C3B85A; Sun, 13 Nov 2016 09:33:58 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E07D0683; Sun, 13 Nov 2016 09:33:57 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAD9XvKX017892; Sun, 13 Nov 2016 09:33:57 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAD9Xv1R017891; Sun, 13 Nov 2016 09:33:57 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201611130933.uAD9Xv1R017891@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sun, 13 Nov 2016 09:33:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426016 - branches/2016Q4/sysutils/rsyslog8 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Nov 2016 09:33:58 -0000 Author: matthew Date: Sun Nov 13 09:33:56 2016 New Revision: 426016 URL: https://svnweb.freebsd.org/changeset/ports/426016 Log: MFH: r425998 recvmmsg(2) is buggy in 11.0-RELEASE, but not recent 11-STABLE or HEAD -- the consequence for rsyslog being that it does not record any log messages received via UDP to a log file. recvmmsg(2) fix was applied to HEAD in r307036 and MFC'd to 11-STABLE in r307311. Therefore prevent configure testing for recvmmsg(2) before OSVERSION 1100504. Note: this is a no-op for older releases than 11 -- recvmmsg(2) doesn't exist there. PR: 214428 Reported by: dch@skunkwerks.at Approved by: ports-secteam (feld) Modified: branches/2016Q4/sysutils/rsyslog8/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/sysutils/rsyslog8/Makefile ============================================================================== --- branches/2016Q4/sysutils/rsyslog8/Makefile Sun Nov 13 09:25:51 2016 (r426015) +++ branches/2016Q4/sysutils/rsyslog8/Makefile Sun Nov 13 09:33:56 2016 (r426016) @@ -2,6 +2,7 @@ PORTNAME= rsyslog PORTVERSION= 8.21.0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.rsyslog.com/files/download/rsyslog/ @@ -120,6 +121,9 @@ post-patch: @${GREP} -rl '/etc/rsyslog.conf' ${WRKSRC}|${XARGS} ${REINPLACE_CMD} -e\ 's|/etc/rsyslog.conf|${PREFIX}/etc/rsyslog.conf|' @${REINPLACE_CMD} -e 's,/lib/rsyslog,${PREFIX}/lib/rsyslog,' ${WRKSRC}/tools/syslogd.c +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100504 + @${REINPLACE_CMD} -e 's,recvmmsg ,,' ${WRKSRC}/configure.ac +.endif @${FIND} ${WRKSRC} -name '*.bak' -delete .include From owner-svn-ports-branches@freebsd.org Mon Nov 14 10:31:37 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12DDBC3EB32; Mon, 14 Nov 2016 10:31:37 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E3D6E1AA7; Mon, 14 Nov 2016 10:31:36 +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 uAEAVaWP026149; Mon, 14 Nov 2016 10:31:36 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAEAVZuE026146; Mon, 14 Nov 2016 10:31:35 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201611141031.uAEAVZuE026146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Mon, 14 Nov 2016 10:31:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426099 - branches/2016Q4/security/linux-c6-libgcrypt X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Nov 2016 10:31:37 -0000 Author: tijl Date: Mon Nov 14 10:31:35 2016 New Revision: 426099 URL: https://svnweb.freebsd.org/changeset/ports/426099 Log: MFH: r426033 Update to 1.4.5-12.el6_8. PR: 214460 Submitted by: Piotr Kubaj Security: https://rhn.redhat.com/errata/RHSA-2016-2674.html Approved by: ports-secteam (junovitch) Modified: branches/2016Q4/security/linux-c6-libgcrypt/Makefile branches/2016Q4/security/linux-c6-libgcrypt/distinfo.i386 branches/2016Q4/security/linux-c6-libgcrypt/distinfo.x86_64 Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/security/linux-c6-libgcrypt/Makefile ============================================================================== --- branches/2016Q4/security/linux-c6-libgcrypt/Makefile Mon Nov 14 09:59:25 2016 (r426098) +++ branches/2016Q4/security/linux-c6-libgcrypt/Makefile Mon Nov 14 10:31:35 2016 (r426099) @@ -3,16 +3,16 @@ PORTNAME= libgcrypt PORTVERSION= 1.4.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= security linux MAINTAINER= emulation@FreeBSD.org COMMENT= General purpose crypto library based on code used in GnuPG (Linux CentOS ${LINUX_DIST_VER}) +RPMVERSION= 12.el6_8 USES= linux:c6 -USE_LINUX_RPM= yes -RPMVERSION= 11.el6_4 USE_LDCONFIG= yes +USE_LINUX_RPM= yes PORTDOCS= AUTHORS COPYING.LIB NEWS THANKS DESCR= ${.CURDIR}/../libgcrypt/pkg-descr Modified: branches/2016Q4/security/linux-c6-libgcrypt/distinfo.i386 ============================================================================== --- branches/2016Q4/security/linux-c6-libgcrypt/distinfo.i386 Mon Nov 14 09:59:25 2016 (r426098) +++ branches/2016Q4/security/linux-c6-libgcrypt/distinfo.i386 Mon Nov 14 10:31:35 2016 (r426099) @@ -1,5 +1,5 @@ -TIMESTAMP = 1466256792 -SHA256 (rpm/i686/centos/6.8/libgcrypt-1.4.5-11.el6_4.i686.rpm) = 800d11a507a330b28e59d300bf7383b19c95b5a857863b1501b8aa1f0b9388dc -SIZE (rpm/i686/centos/6.8/libgcrypt-1.4.5-11.el6_4.i686.rpm) = 233684 -SHA256 (rpm/i686/centos/6.8/libgcrypt-1.4.5-11.el6_4.src.rpm) = c963b5bf4c84d5798d987e86b4e600ce3c7ae03e035096d88982385a81dcdbbc -SIZE (rpm/i686/centos/6.8/libgcrypt-1.4.5-11.el6_4.src.rpm) = 1257444 +TIMESTAMP = 1478991104 +SHA256 (rpm/i686/centos/6.8/libgcrypt-1.4.5-12.el6_8.i686.rpm) = 12f569a66c65aedcf6899fdc85fd4a7ece9179735863e8863c3819b03b901faf +SIZE (rpm/i686/centos/6.8/libgcrypt-1.4.5-12.el6_8.i686.rpm) = 233772 +SHA256 (rpm/i686/centos/6.8/libgcrypt-1.4.5-12.el6_8.src.rpm) = e7510256aa30561185faf8b9e6881f714a19d18ee39f0a39a949d28a97d83114 +SIZE (rpm/i686/centos/6.8/libgcrypt-1.4.5-12.el6_8.src.rpm) = 1259217 Modified: branches/2016Q4/security/linux-c6-libgcrypt/distinfo.x86_64 ============================================================================== --- branches/2016Q4/security/linux-c6-libgcrypt/distinfo.x86_64 Mon Nov 14 09:59:25 2016 (r426098) +++ branches/2016Q4/security/linux-c6-libgcrypt/distinfo.x86_64 Mon Nov 14 10:31:35 2016 (r426099) @@ -1,7 +1,7 @@ -TIMESTAMP = 1466257384 -SHA256 (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-11.el6_4.x86_64.rpm) = bdda38f5a6dbfe6a1d07dd6d5f38aace66ff0a19c4575c834a6fdb0f8a226c01 -SIZE (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-11.el6_4.x86_64.rpm) = 234008 -SHA256 (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-11.el6_4.i686.rpm) = 800d11a507a330b28e59d300bf7383b19c95b5a857863b1501b8aa1f0b9388dc -SIZE (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-11.el6_4.i686.rpm) = 233684 -SHA256 (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-11.el6_4.src.rpm) = c963b5bf4c84d5798d987e86b4e600ce3c7ae03e035096d88982385a81dcdbbc -SIZE (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-11.el6_4.src.rpm) = 1257444 +TIMESTAMP = 1478992169 +SHA256 (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-12.el6_8.i686.rpm) = 12f569a66c65aedcf6899fdc85fd4a7ece9179735863e8863c3819b03b901faf +SIZE (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-12.el6_8.i686.rpm) = 233772 +SHA256 (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-12.el6_8.x86_64.rpm) = 81c29e7ec131ff3f1e867679b355228ebf9c10a57a680c40766a118a71d7ba71 +SIZE (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-12.el6_8.x86_64.rpm) = 234088 +SHA256 (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-12.el6_8.src.rpm) = e7510256aa30561185faf8b9e6881f714a19d18ee39f0a39a949d28a97d83114 +SIZE (rpm/x86_64/centos/6.8/libgcrypt-1.4.5-12.el6_8.src.rpm) = 1259217 From owner-svn-ports-branches@freebsd.org Mon Nov 14 16:44:47 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C31BEC410E3; Mon, 14 Nov 2016 16:44:47 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 878D289; Mon, 14 Nov 2016 16:44:47 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAEGikUq080610; Mon, 14 Nov 2016 16:44:46 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAEGikqb080609; Mon, 14 Nov 2016 16:44:46 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201611141644.uAEGikqb080609@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Mon, 14 Nov 2016 16:44:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426125 - in branches/2016Q4/sysutils/xfce4-mount-plugin: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Nov 2016 16:44:47 -0000 Author: olivierd Date: Mon Nov 14 16:44:46 2016 New Revision: 426125 URL: https://svnweb.freebsd.org/changeset/ports/426125 Log: MFH: r426027 - Don't call fusermount for fuse mount points - Bump PORTREVISION While I'm here, adjust dependencies (reported by QA script) PR: 214336 Submitted by: Approved by: ports-secteam (junovitch@) Added: branches/2016Q4/sysutils/xfce4-mount-plugin/files/ - copied from r426027, head/sysutils/xfce4-mount-plugin/files/ Modified: branches/2016Q4/sysutils/xfce4-mount-plugin/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/sysutils/xfce4-mount-plugin/Makefile ============================================================================== --- branches/2016Q4/sysutils/xfce4-mount-plugin/Makefile Mon Nov 14 16:33:15 2016 (r426124) +++ branches/2016Q4/sysutils/xfce4-mount-plugin/Makefile Mon Nov 14 16:44:46 2016 (r426125) @@ -3,7 +3,7 @@ PORTNAME= xfce4-mount-plugin PORTVERSION= 0.6.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 @@ -13,11 +13,14 @@ COMMENT= Mount and umount utility for th LICENSE= GPLv2 +LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 + GNU_CONFIGURE= yes INSTALLS_ICONS= yes INSTALL_TARGET= install-strip USES= gettext gmake libtool pkgconfig xfce tar:bzip2 -USE_GNOME= intltool intlhack +USE_GNOME= gtk20 cairo intltool intlhack USE_LDCONFIG= yes USE_XFCE= panel From owner-svn-ports-branches@freebsd.org Tue Nov 15 21:42:45 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 82508C43455; Tue, 15 Nov 2016 21:42: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 mx1.freebsd.org (Postfix) with ESMTPS id 255CD1F0E; Tue, 15 Nov 2016 21:42: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 uAFLgiBq073640; Tue, 15 Nov 2016 21:42:44 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAFLgho6073632; Tue, 15 Nov 2016 21:42:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611152142.uAFLgho6073632@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 15 Nov 2016 21:42:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426184 - in branches/2016Q4/www: firefox-esr firefox-esr-i18n libxul linux-firefox X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Nov 2016 21:42:45 -0000 Author: jbeich Date: Tue Nov 15 21:42:43 2016 New Revision: 426184 URL: https://svnweb.freebsd.org/changeset/ports/426184 Log: MFH: r425098 r425101 www/firefox-esr: update to 45.5esr Changes: https://www.mozilla.org/firefox/45.5.0/releasenotes/ Security: d1853110-07f4-4645-895b-6fd462ad0589 Approved by: ports-secteam (feld) Modified: branches/2016Q4/www/firefox-esr-i18n/Makefile branches/2016Q4/www/firefox-esr-i18n/distinfo branches/2016Q4/www/firefox-esr/Makefile branches/2016Q4/www/firefox-esr/distinfo branches/2016Q4/www/libxul/Makefile branches/2016Q4/www/libxul/distinfo branches/2016Q4/www/linux-firefox/Makefile branches/2016Q4/www/linux-firefox/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/www/firefox-esr-i18n/Makefile ============================================================================== --- branches/2016Q4/www/firefox-esr-i18n/Makefile Tue Nov 15 20:58:32 2016 (r426183) +++ branches/2016Q4/www/firefox-esr-i18n/Makefile Tue Nov 15 21:42:43 2016 (r426184) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 45.4.0 +PORTVERSION= 45.5.0 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/2016Q4/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2016Q4/www/firefox-esr-i18n/distinfo Tue Nov 15 20:58:32 2016 (r426183) +++ branches/2016Q4/www/firefox-esr-i18n/distinfo Tue Nov 15 21:42:43 2016 (r426184) @@ -1,181 +1,181 @@ -TIMESTAMP = 1473242792 -SHA256 (xpi/firefox-45.4.0/ach.xpi) = f43825621ccd7920710608686aa813594afd1d3b19bff8eb49bd32143b81a856 -SIZE (xpi/firefox-45.4.0/ach.xpi) = 426529 -SHA256 (xpi/firefox-45.4.0/af.xpi) = 93166fd1be0a9b870b3043c752ce7326f7a15a20c38daa40655ed0a6440a8afb -SIZE (xpi/firefox-45.4.0/af.xpi) = 439353 -SHA256 (xpi/firefox-45.4.0/an.xpi) = 350c7e992de73a4aed0573f679b819e8f79a4f0ed6a98d8a05eaeb8f1eae82b4 -SIZE (xpi/firefox-45.4.0/an.xpi) = 449036 -SHA256 (xpi/firefox-45.4.0/ar.xpi) = 6f9593b7f17d6917d4a3ef1d553675e8d2e7742068692228564b1fc8ea5f0afe -SIZE (xpi/firefox-45.4.0/ar.xpi) = 474961 -SHA256 (xpi/firefox-45.4.0/as.xpi) = 339bb60ab5d0621e4f26aeceae22ebb93ad7bc6d6870b3d9a21c47f36dd9ccb4 -SIZE (xpi/firefox-45.4.0/as.xpi) = 483096 -SHA256 (xpi/firefox-45.4.0/ast.xpi) = b991d439abe7795122711996c4626d784e51794abe8f2307f469296c407e6045 -SIZE (xpi/firefox-45.4.0/ast.xpi) = 419249 -SHA256 (xpi/firefox-45.4.0/az.xpi) = 2516100c734bb9efa1143b5043b7c3ba71a2bc8722ceb916fdf9a9485bc813d4 -SIZE (xpi/firefox-45.4.0/az.xpi) = 464018 -SHA256 (xpi/firefox-45.4.0/be.xpi) = 16bf04ab6b305a7431bb5e38d9b06e1525f3dd630154ba1eabf6e6ff1039c8cd -SIZE (xpi/firefox-45.4.0/be.xpi) = 442619 -SHA256 (xpi/firefox-45.4.0/bg.xpi) = 4b8b75bbada127bb585acf10164d0448dda66447895a5fd2fdda140498634b7e -SIZE (xpi/firefox-45.4.0/bg.xpi) = 460809 -SHA256 (xpi/firefox-45.4.0/bn-BD.xpi) = ccc725acfd3aa01010b98e94590e97ed6e45c6e8c3e83c1e255c09a660009003 -SIZE (xpi/firefox-45.4.0/bn-BD.xpi) = 515643 -SHA256 (xpi/firefox-45.4.0/bn-IN.xpi) = 486a3cd531c5999551fd3e0f21294130c03f02d6c20358bde7829bae8573e81a -SIZE (xpi/firefox-45.4.0/bn-IN.xpi) = 494076 -SHA256 (xpi/firefox-45.4.0/br.xpi) = c40dac8236f491df2a9d7cde5d3ebf7d9feb1b8b29c85963c7b3529607ab586c -SIZE (xpi/firefox-45.4.0/br.xpi) = 436390 -SHA256 (xpi/firefox-45.4.0/bs.xpi) = cfc6bc28e9a56fa58239365b5f1d2a60c562fec9d8d5b71c59617a9291833d41 -SIZE (xpi/firefox-45.4.0/bs.xpi) = 442998 -SHA256 (xpi/firefox-45.4.0/ca.xpi) = aa94f2b5a0d8519b9bf793cbb073ea6486cf4d3c692a87fcc6e7f0285b80e9ca -SIZE (xpi/firefox-45.4.0/ca.xpi) = 436832 -SHA256 (xpi/firefox-45.4.0/cs.xpi) = fb448ee61f89bf2d6ee79cb05c6c10dfd8ece18f1f61dea390bf4db43740d8ba -SIZE (xpi/firefox-45.4.0/cs.xpi) = 443482 -SHA256 (xpi/firefox-45.4.0/cy.xpi) = aa453a43538c32c36c21e49af9800fb814e79c0b64b31905fd29b4360ae9d4ba -SIZE (xpi/firefox-45.4.0/cy.xpi) = 438907 -SHA256 (xpi/firefox-45.4.0/da.xpi) = 087bc37a4d9004273c83ffe94195077e440b1de5213f83736f16bbd3c3300e9b -SIZE (xpi/firefox-45.4.0/da.xpi) = 430078 -SHA256 (xpi/firefox-45.4.0/de.xpi) = e5f3cceaeb70eea4e6b2a2c9c503598ce4a5f29dc422efedc117737171f5f3f0 -SIZE (xpi/firefox-45.4.0/de.xpi) = 445481 -SHA256 (xpi/firefox-45.4.0/dsb.xpi) = 90fd904662b4ca08d56533a11738c4e393b1262c0a3de7c9fd81da0ca54b43b8 -SIZE (xpi/firefox-45.4.0/dsb.xpi) = 463791 -SHA256 (xpi/firefox-45.4.0/el.xpi) = 982816ee82a4e5f1a7fca5416718965deec097d9c2f2a6a81ac489ff352912bf -SIZE (xpi/firefox-45.4.0/el.xpi) = 470866 -SHA256 (xpi/firefox-45.4.0/en-GB.xpi) = 76b26b33e7be5318e5ee4e5028d4ab8d9197887103bc2fbe690a78965f5f01c7 -SIZE (xpi/firefox-45.4.0/en-GB.xpi) = 423871 -SHA256 (xpi/firefox-45.4.0/en-US.xpi) = 6b38797c033d8126fe3ebeabac5dad69cc3589fc60c34f2b9a0b4ae75981b373 -SIZE (xpi/firefox-45.4.0/en-US.xpi) = 425461 -SHA256 (xpi/firefox-45.4.0/en-ZA.xpi) = 5b16e570c4a9172cad97906cd19f5a7b8a6d4ecd6ea03fdb90bbbac62e0f463e -SIZE (xpi/firefox-45.4.0/en-ZA.xpi) = 420776 -SHA256 (xpi/firefox-45.4.0/eo.xpi) = 1a6fcd26badc0d328bb2f895be2de6ea8e43dcb90a92dadf8f7d9a0ef5608c8a -SIZE (xpi/firefox-45.4.0/eo.xpi) = 440960 -SHA256 (xpi/firefox-45.4.0/es-AR.xpi) = aceb9e5f099da923ac01a2f6aa7e3a49289b3e537eb7be362ad0cec86bedcd35 -SIZE (xpi/firefox-45.4.0/es-AR.xpi) = 441481 -SHA256 (xpi/firefox-45.4.0/es-CL.xpi) = e3f6ad6caee0ad3efb22f6f9f7c2b2d96fa3991facc0a739f5dc699465151264 -SIZE (xpi/firefox-45.4.0/es-CL.xpi) = 368763 -SHA256 (xpi/firefox-45.4.0/es-ES.xpi) = e847c88605618aa4436b3c42ced29e9fa0d05a0a6ee27df77101a8522ee9030c -SIZE (xpi/firefox-45.4.0/es-ES.xpi) = 353716 -SHA256 (xpi/firefox-45.4.0/es-MX.xpi) = 6a87bd0106b3be8782f2d60748f21616c203259f9ce3254866cbe523ccf82986 -SIZE (xpi/firefox-45.4.0/es-MX.xpi) = 449395 -SHA256 (xpi/firefox-45.4.0/et.xpi) = 3ea5d48958000130616f9fb15bbbba977e976df0f4fa635652a7f187f39ed651 -SIZE (xpi/firefox-45.4.0/et.xpi) = 433352 -SHA256 (xpi/firefox-45.4.0/eu.xpi) = 674692d81505b16b461a81ef876f6fd6e908f9bcd372f98693e9a682669f624d -SIZE (xpi/firefox-45.4.0/eu.xpi) = 441357 -SHA256 (xpi/firefox-45.4.0/fa.xpi) = ae692c0ea519c3ac6c4113b5efd87c884c0ddf2e837a49d5b9edfa3b6577ba24 -SIZE (xpi/firefox-45.4.0/fa.xpi) = 491941 -SHA256 (xpi/firefox-45.4.0/ff.xpi) = 5c798100cf41e70d4da8a8c238da79e66c6cd30c085fee287f7dbf419e9ad488 -SIZE (xpi/firefox-45.4.0/ff.xpi) = 441499 -SHA256 (xpi/firefox-45.4.0/fi.xpi) = 6f29b281e0f4a21bebe17cb81b55c6ae2af360d1520bd28f206a47a2ebbbff61 -SIZE (xpi/firefox-45.4.0/fi.xpi) = 438347 -SHA256 (xpi/firefox-45.4.0/fr.xpi) = e93efa05d41f6fc283b8f5f5db03c1a0b40b9278ccfe83f5ae43038af4ce4b55 -SIZE (xpi/firefox-45.4.0/fr.xpi) = 450037 -SHA256 (xpi/firefox-45.4.0/fy-NL.xpi) = 3d1dd9e247b6926a3f6d0e7ce8fa9d30fd88ff3abfdfec0076126bafa54fd3d3 -SIZE (xpi/firefox-45.4.0/fy-NL.xpi) = 447777 -SHA256 (xpi/firefox-45.4.0/ga-IE.xpi) = cf9433091912c71acb7564ac021bdd094d07b490f110f7b8f4244c6eb35a09bf -SIZE (xpi/firefox-45.4.0/ga-IE.xpi) = 460055 -SHA256 (xpi/firefox-45.4.0/gd.xpi) = 58ff55ceb7e881854135c1d750b5dd8a903187e4a7c74febb2764a5fa00bd315 -SIZE (xpi/firefox-45.4.0/gd.xpi) = 449711 -SHA256 (xpi/firefox-45.4.0/gl.xpi) = ecdd8338c3b43f3dd00a62ea3039ad989ad11cac4c6555a7198a52531303f643 -SIZE (xpi/firefox-45.4.0/gl.xpi) = 434804 -SHA256 (xpi/firefox-45.4.0/gn.xpi) = b278fa7bc867396119412854e3ac14afb7b1d4f63ca2c38134124d29229843bc -SIZE (xpi/firefox-45.4.0/gn.xpi) = 460648 -SHA256 (xpi/firefox-45.4.0/gu-IN.xpi) = 9381b0464c16c878dc2f373d1164a7507cb8db7d9e1fc8b51e2045e4865be5ca -SIZE (xpi/firefox-45.4.0/gu-IN.xpi) = 472566 -SHA256 (xpi/firefox-45.4.0/he.xpi) = cd6b55c50638ef23bc0e2604be4429c333c9c5ec614df87b565fbd2c64e3d768 -SIZE (xpi/firefox-45.4.0/he.xpi) = 454785 -SHA256 (xpi/firefox-45.4.0/hi-IN.xpi) = 85f24ea43d8b8965613f140e1fd89c04f52df49e727f10da18ccd7c40ad61bc9 -SIZE (xpi/firefox-45.4.0/hi-IN.xpi) = 486991 -SHA256 (xpi/firefox-45.4.0/hr.xpi) = d669460b7f669c09bf114a66fd855c7bd68e0199e393a0767347b8d8d33e62e1 -SIZE (xpi/firefox-45.4.0/hr.xpi) = 449068 -SHA256 (xpi/firefox-45.4.0/hsb.xpi) = e75994fb29d63d8efbb23ede2d4672d43f0e6b981623f4e394179eb7099603e9 -SIZE (xpi/firefox-45.4.0/hsb.xpi) = 461454 -SHA256 (xpi/firefox-45.4.0/hu.xpi) = e5faf70dff5dce51eb5d0844493758bfa863e4c2fd22e56346fdf2bba3715285 -SIZE (xpi/firefox-45.4.0/hu.xpi) = 449777 -SHA256 (xpi/firefox-45.4.0/hy-AM.xpi) = 1506ca20942ba8176a3adc7a2f8f82c78fe8ca58a41c98d7043b9fa0be963ad0 -SIZE (xpi/firefox-45.4.0/hy-AM.xpi) = 500040 -SHA256 (xpi/firefox-45.4.0/id.xpi) = 4649c3fb879875aadc28d94ac585cb239aa267903fc3506bc84330f37073ca4b -SIZE (xpi/firefox-45.4.0/id.xpi) = 427175 -SHA256 (xpi/firefox-45.4.0/is.xpi) = 4238fdb1f60caa6e5d3cd05c6fbe6dd109bffc9981731ee1bc67f79fc33320a3 -SIZE (xpi/firefox-45.4.0/is.xpi) = 443209 -SHA256 (xpi/firefox-45.4.0/it.xpi) = 19681a2c4a29115c1c23d2eb533545ee5523df50e6154bb3e78079aaed3ce1fe -SIZE (xpi/firefox-45.4.0/it.xpi) = 343724 -SHA256 (xpi/firefox-45.4.0/ja.xpi) = bfb8f237438bfce780d08832437ca9f381d679d52f3d05329114881b790fb3e3 -SIZE (xpi/firefox-45.4.0/ja.xpi) = 486331 -SHA256 (xpi/firefox-45.4.0/kk.xpi) = dc9a2e668acbcf9ad7e3ea0fbd300578958c5ea809a32857d5d910ac937d398f -SIZE (xpi/firefox-45.4.0/kk.xpi) = 498895 -SHA256 (xpi/firefox-45.4.0/km.xpi) = 09690c3d240996b8250f39fa067bf94e085d0dc92b6a723dbbad43812b2030c1 -SIZE (xpi/firefox-45.4.0/km.xpi) = 504301 -SHA256 (xpi/firefox-45.4.0/kn.xpi) = 1caef936831ccdc2476338a82d242de38d8b95d01da045fd4e1c83a635bd4d1a -SIZE (xpi/firefox-45.4.0/kn.xpi) = 495880 -SHA256 (xpi/firefox-45.4.0/ko.xpi) = 6911af52b3158060b3c9d908a9b8644546860b201318c3eb9e8998b4225a467d -SIZE (xpi/firefox-45.4.0/ko.xpi) = 465289 -SHA256 (xpi/firefox-45.4.0/lij.xpi) = c32bac05237328047a1f96817d2b4196e320d91d620a150fe0769c4607654ed1 -SIZE (xpi/firefox-45.4.0/lij.xpi) = 381384 -SHA256 (xpi/firefox-45.4.0/lt.xpi) = 12425fdf610cfa47eacd57c46c052c3b47d70db690b9ab879827c799a339c558 -SIZE (xpi/firefox-45.4.0/lt.xpi) = 454678 -SHA256 (xpi/firefox-45.4.0/lv.xpi) = 215ae965deb8f9c0c48d9d6aa92410bd2248b603698607575a9f8609eb4804e1 -SIZE (xpi/firefox-45.4.0/lv.xpi) = 445720 -SHA256 (xpi/firefox-45.4.0/mai.xpi) = 94fb864c77fd9290dcc3bd04cb1eadbcf968670045eaa3eb9dcac05c3184acf6 -SIZE (xpi/firefox-45.4.0/mai.xpi) = 492650 -SHA256 (xpi/firefox-45.4.0/mk.xpi) = 86f3dfc67c95edc145edbd9c74d43d0ea851152efcbf9668e09815bb7bdcff08 -SIZE (xpi/firefox-45.4.0/mk.xpi) = 476391 -SHA256 (xpi/firefox-45.4.0/ml.xpi) = 58ef5156b28ceda053c1493eccbd752781418b78244e23e0c39d37d987988c2f -SIZE (xpi/firefox-45.4.0/ml.xpi) = 498681 -SHA256 (xpi/firefox-45.4.0/mr.xpi) = b8425659021b1c2f289c0bf5c55001ff3258f7196019ccc71cf4f813ca4a00e6 -SIZE (xpi/firefox-45.4.0/mr.xpi) = 503700 -SHA256 (xpi/firefox-45.4.0/ms.xpi) = 88d5757a8acc259751ff04e1f9a94c4f59cf4e280ba2134d64caca372ed0d58e -SIZE (xpi/firefox-45.4.0/ms.xpi) = 440064 -SHA256 (xpi/firefox-45.4.0/nb-NO.xpi) = 4a2003808403b49618c0ab33cd3def7382d0b97fdf56336c5d390cd8fcc65751 -SIZE (xpi/firefox-45.4.0/nb-NO.xpi) = 435470 -SHA256 (xpi/firefox-45.4.0/nl.xpi) = 771bbc2e649be9f9529fa745021ecd40edf8f89f688b1547eaf59d33c4ad22ed -SIZE (xpi/firefox-45.4.0/nl.xpi) = 435202 -SHA256 (xpi/firefox-45.4.0/nn-NO.xpi) = 81fffe653e75481c4cf580d95407f9a963df563ec3b489644aa7dd51a310d097 -SIZE (xpi/firefox-45.4.0/nn-NO.xpi) = 432934 -SHA256 (xpi/firefox-45.4.0/or.xpi) = 331de883dc3c17f986662f81472c39d156d2ac75c686857f65cb57e6d0d71e34 -SIZE (xpi/firefox-45.4.0/or.xpi) = 495922 -SHA256 (xpi/firefox-45.4.0/pa-IN.xpi) = 181b9e600cc89229060cf59c5d0a6c2bee24084c749dc57feb67278aa2d3d4c8 -SIZE (xpi/firefox-45.4.0/pa-IN.xpi) = 489550 -SHA256 (xpi/firefox-45.4.0/pl.xpi) = e5ffe9711bddc494c5d97388bfa2484e7da9f2fdc812d81ae65d461e9aac6061 -SIZE (xpi/firefox-45.4.0/pl.xpi) = 383929 -SHA256 (xpi/firefox-45.4.0/pt-BR.xpi) = db83433dbe974388999092ca49027730da198ce86042aacdaf33be58bfc52e60 -SIZE (xpi/firefox-45.4.0/pt-BR.xpi) = 450991 -SHA256 (xpi/firefox-45.4.0/pt-PT.xpi) = eb64e48eaff38c53aa75f1f742778ebb8c6e259bf86e24a1e573c513efc39712 -SIZE (xpi/firefox-45.4.0/pt-PT.xpi) = 437022 -SHA256 (xpi/firefox-45.4.0/rm.xpi) = 88ee595011b2f7f1031de96ffc384991b53d3a5ee3cae16231ec559c6722c47c -SIZE (xpi/firefox-45.4.0/rm.xpi) = 437717 -SHA256 (xpi/firefox-45.4.0/ro.xpi) = 3badd245dd69cb828e3fa5ba3d550152fc109ffa23f5ca6025828c25fd5def49 -SIZE (xpi/firefox-45.4.0/ro.xpi) = 444062 -SHA256 (xpi/firefox-45.4.0/ru.xpi) = 4c2a3a157e7f40c27e37864585a5b5c75cda15a722ee5891c6fa5ac5094f2a56 -SIZE (xpi/firefox-45.4.0/ru.xpi) = 392738 -SHA256 (xpi/firefox-45.4.0/si.xpi) = 85f65e476bf0a6e4fcbd08d73ce1dd6c6d82a3cbb2d3eb95c7dfaddcded21d19 -SIZE (xpi/firefox-45.4.0/si.xpi) = 482248 -SHA256 (xpi/firefox-45.4.0/sk.xpi) = 07dc2468781b2d26ccc5901527cd46fe22d4a65909180515b2776dcf93ca81db -SIZE (xpi/firefox-45.4.0/sk.xpi) = 453606 -SHA256 (xpi/firefox-45.4.0/sl.xpi) = 30301e0f05f988570f90a92894d9f4c782840f780a6c71278cbf495d4405ef44 -SIZE (xpi/firefox-45.4.0/sl.xpi) = 444963 -SHA256 (xpi/firefox-45.4.0/son.xpi) = bc5ef59a203170392f94de355b068a1bff197b9c0ea5e1e252c40b2170888762 -SIZE (xpi/firefox-45.4.0/son.xpi) = 433513 -SHA256 (xpi/firefox-45.4.0/sq.xpi) = ae880d4e2b5933f983b6f4ba0164626a8ed957d05e74213f2f9491bcf532731d -SIZE (xpi/firefox-45.4.0/sq.xpi) = 452186 -SHA256 (xpi/firefox-45.4.0/sr.xpi) = 1e8b42b0d978e6d69ad503b59d2aa5630989ae4ab6eb2f8fb7d8afe845c507d1 -SIZE (xpi/firefox-45.4.0/sr.xpi) = 464478 -SHA256 (xpi/firefox-45.4.0/sv-SE.xpi) = ce8b6213f798b1ab1de1be34246db564dea7a99f53cab8777d55f5fa66806abe -SIZE (xpi/firefox-45.4.0/sv-SE.xpi) = 444212 -SHA256 (xpi/firefox-45.4.0/ta.xpi) = a3b51c2b08d48cb66b74b048a2bbb8503ebb5770b5a6ebdf804ebc2d4d13ceb8 -SIZE (xpi/firefox-45.4.0/ta.xpi) = 483117 -SHA256 (xpi/firefox-45.4.0/te.xpi) = 8d328b269a82a2b6e4cd9d0908039b9b6ed12554b2a7840b535049e242f1fe37 -SIZE (xpi/firefox-45.4.0/te.xpi) = 492471 -SHA256 (xpi/firefox-45.4.0/th.xpi) = e9b1b10d61dc1e04339dc0a14c6f317211504f19ae74464d3549db602a3c8315 -SIZE (xpi/firefox-45.4.0/th.xpi) = 477650 -SHA256 (xpi/firefox-45.4.0/tr.xpi) = 051b39fa1bdb6bf56163486a5976441f01b9fa4f6552192ac35382570e4fa09d -SIZE (xpi/firefox-45.4.0/tr.xpi) = 451166 -SHA256 (xpi/firefox-45.4.0/uk.xpi) = 13b7f42b8a673ce9781fe036d897caf0489fdf0b3271949dbb2cd43099d2add0 -SIZE (xpi/firefox-45.4.0/uk.xpi) = 494780 -SHA256 (xpi/firefox-45.4.0/uz.xpi) = 8671bf3490a4f6c98687c595f3184c847c7f644311a51bcccfd8a042e7626aff -SIZE (xpi/firefox-45.4.0/uz.xpi) = 443803 -SHA256 (xpi/firefox-45.4.0/vi.xpi) = 9959b5849a55f2ab0648fbb6cddd156d1913c99d4e1689733ca1cec54d34a788 -SIZE (xpi/firefox-45.4.0/vi.xpi) = 450778 -SHA256 (xpi/firefox-45.4.0/xh.xpi) = 081483fa67eceecd0aec32b8ff4eeaa6f4121975d3dc30b8450fdc0fba17633a -SIZE (xpi/firefox-45.4.0/xh.xpi) = 432918 -SHA256 (xpi/firefox-45.4.0/zh-CN.xpi) = 89b3e8f69876246aaa7f52ea21a7fbecedd3845413ecd69ab28dd638d1b4c399 -SIZE (xpi/firefox-45.4.0/zh-CN.xpi) = 475797 -SHA256 (xpi/firefox-45.4.0/zh-TW.xpi) = c86a2cd29730ef4f780423ca7fc9a1eeaed447ed45b19493f6ef03a44b618b1f -SIZE (xpi/firefox-45.4.0/zh-TW.xpi) = 466529 +TIMESTAMP = 1477916479 +SHA256 (xpi/firefox-45.5.0/ach.xpi) = e43517f42ea355d0a6ee6a38ddda69a714ffaac1c3b574c2fc8394f6790b5f02 +SIZE (xpi/firefox-45.5.0/ach.xpi) = 426530 +SHA256 (xpi/firefox-45.5.0/af.xpi) = 2604d3b6a13ab9cca4d6c65f9ff28065537fb100a4b2e13b4cd17112443c0bb8 +SIZE (xpi/firefox-45.5.0/af.xpi) = 439354 +SHA256 (xpi/firefox-45.5.0/an.xpi) = 95560e6f609d23bdd310a9b02aeeb17a3eb1d18df63058d9e92c163a4d1ba2c5 +SIZE (xpi/firefox-45.5.0/an.xpi) = 449036 +SHA256 (xpi/firefox-45.5.0/ar.xpi) = 111a0aa525bf69099ffabbb84328fe04c3e3e3ca4eab72e4772dc6fdf6993827 +SIZE (xpi/firefox-45.5.0/ar.xpi) = 474961 +SHA256 (xpi/firefox-45.5.0/as.xpi) = aee9f10429c2c6d81de348b74ae6a781eb3acdb092244ed7b92ab10fb7e0b192 +SIZE (xpi/firefox-45.5.0/as.xpi) = 483096 +SHA256 (xpi/firefox-45.5.0/ast.xpi) = 6f8c9a404d5a5f9da1deab0f96dd0c1c3a6a86ca249f375fc4ee9cf1e1cab9b4 +SIZE (xpi/firefox-45.5.0/ast.xpi) = 419250 +SHA256 (xpi/firefox-45.5.0/az.xpi) = ebec9a55abb4b6a397041935dfe53628ae3588dce1104e4692f24b2336f31f75 +SIZE (xpi/firefox-45.5.0/az.xpi) = 464018 +SHA256 (xpi/firefox-45.5.0/be.xpi) = 924b48069cba5fcfab56f81f99f14414c4cbeb00fab4747c143d1b0624edad96 +SIZE (xpi/firefox-45.5.0/be.xpi) = 442619 +SHA256 (xpi/firefox-45.5.0/bg.xpi) = d37437dd9ad8c79e96f10ec652454b0d5e8dc36a90c41761fc7ed5fa812d8180 +SIZE (xpi/firefox-45.5.0/bg.xpi) = 460809 +SHA256 (xpi/firefox-45.5.0/bn-BD.xpi) = c91b8cefe387c834bbc904065a64d9276b2a06d1ec7b6f2d34a1050c31a5a91d +SIZE (xpi/firefox-45.5.0/bn-BD.xpi) = 515643 +SHA256 (xpi/firefox-45.5.0/bn-IN.xpi) = 830cbd4f99d35889e971715d08d90d03f8e421caa91bfa430f1796c22e94bfd1 +SIZE (xpi/firefox-45.5.0/bn-IN.xpi) = 494076 +SHA256 (xpi/firefox-45.5.0/br.xpi) = 5794ffdcc82ab7225163a3d4704ded4b88f3b4d7f5b55accc90d73c4d8784598 +SIZE (xpi/firefox-45.5.0/br.xpi) = 436390 +SHA256 (xpi/firefox-45.5.0/bs.xpi) = 3caab4bf9b192dd7b1883fe6dd1a66e5d1ef85a0f99527360161be396c4176f7 +SIZE (xpi/firefox-45.5.0/bs.xpi) = 442998 +SHA256 (xpi/firefox-45.5.0/ca.xpi) = be44a1e446b72078b0c9dcb378f14a2ed7b37750315b8d9900e881ce90d55102 +SIZE (xpi/firefox-45.5.0/ca.xpi) = 436832 +SHA256 (xpi/firefox-45.5.0/cs.xpi) = 1287b72d997f8e1f9d831129102c92b457d15db326a163a0cf29d2bbfadab639 +SIZE (xpi/firefox-45.5.0/cs.xpi) = 443482 +SHA256 (xpi/firefox-45.5.0/cy.xpi) = 67db58070b41e9f57a4faf1219bf3ce2635cbb6697df42425673696c1ba05f40 +SIZE (xpi/firefox-45.5.0/cy.xpi) = 438908 +SHA256 (xpi/firefox-45.5.0/da.xpi) = 3aef7bd85f26e2bf2c1926eeb0c31a5efdd2880b3db5e84ce2464edf802ea175 +SIZE (xpi/firefox-45.5.0/da.xpi) = 430078 +SHA256 (xpi/firefox-45.5.0/de.xpi) = 8c4ebdd879f32fb3ad76ab7aa1738bfa6faf0ed8e1300859ffa70ca48e7c6708 +SIZE (xpi/firefox-45.5.0/de.xpi) = 445482 +SHA256 (xpi/firefox-45.5.0/dsb.xpi) = 2361afb3020d59d3dffc310f2f8cd470aaf655b46a6f5ede3c36a521d26e7fe8 +SIZE (xpi/firefox-45.5.0/dsb.xpi) = 463791 +SHA256 (xpi/firefox-45.5.0/el.xpi) = fa37e644cfc3aba100ffd86e09a71587f2b93f9f2dc0f37b0d563740f90779cf +SIZE (xpi/firefox-45.5.0/el.xpi) = 470867 +SHA256 (xpi/firefox-45.5.0/en-GB.xpi) = b2cda715c8b7af012c2a92641ddb06f256711a4aad087265700c1385bdb15490 +SIZE (xpi/firefox-45.5.0/en-GB.xpi) = 423871 +SHA256 (xpi/firefox-45.5.0/en-US.xpi) = 4322b1a1460ac8d6e0ab92b13bd88657eb22fd6f82299008f18a5bacdad23289 +SIZE (xpi/firefox-45.5.0/en-US.xpi) = 425462 +SHA256 (xpi/firefox-45.5.0/en-ZA.xpi) = cb0f3a8c035310e62c8de1c34e5b38afb80d9d2328fc11b6aaef3282bef54a3b +SIZE (xpi/firefox-45.5.0/en-ZA.xpi) = 420776 +SHA256 (xpi/firefox-45.5.0/eo.xpi) = e26467fc2c6fcd2cc0295c6c5100df9504648bf855f00fdbfc0f52741a70264e +SIZE (xpi/firefox-45.5.0/eo.xpi) = 440960 +SHA256 (xpi/firefox-45.5.0/es-AR.xpi) = 2db36bf5dad04a9d08a678284945edf92eaff2f973977e3630b5def227e11e2e +SIZE (xpi/firefox-45.5.0/es-AR.xpi) = 441482 +SHA256 (xpi/firefox-45.5.0/es-CL.xpi) = 6f09da22397aad11b0f7d0a06dd24a529b277ebae57205bd54bc35307f8a6915 +SIZE (xpi/firefox-45.5.0/es-CL.xpi) = 368763 +SHA256 (xpi/firefox-45.5.0/es-ES.xpi) = 24cf77f10fd4d8cd2e466668d88c8f1c62423e833f68ebd525819be47a5f811f +SIZE (xpi/firefox-45.5.0/es-ES.xpi) = 353716 +SHA256 (xpi/firefox-45.5.0/es-MX.xpi) = f63a159bfe5839f8ab2d5c15c425f9512fceaf4c12f32db3d52ce3b2e8584ecb +SIZE (xpi/firefox-45.5.0/es-MX.xpi) = 449395 +SHA256 (xpi/firefox-45.5.0/et.xpi) = 6fc35b5e5b986d482f3be4f41ea273bdda2f7b537070316e94de84deee7988a5 +SIZE (xpi/firefox-45.5.0/et.xpi) = 433352 +SHA256 (xpi/firefox-45.5.0/eu.xpi) = 5380725ffcacde30b1426a512cb7f9fef13e918dce3ce34b3984dfc96874dbab +SIZE (xpi/firefox-45.5.0/eu.xpi) = 441357 +SHA256 (xpi/firefox-45.5.0/fa.xpi) = 320d858140acd4a18366e36aa428d3c686a16b4e9a0b3231580f10bceaab1865 +SIZE (xpi/firefox-45.5.0/fa.xpi) = 491941 +SHA256 (xpi/firefox-45.5.0/ff.xpi) = a43cb6dad31ac6d5ac9771d902274778352fa205c3c6dd635bbd385e07bcd207 +SIZE (xpi/firefox-45.5.0/ff.xpi) = 441500 +SHA256 (xpi/firefox-45.5.0/fi.xpi) = 2b07967fa0945600557dd3932effbc6bd6496aad44f05e0f2889df3548723fc2 +SIZE (xpi/firefox-45.5.0/fi.xpi) = 438347 +SHA256 (xpi/firefox-45.5.0/fr.xpi) = ed4490375b73e7d17162ec6c9c438c6d264d411b2fd25952ef5a4fcbd7588c76 +SIZE (xpi/firefox-45.5.0/fr.xpi) = 450037 +SHA256 (xpi/firefox-45.5.0/fy-NL.xpi) = 48c3b486a3ad05efed82072871bc1965cb6f49153eda697b814d6a2ef1a14265 +SIZE (xpi/firefox-45.5.0/fy-NL.xpi) = 447779 +SHA256 (xpi/firefox-45.5.0/ga-IE.xpi) = be941350d9cf948d775a2c72ce1f8cdc9645661565392259a545fd55e36347ae +SIZE (xpi/firefox-45.5.0/ga-IE.xpi) = 460056 +SHA256 (xpi/firefox-45.5.0/gd.xpi) = e90760a2dcf3a2967eaac603cc89983d0f11604aa4e6990c929a56777ea5bd22 +SIZE (xpi/firefox-45.5.0/gd.xpi) = 449711 +SHA256 (xpi/firefox-45.5.0/gl.xpi) = 0a0fe864e41c913da9d46603648bb7dbc27052fbdb5e7ae6bd6ad22be44293b2 +SIZE (xpi/firefox-45.5.0/gl.xpi) = 434804 +SHA256 (xpi/firefox-45.5.0/gn.xpi) = b29d3353beba65df00fc972032ba13551c5c7302417fb7bfdae95e96abda77d3 +SIZE (xpi/firefox-45.5.0/gn.xpi) = 460648 +SHA256 (xpi/firefox-45.5.0/gu-IN.xpi) = c8d315b207c40c98f4c224b15894945f33b979fd2f246a2d548456bb8b588244 +SIZE (xpi/firefox-45.5.0/gu-IN.xpi) = 472567 +SHA256 (xpi/firefox-45.5.0/he.xpi) = dcda4f07ff5778fce9eb9fe914c403c13a734f45e4ae62b59f353fc663735f16 +SIZE (xpi/firefox-45.5.0/he.xpi) = 454786 +SHA256 (xpi/firefox-45.5.0/hi-IN.xpi) = e4644654101a9bab8b8762e635d39794612539da95b6db7054252a380a569b0d +SIZE (xpi/firefox-45.5.0/hi-IN.xpi) = 486991 +SHA256 (xpi/firefox-45.5.0/hr.xpi) = c97d9f0dc536919c3466b7699b0c59951333c675e0a6a9d5e89e3ac689c8bc65 +SIZE (xpi/firefox-45.5.0/hr.xpi) = 449069 +SHA256 (xpi/firefox-45.5.0/hsb.xpi) = f343d2d50c64c4f3b835abaa91faea387da3092d42fd61e184974f2603633405 +SIZE (xpi/firefox-45.5.0/hsb.xpi) = 461454 +SHA256 (xpi/firefox-45.5.0/hu.xpi) = b69a8fa0b7aa6293c9a62075eeae912ffa1797179e2378378f936f775fa5f2c7 +SIZE (xpi/firefox-45.5.0/hu.xpi) = 449777 +SHA256 (xpi/firefox-45.5.0/hy-AM.xpi) = 748f6820f68488b34f76f8e678e2f6c862c91993f1334f579a4198f3184e3a00 +SIZE (xpi/firefox-45.5.0/hy-AM.xpi) = 500040 +SHA256 (xpi/firefox-45.5.0/id.xpi) = fc2b631f1f0afa0482358a91db769a3038b417080b737ff2e9f95f6e45ba84e8 +SIZE (xpi/firefox-45.5.0/id.xpi) = 427176 +SHA256 (xpi/firefox-45.5.0/is.xpi) = 9770f788deb615f5cdd3a9bdc4493651da5d45db2abcffc156146d4f0fed7f50 +SIZE (xpi/firefox-45.5.0/is.xpi) = 443210 +SHA256 (xpi/firefox-45.5.0/it.xpi) = 475464a002c91a32a7f24e813020f8c5c8c95930a33e3c89652e0d672b94c7be +SIZE (xpi/firefox-45.5.0/it.xpi) = 343724 +SHA256 (xpi/firefox-45.5.0/ja.xpi) = 673a28ac9ac2e3c849937d147d974d311965ea60f3b4fc13add5936add8895a5 +SIZE (xpi/firefox-45.5.0/ja.xpi) = 486331 +SHA256 (xpi/firefox-45.5.0/kk.xpi) = 397ccc6b0219f34ad7cb2d80982a088399906b4599aed3a99d08710101d148b1 +SIZE (xpi/firefox-45.5.0/kk.xpi) = 498896 +SHA256 (xpi/firefox-45.5.0/km.xpi) = 407d705372bd48c0cc771115409e3fe0d463be75541dc5861bc5265333d7d761 +SIZE (xpi/firefox-45.5.0/km.xpi) = 504302 +SHA256 (xpi/firefox-45.5.0/kn.xpi) = 7749e45660483c57aadd39273c5a527194e6492363d9cfcdd7c353cd5a03f575 +SIZE (xpi/firefox-45.5.0/kn.xpi) = 495881 +SHA256 (xpi/firefox-45.5.0/ko.xpi) = 23234d9cff72d3a95b61c061587187d60f68f377fbfa208967aac5ce51ec6460 +SIZE (xpi/firefox-45.5.0/ko.xpi) = 465289 +SHA256 (xpi/firefox-45.5.0/lij.xpi) = fdd702d919f31fe6e05c35ebed65bb8275b24019f51428fc01a28caa9299d7a4 +SIZE (xpi/firefox-45.5.0/lij.xpi) = 381385 +SHA256 (xpi/firefox-45.5.0/lt.xpi) = fda155e7d1e14237933dc3545c44483bf8bd30ef5d233d32a585adaa42b0986d +SIZE (xpi/firefox-45.5.0/lt.xpi) = 454678 +SHA256 (xpi/firefox-45.5.0/lv.xpi) = 43284894d624c9e91a9287af6f1fa57dfa311d8cc06e1db28efdf55dbe329d6a +SIZE (xpi/firefox-45.5.0/lv.xpi) = 445720 +SHA256 (xpi/firefox-45.5.0/mai.xpi) = 2beba2cae1449a1fe747e52af968e0a02d1feae7075d5e5a68e2246607b00869 +SIZE (xpi/firefox-45.5.0/mai.xpi) = 492650 +SHA256 (xpi/firefox-45.5.0/mk.xpi) = 12787da528d04428c11dd8335d017416f2cf45039d24c66f7585a76ddb9c66db +SIZE (xpi/firefox-45.5.0/mk.xpi) = 476392 +SHA256 (xpi/firefox-45.5.0/ml.xpi) = 26415536e8f0d6b76509b572f8b31938c68e78c3d0f9319350d6a56dd027b9ca +SIZE (xpi/firefox-45.5.0/ml.xpi) = 498681 +SHA256 (xpi/firefox-45.5.0/mr.xpi) = 0b4015254bcf7ed69458d657ada0da64d4dff2336b6e19cb39b9829fc42c62ad +SIZE (xpi/firefox-45.5.0/mr.xpi) = 503700 +SHA256 (xpi/firefox-45.5.0/ms.xpi) = f2efd99922a541ae3e0c26e11bc9aa439367f160ba72c068049279fe2f8c1a9c +SIZE (xpi/firefox-45.5.0/ms.xpi) = 440065 +SHA256 (xpi/firefox-45.5.0/nb-NO.xpi) = d12f4b1ca9be836b854409c12bbf23472176766ac9edb06530962c12367154b7 +SIZE (xpi/firefox-45.5.0/nb-NO.xpi) = 435471 +SHA256 (xpi/firefox-45.5.0/nl.xpi) = 829199a1e474b085fb2e2fc74816121e330ffa82536ad27647568e3d87718b60 +SIZE (xpi/firefox-45.5.0/nl.xpi) = 435202 +SHA256 (xpi/firefox-45.5.0/nn-NO.xpi) = e5cffec0e8eea3dcb8b6ac9fb76a78ee8e7f0607ab3b39b75d19ab6055bab399 +SIZE (xpi/firefox-45.5.0/nn-NO.xpi) = 432934 +SHA256 (xpi/firefox-45.5.0/or.xpi) = 85d40c52f830399a697adecc61a9705f687eacac8b0455c62016076511070259 +SIZE (xpi/firefox-45.5.0/or.xpi) = 495922 +SHA256 (xpi/firefox-45.5.0/pa-IN.xpi) = 99fbdff501bb4535955b9c3ed341670d7193dcd760b4b6c23634ca9063d203fa +SIZE (xpi/firefox-45.5.0/pa-IN.xpi) = 489551 +SHA256 (xpi/firefox-45.5.0/pl.xpi) = e9d930d7e1642afdfc016d1532dbec1b04a1273b32e0d9b6e1329407af13c464 +SIZE (xpi/firefox-45.5.0/pl.xpi) = 383929 +SHA256 (xpi/firefox-45.5.0/pt-BR.xpi) = b8c730425ee14fe079a5b71109fe3a7cb5a76901fc2219b4e1e8ac9b7db1baf2 +SIZE (xpi/firefox-45.5.0/pt-BR.xpi) = 450991 +SHA256 (xpi/firefox-45.5.0/pt-PT.xpi) = 54c5961f0b7940cd2fc3a7a0d391207abfdace09365745dfa27e7f0c3703499f +SIZE (xpi/firefox-45.5.0/pt-PT.xpi) = 437022 +SHA256 (xpi/firefox-45.5.0/rm.xpi) = 9b4ff53c4e6cd594c432225dde995c67fa38d5fba71b863b1c9c3a97fcf6cec5 +SIZE (xpi/firefox-45.5.0/rm.xpi) = 437718 +SHA256 (xpi/firefox-45.5.0/ro.xpi) = af2f5a6b93ecb81c206e8942314fc906718dc89bc28c58ab6241a4e904b8f12f +SIZE (xpi/firefox-45.5.0/ro.xpi) = 444062 +SHA256 (xpi/firefox-45.5.0/ru.xpi) = c96d5860f7bad459976f394856fd64dae2ab5ee3e37421664c1347f40f93e500 +SIZE (xpi/firefox-45.5.0/ru.xpi) = 392738 +SHA256 (xpi/firefox-45.5.0/si.xpi) = 4585ecd4c0bbc0cc55a7aed2fbf28f595ebfb80282f0db8cea82f9fd59f06486 +SIZE (xpi/firefox-45.5.0/si.xpi) = 482248 +SHA256 (xpi/firefox-45.5.0/sk.xpi) = 795896b8386c7b9abd6db4404b6abdcee13ac093c71fc3841f40a9c9220cca2d +SIZE (xpi/firefox-45.5.0/sk.xpi) = 453606 +SHA256 (xpi/firefox-45.5.0/sl.xpi) = b95084fc76094e397384d02970d23247edec756381c2f5fbb21075aee281cd32 +SIZE (xpi/firefox-45.5.0/sl.xpi) = 444964 +SHA256 (xpi/firefox-45.5.0/son.xpi) = 41a1627504b246c0758d075302fe804b5383003435fe1c45552e81d14e54a42d +SIZE (xpi/firefox-45.5.0/son.xpi) = 433513 +SHA256 (xpi/firefox-45.5.0/sq.xpi) = 7be642423869828ec63d681bac55abab3e93b7ea1a81d933e4860b60de5a3a3c +SIZE (xpi/firefox-45.5.0/sq.xpi) = 452186 +SHA256 (xpi/firefox-45.5.0/sr.xpi) = 387a3c80e577df6bbb5b03623370a95341344450c3a8194e79df731564020e78 +SIZE (xpi/firefox-45.5.0/sr.xpi) = 464479 +SHA256 (xpi/firefox-45.5.0/sv-SE.xpi) = b5002cba6eb5899232cf77fe78b91fb27d7f5c7a88243aab22903db7f9a9a254 +SIZE (xpi/firefox-45.5.0/sv-SE.xpi) = 444213 +SHA256 (xpi/firefox-45.5.0/ta.xpi) = cc01074e1a87b4946127a174689aadc96140cecd079fba6d08857072fc265d03 +SIZE (xpi/firefox-45.5.0/ta.xpi) = 483118 +SHA256 (xpi/firefox-45.5.0/te.xpi) = 60d74df3515eae0065159ca3cd1042eff96c51752bddf8b3c33a55b31a23aecd +SIZE (xpi/firefox-45.5.0/te.xpi) = 492471 +SHA256 (xpi/firefox-45.5.0/th.xpi) = ab356c8147651c06e7158021d71706417e5d3ce40ba9f4081441c36fe2d297cf +SIZE (xpi/firefox-45.5.0/th.xpi) = 477650 +SHA256 (xpi/firefox-45.5.0/tr.xpi) = c4979c0bea9ffc9df3293256386b63d66db4dd28adf40424232b154eb51c9607 +SIZE (xpi/firefox-45.5.0/tr.xpi) = 451166 +SHA256 (xpi/firefox-45.5.0/uk.xpi) = 21a1f23773c37de215236bfed9edd12ef2bde327f1c5beb7b397ac7afa65355f +SIZE (xpi/firefox-45.5.0/uk.xpi) = 494781 +SHA256 (xpi/firefox-45.5.0/uz.xpi) = 7a5a4e33ecfb101a7e6d7cff9c26af90be475034a0b5305b274626e8d258a725 +SIZE (xpi/firefox-45.5.0/uz.xpi) = 443803 +SHA256 (xpi/firefox-45.5.0/vi.xpi) = 2188331a22ed6b17c1f7d36d6bd15539c4a9f8573b0e87070841d55a8de4c4dc +SIZE (xpi/firefox-45.5.0/vi.xpi) = 450778 +SHA256 (xpi/firefox-45.5.0/xh.xpi) = c219e1a7553ff76375d6316386ad9e55ede8b118b67232ff9ee1a9483f388c0f +SIZE (xpi/firefox-45.5.0/xh.xpi) = 432919 +SHA256 (xpi/firefox-45.5.0/zh-CN.xpi) = b205019d0df1b9f24a71cba9bbcf570446d99fec938911f69ebad98893241093 +SIZE (xpi/firefox-45.5.0/zh-CN.xpi) = 475797 +SHA256 (xpi/firefox-45.5.0/zh-TW.xpi) = 9be63d771c21d0b44435cc82d59f9e5705b854f0be1ae85d6b7d1f81251114c1 +SIZE (xpi/firefox-45.5.0/zh-TW.xpi) = 466529 Modified: branches/2016Q4/www/firefox-esr/Makefile ============================================================================== --- branches/2016Q4/www/firefox-esr/Makefile Tue Nov 15 20:58:32 2016 (r426183) +++ branches/2016Q4/www/firefox-esr/Makefile Tue Nov 15 21:42:43 2016 (r426184) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 45.4.0 +DISTVERSION= 45.5.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2016Q4/www/firefox-esr/distinfo ============================================================================== --- branches/2016Q4/www/firefox-esr/distinfo Tue Nov 15 20:58:32 2016 (r426183) +++ branches/2016Q4/www/firefox-esr/distinfo Tue Nov 15 21:42:43 2016 (r426184) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473189353 -SHA256 (firefox-45.4.0esr.source.tar.xz) = cfd90096b9e1019b9de4fe061ece8c65f668b8a24bcbb657ce6b3c940ef83ad0 -SIZE (firefox-45.4.0esr.source.tar.xz) = 185182396 +TIMESTAMP = 1477916479 +SHA256 (firefox-45.5.0esr.source.tar.xz) = 3e843ca257bf64e11e547e9afdbce797838eb6e01449d2f313c0d1d3117450f1 +SIZE (firefox-45.5.0esr.source.tar.xz) = 184838132 Modified: branches/2016Q4/www/libxul/Makefile ============================================================================== --- branches/2016Q4/www/libxul/Makefile Tue Nov 15 20:58:32 2016 (r426183) +++ branches/2016Q4/www/libxul/Makefile Tue Nov 15 21:42:43 2016 (r426184) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= libxul -DISTVERSION= 45.4.0 -PORTREVISION= 6 +DISTVERSION= 45.5.0 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ - MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source + MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build1/source DISTNAME= firefox-${DISTVERSION}esr.source MAINTAINER?= gecko@FreeBSD.org Modified: branches/2016Q4/www/libxul/distinfo ============================================================================== --- branches/2016Q4/www/libxul/distinfo Tue Nov 15 20:58:32 2016 (r426183) +++ branches/2016Q4/www/libxul/distinfo Tue Nov 15 21:42:43 2016 (r426184) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473189353 -SHA256 (firefox-45.4.0esr.source.tar.xz) = cfd90096b9e1019b9de4fe061ece8c65f668b8a24bcbb657ce6b3c940ef83ad0 -SIZE (firefox-45.4.0esr.source.tar.xz) = 185182396 +TIMESTAMP = 1477916479 +SHA256 (firefox-45.5.0esr.source.tar.xz) = 3e843ca257bf64e11e547e9afdbce797838eb6e01449d2f313c0d1d3117450f1 +SIZE (firefox-45.5.0esr.source.tar.xz) = 184838132 Modified: branches/2016Q4/www/linux-firefox/Makefile ============================================================================== --- branches/2016Q4/www/linux-firefox/Makefile Tue Nov 15 20:58:32 2016 (r426183) +++ branches/2016Q4/www/linux-firefox/Makefile Tue Nov 15 21:42:43 2016 (r426184) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 45.4.0 +DISTVERSION= 45.5.0 DISTVERSIONSUFFIX=esr -PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/linux-i686/en-US \ Modified: branches/2016Q4/www/linux-firefox/distinfo ============================================================================== --- branches/2016Q4/www/linux-firefox/distinfo Tue Nov 15 20:58:32 2016 (r426183) +++ branches/2016Q4/www/linux-firefox/distinfo Tue Nov 15 21:42:43 2016 (r426184) @@ -1,6 +1,6 @@ -TIMESTAMP = 1473189353 -SHA256 (firefox-45.4.0esr.tar.bz2) = 7ac3e5890a094dc25b08ee437f059c43293eb7b249dbfa109c19182019c2b75a -SIZE (firefox-45.4.0esr.tar.bz2) = 52252098 +TIMESTAMP = 1477916479 +SHA256 (firefox-45.5.0esr.tar.bz2) = d9ac0dc9966bd7e27e5fdeaad08bf59586e0533ddf0d284abb8ccbe248af3f62 +SIZE (firefox-45.5.0esr.tar.bz2) = 52322551 SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99 SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908 SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b From owner-svn-ports-branches@freebsd.org Tue Nov 15 21:57:18 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 887ADC43A24; Tue, 15 Nov 2016 21:57:18 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 29C76C22; Tue, 15 Nov 2016 21:57:18 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAFLvHS2078199; Tue, 15 Nov 2016 21:57:17 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAFLvG9k078188; Tue, 15 Nov 2016 21:57:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611152157.uAFLvG9k078188@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 15 Nov 2016 21:57:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426186 - in branches/2016Q4: Mk Mk/Uses www/firefox www/firefox-i18n www/firefox/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Nov 2016 21:57:18 -0000 Author: jbeich Date: Tue Nov 15 21:57:16 2016 New Revision: 426186 URL: https://svnweb.freebsd.org/changeset/ports/426186 Log: MFH: r425099 r425281 r425470 www/firefox: update to 50.0 Changes: https://www.mozilla.org/firefox/50.0/releasenotes/ Security: d1853110-07f4-4645-895b-6fd462ad0589 Approved by: ports-secteam (feld) Deleted: branches/2016Q4/www/firefox/files/patch-bug1130155 branches/2016Q4/www/firefox/files/patch-bug1278861 branches/2016Q4/www/firefox/files/patch-bug1299694 Modified: branches/2016Q4/Mk/Uses/gecko.mk branches/2016Q4/Mk/bsd.gecko.mk branches/2016Q4/www/firefox-i18n/Makefile branches/2016Q4/www/firefox-i18n/distinfo branches/2016Q4/www/firefox/Makefile branches/2016Q4/www/firefox/distinfo branches/2016Q4/www/firefox/files/patch-browser-app-nsBrowserApp.cpp branches/2016Q4/www/firefox/files/patch-bug1021761 branches/2016Q4/www/firefox/files/patch-bug826985 branches/2016Q4/www/firefox/files/patch-bug847568 branches/2016Q4/www/firefox/files/patch-z-bug517422 Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/Mk/Uses/gecko.mk ============================================================================== --- branches/2016Q4/Mk/Uses/gecko.mk Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/Mk/Uses/gecko.mk Tue Nov 15 21:57:16 2016 (r426186) @@ -37,12 +37,12 @@ RUN_DEPENDS+= libxul>=45:www/libxul .elif ${gecko_ARGS:Mfirefox} _GECKO_DEFAULT_VERSION= 45 -_GECKO_VERSIONS= 45 49 +_GECKO_VERSIONS= 45 50 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions 45_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr -49_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox +50_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null Modified: branches/2016Q4/Mk/bsd.gecko.mk ============================================================================== --- branches/2016Q4/Mk/bsd.gecko.mk Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/Mk/bsd.gecko.mk Tue Nov 15 21:57:16 2016 (r426186) @@ -85,7 +85,7 @@ MOZILLA_VER?= ${PORTVERSION} MOZILLA_BIN?= ${PORTNAME}-bin MOZILLA_EXEC_NAME?=${MOZILLA} MOZ_RPATH?= ${MOZILLA} -USES+= cpe compiler:c++11-lang gmake iconv perl5 pkgconfig \ +USES+= cpe gmake iconv perl5 pkgconfig \ python:2.7,build desktop-file-utils CPE_VENDOR?=mozilla USE_PERL5= build @@ -95,10 +95,13 @@ USE_XORG= x11 xcomposite xdamage xext xf BUNDLE_LIBS= yes .endif -# call to implicitly-deleted copy constructor of 'mozilla::WidevineVideoFrame' -. if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000019 && ${MOZILLA_VER:R:R} >= 49 -# XXX USES=compiler:c++11-lib cannot be used due to ports/208538 -USE_GCC= 5+ +.if ${MOZILLA_VER:R:R} >= 49 +USES+= compiler:c++14-lang +FAVORITE_COMPILER= ${COMPILER_TYPE} # c++14-lib +CPPFLAGS+= -D_GLIBCXX_USE_C99 -D_GLIBCXX_USE_C99_MATH_TR1 \ + -D_DECLARE_C99_LDBL_MATH # XXX ports/193528 +.else +USES+= compiler:c++11-lang .endif MOZILLA_SUFX?= none @@ -263,8 +266,7 @@ MOZ_OPTIONS+= --enable-necko-protocols=$ .endif # others MOZ_OPTIONS+= --with-system-zlib \ - --with-system-bz2 \ - --disable-debug-symbols + --with-system-bz2 # API keys from www/chromium # http://www.chromium.org/developers/how-tos/api-keys @@ -378,7 +380,7 @@ MOZ_OPTIONS+= --disable-rust MOZ_OPTIONS+= --enable-debug --disable-release STRIP= # ports/184285 .else -MOZ_OPTIONS+= --disable-debug --enable-release +MOZ_OPTIONS+= --disable-debug --disable-debug-symbols --enable-release .endif .if ${PORT_OPTIONS:MDTRACE} Modified: branches/2016Q4/www/firefox-i18n/Makefile ============================================================================== --- branches/2016Q4/www/firefox-i18n/Makefile Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/www/firefox-i18n/Makefile Tue Nov 15 21:57:16 2016 (r426186) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 49.0.2 +PORTVERSION= 50.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build2/linux-i686/xpi @@ -15,7 +15,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:archivers/zip -USES= zip:infozip gecko:firefox,49,build +USES= zip:infozip gecko:firefox,50,build USE_XPI= firefox NO_ARCH= yes Modified: branches/2016Q4/www/firefox-i18n/distinfo ============================================================================== --- branches/2016Q4/www/firefox-i18n/distinfo Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/www/firefox-i18n/distinfo Tue Nov 15 21:57:16 2016 (r426186) @@ -1,181 +1,181 @@ -TIMESTAMP = 1477039138 -SHA256 (xpi/firefox-i18n-49.0.2/ach.xpi) = 45805cd9d522cc30afbb855e7f6e8016c9b49d7ad1cb3920461641d0049c305c -SIZE (xpi/firefox-i18n-49.0.2/ach.xpi) = 427260 -SHA256 (xpi/firefox-i18n-49.0.2/af.xpi) = dc6184e706f96884bbad38a0f3a7ec727a3da287551473b0c85dbd9acac6781a -SIZE (xpi/firefox-i18n-49.0.2/af.xpi) = 436101 -SHA256 (xpi/firefox-i18n-49.0.2/an.xpi) = 7de53205c8e81e6b0bfc04a400f303a369caba6597857df5e7b646bfae24cd15 -SIZE (xpi/firefox-i18n-49.0.2/an.xpi) = 446087 -SHA256 (xpi/firefox-i18n-49.0.2/ar.xpi) = 123f5a08a2356b2cda3ba73ab39ada518d5eb16de537163f7ea9a0cc180087d2 -SIZE (xpi/firefox-i18n-49.0.2/ar.xpi) = 471935 -SHA256 (xpi/firefox-i18n-49.0.2/as.xpi) = 29f4aa1e938bfa5c7d305b6a932c6cf15a55fafa244e71785566099e2adf8da2 -SIZE (xpi/firefox-i18n-49.0.2/as.xpi) = 487354 -SHA256 (xpi/firefox-i18n-49.0.2/ast.xpi) = 9ea65f49a68555babbe94b1c3739da0df8cfb1233ea2a78a560fdbe7d4379937 -SIZE (xpi/firefox-i18n-49.0.2/ast.xpi) = 461423 -SHA256 (xpi/firefox-i18n-49.0.2/az.xpi) = 80b1aaa2cc659f2e3592674a1ec5aff1925ee9db35cb665b2dcaa626419b7bcf -SIZE (xpi/firefox-i18n-49.0.2/az.xpi) = 453808 -SHA256 (xpi/firefox-i18n-49.0.2/be.xpi) = e59042399f248ccaf614884f73e25bb65e56f24cb1f5190b09f7e839ef71d20d -SIZE (xpi/firefox-i18n-49.0.2/be.xpi) = 457912 -SHA256 (xpi/firefox-i18n-49.0.2/bg.xpi) = 09778b20ea1a1723c3f7a5d27d1fd1501caa0dc9d8595f74003bb715ae9566ff -SIZE (xpi/firefox-i18n-49.0.2/bg.xpi) = 485363 -SHA256 (xpi/firefox-i18n-49.0.2/bn-BD.xpi) = 208d72e86bb12b5694d1583630553c0add9a498bb649b0141d1ae0d09fad77aa -SIZE (xpi/firefox-i18n-49.0.2/bn-BD.xpi) = 511112 -SHA256 (xpi/firefox-i18n-49.0.2/bn-IN.xpi) = a4dbc815a318aa9706030f40fa609489848ca9db73807aff80c4f86a2971cfe1 -SIZE (xpi/firefox-i18n-49.0.2/bn-IN.xpi) = 508051 -SHA256 (xpi/firefox-i18n-49.0.2/br.xpi) = 664d3747c7d89ebb2241c29cec921ef59a023a67535946cd4935da98d4ad3a57 -SIZE (xpi/firefox-i18n-49.0.2/br.xpi) = 432778 -SHA256 (xpi/firefox-i18n-49.0.2/bs.xpi) = be93f20885a42fb6c07bfe7edffae7042265165399ddf606b11dd9fb550fcd39 -SIZE (xpi/firefox-i18n-49.0.2/bs.xpi) = 440115 -SHA256 (xpi/firefox-i18n-49.0.2/ca.xpi) = 914332e5083ec325a4284c45634241e26b0c4d5c293b5f66be02fa6fa82b465f -SIZE (xpi/firefox-i18n-49.0.2/ca.xpi) = 442608 -SHA256 (xpi/firefox-i18n-49.0.2/cs.xpi) = a9159ec86021a004907e45da1d34db73e9f14f8f9cb279589307b113bb6726b2 -SIZE (xpi/firefox-i18n-49.0.2/cs.xpi) = 439660 -SHA256 (xpi/firefox-i18n-49.0.2/cy.xpi) = 5d6ad2b71992192e525e4d5905222b0eb0bda33c59a60ed185d31b0058b37f9e -SIZE (xpi/firefox-i18n-49.0.2/cy.xpi) = 435868 -SHA256 (xpi/firefox-i18n-49.0.2/da.xpi) = e8ef0cd5d5011d063de3f5c4d4c53030afe0592dc3a6bca44329e52efbccde84 -SIZE (xpi/firefox-i18n-49.0.2/da.xpi) = 423925 -SHA256 (xpi/firefox-i18n-49.0.2/de.xpi) = 32f00eedf0f68f318be129546a8c507263ff9959058e06d84f5a30e023e6121b -SIZE (xpi/firefox-i18n-49.0.2/de.xpi) = 441918 -SHA256 (xpi/firefox-i18n-49.0.2/dsb.xpi) = 7734762f8bf2dd627fe9cafb5f6f37d88ac6bdc99abd1981a551d7ef47135423 -SIZE (xpi/firefox-i18n-49.0.2/dsb.xpi) = 459994 -SHA256 (xpi/firefox-i18n-49.0.2/el.xpi) = b90324a5eddb90965df0bec902216420376b3007102ed48c1242a87ca804272c -SIZE (xpi/firefox-i18n-49.0.2/el.xpi) = 506680 -SHA256 (xpi/firefox-i18n-49.0.2/en-GB.xpi) = 1a781abc61a09bdcde024437e7712329c8234e84324d60a688431fa8aca26462 -SIZE (xpi/firefox-i18n-49.0.2/en-GB.xpi) = 421950 -SHA256 (xpi/firefox-i18n-49.0.2/en-US.xpi) = cb03f43aa7bcd804f603faebb1dc86412f11e3cbbaa351ca28ed5997cfe2b4bd -SIZE (xpi/firefox-i18n-49.0.2/en-US.xpi) = 427548 -SHA256 (xpi/firefox-i18n-49.0.2/en-ZA.xpi) = 2485bee59b9f819ac6b07925982a827244a8cf80034f38b93df7cc70654f081f -SIZE (xpi/firefox-i18n-49.0.2/en-ZA.xpi) = 410564 -SHA256 (xpi/firefox-i18n-49.0.2/eo.xpi) = 9c870ec15bcd70683b5067a3e47c6bfc24f638d3f4dd335bb4ec4c33cffb3ff1 -SIZE (xpi/firefox-i18n-49.0.2/eo.xpi) = 436592 -SHA256 (xpi/firefox-i18n-49.0.2/es-AR.xpi) = 32babf458bd93c44957554923e7a57621f01b990f24d8a4a6e03ac1b07b177df -SIZE (xpi/firefox-i18n-49.0.2/es-AR.xpi) = 440337 -SHA256 (xpi/firefox-i18n-49.0.2/es-CL.xpi) = cf40babd40ac3e293ee27fbf86cfb780444d53c28c72aade5693b1735cacca07 -SIZE (xpi/firefox-i18n-49.0.2/es-CL.xpi) = 441654 -SHA256 (xpi/firefox-i18n-49.0.2/es-ES.xpi) = 9bd54c78ad7f6f330d5853c7c5e061dff3b30911fbf9ba437eaf52e6e9e884eb -SIZE (xpi/firefox-i18n-49.0.2/es-ES.xpi) = 347226 -SHA256 (xpi/firefox-i18n-49.0.2/es-MX.xpi) = d113acdd0cb4992ec785a8eb86482d9d5dd891b7caa0ff8e822c16db534fa91c -SIZE (xpi/firefox-i18n-49.0.2/es-MX.xpi) = 447125 -SHA256 (xpi/firefox-i18n-49.0.2/et.xpi) = 5126aa00346bf17a264f5f18aefbda89ba8b55406293cc92b498f5dadcff2787 -SIZE (xpi/firefox-i18n-49.0.2/et.xpi) = 424386 -SHA256 (xpi/firefox-i18n-49.0.2/eu.xpi) = f002959b617696c727cf8ca0e57468812a84a396441223a4214065e51ec7a1ff -SIZE (xpi/firefox-i18n-49.0.2/eu.xpi) = 439742 -SHA256 (xpi/firefox-i18n-49.0.2/fa.xpi) = 2ab17fc600fdcad46f1291d91550a31d6f33fb66a296708103bc7640496c9972 -SIZE (xpi/firefox-i18n-49.0.2/fa.xpi) = 489885 -SHA256 (xpi/firefox-i18n-49.0.2/ff.xpi) = d6609c3dd5fabe30b1312047aa8ef75e9c840787a6a7cd0a9f8ca9bca25bc225 -SIZE (xpi/firefox-i18n-49.0.2/ff.xpi) = 451263 -SHA256 (xpi/firefox-i18n-49.0.2/fi.xpi) = 72ae0298c37a4d56dbe22b0915e274cb71fc13ddf96727c4c17dc84f71c7b353 -SIZE (xpi/firefox-i18n-49.0.2/fi.xpi) = 430569 -SHA256 (xpi/firefox-i18n-49.0.2/fr.xpi) = be900080ef7752e63290f48b03e452ff8fd3fe0f30a22887f3c2e5004ac3ac57 -SIZE (xpi/firefox-i18n-49.0.2/fr.xpi) = 451720 -SHA256 (xpi/firefox-i18n-49.0.2/fy-NL.xpi) = 2e80a6a47a7ad5c033b2ce2651099a6397e8bf2603b9ef93f3a1d8c6ee1b8b96 -SIZE (xpi/firefox-i18n-49.0.2/fy-NL.xpi) = 443879 -SHA256 (xpi/firefox-i18n-49.0.2/ga-IE.xpi) = f3820e512fa79bd0dc5cc71c63eb828bb14daa5631d38dd21e6b6c66d042ef90 -SIZE (xpi/firefox-i18n-49.0.2/ga-IE.xpi) = 457587 -SHA256 (xpi/firefox-i18n-49.0.2/gd.xpi) = 786778230b5c0794bf1a6a8720bf6266ad3a026dc00af004843c8cc696f77c37 -SIZE (xpi/firefox-i18n-49.0.2/gd.xpi) = 444958 -SHA256 (xpi/firefox-i18n-49.0.2/gl.xpi) = 0bb23f8d81a7f0dc5eaac8e4d8c418a08f12a54383b13158a4825afaa449fa39 -SIZE (xpi/firefox-i18n-49.0.2/gl.xpi) = 448067 -SHA256 (xpi/firefox-i18n-49.0.2/gn.xpi) = 24ed0a1f40a9b1b687412065a093397448c0229521d21729301df086d8b9a340 -SIZE (xpi/firefox-i18n-49.0.2/gn.xpi) = 455553 -SHA256 (xpi/firefox-i18n-49.0.2/gu-IN.xpi) = b44f58a445eb8669bbe480d947e626b6f00b090e7ab78eb3b0d341e039e83f9b -SIZE (xpi/firefox-i18n-49.0.2/gu-IN.xpi) = 491793 -SHA256 (xpi/firefox-i18n-49.0.2/he.xpi) = b81c9d8411f09d1f3e552fb3071e41ddbe780bc2b0df34771394976fb924c89c -SIZE (xpi/firefox-i18n-49.0.2/he.xpi) = 460378 -SHA256 (xpi/firefox-i18n-49.0.2/hi-IN.xpi) = e7eca1d545be818c4832ed1d92ecd25ce8ad4c59e619d02d71db15f94631cf1b -SIZE (xpi/firefox-i18n-49.0.2/hi-IN.xpi) = 504515 -SHA256 (xpi/firefox-i18n-49.0.2/hr.xpi) = 9f6208e22a94a5b3a3d0f1b53729829dabd522fec169a2a794a1ce3d8061c6f9 -SIZE (xpi/firefox-i18n-49.0.2/hr.xpi) = 447985 -SHA256 (xpi/firefox-i18n-49.0.2/hsb.xpi) = a59cbb5ddff83ff9c7a9305328d5bc927eb04527270c72d6a4599e083e383fee -SIZE (xpi/firefox-i18n-49.0.2/hsb.xpi) = 457763 -SHA256 (xpi/firefox-i18n-49.0.2/hu.xpi) = 96d8be62b70d73c3ace875c4aa79fb32d0c6a261f27c39ca0d90063a39ac77d8 -SIZE (xpi/firefox-i18n-49.0.2/hu.xpi) = 450546 -SHA256 (xpi/firefox-i18n-49.0.2/hy-AM.xpi) = 971fde32067742370ac876ffd28ad1f87000a766dad4577c2d9f1a4c51714e94 -SIZE (xpi/firefox-i18n-49.0.2/hy-AM.xpi) = 493808 -SHA256 (xpi/firefox-i18n-49.0.2/id.xpi) = 7ccfb2abf77a029852f7da8e7dd77419af5ad746ac03a8f36e53b3d24a3f4429 -SIZE (xpi/firefox-i18n-49.0.2/id.xpi) = 423402 -SHA256 (xpi/firefox-i18n-49.0.2/is.xpi) = ef83b6ac44a09cd6b59e01bc55db5f2e5cf55f4040ec874bb819089ff7697c17 -SIZE (xpi/firefox-i18n-49.0.2/is.xpi) = 437737 -SHA256 (xpi/firefox-i18n-49.0.2/it.xpi) = 178eb7516a3f1f90906bc980e6585000b9806f430978fd1e0527306d0eb9a16d -SIZE (xpi/firefox-i18n-49.0.2/it.xpi) = 339264 -SHA256 (xpi/firefox-i18n-49.0.2/ja.xpi) = c784401f4396f20597b7c835dfe291ed34ac8ff39f94d575683e50aad640a234 -SIZE (xpi/firefox-i18n-49.0.2/ja.xpi) = 486517 -SHA256 (xpi/firefox-i18n-49.0.2/kk.xpi) = 91bb0807f1215e8cfaa6e85062d864994c9bf7dc7a3c988a0311f8fdebf4e9ad -SIZE (xpi/firefox-i18n-49.0.2/kk.xpi) = 494256 -SHA256 (xpi/firefox-i18n-49.0.2/km.xpi) = 30cfa3ceb49c847de219d88c6cf2b02e3a4190e8806a5e56dd09e8d1b80eecbd -SIZE (xpi/firefox-i18n-49.0.2/km.xpi) = 520083 -SHA256 (xpi/firefox-i18n-49.0.2/kn.xpi) = 16d132bafae24a9c0d23e3686427c2366208dd1e8b859dc2253d1cb36685c22c -SIZE (xpi/firefox-i18n-49.0.2/kn.xpi) = 518782 -SHA256 (xpi/firefox-i18n-49.0.2/ko.xpi) = 41cec32f26ad1037ff1271bb8dd933bca2fb7e49d3329880d158e7b33fff1449 -SIZE (xpi/firefox-i18n-49.0.2/ko.xpi) = 460895 -SHA256 (xpi/firefox-i18n-49.0.2/lij.xpi) = 028ebcf1a36c123ee186f0514953a46696def3aefa5162921d08cc99e2ebc151 -SIZE (xpi/firefox-i18n-49.0.2/lij.xpi) = 396173 -SHA256 (xpi/firefox-i18n-49.0.2/lt.xpi) = bff60b6b3528f6414c50f5274dda4333c4cabb6c79c273f61ecadf27dd59f505 -SIZE (xpi/firefox-i18n-49.0.2/lt.xpi) = 451345 -SHA256 (xpi/firefox-i18n-49.0.2/lv.xpi) = 9d1835f26a2b4ba29802206e536d8c1abb273b114742db4d6f4003c7a7cb031e -SIZE (xpi/firefox-i18n-49.0.2/lv.xpi) = 445323 -SHA256 (xpi/firefox-i18n-49.0.2/mai.xpi) = 4d28adf1f9d6bf4501b0f4f6d66ef9a9b3b9c6817efff7b1c255627c36a4f142 -SIZE (xpi/firefox-i18n-49.0.2/mai.xpi) = 502478 -SHA256 (xpi/firefox-i18n-49.0.2/mk.xpi) = 1235d350e956ba5d9c88672897705286c88a732c532a56e8c29b2e0dc607e5a0 -SIZE (xpi/firefox-i18n-49.0.2/mk.xpi) = 498491 -SHA256 (xpi/firefox-i18n-49.0.2/ml.xpi) = 05259bcbd39c508a57dce9ab88ccfd48b4ca004d746176b2b6738703ff146d28 -SIZE (xpi/firefox-i18n-49.0.2/ml.xpi) = 519595 -SHA256 (xpi/firefox-i18n-49.0.2/mr.xpi) = 5f45fb7014d4e57d2b7dc039c31cdb49294316e0d59bab33e071fdb11ef7d246 -SIZE (xpi/firefox-i18n-49.0.2/mr.xpi) = 501073 -SHA256 (xpi/firefox-i18n-49.0.2/ms.xpi) = 77e8a2c49e0d1d70a3ac15681a7bfed475ee662988ad4c1354a1efb8fbdc7325 -SIZE (xpi/firefox-i18n-49.0.2/ms.xpi) = 439421 -SHA256 (xpi/firefox-i18n-49.0.2/nb-NO.xpi) = d45fbbdeaace63622b405440ec5485db21211522932babd3d504e0e0c87fb61d -SIZE (xpi/firefox-i18n-49.0.2/nb-NO.xpi) = 433585 -SHA256 (xpi/firefox-i18n-49.0.2/nl.xpi) = ef09df1807739d68667ba35210de4a1fd7621051af5782ebcda8f390e85ff045 -SIZE (xpi/firefox-i18n-49.0.2/nl.xpi) = 431242 -SHA256 (xpi/firefox-i18n-49.0.2/nn-NO.xpi) = 08f7bb102406e0b5bd68cbb6e1147a5bea4d042ea1df6be279745f1941a458e5 -SIZE (xpi/firefox-i18n-49.0.2/nn-NO.xpi) = 427585 -SHA256 (xpi/firefox-i18n-49.0.2/or.xpi) = be1789bfee2772ea1359e23a0be95713aa4b6b07ce05e36ff55e84c9d3170845 -SIZE (xpi/firefox-i18n-49.0.2/or.xpi) = 499456 -SHA256 (xpi/firefox-i18n-49.0.2/pa-IN.xpi) = 57fbb04f424f680f670c8f13e3212a06b0396465d9ebd908c8e10cf5c5606e1a -SIZE (xpi/firefox-i18n-49.0.2/pa-IN.xpi) = 479086 -SHA256 (xpi/firefox-i18n-49.0.2/pl.xpi) = 820514a8f70cac72cb20a758a77c5de038e15aadc93f883c89ed82e8bc34c49f -SIZE (xpi/firefox-i18n-49.0.2/pl.xpi) = 362534 -SHA256 (xpi/firefox-i18n-49.0.2/pt-BR.xpi) = d0fd13da04c26106684e1a5de78edfb3e99e1297e8042b043d3e73fbcfa06e3d -SIZE (xpi/firefox-i18n-49.0.2/pt-BR.xpi) = 446485 -SHA256 (xpi/firefox-i18n-49.0.2/pt-PT.xpi) = a80756bc31efa043ac1733abd7ab5ac17f92f69467baf0eae18a7343fd9d0724 -SIZE (xpi/firefox-i18n-49.0.2/pt-PT.xpi) = 433687 -SHA256 (xpi/firefox-i18n-49.0.2/rm.xpi) = 030f6065523859366e7665eb3ac35547ab3a526815c3944f3c193909638ad51c -SIZE (xpi/firefox-i18n-49.0.2/rm.xpi) = 439646 -SHA256 (xpi/firefox-i18n-49.0.2/ro.xpi) = 94aefc700df14e0b43b7c7e95212b7b71bec092439b9a28713223dd29b080e6d -SIZE (xpi/firefox-i18n-49.0.2/ro.xpi) = 447538 -SHA256 (xpi/firefox-i18n-49.0.2/ru.xpi) = 40e688a440692cfbf7c115aa8a90451c53e8df1e137dd8a6342dc38977bbcbb0 -SIZE (xpi/firefox-i18n-49.0.2/ru.xpi) = 391743 -SHA256 (xpi/firefox-i18n-49.0.2/si.xpi) = 56b986317168d2e67332e8a3d79004707b4820e5ac8d6cc2aaf4a87283a07ace -SIZE (xpi/firefox-i18n-49.0.2/si.xpi) = 492130 -SHA256 (xpi/firefox-i18n-49.0.2/sk.xpi) = 009a808a6c76779b0bc4392f5b30620d8ac0acbd20c4c5adc71bb78698af8c4d -SIZE (xpi/firefox-i18n-49.0.2/sk.xpi) = 452529 -SHA256 (xpi/firefox-i18n-49.0.2/sl.xpi) = 1ef09212f6cfa8f9fda22fa98f7d9e1164c0279c8945b7089a1c981ddf6e5db5 -SIZE (xpi/firefox-i18n-49.0.2/sl.xpi) = 430480 -SHA256 (xpi/firefox-i18n-49.0.2/son.xpi) = 4a3421f5107d845973b1e27a8834fa99b9325afaee9ddc629299572509bb32bb -SIZE (xpi/firefox-i18n-49.0.2/son.xpi) = 437034 -SHA256 (xpi/firefox-i18n-49.0.2/sq.xpi) = bd6b5c55eb8ddccc8c8af5e4fe49799ba34801b8f22e34fe6bd728059c3d0c00 -SIZE (xpi/firefox-i18n-49.0.2/sq.xpi) = 453368 -SHA256 (xpi/firefox-i18n-49.0.2/sr.xpi) = 9f2801eb0f7e8b3bc454a3171d437f6be0800cf6d7046a6110cb28452bc55f78 -SIZE (xpi/firefox-i18n-49.0.2/sr.xpi) = 463884 -SHA256 (xpi/firefox-i18n-49.0.2/sv-SE.xpi) = 29dd70d9bb2cdaa2d81b8cdec1f3a3b839071c60fe1eae02901ed838030b820d -SIZE (xpi/firefox-i18n-49.0.2/sv-SE.xpi) = 440493 -SHA256 (xpi/firefox-i18n-49.0.2/ta.xpi) = f36d8065c7901e8a3204d85551354803b00ed66c644a1a2431469ba44e1e3d41 -SIZE (xpi/firefox-i18n-49.0.2/ta.xpi) = 492435 -SHA256 (xpi/firefox-i18n-49.0.2/te.xpi) = 480625b27a71ecf1b778ca3cc56115c39f7e2557665edd85ae36d53d07485909 -SIZE (xpi/firefox-i18n-49.0.2/te.xpi) = 518143 -SHA256 (xpi/firefox-i18n-49.0.2/th.xpi) = 10bbbf467c2948f0f60250eb43604886fed2ff5f607a9963ad33e92a0ca83a33 -SIZE (xpi/firefox-i18n-49.0.2/th.xpi) = 486986 -SHA256 (xpi/firefox-i18n-49.0.2/tr.xpi) = bd29d4d94cb73a41605b36abd73defac30deb172a33b59e2bbe4804f0888173c -SIZE (xpi/firefox-i18n-49.0.2/tr.xpi) = 440856 -SHA256 (xpi/firefox-i18n-49.0.2/uk.xpi) = b5f65ba75b00df3254797bdb4ab21db56c4fed82ce6c2b3c03e78473e7151352 -SIZE (xpi/firefox-i18n-49.0.2/uk.xpi) = 491358 -SHA256 (xpi/firefox-i18n-49.0.2/uz.xpi) = 3ba8eea6634bf38e3708ea65db05c9d1a2b922a440bd8ad3f276b17c3233a35d -SIZE (xpi/firefox-i18n-49.0.2/uz.xpi) = 446443 -SHA256 (xpi/firefox-i18n-49.0.2/vi.xpi) = 782805a50b95f6791fafebfc56510a1aa1e0fcce2c19e3c640b85d79c36d970e -SIZE (xpi/firefox-i18n-49.0.2/vi.xpi) = 448048 -SHA256 (xpi/firefox-i18n-49.0.2/xh.xpi) = a6b18b3e1faf7aee6f9d5e9c07162c2b37175000bfcac676cad42e30d1829b48 -SIZE (xpi/firefox-i18n-49.0.2/xh.xpi) = 439947 -SHA256 (xpi/firefox-i18n-49.0.2/zh-CN.xpi) = b395ff821b85e54311237d5fb244fcca0eca66abf55dfbe8b7ef7bf0edd14a19 -SIZE (xpi/firefox-i18n-49.0.2/zh-CN.xpi) = 466753 -SHA256 (xpi/firefox-i18n-49.0.2/zh-TW.xpi) = 46ed7614c3f1d351b196944a55b8cdc13a10d2dad22805684eff3d30669e7b3c -SIZE (xpi/firefox-i18n-49.0.2/zh-TW.xpi) = 469470 +TIMESTAMP = 1477916479 +SHA256 (xpi/firefox-i18n-50.0/ach.xpi) = 7c03c683d7e321e82cd3843b353b2ff399583169accb43a3baa461e978a29b58 +SIZE (xpi/firefox-i18n-50.0/ach.xpi) = 425409 +SHA256 (xpi/firefox-i18n-50.0/af.xpi) = dfb4bee506ba72dd0b41e9636f9de1650035d767fd9d55584bc136e0e5ebf59c +SIZE (xpi/firefox-i18n-50.0/af.xpi) = 433949 +SHA256 (xpi/firefox-i18n-50.0/an.xpi) = 31ac468f34312777ad79f1bc38b0d80510c5ecb88fac106d0ba633266a4d136c +SIZE (xpi/firefox-i18n-50.0/an.xpi) = 442205 +SHA256 (xpi/firefox-i18n-50.0/ar.xpi) = 4e8ff2c0ab11e73c4f81e6b208b8e911e7775a3b23a6540284ea17510ab67db9 +SIZE (xpi/firefox-i18n-50.0/ar.xpi) = 470435 +SHA256 (xpi/firefox-i18n-50.0/as.xpi) = 661c6a59f70a492b134aa85cf45005b22b5330a8aa5f4c4139a508eaf4212527 +SIZE (xpi/firefox-i18n-50.0/as.xpi) = 484770 +SHA256 (xpi/firefox-i18n-50.0/ast.xpi) = d660f5a4582cba124b33b97741c922959a17bf7cd73f6677a730e787c4ebd437 +SIZE (xpi/firefox-i18n-50.0/ast.xpi) = 433849 +SHA256 (xpi/firefox-i18n-50.0/az.xpi) = a62bab5a596af29c947c4581e22a3f059960c85b6948320131c5f7d88b81036a +SIZE (xpi/firefox-i18n-50.0/az.xpi) = 451403 +SHA256 (xpi/firefox-i18n-50.0/be.xpi) = 70476d3481183b7d6d81de03a100ceade99114f28963c0605c393047073b8ee7 +SIZE (xpi/firefox-i18n-50.0/be.xpi) = 458491 +SHA256 (xpi/firefox-i18n-50.0/bg.xpi) = 6cd90b51ffbb72f54995ec64792a93742f5ae3689ce61f2dc3864c84cdd12367 +SIZE (xpi/firefox-i18n-50.0/bg.xpi) = 484621 +SHA256 (xpi/firefox-i18n-50.0/bn-BD.xpi) = ab023e69ce7f39387b018816776ad25eb31bacd24a7b16be94b9fe0f2cc0489b +SIZE (xpi/firefox-i18n-50.0/bn-BD.xpi) = 509167 +SHA256 (xpi/firefox-i18n-50.0/bn-IN.xpi) = 426569269b219983858bcc70d828714e3e65cdcec59ce6ffee5d784924469fa5 +SIZE (xpi/firefox-i18n-50.0/bn-IN.xpi) = 503130 +SHA256 (xpi/firefox-i18n-50.0/br.xpi) = 845a120cfba5b141bc35ed916fa32553e04db702871784e310073ea6f62e48fe +SIZE (xpi/firefox-i18n-50.0/br.xpi) = 432448 +SHA256 (xpi/firefox-i18n-50.0/bs.xpi) = 9f3894c4472f2ce32c0b6405b3f0e91d4f8061d7d76e761e6a9e0e807894315a +SIZE (xpi/firefox-i18n-50.0/bs.xpi) = 439555 +SHA256 (xpi/firefox-i18n-50.0/ca.xpi) = e6712e0b933cb6f5ae7abb36e7ccbe922cd748e68a7f8bc9fc39cd342f35f66a +SIZE (xpi/firefox-i18n-50.0/ca.xpi) = 440359 +SHA256 (xpi/firefox-i18n-50.0/cs.xpi) = 711a8d5284d918bdcb00b20eb331244eaeda2e5ba31cba612db4b803737a6989 +SIZE (xpi/firefox-i18n-50.0/cs.xpi) = 439541 +SHA256 (xpi/firefox-i18n-50.0/cy.xpi) = 82b2542533442cfeab7001531b707922ab89cac12fdce580ad9e7a894eeda148 +SIZE (xpi/firefox-i18n-50.0/cy.xpi) = 433664 +SHA256 (xpi/firefox-i18n-50.0/da.xpi) = f0ad84bb1e381a0880135abb0bc2e0f53e3c7e8609e25aaf87c64e27b0985baa +SIZE (xpi/firefox-i18n-50.0/da.xpi) = 421324 +SHA256 (xpi/firefox-i18n-50.0/de.xpi) = 7fd48dd147693828289ba82d5439487e858258116845892e01527b6ab21e1b69 +SIZE (xpi/firefox-i18n-50.0/de.xpi) = 438194 +SHA256 (xpi/firefox-i18n-50.0/dsb.xpi) = 49b717304bdefd42276b05e09492a0ccf13c20086422b25204c8d0ec71bf3fbe +SIZE (xpi/firefox-i18n-50.0/dsb.xpi) = 456084 +SHA256 (xpi/firefox-i18n-50.0/el.xpi) = 70c440ce51f7a4b6aa496570ea1977b9a34f34e9f41af63483f86a75a8618b55 +SIZE (xpi/firefox-i18n-50.0/el.xpi) = 502225 +SHA256 (xpi/firefox-i18n-50.0/en-GB.xpi) = 11849f6610e3d7fee2106b5ffcb98b6d55ee09b9ec9dd99a7fc35193436ceb53 +SIZE (xpi/firefox-i18n-50.0/en-GB.xpi) = 415254 +SHA256 (xpi/firefox-i18n-50.0/en-US.xpi) = a9bce3ccb7f7b04b0b5b889db6480d98ae06bfd7dc58ae6b66b77259d577bdbf +SIZE (xpi/firefox-i18n-50.0/en-US.xpi) = 425320 +SHA256 (xpi/firefox-i18n-50.0/en-ZA.xpi) = 70516e1c04e00d19266dc7deea64a3a680a98e82c4b286526be07e7138ef48b4 +SIZE (xpi/firefox-i18n-50.0/en-ZA.xpi) = 408747 +SHA256 (xpi/firefox-i18n-50.0/eo.xpi) = a3fa888a6b2353eecdd6006b3115a91b027bf036879d772b0c5a687da52b9a6b +SIZE (xpi/firefox-i18n-50.0/eo.xpi) = 434337 +SHA256 (xpi/firefox-i18n-50.0/es-AR.xpi) = e0e0a3d696931e4272165d1f3a3c0cd6b9bf171dab7a78ca4b18e547fa06c86f +SIZE (xpi/firefox-i18n-50.0/es-AR.xpi) = 439531 +SHA256 (xpi/firefox-i18n-50.0/es-CL.xpi) = 0474301257f4f6004924acf01968aacf1b7ce2d4e82c8ca78d492fc3ded0b455 +SIZE (xpi/firefox-i18n-50.0/es-CL.xpi) = 440864 +SHA256 (xpi/firefox-i18n-50.0/es-ES.xpi) = 08c2981e0af285f4f1095cd18be7a2520b6b41b1742424dec41b2642e5a8daf2 +SIZE (xpi/firefox-i18n-50.0/es-ES.xpi) = 342207 +SHA256 (xpi/firefox-i18n-50.0/es-MX.xpi) = c01ad432d1cd8214f7bb491dbc686585359724bf88fe44ccd54e3c86c37ed65d +SIZE (xpi/firefox-i18n-50.0/es-MX.xpi) = 445099 +SHA256 (xpi/firefox-i18n-50.0/et.xpi) = 7387f6e7a5bbb39dad730778e921238491bc64b317109074c2d797a24bd700c5 +SIZE (xpi/firefox-i18n-50.0/et.xpi) = 422047 +SHA256 (xpi/firefox-i18n-50.0/eu.xpi) = 8a7f98a8c76dd480c905ec556afa2d8ff8b6322ece9af0d0185aee386e0625c0 +SIZE (xpi/firefox-i18n-50.0/eu.xpi) = 435621 +SHA256 (xpi/firefox-i18n-50.0/fa.xpi) = e32c0bc851b19edb89a60f9bb9fd4bb6fe97bd77f2715eb033e819d031a02d7f +SIZE (xpi/firefox-i18n-50.0/fa.xpi) = 487591 +SHA256 (xpi/firefox-i18n-50.0/ff.xpi) = b35c99cedf54f2928cf2b80ff0a64fff9ab13942ecd10eea063a7acfca3e7a77 +SIZE (xpi/firefox-i18n-50.0/ff.xpi) = 438308 +SHA256 (xpi/firefox-i18n-50.0/fi.xpi) = 41746c1574eab648bca65c1c8e944213364242d24889339cac00adf7e5a5ebce +SIZE (xpi/firefox-i18n-50.0/fi.xpi) = 426489 +SHA256 (xpi/firefox-i18n-50.0/fr.xpi) = b7c6b28ba42bc1d09393e63d0cd48967576d7ad7760ee3a3de1408bd4ec26262 +SIZE (xpi/firefox-i18n-50.0/fr.xpi) = 447064 +SHA256 (xpi/firefox-i18n-50.0/fy-NL.xpi) = 58aff6537143cae502b51cb227b5988bed61ec71f6f3916d88add9122a0ae8e0 +SIZE (xpi/firefox-i18n-50.0/fy-NL.xpi) = 441787 +SHA256 (xpi/firefox-i18n-50.0/ga-IE.xpi) = b2e689a3801204c855f5afb14c1ec1091829a144aff543e94e753cfd2ecbe46c +SIZE (xpi/firefox-i18n-50.0/ga-IE.xpi) = 455096 +SHA256 (xpi/firefox-i18n-50.0/gd.xpi) = bb5c28d471f1198a48081a2dc2f6cbb8ccf3966abcc40b6ea32541681c6046bd +SIZE (xpi/firefox-i18n-50.0/gd.xpi) = 444264 +SHA256 (xpi/firefox-i18n-50.0/gl.xpi) = 30364b107deb8b11ff41f2fd936b77181e09ccf0a33dae4afaca6c0639ace8b7 +SIZE (xpi/firefox-i18n-50.0/gl.xpi) = 451914 +SHA256 (xpi/firefox-i18n-50.0/gn.xpi) = afe41882cb837ed56438e3746e54f7e4d9940c247ea6081aa5bf7051685ec27a +SIZE (xpi/firefox-i18n-50.0/gn.xpi) = 453224 +SHA256 (xpi/firefox-i18n-50.0/gu-IN.xpi) = c0d6765b3139d1fedb29c766515d577de4d52f27a0d7228d53663e482f660175 +SIZE (xpi/firefox-i18n-50.0/gu-IN.xpi) = 487094 +SHA256 (xpi/firefox-i18n-50.0/he.xpi) = ccccd56e971959a7296ab1d7f0250b6b3fe6d4d6d33e7c0a7195a3622199955b +SIZE (xpi/firefox-i18n-50.0/he.xpi) = 455646 +SHA256 (xpi/firefox-i18n-50.0/hi-IN.xpi) = 7e01271418343643cd67e0a224d39f79e36baa93b83e8a9055edbedc4511651b +SIZE (xpi/firefox-i18n-50.0/hi-IN.xpi) = 499703 +SHA256 (xpi/firefox-i18n-50.0/hr.xpi) = d4b051d53250a5e927c6067916e529c86d4a287960687fb8251d038abfd6f450 +SIZE (xpi/firefox-i18n-50.0/hr.xpi) = 444276 +SHA256 (xpi/firefox-i18n-50.0/hsb.xpi) = 37f3c6af3d8a599f96e04b9ba86d6fa1e1c34903cbb4e416d1df2d4ea4367388 +SIZE (xpi/firefox-i18n-50.0/hsb.xpi) = 453901 +SHA256 (xpi/firefox-i18n-50.0/hu.xpi) = 1dd8bc270702245830b36ea3cc4719322e88fac21c588bc9698a6d92cbba2c08 +SIZE (xpi/firefox-i18n-50.0/hu.xpi) = 448347 +SHA256 (xpi/firefox-i18n-50.0/hy-AM.xpi) = 9931dfbbc58edfd5645909113c16bb496a60dc8382309c4bf817fab4e3d826d5 +SIZE (xpi/firefox-i18n-50.0/hy-AM.xpi) = 492714 +SHA256 (xpi/firefox-i18n-50.0/id.xpi) = f3eb7a4e0fe2136030527833336bcabfc24587d096edec2801f6062a84190160 +SIZE (xpi/firefox-i18n-50.0/id.xpi) = 422999 +SHA256 (xpi/firefox-i18n-50.0/is.xpi) = 1c3631f497075f4fa7fbc70883ae1653cdbcbc0b586236b3432331193a155ca8 +SIZE (xpi/firefox-i18n-50.0/is.xpi) = 435391 +SHA256 (xpi/firefox-i18n-50.0/it.xpi) = 2f11a5a9425900532445dbb4dab1981295a9ebb48d175e5ae52015cb01aa4d31 +SIZE (xpi/firefox-i18n-50.0/it.xpi) = 336079 +SHA256 (xpi/firefox-i18n-50.0/ja.xpi) = aa14e3dfa86899b2d85681806c79bcfbf6b1eeb28024ccdb05838567748aba3a +SIZE (xpi/firefox-i18n-50.0/ja.xpi) = 484309 +SHA256 (xpi/firefox-i18n-50.0/kk.xpi) = 06daec43d9f01c748de4e5da345a162320ef423e4af33bd86d2d3a6911c2a47a +SIZE (xpi/firefox-i18n-50.0/kk.xpi) = 493717 +SHA256 (xpi/firefox-i18n-50.0/km.xpi) = d2326fbecd9b676ff761d41588d5698740ce09bc8b5156c2f28626255c020f06 +SIZE (xpi/firefox-i18n-50.0/km.xpi) = 518204 +SHA256 (xpi/firefox-i18n-50.0/kn.xpi) = e2e030f4222d8a1ea7863de8fc4b71f6447b3ab2ca636130f753f4a401ed27b4 +SIZE (xpi/firefox-i18n-50.0/kn.xpi) = 517624 +SHA256 (xpi/firefox-i18n-50.0/ko.xpi) = 55dedfb933f295aeee1fddfbd0b663b17df3f01c1d957aa8a61cd109b8a48ff5 +SIZE (xpi/firefox-i18n-50.0/ko.xpi) = 460198 +SHA256 (xpi/firefox-i18n-50.0/lij.xpi) = 5d5c36c4818fda2690025e440edc9e7d2965ca8b484e419b9ec699ba2e47f6fe +SIZE (xpi/firefox-i18n-50.0/lij.xpi) = 394008 +SHA256 (xpi/firefox-i18n-50.0/lt.xpi) = b3c79f0222d795041dac4cf7eb6a7f31c41466651786f10b5ea33f5d8e5d879e +SIZE (xpi/firefox-i18n-50.0/lt.xpi) = 449249 +SHA256 (xpi/firefox-i18n-50.0/lv.xpi) = 72c14c870d78c47a37b7f1e75526ef7619cded65a2efb083bc0b5af28b9ec460 +SIZE (xpi/firefox-i18n-50.0/lv.xpi) = 444934 +SHA256 (xpi/firefox-i18n-50.0/mai.xpi) = 103162894a6e19af20c0f88190cb8ab6038a5800377e584d96b63792a258a327 +SIZE (xpi/firefox-i18n-50.0/mai.xpi) = 497919 +SHA256 (xpi/firefox-i18n-50.0/mk.xpi) = a2e3586219bbeb85cc35e31a91699ba835beb47edce38fae2a0d43834a31107c +SIZE (xpi/firefox-i18n-50.0/mk.xpi) = 494589 +SHA256 (xpi/firefox-i18n-50.0/ml.xpi) = 8f858e478a5d1afd4ca0e2312f7378d6d2103a69c18f488ae48b756175597293 +SIZE (xpi/firefox-i18n-50.0/ml.xpi) = 514613 +SHA256 (xpi/firefox-i18n-50.0/mr.xpi) = d53cc9566fb184ba7ffa31d16acbabdae397df217c39f384ecf5944529905223 +SIZE (xpi/firefox-i18n-50.0/mr.xpi) = 498729 +SHA256 (xpi/firefox-i18n-50.0/ms.xpi) = af8537e31d32c58d9328ff0b33219ca63fe96e891ff963d230533112610828e8 +SIZE (xpi/firefox-i18n-50.0/ms.xpi) = 433889 +SHA256 (xpi/firefox-i18n-50.0/nb-NO.xpi) = c005c34e584a758d6a820625e99c758f8459a70054f2575a7cb2a8eb40f8bd16 +SIZE (xpi/firefox-i18n-50.0/nb-NO.xpi) = 431340 +SHA256 (xpi/firefox-i18n-50.0/nl.xpi) = 510908c5502f975b84e38013131725e920292964c059b6a4f427e2d75dfd796c +SIZE (xpi/firefox-i18n-50.0/nl.xpi) = 429141 +SHA256 (xpi/firefox-i18n-50.0/nn-NO.xpi) = 65654319d58ee4b5f5b3665965d8c4cb8becabc8a38ce8c98fb096d6deb172f5 +SIZE (xpi/firefox-i18n-50.0/nn-NO.xpi) = 425412 +SHA256 (xpi/firefox-i18n-50.0/or.xpi) = 1e511e21de7692b9b6ae7edb05119bd15ea11e9d4bfcb1572c4034915415a531 +SIZE (xpi/firefox-i18n-50.0/or.xpi) = 495201 +SHA256 (xpi/firefox-i18n-50.0/pa-IN.xpi) = 52a00734a7d97a54ec9ccecc88ef102fe9959c6f24715f660f1a994391694ad6 +SIZE (xpi/firefox-i18n-50.0/pa-IN.xpi) = 474240 +SHA256 (xpi/firefox-i18n-50.0/pl.xpi) = 9f749dccacda71070dfc0e830dcc651eb4b04623a482355d0af86335c5b091b3 +SIZE (xpi/firefox-i18n-50.0/pl.xpi) = 353776 +SHA256 (xpi/firefox-i18n-50.0/pt-BR.xpi) = 6912b5acdb62e0ed28c29d407121998abb6cc31d069283a3f9c50816730c8803 +SIZE (xpi/firefox-i18n-50.0/pt-BR.xpi) = 438614 +SHA256 (xpi/firefox-i18n-50.0/pt-PT.xpi) = 9f3891a4c0abb0bb54aeb02895f25ba165534faefa6cc01716d8bcba97d5af8c +SIZE (xpi/firefox-i18n-50.0/pt-PT.xpi) = 433531 +SHA256 (xpi/firefox-i18n-50.0/rm.xpi) = e2b916e3a7584729dbc11dc910fe28f1dda820d491e81af3aab429ba5c0a4fc9 +SIZE (xpi/firefox-i18n-50.0/rm.xpi) = 431602 +SHA256 (xpi/firefox-i18n-50.0/ro.xpi) = 77177f1c04c4c677e8a538b0de9d540551917cc93d008bea890cf505baa7f228 +SIZE (xpi/firefox-i18n-50.0/ro.xpi) = 445555 +SHA256 (xpi/firefox-i18n-50.0/ru.xpi) = ad41048f8cfbb8d6f169b3756028f6b018a42ecf3ac4f5225fd441145e4ffbae +SIZE (xpi/firefox-i18n-50.0/ru.xpi) = 390432 +SHA256 (xpi/firefox-i18n-50.0/si.xpi) = 5df2b701c6e69413793eb17b71462963f670ccfdeafcaaa7737e1fd4e5c9d215 +SIZE (xpi/firefox-i18n-50.0/si.xpi) = 486231 +SHA256 (xpi/firefox-i18n-50.0/sk.xpi) = a2f7726d7cc896657e786af0359186bc1c9e1b72c577df352a3d11d39cd33a9d +SIZE (xpi/firefox-i18n-50.0/sk.xpi) = 452173 +SHA256 (xpi/firefox-i18n-50.0/sl.xpi) = 93c6d02bd51a59e93e9e7bfd3c26aa19b3a6d21649c442643a0377cb19f81cc4 +SIZE (xpi/firefox-i18n-50.0/sl.xpi) = 430206 +SHA256 (xpi/firefox-i18n-50.0/son.xpi) = 4540c45fcf09a7e4f53d13432ea2669771a6781764f6d5b642abd310106bf330 +SIZE (xpi/firefox-i18n-50.0/son.xpi) = 433272 +SHA256 (xpi/firefox-i18n-50.0/sq.xpi) = e9682adc355a9e6c9495299ff10b6b3cf2cd8967ae6f913242d7fb059d47b0db +SIZE (xpi/firefox-i18n-50.0/sq.xpi) = 449092 +SHA256 (xpi/firefox-i18n-50.0/sr.xpi) = 2c7510ae8f9780cd5a1e2a12d32c72055c8b20f1d0889edf6aba7a8c12b9469f +SIZE (xpi/firefox-i18n-50.0/sr.xpi) = 459592 +SHA256 (xpi/firefox-i18n-50.0/sv-SE.xpi) = e4fa0d036b511cafcc9fef2f6e59744d50a4321b44252eb7869a3db0ca9e4066 +SIZE (xpi/firefox-i18n-50.0/sv-SE.xpi) = 438326 +SHA256 (xpi/firefox-i18n-50.0/ta.xpi) = c4867a36014698a1003e933f551974848adc4d36e6edcd763410372b53dbfb59 +SIZE (xpi/firefox-i18n-50.0/ta.xpi) = 489663 +SHA256 (xpi/firefox-i18n-50.0/te.xpi) = 8ce8953b18f94abd0ea141d8bcdbc0d514a17d82b0b3297d74ca07ee291ca3d2 +SIZE (xpi/firefox-i18n-50.0/te.xpi) = 515621 +SHA256 (xpi/firefox-i18n-50.0/th.xpi) = 4cb149c686bdbaed6382b77d302a2c24e93090df8704fbeddffbabab0d345ea3 +SIZE (xpi/firefox-i18n-50.0/th.xpi) = 484867 +SHA256 (xpi/firefox-i18n-50.0/tr.xpi) = 23856730275883ab98dfe7876d46f9420ac528a434a3591b1c5ec260348c316f +SIZE (xpi/firefox-i18n-50.0/tr.xpi) = 440602 +SHA256 (xpi/firefox-i18n-50.0/uk.xpi) = 81b48ea865436db42013ab2eae3c98ea114431329d49db1f5d0ae0b5855eff9e +SIZE (xpi/firefox-i18n-50.0/uk.xpi) = 490967 +SHA256 (xpi/firefox-i18n-50.0/uz.xpi) = aa96f95ef1b99723a5adaba5c32085f433b278426a809f1691a7001e152db54c +SIZE (xpi/firefox-i18n-50.0/uz.xpi) = 444774 +SHA256 (xpi/firefox-i18n-50.0/vi.xpi) = 5fbb9668d203a73bc9b7e19b15855857b749d07a0e1ef0ea3734ac24fbce539c +SIZE (xpi/firefox-i18n-50.0/vi.xpi) = 447652 +SHA256 (xpi/firefox-i18n-50.0/xh.xpi) = 722a2d305f4a0d45600f084e0af144bf0e85b73cc3f23c440fc455188c470462 +SIZE (xpi/firefox-i18n-50.0/xh.xpi) = 437878 +SHA256 (xpi/firefox-i18n-50.0/zh-CN.xpi) = 783b4c5bef4cbf7bb33de582d874ef609c7200f1e47f8f63fb674fb23cbd27f3 +SIZE (xpi/firefox-i18n-50.0/zh-CN.xpi) = 457903 +SHA256 (xpi/firefox-i18n-50.0/zh-TW.xpi) = 6204083636a8679fc712a0711b13be9f06251436acf9450cc5882fd1cea4a368 +SIZE (xpi/firefox-i18n-50.0/zh-TW.xpi) = 469090 Modified: branches/2016Q4/www/firefox/Makefile ============================================================================== --- branches/2016Q4/www/firefox/Makefile Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/www/firefox/Makefile Tue Nov 15 21:57:16 2016 (r426186) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 49.0.2 +DISTVERSION= 50.0 DISTVERSIONSUFFIX=.source PORTREVISION= 1 PORTEPOCH= 1 @@ -14,12 +14,12 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.12:devel/nspr \ - nss>=3.25:security/nss \ + nss>=3.26.2:security/nss \ libevent2>=2.0.21_2:devel/libevent2 \ soundtouch>=1.9.0:audio/soundtouch \ harfbuzz>=1.2.6:print/harfbuzz \ graphite2>=1.3.8:graphics/graphite2 \ - png>=1.6.21:graphics/png \ + png>=1.6.23:graphics/png \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.13:databases/sqlite3 \ Modified: branches/2016Q4/www/firefox/distinfo ============================================================================== --- branches/2016Q4/www/firefox/distinfo Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/www/firefox/distinfo Tue Nov 15 21:57:16 2016 (r426186) @@ -1,3 +1,3 @@ -TIMESTAMP = 1477039138 -SHA256 (firefox-49.0.2.source.tar.xz) = 67abe9202958c36bf60454c91065953aa8f6ede83ea1c0e9cdb870c3fc3d56d0 -SIZE (firefox-49.0.2.source.tar.xz) = 188669928 +TIMESTAMP = 1478356493 +SHA256 (firefox-50.0.source.tar.xz) = 5da027350aee148dc62cc1ca897db30510be87ca8eab5e67a7adc7a2479b8616 +SIZE (firefox-50.0.source.tar.xz) = 195792488 Modified: branches/2016Q4/www/firefox/files/patch-browser-app-nsBrowserApp.cpp ============================================================================== --- branches/2016Q4/www/firefox/files/patch-browser-app-nsBrowserApp.cpp Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/www/firefox/files/patch-browser-app-nsBrowserApp.cpp Tue Nov 15 21:57:16 2016 (r426186) @@ -1,11 +1,12 @@ ---- browser/app/nsBrowserApp.cpp~ +--- browser/app/nsBrowserApp.cpp.orig 2016-09-19 16:19:28 UTC +++ browser/app/nsBrowserApp.cpp -@@ -417,6 +417,8 @@ int main(int argc, char* argv[]) - TriggerQuirks(); - #endif +@@ -324,6 +324,9 @@ int main(int argc, char* argv[], char* e + { + mozilla::TimeStamp start = mozilla::TimeStamp::Now(); + setenv("MOZ_GMP_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); - int gotCounters; - #if defined(XP_UNIX) - struct rusage initialRUsage; ++ + #ifdef HAS_DLL_BLOCKLIST + DllBlocklist_Initialize(); + Modified: branches/2016Q4/www/firefox/files/patch-bug1021761 ============================================================================== --- branches/2016Q4/www/firefox/files/patch-bug1021761 Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/www/firefox/files/patch-bug1021761 Tue Nov 15 21:57:16 2016 (r426186) @@ -187,22 +187,13 @@ index a962553..1f780f4 100644 }; enum stream_state { -@@ -262,7 +309,7 @@ alsa_refill_stream(cubeb_stream * stm) +@@ -260,10 +307,10 @@ alsa_refill_stream(cubeb_stream * stm) pthread_mutex_lock(&stm->mutex); -- r = snd_pcm_poll_descriptors_revents(stm->pcm, stm->fds, stm->nfds, &revents); -+ r = WRAP(snd_pcm_poll_descriptors_revents)(stm->pcm, stm->fds, stm->nfds, &revents); - if (r < 0 || revents != POLLOUT) { - /* This should be a stream error; it makes no sense for poll(2) to wake - for this stream and then have the stream report that it's not ready. -@@ -271,10 +318,10 @@ alsa_refill_stream(cubeb_stream * stm) - return RUNNING; - } - - avail = snd_pcm_avail_update(stm->pcm); + avail = WRAP(snd_pcm_avail_update)(stm->pcm); - if (avail == -EPIPE) { + if (avail < 0) { - snd_pcm_recover(stm->pcm, avail, 1); - avail = snd_pcm_avail_update(stm->pcm); + WRAP(snd_pcm_recover)(stm->pcm, avail, 1); @@ -210,19 +201,8 @@ index a962553..1f780f4 100644 } /* Failed to recover from an xrun, this stream must be broken. */ -@@ -293,8 +340,8 @@ alsa_refill_stream(cubeb_stream * stm) - available to write. If avail is still zero here, the stream must be in - a funky state, so recover and try again. */ - if (avail == 0) { -- snd_pcm_recover(stm->pcm, -EPIPE, 1); -- avail = snd_pcm_avail_update(stm->pcm); -+ WRAP(snd_pcm_recover)(stm->pcm, -EPIPE, 1); -+ avail = WRAP(snd_pcm_avail_update)(stm->pcm); - if (avail <= 0) { - pthread_mutex_unlock(&stm->mutex); - stm->state_callback(stm, stm->user_ptr, CUBEB_STATE_ERROR); -@@ -302,7 +349,7 @@ alsa_refill_stream(cubeb_stream * stm) - } +@@ -286,7 +333,7 @@ alsa_refill_stream(cubeb_stream * stm) + return RUNNING; } - p = calloc(1, snd_pcm_frames_to_bytes(stm->pcm, avail)); @@ -230,13 +210,13 @@ index a962553..1f780f4 100644 assert(p); pthread_mutex_unlock(&stm->mutex); -@@ -327,10 +374,10 @@ alsa_refill_stream(cubeb_stream * stm) +@@ -312,10 +359,10 @@ alsa_refill_stream(cubeb_stream * stm) b[i] *= stm->volume; } } - wrote = snd_pcm_writei(stm->pcm, p, got); + wrote = WRAP(snd_pcm_writei)(stm->pcm, p, got); - if (wrote == -EPIPE) { + if (wrote < 0) { - snd_pcm_recover(stm->pcm, wrote, 1); - wrote = snd_pcm_writei(stm->pcm, p, got); + WRAP(snd_pcm_recover)(stm->pcm, wrote, 1); @@ -514,15 +494,15 @@ index a962553..1f780f4 100644 + r = WRAP(snd_pcm_nonblock)(stm->pcm, 1); assert(r == 0); - /* Ugly hack: the PA ALSA plugin allows buffer configurations that can't -@@ -859,7 +965,7 @@ alsa_stream_init(cubeb * ctx, cubeb_stre - latency = latency < 500 ? 500 : latency; + latency_us = latency_frames * 1e6 / stm->params.rate; +@@ -855,7 +961,7 @@ alsa_stream_init(cubeb * ctx, cubeb_stre + latency_us = latency_us < min_latency ? min_latency: latency_us; } - r = snd_pcm_set_params(stm->pcm, format, SND_PCM_ACCESS_RW_INTERLEAVED, + r = WRAP(snd_pcm_set_params)(stm->pcm, format, SND_PCM_ACCESS_RW_INTERLEAVED, stm->params.channels, stm->params.rate, 1, - latency * 1000); + latency_us); if (r < 0) { @@ -867,15 +973,15 @@ alsa_stream_init(cubeb * ctx, cubeb_stre return CUBEB_ERROR_INVALID_FORMAT; @@ -567,12 +547,12 @@ index a962553..1f780f4 100644 if (r < 0) { return CUBEB_ERROR; } -@@ -963,34 +1069,34 @@ alsa_get_preferred_sample_rate(cubeb * ctx, uint32_t * rate) { +@@ -969,34 +1075,34 @@ alsa_get_preferred_sample_rate(cubeb * c /* get a pcm, disabling resampling, so we get a rate the * hardware/dmix/pulse/etc. supports. */ -- r = snd_pcm_open(&pcm, CUBEB_ALSA_PCM_NAME, SND_PCM_STREAM_PLAYBACK | SND_PCM_NO_AUTO_RESAMPLE, 0); -+ r = WRAP(snd_pcm_open)(&pcm, CUBEB_ALSA_PCM_NAME, SND_PCM_STREAM_PLAYBACK | SND_PCM_NO_AUTO_RESAMPLE, 0); +- r = snd_pcm_open(&pcm, CUBEB_ALSA_PCM_NAME, SND_PCM_STREAM_PLAYBACK, SND_PCM_NO_AUTO_RESAMPLE); ++ r = WRAP(snd_pcm_open)(&pcm, CUBEB_ALSA_PCM_NAME, SND_PCM_STREAM_PLAYBACK, SND_PCM_NO_AUTO_RESAMPLE); if (r < 0) { return CUBEB_ERROR; } @@ -1137,14 +1117,14 @@ diff --git media/libcubeb/update.sh medi index a96badd..2f9585e 100755 --- media/libcubeb/update.sh +++ media/libcubeb/update.sh -@@ -10,6 +10,7 @@ cp $1/src/cubeb_audiounit.c src - cp $1/src/cubeb_pulse.c src - cp $1/src/cubeb_sndio.c src +@@ -16,6 +16,7 @@ cp $1/src/cubeb_audiounit.cpp src + cp $1/src/cubeb_osx_run_loop.h src + cp $1/src/cubeb_jack.cpp src cp $1/src/cubeb_opensl.c src +cp $1/src/cubeb_oss.c src - cp $1/src/cubeb_audiotrack.c src - cp $1/src/cubeb_wasapi.cpp src - cp $1/src/cubeb_resampler.h src + cp $1/src/cubeb_panner.cpp src + cp $1/src/cubeb_panner.h src + cp $1/src/cubeb_pulse.c src diff --git media/webrtc/signaling/test/common.build media/webrtc/signaling/test/common.build index 991f03f..3d99eb5 100644 --- media/webrtc/signaling/test/common.build Modified: branches/2016Q4/www/firefox/files/patch-bug826985 ============================================================================== --- branches/2016Q4/www/firefox/files/patch-bug826985 Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/www/firefox/files/patch-bug826985 Tue Nov 15 21:57:16 2016 (r426186) @@ -17,14 +17,14 @@ diff --git config/system-headers config/ index 55e4cd1..76567b3 100644 --- config/system-headers +++ config/system-headers -@@ -629,6 +629,7 @@ libgnome/libgnome.h +@@ -624,6 +624,7 @@ libgnome/libgnome.h libgnomeui/gnome-icon-lookup.h libgnomeui/gnome-icon-theme.h libgnomeui/gnome-ui-init.h +libv4l2.h - limits limits.h link.h + #ifdef ANDROID diff --git old-configure.in configure.in index 55e4cd1..76567b3 100644 --- old-configure.in Modified: branches/2016Q4/www/firefox/files/patch-bug847568 ============================================================================== --- branches/2016Q4/www/firefox/files/patch-bug847568 Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/www/firefox/files/patch-bug847568 Tue Nov 15 21:57:16 2016 (r426186) @@ -1,20 +1,7 @@ # Allow building against system-wide graphite2/harfbuzz. -diff --git build/moz.configure/old.configure build/moz.configure/old.configure -index 4cbefd5..42ab554 100644 ---- build/moz.configure/old.configure -+++ build/moz.configure/old.configure -@@ -312,6 +312,8 @@ def old_configure_options(*options): - '--with-sixgill', - '--with-soft-float', - '--with-system-bz2', -+ '--with-system-graphite2', -+ '--with-system-harfbuzz', - '--with-system-icu', - '--with-system-jpeg', - '--with-system-libevent', diff --git config/Makefile.in config/Makefile.in -index 14bfc0d..5383399 100644 +index 10807cf..f4b8587 100644 --- config/Makefile.in +++ config/Makefile.in @@ -49,6 +49,8 @@ export:: $(export-preqs) @@ -23,14 +10,14 @@ index 14bfc0d..5383399 100644 -DMOZ_SYSTEM_ICU=$(MOZ_SYSTEM_ICU) \ + -DMOZ_SYSTEM_GRAPHITE2=$(MOZ_SYSTEM_GRAPHITE2) \ + -DMOZ_SYSTEM_HARFBUZZ=$(MOZ_SYSTEM_HARFBUZZ) \ - $(srcdir)/system-headers | $(PERL) $(topsrcdir)/nsprpub/config/make-system-wrappers.pl system_wrappers + $(srcdir)/system-headers $(srcdir)/stl-headers | $(PERL) $(topsrcdir)/nsprpub/config/make-system-wrappers.pl system_wrappers $(INSTALL) system_wrappers $(DIST) diff --git config/system-headers config/system-headers -index 18e8703..bdc5f82 100644 +index 48afa0f..61612f6 100644 --- config/system-headers +++ config/system-headers -@@ -1344,3 +1344,11 @@ unicode/utypes.h +@@ -1331,3 +1331,12 @@ unicode/utypes.h #endif libutil.h unwind.h @@ -39,79 +26,26 @@ index 18e8703..bdc5f82 100644 +graphite2/Segment.h +#endif +#if MOZ_SYSTEM_HARFBUZZ==1 ++harfbuzz/hb-glib.h +harfbuzz/hb-ot.h +harfbuzz/hb.h +#endif -diff --git old-configure.in configure.in -index ac38f40..87536b7 100644 ---- old-configure.in -+++ old-configure.in -@@ -7989,6 +7989,49 @@ if test "$USE_FC_FREETYPE"; then - fi - - dnl ======================================================== -+dnl Check for harfbuzz -+dnl ======================================================== -+ -+MOZ_ARG_WITH_BOOL(system-harfbuzz, -+[ --with-system-harfbuzz Use system harfbuzz (located with pkgconfig)], -+MOZ_SYSTEM_HARFBUZZ=1, -+MOZ_SYSTEM_HARFBUZZ=) -+ -+if test -n "$MOZ_SYSTEM_HARFBUZZ"; then -+ PKG_CHECK_MODULES(MOZ_HARFBUZZ, harfbuzz >= 1.2.6) -+fi -+ -+AC_SUBST(MOZ_SYSTEM_HARFBUZZ) -+ -+dnl ======================================================== -+dnl Check for graphite2 -+dnl ======================================================== -+ -+MOZ_ARG_WITH_BOOL(system-graphite2, -+[ --with-system-graphite2 Use system graphite2 (located with pkgconfig)], -+MOZ_SYSTEM_GRAPHITE2=1, -+MOZ_SYSTEM_GRAPHITE2=) -+ -+if test -n "$MOZ_SYSTEM_GRAPHITE2"; then -+ PKG_CHECK_MODULES(MOZ_GRAPHITE2, graphite2) -+ -+ dnl graphite2.pc has bogus version, check manually -+ AC_TRY_COMPILE([ #include -+ #define GR2_VERSION_REQUIRE(major,minor,bugfix) \ -+ ( GR2_VERSION_MAJOR * 10000 + GR2_VERSION_MINOR \ -+ * 100 + GR2_VERSION_BUGFIX >= \ -+ (major) * 10000 + (minor) * 100 + (bugfix) ) -+ ], [ -+ #if !GR2_VERSION_REQUIRE(1,3,8) -+ #error "Insufficient graphite2 version." -+ #endif -+ ], [], -+ [AC_MSG_ERROR([--with-system-graphite2 requested but no working libgraphite2 found])]) -+fi -+ -+AC_SUBST(MOZ_SYSTEM_GRAPHITE2) -+ -+dnl ======================================================== - dnl Check for pixman and cairo - dnl ======================================================== - diff --git dom/base/moz.build dom/base/moz.build -index a660ba4..6b2f602 100644 +index 6e0d4f5..0770717 100644 --- dom/base/moz.build +++ dom/base/moz.build -@@ -397,6 +397,9 @@ if CONFIG['INTEL_ARCHITECTURE']: - SOURCES += ['nsTextFragmentSSE2.cpp'] - SOURCES['nsTextFragmentSSE2.cpp'].flags += CONFIG['SSE2_FLAGS'] +@@ -457,6 +457,9 @@ if CONFIG['MOZ_BUILD_APP'] in ['browser', 'mobile/android', 'xulrunner']: + if CONFIG['MOZ_X11']: + CXXFLAGS += CONFIG['TK_CFLAGS'] +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: -+ SOURCES['nsContentUtils.cpp'].flags += CONFIG['MOZ_HARFBUZZ_CFLAGS'] ++ CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + - EXTRA_COMPONENTS += [ - 'ConsoleAPI.manifest', - 'ConsoleAPIStorage.js', + GENERATED_FILES += [ + 'PropertyUseCounterMap.inc', + 'UseCounterList.h', diff --git gfx/graphite2/moz-gr-update.sh gfx/graphite2/moz-gr-update.sh -index f3d76ea..a9e7fb6 100644 +index faaab1b..04eff5f 100644 --- gfx/graphite2/moz-gr-update.sh +++ gfx/graphite2/moz-gr-update.sh @@ -1,6 +1,7 @@ @@ -122,7 +56,7 @@ index f3d76ea..a9e7fb6 100644 # This script lives in gfx/graphite2, along with the library source, # but must be run from the top level of the mozilla-central tree. -@@ -37,12 +38,16 @@ echo "See" $0 "for update procedure." >> +@@ -37,12 +38,16 @@ echo "See" $0 "for update procedure." >> gfx/graphite2/README.mozilla #find gfx/graphite2/ -name "*.cpp" -exec perl -p -i -e "s///;s/Windows.h/windows.h/;" {} \; #find gfx/graphite2/ -name "*.h" -exec perl -p -i -e "s///;s/Windows.h/windows.h/;" {} \; @@ -141,20 +75,20 @@ index f3d76ea..a9e7fb6 100644 echo echo If gfx/graphite2/src/files.mk has changed, please make corresponding diff --git gfx/harfbuzz/README-mozilla gfx/harfbuzz/README-mozilla -index ca57d16..1ce21fe 100644 +index 24e6cbb..0b7a5df 100644 --- gfx/harfbuzz/README-mozilla +++ gfx/harfbuzz/README-mozilla -@@ -18,3 +18,8 @@ the mozilla tree. - In addition, the src/Makefile.in file here is NOT from upstream, nor is it - generated from src/Makefile.am (the original harfbuzz version); it is a mozilla- - specific makefile that is maintained by hand. +@@ -20,3 +20,8 @@ the mozilla tree. + + If the collection of source files changes, manual updates to moz.build may be + needed, as we don't use the upstream makefiles. + +The in-tree copy may be omitted during build by --with-system-harfbuzz. +Make sure to keep pkg-config version check within old-configure.in in sync +with checkout version or increment latest tag by one if it's not based +on upstream release. diff --git gfx/moz.build gfx/moz.build -index 519aa46..6929751 100644 +index 2509198..5cc4663 100644 --- gfx/moz.build +++ gfx/moz.build @@ -7,6 +7,12 @@ @@ -180,38 +114,38 @@ index 519aa46..6929751 100644 'thebes', 'ipc', diff --git gfx/skia/generate_mozbuild.py gfx/skia/generate_mozbuild.py -index 28fa6b5..240dced 100755 +index ab1365f..8897c27 100755 --- gfx/skia/generate_mozbuild.py +++ gfx/skia/generate_mozbuild.py -@@ -134,6 +134,9 @@ if CONFIG['CLANG_CXX'] or CONFIG['CLANG_ +@@ -140,6 +140,9 @@ if CONFIG['CLANG_CXX'] or CONFIG['CLANG_CL']: '-Wno-unused-private-field', ] +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + - if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'android', 'gonk', 'qt'): + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'android', 'gonk'): CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] diff --git gfx/skia/moz.build gfx/skia/moz.build -index 1d0c2f9..adb8941 100644 +index a2f914b..d3759b0 100644 --- gfx/skia/moz.build +++ gfx/skia/moz.build -@@ -752,6 +752,9 @@ if CONFIG['CLANG_CXX'] or CONFIG['CLANG_ +@@ -664,6 +664,9 @@ if CONFIG['CLANG_CXX'] or CONFIG['CLANG_CL']: '-Wno-unused-private-field', ] +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + - if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'android', 'gonk', 'qt'): + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'android', 'gonk'): CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] diff --git gfx/thebes/moz.build gfx/thebes/moz.build -index d5852fa..aeeab25 100644 +index bbbce6fd..db0ceb1 100644 --- gfx/thebes/moz.build +++ gfx/thebes/moz.build -@@ -306,7 +306,13 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk +@@ -289,7 +289,13 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3'): LOCAL_INCLUDES += CONFIG['SKIA_INCLUDES'] @@ -226,19 +160,55 @@ index d5852fa..aeeab25 100644 if CONFIG['CLANG_CXX']: # Suppress warnings from Skia header files. -index d736943..41a931f 100644 +diff --git intl/unicharutil/util/moz.build intl/unicharutil/util/moz.build +index 9754753..768cc7d 100644 --- intl/unicharutil/util/moz.build +++ intl/unicharutil/util/moz.build -@@ -44,4 +44,7 @@ if CONFIG['ENABLE_INTL_API']: - LOCAL_INCLUDES += CONFIG['MOZ_ICU_INCLUDES'] +@@ -42,4 +42,7 @@ if CONFIG['_MSC_VER']: + if CONFIG['ENABLE_INTL_API']: USE_LIBS += ['icu'] +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + DIST_INSTALL = True +diff --git moz.configure moz.configure +index e762576..196dafd 100644 +--- moz.configure ++++ moz.configure +@@ -216,6 +216,30 @@ check_prog('GENISOIMAGE', delayed_getattr(extra_programs, 'GENISOIMAGE'), + check_prog('RPMBUILD', delayed_getattr(extra_programs, 'RPMBUILD'), + allow_missing=True) + ++option('--with-system-graphite2', ++ help="Use system graphite2 (located with pkgconfig)") ++ ++@depends('--with-system-graphite2', compile_environment) ++def check_for_graphite2(value, compile_env): ++ return value and compile_env ++ ++system_graphite2 = pkg_check_modules('MOZ_GRAPHITE2', 'graphite2', ++ check_for_graphite2) ++ ++set_config('MOZ_SYSTEM_GRAPHITE2', system_graphite2) ++ ++option('--with-system-harfbuzz', ++ help="Use system harfbuzz (located with pkgconfig)") ++ ++@depends('--with-system-harfbuzz', compile_environment) ++def check_for_harfbuzz(value, compile_env): ++ return value and compile_env ++ ++system_harfbuzz = pkg_check_modules('MOZ_HARFBUZZ', 'harfbuzz >= 1.2.6', ++ check_for_harfbuzz) ++ ++set_config('MOZ_SYSTEM_HARFBUZZ', system_harfbuzz) ++ + option('--enable-system-hunspell', + help="Use system hunspell (located with pkgconfig)") + diff --git netwerk/dns/moz.build netwerk/dns/moz.build -index 0b0717a..2e665c9 100644 +index f788d9a..5662301 100644 --- netwerk/dns/moz.build +++ netwerk/dns/moz.build @@ -66,6 +66,9 @@ LOCAL_INCLUDES += [ @@ -248,16 +218,48 @@ index 0b0717a..2e665c9 100644 +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + - if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and CONFIG['ANDROID_VERSION'] > '19': - LOCAL_INCLUDES += ['%' + '%s/bionic/libc/dns/include' % CONFIG['ANDROID_SOURCE']] + if CONFIG['ENABLE_INTL_API']: + DEFINES['IDNA2008'] = True + USE_LIBS += ['icu'] +diff --git old-configure.in old-configure.in +index 0070d48..9d1129f 100644 +--- old-configure.in ++++ old-configure.in +@@ -5764,6 +5764,27 @@ if test "$USE_FC_FREETYPE"; then + fi + + dnl ======================================================== ++dnl Check for graphite2 ++dnl ======================================================== ++if test -n "$MOZ_SYSTEM_GRAPHITE2"; then ++ dnl graphite2.pc has bogus version, check manually ++ _SAVE_CFLAGS=$CFLAGS ++ CFLAGS="$CFLAGS $MOZ_GRAPHITE2_CFLAGS" ++ AC_TRY_COMPILE([ #include ++ #define GR2_VERSION_REQUIRE(major,minor,bugfix) \ ++ ( GR2_VERSION_MAJOR * 10000 + GR2_VERSION_MINOR \ ++ * 100 + GR2_VERSION_BUGFIX >= \ ++ (major) * 10000 + (minor) * 100 + (bugfix) ) ++ ], [ ++ #if !GR2_VERSION_REQUIRE(1,3,8) ++ #error "Insufficient graphite2 version." ++ #endif ++ ], [], ++ [AC_MSG_ERROR([--with-system-graphite2 requested but no working libgraphite2 found])]) ++ CFLAGS=$_SAVE_CFLAGS ++fi ++ ++dnl ======================================================== + dnl Check for pixman and cairo + dnl ======================================================== diff --git toolkit/library/moz.build toolkit/library/moz.build -index 67f0db9..d42137a 100644 +index a3d5450..2c684a7e 100644 --- toolkit/library/moz.build +++ toolkit/library/moz.build -@@ -231,6 +231,12 @@ if CONFIG['MOZ_SYSTEM_LIBVPX']: - if not CONFIG['MOZ_TREE_PIXMAN']: - OS_LIBS += CONFIG['MOZ_PIXMAN_LIBS'] +@@ -217,6 +217,12 @@ if CONFIG['MOZ_SYSTEM_JPEG']: + if CONFIG['MOZ_SYSTEM_PNG']: + OS_LIBS += CONFIG['MOZ_PNG_LIBS'] +if CONFIG['MOZ_SYSTEM_GRAPHITE2']: + OS_LIBS += CONFIG['MOZ_GRAPHITE2_LIBS'] @@ -265,6 +267,6 @@ index 67f0db9..d42137a 100644 +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + OS_LIBS += CONFIG['MOZ_HARFBUZZ_LIBS'] + - if CONFIG['MOZ_OSS']: - OS_LIBS += CONFIG['MOZ_OSS_LIBS'] + if CONFIG['MOZ_SYSTEM_HUNSPELL']: + OS_LIBS += CONFIG['MOZ_HUNSPELL_LIBS'] Modified: branches/2016Q4/www/firefox/files/patch-z-bug517422 ============================================================================== --- branches/2016Q4/www/firefox/files/patch-z-bug517422 Tue Nov 15 21:51:28 2016 (r426185) +++ branches/2016Q4/www/firefox/files/patch-z-bug517422 Tue Nov 15 21:57:16 2016 (r426186) @@ -21,7 +21,7 @@ diff --git config/Makefile.in config/Mak index 5383399..0410004 100644 --- config/Makefile.in +++ config/Makefile.in -@@ -77,6 +77,11 @@ export:: $(export-preqs) +@@ -51,6 +51,11 @@ export:: $(export-preqs) -DMOZ_SYSTEM_ICU=$(MOZ_SYSTEM_ICU) \ -DMOZ_SYSTEM_GRAPHITE2=$(MOZ_SYSTEM_GRAPHITE2) \ -DMOZ_SYSTEM_HARFBUZZ=$(MOZ_SYSTEM_HARFBUZZ) \ @@ -30,7 +30,7 @@ index 5383399..0410004 100644 + -DMOZ_SYSTEM_VORBIS=$(MOZ_SYSTEM_VORBIS) \ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Wed Nov 16 01:45:12 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3DFCC4364D; Wed, 16 Nov 2016 01:45:12 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5A221B83; Wed, 16 Nov 2016 01:45:12 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAG1jB4J073172; Wed, 16 Nov 2016 01:45:11 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAG1jBsY073171; Wed, 16 Nov 2016 01:45:11 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201611160145.uAG1jBsY073171@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Wed, 16 Nov 2016 01:45:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426209 - branches/2016Q4/audio/cueplayer X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Nov 2016 01:45:13 -0000 Author: jhale Date: Wed Nov 16 01:45:11 2016 New Revision: 426209 URL: https://svnweb.freebsd.org/changeset/ports/426209 Log: MFH: r426208 Fix fetch Move LICENSE earlier Approved by: portmgr (blanket) Approved by: ports-secteam (blanket) Modified: branches/2016Q4/audio/cueplayer/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/audio/cueplayer/Makefile ============================================================================== --- branches/2016Q4/audio/cueplayer/Makefile Wed Nov 16 01:43:27 2016 (r426208) +++ branches/2016Q4/audio/cueplayer/Makefile Wed Nov 16 01:45:11 2016 (r426209) @@ -5,12 +5,12 @@ PORTNAME= cueplayer PORTVERSION= 0.28 PORTREVISION= 3 CATEGORIES= audio -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-src MAINTAINER= vg@FreeBSD.org COMMENT= CUE player -BROKEN= Unfetchable (google code has gone away) +LICENSE= GPLv3 LIB_DEPENDS= libnotify.so:devel/libnotify @@ -19,8 +19,6 @@ USE_QT4= gui xml uic_build moc_build rcc USE_GSTREAMER= flac good dvd lame ugly ffmpeg taglib ogg vorbis soup libmms wavpack USE_XORG= x11 -LICENSE= GPLv3 - DESKTOP_ENTRIES="Cueplayer" "Lightweight media player based on Qt and Gstreamer" \ "${DATADIR}/${PORTNAME}.png" "${PORTNAME}" \ "AudioVideo;Audio;Video;" true From owner-svn-ports-branches@freebsd.org Wed Nov 16 02:02:03 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 33688C43C52; Wed, 16 Nov 2016 02:02:03 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02A9330B; Wed, 16 Nov 2016 02:02:02 +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 uAG222vA081111; Wed, 16 Nov 2016 02:02:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAG222x4081109; Wed, 16 Nov 2016 02:02:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611160202.uAG222x4081109@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 16 Nov 2016 02:02:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426211 - branches/2016Q4/mail/mpop X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Nov 2016 02:02:03 -0000 Author: jbeich Date: Wed Nov 16 02:02:01 2016 New Revision: 426211 URL: https://svnweb.freebsd.org/changeset/ports/426211 Log: MFH: r426167 mail/mpop: update to 1.2.6 Changes: https://sourceforge.net/p/mpop/code/ci/61b45e/log/ Approved by: ports-secteam (junovitch) Modified: branches/2016Q4/mail/mpop/Makefile branches/2016Q4/mail/mpop/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/mail/mpop/Makefile ============================================================================== --- branches/2016Q4/mail/mpop/Makefile Wed Nov 16 01:58:36 2016 (r426210) +++ branches/2016Q4/mail/mpop/Makefile Wed Nov 16 02:02:01 2016 (r426211) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mpop -DISTVERSION= 1.2.5 +DISTVERSION= 1.2.6 CATEGORIES= mail MASTER_SITES= SF Modified: branches/2016Q4/mail/mpop/distinfo ============================================================================== --- branches/2016Q4/mail/mpop/distinfo Wed Nov 16 01:58:36 2016 (r426210) +++ branches/2016Q4/mail/mpop/distinfo Wed Nov 16 02:02:01 2016 (r426211) @@ -1,2 +1,3 @@ -SHA256 (mpop-1.2.5.tar.xz) = 01612b5fc60dcbd5368b7cc2e0fce6c141c2e835d4646f8d7214d9898a901158 -SIZE (mpop-1.2.5.tar.xz) = 269204 +TIMESTAMP = 1479164234 +SHA256 (mpop-1.2.6.tar.xz) = 9fec7a9dd08fc0f04bf6178bc651b036d1fe0e46903146f38a8d182887e9315c +SIZE (mpop-1.2.6.tar.xz) = 269912 From owner-svn-ports-branches@freebsd.org Wed Nov 16 07:01:27 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1BE40C44A3B; Wed, 16 Nov 2016 07:01:27 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E9B1515D7; Wed, 16 Nov 2016 07:01:26 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAG71QSa001237; Wed, 16 Nov 2016 07:01:26 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAG71P6n001231; Wed, 16 Nov 2016 07:01:25 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201611160701.uAG71P6n001231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 16 Nov 2016 07:01:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426214 - in branches/2016Q4/www: moodle29 moodle30 moodle31 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Nov 2016 07:01:27 -0000 Author: wen Date: Wed Nov 16 07:01:25 2016 New Revision: 426214 URL: https://svnweb.freebsd.org/changeset/ports/426214 Log: MFH: r426149 - Update moodle to 2.9.9 3.0.7 and 3.1.3 (A number of security related issues were resolved.) Approved by: portmgr(junovitch@) Modified: branches/2016Q4/www/moodle29/Makefile branches/2016Q4/www/moodle29/distinfo branches/2016Q4/www/moodle30/Makefile branches/2016Q4/www/moodle30/distinfo branches/2016Q4/www/moodle31/Makefile branches/2016Q4/www/moodle31/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/www/moodle29/Makefile ============================================================================== --- branches/2016Q4/www/moodle29/Makefile Wed Nov 16 03:09:31 2016 (r426213) +++ branches/2016Q4/www/moodle29/Makefile Wed Nov 16 07:01:25 2016 (r426214) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 2.9.8 +PORTVERSION= 2.9.9 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable29/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} Modified: branches/2016Q4/www/moodle29/distinfo ============================================================================== --- branches/2016Q4/www/moodle29/distinfo Wed Nov 16 03:09:31 2016 (r426213) +++ branches/2016Q4/www/moodle29/distinfo Wed Nov 16 07:01:25 2016 (r426214) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473763059 -SHA256 (moodle-2.9.8.tgz) = 6606ff315bab35538f1e1fbbd51b3b65b6d59043689fa74938a3cc05d5236fe9 -SIZE (moodle-2.9.8.tgz) = 36585205 +TIMESTAMP = 1479195691 +SHA256 (moodle-2.9.9.tgz) = c7aab8387f88111923dd1063964e70c88f1a883b2820f28f273ff572634f5c3b +SIZE (moodle-2.9.9.tgz) = 36587881 Modified: branches/2016Q4/www/moodle30/Makefile ============================================================================== --- branches/2016Q4/www/moodle30/Makefile Wed Nov 16 03:09:31 2016 (r426213) +++ branches/2016Q4/www/moodle30/Makefile Wed Nov 16 07:01:25 2016 (r426214) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 3.0.6 +PORTVERSION= 3.0.7 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable30/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} Modified: branches/2016Q4/www/moodle30/distinfo ============================================================================== --- branches/2016Q4/www/moodle30/distinfo Wed Nov 16 03:09:31 2016 (r426213) +++ branches/2016Q4/www/moodle30/distinfo Wed Nov 16 07:01:25 2016 (r426214) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473745536 -SHA256 (moodle-3.0.6.tgz) = f7500e97a58942a69ee04f6f6155cbe93e1ca0631950c29d60a56babc25af7ee -SIZE (moodle-3.0.6.tgz) = 38172652 +TIMESTAMP = 1479194501 +SHA256 (moodle-3.0.7.tgz) = 6d4f97fd6f8431a8a79eb8d49bdaf54b197c667d7b6d6185c4d7e568d69092b0 +SIZE (moodle-3.0.7.tgz) = 38213543 Modified: branches/2016Q4/www/moodle31/Makefile ============================================================================== --- branches/2016Q4/www/moodle31/Makefile Wed Nov 16 03:09:31 2016 (r426213) +++ branches/2016Q4/www/moodle31/Makefile Wed Nov 16 07:01:25 2016 (r426214) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 3.1.2 +PORTVERSION= 3.1.3 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable31/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} Modified: branches/2016Q4/www/moodle31/distinfo ============================================================================== --- branches/2016Q4/www/moodle31/distinfo Wed Nov 16 03:09:31 2016 (r426213) +++ branches/2016Q4/www/moodle31/distinfo Wed Nov 16 07:01:25 2016 (r426214) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473737031 -SHA256 (moodle-3.1.2.tgz) = a9315cd4d615af9b55541bbcaf65104c6167c7c92f5bed5c7ea29876d6534d7e -SIZE (moodle-3.1.2.tgz) = 37508124 +TIMESTAMP = 1479193633 +SHA256 (moodle-3.1.3.tgz) = c0a4924ef66000fc1ac203276260789a43aab6a88283a45f1ce01002370a8ab2 +SIZE (moodle-3.1.3.tgz) = 37558330 From owner-svn-ports-branches@freebsd.org Wed Nov 16 18:33:53 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D59CEC45E6F; Wed, 16 Nov 2016 18:33:53 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4A8F9BF; Wed, 16 Nov 2016 18:33:53 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAGIXqlC079872; Wed, 16 Nov 2016 18:33:52 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAGIXqLr079870; Wed, 16 Nov 2016 18:33:52 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201611161833.uAGIXqLr079870@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 16 Nov 2016 18:33:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426258 - branches/2016Q4/devel/jenkins-lts X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Nov 2016 18:33:53 -0000 Author: swills Date: Wed Nov 16 18:33:52 2016 New Revision: 426258 URL: https://svnweb.freebsd.org/changeset/ports/426258 Log: MFH: r423925 r425142 r426256 devel/jenkins-lts: update to 2.19.1 devel/jenkins-lts: update to 2.19.2 devel/jenkins-lts: update to 2.19.3 Security: 27eee66d-9474-44a5-b830-21ec12a1c307 Approved by: ports-secteam (swills) Modified: branches/2016Q4/devel/jenkins-lts/Makefile branches/2016Q4/devel/jenkins-lts/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/jenkins-lts/Makefile ============================================================================== --- branches/2016Q4/devel/jenkins-lts/Makefile Wed Nov 16 18:30:15 2016 (r426257) +++ branches/2016Q4/devel/jenkins-lts/Makefile Wed Nov 16 18:33:52 2016 (r426258) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 2.7.2 +PORTVERSION= 2.19.3 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war-stable/${PORTVERSION}/ PKGNAMESUFFIX= -lts Modified: branches/2016Q4/devel/jenkins-lts/distinfo ============================================================================== --- branches/2016Q4/devel/jenkins-lts/distinfo Wed Nov 16 18:30:15 2016 (r426257) +++ branches/2016Q4/devel/jenkins-lts/distinfo Wed Nov 16 18:33:52 2016 (r426258) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470590645 -SHA256 (jenkins/2.7.2/jenkins.war) = b1ea4e1e72a7fe6ead79f7c93b76934d2b8291ab764fc212abe952fa4322a74a -SIZE (jenkins/2.7.2/jenkins.war) = 68853528 +TIMESTAMP = 1479318802 +SHA256 (jenkins/2.19.3/jenkins.war) = bad23e08ce084fdaaccfb7c76fccf435f62cda30c6095b4b3929fb02a9ab3a36 +SIZE (jenkins/2.19.3/jenkins.war) = 69764788 From owner-svn-ports-branches@freebsd.org Wed Nov 16 18:37:19 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55A4AC45F3D; Wed, 16 Nov 2016 18:37:19 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 224ECB95; Wed, 16 Nov 2016 18:37:19 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAGIbIkw080269; Wed, 16 Nov 2016 18:37:18 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAGIbI0c080267; Wed, 16 Nov 2016 18:37:18 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201611161837.uAGIbI0c080267@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 16 Nov 2016 18:37:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426259 - branches/2016Q4/devel/jenkins X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Nov 2016 18:37:19 -0000 Author: swills Date: Wed Nov 16 18:37:17 2016 New Revision: 426259 URL: https://svnweb.freebsd.org/changeset/ports/426259 Log: MFH: r423238 r423768 r424150 r424572 r425044 r425679 r426115 r426257 - Update to 2.24 - Update to 2.25 - Update to 2.26 - Update to 2.27 - Update to 2.28 - Update to 2.30 - Update to 2.31 devel/jenkins: update to 2.32 Security: 27eee66d-9474-44a5-b830-21ec12a1c307 Approved by: ports-secteam (swills) Modified: branches/2016Q4/devel/jenkins/Makefile branches/2016Q4/devel/jenkins/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/jenkins/Makefile ============================================================================== --- branches/2016Q4/devel/jenkins/Makefile Wed Nov 16 18:33:52 2016 (r426258) +++ branches/2016Q4/devel/jenkins/Makefile Wed Nov 16 18:37:17 2016 (r426259) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 2.23 +PORTVERSION= 2.32 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: branches/2016Q4/devel/jenkins/distinfo ============================================================================== --- branches/2016Q4/devel/jenkins/distinfo Wed Nov 16 18:33:52 2016 (r426258) +++ branches/2016Q4/devel/jenkins/distinfo Wed Nov 16 18:37:17 2016 (r426259) @@ -1,3 +1,3 @@ -TIMESTAMP = 1474551249 -SHA256 (jenkins/2.23/jenkins.war) = f13c8182a1054a339cbce0a575dbff46e73072eb4335c3ba323ce731bb07b6be -SIZE (jenkins/2.23/jenkins.war) = 69766759 +TIMESTAMP = 1479320830 +SHA256 (jenkins/2.32/jenkins.war) = e1b6f6aec89baa1d4596292637e6586e91e3c875315cfce156a0349df062d5e3 +SIZE (jenkins/2.32/jenkins.war) = 70132589 From owner-svn-ports-branches@freebsd.org Thu Nov 17 07:03:04 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4AC50C460B8; Thu, 17 Nov 2016 07:03:04 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C4EE38B; Thu, 17 Nov 2016 07:03:03 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAH733HE078015; Thu, 17 Nov 2016 07:03:03 GMT (envelope-from gordon@FreeBSD.org) Received: (from gordon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAH732cQ078006; Thu, 17 Nov 2016 07:03:02 GMT (envelope-from gordon@FreeBSD.org) Message-Id: <201611170703.uAH732cQ078006@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gordon set sender to gordon@FreeBSD.org using -f From: Gordon Tetlow Date: Thu, 17 Nov 2016 07:03:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426278 - in branches/2016Q4/devel: p4 p4api p4d X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Nov 2016 07:03:04 -0000 Author: gordon Date: Thu Nov 17 07:03:02 2016 New Revision: 426278 URL: https://svnweb.freebsd.org/changeset/ports/426278 Log: MFH: r426277 Update Perforce related ports due to micropatching. Submitted by: asomers@ Differential Revision: https://reviews.freebsd.org/D8534 Approved by: ports-secteam (blanket) Modified: branches/2016Q4/devel/p4/Makefile branches/2016Q4/devel/p4/distinfo.freebsd100x86 branches/2016Q4/devel/p4/distinfo.freebsd100x86_64 branches/2016Q4/devel/p4api/Makefile branches/2016Q4/devel/p4api/distinfo.freebsd100x86 branches/2016Q4/devel/p4api/distinfo.freebsd100x86_64 branches/2016Q4/devel/p4d/Makefile branches/2016Q4/devel/p4d/distinfo.freebsd100x86 branches/2016Q4/devel/p4d/distinfo.freebsd100x86_64 Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/p4/Makefile ============================================================================== --- branches/2016Q4/devel/p4/Makefile Thu Nov 17 07:01:19 2016 (r426277) +++ branches/2016Q4/devel/p4/Makefile Thu Nov 17 07:03:02 2016 (r426278) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p4 -PORTVERSION= 2016.1.1454320 +PORTVERSION= 2016.1.1461251 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ \ http://filehost.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ Modified: branches/2016Q4/devel/p4/distinfo.freebsd100x86 ============================================================================== --- branches/2016Q4/devel/p4/distinfo.freebsd100x86 Thu Nov 17 07:01:19 2016 (r426277) +++ branches/2016Q4/devel/p4/distinfo.freebsd100x86 Thu Nov 17 07:03:02 2016 (r426278) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476983673 -SHA256 (perforce/2016.1.1454320/bin.freebsd100x86/p4) = 6a24c050c03a466e1f76c117902a60e1d924f6c2a94f369f759a91bc73510565 -SIZE (perforce/2016.1.1454320/bin.freebsd100x86/p4) = 3074744 +TIMESTAMP = 1479250046 +SHA256 (perforce/2016.1.1461251/bin.freebsd100x86/p4) = 5b9c3bd8df39a5e474b0b49eccdea8690dc6c4386983e64c06888323672df48c +SIZE (perforce/2016.1.1461251/bin.freebsd100x86/p4) = 3075176 Modified: branches/2016Q4/devel/p4/distinfo.freebsd100x86_64 ============================================================================== --- branches/2016Q4/devel/p4/distinfo.freebsd100x86_64 Thu Nov 17 07:01:19 2016 (r426277) +++ branches/2016Q4/devel/p4/distinfo.freebsd100x86_64 Thu Nov 17 07:03:02 2016 (r426278) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476983669 -SHA256 (perforce/2016.1.1454320/bin.freebsd100x86_64/p4) = 703491738c6d1f5742ef5f7eebaf7ba8e70f5268b4763603a5e466573415367f -SIZE (perforce/2016.1.1454320/bin.freebsd100x86_64/p4) = 3335480 +TIMESTAMP = 1479250113 +SHA256 (perforce/2016.1.1461251/bin.freebsd100x86_64/p4) = 392630d8ebc136642df140a6105c61ff63dfa8bfeab222346076d48c6aca059d +SIZE (perforce/2016.1.1461251/bin.freebsd100x86_64/p4) = 3335848 Modified: branches/2016Q4/devel/p4api/Makefile ============================================================================== --- branches/2016Q4/devel/p4api/Makefile Thu Nov 17 07:01:19 2016 (r426277) +++ branches/2016Q4/devel/p4api/Makefile Thu Nov 17 07:03:02 2016 (r426278) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= p4api -PORTVERSION= 2016.1.1454320 +PORTVERSION= 2016.1.1461251 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/:tar \ ftp://ftp.perforce.com/perforce/${P4VERSION}/doc/manuals/p4api/:pdf Modified: branches/2016Q4/devel/p4api/distinfo.freebsd100x86 ============================================================================== --- branches/2016Q4/devel/p4api/distinfo.freebsd100x86 Thu Nov 17 07:01:19 2016 (r426277) +++ branches/2016Q4/devel/p4api/distinfo.freebsd100x86 Thu Nov 17 07:03:02 2016 (r426278) @@ -1,5 +1,5 @@ -TIMESTAMP = 1476983722 -SHA256 (perforce/2016.1.1454320/bin.freebsd100x86/p4api.tgz) = d2a1a72612a313b275d1c9645d57c460d9d7a924c3305a8769293d7bdf6aac50 -SIZE (perforce/2016.1.1454320/bin.freebsd100x86/p4api.tgz) = 3902149 -SHA256 (perforce/2016.1.1454320/bin.freebsd100x86/p4api.pdf) = 601bc053b9b5316b71981449df76b32b9ca318a99752d3d5f46b46327bdc67b8 -SIZE (perforce/2016.1.1454320/bin.freebsd100x86/p4api.pdf) = 1908708 +TIMESTAMP = 1479250049 +SHA256 (perforce/2016.1.1461251/bin.freebsd100x86/p4api.tgz) = eb6da9775f7426b6492e37c8c6d31944d2c24116fcec71f9f52b997127c19d9b +SIZE (perforce/2016.1.1461251/bin.freebsd100x86/p4api.tgz) = 3903453 +SHA256 (perforce/2016.1.1461251/bin.freebsd100x86/p4api.pdf) = 601bc053b9b5316b71981449df76b32b9ca318a99752d3d5f46b46327bdc67b8 +SIZE (perforce/2016.1.1461251/bin.freebsd100x86/p4api.pdf) = 1908708 Modified: branches/2016Q4/devel/p4api/distinfo.freebsd100x86_64 ============================================================================== --- branches/2016Q4/devel/p4api/distinfo.freebsd100x86_64 Thu Nov 17 07:01:19 2016 (r426277) +++ branches/2016Q4/devel/p4api/distinfo.freebsd100x86_64 Thu Nov 17 07:03:02 2016 (r426278) @@ -1,5 +1,5 @@ -TIMESTAMP = 1476983715 -SHA256 (perforce/2016.1.1454320/bin.freebsd100x86_64/p4api.tgz) = 46ce4c147dfdb87d32491596724c7543465367fbbc0cb2606c7c123544eb49c5 -SIZE (perforce/2016.1.1454320/bin.freebsd100x86_64/p4api.tgz) = 4168075 -SHA256 (perforce/2016.1.1454320/bin.freebsd100x86_64/p4api.pdf) = 601bc053b9b5316b71981449df76b32b9ca318a99752d3d5f46b46327bdc67b8 -SIZE (perforce/2016.1.1454320/bin.freebsd100x86_64/p4api.pdf) = 1908708 +TIMESTAMP = 1479250117 +SHA256 (perforce/2016.1.1461251/bin.freebsd100x86_64/p4api.tgz) = 5af749d42ad28e1e9011c383152707723ab3582cfe39b7e1467b45904415664e +SIZE (perforce/2016.1.1461251/bin.freebsd100x86_64/p4api.tgz) = 4168734 +SHA256 (perforce/2016.1.1461251/bin.freebsd100x86_64/p4api.pdf) = 601bc053b9b5316b71981449df76b32b9ca318a99752d3d5f46b46327bdc67b8 +SIZE (perforce/2016.1.1461251/bin.freebsd100x86_64/p4api.pdf) = 1908708 Modified: branches/2016Q4/devel/p4d/Makefile ============================================================================== --- branches/2016Q4/devel/p4d/Makefile Thu Nov 17 07:01:19 2016 (r426277) +++ branches/2016Q4/devel/p4d/Makefile Thu Nov 17 07:03:02 2016 (r426278) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p4d -PORTVERSION= 2016.1.1454320 +PORTVERSION= 2016.1.1461251 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ \ http://filehost.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ Modified: branches/2016Q4/devel/p4d/distinfo.freebsd100x86 ============================================================================== --- branches/2016Q4/devel/p4d/distinfo.freebsd100x86 Thu Nov 17 07:01:19 2016 (r426277) +++ branches/2016Q4/devel/p4d/distinfo.freebsd100x86 Thu Nov 17 07:03:02 2016 (r426278) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476983688 -SHA256 (perforce/2016.1.1454320/bin.freebsd100x86/p4d) = 0a648c3e58630e13a651259e6b0f31f33e50c2ddab193e9d0f1d0204f3776409 -SIZE (perforce/2016.1.1454320/bin.freebsd100x86/p4d) = 5770008 +TIMESTAMP = 1479250052 +SHA256 (perforce/2016.1.1461251/bin.freebsd100x86/p4d) = c27e41f5a4f3eef09b636d765db419cdd621665272ee44dddc63a214e3254998 +SIZE (perforce/2016.1.1461251/bin.freebsd100x86/p4d) = 5773496 Modified: branches/2016Q4/devel/p4d/distinfo.freebsd100x86_64 ============================================================================== --- branches/2016Q4/devel/p4d/distinfo.freebsd100x86_64 Thu Nov 17 07:01:19 2016 (r426277) +++ branches/2016Q4/devel/p4d/distinfo.freebsd100x86_64 Thu Nov 17 07:03:02 2016 (r426278) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476983684 -SHA256 (perforce/2016.1.1454320/bin.freebsd100x86_64/p4d) = 143fd40222e822f3cc03ebc272c8553629687c0f6f28ff59c99c19eb20f7a227 -SIZE (perforce/2016.1.1454320/bin.freebsd100x86_64/p4d) = 5903656 +TIMESTAMP = 1479250119 +SHA256 (perforce/2016.1.1461251/bin.freebsd100x86_64/p4d) = fdea3a0cf2fc97ef0c476647dcbb405579870ffb571d0cedbe105320fd6635fc +SIZE (perforce/2016.1.1461251/bin.freebsd100x86_64/p4d) = 5904728