From owner-svn-ports-branches@FreeBSD.ORG Sun Mar 22 19:49:36 2015 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D96F548; Sun, 22 Mar 2015 19:49:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 1ED50C70; Sun, 22 Mar 2015 19:49:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2MJnZCA077626; Sun, 22 Mar 2015 19:49:35 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2MJnZou077624; Sun, 22 Mar 2015 19:49:35 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201503221949.t2MJnZou077624@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Sun, 22 Mar 2015 19:49:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r381952 - in branches/2015Q1/archivers/rpm4: . 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.18-1 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, 22 Mar 2015 19:49:36 -0000 Author: johans Date: Sun Mar 22 19:49:34 2015 New Revision: 381952 URL: https://svnweb.freebsd.org/changeset/ports/381952 QAT: https://qat.redports.org/buildarchive/r381952/ Log: MFH: r381946 Add security fix for CVE-2014-8118 PR: 198796 Submitted by: Sevan Janiyan Obtained from: https://bugzilla.redhat.com/show_bug.cgi?id=1168715 Approved by: portmgr Added: branches/2015Q1/archivers/rpm4/files/patch-lib_cpio.c - copied unchanged from r381946, head/archivers/rpm4/files/patch-lib_cpio.c Modified: branches/2015Q1/archivers/rpm4/Makefile Directory Properties: branches/2015Q1/ (props changed) Modified: branches/2015Q1/archivers/rpm4/Makefile ============================================================================== --- branches/2015Q1/archivers/rpm4/Makefile Sun Mar 22 19:49:09 2015 (r381951) +++ branches/2015Q1/archivers/rpm4/Makefile Sun Mar 22 19:49:34 2015 (r381952) @@ -3,7 +3,7 @@ PORTNAME= rpm PORTVERSION= 4.12.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers MASTER_SITES= http://rpm.org/releases/rpm-${PORTVERSION:R:R}.x/ \ ftp://ftp.mirrorservice.org/sites/ftp.rpm.org/pub/rpm/dist/rpm-${PORTVERSION:E}.x/ Copied: branches/2015Q1/archivers/rpm4/files/patch-lib_cpio.c (from r381946, head/archivers/rpm4/files/patch-lib_cpio.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q1/archivers/rpm4/files/patch-lib_cpio.c Sun Mar 22 19:49:34 2015 (r381952, copy of r381946, head/archivers/rpm4/files/patch-lib_cpio.c) @@ -0,0 +1,15 @@ +Fix for CVE-2014-8118 as found at +https://bugzilla.redhat.com/show_bug.cgi?id=1168715 + +--- lib/cpio.c.orig 2015-03-22 19:29:29.000000000 +0100 ++++ lib/cpio.c 2015-03-22 19:29:30.000000000 +0100 +@@ -399,6 +399,9 @@ int rpmcpioHeaderRead(rpmcpio_t cpio, ch + + GET_NUM_FIELD(hdr.filesize, fsize); + GET_NUM_FIELD(hdr.namesize, nameSize); ++ if (nameSize <= 0 || nameSize > 4096) { ++ return RPMERR_BAD_HEADER; ++ } + + char name[nameSize + 1]; + read = Fread(name, nameSize, 1, cpio->fd); From owner-svn-ports-branches@FreeBSD.ORG Tue Mar 24 04:39:03 2015 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90241E3; Tue, 24 Mar 2015 04:39:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 61F993F0; Tue, 24 Mar 2015 04:39:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2O4d3sD018622; Tue, 24 Mar 2015 04:39:03 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2O4d36c018621; Tue, 24 Mar 2015 04:39:03 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201503240439.t2O4d36c018621@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Tue, 24 Mar 2015 04:39:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r382067 - branches/pkg_install 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.18-1 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, 24 Mar 2015 04:39:03 -0000 Author: bdrewery Date: Tue Mar 24 04:39:02 2015 New Revision: 382067 URL: https://svnweb.freebsd.org/changeset/ports/382067 QAT: https://qat.redports.org/buildarchive/r382067/ Log: This branch has not been used for anything. We have the PKG_INSTALL_EOL tag if a reference is needed. With hat: portmgr Deleted: branches/pkg_install/ From owner-svn-ports-branches@FreeBSD.ORG Tue Mar 24 13:04:33 2015 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D03C9A22; Tue, 24 Mar 2015 13:04:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 A0919372; Tue, 24 Mar 2015 13:04:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2OD4XHj060084; Tue, 24 Mar 2015 13:04:33 GMT (envelope-from xmj@FreeBSD.org) Received: (from xmj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2OD4Xwf060081; Tue, 24 Mar 2015 13:04:33 GMT (envelope-from xmj@FreeBSD.org) Message-Id: <201503241304.t2OD4Xwf060081@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: xmj set sender to xmj@FreeBSD.org using -f From: Johannes Jost Meixner Date: Tue, 24 Mar 2015 13:04:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r382090 - branches/2015Q1/security/linux-c6-openssl 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.18-1 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, 24 Mar 2015 13:04:33 -0000 Author: xmj Date: Tue Mar 24 13:04:32 2015 New Revision: 382090 URL: https://svnweb.freebsd.org/changeset/ports/382090 QAT: https://qat.redports.org/buildarchive/r382090/ Log: MFH: r382089 security/linux-c6-openssl: update to 1.0.1e_4 - update to 1.0.1e_4 Approved by: swills (mentor) Approved by: ports-secteam (zi) Differential Revision: https://reviews.freebsd.org/D2125 Security: 9d15355b-ce7c-11e4-9db0-d050992ecde8 Security: CVE-2015-0286 Security: CVE-2015-0287 Security: CVE-2015-0289 Security: CVE-2015-0292 Security: CVE-2015-0293 Modified: branches/2015Q1/security/linux-c6-openssl/Makefile branches/2015Q1/security/linux-c6-openssl/distinfo.i686 Directory Properties: branches/2015Q1/ (props changed) Modified: branches/2015Q1/security/linux-c6-openssl/Makefile ============================================================================== --- branches/2015Q1/security/linux-c6-openssl/Makefile Tue Mar 24 12:57:23 2015 (r382089) +++ branches/2015Q1/security/linux-c6-openssl/Makefile Tue Mar 24 13:04:32 2015 (r382090) @@ -3,7 +3,7 @@ PORTNAME= openssl PORTVERSION= 1.0.1e -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= security linux MASTER_SITES= CENTOS_LINUX_UPDATES @@ -15,7 +15,7 @@ CONFLICTS= linux-openssl-[0-9]* linux-f8 ONLY_FOR_ARCHS= i386 amd64 USE_LINUX= c6 USE_LINUX_RPM= yes -RPMVERSION= 30.el6_6.5 +RPMVERSION= 30.el6_6.7 BRANDELF_FILES= usr/bin/openssl USE_LDCONFIG= yes Modified: branches/2015Q1/security/linux-c6-openssl/distinfo.i686 ============================================================================== --- branches/2015Q1/security/linux-c6-openssl/distinfo.i686 Tue Mar 24 12:57:23 2015 (r382089) +++ branches/2015Q1/security/linux-c6-openssl/distinfo.i686 Tue Mar 24 13:04:32 2015 (r382090) @@ -1,4 +1,4 @@ -SHA256 (rpm/i686/centos/6.6/openssl-1.0.1e-30.el6_6.5.i686.rpm) = 0b92c578790913dffc24ce526b0465d216dd988451a5a9666a357a321969c276 -SIZE (rpm/i686/centos/6.6/openssl-1.0.1e-30.el6_6.5.i686.rpm) = 1582840 -SHA256 (rpm/i686/centos/6.6/openssl-1.0.1e-30.el6_6.5.src.rpm) = 61aaf1b8adff685f227ace33dec9b5ab68b4e614587d40b5dd11ba76117461ca -SIZE (rpm/i686/centos/6.6/openssl-1.0.1e-30.el6_6.5.src.rpm) = 3189496 +SHA256 (rpm/i686/centos/6.6/openssl-1.0.1e-30.el6_6.7.i686.rpm) = 3fa78f468398664806f16f1b47f04eeb49c3c86b6a7c6493a1e9c4e34e5eed92 +SIZE (rpm/i686/centos/6.6/openssl-1.0.1e-30.el6_6.7.i686.rpm) = 1583980 +SHA256 (rpm/i686/centos/6.6/openssl-1.0.1e-30.el6_6.7.src.rpm) = fd5e9e6f279085a3537edfe8e464b8bae758aace31b2d6fb37ccbdcf00138c3a +SIZE (rpm/i686/centos/6.6/openssl-1.0.1e-30.el6_6.7.src.rpm) = 3195210 From owner-svn-ports-branches@FreeBSD.ORG Tue Mar 24 19:32:10 2015 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 35ECC752; Tue, 24 Mar 2015 19:32:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 173E6BB4; Tue, 24 Mar 2015 19:32:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2OJW9Fq054385; Tue, 24 Mar 2015 19:32:09 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2OJW865054376; Tue, 24 Mar 2015 19:32:08 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201503241932.t2OJW865054376@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Tue, 24 Mar 2015 19:32:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r382162 - in branches/2015Q1/www/dokuwiki: . 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.18-1 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, 24 Mar 2015 19:32:10 -0000 Author: delphij Date: Tue Mar 24 19:32:07 2015 New Revision: 382162 URL: https://svnweb.freebsd.org/changeset/ports/382162 QAT: https://qat.redports.org/buildarchive/r382162/ Log: Update to 2014-09-29d. Approved by: ports-secteam@ Added: branches/2015Q1/www/dokuwiki/files/patch-2014-09-29a-to-2014-09-29c - copied unchanged from r379842, head/www/dokuwiki/files/patch-2014-09-29a-to-2014-09-29c branches/2015Q1/www/dokuwiki/files/patch-2014-09-29c-to-2014-09-29d - copied unchanged from r382024, head/www/dokuwiki/files/patch-2014-09-29c-to-2014-09-29d Modified: branches/2015Q1/www/dokuwiki/Makefile branches/2015Q1/www/dokuwiki/pkg-descr branches/2015Q1/www/dokuwiki/pkg-plist Directory Properties: branches/2015Q1/ (props changed) Modified: branches/2015Q1/www/dokuwiki/Makefile ============================================================================== --- branches/2015Q1/www/dokuwiki/Makefile Tue Mar 24 19:16:35 2015 (r382161) +++ branches/2015Q1/www/dokuwiki/Makefile Tue Mar 24 19:32:07 2015 (r382162) @@ -3,11 +3,10 @@ PORTNAME= dokuwiki PORTVERSION= ${DIST_VER:S/${PORTNAME}//:S/-//g} -PORTREVISION= 1 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= http://download.dokuwiki.org/src/dokuwiki/ DISTNAME= ${DIST_VER} -EXTRACT_SUFX= .tgz MAINTAINER= delphij@FreeBSD.org COMMENT= Simple and easy to use wiki, no database required @@ -19,6 +18,8 @@ USE_PHP= gd mbstring openssl pcre sessio NO_BUILD= YES WANT_PHP_WEB= YES +USES= cpe tar:tgz + SUB_FILES= pkg-message SUB_LIST+= PORTNAME=${PORTNAME} SHAREOWN= ${WWWOWN} Copied: branches/2015Q1/www/dokuwiki/files/patch-2014-09-29a-to-2014-09-29c (from r379842, head/www/dokuwiki/files/patch-2014-09-29a-to-2014-09-29c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q1/www/dokuwiki/files/patch-2014-09-29a-to-2014-09-29c Tue Mar 24 19:32:07 2015 (r382162, copy of r379842, head/www/dokuwiki/files/patch-2014-09-29a-to-2014-09-29c) @@ -0,0 +1,87 @@ +diff -u -r -N VERSION VERSION +--- VERSION 2014-10-08 00:59:23.000000000 -0700 ++++ VERSION 2015-02-24 12:01:05.000000000 -0800 +@@ -1 +1 @@ +-2014-09-29a "Hrun" ++2014-09-29c "Hrun" +diff -u -r -N conf/mime.conf conf/mime.conf +--- conf/mime.conf 2014-10-08 00:59:23.000000000 -0700 ++++ conf/mime.conf 2015-02-24 12:01:05.000000000 -0800 +@@ -9,7 +9,6 @@ + png image/png + ico image/vnd.microsoft.icon + +-swf application/x-shockwave-flash + mp3 audio/mpeg + ogg audio/ogg + wav audio/wav +@@ -66,3 +65,7 @@ + #xml text/xml + #csv text/csv + ++# Also flash may be able to execute arbitrary scripts in the website's ++# context ++#swf application/x-shockwave-flash ++ +diff -u -r -N data/pages/playground/playground.txt data/pages/playground/playground.txt +--- data/pages/playground/playground.txt 1969-12-31 16:00:00.000000000 -0800 ++++ data/pages/playground/playground.txt 2015-02-24 12:33:06.000000000 -0800 +@@ -0,0 +1 @@ ++====== PlayGround ====== +diff -u -r -N doku.php doku.php +--- doku.php 2014-10-08 00:59:23.000000000 -0700 ++++ doku.php 2015-02-24 12:01:05.000000000 -0800 +@@ -9,7 +9,7 @@ + */ + + // update message version +-$updateVersion = 46.1; ++$updateVersion = 46.3; + + // xdebug_start_profiling(); + +diff -u -r -N lib/plugins/acl/remote.php lib/plugins/acl/remote.php +--- lib/plugins/acl/remote.php 2014-10-08 00:59:23.000000000 -0700 ++++ lib/plugins/acl/remote.php 2015-02-24 12:01:05.000000000 -0800 +@@ -17,12 +17,39 @@ + ); + } + +- function addAcl($scope, $user, $level){ ++ /** ++ * Add a new entry to ACL config ++ * ++ * @param string $scope ++ * @param string $user ++ * @param int $level see also inc/auth.php ++ * @throws RemoteAccessDeniedException ++ * @return bool ++ */ ++ public function addAcl($scope, $user, $level){ ++ if(!auth_isadmin()) { ++ throw new RemoteAccessDeniedException('You are not allowed to access ACLs, superuser permission is required', 114); ++ } ++ ++ /** @var admin_plugin_acl $apa */ + $apa = plugin_load('admin', 'acl'); + return $apa->_acl_add($scope, $user, $level); + } + +- function delAcl($scope, $user){ ++ /** ++ * Remove an entry from ACL config ++ * ++ * @param string $scope ++ * @param string $user ++ * @throws RemoteAccessDeniedException ++ * @return bool ++ */ ++ public function delAcl($scope, $user){ ++ if(!auth_isadmin()) { ++ throw new RemoteAccessDeniedException('You are not allowed to access ACLs, superuser permission is required', 114); ++ } ++ ++ /** @var admin_plugin_acl $apa */ + $apa = plugin_load('admin', 'acl'); + return $apa->_acl_del($scope, $user); + } Copied: branches/2015Q1/www/dokuwiki/files/patch-2014-09-29c-to-2014-09-29d (from r382024, head/www/dokuwiki/files/patch-2014-09-29c-to-2014-09-29d) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q1/www/dokuwiki/files/patch-2014-09-29c-to-2014-09-29d Tue Mar 24 19:32:07 2015 (r382162, copy of r382024, head/www/dokuwiki/files/patch-2014-09-29c-to-2014-09-29d) @@ -0,0 +1,50 @@ +diff -ur VERSION VERSION +--- VERSION 2015-02-24 12:01:05.000000000 -0800 ++++ VERSION 2015-03-19 12:29:53.000000000 -0700 +@@ -1 +1 @@ +-2014-09-29c "Hrun" ++2014-09-29d "Hrun" +diff -ur doku.php doku.php +--- doku.php 2015-02-24 12:01:05.000000000 -0800 ++++ doku.php 2015-03-19 12:29:53.000000000 -0700 +@@ -9,7 +9,7 @@ + */ + + // update message version +-$updateVersion = 46.3; ++$updateVersion = 46.4; + + // xdebug_start_profiling(); + +diff -ur lib/plugins/usermanager/admin.php lib/plugins/usermanager/admin.php +--- lib/plugins/usermanager/admin.php 2015-02-24 12:01:05.000000000 -0800 ++++ lib/plugins/usermanager/admin.php 2015-03-19 12:29:53.000000000 -0700 +@@ -191,9 +191,9 @@ + */ + $groups = join(', ',$grps); + ptln(" "); +- ptln(" "); ++ ptln(" "); + if ($editable) { +- ptln(" 1, ++ ptln(" 1, + 'do' => 'admin', + 'page' => 'usermanager', + 'sectok' => getSecurityToken())). +@@ -325,7 +325,7 @@ + + // save current $user, we need this to access details if the name is changed + if ($user) +- ptln(" ",$indent); ++ ptln(" ",$indent); + + $this->_htmlFilterSettings($indent+10); + +@@ -370,6 +370,7 @@ + $fieldtype = 'text'; + $autocomp = ''; + } ++ $value = hsc($value); + + echo ""; + echo ""; Modified: branches/2015Q1/www/dokuwiki/pkg-descr ============================================================================== --- branches/2015Q1/www/dokuwiki/pkg-descr Tue Mar 24 19:16:35 2015 (r382161) +++ branches/2015Q1/www/dokuwiki/pkg-descr Tue Mar 24 19:32:07 2015 (r382162) @@ -5,4 +5,4 @@ makes sure the datafiles remain readable creation of structured texts. All data is stored in plain text files - no database is required. -WWW: https://wiki.splitbrain.org/wiki:dokuwiki +WWW: https://www.dokuwiki.org/ Modified: branches/2015Q1/www/dokuwiki/pkg-plist ============================================================================== --- branches/2015Q1/www/dokuwiki/pkg-plist Tue Mar 24 19:16:35 2015 (r382161) +++ branches/2015Q1/www/dokuwiki/pkg-plist Tue Mar 24 19:32:07 2015 (r382162) @@ -36,6 +36,7 @@ %%WWWDIR%%/data/media_attic/_dummy %%WWWDIR%%/data/media_meta/_dummy %%WWWDIR%%/data/meta/_dummy +%%WWWDIR%%/data/pages/playground/playground.txt %%WWWDIR%%/data/pages/wiki/dokuwiki.txt %%WWWDIR%%/data/pages/wiki/syntax.txt %%WWWDIR%%/data/pages/wiki/welcome.txt From owner-svn-ports-branches@FreeBSD.ORG Wed Mar 25 06:47:11 2015 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87E7875F; Wed, 25 Mar 2015 06:47:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 6EF5ECD5; Wed, 25 Mar 2015 06:47:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2P6lBxn077369; Wed, 25 Mar 2015 06:47:11 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2P6l4Lm077342; Wed, 25 Mar 2015 06:47:04 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201503250647.t2P6l4Lm077342@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 25 Mar 2015 06:47:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r382198 - in branches/2015Q1: Mk Mk/Uses mail/linux-thunderbird mail/thunderbird mail/thunderbird-i18n mail/thunderbird/files multimedia/openh264 security/ca_root_nss security/nss www/f... 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.18-1 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, 25 Mar 2015 06:47:11 -0000 Author: jbeich Date: Wed Mar 25 06:47:03 2015 New Revision: 382198 URL: https://svnweb.freebsd.org/changeset/ports/382198 QAT: https://qat.redports.org/buildarchive/r382198/ Log: MFH: r380090, r380096, r380101, r380109, r380142, r380547, r380888 MFH: r381889, r381911 - Update OpenH264 to 1.4.0 - Update NSS and ca_root_nss to 3.18 - Update Firefox to 36.0.4 - Update Firefox ESR and libxul to 31.5.3 - Update Thunderbird to 31.5.0 - Update SeaMonkey to 2.33.1 - Update Enigmail to 1.8 - Check if NS_NewNativeLocalFile() succeeds before using [1] - Unbreak build when LOGGING option is disabled [2] - Remove GIO description after r314893 - bsd.gecko.mk: Prune conditionals for files removed 4 months ago Changes: https://github.com/cisco/openh264/releases/tag/v1.4.0 Changes: http://mozilla.6506.n7.nabble.com/ANNOUNCE-NSPR-4-10-8-Release-td332365.html Changes: https://developer.mozilla.org/docs/Mozilla/Projects/NSS/NSS_3.18_release_notes Changes: https://www.mozilla.org/firefox/36.0.4/releasenotes/ Changes: https://www.mozilla.org/firefox/31.5.3/releasenotes/ Changes: http://www.seamonkey-project.org/releases/seamonkey2.33/ Changes: https://www.enigmail.net/download/changelog.php#enig1.8 PR: 198090 [2] Reported by: Piotr Kubaj [2] Reported by: Matthew D. Fuller [2] Reported by: rozhuk.im@gmail.com [2] Obtained from: PkgSrc [1] Obtained from: https://github.com/mozilla/gecko-dev/commit/6af7f0e6 [2] Security: https://vuxml.freebsd.org/freebsd/99029172-8253-407d-9d8b-2cfeab9abf81.html Security: https://vuxml.freebsd.org/freebsd/76ff65f4-17ca-4d3f-864a-a3d6026194fb.html Approved by: ports-secteam (zi, delphij), portmgr (erwin) Added: branches/2015Q1/www/firefox/files/patch-bug1122547 - copied unchanged from r380090, head/www/firefox/files/patch-bug1122547 branches/2015Q1/www/firefox/files/patch-bug1128161 - copied unchanged from r380142, head/www/firefox/files/patch-bug1128161 branches/2015Q1/www/seamonkey/files/patch-bug1122547 - copied unchanged from r380888, head/www/seamonkey/files/patch-bug1122547 branches/2015Q1/www/seamonkey/files/patch-bug1128161 - copied unchanged from r380888, head/www/seamonkey/files/patch-bug1128161 Deleted: branches/2015Q1/mail/thunderbird/files/patch-bug1083461 branches/2015Q1/www/firefox-esr/files/patch-bug1083461 branches/2015Q1/www/firefox/files/patch-bug1041795 branches/2015Q1/www/firefox/files/patch-bug1082199 branches/2015Q1/www/firefox/files/patch-bug1083461 branches/2015Q1/www/firefox/files/patch-bug1097592 branches/2015Q1/www/firefox/files/patch-bug1122586 branches/2015Q1/www/firefox/files/patch-bug858919 branches/2015Q1/www/libxul/files/patch-bug1083461 branches/2015Q1/www/seamonkey/files/patch-bug1041795 branches/2015Q1/www/seamonkey/files/patch-bug1061736 branches/2015Q1/www/seamonkey/files/patch-bug1082199 branches/2015Q1/www/seamonkey/files/patch-bug1083461 branches/2015Q1/www/seamonkey/files/patch-bug1122586 branches/2015Q1/www/seamonkey/files/patch-bug858919 Modified: branches/2015Q1/Mk/Uses/gecko.mk branches/2015Q1/Mk/bsd.gecko.mk branches/2015Q1/mail/linux-thunderbird/Makefile branches/2015Q1/mail/linux-thunderbird/distinfo branches/2015Q1/mail/thunderbird-i18n/Makefile branches/2015Q1/mail/thunderbird-i18n/distinfo branches/2015Q1/mail/thunderbird/Makefile branches/2015Q1/mail/thunderbird/distinfo branches/2015Q1/mail/thunderbird/files/patch-bug1021761 branches/2015Q1/mail/thunderbird/files/patch-bug991253 branches/2015Q1/multimedia/openh264/Makefile branches/2015Q1/multimedia/openh264/distinfo branches/2015Q1/multimedia/openh264/pkg-plist branches/2015Q1/security/ca_root_nss/Makefile branches/2015Q1/security/ca_root_nss/distinfo branches/2015Q1/security/nss/Makefile branches/2015Q1/security/nss/distinfo branches/2015Q1/www/firefox-esr-i18n/Makefile branches/2015Q1/www/firefox-esr-i18n/distinfo branches/2015Q1/www/firefox-esr/Makefile branches/2015Q1/www/firefox-esr/distinfo branches/2015Q1/www/firefox-esr/files/patch-bug1021761 branches/2015Q1/www/firefox-esr/files/patch-bug991253 branches/2015Q1/www/firefox-i18n/Makefile branches/2015Q1/www/firefox-i18n/distinfo branches/2015Q1/www/firefox/Makefile branches/2015Q1/www/firefox/Makefile.options branches/2015Q1/www/firefox/distinfo branches/2015Q1/www/firefox/files/patch-bug1013882 branches/2015Q1/www/firefox/files/patch-bug1021761 branches/2015Q1/www/firefox/files/patch-bug847568 branches/2015Q1/www/firefox/files/patch-bug991253 branches/2015Q1/www/firefox/files/patch-ijg-libjpeg branches/2015Q1/www/firefox/files/patch-system-openh264 branches/2015Q1/www/firefox/files/patch-z-bug517422 branches/2015Q1/www/libxul/Makefile branches/2015Q1/www/libxul/distinfo branches/2015Q1/www/libxul/files/patch-bug1021761 branches/2015Q1/www/libxul/files/patch-bug991253 branches/2015Q1/www/linux-firefox/Makefile branches/2015Q1/www/linux-firefox/distinfo branches/2015Q1/www/linux-firefox/pkg-plist branches/2015Q1/www/linux-seamonkey/Makefile branches/2015Q1/www/linux-seamonkey/distinfo branches/2015Q1/www/linux-seamonkey/pkg-plist branches/2015Q1/www/seamonkey-i18n/Makefile branches/2015Q1/www/seamonkey-i18n/distinfo branches/2015Q1/www/seamonkey/Makefile branches/2015Q1/www/seamonkey/distinfo branches/2015Q1/www/seamonkey/files/patch-bug1021761 branches/2015Q1/www/seamonkey/files/patch-bug847568 branches/2015Q1/www/seamonkey/files/patch-bug991253 branches/2015Q1/www/seamonkey/files/patch-ijg-libjpeg branches/2015Q1/www/seamonkey/files/patch-system-openh264 branches/2015Q1/www/seamonkey/files/patch-z-bug517422 Directory Properties: branches/2015Q1/ (props changed) Modified: branches/2015Q1/Mk/Uses/gecko.mk ============================================================================== --- branches/2015Q1/Mk/Uses/gecko.mk Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/Mk/Uses/gecko.mk Wed Mar 25 06:47:03 2015 (r382198) @@ -37,12 +37,12 @@ RUN_DEPENDS+= libxul>=31:${PORTSDIR}/www .elif ${gecko_ARGS:Mfirefox} _GECKO_DEFAULT_VERSION= 31 -_GECKO_VERSIONS= 31 35 +_GECKO_VERSIONS= 31 36 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions 31_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr -35_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox +36_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null @@ -51,8 +51,8 @@ _GECKO_INSTALLED_VER:= ${_GECKO_INSTALLE .elif ${gecko_ARGS:Mseamonkey} -_GECKO_DEFAULT_VERSION= 32 -_GECKO_VERSIONS= 32 +_GECKO_DEFAULT_VERSION= 33 +_GECKO_VERSIONS= 33 _GECKO_TYPE= seamonkey .if exists(${LOCALBASE}/bin/seamonkey) @@ -61,7 +61,7 @@ _GECKO_INSTALLED_VER:= ${_GECKO_INSTALLE .endif # Dependence lines for different Seamonkey versions -32_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey +33_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey .elif ${gecko_ARGS:Mthunderbird} Modified: branches/2015Q1/Mk/bsd.gecko.mk ============================================================================== --- branches/2015Q1/Mk/bsd.gecko.mk Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/Mk/bsd.gecko.mk Wed Mar 25 06:47:03 2015 (r382198) @@ -146,7 +146,7 @@ event_MOZ_OPTIONS= --with-system-libeven ffi_LIB_DEPENDS= libffi.so:${PORTSDIR}/devel/libffi ffi_MOZ_OPTIONS= --enable-system-ffi -.if exists(${FILESDIR}/patch-bug847568) || exists(${FILESDIR}/patch-z-bug847568) +.if exists(${FILESDIR}/patch-bug847568) graphite_LIB_DEPENDS= libgraphite2.so:${PORTSDIR}/graphics/graphite2 graphite_MOZ_OPTIONS= --with-system-graphite2 @@ -172,7 +172,7 @@ nspr_MOZ_OPTIONS= --with-system-nspr nss_LIB_DEPENDS= libnss3.so:${PORTSDIR}/security/nss nss_MOZ_OPTIONS= --with-system-nss -.if exists(${FILESDIR}/patch-z-bug517422) || exists(${FILESDIR}/patch-zz-bug517422) +.if exists(${FILESDIR}/patch-z-bug517422) opus_LIB_DEPENDS= libopus.so:${PORTSDIR}/audio/opus opus_MOZ_OPTIONS= --with-system-opus .endif @@ -183,7 +183,7 @@ pixman_MOZ_OPTIONS= --enable-system-pixm png_LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png png_MOZ_OPTIONS= --with-system-png=${LOCALBASE} -.if exists(${FILESDIR}/patch-z-bug517422) || exists(${FILESDIR}/patch-zz-bug517422) +.if exists(${FILESDIR}/patch-z-bug517422) soundtouch_LIB_DEPENDS= libSoundTouch.so:${PORTSDIR}/audio/soundtouch soundtouch_MOZ_OPTIONS= --with-system-soundtouch @@ -195,7 +195,7 @@ speex_MOZ_OPTIONS= --with-system-speex sqlite_LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 sqlite_MOZ_OPTIONS= --enable-system-sqlite -.if exists(${FILESDIR}/patch-z-bug517422) || exists(${FILESDIR}/patch-zz-bug517422) +.if exists(${FILESDIR}/patch-z-bug517422) # XXX disabled: update to 1.2.x or review backported fixes theora_LIB_DEPENDS= libtheora.so:${PORTSDIR}/multimedia/libtheora theora_MOZ_OPTIONS= --with-system-theora Modified: branches/2015Q1/mail/linux-thunderbird/Makefile ============================================================================== --- branches/2015Q1/mail/linux-thunderbird/Makefile Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/mail/linux-thunderbird/Makefile Wed Mar 25 06:47:03 2015 (r382198) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 31.4.0 +DISTVERSION= 31.5.0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US Modified: branches/2015Q1/mail/linux-thunderbird/distinfo ============================================================================== --- branches/2015Q1/mail/linux-thunderbird/distinfo Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/mail/linux-thunderbird/distinfo Wed Mar 25 06:47:03 2015 (r382198) @@ -1,5 +1,5 @@ -SHA256 (thunderbird-31.4.0.tar.bz2) = e08c0d4d2bd570801a3609133e63abb080f9f825c288fa2f5761639f2f6e4958 -SIZE (thunderbird-31.4.0.tar.bz2) = 36871510 +SHA256 (thunderbird-31.5.0.tar.bz2) = c4a1e9865e756a09383e110f8f81a229e49fcec04012de80856ce454ed6e41f7 +SIZE (thunderbird-31.5.0.tar.bz2) = 36874681 SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99 SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908 SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b Modified: branches/2015Q1/mail/thunderbird-i18n/Makefile ============================================================================== --- branches/2015Q1/mail/thunderbird-i18n/Makefile Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/mail/thunderbird-i18n/Makefile Wed Mar 25 06:47:03 2015 (r382198) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 31.4.0 +PORTVERSION= 31.5.0 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${PORTVERSION}/linux-i686/xpi PKGNAMEPREFIX= Modified: branches/2015Q1/mail/thunderbird-i18n/distinfo ============================================================================== --- branches/2015Q1/mail/thunderbird-i18n/distinfo Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/mail/thunderbird-i18n/distinfo Wed Mar 25 06:47:03 2015 (r382198) @@ -1,110 +1,110 @@ -SHA256 (xpi/thunderbird-i18n-31.4.0/ar.xpi) = b758c51e79fa7713a6f147d928eec15892f044d2f295ff0ec48f5a76820f812c -SIZE (xpi/thunderbird-i18n-31.4.0/ar.xpi) = 472812 -SHA256 (xpi/thunderbird-i18n-31.4.0/ast.xpi) = 6376fa259325eeafd71e148fedcf19cf9e3a620fe805e78089a3d68af4a4caef -SIZE (xpi/thunderbird-i18n-31.4.0/ast.xpi) = 393049 -SHA256 (xpi/thunderbird-i18n-31.4.0/be.xpi) = ac3f330a687ad8cb329a46844e92439dfb069b29369fdec93885c74a6137a35e -SIZE (xpi/thunderbird-i18n-31.4.0/be.xpi) = 427488 -SHA256 (xpi/thunderbird-i18n-31.4.0/bg.xpi) = 5c1bc813f0f2e5440d6a7f6bbe0cb346de688d47cd241b68834bf398ee35908c -SIZE (xpi/thunderbird-i18n-31.4.0/bg.xpi) = 493734 -SHA256 (xpi/thunderbird-i18n-31.4.0/bn-BD.xpi) = aafaff2a6dad2220a1e75b8948da60c9eba68f81130fbded5c34e773f4fc46d9 -SIZE (xpi/thunderbird-i18n-31.4.0/bn-BD.xpi) = 555613 -SHA256 (xpi/thunderbird-i18n-31.4.0/br.xpi) = 867200206ee9d6339a2bbfce71f7d3bceca32a0821d5fd4d5ed03585b8f98cdd -SIZE (xpi/thunderbird-i18n-31.4.0/br.xpi) = 441444 -SHA256 (xpi/thunderbird-i18n-31.4.0/ca.xpi) = 36481e5c6f1c138ca7752cfa4085c4ba9e4bf6ed32c52f6bbf72c105ea59c08c -SIZE (xpi/thunderbird-i18n-31.4.0/ca.xpi) = 441713 -SHA256 (xpi/thunderbird-i18n-31.4.0/cs.xpi) = 391fe8f7f56270ef3f3e23c4855387053155134d4b2718a40e2a96a8432dec4c -SIZE (xpi/thunderbird-i18n-31.4.0/cs.xpi) = 444701 -SHA256 (xpi/thunderbird-i18n-31.4.0/da.xpi) = bc46fdba7cb03e1d83fc471b54cfe4bc6734a72871b6f286c66fc63c26142764 -SIZE (xpi/thunderbird-i18n-31.4.0/da.xpi) = 422052 -SHA256 (xpi/thunderbird-i18n-31.4.0/de.xpi) = 060e5bc3c4995ce1d44d8d463d47af785748a3ade78160e4a9c54ad4c6ce982b -SIZE (xpi/thunderbird-i18n-31.4.0/de.xpi) = 424665 -SHA256 (xpi/thunderbird-i18n-31.4.0/el.xpi) = bef0bdf34e89eb0bb36ea53456d479beff39e3a2fa19cc96a3f082ada84dcc0c -SIZE (xpi/thunderbird-i18n-31.4.0/el.xpi) = 484855 -SHA256 (xpi/thunderbird-i18n-31.4.0/en-GB.xpi) = bd6815c2cb86ac06cf171d956c28bf29eef10405058c3fba5a7cc34dd90171d7 -SIZE (xpi/thunderbird-i18n-31.4.0/en-GB.xpi) = 412515 -SHA256 (xpi/thunderbird-i18n-31.4.0/en-US.xpi) = c659b3c533e040d1c99d4f0f69dec4a995dc8c437271bcecfae53de4dd6181a1 -SIZE (xpi/thunderbird-i18n-31.4.0/en-US.xpi) = 413660 -SHA256 (xpi/thunderbird-i18n-31.4.0/es-AR.xpi) = cce52ecb2aede4639c4606c860f50abdb90cde00b761319887bad1ecf541f48b -SIZE (xpi/thunderbird-i18n-31.4.0/es-AR.xpi) = 438531 -SHA256 (xpi/thunderbird-i18n-31.4.0/es-ES.xpi) = 7dcd156460118af201d721b0a48366546cce7ad9f3406371930492fc18b19677 -SIZE (xpi/thunderbird-i18n-31.4.0/es-ES.xpi) = 374979 -SHA256 (xpi/thunderbird-i18n-31.4.0/et.xpi) = 9338e5f57be7b9cb7d594c8177c67a5d27a38d9fd9632c4d2b52276cd3b17170 -SIZE (xpi/thunderbird-i18n-31.4.0/et.xpi) = 434364 -SHA256 (xpi/thunderbird-i18n-31.4.0/eu.xpi) = b00c7af0eba2f57014a69d3b7aff4de21c8a4ce51897d19bfb6d0127a85c6a3e -SIZE (xpi/thunderbird-i18n-31.4.0/eu.xpi) = 431449 -SHA256 (xpi/thunderbird-i18n-31.4.0/fi.xpi) = 5de0e63d0373ba13e944c7d097b413b02e32cdb36a33e66b3280a82f97e1969c -SIZE (xpi/thunderbird-i18n-31.4.0/fi.xpi) = 435633 -SHA256 (xpi/thunderbird-i18n-31.4.0/fr.xpi) = 056086aea4ae18784038f01f4911ee540b6140978894ed4e6bb29aac669a6917 -SIZE (xpi/thunderbird-i18n-31.4.0/fr.xpi) = 444144 -SHA256 (xpi/thunderbird-i18n-31.4.0/fy-NL.xpi) = af9a03bc3f80465eca10e23ed77a2df331483493bb461b64792e06a6dd57da29 -SIZE (xpi/thunderbird-i18n-31.4.0/fy-NL.xpi) = 438545 -SHA256 (xpi/thunderbird-i18n-31.4.0/ga-IE.xpi) = 0c36c28fe519fa379cfcc75a8382268c1ef037509d90b9c7018e5317a8067a96 -SIZE (xpi/thunderbird-i18n-31.4.0/ga-IE.xpi) = 449362 -SHA256 (xpi/thunderbird-i18n-31.4.0/gd.xpi) = 0a49f061bd5a908cd6aa40bd7157d8622ecafc1b2039461702a1947ae07b6a23 -SIZE (xpi/thunderbird-i18n-31.4.0/gd.xpi) = 453171 -SHA256 (xpi/thunderbird-i18n-31.4.0/gl.xpi) = 136711c07702118c67aff6e1ced3036acc85fdfd34810d1b31d7beda6e05d7d9 -SIZE (xpi/thunderbird-i18n-31.4.0/gl.xpi) = 446788 -SHA256 (xpi/thunderbird-i18n-31.4.0/he.xpi) = 193c08a611dc42594b544146a060598108a6b810caed7b8f6e4c610ef88f6f63 -SIZE (xpi/thunderbird-i18n-31.4.0/he.xpi) = 476112 -SHA256 (xpi/thunderbird-i18n-31.4.0/hr.xpi) = a35b6b8095950c830a14f507a74a0efece50726d9ba7a2d0fc7d14b53150a8b7 -SIZE (xpi/thunderbird-i18n-31.4.0/hr.xpi) = 436980 -SHA256 (xpi/thunderbird-i18n-31.4.0/hu.xpi) = 31b103b899684391b48c4b7284474efd96b39fd6612ed5b607fa283b05ec1f61 -SIZE (xpi/thunderbird-i18n-31.4.0/hu.xpi) = 454542 -SHA256 (xpi/thunderbird-i18n-31.4.0/hy-AM.xpi) = 44d9e4471a2cfd9938ddf7e617184228d448f9aba94a2eaba88b34650474cf28 -SIZE (xpi/thunderbird-i18n-31.4.0/hy-AM.xpi) = 492766 -SHA256 (xpi/thunderbird-i18n-31.4.0/id.xpi) = 91f7bd26d3939fbf4ce4398215b4a74a252e663217201fc5c606e5f24e28cc79 -SIZE (xpi/thunderbird-i18n-31.4.0/id.xpi) = 475876 -SHA256 (xpi/thunderbird-i18n-31.4.0/is.xpi) = cabb75f91fa2d4592dbf94526bddf2549be1f552d0f943ccfc5a540fc8f5ebaa -SIZE (xpi/thunderbird-i18n-31.4.0/is.xpi) = 437959 -SHA256 (xpi/thunderbird-i18n-31.4.0/it.xpi) = 688327a8dca03496a2114645ebe9ba43c0b709b0d448a17d76369a8e8fb09373 -SIZE (xpi/thunderbird-i18n-31.4.0/it.xpi) = 368001 -SHA256 (xpi/thunderbird-i18n-31.4.0/ja.xpi) = ba7c5ea060cb8efab96b159516b09aa04d026ace91e80b8eef504280b1ad2bed -SIZE (xpi/thunderbird-i18n-31.4.0/ja.xpi) = 489267 -SHA256 (xpi/thunderbird-i18n-31.4.0/ko.xpi) = 175928cdec2ad62bdf97a365020bd688f692a4f57e6d9417aa69c9cc67f1a302 -SIZE (xpi/thunderbird-i18n-31.4.0/ko.xpi) = 448920 -SHA256 (xpi/thunderbird-i18n-31.4.0/lt.xpi) = 93655d1035276a89c68425d14879dcadc6eb1e566bf934f9e9589eaec788d15b -SIZE (xpi/thunderbird-i18n-31.4.0/lt.xpi) = 456352 -SHA256 (xpi/thunderbird-i18n-31.4.0/nb-NO.xpi) = 2d63b4eb3baf322b12526b6a465f165e0fc946c9f86cd973168572f384f35453 -SIZE (xpi/thunderbird-i18n-31.4.0/nb-NO.xpi) = 430941 -SHA256 (xpi/thunderbird-i18n-31.4.0/nl.xpi) = 6bb744c813d8656642845538d2f93d874877ad1d231c699aa16b44452e57bbe5 -SIZE (xpi/thunderbird-i18n-31.4.0/nl.xpi) = 431888 -SHA256 (xpi/thunderbird-i18n-31.4.0/nn-NO.xpi) = 6091e8dd488e704456e8318ee01eb566e738ea9c6a346e5351c590b65c9a35ae -SIZE (xpi/thunderbird-i18n-31.4.0/nn-NO.xpi) = 433198 -SHA256 (xpi/thunderbird-i18n-31.4.0/pa-IN.xpi) = af33455b4ef8d579595d4e312ae9d53920f49f90a2b436bd0ffb225938e50536 -SIZE (xpi/thunderbird-i18n-31.4.0/pa-IN.xpi) = 525323 -SHA256 (xpi/thunderbird-i18n-31.4.0/pl.xpi) = 7128b31c1293ef7d314aa91334c83846149e0584dac24cb2702c1d4455142b81 -SIZE (xpi/thunderbird-i18n-31.4.0/pl.xpi) = 410872 -SHA256 (xpi/thunderbird-i18n-31.4.0/pt-BR.xpi) = a2a1711be09d3c9c856bfe7ee4cdeb278fc3509e03c2b71990f179ad083dafe6 -SIZE (xpi/thunderbird-i18n-31.4.0/pt-BR.xpi) = 450477 -SHA256 (xpi/thunderbird-i18n-31.4.0/pt-PT.xpi) = d529f227ad665ffd62b00b12d8740b9ac60fcdb22156a1cdfaeac4a1d16d6221 -SIZE (xpi/thunderbird-i18n-31.4.0/pt-PT.xpi) = 439604 -SHA256 (xpi/thunderbird-i18n-31.4.0/rm.xpi) = dbc36dc2dca453e9db62dcf98696df1d5fd3f567bf61b9ac8d82e7655655e0e4 -SIZE (xpi/thunderbird-i18n-31.4.0/rm.xpi) = 439186 -SHA256 (xpi/thunderbird-i18n-31.4.0/ro.xpi) = 97a115649c8d2bdb7440bf1ba382def1e72b9e03e7e379311cbcf0b3281a7fcc -SIZE (xpi/thunderbird-i18n-31.4.0/ro.xpi) = 479749 -SHA256 (xpi/thunderbird-i18n-31.4.0/ru.xpi) = 4e5067b258ff6f881f2570a0575bd87e3aba780cfd680576419d32a126278a49 -SIZE (xpi/thunderbird-i18n-31.4.0/ru.xpi) = 436156 -SHA256 (xpi/thunderbird-i18n-31.4.0/si.xpi) = 79bbf1f26ef7ce4e9e6b3a6d548d851ef5c4b36157207a21b70d609857a4d7bc -SIZE (xpi/thunderbird-i18n-31.4.0/si.xpi) = 528812 -SHA256 (xpi/thunderbird-i18n-31.4.0/sk.xpi) = 9b042399be1fdf1d327aaf400a49ef269b39a6afb359e78b79b21473d8d2e5ba -SIZE (xpi/thunderbird-i18n-31.4.0/sk.xpi) = 452995 -SHA256 (xpi/thunderbird-i18n-31.4.0/sl.xpi) = f3db7ef61fa94c1a5a941bc85bd1dbfe87a76b0227225c6a4c9e9857b25dba35 -SIZE (xpi/thunderbird-i18n-31.4.0/sl.xpi) = 433874 -SHA256 (xpi/thunderbird-i18n-31.4.0/sq.xpi) = e0eef93742c9b9a6c511300733998de104a1c63666fe5d5ab485d872eec381f8 -SIZE (xpi/thunderbird-i18n-31.4.0/sq.xpi) = 454695 -SHA256 (xpi/thunderbird-i18n-31.4.0/sr.xpi) = b5c85dafe1aa73f14c2831670a7766955c0893d74f3e45e5c447e8b007515c11 -SIZE (xpi/thunderbird-i18n-31.4.0/sr.xpi) = 537335 -SHA256 (xpi/thunderbird-i18n-31.4.0/sv-SE.xpi) = 715426ca25f8f7a6fbf0976743cb5c572f1e6b53d1df1ca5ee71a102f172f0ad -SIZE (xpi/thunderbird-i18n-31.4.0/sv-SE.xpi) = 436106 -SHA256 (xpi/thunderbird-i18n-31.4.0/ta-LK.xpi) = bf294f9942ca6495b6f4196b0955c956792b5651628f9374ad34fc655e91ba5f -SIZE (xpi/thunderbird-i18n-31.4.0/ta-LK.xpi) = 553509 -SHA256 (xpi/thunderbird-i18n-31.4.0/tr.xpi) = f408ef749ea4a160605961abc37f03322affce56e09ccdb0c824f6de2926ff10 -SIZE (xpi/thunderbird-i18n-31.4.0/tr.xpi) = 457360 -SHA256 (xpi/thunderbird-i18n-31.4.0/uk.xpi) = f7be658507adaaed67fd9bd1a6482a2b49ffc975e991934aad7e319e3f21c843 -SIZE (xpi/thunderbird-i18n-31.4.0/uk.xpi) = 499656 -SHA256 (xpi/thunderbird-i18n-31.4.0/vi.xpi) = 30a49028ea0d54edeb9a06a7d7dcf7e58e6e77ba36ff93353358c7eb23df7f66 -SIZE (xpi/thunderbird-i18n-31.4.0/vi.xpi) = 513835 -SHA256 (xpi/thunderbird-i18n-31.4.0/zh-CN.xpi) = 84a96831d8d781c1641e40ddab8bc1b2ab134c8c695b7de739d6dce51cbba583 -SIZE (xpi/thunderbird-i18n-31.4.0/zh-CN.xpi) = 462668 -SHA256 (xpi/thunderbird-i18n-31.4.0/zh-TW.xpi) = 48ea0c4b0f391a90d887283437c23b2bfc0af6f0b9efb85e72444a0931f905a5 -SIZE (xpi/thunderbird-i18n-31.4.0/zh-TW.xpi) = 463408 +SHA256 (xpi/thunderbird-i18n-31.5.0/ar.xpi) = 80b83ce312ed5616edc61b34604d4991ed1e2179f067336d019b64e32a929530 +SIZE (xpi/thunderbird-i18n-31.5.0/ar.xpi) = 472812 +SHA256 (xpi/thunderbird-i18n-31.5.0/ast.xpi) = 5e04389beb3b7a8fe8d910e52d6683104db2a937746c7db829d6e4ff6c8bab9d +SIZE (xpi/thunderbird-i18n-31.5.0/ast.xpi) = 393049 +SHA256 (xpi/thunderbird-i18n-31.5.0/be.xpi) = a7db2f7a89632a0e55b650dc08b957bc678445db5fb807b029cc7f330651ff28 +SIZE (xpi/thunderbird-i18n-31.5.0/be.xpi) = 427488 +SHA256 (xpi/thunderbird-i18n-31.5.0/bg.xpi) = 1ea991edf2e89421e1f6de27538610be53c61190fc24d62ae181677e904d25dd +SIZE (xpi/thunderbird-i18n-31.5.0/bg.xpi) = 493734 +SHA256 (xpi/thunderbird-i18n-31.5.0/bn-BD.xpi) = e0e1249d2a82c5a52f9b11dc5b4c64dd3204c07feacd431db6fcb31678604f93 +SIZE (xpi/thunderbird-i18n-31.5.0/bn-BD.xpi) = 555613 +SHA256 (xpi/thunderbird-i18n-31.5.0/br.xpi) = e62d04221c7352c833da0df59a44ea13aa9bb30654a8d745760b0e1a3f42689a +SIZE (xpi/thunderbird-i18n-31.5.0/br.xpi) = 441444 +SHA256 (xpi/thunderbird-i18n-31.5.0/ca.xpi) = b3bff4b5595a3427c4ef31ba27fcfef64839bcbddf37b62d2f04f35c31e3889a +SIZE (xpi/thunderbird-i18n-31.5.0/ca.xpi) = 441713 +SHA256 (xpi/thunderbird-i18n-31.5.0/cs.xpi) = cb84334c881ba9444553b334c6cd6e6541c71bd432c8bff46014603a70e10ec2 +SIZE (xpi/thunderbird-i18n-31.5.0/cs.xpi) = 444701 +SHA256 (xpi/thunderbird-i18n-31.5.0/da.xpi) = 284e99c29e42d02c79638c9483aa0b8cc008b46a53da11865f8da33506c46b6b +SIZE (xpi/thunderbird-i18n-31.5.0/da.xpi) = 422051 +SHA256 (xpi/thunderbird-i18n-31.5.0/de.xpi) = a55c0d175e08ce74aa94b9f703c89079aa64996e605a34d061dd775fb8d3fea5 +SIZE (xpi/thunderbird-i18n-31.5.0/de.xpi) = 424665 +SHA256 (xpi/thunderbird-i18n-31.5.0/el.xpi) = 46870a4296ad1f1c1871034bbd3afa21f345f32c2970960ffff0f836d847cd69 +SIZE (xpi/thunderbird-i18n-31.5.0/el.xpi) = 484855 +SHA256 (xpi/thunderbird-i18n-31.5.0/en-GB.xpi) = c92104ae4cd34fb8f545d4c3a5a39bc3caea50d4729d3689859b84a49b187c06 +SIZE (xpi/thunderbird-i18n-31.5.0/en-GB.xpi) = 412515 +SHA256 (xpi/thunderbird-i18n-31.5.0/en-US.xpi) = 51564b06ba20565fbe98dfe1047c914c55fcb6f621f9f6fdbfd76d4167a4ebe5 +SIZE (xpi/thunderbird-i18n-31.5.0/en-US.xpi) = 413660 +SHA256 (xpi/thunderbird-i18n-31.5.0/es-AR.xpi) = ef962dfff8cc1f77506e1ac9f852cd314eaf11e017e0a46a8f4ea4de53f9bf21 +SIZE (xpi/thunderbird-i18n-31.5.0/es-AR.xpi) = 438531 +SHA256 (xpi/thunderbird-i18n-31.5.0/es-ES.xpi) = 6dd729d5d718a6b4c5d542b37e3876e3523fdf21953224c9eb39eb9efd5f4b1d +SIZE (xpi/thunderbird-i18n-31.5.0/es-ES.xpi) = 374979 +SHA256 (xpi/thunderbird-i18n-31.5.0/et.xpi) = 43d89ed6ca9df9e0d008193ff9e40cc95bd95831d64e163f72a81c2efdfa7ad5 +SIZE (xpi/thunderbird-i18n-31.5.0/et.xpi) = 434364 +SHA256 (xpi/thunderbird-i18n-31.5.0/eu.xpi) = a7c6a4c165ad6f2d1f175527d5f875554fa399a6d6889236ffed493077bbc6e0 +SIZE (xpi/thunderbird-i18n-31.5.0/eu.xpi) = 431448 +SHA256 (xpi/thunderbird-i18n-31.5.0/fi.xpi) = b35caace844de02426c23f9e87b8f9651215d80d95f45bb13a2f5002d612204d +SIZE (xpi/thunderbird-i18n-31.5.0/fi.xpi) = 435632 +SHA256 (xpi/thunderbird-i18n-31.5.0/fr.xpi) = 4712f3ed3edbbc4b14f4dd50e1402be4cb8dfcdd965c67f8d3186c391702e0ae +SIZE (xpi/thunderbird-i18n-31.5.0/fr.xpi) = 444144 +SHA256 (xpi/thunderbird-i18n-31.5.0/fy-NL.xpi) = bba975b7a3783432d46017fa650cffdff40b2c28229db24f1f4b5d0a73fc0a77 +SIZE (xpi/thunderbird-i18n-31.5.0/fy-NL.xpi) = 438545 +SHA256 (xpi/thunderbird-i18n-31.5.0/ga-IE.xpi) = b115d881b42e94c6c2357e884c9b943574830ff150a75435a5e80130adc77304 +SIZE (xpi/thunderbird-i18n-31.5.0/ga-IE.xpi) = 449362 +SHA256 (xpi/thunderbird-i18n-31.5.0/gd.xpi) = 9943a52c4c3843b1422f9deb566f04357bbba5a7f60c8ce587a6b46f177ac508 +SIZE (xpi/thunderbird-i18n-31.5.0/gd.xpi) = 453171 +SHA256 (xpi/thunderbird-i18n-31.5.0/gl.xpi) = 5e2564106632fa6c978345c59f87c93034061f1d2d8ad3f2558214b6056a37de +SIZE (xpi/thunderbird-i18n-31.5.0/gl.xpi) = 446788 +SHA256 (xpi/thunderbird-i18n-31.5.0/he.xpi) = 1a6fc4ead76564ecd40dbafe42da5c0cf9ae487160db5da24a45d5cafa86afb1 +SIZE (xpi/thunderbird-i18n-31.5.0/he.xpi) = 476111 +SHA256 (xpi/thunderbird-i18n-31.5.0/hr.xpi) = d9758d7f3866155c29237fce8a59a5ab25ef7372f52a4abf802cdc68e9aa0735 +SIZE (xpi/thunderbird-i18n-31.5.0/hr.xpi) = 436980 +SHA256 (xpi/thunderbird-i18n-31.5.0/hu.xpi) = 95bbeadbfe9eef336ab446272029ec6ee909f590cffd84299b4d7ea8cd215408 +SIZE (xpi/thunderbird-i18n-31.5.0/hu.xpi) = 454542 +SHA256 (xpi/thunderbird-i18n-31.5.0/hy-AM.xpi) = 6f4157eb89931bf75f080791e456c45833ca81f12550bb1c93804be561e309f1 +SIZE (xpi/thunderbird-i18n-31.5.0/hy-AM.xpi) = 492765 +SHA256 (xpi/thunderbird-i18n-31.5.0/id.xpi) = 6e5015d1eb222a70e7aa9f0bca08eec99b81172a216fbba068450e02da681c17 +SIZE (xpi/thunderbird-i18n-31.5.0/id.xpi) = 475876 +SHA256 (xpi/thunderbird-i18n-31.5.0/is.xpi) = ef04dd0a3fe1c0e4edc39a447f561cffb6b962f3dc610ffcd0946c1d26904845 +SIZE (xpi/thunderbird-i18n-31.5.0/is.xpi) = 437959 +SHA256 (xpi/thunderbird-i18n-31.5.0/it.xpi) = 17a0b2c5a2cb1421ec0e73a21040fc18a961ba662508db10a9df19b8476a83ac +SIZE (xpi/thunderbird-i18n-31.5.0/it.xpi) = 368001 +SHA256 (xpi/thunderbird-i18n-31.5.0/ja.xpi) = 4bb4ce66c270912d005227395c1959579d8bb8f4f8297f3078b3f0d25bcfa0d3 +SIZE (xpi/thunderbird-i18n-31.5.0/ja.xpi) = 489267 +SHA256 (xpi/thunderbird-i18n-31.5.0/ko.xpi) = 7a38503c3a9b8e5400dea6627728ded00a0557ae334e1107384559c42e1dec08 +SIZE (xpi/thunderbird-i18n-31.5.0/ko.xpi) = 448920 +SHA256 (xpi/thunderbird-i18n-31.5.0/lt.xpi) = 2417df06915b561cc020d2819a7025db605e5af46ccc1c143fa4d05ccade392b +SIZE (xpi/thunderbird-i18n-31.5.0/lt.xpi) = 456351 +SHA256 (xpi/thunderbird-i18n-31.5.0/nb-NO.xpi) = a79569621cb322351152f4dea1607c9b37f50348a14114f9e61007ecae32288b +SIZE (xpi/thunderbird-i18n-31.5.0/nb-NO.xpi) = 430942 +SHA256 (xpi/thunderbird-i18n-31.5.0/nl.xpi) = 011833942de32f1ddc54c5af9737267c88fd8f540c15cac117b495e056092c10 +SIZE (xpi/thunderbird-i18n-31.5.0/nl.xpi) = 431888 +SHA256 (xpi/thunderbird-i18n-31.5.0/nn-NO.xpi) = cc40effe5cdf84001f7128eb8490e4341dfb896c341bab7487acbfcef38c3747 +SIZE (xpi/thunderbird-i18n-31.5.0/nn-NO.xpi) = 433198 +SHA256 (xpi/thunderbird-i18n-31.5.0/pa-IN.xpi) = 5b5b5fd4429225671a02c6bd81441574013969eb09c82270ba84c6f196a82a03 +SIZE (xpi/thunderbird-i18n-31.5.0/pa-IN.xpi) = 525323 +SHA256 (xpi/thunderbird-i18n-31.5.0/pl.xpi) = f9929f9e7f59e58af8423b66a06577814740c1d25cad445132bbbce00f75ec0a +SIZE (xpi/thunderbird-i18n-31.5.0/pl.xpi) = 410872 +SHA256 (xpi/thunderbird-i18n-31.5.0/pt-BR.xpi) = 9f3d7078b8e8266583042eb9329f9ac0253a6aa0478b8f61ab40e11414c4d2e1 +SIZE (xpi/thunderbird-i18n-31.5.0/pt-BR.xpi) = 450477 +SHA256 (xpi/thunderbird-i18n-31.5.0/pt-PT.xpi) = 6c77ef803b065be17f2089879d1bacf0e1fd12097ad55748da7d5cd870e2cd70 +SIZE (xpi/thunderbird-i18n-31.5.0/pt-PT.xpi) = 439604 +SHA256 (xpi/thunderbird-i18n-31.5.0/rm.xpi) = ad39f5df1f8038b80e575173f6e97cff72a926f41b974d008011f4b285f88730 +SIZE (xpi/thunderbird-i18n-31.5.0/rm.xpi) = 439185 +SHA256 (xpi/thunderbird-i18n-31.5.0/ro.xpi) = 7964ab86199c2b7d16d025eb4080db630ee9d7221c7637470d1f774279b69c85 +SIZE (xpi/thunderbird-i18n-31.5.0/ro.xpi) = 479749 +SHA256 (xpi/thunderbird-i18n-31.5.0/ru.xpi) = 6a75dea1bc33c492e8ec8b6a6dd783d2ca908f0f94d47474ddd96fd6b6116865 +SIZE (xpi/thunderbird-i18n-31.5.0/ru.xpi) = 436156 +SHA256 (xpi/thunderbird-i18n-31.5.0/si.xpi) = 4295a6f35fef93bd1c1b4b07d315ed45f92109c56e2cd1bfabb98b42b7d0e68b +SIZE (xpi/thunderbird-i18n-31.5.0/si.xpi) = 528812 +SHA256 (xpi/thunderbird-i18n-31.5.0/sk.xpi) = b91dd4281edb18f64412c7b459df5afebb12acc5de89c0af26c5a453603d9a36 +SIZE (xpi/thunderbird-i18n-31.5.0/sk.xpi) = 452995 +SHA256 (xpi/thunderbird-i18n-31.5.0/sl.xpi) = aec21bd6f7f183dc7446ed24dda5c64ae7362c48f6d32ef3169cfc273ba4c45f +SIZE (xpi/thunderbird-i18n-31.5.0/sl.xpi) = 433874 +SHA256 (xpi/thunderbird-i18n-31.5.0/sq.xpi) = 40658e0261e2eea88c2561435a721b221634d6d7b50293bec162f5db24ae6fde +SIZE (xpi/thunderbird-i18n-31.5.0/sq.xpi) = 454694 +SHA256 (xpi/thunderbird-i18n-31.5.0/sr.xpi) = 3e9bd7a41b45a165518bfa773b96ccf56f8f6420d54164e51f3af44e3264ee0e +SIZE (xpi/thunderbird-i18n-31.5.0/sr.xpi) = 537336 +SHA256 (xpi/thunderbird-i18n-31.5.0/sv-SE.xpi) = 34806febfad1cb915b7489d43e6ec10273aba1458d922b03d38995669f85283f +SIZE (xpi/thunderbird-i18n-31.5.0/sv-SE.xpi) = 436105 +SHA256 (xpi/thunderbird-i18n-31.5.0/ta-LK.xpi) = d9ecbfde0508d1fe70a541f30edebea6d60f952b3f102c65c235ac9ed2274a28 +SIZE (xpi/thunderbird-i18n-31.5.0/ta-LK.xpi) = 553508 +SHA256 (xpi/thunderbird-i18n-31.5.0/tr.xpi) = 165d89d6c12fc99f2de8f83c4ea39f4866b2b65ded899598fd072b909c9aee22 +SIZE (xpi/thunderbird-i18n-31.5.0/tr.xpi) = 457360 +SHA256 (xpi/thunderbird-i18n-31.5.0/uk.xpi) = 8841b2b381fdd345cd0b19fc2feead78028d5cc118fda6ffb52539b7e6f7c8b3 +SIZE (xpi/thunderbird-i18n-31.5.0/uk.xpi) = 499656 +SHA256 (xpi/thunderbird-i18n-31.5.0/vi.xpi) = 0b4049bbb4ac58833d3ae35750ece29c4893554afcb9622afbe1d64345e6378e +SIZE (xpi/thunderbird-i18n-31.5.0/vi.xpi) = 513835 +SHA256 (xpi/thunderbird-i18n-31.5.0/zh-CN.xpi) = 38a92f434e1d70abd474be1fa449bbb0c19ccad91ef440a5d8e8803e98bda5d3 +SIZE (xpi/thunderbird-i18n-31.5.0/zh-CN.xpi) = 462668 +SHA256 (xpi/thunderbird-i18n-31.5.0/zh-TW.xpi) = c81b39d164cc196e99ae0526c124647ea6de6574b415e0dcd8299f76c8240c84 +SIZE (xpi/thunderbird-i18n-31.5.0/zh-TW.xpi) = 463408 Modified: branches/2015Q1/mail/thunderbird/Makefile ============================================================================== --- branches/2015Q1/mail/thunderbird/Makefile Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/mail/thunderbird/Makefile Wed Mar 25 06:47:03 2015 (r382198) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 31.4.0 -PORTREVISION= 1 +DISTVERSION= 31.5.0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ https://ftp.mozilla.org/pub/mozilla.org/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source/ @@ -32,8 +31,8 @@ BUILD_DEPENDS= nspr>=4.10.6:${PORTSDIR}/ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l -EM_VERSION= 1.7.2 -L_VERSION= 3.3.4 +EM_VERSION= 1.8 +L_VERSION= 3.3.5 SSP_UNSAFE= yes USE_GECKO= gecko Modified: branches/2015Q1/mail/thunderbird/distinfo ============================================================================== --- branches/2015Q1/mail/thunderbird/distinfo Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/mail/thunderbird/distinfo Wed Mar 25 06:47:03 2015 (r382198) @@ -1,4 +1,4 @@ -SHA256 (thunderbird-31.4.0.source.tar.bz2) = 3e4b6cb5934b7a8e51a673044e0691eb7cd88a08415494673cd7eadb35cd90c3 -SIZE (thunderbird-31.4.0.source.tar.bz2) = 171045601 -SHA256 (enigmail-1.7.2.tar.gz) = 7b3a62e83961bafec1cdac60075aa6c317c8f655a837e31a7d1f3ce6a49fc7d6 -SIZE (enigmail-1.7.2.tar.gz) = 1420346 +SHA256 (thunderbird-31.5.0.source.tar.bz2) = 435719518dcf25fb3b810feefca489b92d30354d97836eab09cfdfd1c4b9139d +SIZE (thunderbird-31.5.0.source.tar.bz2) = 171097061 +SHA256 (enigmail-1.8.tar.gz) = 9dca4e9d6fc3f79f51a4ed73918bd69b71668168144895f3a4f5bdaaec0e5f15 +SIZE (enigmail-1.8.tar.gz) = 1588239 Modified: branches/2015Q1/mail/thunderbird/files/patch-bug1021761 ============================================================================== --- branches/2015Q1/mail/thunderbird/files/patch-bug1021761 Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/mail/thunderbird/files/patch-bug1021761 Wed Mar 25 06:47:03 2015 (r382198) @@ -2,7 +2,7 @@ diff --git configure.in configure.in index 48e60c0..ec08417 100644 --- mozilla/configure.in +++ mozilla/configure.in -@@ -5438,6 +5438,60 @@ fi +@@ -5591,6 +5591,67 @@ fi AC_SUBST(MOZ_WEBM_ENCODER) dnl ================================== @@ -16,33 +16,40 @@ index 48e60c0..ec08417 100644 + ;; +esac + -+MOZ_ARG_DISABLE_BOOL(oss, -+[ --disable-oss Disable OpenSoundSystem support], -+ MOZ_OSS=, -+ MOZ_OSS=1) ++MOZ_ARG_WITH_STRING(oss, ++[ --with-oss[=PFX] Enable OpenSoundSystem support [installed at prefix PFX]], ++ OSSPREFIX=$withval) ++ ++if test -n "$OSSPREFIX"; then ++ if test "$OSSPREFIX" != "no"; then ++ MOZ_OSS=1 ++ else ++ MOZ_OSS= ++ fi ++fi + +_SAVE_CFLAGS=$CFLAGS +_SAVE_LIBS=$LIBS +if test -n "$MOZ_OSS"; then + dnl Prefer 4Front implementation + AC_MSG_CHECKING([MOZ_OSS_CFLAGS]) -+ if test -z "$MOZ_OSS_CFLAGS"; then -+ for oss_conf in /etc/oss.conf /usr/local/etc/oss.conf; do -+ if test -e "$oss_conf"; then -+ . "$oss_conf" -+ fi -+ done ++ if test "$OSSPREFIX" != "yes"; then ++ oss_conf=${OSSPREFIX%/usr}/etc/oss.conf ++ if test -f "$oss_conf"; then ++ . "$oss_conf" ++ else ++ OSSLIBDIR=$OSSPREFIX/lib/oss ++ fi + if test -d "$OSSLIBDIR"; then -+ MOZ_OSS_CFLAGS="-I$OSSLIBDIR/include" ++ MOZ_OSS_CFLAGS="$MOZ_OSS_CFLAGS -I$OSSLIBDIR/include" + fi + fi + AC_MSG_RESULT([$MOZ_OSS_CFLAGS]) + + CFLAGS="$CFLAGS $MOZ_OSS_CFLAGS" -+ MOZ_CHECK_HEADERS(sys/soundcard.h linux/soundcard.h soundcard.h) ++ MOZ_CHECK_HEADERS(sys/soundcard.h soundcard.h) + + if test "$ac_cv_header_sys_soundcard_h" != "yes" -a \ -+ "$ac_cv_header_linux_soundcard_h" != "yes" -a \ + "$ac_cv_header_soundcard_h" != "yes"; then + AC_MSG_ERROR([Need OSS for Ogg, Wave or WebM decoding on $OS_TARGET. Disable with --disable-ogg --disable-wave --disable-webm.]) + fi @@ -50,7 +57,7 @@ index 48e60c0..ec08417 100644 + dnl Assume NetBSD implementation over SunAudio + AC_CHECK_LIB(ossaudio, _oss_ioctl, + [AC_DEFINE_UNQUOTED(CUBEB_OSS_DEFAULT_OUTPUT, "/dev/sound") -+ MOZ_OSS_LIBS="-lossaudio"]) ++ MOZ_OSS_LIBS="$MOZ_OSS_LIBS -lossaudio"]) +fi +CFLAGS=$_SAVE_CFLAGS +LIBS=$_SAVE_LIBS @@ -63,30 +70,6 @@ index 48e60c0..ec08417 100644 dnl = Check alsa availability on Linux dnl ================================== -@@ -5451,12 +5505,23 @@ MOZ_ARG_ENABLE_BOOL(alsa, - MOZ_ALSA=1, - MOZ_ALSA=) - -+MOZ_ARG_DISABLE_BOOL(alsa-dlopen, -+[ --disable-alsa-dlopen Disable runtime linking of libasound.so], -+ DISABLE_LIBASOUND_DLOPEN=1, -+ DISABLE_LIBASOUND_DLOPEN=) -+ - if test -n "$MOZ_ALSA"; then - PKG_CHECK_MODULES(MOZ_ALSA, alsa, , - [echo "$MOZ_ALSA_PKG_ERRORS" - AC_MSG_ERROR([Need alsa for Ogg, Wave or WebM decoding on Linux. Disable with --disable-ogg --disable-wave --disable-webm. (On Ubuntu, you might try installing the package libasound2-dev.)])]) - fi - -+if test -n "$DISABLE_LIBASOUND_DLOPEN"; then -+ AC_DEFINE(DISABLE_LIBASOUND_DLOPEN) -+else -+ MOZ_ALSA_LIBS= -+fi -+ - AC_SUBST(MOZ_ALSA) - - dnl ======================================================== diff --git media/libcubeb/AUTHORS media/libcubeb/AUTHORS index b441e8a..950d9e5 100644 --- mozilla/media/libcubeb/AUTHORS @@ -651,7 +634,7 @@ new file mode 100644 index 0000000..5e38e27 --- /dev/null +++ mozilla/media/libcubeb/src/cubeb_oss.c -@@ -0,0 +1,399 @@ +@@ -0,0 +1,397 @@ +/* + * Copyright © 2014 Mozilla Foundation + * @@ -660,8 +643,6 @@ index 0000000..5e38e27 + */ +#if defined(HAVE_SYS_SOUNDCARD_H) +#include -+#elif defined(HAVE_LINUX_SOUNDCARD_H) -+#include +#else +#include +#endif @@ -1075,18 +1056,36 @@ index 8b7a0dd..31212ce 100644 +CFLAGS += CONFIG['MOZ_OSS_CFLAGS'] CFLAGS += CONFIG['MOZ_ALSA_CFLAGS'] CFLAGS += CONFIG['MOZ_PULSEAUDIO_CFLAGS'] +diff --git media/webrtc/signaling/test/Makefile.in media/webrtc/signaling/test/Makefile.in +index 991f03f..3d99eb5 100644 +--- mozilla/media/webrtc/signaling/test/Makefile.in ++++ mozilla/media/webrtc/signaling/test/Makefile.in +@@ -26,9 +26,9 @@ ifdef JS_SHARED_LIBRARY + LIBS += $(MOZ_JS_LIBS) + endif + +-ifdef MOZ_ALSA ++ifdef MOZ_OSS + LIBS += \ +- $(MOZ_ALSA_LIBS) \ ++ $(MOZ_OSS_LIBS) \ + $(NULL) + endif + diff --git toolkit/library/libxul.mk toolkit/library/libxul.mk index e191f13..4fb268a 100644 --- mozilla/toolkit/library/libxul.mk +++ mozilla/toolkit/library/libxul.mk -@@ -146,6 +146,10 @@ OS_LIBS += $(call EXPAND_LIBNAME,secur32 +@@ -146,9 +146,9 @@ OS_LIBS += $(call EXPAND_LIBNAME,secur32 endif endif +-ifdef MOZ_ALSA +-EXTRA_DSO_LDOPTS += $(MOZ_ALSA_LIBS) +-endif +ifdef MOZ_OSS +EXTRA_DSO_LDOPTS += $(MOZ_OSS_LIBS) +endif -+ - ifdef MOZ_ALSA - EXTRA_DSO_LDOPTS += $(MOZ_ALSA_LIBS) - endif + + ifdef HAVE_CLOCK_MONOTONIC + EXTRA_DSO_LDOPTS += $(REALTIME_LIBS) Modified: branches/2015Q1/mail/thunderbird/files/patch-bug991253 ============================================================================== --- branches/2015Q1/mail/thunderbird/files/patch-bug991253 Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/mail/thunderbird/files/patch-bug991253 Wed Mar 25 06:47:03 2015 (r382198) @@ -1,14 +1,16 @@ --- mozilla/extensions/spellcheck/hunspell/src/mozHunspell.cpp~ +++ mozilla/extensions/spellcheck/hunspell/src/mozHunspell.cpp -@@ -400,6 +400,12 @@ mozHunspell::LoadDictionaryList() +@@ -400,6 +400,14 @@ mozHunspell::LoadDictionaryList(bool aNo } } + // load system hunspell dictionaries -+ nsIFile* hunDir; ++ nsCOMPtr hunDir; + NS_NewNativeLocalFile(NS_LITERAL_CSTRING("%%LOCALBASE%%/share/hunspell"), -+ true, &hunDir); -+ LoadDictionariesFromDir(hunDir); ++ true, getter_AddRefs(hunDir)); ++ if (hunDir) { ++ LoadDictionariesFromDir(hunDir); ++ } + // find dictionaries from extensions requiring restart nsCOMPtr dictDirs; Modified: branches/2015Q1/multimedia/openh264/Makefile ============================================================================== --- branches/2015Q1/multimedia/openh264/Makefile Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/multimedia/openh264/Makefile Wed Mar 25 06:47:03 2015 (r382198) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= openh264 -PORTVERSION= 1.3.1 +PORTVERSION= 1.4.0 CATEGORIES= multimedia MAINTAINER= gecko@FreeBSD.org @@ -13,13 +13,12 @@ USE_GITHUB= yes GH_ACCOUNT= cisco GH_PROJECT= ${PORTNAME} GH_TAGNAME= v${PORTVERSION} -GH_COMMIT= 3a182d4 +GH_COMMIT= 3a75956 USES= gmake USE_LDCONFIG= yes MAKE_ARGS= OS=freebsd ARCH="${ARCH:S/amd64/x86_64/}" \ - CFLAGS_OPT="" CFLAGS_DEBUG="" \ - PREFIX="${STAGEDIR}${PREFIX}" + CFLAGS_OPT="" CFLAGS_DEBUG="" ALL_TARGET= all OPTIONS_DEFINE= DEBUG PLUGINS TEST Modified: branches/2015Q1/multimedia/openh264/distinfo ============================================================================== --- branches/2015Q1/multimedia/openh264/distinfo Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/multimedia/openh264/distinfo Wed Mar 25 06:47:03 2015 (r382198) @@ -1,2 +1,2 @@ -SHA256 (openh264-1.3.1.tar.gz) = e2a5ad3b3542a78999f0fcfbdd9ecb9c3dcf2cc89d9b2f9441984a2c472ce16b -SIZE (openh264-1.3.1.tar.gz) = 37643357 +SHA256 (openh264-1.4.0.tar.gz) = 905ab019c9a734ef49e7da3e7846bfc1db3602ddb1ff6828f8442dd3e0375726 +SIZE (openh264-1.4.0.tar.gz) = 37682134 Modified: branches/2015Q1/multimedia/openh264/pkg-plist ============================================================================== --- branches/2015Q1/multimedia/openh264/pkg-plist Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/multimedia/openh264/pkg-plist Wed Mar 25 06:47:03 2015 (r382198) @@ -7,9 +7,9 @@ include/wels/codec_ver.h %%PLUGINS%%@rmtry lib/firefox/defaults/pref/gmpopenh264.js %%PLUGINS%%@rmtry lib/seamonkey/defaults/pref/gmpopenh264.js %%PLUGINS%%%%WEBPLUGIN_DIR%%/gmpopenh264.js -%%PLUGINS%%@exec ln -sf %D/%%WEBPLUGIN_DIR%%/gmpopenh264.js %D/lib/firefox-nightly/defaults/pref/ 2>/dev/null || true -%%PLUGINS%%@exec ln -sf %D/%%WEBPLUGIN_DIR%%/gmpopenh264.js %D/lib/firefox/defaults/pref/ 2>/dev/null || true -%%PLUGINS%%@exec ln -sf %D/%%WEBPLUGIN_DIR%%/gmpopenh264.js %D/lib/seamonkey/defaults/pref/ 2>/dev/null || true +%%PLUGINS%%@exec ln -sf %D/%F %D/lib/firefox-nightly/defaults/pref/ 2>/dev/null || true +%%PLUGINS%%@exec ln -sf %D/%F %D/lib/firefox/defaults/pref/ 2>/dev/null || true +%%PLUGINS%%@exec ln -sf %D/%F %D/lib/seamonkey/defaults/pref/ 2>/dev/null || true %%PLUGINS%%%%WEBPLUGIN_DIR%%/libgmpopenh264.so lib/libopenh264.a lib/libopenh264.so Modified: branches/2015Q1/security/ca_root_nss/Makefile ============================================================================== --- branches/2015Q1/security/ca_root_nss/Makefile Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/security/ca_root_nss/Makefile Wed Mar 25 06:47:03 2015 (r382198) @@ -2,7 +2,6 @@ PORTNAME= ca_root_nss PORTVERSION= ${VERSION_NSS} -PORTREVISION= 1 CATEGORIES= security MASTER_SITES= MOZILLA/security/nss/releases/${DISTNAME:tu:C/[-.]/_/g}_RTM/src DISTNAME= nss-${VERSION_NSS}${NSS_SUFFIX} @@ -26,7 +25,7 @@ PLIST_SUB+= CERTDIR=${CERTDIR} # !!! Please DO NOT submit patches for new version until it has !!! # !!! been committed there first. !!! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -VERSION_NSS= 3.17.3 +VERSION_NSS= 3.18 #NSS_SUFFIX= .with.ckbi.1.93 CERTDATA_TXT_PATH= nss-${VERSION_NSS}/nss/lib/ckfw/builtins/certdata.txt BUNDLE_PROCESSOR= MAca-bundle.pl Modified: branches/2015Q1/security/ca_root_nss/distinfo ============================================================================== --- branches/2015Q1/security/ca_root_nss/distinfo Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/security/ca_root_nss/distinfo Wed Mar 25 06:47:03 2015 (r382198) @@ -1,2 +1,2 @@ -SHA256 (nss-3.17.3.tar.gz) = f4d5e9035a2f84f25f35c283de3b0ff60d72e918748de25eaf017ed201fa21d5 -SIZE (nss-3.17.3.tar.gz) = 6932021 +SHA256 (nss-3.18.tar.gz) = 618db0fb2af9f6fc165934d509036b65efc78ab0ae118c06c9488bb667f21d40 +SIZE (nss-3.18.tar.gz) = 6944836 Modified: branches/2015Q1/security/nss/Makefile ============================================================================== --- branches/2015Q1/security/nss/Makefile Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/security/nss/Makefile Wed Mar 25 06:47:03 2015 (r382198) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nss -PORTVERSION= 3.17.3 +PORTVERSION= 3.18 #DISTVERSIONSUFFIX= .with.ckbi.1.93 CATEGORIES= security MASTER_SITES= MOZILLA/security/${PORTNAME}/releases/${DISTNAME:tu:C/[-.]/_/g}_RTM/src Modified: branches/2015Q1/security/nss/distinfo ============================================================================== --- branches/2015Q1/security/nss/distinfo Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/security/nss/distinfo Wed Mar 25 06:47:03 2015 (r382198) @@ -1,2 +1,2 @@ -SHA256 (nss-3.17.3.tar.gz) = f4d5e9035a2f84f25f35c283de3b0ff60d72e918748de25eaf017ed201fa21d5 -SIZE (nss-3.17.3.tar.gz) = 6932021 +SHA256 (nss-3.18.tar.gz) = 618db0fb2af9f6fc165934d509036b65efc78ab0ae118c06c9488bb667f21d40 +SIZE (nss-3.18.tar.gz) = 6944836 Modified: branches/2015Q1/www/firefox-esr-i18n/Makefile ============================================================================== --- branches/2015Q1/www/firefox-esr-i18n/Makefile Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/www/firefox-esr-i18n/Makefile Wed Mar 25 06:47:03 2015 (r382198) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 31.4.0 +PORTVERSION= 31.5.3 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${PORTVERSION}esr/linux-i686/xpi PKGNAMEPREFIX= Modified: branches/2015Q1/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2015Q1/www/firefox-esr-i18n/distinfo Wed Mar 25 05:40:03 2015 (r382197) +++ branches/2015Q1/www/firefox-esr-i18n/distinfo Wed Mar 25 06:47:03 2015 (r382198) @@ -1,178 +1,178 @@ -SHA256 (xpi/firefox-31.4.0/ach.xpi) = eaf510e73f33ad3fd49721d0719af7af12ce2c6a098c73acb1f2e93c5c121245 -SIZE (xpi/firefox-31.4.0/ach.xpi) = 445326 -SHA256 (xpi/firefox-31.4.0/af.xpi) = 34a5f759cd26ccb76cb1031dbdeec3b515d8ce2da9222eae38b0c661bc074db5 -SIZE (xpi/firefox-31.4.0/af.xpi) = 431089 -SHA256 (xpi/firefox-31.4.0/an.xpi) = fbd7d57eca4a3d4e9b72308e80968b1a10f918b3a700d4f090e8695ff5e7af2f -SIZE (xpi/firefox-31.4.0/an.xpi) = 407150 -SHA256 (xpi/firefox-31.4.0/ar.xpi) = 2b5485dc797ac8fb1c32f507a75320250ab6b75a9eb49cb921d2f25b33a62e19 -SIZE (xpi/firefox-31.4.0/ar.xpi) = 459824 -SHA256 (xpi/firefox-31.4.0/as.xpi) = 82e3ab2e0e1757122918d8791f1f047c89b926f0a5cf83630bc968d5fce0478e -SIZE (xpi/firefox-31.4.0/as.xpi) = 448568 -SHA256 (xpi/firefox-31.4.0/ast.xpi) = 9c664b96c48a3e6f81332fc5ea48d924385ff62625f1c919202190dc1ef10b0f -SIZE (xpi/firefox-31.4.0/ast.xpi) = 352341 -SHA256 (xpi/firefox-31.4.0/be.xpi) = 333fc40ffe93242e0b95d12189a92909357255cf8e219d533427b811e2eb486b -SIZE (xpi/firefox-31.4.0/be.xpi) = 378668 -SHA256 (xpi/firefox-31.4.0/bg.xpi) = bcd996534b770549fd63eb3dbf2095f6bd529089f14a63b6122dcc79b182ccad -SIZE (xpi/firefox-31.4.0/bg.xpi) = 438060 -SHA256 (xpi/firefox-31.4.0/bn-BD.xpi) = 32917acf9307d65b36812c8eeea6d37bf57410a99bae9a0d7493b71796cf60e2 -SIZE (xpi/firefox-31.4.0/bn-BD.xpi) = 472626 -SHA256 (xpi/firefox-31.4.0/bn-IN.xpi) = ba061044a27ec45abe9d758ef0b2ef9bb2ec9235129312e5cf87af8b9e3a4caf -SIZE (xpi/firefox-31.4.0/bn-IN.xpi) = 462593 -SHA256 (xpi/firefox-31.4.0/br.xpi) = 06eec86c4d63ab6c24f7b9d4d60737c47f44196140eb4abeae819101db4a3d63 -SIZE (xpi/firefox-31.4.0/br.xpi) = 389704 -SHA256 (xpi/firefox-31.4.0/bs.xpi) = ba1e18761c4bd7345ed6123e5294c5a989a0d3038583197387e2751a08f8af4f -SIZE (xpi/firefox-31.4.0/bs.xpi) = 429014 -SHA256 (xpi/firefox-31.4.0/ca.xpi) = 8bf21f315464405dc1637bcf242039c58e699920ae5f7b0381ff7408d65578c5 -SIZE (xpi/firefox-31.4.0/ca.xpi) = 403575 -SHA256 (xpi/firefox-31.4.0/cs.xpi) = c6169462993492a9241a29ce7cf540be7eb1bbb3673e3a5aec4b9864941571e8 -SIZE (xpi/firefox-31.4.0/cs.xpi) = 390978 -SHA256 (xpi/firefox-31.4.0/csb.xpi) = a953c8819c530cae9e6da1e9dd92df2b98e9a750a2eb09edce0f807ff960fa54 -SIZE (xpi/firefox-31.4.0/csb.xpi) = 383695 -SHA256 (xpi/firefox-31.4.0/cy.xpi) = 1f7989a40d0188a09828c6a555437b54a511d187dba68a92b0b72f8566117437 -SIZE (xpi/firefox-31.4.0/cy.xpi) = 390727 -SHA256 (xpi/firefox-31.4.0/da.xpi) = 9cd79d770c885189f412bd7baf10e9bd4d6701aae7b88635b085b14ef05d6603 -SIZE (xpi/firefox-31.4.0/da.xpi) = 397746 -SHA256 (xpi/firefox-31.4.0/de.xpi) = e665b67984419485d1cba9a9107004202fd2d9982cefc3dff9b462cdc003fc0e -SIZE (xpi/firefox-31.4.0/de.xpi) = 395164 -SHA256 (xpi/firefox-31.4.0/el.xpi) = 860ba409522d5d4b4b143970111792f44cc93b8fcd27c02b91cae319ef08cc8f -SIZE (xpi/firefox-31.4.0/el.xpi) = 442982 -SHA256 (xpi/firefox-31.4.0/en-GB.xpi) = e25f6614fee9063bf579da05dd09be43f1d5bc7fa0909e90e1547515cd7a767f -SIZE (xpi/firefox-31.4.0/en-GB.xpi) = 390118 -SHA256 (xpi/firefox-31.4.0/en-US.xpi) = 5f0e3e05ae6e1775b84a6132df791e7802063d4500c550207506bce76bc585fb -SIZE (xpi/firefox-31.4.0/en-US.xpi) = 422787 -SHA256 (xpi/firefox-31.4.0/en-ZA.xpi) = 7ac9fa92955e8a2eaf75df49c746f39503a803497d238115e821cf2ac01470bc -SIZE (xpi/firefox-31.4.0/en-ZA.xpi) = 388528 -SHA256 (xpi/firefox-31.4.0/eo.xpi) = 140a9f23ed9b16c635c425784b0d2841389595ce04d46e720991dcb782eeacd2 -SIZE (xpi/firefox-31.4.0/eo.xpi) = 431831 -SHA256 (xpi/firefox-31.4.0/es-AR.xpi) = 7a56a6511bb7376e69517acd4756433a94810e7bc8aa29a437b1a30e06a0196e -SIZE (xpi/firefox-31.4.0/es-AR.xpi) = 399937 -SHA256 (xpi/firefox-31.4.0/es-CL.xpi) = 2f35d2f6dc142b17c0a4dbdcbc25306987e1c96b414552ffa4dea5cd9e889f18 -SIZE (xpi/firefox-31.4.0/es-CL.xpi) = 342807 -SHA256 (xpi/firefox-31.4.0/es-ES.xpi) = 874cc019780ed64f6fe26f4a4610c7bfabce00d34828086f5a432b00009be76d -SIZE (xpi/firefox-31.4.0/es-ES.xpi) = 335880 -SHA256 (xpi/firefox-31.4.0/es-MX.xpi) = ed7048153c6d29758a7d2babd4ce35acf6b294b44f4965fa702311f3877b4f35 -SIZE (xpi/firefox-31.4.0/es-MX.xpi) = 402672 -SHA256 (xpi/firefox-31.4.0/et.xpi) = 17b4970b804ff9197f7bbca7e0b2635e5ecabee36c683f1f47e83e60fcc37dae -SIZE (xpi/firefox-31.4.0/et.xpi) = 390360 -SHA256 (xpi/firefox-31.4.0/eu.xpi) = 3e887cc4f1a6c738c44fcdb24333d5c8e24bf8db15b6cfa45cfc8cce1cb6dd7c -SIZE (xpi/firefox-31.4.0/eu.xpi) = 412999 -SHA256 (xpi/firefox-31.4.0/fa.xpi) = 5ba57b2765304f4131a9ec5e4bfa6251ddd5457d548faae629506e3a1ee04f3b -SIZE (xpi/firefox-31.4.0/fa.xpi) = 460857 -SHA256 (xpi/firefox-31.4.0/ff.xpi) = c1b9a05135b5146f72b48bafdd75c990fd127713d6ee2ca084993a3794524484 -SIZE (xpi/firefox-31.4.0/ff.xpi) = 400143 -SHA256 (xpi/firefox-31.4.0/fi.xpi) = 3abceaefeca0740fdd6f4d491ad526d66d33ee2f77fe357b85a140281a58c86e -SIZE (xpi/firefox-31.4.0/fi.xpi) = 392739 -SHA256 (xpi/firefox-31.4.0/fr.xpi) = 5f97738be7748ee58bb7cd89dd1a4383980942a75f5c81a0f5c8aef7a17cb977 -SIZE (xpi/firefox-31.4.0/fr.xpi) = 406462 -SHA256 (xpi/firefox-31.4.0/fy-NL.xpi) = 21d35be7f279d49a140f810661bc6ef9527d79af8aee2fe2c9913fe3444e92e7 -SIZE (xpi/firefox-31.4.0/fy-NL.xpi) = 401930 -SHA256 (xpi/firefox-31.4.0/ga-IE.xpi) = 5c4c1c8531cba4c8e8962a0d3a892cc8fcd5d0005454d066dba6061bac5c04cc -SIZE (xpi/firefox-31.4.0/ga-IE.xpi) = 410077 -SHA256 (xpi/firefox-31.4.0/gd.xpi) = 307042204493f3410c4e06bc7e3df3502601b6c231ce1d690ae7c6c7cd822518 -SIZE (xpi/firefox-31.4.0/gd.xpi) = 403013 -SHA256 (xpi/firefox-31.4.0/gl.xpi) = b7ec758f0f7bb41d4aa4d99a5cec824a2cc6e9b5670993776fb54b658ee4367e -SIZE (xpi/firefox-31.4.0/gl.xpi) = 390599 -SHA256 (xpi/firefox-31.4.0/gu-IN.xpi) = 2700cb21e08d9e5202f865cd3862aec4ea1d7e0b0eeeef4fc0704d1b16212fe2 -SIZE (xpi/firefox-31.4.0/gu-IN.xpi) = 423503 -SHA256 (xpi/firefox-31.4.0/he.xpi) = f79e2044152c07d89b3ea5ac6af5f3b945c013abf5d06d260afe78b6a5dfa982 -SIZE (xpi/firefox-31.4.0/he.xpi) = 427629 -SHA256 (xpi/firefox-31.4.0/hi-IN.xpi) = d31ced4c55ef36dc2c95289672e3be51c6f355fd01cb397ab7a1ad077ab924ed -SIZE (xpi/firefox-31.4.0/hi-IN.xpi) = 441402 -SHA256 (xpi/firefox-31.4.0/hr.xpi) = 2d9e8788031f34820f2f14732d120f7394696be7e32de2fd9a3f51f7e59e277b -SIZE (xpi/firefox-31.4.0/hr.xpi) = 424371 -SHA256 (xpi/firefox-31.4.0/hsb.xpi) = 64114e8edc46d8bb6ef198b864fa5d09dcc2b308b330f1d9f735af04a66733c6 -SIZE (xpi/firefox-31.4.0/hsb.xpi) = 413076 -SHA256 (xpi/firefox-31.4.0/hu.xpi) = 6e0383b7f7ec4d347e500dcb2471e8eb0a46e957899748df67c9580c18eaa0c5 -SIZE (xpi/firefox-31.4.0/hu.xpi) = 398644 -SHA256 (xpi/firefox-31.4.0/hy-AM.xpi) = 5b552c09afda8cf41863651f5807d002b13862d4970dd0fe3d4f0d550c52d771 -SIZE (xpi/firefox-31.4.0/hy-AM.xpi) = 478743 -SHA256 (xpi/firefox-31.4.0/id.xpi) = 3bdad0e38016f00b2077cffb88106f9c4d335b59b3042e2a5fa48bbfb3725710 -SIZE (xpi/firefox-31.4.0/id.xpi) = 378301 -SHA256 (xpi/firefox-31.4.0/is.xpi) = c1ed7c67f4eb9042d521e6a505debf2dc9abf849053762bb98a232bf56e6caa4 -SIZE (xpi/firefox-31.4.0/is.xpi) = 427327 -SHA256 (xpi/firefox-31.4.0/it.xpi) = a3173fd2f42dcb584206d8cfe04b3441feaa97f0dad4c5c42a1c2408ebc4ef97 -SIZE (xpi/firefox-31.4.0/it.xpi) = 330905 -SHA256 (xpi/firefox-31.4.0/ja.xpi) = 1d6012d6ae351215634a5b39314817b3c9ce0f9a1fd1eb8ed0a437cc08c07945 -SIZE (xpi/firefox-31.4.0/ja.xpi) = 421665 -SHA256 (xpi/firefox-31.4.0/kk.xpi) = 04a6cf1a1f6b2ed64a32477f47b4a7c110ec7c4dbb32c085553d95976a4fc580 -SIZE (xpi/firefox-31.4.0/kk.xpi) = 439116 -SHA256 (xpi/firefox-31.4.0/km.xpi) = 352dfc8dc592dc251f29e0717aae7cac1e924a86a705462f5121e2cbaac91223 -SIZE (xpi/firefox-31.4.0/km.xpi) = 506476 -SHA256 (xpi/firefox-31.4.0/kn.xpi) = c781c7ee43b1c0a6b2a6dd39a12cfc2b4f75c40fd59caf809491c5452a97c11f -SIZE (xpi/firefox-31.4.0/kn.xpi) = 458890 -SHA256 (xpi/firefox-31.4.0/ko.xpi) = 9734356ee4dca8ae385f4018f8746740408108b0ccd33154dd6d1dab58fcab97 -SIZE (xpi/firefox-31.4.0/ko.xpi) = 402815 -SHA256 (xpi/firefox-31.4.0/ku.xpi) = 08303c5f66ae6abdc4bf5d2b292bddfa3f03389fdc8ba69ccb47969cf84e982a -SIZE (xpi/firefox-31.4.0/ku.xpi) = 420263 -SHA256 (xpi/firefox-31.4.0/lij.xpi) = 0c7c5a7362f2b331cbc94a1b7236cf5c3cc6f91240df19f8aa22cd4d49df5183 -SIZE (xpi/firefox-31.4.0/lij.xpi) = 385867 -SHA256 (xpi/firefox-31.4.0/lt.xpi) = dc22c989978418d9507879c29c7799948472ff759ea09c3ebb743b5c4e372980 -SIZE (xpi/firefox-31.4.0/lt.xpi) = 435431 -SHA256 (xpi/firefox-31.4.0/lv.xpi) = c2837a25ce4a7439edad27e1731ed93edcd82c6048720252e730e0b8c6be3c9e -SIZE (xpi/firefox-31.4.0/lv.xpi) = 398576 -SHA256 (xpi/firefox-31.4.0/mai.xpi) = 48d5da0525a87d2f19e5f93e7b11eda3f5670e2d809d81df5f827e26c06a663d -SIZE (xpi/firefox-31.4.0/mai.xpi) = 444885 -SHA256 (xpi/firefox-31.4.0/mk.xpi) = 5023557cbe6163c3682242bf18cb5a2db3c3ad26b95b5a0e286bbcbb2e3d5a39 -SIZE (xpi/firefox-31.4.0/mk.xpi) = 475483 -SHA256 (xpi/firefox-31.4.0/ml.xpi) = c89ccdbec76470196ef0bd51bbc9c983b0d84fbfe975bd71a4687265d6e706ed -SIZE (xpi/firefox-31.4.0/ml.xpi) = 466254 -SHA256 (xpi/firefox-31.4.0/mr.xpi) = 2bb0951c07dda8d41170f49596c30087d5c183879369fe9519d7856b5a0f74dd -SIZE (xpi/firefox-31.4.0/mr.xpi) = 451291 -SHA256 (xpi/firefox-31.4.0/ms.xpi) = f5aba922e5f338f86794621a235f99efdffe23f11dfd0d0723f1a1fb78d6905a -SIZE (xpi/firefox-31.4.0/ms.xpi) = 436230 -SHA256 (xpi/firefox-31.4.0/nb-NO.xpi) = 27ef5afaf0963935f04640c0080e1ad5fc25141cb952186416418208f3474ebe -SIZE (xpi/firefox-31.4.0/nb-NO.xpi) = 392005 -SHA256 (xpi/firefox-31.4.0/nl.xpi) = 3b63800651c2b04b98d792cfcf602d0fe5b975732548dacb741ad810d4e8053c -SIZE (xpi/firefox-31.4.0/nl.xpi) = 390885 -SHA256 (xpi/firefox-31.4.0/nn-NO.xpi) = 2b473f58363066d97d2c7e3fcc29b80a1c62e3a9d45f4976c161f04f5e869e6e -SIZE (xpi/firefox-31.4.0/nn-NO.xpi) = 386281 -SHA256 (xpi/firefox-31.4.0/or.xpi) = 70fc92f01226409b3400d6d8c52d8c89aee87a0b5ff5867f1930d5986a951f0b -SIZE (xpi/firefox-31.4.0/or.xpi) = 464749 -SHA256 (xpi/firefox-31.4.0/pa-IN.xpi) = d562cafe45680ce2580fee8b4ffea35bacc26358317e4c873fc2bd8fa781b9c4 -SIZE (xpi/firefox-31.4.0/pa-IN.xpi) = 439326 -SHA256 (xpi/firefox-31.4.0/pl.xpi) = 9eb18afba43725b57e71fe4c2d69c454561786dfa914e3bf153415585646f115 -SIZE (xpi/firefox-31.4.0/pl.xpi) = 374747 -SHA256 (xpi/firefox-31.4.0/pt-BR.xpi) = d156484914f929a8cc2acaa76bb0714cd302ed8f9f677b12176470715142a294 -SIZE (xpi/firefox-31.4.0/pt-BR.xpi) = 405565 -SHA256 (xpi/firefox-31.4.0/pt-PT.xpi) = 74408f5c2a7e7d097274501b1bc1c0f4da67455191dbbf6d5e8fc28eab47b155 -SIZE (xpi/firefox-31.4.0/pt-PT.xpi) = 386344 -SHA256 (xpi/firefox-31.4.0/rm.xpi) = 056579048789796082bb1412bf627c6f4b395a8369b26bf9d5d13a33349fe0ea -SIZE (xpi/firefox-31.4.0/rm.xpi) = 399285 -SHA256 (xpi/firefox-31.4.0/ro.xpi) = 21258fecd09254fff0b0410fb1152a0ca84a6095bae6e7f828e6de585bf795ac -SIZE (xpi/firefox-31.4.0/ro.xpi) = 439387 -SHA256 (xpi/firefox-31.4.0/ru.xpi) = a9bdb4ba53972476d6a556af977ad05b9f2b650c63a49e74009cf76c43d55993 -SIZE (xpi/firefox-31.4.0/ru.xpi) = 367898 -SHA256 (xpi/firefox-31.4.0/si.xpi) = 13b0725e8c837f770b4099b61d8618e5287ab7a6008ff5bde5cff7fb41a51b81 -SIZE (xpi/firefox-31.4.0/si.xpi) = 463223 -SHA256 (xpi/firefox-31.4.0/sk.xpi) = a6f1883319357a76df8516a446e2e952033e50e4ffe8097c723efeeeaba78d8c -SIZE (xpi/firefox-31.4.0/sk.xpi) = 413802 -SHA256 (xpi/firefox-31.4.0/sl.xpi) = a531e61e52de28b107fe869083e2b9b6da7c2fe625e4b630784317401c6010ef -SIZE (xpi/firefox-31.4.0/sl.xpi) = 387134 -SHA256 (xpi/firefox-31.4.0/son.xpi) = 63975c7e789feb3d2340796cc321cd50337527dd730226a0b2d32026a0bfddf9 -SIZE (xpi/firefox-31.4.0/son.xpi) = 395143 -SHA256 (xpi/firefox-31.4.0/sq.xpi) = fdfda585f433b3c23139918480d32379a1c5723794c61448e4d530889108d0de -SIZE (xpi/firefox-31.4.0/sq.xpi) = 431136 -SHA256 (xpi/firefox-31.4.0/sr.xpi) = d564522188b570c9214744bcbf51c8357a6796a03f4e3cab195672fa5c5c5eff -SIZE (xpi/firefox-31.4.0/sr.xpi) = 425902 -SHA256 (xpi/firefox-31.4.0/sv-SE.xpi) = 3b175344594b94d110ec34eb04b9c6f3cfc135acc658aa76141415959b7b7c86 -SIZE (xpi/firefox-31.4.0/sv-SE.xpi) = 399026 -SHA256 (xpi/firefox-31.4.0/ta.xpi) = b2753f3f79464a36ae59ab74340123b55990485baca34737e837135f649889e3 -SIZE (xpi/firefox-31.4.0/ta.xpi) = 447685 -SHA256 (xpi/firefox-31.4.0/te.xpi) = 3f59b97750297c3db28b6207886e71e01c3ad19aa79c99211b3b40068576e34c -SIZE (xpi/firefox-31.4.0/te.xpi) = 462591 -SHA256 (xpi/firefox-31.4.0/th.xpi) = 693c09e4ca32fda0881b10a4463cd988819265f0717045f5f88c9dc0289d6cc2 -SIZE (xpi/firefox-31.4.0/th.xpi) = 478126 -SHA256 (xpi/firefox-31.4.0/tr.xpi) = c1409656574e67fdb932355086e03034d2778d7cdc5df3c9a8d96b226dffc850 -SIZE (xpi/firefox-31.4.0/tr.xpi) = 417370 -SHA256 (xpi/firefox-31.4.0/uk.xpi) = 6cd816e4e376e4ddc5bfd85d256c0adeeb8a714079322b92153063d0daacf3a4 -SIZE (xpi/firefox-31.4.0/uk.xpi) = 428002 -SHA256 (xpi/firefox-31.4.0/vi.xpi) = d3bd923639008d8fe12a6da6b586440443124bc91b9dd4574afa43f370a142e3 -SIZE (xpi/firefox-31.4.0/vi.xpi) = 413374 -SHA256 (xpi/firefox-31.4.0/xh.xpi) = cb82450d18c1f0b46fd036f08bbd18e534a2d0a4c7925f91b88d85206d5770c1 -SIZE (xpi/firefox-31.4.0/xh.xpi) = 397876 -SHA256 (xpi/firefox-31.4.0/zh-CN.xpi) = 68e5448ae679e9f82feb260c8c96ce9fe07a86528b9bb926f20f5692507a9c82 -SIZE (xpi/firefox-31.4.0/zh-CN.xpi) = 419629 -SHA256 (xpi/firefox-31.4.0/zh-TW.xpi) = 6a34241237e8252aa087c5a8d665086d1638f437bea4061bd26ac3bfcee3e6f6 -SIZE (xpi/firefox-31.4.0/zh-TW.xpi) = 412520 -SHA256 (xpi/firefox-31.4.0/zu.xpi) = 7277fd8f5c8491ccf9a895c7534b2cf86fb0672a5c88bfa71948d19cd4e2ea24 -SIZE (xpi/firefox-31.4.0/zu.xpi) = 433215 +SHA256 (xpi/firefox-31.5.3/ach.xpi) = 197d075d13b5601426ed6ccf7a385958e678362ca6395d48da5f1e50eb9899c2 +SIZE (xpi/firefox-31.5.3/ach.xpi) = 445326 +SHA256 (xpi/firefox-31.5.3/af.xpi) = 8a6ceb72e0f6b8f08067de07951841905697874922622e4c48b5c612b22162db +SIZE (xpi/firefox-31.5.3/af.xpi) = 431089 +SHA256 (xpi/firefox-31.5.3/an.xpi) = 92a4c1a0651ebf3ac69ce803a914f4a9624361083a1ac335560dc6523ff7c2e1 +SIZE (xpi/firefox-31.5.3/an.xpi) = 407151 +SHA256 (xpi/firefox-31.5.3/ar.xpi) = 116e438d6ed31ae4388e29c602507f5bd30b6d8a3a162835d0d3b412e56b5f03 +SIZE (xpi/firefox-31.5.3/ar.xpi) = 459823 +SHA256 (xpi/firefox-31.5.3/as.xpi) = aac019e938411f07df8f09ef215871809e75ba580398c478d835896fb274b43f +SIZE (xpi/firefox-31.5.3/as.xpi) = 448568 +SHA256 (xpi/firefox-31.5.3/ast.xpi) = f90c97ce4c2cb7822b23abfc2baa6fdc4f301d506d50a2b8ec0778ba9fa296d1 +SIZE (xpi/firefox-31.5.3/ast.xpi) = 352340 +SHA256 (xpi/firefox-31.5.3/be.xpi) = 5536a42649ba6125468051e7fb50fea0e791ae54411c3ca941ff8a818c30fe50 +SIZE (xpi/firefox-31.5.3/be.xpi) = 378668 +SHA256 (xpi/firefox-31.5.3/bg.xpi) = d9136407c1ce937cb0f9d406398f07102807c4336cb2e705060b35acab11b954 +SIZE (xpi/firefox-31.5.3/bg.xpi) = 438061 +SHA256 (xpi/firefox-31.5.3/bn-BD.xpi) = 8b8fa16e3d3d04d61cfa9778e261339c416da2c59b1ad45a34003036ac919f3f +SIZE (xpi/firefox-31.5.3/bn-BD.xpi) = 472626 +SHA256 (xpi/firefox-31.5.3/bn-IN.xpi) = 2eb8cdc6fb23c515ab9bce3894d2d10efedcbd9dd09a95a4d55f2c9489784e0d +SIZE (xpi/firefox-31.5.3/bn-IN.xpi) = 462592 +SHA256 (xpi/firefox-31.5.3/br.xpi) = d245ef7f92a3b055ebb870864b56f4987b9523c298f034c43883fee64a9ff413 +SIZE (xpi/firefox-31.5.3/br.xpi) = 389704 +SHA256 (xpi/firefox-31.5.3/bs.xpi) = 046a9595ae96032e64e2f59607adf74426034db034b097153ec1a03fda857e34 +SIZE (xpi/firefox-31.5.3/bs.xpi) = 429014 +SHA256 (xpi/firefox-31.5.3/ca.xpi) = cadd036f2b28a9f8e9057181524668d8983ef506788b3d12cb3dc83f121763b2 +SIZE (xpi/firefox-31.5.3/ca.xpi) = 403575 +SHA256 (xpi/firefox-31.5.3/cs.xpi) = 1da52b9bebb79975ff861295f0a709be9926d53f8c1e9a09c537ff478274c024 +SIZE (xpi/firefox-31.5.3/cs.xpi) = 390978 +SHA256 (xpi/firefox-31.5.3/csb.xpi) = 4d31dcfeeff943793a06c25f11838b2199edcfa841aa08553ef308832786b967 +SIZE (xpi/firefox-31.5.3/csb.xpi) = 383695 +SHA256 (xpi/firefox-31.5.3/cy.xpi) = 009b6ededd4ef71f43803da59eabefc34fe26338509a9a2d43130a690ce2085a +SIZE (xpi/firefox-31.5.3/cy.xpi) = 390727 +SHA256 (xpi/firefox-31.5.3/da.xpi) = df506e2306b5e2b2c4c48c71d8cfaa70581c1abcc6e3cb1014669d48ab120052 +SIZE (xpi/firefox-31.5.3/da.xpi) = 397747 +SHA256 (xpi/firefox-31.5.3/de.xpi) = 2b3e0b142c7f7ac144d998e8cade7ad14ab7b8382195350ccd063185a69fdef8 +SIZE (xpi/firefox-31.5.3/de.xpi) = 395165 +SHA256 (xpi/firefox-31.5.3/el.xpi) = 112d549382ab47d4272a368ff437e491427918cf5c309ce0d454d23dfdbff53d +SIZE (xpi/firefox-31.5.3/el.xpi) = 442982 +SHA256 (xpi/firefox-31.5.3/en-GB.xpi) = 7cc89c262bf6905305dfee047f2a08e2b98e3065390e76f7b5f9304dca12ad6b +SIZE (xpi/firefox-31.5.3/en-GB.xpi) = 390118 +SHA256 (xpi/firefox-31.5.3/en-US.xpi) = c7fcd381a759c7d0569d0d70b6050001da125c80f06a9a9f7ae97dee399738d0 +SIZE (xpi/firefox-31.5.3/en-US.xpi) = 422787 +SHA256 (xpi/firefox-31.5.3/en-ZA.xpi) = 77d110c91bbcb87fc70ef0099e829483085c4536c9367fbf38d85209e66e2ad5 +SIZE (xpi/firefox-31.5.3/en-ZA.xpi) = 388528 +SHA256 (xpi/firefox-31.5.3/eo.xpi) = d28e411b30e261e1881ce4af9fb5303c24982a0a4298cc39e89ad64596cab88b +SIZE (xpi/firefox-31.5.3/eo.xpi) = 431830 +SHA256 (xpi/firefox-31.5.3/es-AR.xpi) = 37b03a47f0a842355eca6b144e4a5927bb81918193c4cdb76dbc65721be23c79 +SIZE (xpi/firefox-31.5.3/es-AR.xpi) = 399937 +SHA256 (xpi/firefox-31.5.3/es-CL.xpi) = 9a0c745aa954cc9001a8926bdd94792cd91ffda53ec9d677a1d117721406d759 +SIZE (xpi/firefox-31.5.3/es-CL.xpi) = 342808 +SHA256 (xpi/firefox-31.5.3/es-ES.xpi) = 6f8c2c1828fa5454617374ed84cf514e6b4c47937caaf8edf6abef44f9237a43 +SIZE (xpi/firefox-31.5.3/es-ES.xpi) = 335880 +SHA256 (xpi/firefox-31.5.3/es-MX.xpi) = 982048c22ba8f9d1ae137683b8b93cef1b18043d37dfc6057f1ca1a64255ea7f +SIZE (xpi/firefox-31.5.3/es-MX.xpi) = 402672 +SHA256 (xpi/firefox-31.5.3/et.xpi) = ec37f5a267818d7bd89732a4b8c8df7f6178c7c42d8e23fd1ae5ca3980209295 +SIZE (xpi/firefox-31.5.3/et.xpi) = 390361 +SHA256 (xpi/firefox-31.5.3/eu.xpi) = 8d9ecb87867b7475fae8f9f8afc53ba74c362dbf3ea6ef544e0cc2553dfa0b7d +SIZE (xpi/firefox-31.5.3/eu.xpi) = 412999 +SHA256 (xpi/firefox-31.5.3/fa.xpi) = 02fa5051dd4c46e64a701798f035eefc84e8faa174d20a007c3b018696405b67 +SIZE (xpi/firefox-31.5.3/fa.xpi) = 460857 +SHA256 (xpi/firefox-31.5.3/ff.xpi) = a05239e83bb676ff145a16e7a82694fd8fd1e85042a1402208868100c81585cc +SIZE (xpi/firefox-31.5.3/ff.xpi) = 400143 +SHA256 (xpi/firefox-31.5.3/fi.xpi) = b8985a70bf9c6acb9a32b17aea87986d7fec51140b877b940f884df6834859f2 +SIZE (xpi/firefox-31.5.3/fi.xpi) = 392740 +SHA256 (xpi/firefox-31.5.3/fr.xpi) = 5ef10eda4b2dde6eb1fd28bd9d01db59c6a1f9d30884094025fd285bd2e3edee +SIZE (xpi/firefox-31.5.3/fr.xpi) = 406462 +SHA256 (xpi/firefox-31.5.3/fy-NL.xpi) = dd8bf07f45cce623ca42f46af29603a8552b1a0e486312b9c51a03d3136365e8 +SIZE (xpi/firefox-31.5.3/fy-NL.xpi) = 401933 +SHA256 (xpi/firefox-31.5.3/ga-IE.xpi) = 20b9cc0e230f20bb0640d452474bf8a96aa4cb61cbe0b5e703ab6b2ec0257c3d +SIZE (xpi/firefox-31.5.3/ga-IE.xpi) = 410076 +SHA256 (xpi/firefox-31.5.3/gd.xpi) = 11bffbdad29e87dbe2cce2c588ca29b89ae97f4355cb1ff72214db956d575654 +SIZE (xpi/firefox-31.5.3/gd.xpi) = 403013 +SHA256 (xpi/firefox-31.5.3/gl.xpi) = 452a24fb1b9dec57c5a34a7a1ea71f8d21d8405fce738bee091009074d3a4d5b +SIZE (xpi/firefox-31.5.3/gl.xpi) = 390599 +SHA256 (xpi/firefox-31.5.3/gu-IN.xpi) = e55cbdb1af9fb8d0751b098af3655dec918a897de53fc7abf0422484525c11b3 +SIZE (xpi/firefox-31.5.3/gu-IN.xpi) = 423503 +SHA256 (xpi/firefox-31.5.3/he.xpi) = a71e94a3b5d6e11a9c915df365b2260efc5c11ae4fcfb2417812aedbd1f487ed +SIZE (xpi/firefox-31.5.3/he.xpi) = 427630 +SHA256 (xpi/firefox-31.5.3/hi-IN.xpi) = 36377da16d5b09ab73d8a61bfc26e1ca2c24dda5a0d9354814e0ed8a957b663d +SIZE (xpi/firefox-31.5.3/hi-IN.xpi) = 441402 +SHA256 (xpi/firefox-31.5.3/hr.xpi) = 738833e10d35338004cf7a80f7a0be895898b3ea1a338bee6746d797a4da9d2e +SIZE (xpi/firefox-31.5.3/hr.xpi) = 424370 +SHA256 (xpi/firefox-31.5.3/hsb.xpi) = 61cbb7b6e483c6cd7458d58349737cb62ef3b59186f1c095c3f77046719e7d19 +SIZE (xpi/firefox-31.5.3/hsb.xpi) = 413075 +SHA256 (xpi/firefox-31.5.3/hu.xpi) = 4bcad5316136237a80304afab4e441d3ee7820cee5808688affc0729b279e1dd +SIZE (xpi/firefox-31.5.3/hu.xpi) = 398644 +SHA256 (xpi/firefox-31.5.3/hy-AM.xpi) = 5805226bd0d1d936bf0d035ad84245a59022d91fce1f9b98d892ee3a71f52987 +SIZE (xpi/firefox-31.5.3/hy-AM.xpi) = 478743 +SHA256 (xpi/firefox-31.5.3/id.xpi) = cbbb9f18584b2a37321a36999d4b40d3e2161b149bdeb4453d10478eb3fcd0ab +SIZE (xpi/firefox-31.5.3/id.xpi) = 378301 +SHA256 (xpi/firefox-31.5.3/is.xpi) = ff4c5600a54ad4fe3f3c16ea6eb25c1bdd9734f5636deabdcfdbb4d1b45b2242 +SIZE (xpi/firefox-31.5.3/is.xpi) = 427326 +SHA256 (xpi/firefox-31.5.3/it.xpi) = a49a4f61ba71b8fa8b01b0a71ec5d1d4cec914725365d2d0468319599a82509a +SIZE (xpi/firefox-31.5.3/it.xpi) = 330905 +SHA256 (xpi/firefox-31.5.3/ja.xpi) = 1c21b112ddf7f0b48f174c10d3ef56b262a400150dbaa961a830c398c7d2f461 +SIZE (xpi/firefox-31.5.3/ja.xpi) = 421665 +SHA256 (xpi/firefox-31.5.3/kk.xpi) = c8d5c28d047c2526b4c06251e7c1438042a73e63d7ca06b214f44d42cf57873a +SIZE (xpi/firefox-31.5.3/kk.xpi) = 439116 +SHA256 (xpi/firefox-31.5.3/km.xpi) = adc0040f8d9191faa3fd1208bf6237ca6e8b8dde57ce43a8500580ac175d24da +SIZE (xpi/firefox-31.5.3/km.xpi) = 506476 +SHA256 (xpi/firefox-31.5.3/kn.xpi) = 8eee19093ed29306b4199b747864619cb967ebe3b0e7b34f4a35bc354fbeba82 +SIZE (xpi/firefox-31.5.3/kn.xpi) = 458890 +SHA256 (xpi/firefox-31.5.3/ko.xpi) = 63d858ea947e2cb45619cd7f134204a175c6c3f70cc1911bc917a94f253ec230 +SIZE (xpi/firefox-31.5.3/ko.xpi) = 402815 +SHA256 (xpi/firefox-31.5.3/ku.xpi) = ebf9a2e49aa7d125d33d0d01cf919106c66bb696800ea71776eec06d44ab6e59 +SIZE (xpi/firefox-31.5.3/ku.xpi) = 420263 +SHA256 (xpi/firefox-31.5.3/lij.xpi) = e609c736b2186860dae3112fa6d57479eafc6ea17e4b7defd170a5204e28b919 +SIZE (xpi/firefox-31.5.3/lij.xpi) = 385868 +SHA256 (xpi/firefox-31.5.3/lt.xpi) = 1d35160e2e91dc975ce030a86e8d28096beaf23a149b547be3e6d91bd6bbad44 +SIZE (xpi/firefox-31.5.3/lt.xpi) = 435431 +SHA256 (xpi/firefox-31.5.3/lv.xpi) = 0e64508f921eeeb11ebd8af8b57f3554ddab6383439e39d23045f17df1c78269 +SIZE (xpi/firefox-31.5.3/lv.xpi) = 398576 +SHA256 (xpi/firefox-31.5.3/mai.xpi) = 2f574ad27b9911afd48e2a4f91abc885331133fc4ec7fb78139a8e1c074af69b +SIZE (xpi/firefox-31.5.3/mai.xpi) = 444885 +SHA256 (xpi/firefox-31.5.3/mk.xpi) = 9510a11007a422afafb7ece88f09de78cf40017b6c3ea1dd2092efd655e60cf5 +SIZE (xpi/firefox-31.5.3/mk.xpi) = 475483 +SHA256 (xpi/firefox-31.5.3/ml.xpi) = 79b18ca7ca8c8375115d23dbcaecc02ee4fd44071c2d3a29d4e84b3957f35bac +SIZE (xpi/firefox-31.5.3/ml.xpi) = 466254 +SHA256 (xpi/firefox-31.5.3/mr.xpi) = 236a38c9f6d64e776c5d5d023bf7d4aaf9bd2d84611ad892067d27cd88b95c38 +SIZE (xpi/firefox-31.5.3/mr.xpi) = 451292 +SHA256 (xpi/firefox-31.5.3/ms.xpi) = 6042929d2ae91d5d8d3189858c783293f1060326d24e2986326d8b35f7225fcc +SIZE (xpi/firefox-31.5.3/ms.xpi) = 436230 +SHA256 (xpi/firefox-31.5.3/nb-NO.xpi) = 1f492868d4bcade733d6310f84158ed7cbf2f9f5effa0e6b7fd21dedfd74a707 +SIZE (xpi/firefox-31.5.3/nb-NO.xpi) = 392006 +SHA256 (xpi/firefox-31.5.3/nl.xpi) = ec019d247524e16355eb9d9ad638d4a4600cc9295dd743f958dbe9062e1f4301 +SIZE (xpi/firefox-31.5.3/nl.xpi) = 390885 +SHA256 (xpi/firefox-31.5.3/nn-NO.xpi) = ebd6f5f61da262fa77a9ad1e19378c946428c31b28408cf91af1ce2afedd81ad +SIZE (xpi/firefox-31.5.3/nn-NO.xpi) = 386281 +SHA256 (xpi/firefox-31.5.3/or.xpi) = 783c59aa7382ea1665885eee0a91c0b5922cee0aba49d4c9d84ca9e4e2c43866 +SIZE (xpi/firefox-31.5.3/or.xpi) = 464749 +SHA256 (xpi/firefox-31.5.3/pa-IN.xpi) = 45b18d42502571b7a02a852becb30687313049ac44065c772c0c32670870f799 +SIZE (xpi/firefox-31.5.3/pa-IN.xpi) = 439326 +SHA256 (xpi/firefox-31.5.3/pl.xpi) = 0223bbcf8f113d41d50c813e1a69a3c72cb7a271932a2706fca68d84bbb5ba12 +SIZE (xpi/firefox-31.5.3/pl.xpi) = 374746 +SHA256 (xpi/firefox-31.5.3/pt-BR.xpi) = 4ad99d2a91cb6955961a784c7657fda77a0fd7679a69f51fe3bcf2ebfb55645f +SIZE (xpi/firefox-31.5.3/pt-BR.xpi) = 405564 +SHA256 (xpi/firefox-31.5.3/pt-PT.xpi) = dcbfe66c39f0b72016e63852fd913c46bb57b9aef87d294105dfb68b348ed705 +SIZE (xpi/firefox-31.5.3/pt-PT.xpi) = 386344 +SHA256 (xpi/firefox-31.5.3/rm.xpi) = 12ba0e246b3c9ba2d3812f99fc50442009082f4b3fe82dacee4681320b5ff7c6 +SIZE (xpi/firefox-31.5.3/rm.xpi) = 399285 +SHA256 (xpi/firefox-31.5.3/ro.xpi) = 7d4f546fa2fdd3b68478a30f46eed7dc214cd97feb58cd1a1c88ff9471b21ae0 +SIZE (xpi/firefox-31.5.3/ro.xpi) = 439387 +SHA256 (xpi/firefox-31.5.3/ru.xpi) = 5affe9b2ecb0ad0fd315f76f2c42d9406a16162fadc81d4ca61f65bc93a91184 +SIZE (xpi/firefox-31.5.3/ru.xpi) = 367898 +SHA256 (xpi/firefox-31.5.3/si.xpi) = 891e34f1ab442b205b58bc81b9a97e2cf90df517b214605af6097dc0e93d11a3 +SIZE (xpi/firefox-31.5.3/si.xpi) = 463223 +SHA256 (xpi/firefox-31.5.3/sk.xpi) = be6fcf95cf5d8f4d28a7077998041f1f0d5af5884a13b49f839097cb1f77087b +SIZE (xpi/firefox-31.5.3/sk.xpi) = 413802 +SHA256 (xpi/firefox-31.5.3/sl.xpi) = d0c046dda9fc22d17327aeacb6322948122630cd9cffb742acde0726a8024ca0 +SIZE (xpi/firefox-31.5.3/sl.xpi) = 387134 +SHA256 (xpi/firefox-31.5.3/son.xpi) = fd0f959dc5fc77eabdecb63fa692ed11323d251b04e1992f85293b0db756e28e +SIZE (xpi/firefox-31.5.3/son.xpi) = 395147 +SHA256 (xpi/firefox-31.5.3/sq.xpi) = 085334884e43e28b6e83ab74cf17cd99898a7e52044ae29ce529e58ed21fbe9d +SIZE (xpi/firefox-31.5.3/sq.xpi) = 431136 +SHA256 (xpi/firefox-31.5.3/sr.xpi) = 4382012d1cd1772d7669bbea502429323fc84ad404266e2ac497f345e3622a72 +SIZE (xpi/firefox-31.5.3/sr.xpi) = 425902 +SHA256 (xpi/firefox-31.5.3/sv-SE.xpi) = f2dd74455331ad9949b96b4fa151e887a7e22e46dbd7e7e1f969c32eb011ec59 +SIZE (xpi/firefox-31.5.3/sv-SE.xpi) = 399025 +SHA256 (xpi/firefox-31.5.3/ta.xpi) = 65ca70ae396b00b55be7d52140bdc327c4b96a6c0940242681c47b91fb26ff49 +SIZE (xpi/firefox-31.5.3/ta.xpi) = 447685 +SHA256 (xpi/firefox-31.5.3/te.xpi) = 1ba48ffc9eb5137b4af248697356908cc07c407be36698e4f3ff971d89bca56d +SIZE (xpi/firefox-31.5.3/te.xpi) = 462588 +SHA256 (xpi/firefox-31.5.3/th.xpi) = 0797dfcc109090a6361365739195f2021efc81ccef2243a87bd380ceb9580a04 *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@FreeBSD.ORG Fri Mar 27 06:09:36 2015 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A933CAA; Fri, 27 Mar 2015 06:09:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 0AD5C97E; Fri, 27 Mar 2015 06:09:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2R69Z8C045895; Fri, 27 Mar 2015 06:09:35 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2R69YF5045886; Fri, 27 Mar 2015 06:09:34 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201503270609.t2R69YF5045886@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Fri, 27 Mar 2015 06:09:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r382364 - in branches/2015Q1/devel: jenkins 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.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Mar 2015 06:09:36 -0000 Author: lwhsu Date: Fri Mar 27 06:09:33 2015 New Revision: 382364 URL: https://svnweb.freebsd.org/changeset/ports/382364 QAT: https://qat.redports.org/buildarchive/r382364/ Log: MFH: r382071 - Update to 1.606 Security: 22dc4a22-d1e5-11e4-879c-00e0814cab4e MFH: r382084 devel/jenkins-lts: Update to 1.596.2 Security: 22dc4a22-d1e5-11e4-879c-00e0814cab4e Approved by: ports-secteam (delphij) Modified: branches/2015Q1/devel/jenkins-lts/Makefile branches/2015Q1/devel/jenkins-lts/distinfo branches/2015Q1/devel/jenkins/Makefile branches/2015Q1/devel/jenkins/distinfo Directory Properties: branches/2015Q1/ (props changed) Modified: branches/2015Q1/devel/jenkins-lts/Makefile ============================================================================== --- branches/2015Q1/devel/jenkins-lts/Makefile Fri Mar 27 05:51:26 2015 (r382363) +++ branches/2015Q1/devel/jenkins-lts/Makefile Fri Mar 27 06:09:33 2015 (r382364) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 1.596.1 +PORTVERSION= 1.596.2 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war-stable/${PORTVERSION}/ PKGNAMESUFFIX= -lts Modified: branches/2015Q1/devel/jenkins-lts/distinfo ============================================================================== --- branches/2015Q1/devel/jenkins-lts/distinfo Fri Mar 27 05:51:26 2015 (r382363) +++ branches/2015Q1/devel/jenkins-lts/distinfo Fri Mar 27 06:09:33 2015 (r382364) @@ -1,2 +1,2 @@ -SHA256 (jenkins/1.596.1/jenkins.war) = 7ef24648ba0bdf7562034d467687afb2b7e7d168d65b61a2c4242bb7103351ec -SIZE (jenkins/1.596.1/jenkins.war) = 68552101 +SHA256 (jenkins/1.596.2/jenkins.war) = 769fee082d420819f0113d5271be98004d3f3227d98c4e445f6e5f60dde6de37 +SIZE (jenkins/1.596.2/jenkins.war) = 68553541 Modified: branches/2015Q1/devel/jenkins/Makefile ============================================================================== --- branches/2015Q1/devel/jenkins/Makefile Fri Mar 27 05:51:26 2015 (r382363) +++ branches/2015Q1/devel/jenkins/Makefile Fri Mar 27 06:09:33 2015 (r382364) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 1.600 +PORTVERSION= 1.606 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: branches/2015Q1/devel/jenkins/distinfo ============================================================================== --- branches/2015Q1/devel/jenkins/distinfo Fri Mar 27 05:51:26 2015 (r382363) +++ branches/2015Q1/devel/jenkins/distinfo Fri Mar 27 06:09:33 2015 (r382364) @@ -1,2 +1,2 @@ -SHA256 (jenkins/1.600/jenkins.war) = 9b7d9d1fd6dce1077599a31468b1ef2ebe7b849f6d2f52f943541b944d9c29f9 -SIZE (jenkins/1.600/jenkins.war) = 68808007 +SHA256 (jenkins/1.606/jenkins.war) = d950630af9be9a84a1f6b34d6bab5a0bdc4eba7cc61c81a69074dcb57a487953 +SIZE (jenkins/1.606/jenkins.war) = 69023294 From owner-svn-ports-branches@FreeBSD.ORG Fri Mar 27 06:59:35 2015 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDE111CD; Fri, 27 Mar 2015 06:59:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 CE480DB6; Fri, 27 Mar 2015 06:59:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2R6xZsW069041; Fri, 27 Mar 2015 06:59:35 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2R6xWvp069031; Fri, 27 Mar 2015 06:59:32 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201503270659.t2R6xWvp069031@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Fri, 27 Mar 2015 06:59:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r382367 - in branches/2015Q1/www: py-django py-django-devel py-django14 py-django16 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.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Mar 2015 06:59:36 -0000 Author: lwhsu Date: Fri Mar 27 06:59:32 2015 New Revision: 382367 URL: https://svnweb.freebsd.org/changeset/ports/382367 QAT: https://qat.redports.org/buildarchive/r382367/ Log: MFH: r382362 - Update for CVE-2015-2316 and CVE-2015-2317 PR: 198911 Submitted by: Sevan Janiyan Security: 62287f51-d43d-11e4-879c-00e0814cab4e Approved by: ports-secteam (delphij) Modified: branches/2015Q1/www/py-django-devel/Makefile branches/2015Q1/www/py-django-devel/distinfo branches/2015Q1/www/py-django/Makefile branches/2015Q1/www/py-django/distinfo branches/2015Q1/www/py-django14/Makefile branches/2015Q1/www/py-django14/distinfo branches/2015Q1/www/py-django16/Makefile branches/2015Q1/www/py-django16/distinfo Directory Properties: branches/2015Q1/ (props changed) Modified: branches/2015Q1/www/py-django-devel/Makefile ============================================================================== --- branches/2015Q1/www/py-django-devel/Makefile Fri Mar 27 06:51:24 2015 (r382366) +++ branches/2015Q1/www/py-django-devel/Makefile Fri Mar 27 06:59:32 2015 (r382367) @@ -14,14 +14,14 @@ COMMENT= High-level Python Web framework LICENSE= BSD3CLAUSE -SNAPSHOTDATE= 20150124 +SNAPSHOTDATE= 20150326 USES= cpe gettext python USE_GITHUB= yes USE_PYTHON= autoplist distutils GH_ACCOUNT= ${PORTNAME} -GH_TAGNAME= f8e4e4a +GH_TAGNAME= 3e64f3d GH_COMMIT= ${GH_TAGNAME} CONFLICTS= py2[0-9]-django-[0-9]* @@ -35,8 +35,7 @@ OPTIONS_GROUP= DATABASE OPTIONS_GROUP_DATABASE= PGSQL MYSQL SQLITE HTMLDOCS_DESC= Install HTML documentation (requires Sphinx) -PLIST_FILES= man/man1/django-admin.1.gz \ - man/man1/gather_profile_stats.1.gz +PLIST_FILES= man/man1/django-admin.1.gz PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:${PORTSDIR}/databases/py-psycopg2 MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:${PORTSDIR}/databases/py-MySQLdb Modified: branches/2015Q1/www/py-django-devel/distinfo ============================================================================== --- branches/2015Q1/www/py-django-devel/distinfo Fri Mar 27 06:51:24 2015 (r382366) +++ branches/2015Q1/www/py-django-devel/distinfo Fri Mar 27 06:59:32 2015 (r382367) @@ -1,2 +1,2 @@ -SHA256 (python/Django-20150124.tar.gz) = 439d887de4dcceacd88e12779388270a1f654a650db4cc85ddfd1e130b2d0fb4 -SIZE (python/Django-20150124.tar.gz) = 7438215 +SHA256 (python/Django-20150326.tar.gz) = 7e1cbf533d845a572b3579eb04d48f38a274992936a2d22ab686c5c2a25bdb5e +SIZE (python/Django-20150326.tar.gz) = 7482543 Modified: branches/2015Q1/www/py-django/Makefile ============================================================================== --- branches/2015Q1/www/py-django/Makefile Fri Mar 27 06:51:24 2015 (r382366) +++ branches/2015Q1/www/py-django/Makefile Fri Mar 27 06:59:32 2015 (r382367) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django -PORTVERSION= 1.7.3 +PORTVERSION= 1.7.7 CATEGORIES= www python MASTER_SITES= https://www.djangoproject.com/m/releases/${PORTVERSION}/ \ CHEESESHOP Modified: branches/2015Q1/www/py-django/distinfo ============================================================================== --- branches/2015Q1/www/py-django/distinfo Fri Mar 27 06:51:24 2015 (r382366) +++ branches/2015Q1/www/py-django/distinfo Fri Mar 27 06:59:32 2015 (r382367) @@ -1,2 +1,2 @@ -SHA256 (python/Django-1.7.3.tar.gz) = f226fb8aa438456968d403f6739de1cf2dad128db86f66ee2b41dfebe3645c5b -SIZE (python/Django-1.7.3.tar.gz) = 7589559 +SHA256 (python/Django-1.7.7.tar.gz) = 4816f892063569ca9a77584fa23cb4995c1b3b954ef875102a8219229cbd2e33 +SIZE (python/Django-1.7.7.tar.gz) = 7603286 Modified: branches/2015Q1/www/py-django14/Makefile ============================================================================== --- branches/2015Q1/www/py-django14/Makefile Fri Mar 27 06:51:24 2015 (r382366) +++ branches/2015Q1/www/py-django14/Makefile Fri Mar 27 06:59:32 2015 (r382367) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django -PORTVERSION= 1.4.18 +PORTVERSION= 1.4.20 CATEGORIES= www python MASTER_SITES= https://www.djangoproject.com/m/releases/${PORTVERSION:R}/ \ CHEESESHOP Modified: branches/2015Q1/www/py-django14/distinfo ============================================================================== --- branches/2015Q1/www/py-django14/distinfo Fri Mar 27 06:51:24 2015 (r382366) +++ branches/2015Q1/www/py-django14/distinfo Fri Mar 27 06:59:32 2015 (r382367) @@ -1,2 +1,2 @@ -SHA256 (python/Django-1.4.18.tar.gz) = bfd326fe490d03a2a86466fcb1ac335e7d8d58bc498cfe2311b1d751b515521f -SIZE (python/Django-1.4.18.tar.gz) = 7876896 +SHA256 (python/Django-1.4.20.tar.gz) = 58ac719464c4c8b13d664ded6770450602528bf4c36f9fd5daabdae8d410ebb1 +SIZE (python/Django-1.4.20.tar.gz) = 7877794 Modified: branches/2015Q1/www/py-django16/Makefile ============================================================================== --- branches/2015Q1/www/py-django16/Makefile Fri Mar 27 06:51:24 2015 (r382366) +++ branches/2015Q1/www/py-django16/Makefile Fri Mar 27 06:59:32 2015 (r382367) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django -PORTVERSION= 1.6.10 +PORTVERSION= 1.6.11 CATEGORIES= www python MASTER_SITES= https://www.djangoproject.com/m/releases/${PORTVERSION}/ \ CHEESESHOP Modified: branches/2015Q1/www/py-django16/distinfo ============================================================================== --- branches/2015Q1/www/py-django16/distinfo Fri Mar 27 06:51:24 2015 (r382366) +++ branches/2015Q1/www/py-django16/distinfo Fri Mar 27 06:59:32 2015 (r382367) @@ -1,2 +1,2 @@ -SHA256 (python/Django-1.6.10.tar.gz) = 54eb59ce785401c7d1fdeed245efce597e90f811d6a20f6b5c6931c0049d63a6 -SIZE (python/Django-1.6.10.tar.gz) = 6760152 +SHA256 (python/Django-1.6.11.tar.gz) = 7e50e573e484435873b3515d7982d80093b2695aba17fd0ff024307454dc3a56 +SIZE (python/Django-1.6.11.tar.gz) = 6764000 From owner-svn-ports-branches@FreeBSD.ORG Fri Mar 27 09:44:07 2015 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9794338; Fri, 27 Mar 2015 09:44:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 B373526F; Fri, 27 Mar 2015 09:44:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2R9i7Kq052314; Fri, 27 Mar 2015 09:44:07 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2R9i6Nv052308; Fri, 27 Mar 2015 09:44:06 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201503270944.t2R9i6Nv052308@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 27 Mar 2015 09:44:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r382386 - in branches/2015Q1/graphics: tiff tiffgt 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.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Mar 2015 09:44:07 -0000 Author: antoine Date: Fri Mar 27 09:44:05 2015 New Revision: 382386 URL: https://svnweb.freebsd.org/changeset/ports/382386 QAT: https://qat.redports.org/buildarchive/r382386/ Log: MFH: r382356 - Update to 4.0.4beta - Add CPE information PR: 198862 Security: CVE-2014-8127 CVE-2014-8128 CVE-2014-8129 CVE-2014-8130 CVE-2014-9655 CVE-2015-1547 Modified: branches/2015Q1/graphics/tiff/Makefile branches/2015Q1/graphics/tiff/distinfo branches/2015Q1/graphics/tiff/pkg-plist branches/2015Q1/graphics/tiffgt/Makefile branches/2015Q1/graphics/tiffgt/distinfo Directory Properties: branches/2015Q1/ (props changed) Modified: branches/2015Q1/graphics/tiff/Makefile ============================================================================== --- branches/2015Q1/graphics/tiff/Makefile Fri Mar 27 09:42:22 2015 (r382385) +++ branches/2015Q1/graphics/tiff/Makefile Fri Mar 27 09:44:05 2015 (r382386) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tiff -PORTVERSION= 4.0.3 -PORTREVISION= 5 +DISTVERSION= 4.0.4beta CATEGORIES= graphics MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \ http://download.osgeo.org/libtiff/ @@ -17,7 +16,10 @@ LICENSE_FILE= ${WRKSRC}/COPYRIGHT LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ libjbig.so:${PORTSDIR}/graphics/jbigkit -USES= libtool +USES= cpe libtool +CPE_PRODUCT= libtiff +CPE_VERSION= ${DISTVERSION:C/[a-z]+//} +CPE_UPDATE= ${DISTVERSION:C/[0-9.]+//} USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-jpeg-include-dir=${LOCALBASE}/include \ Modified: branches/2015Q1/graphics/tiff/distinfo ============================================================================== --- branches/2015Q1/graphics/tiff/distinfo Fri Mar 27 09:42:22 2015 (r382385) +++ branches/2015Q1/graphics/tiff/distinfo Fri Mar 27 09:44:05 2015 (r382386) @@ -1,2 +1,2 @@ -SHA256 (tiff-4.0.3.tar.gz) = ea1aebe282319537fb2d4d7805f478dd4e0e05c33d0928baba76a7c963684872 -SIZE (tiff-4.0.3.tar.gz) = 2051630 +SHA256 (tiff-4.0.4beta.tar.gz) = 5bd6c8e9be4ec318f6beb0c3f28b9ee31bd8b615195a00e0acc3eb5d08b26c1b +SIZE (tiff-4.0.4beta.tar.gz) = 2098962 Modified: branches/2015Q1/graphics/tiff/pkg-plist ============================================================================== --- branches/2015Q1/graphics/tiff/pkg-plist Fri Mar 27 09:42:22 2015 (r382385) +++ branches/2015Q1/graphics/tiff/pkg-plist Fri Mar 27 09:44:05 2015 (r382386) @@ -30,11 +30,11 @@ lib/libtiff.a lib/libtiff.so lib/libtiff.so.4 lib/libtiff.so.5 -lib/libtiff.so.5.2.0 +lib/libtiff.so.5.2.1 lib/libtiffxx.a lib/libtiffxx.so lib/libtiffxx.so.5 -lib/libtiffxx.so.5.2.0 +lib/libtiffxx.so.5.2.1 libdata/pkgconfig/libtiff-4.pc man/man1/bmp2tiff.1.gz man/man1/fax2ps.1.gz @@ -301,3 +301,5 @@ man/man3/libtiff.3tiff.gz %%PORTDOCS%%%%DOCSDIR%%/v4.0.0.html %%PORTDOCS%%%%DOCSDIR%%/v4.0.1.html %%PORTDOCS%%%%DOCSDIR%%/v4.0.2.html +%%PORTDOCS%%%%DOCSDIR%%/v4.0.3.html +%%PORTDOCS%%%%DOCSDIR%%/v4.0.4beta.html Modified: branches/2015Q1/graphics/tiffgt/Makefile ============================================================================== --- branches/2015Q1/graphics/tiffgt/Makefile Fri Mar 27 09:42:22 2015 (r382385) +++ branches/2015Q1/graphics/tiffgt/Makefile Fri Mar 27 09:44:05 2015 (r382386) @@ -1,12 +1,11 @@ # $FreeBSD$ PORTNAME= tiffgt -PORTVERSION= 4.0.3 -PORTREVISION= 3 +DISTVERSION= 4.0.4beta CATEGORIES= graphics MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \ http://download.osgeo.org/libtiff/ -DISTNAME= tiff-${PORTVERSION} +DISTNAME= tiff-${DISTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= X11 Tools for working with TIFF images @@ -18,7 +17,10 @@ LIB_DEPENDS= libjpeg.so:${PORTSDIR}/grap libjbig.so:${PORTSDIR}/graphics/jbigkit \ libtiff.so:${PORTSDIR}/${PKGCATEGORY}/tiff -USES= libtool +USES= cpe libtool +CPE_PRODUCT= libtiff +CPE_VERSION= ${DISTVERSION:C/[a-z]+//} +CPE_UPDATE= ${DISTVERSION:C/[0-9.]+//} USE_XORG= sm ice xmu xi x11 USE_GL= glut glu gl USE_LDCONFIG= yes Modified: branches/2015Q1/graphics/tiffgt/distinfo ============================================================================== --- branches/2015Q1/graphics/tiffgt/distinfo Fri Mar 27 09:42:22 2015 (r382385) +++ branches/2015Q1/graphics/tiffgt/distinfo Fri Mar 27 09:44:05 2015 (r382386) @@ -1,2 +1,2 @@ -SHA256 (tiff-4.0.3.tar.gz) = ea1aebe282319537fb2d4d7805f478dd4e0e05c33d0928baba76a7c963684872 -SIZE (tiff-4.0.3.tar.gz) = 2051630 +SHA256 (tiff-4.0.4beta.tar.gz) = 5bd6c8e9be4ec318f6beb0c3f28b9ee31bd8b615195a00e0acc3eb5d08b26c1b +SIZE (tiff-4.0.4beta.tar.gz) = 2098962