From owner-svn-ports-branches@freebsd.org Sun Mar 6 17:59:04 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63A92AB6143; Sun, 6 Mar 2016 17:59:04 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F0C3D4C; Sun, 6 Mar 2016 17:59:04 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u26Hx399070695; Sun, 6 Mar 2016 17:59:03 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u26Hx3GJ070692; Sun, 6 Mar 2016 17:59:03 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201603061759.u26Hx3GJ070692@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 6 Mar 2016 17:59:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410471 - branches/2016Q1/multimedia/libass 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.21 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, 06 Mar 2016 17:59:04 -0000 Author: riggs Date: Sun Mar 6 17:59:02 2016 New Revision: 410471 URL: https://svnweb.freebsd.org/changeset/ports/410471 Log: MFH: r410448 Update to upstream version 0.13.2; enable ASM by default on i386 As verified by submitter of [1], ASM optimised routines now work on i386 out of the box, hence enable by default. This release contains runtime bugfixes (from changelog): - Fix an issue with the new duplicate checking, which could lead to missing subtitles after seeking. - Fix a crash with CoreText under specific circumstances While on it: - Use default description for ASM from bsd.options.desc.mk PR: 207723 [1] Submitted by: sasamotikomi@gmail.com Reviewed by: riggs Approved by: ports-secteam (feld) Modified: branches/2016Q1/multimedia/libass/Makefile branches/2016Q1/multimedia/libass/distinfo branches/2016Q1/multimedia/libass/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/multimedia/libass/Makefile ============================================================================== --- branches/2016Q1/multimedia/libass/Makefile Sun Mar 6 17:38:22 2016 (r410470) +++ branches/2016Q1/multimedia/libass/Makefile Sun Mar 6 17:59:02 2016 (r410471) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libass -PORTVERSION= 0.12.1 -PORTREVISION= 1 +PORTVERSION= 0.13.2 CATEGORIES= multimedia devel MAINTAINER= multimedia@FreeBSD.org @@ -11,7 +10,8 @@ COMMENT= Portable ASS/SSA subtitle rende LICENSE= ISCL LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ - libfribidi.so:${PORTSDIR}/converters/fribidi + libfribidi.so:${PORTSDIR}/converters/fribidi \ + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME} @@ -22,22 +22,15 @@ USE_LDCONFIG= yes PATHFIX_MAKEFILEIN=Makefile.am INSTALL_TARGET= install-strip -OPTIONS_DEFINE= ENCA FONTCONFIG HARFBUZZ -OPTIONS_DEFAULT=ENCA FONTCONFIG HARFBUZZ +OPTIONS_DEFINE= HARFBUZZ +OPTIONS_DEFAULT=HARFBUZZ OPTIONS_DEFINE_amd64= ASM OPTIONS_DEFINE_i386= ASM OPTIONS_DEFAULT_amd64= ASM +OPTIONS_DEFAULT_i386= ASM ASM_BUILD_DEPENDS=${LOCALBASE}/bin/yasm:${PORTSDIR}/devel/yasm ASM_CONFIGURE_ENABLE=asm -ASM_DESC?= Use optimized ASM routines on x86/amd64 - -ENCA_LIB_DEPENDS=libenca.so:${PORTSDIR}/converters/enca -ENCA_CONFIGURE_ENABLE=enca -ENCA_DESC?= Charset conversion via enca - -FONTCONFIG_LIB_DEPENDS=libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig -FONTCONFIG_CONFIGURE_ENABLE=fontconfig HARFBUZZ_LIB_DEPENDS=libharfbuzz.so:${PORTSDIR}/print/harfbuzz HARFBUZZ_CONFIGURE_ENABLE=harfbuzz Modified: branches/2016Q1/multimedia/libass/distinfo ============================================================================== --- branches/2016Q1/multimedia/libass/distinfo Sun Mar 6 17:38:22 2016 (r410470) +++ branches/2016Q1/multimedia/libass/distinfo Sun Mar 6 17:59:02 2016 (r410471) @@ -1,2 +1,2 @@ -SHA256 (libass-libass-0.12.1_GH0.tar.xz) = 5a745bd37feb8b1eb6c88adff8dbc244abf016dcc01a750901089319aa77e1a6 -SIZE (libass-libass-0.12.1_GH0.tar.xz) = 127966 +SHA256 (libass-libass-0.13.2_GH0.tar.xz) = f5814511e2466480eb2d4a8264074c465444f10d688c3f5b2e315e23120b6fe8 +SIZE (libass-libass-0.13.2_GH0.tar.xz) = 164397 Modified: branches/2016Q1/multimedia/libass/pkg-plist ============================================================================== --- branches/2016Q1/multimedia/libass/pkg-plist Sun Mar 6 17:38:22 2016 (r410470) +++ branches/2016Q1/multimedia/libass/pkg-plist Sun Mar 6 17:59:02 2016 (r410471) @@ -3,5 +3,5 @@ include/ass/ass_types.h lib/libass.a lib/libass.so lib/libass.so.5 -lib/libass.so.5.1.0 +lib/libass.so.5.3.0 libdata/pkgconfig/libass.pc From owner-svn-ports-branches@freebsd.org Sun Mar 6 18:30:24 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28F9CAB6F6F; Sun, 6 Mar 2016 18:30:24 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0405712B3; Sun, 6 Mar 2016 18:30:23 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u26IUNG5080498; Sun, 6 Mar 2016 18:30:23 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u26IUMJv080495; Sun, 6 Mar 2016 18:30:22 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201603061830.u26IUMJv080495@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 6 Mar 2016 18:30:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410475 - in branches/2016Q1/devel/websvn: . 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.21 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, 06 Mar 2016 18:30:24 -0000 Author: rakuco Date: Sun Mar 6 18:30:22 2016 New Revision: 410475 URL: https://svnweb.freebsd.org/changeset/ports/410475 Log: MFH: r410474 Add patches to fix CVE-2013-6892 and CVE-2016-2511. PR: 207740 Approved by: ports-secteam (feld) Added: branches/2016Q1/devel/websvn/files/patch-CVE-2013-6892 - copied unchanged from r410474, head/devel/websvn/files/patch-CVE-2013-6892 branches/2016Q1/devel/websvn/files/patch-CVE-2016-2511 - copied unchanged from r410474, head/devel/websvn/files/patch-CVE-2016-2511 Modified: branches/2016Q1/devel/websvn/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/websvn/Makefile ============================================================================== --- branches/2016Q1/devel/websvn/Makefile Sun Mar 6 18:26:38 2016 (r410474) +++ branches/2016Q1/devel/websvn/Makefile Sun Mar 6 18:30:22 2016 (r410475) @@ -3,6 +3,7 @@ PORTNAME= websvn PORTVERSION= 2.3.3 +PORTREVISION= 1 CATEGORIES= devel www MASTER_SITES= http://websvn.tigris.org/files/documents/1380/49056/ Copied: branches/2016Q1/devel/websvn/files/patch-CVE-2013-6892 (from r410474, head/devel/websvn/files/patch-CVE-2013-6892) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/devel/websvn/files/patch-CVE-2013-6892 Sun Mar 6 18:30:22 2016 (r410475, copy of r410474, head/devel/websvn/files/patch-CVE-2013-6892) @@ -0,0 +1,37 @@ +Arbitrary files with a known path can be accessed in websvn by committing a +symlink to a repository and then downloading the file (using the download +link). + +Author: Thijs Kinkhorst + +https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775682 +--- dl.php.orig 2011-06-27 09:02:52 UTC ++++ dl.php +@@ -137,6 +137,18 @@ if ($rep) { + exit(0); + } + ++ // For security reasons, disallow direct downloads of filenames that ++ // are a symlink, since they may be a symlink to anywhere (/etc/passwd) ++ // Deciding whether the symlink is relative and legal within the ++ // repository would be nice but seems to error prone at this moment. ++ if ( is_link($tempDir.DIRECTORY_SEPARATOR.$archiveName) ) { ++ header('HTTP/1.x 500 Internal Server Error', true, 500); ++ error_log('to be downloaded file is symlink, aborting: '.$archiveName); ++ print 'Download of symlinks disallowed: "'.xml_entities($archiveName).'".'; ++ removeDirectory($tempDir); ++ exit(0); ++ } ++ + // Set timestamp of exported directory (and subdirectories) to timestamp of + // the revision so every archive of a given revision has the same timestamp. + $revDate = $logEntry->date; +@@ -180,7 +192,7 @@ if ($rep) { + $downloadMimeType = 'application/x-zip'; + $downloadArchive .= '.zip'; + // Create zip file +- $cmd = $config->zip.' -r '.quote($downloadArchive).' '.quote($archiveName); ++ $cmd = $config->zip.' --symlinks -r '.quote($downloadArchive).' '.quote($archiveName); + execCommand($cmd, $retcode); + if ($retcode != 0) { + error_log('Unable to call zip command: '.$cmd); Copied: branches/2016Q1/devel/websvn/files/patch-CVE-2016-2511 (from r410474, head/devel/websvn/files/patch-CVE-2016-2511) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/devel/websvn/files/patch-CVE-2016-2511 Sun Mar 6 18:30:22 2016 (r410475, copy of r410474, head/devel/websvn/files/patch-CVE-2016-2511) @@ -0,0 +1,12 @@ +Obtained from: Debian +--- include/setup.php.orig 2011-06-27 09:12:51 UTC ++++ include/setup.php +@@ -467,7 +467,7 @@ $vars['indexurl'] = $config->getURL('', + $vars['validationurl'] = getFullURL($_SERVER['SCRIPT_NAME']).'?'.buildQuery($queryParams + array('template' => $template, 'language' => $language), '%26'); + + // To avoid a possible XSS exploit, need to clean up the passed-in path first +-$path = !empty($_REQUEST['path']) ? $_REQUEST['path'] : null; ++$path = !empty($_REQUEST['path']) ? escape($_REQUEST['path']) : null; + if ($path === null || $path === '') + $path = '/'; + $vars['safepath'] = escape($path); From owner-svn-ports-branches@freebsd.org Mon Mar 7 15:38:19 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C271AC2558; Mon, 7 Mar 2016 15:38:19 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4AD15DCC; Mon, 7 Mar 2016 15:38:19 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u27FcIkC066615; Mon, 7 Mar 2016 15:38:18 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u27FcIQJ066613; Mon, 7 Mar 2016 15:38:18 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603071538.u27FcIQJ066613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 7 Mar 2016 15:38:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410525 - branches/2016Q1/www/varnish4 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.21 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Mar 2016 15:38:19 -0000 Author: feld Date: Mon Mar 7 15:38:18 2016 New Revision: 410525 URL: https://svnweb.freebsd.org/changeset/ports/410525 Log: MFH: r410523 www/varnish4: Update to 4.1.2 Changelog: https://github.com/varnishcache/varnish-cache/blob/4.1/doc/changes.rst Approved by: ports-secteam (with hat) Modified: branches/2016Q1/www/varnish4/Makefile branches/2016Q1/www/varnish4/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/varnish4/Makefile ============================================================================== --- branches/2016Q1/www/varnish4/Makefile Mon Mar 7 15:37:38 2016 (r410524) +++ branches/2016Q1/www/varnish4/Makefile Mon Mar 7 15:38:18 2016 (r410525) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= varnish -PORTVERSION= 4.1.0 -PORTREVISION= 2 +PORTVERSION= 4.1.2 +PORTREVISION= 0 CATEGORIES= www MASTER_SITES= http://repo.varnish-cache.org/source/ PKGNAMESUFFIX= 4 Modified: branches/2016Q1/www/varnish4/distinfo ============================================================================== --- branches/2016Q1/www/varnish4/distinfo Mon Mar 7 15:37:38 2016 (r410524) +++ branches/2016Q1/www/varnish4/distinfo Mon Mar 7 15:38:18 2016 (r410525) @@ -1,2 +1,2 @@ -SHA256 (varnish-4.1.0.tar.gz) = 4a6ea08e30b62fbf25f884a65f0d8af42e9cc9d25bf70f45ae4417c4f1c99017 -SIZE (varnish-4.1.0.tar.gz) = 1990932 +SHA256 (varnish-4.1.2.tar.gz) = 9728da944d28eb5be90e7ab6799c2c4c831ef4df5e5154537eb7f2e5d5e348c4 +SIZE (varnish-4.1.2.tar.gz) = 2030846 From owner-svn-ports-branches@freebsd.org Mon Mar 7 18:02:34 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22F6BAC381E; Mon, 7 Mar 2016 18:02:34 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CF402A49; Mon, 7 Mar 2016 18:02:33 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u27I2Wbm014761; Mon, 7 Mar 2016 18:02:32 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u27I2WFl014759; Mon, 7 Mar 2016 18:02:32 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201603071802.u27I2WFl014759@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Mon, 7 Mar 2016 18:02:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410539 - branches/2016Q1/security/putty 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.21 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Mar 2016 18:02:34 -0000 Author: mandree Date: Mon Mar 7 18:02:32 2016 New Revision: 410539 URL: https://svnweb.freebsd.org/changeset/ports/410539 Log: MFH: r410527 Security upgrade to new upstream release 0.67. Unix-relevant changes: * Security fix: a buffer overrun in the old-style SCP protocol when receiving the header of each file downloaded from the server is fixed. (CVE-2016-2563) * Assorted other robustness fixes for crashes and memory leaks. Security: 7f0fbb30-e462-11e5-a3f3-080027ef73ec Security: CVE-2016-2563 Approved by: ports-secteam (feld) Modified: branches/2016Q1/security/putty/Makefile branches/2016Q1/security/putty/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/security/putty/Makefile ============================================================================== --- branches/2016Q1/security/putty/Makefile Mon Mar 7 18:01:03 2016 (r410538) +++ branches/2016Q1/security/putty/Makefile Mon Mar 7 18:02:32 2016 (r410539) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= putty -PORTVERSION= 0.66 -PORTREVISION= 1 +PORTVERSION= 0.67 CATEGORIES= security ipv6 MASTER_SITES= http://the.earth.li/~sgtatham/putty/${PORTVERSION}/ \ ftp://ftp.chiark.greenend.org.uk/users/sgtatham/putty-latest/ @@ -44,7 +43,8 @@ MAKE_ARGS+= GTK_CONFIG=: .if ${PORT_OPTIONS:MGSSAPI} _COMPAT= -DSTATIC_GSSAPI -USES+= gssapi:mit +USES+= gssapi:base,flags +MAKE_ARGS+= KRB5CONFIG=$(KRB5CONFIG) .else _COMPAT= -DNO_GSSAPI .endif Modified: branches/2016Q1/security/putty/distinfo ============================================================================== --- branches/2016Q1/security/putty/distinfo Mon Mar 7 18:01:03 2016 (r410538) +++ branches/2016Q1/security/putty/distinfo Mon Mar 7 18:02:32 2016 (r410539) @@ -1,2 +1,2 @@ -SHA256 (putty-0.66.tar.gz) = fe7312f66c54865868b362f4b79bd1fbe7ce9e8b1fd504b04034182db1f32993 -SIZE (putty-0.66.tar.gz) = 1948323 +SHA256 (putty-0.67.tar.gz) = 80192458e8a46229de512afeca5c757dd8fce09606b3c992fbaeeee29b994a47 +SIZE (putty-0.67.tar.gz) = 1955547 From owner-svn-ports-branches@freebsd.org Mon Mar 7 19:45:47 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 30BDDAC30CF; Mon, 7 Mar 2016 19:45:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F3C40751; Mon, 7 Mar 2016 19:45:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u27JjkXK045420; Mon, 7 Mar 2016 19:45:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u27Jjibe045402; Mon, 7 Mar 2016 19:45:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201603071945.u27Jjibe045402@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 7 Mar 2016 19:45:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410542 - in branches/2016Q1: databases/rubygem-activemodel4 databases/rubygem-activerecord4 devel/rubygem-actionview devel/rubygem-activejob devel/rubygem-activesupport4 mail/rubygem-a... 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.21 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Mar 2016 19:45:47 -0000 Author: sunpoet Date: Mon Mar 7 19:45:43 2016 New Revision: 410542 URL: https://svnweb.freebsd.org/changeset/ports/410542 Log: MFH: r410430 r410431 r410432 r410433 r410434 r410435 r410436 r410437 r410438 - Update to 4.2.5.2 Changes: https://github.com/rails/rails/blob/4-2-stable/activesupport/CHANGELOG.md https://github.com/rails/rails/compare/v4.2.5.1...v4.2.5.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 4.2.5.2 Changes: https://github.com/rails/rails/blob/4-2-stable/activemodel/CHANGELOG.md https://github.com/rails/rails/compare/v4.2.5.1...v4.2.5.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 4.2.5.2 Changes: https://github.com/rails/rails/blob/4-2-stable/activerecord/CHANGELOG.md https://github.com/rails/rails/compare/v4.2.5.1...v4.2.5.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 4.2.5.2 Changes: https://github.com/rails/rails/blob/4-2-stable/activejob/CHANGELOG.md https://github.com/rails/rails/compare/v4.2.5.1...v4.2.5.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 4.2.5.2 Changes: https://github.com/rails/rails/blob/4-2-stable/actionview/CHANGELOG.md Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 4.2.5.2 Changes: https://github.com/rails/rails/blob/4-2-stable/actionpack/CHANGELOG.md https://github.com/rails/rails/compare/v4.2.5.1...v4.2.5.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 4.2.5.2 Changes: https://github.com/rails/rails/blob/4-2-stable/actionmailer/CHANGELOG.md https://github.com/rails/rails/compare/v4.2.5.1...v4.2.5.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 4.2.5.2 Changes: https://github.com/rails/rails/blob/4-2-stable/railties/CHANGELOG.md https://github.com/rails/rails/compare/v4.2.5.1...v4.2.5.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 4.2.5.2 Changes: https://github.com/rails/rails/commits/4-2-stable https://github.com/rails/rails/compare/v4.2.5.1...v4.2.5.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef Approved by: ports-secteam (feld) Modified: branches/2016Q1/databases/rubygem-activemodel4/Makefile branches/2016Q1/databases/rubygem-activemodel4/distinfo branches/2016Q1/databases/rubygem-activerecord4/Makefile branches/2016Q1/databases/rubygem-activerecord4/distinfo branches/2016Q1/devel/rubygem-actionview/Makefile branches/2016Q1/devel/rubygem-actionview/distinfo branches/2016Q1/devel/rubygem-activejob/Makefile branches/2016Q1/devel/rubygem-activejob/distinfo branches/2016Q1/devel/rubygem-activesupport4/Makefile branches/2016Q1/devel/rubygem-activesupport4/distinfo branches/2016Q1/mail/rubygem-actionmailer4/Makefile branches/2016Q1/mail/rubygem-actionmailer4/distinfo branches/2016Q1/www/rubygem-actionpack4/Makefile branches/2016Q1/www/rubygem-actionpack4/distinfo branches/2016Q1/www/rubygem-rails4/Makefile branches/2016Q1/www/rubygem-rails4/distinfo branches/2016Q1/www/rubygem-railties4/Makefile branches/2016Q1/www/rubygem-railties4/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/databases/rubygem-activemodel4/Makefile ============================================================================== --- branches/2016Q1/databases/rubygem-activemodel4/Makefile Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/databases/rubygem-activemodel4/Makefile Mon Mar 7 19:45:43 2016 (r410542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activemodel -PORTVERSION= 4.2.5.1 +PORTVERSION= 4.2.5.2 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 Modified: branches/2016Q1/databases/rubygem-activemodel4/distinfo ============================================================================== --- branches/2016Q1/databases/rubygem-activemodel4/distinfo Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/databases/rubygem-activemodel4/distinfo Mon Mar 7 19:45:43 2016 (r410542) @@ -1,2 +1,2 @@ -SHA256 (rubygem/activemodel-4.2.5.1.gem) = f714b5cdd57e8f6502c5c5bd7e517629977dbb9934dedf7e75360ac4b71a28ff -SIZE (rubygem/activemodel-4.2.5.1.gem) = 45568 +SHA256 (rubygem/activemodel-4.2.5.2.gem) = 09ce967be3086b34ae9fcbd919e714b2bdf72b8ab6e89b64aa74627267d93962 +SIZE (rubygem/activemodel-4.2.5.2.gem) = 45568 Modified: branches/2016Q1/databases/rubygem-activerecord4/Makefile ============================================================================== --- branches/2016Q1/databases/rubygem-activerecord4/Makefile Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/databases/rubygem-activerecord4/Makefile Mon Mar 7 19:45:43 2016 (r410542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activerecord -PORTVERSION= 4.2.5.1 +PORTVERSION= 4.2.5.2 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 Modified: branches/2016Q1/databases/rubygem-activerecord4/distinfo ============================================================================== --- branches/2016Q1/databases/rubygem-activerecord4/distinfo Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/databases/rubygem-activerecord4/distinfo Mon Mar 7 19:45:43 2016 (r410542) @@ -1,2 +1,2 @@ -SHA256 (rubygem/activerecord-4.2.5.1.gem) = 85d5eac30b4302afb586573c0f044df2e8fdeeeb05502b295833596f468c45e2 -SIZE (rubygem/activerecord-4.2.5.1.gem) = 330240 +SHA256 (rubygem/activerecord-4.2.5.2.gem) = c2b1b6a4c6b8542c2464b457dce4cac4915efcbd3d5acfba57102e58474c33f2 +SIZE (rubygem/activerecord-4.2.5.2.gem) = 330240 Modified: branches/2016Q1/devel/rubygem-actionview/Makefile ============================================================================== --- branches/2016Q1/devel/rubygem-actionview/Makefile Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/devel/rubygem-actionview/Makefile Mon Mar 7 19:45:43 2016 (r410542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionview -PORTVERSION= 4.2.5.1 +PORTVERSION= 4.2.5.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: branches/2016Q1/devel/rubygem-actionview/distinfo ============================================================================== --- branches/2016Q1/devel/rubygem-actionview/distinfo Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/devel/rubygem-actionview/distinfo Mon Mar 7 19:45:43 2016 (r410542) @@ -1,2 +1,2 @@ -SHA256 (rubygem/actionview-4.2.5.1.gem) = 5584f76f5db2bc9cea4d2cc969213e89f3bba404aaa9a07ef3fe760f207ee1b6 -SIZE (rubygem/actionview-4.2.5.1.gem) = 145408 +SHA256 (rubygem/actionview-4.2.5.2.gem) = e8ce01cf6cc822ec023a15a856a0fae0e078ebb232b95b722c23af4117d2d635 +SIZE (rubygem/actionview-4.2.5.2.gem) = 145408 Modified: branches/2016Q1/devel/rubygem-activejob/Makefile ============================================================================== --- branches/2016Q1/devel/rubygem-activejob/Makefile Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/devel/rubygem-activejob/Makefile Mon Mar 7 19:45:43 2016 (r410542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activejob -PORTVERSION= 4.2.5.1 +PORTVERSION= 4.2.5.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: branches/2016Q1/devel/rubygem-activejob/distinfo ============================================================================== --- branches/2016Q1/devel/rubygem-activejob/distinfo Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/devel/rubygem-activejob/distinfo Mon Mar 7 19:45:43 2016 (r410542) @@ -1,2 +1,2 @@ -SHA256 (rubygem/activejob-4.2.5.1.gem) = 4c1edb86e374eb4efafde43fab8a40ded8b5f841f86fc5f44f73ec70393dd2f5 -SIZE (rubygem/activejob-4.2.5.1.gem) = 19456 +SHA256 (rubygem/activejob-4.2.5.2.gem) = cecb9bbc55292dee064ca479990c6e50fa3e2273aac6722ce058d18c22383026 +SIZE (rubygem/activejob-4.2.5.2.gem) = 19456 Modified: branches/2016Q1/devel/rubygem-activesupport4/Makefile ============================================================================== --- branches/2016Q1/devel/rubygem-activesupport4/Makefile Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/devel/rubygem-activesupport4/Makefile Mon Mar 7 19:45:43 2016 (r410542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activesupport -PORTVERSION= 4.2.5.1 +PORTVERSION= 4.2.5.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 Modified: branches/2016Q1/devel/rubygem-activesupport4/distinfo ============================================================================== --- branches/2016Q1/devel/rubygem-activesupport4/distinfo Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/devel/rubygem-activesupport4/distinfo Mon Mar 7 19:45:43 2016 (r410542) @@ -1,2 +1,2 @@ -SHA256 (rubygem/activesupport-4.2.5.1.gem) = cd20d48479a755150816b3e46fbc9634345359039f8ac8fde89038ceffd6ef9b -SIZE (rubygem/activesupport-4.2.5.1.gem) = 330240 +SHA256 (rubygem/activesupport-4.2.5.2.gem) = 80ad345adf7e2b72c5d90753c0df91eacc34f4de02b34cfbf60bcf6c83483031 +SIZE (rubygem/activesupport-4.2.5.2.gem) = 330240 Modified: branches/2016Q1/mail/rubygem-actionmailer4/Makefile ============================================================================== --- branches/2016Q1/mail/rubygem-actionmailer4/Makefile Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/mail/rubygem-actionmailer4/Makefile Mon Mar 7 19:45:43 2016 (r410542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionmailer -PORTVERSION= 4.2.5.1 +PORTVERSION= 4.2.5.2 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 Modified: branches/2016Q1/mail/rubygem-actionmailer4/distinfo ============================================================================== --- branches/2016Q1/mail/rubygem-actionmailer4/distinfo Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/mail/rubygem-actionmailer4/distinfo Mon Mar 7 19:45:43 2016 (r410542) @@ -1,2 +1,2 @@ -SHA256 (rubygem/actionmailer-4.2.5.1.gem) = 96d0bb15dc567fd7531b83796530991ed540bfa62526da8b55ef5a3b8a43b6bb -SIZE (rubygem/actionmailer-4.2.5.1.gem) = 27136 +SHA256 (rubygem/actionmailer-4.2.5.2.gem) = 8cee5f2f1e58c8ada17cca696377443c0cbc9675df2b7eef97a04318876484b5 +SIZE (rubygem/actionmailer-4.2.5.2.gem) = 27136 Modified: branches/2016Q1/www/rubygem-actionpack4/Makefile ============================================================================== --- branches/2016Q1/www/rubygem-actionpack4/Makefile Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/www/rubygem-actionpack4/Makefile Mon Mar 7 19:45:43 2016 (r410542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionpack -PORTVERSION= 4.2.5.1 +PORTVERSION= 4.2.5.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 Modified: branches/2016Q1/www/rubygem-actionpack4/distinfo ============================================================================== --- branches/2016Q1/www/rubygem-actionpack4/distinfo Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/www/rubygem-actionpack4/distinfo Mon Mar 7 19:45:43 2016 (r410542) @@ -1,2 +1,2 @@ -SHA256 (rubygem/actionpack-4.2.5.1.gem) = bb737da7fe0b587b4545b4b4ee90093d9e7b1a83988319c2721b7b27796c508f -SIZE (rubygem/actionpack-4.2.5.1.gem) = 186368 +SHA256 (rubygem/actionpack-4.2.5.2.gem) = a22e1818f06b707433c9a76867932929751b5d57edbeacc258635a7b23da12cf +SIZE (rubygem/actionpack-4.2.5.2.gem) = 186368 Modified: branches/2016Q1/www/rubygem-rails4/Makefile ============================================================================== --- branches/2016Q1/www/rubygem-rails4/Makefile Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/www/rubygem-rails4/Makefile Mon Mar 7 19:45:43 2016 (r410542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rails -PORTVERSION= 4.2.5.1 +PORTVERSION= 4.2.5.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 Modified: branches/2016Q1/www/rubygem-rails4/distinfo ============================================================================== --- branches/2016Q1/www/rubygem-rails4/distinfo Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/www/rubygem-rails4/distinfo Mon Mar 7 19:45:43 2016 (r410542) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rails-4.2.5.1.gem) = 0bb3795fc6d971522f2681dea730b49be880809012939a8a570bd086b583460e -SIZE (rubygem/rails-4.2.5.1.gem) = 1475584 +SHA256 (rubygem/rails-4.2.5.2.gem) = aa93c1b9eb8b535eee58280504e30237f88217699fe9bb016e458e5122eefa2e +SIZE (rubygem/rails-4.2.5.2.gem) = 1475584 Modified: branches/2016Q1/www/rubygem-railties4/Makefile ============================================================================== --- branches/2016Q1/www/rubygem-railties4/Makefile Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/www/rubygem-railties4/Makefile Mon Mar 7 19:45:43 2016 (r410542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= railties -PORTVERSION= 4.2.5.1 +PORTVERSION= 4.2.5.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 Modified: branches/2016Q1/www/rubygem-railties4/distinfo ============================================================================== --- branches/2016Q1/www/rubygem-railties4/distinfo Mon Mar 7 19:34:42 2016 (r410541) +++ branches/2016Q1/www/rubygem-railties4/distinfo Mon Mar 7 19:45:43 2016 (r410542) @@ -1,2 +1,2 @@ -SHA256 (rubygem/railties-4.2.5.1.gem) = b460df7ec554f4949db14fdf6eabdd3c413c928c1276d92007a807756ff6751f -SIZE (rubygem/railties-4.2.5.1.gem) = 127488 +SHA256 (rubygem/railties-4.2.5.2.gem) = cfff64cbc0e409341003c35fa2e576e6a8cd8259a9894d09f15c6123be73f146 +SIZE (rubygem/railties-4.2.5.2.gem) = 127488 From owner-svn-ports-branches@freebsd.org Mon Mar 7 19:56:20 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4EAFAC345C; Mon, 7 Mar 2016 19:56:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 909B7C16; Mon, 7 Mar 2016 19:56:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u27JuJED049101; Mon, 7 Mar 2016 19:56:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u27JuHVV049083; Mon, 7 Mar 2016 19:56:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201603071956.u27JuHVV049083@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 7 Mar 2016 19:56:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410543 - in branches/2016Q1: databases/rubygem-activemodel databases/rubygem-activerecord devel/rubygem-activesupport mail/rubygem-actionmailer www/rubygem-actionpack www/rubygem-activ... 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.21 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Mar 2016 19:56:20 -0000 Author: sunpoet Date: Mon Mar 7 19:56:17 2016 New Revision: 410543 URL: https://svnweb.freebsd.org/changeset/ports/410543 Log: MFH: r410439 r410440 r410441 r410442 r410443 r410444 r410445 r410446 - Update to 3.2.22.2 Changes: https://github.com/rails/rails/blob/3-2-stable/activesupport/CHANGELOG.md https://github.com/rails/rails/compare/v3.2.22.1...v3.2.22.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 3.2.22.2 Changes: https://github.com/rails/rails/blob/3-2-stable/activemodel/CHANGELOG.md https://github.com/rails/rails/compare/v3.2.22.1...v3.2.22.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 3.2.22.2 Changes: https://github.com/rails/rails/blob/3-2-stable/activerecord/CHANGELOG.md https://github.com/rails/rails/compare/v3.2.22.1...v3.2.22.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 3.2.22.2 Changes: https://github.com/rails/rails/blob/3-2-stable/actionmailer/CHANGELOG.md https://github.com/rails/rails/compare/v3.2.22.1...v3.2.22.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 3.2.22.2 Changes: https://github.com/rails/rails/blob/3-2-stable/actionpack/CHANGELOG.md https://github.com/rails/rails/compare/v3.2.22.1...v3.2.22.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 3.2.22.2 Changes: https://github.com/rails/rails/blob/3-2-stable/activeresource/CHANGELOG.md https://github.com/rails/rails/compare/v3.2.22.1...v3.2.22.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 3.2.22.2 Changes: https://github.com/rails/rails/blob/3-2-stable/railties/CHANGELOG.md https://github.com/rails/rails/compare/v3.2.22.1...v3.2.22.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef - Update to 3.2.22.2 Changes: https://github.com/rails/rails/commits/3-2-stable https://github.com/rails/rails/compare/v3.2.22.1...v3.2.22.2 Security: 5a016dd0-8aa8-490e-a596-55f4cc17e4ef Approved by: ports-secteam (feld) Modified: branches/2016Q1/databases/rubygem-activemodel/Makefile branches/2016Q1/databases/rubygem-activemodel/distinfo branches/2016Q1/databases/rubygem-activerecord/Makefile branches/2016Q1/databases/rubygem-activerecord/distinfo branches/2016Q1/devel/rubygem-activesupport/Makefile branches/2016Q1/devel/rubygem-activesupport/distinfo branches/2016Q1/mail/rubygem-actionmailer/Makefile branches/2016Q1/mail/rubygem-actionmailer/distinfo branches/2016Q1/www/rubygem-actionpack/Makefile branches/2016Q1/www/rubygem-actionpack/distinfo branches/2016Q1/www/rubygem-activeresource/Makefile branches/2016Q1/www/rubygem-activeresource/distinfo branches/2016Q1/www/rubygem-rails/Makefile branches/2016Q1/www/rubygem-rails/distinfo branches/2016Q1/www/rubygem-railties/Makefile branches/2016Q1/www/rubygem-railties/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/databases/rubygem-activemodel/Makefile ============================================================================== --- branches/2016Q1/databases/rubygem-activemodel/Makefile Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/databases/rubygem-activemodel/Makefile Mon Mar 7 19:56:17 2016 (r410543) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= activemodel -PORTVERSION= 3.2.22.1 +PORTVERSION= 3.2.22.2 CATEGORIES= databases rubygems MASTER_SITES= RG Modified: branches/2016Q1/databases/rubygem-activemodel/distinfo ============================================================================== --- branches/2016Q1/databases/rubygem-activemodel/distinfo Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/databases/rubygem-activemodel/distinfo Mon Mar 7 19:56:17 2016 (r410543) @@ -1,2 +1,2 @@ -SHA256 (rubygem/activemodel-3.2.22.1.gem) = 2adff03c599683b7678365987e9600dc856416f7a242e07d41f1bd9b4c87f0ee -SIZE (rubygem/activemodel-3.2.22.1.gem) = 44032 +SHA256 (rubygem/activemodel-3.2.22.2.gem) = 88c770a3fec7cc04f9357903ba6e8459b3e6d680ae54706bc1f817aca44e6467 +SIZE (rubygem/activemodel-3.2.22.2.gem) = 44032 Modified: branches/2016Q1/databases/rubygem-activerecord/Makefile ============================================================================== --- branches/2016Q1/databases/rubygem-activerecord/Makefile Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/databases/rubygem-activerecord/Makefile Mon Mar 7 19:56:17 2016 (r410543) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activerecord -PORTVERSION= 3.2.22.1 +PORTVERSION= 3.2.22.2 CATEGORIES= databases rubygems MASTER_SITES= RG Modified: branches/2016Q1/databases/rubygem-activerecord/distinfo ============================================================================== --- branches/2016Q1/databases/rubygem-activerecord/distinfo Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/databases/rubygem-activerecord/distinfo Mon Mar 7 19:56:17 2016 (r410543) @@ -1,2 +1,2 @@ -SHA256 (rubygem/activerecord-3.2.22.1.gem) = 38632a30fd499eeec22d4994f1df1183ce137190a82ad256b8ca7653b36460b6 -SIZE (rubygem/activerecord-3.2.22.1.gem) = 296448 +SHA256 (rubygem/activerecord-3.2.22.2.gem) = f761ee7f5b8e436021f86dedc27cbbe5e6a9c1bccea5c1a389d7199a9d06f9ae +SIZE (rubygem/activerecord-3.2.22.2.gem) = 297472 Modified: branches/2016Q1/devel/rubygem-activesupport/Makefile ============================================================================== --- branches/2016Q1/devel/rubygem-activesupport/Makefile Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/devel/rubygem-activesupport/Makefile Mon Mar 7 19:56:17 2016 (r410543) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activesupport -PORTVERSION= 3.2.22.1 +PORTVERSION= 3.2.22.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: branches/2016Q1/devel/rubygem-activesupport/distinfo ============================================================================== --- branches/2016Q1/devel/rubygem-activesupport/distinfo Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/devel/rubygem-activesupport/distinfo Mon Mar 7 19:56:17 2016 (r410543) @@ -1,2 +1,2 @@ -SHA256 (rubygem/activesupport-3.2.22.1.gem) = 68944a9409cd991444f87d63e4deb5417c3a43001f072e6096a3bc4a27020e6e -SIZE (rubygem/activesupport-3.2.22.1.gem) = 289792 +SHA256 (rubygem/activesupport-3.2.22.2.gem) = 8b05e387fec6710146c7774ec6ae0f36535c00498d45cc99f42c80224056d735 +SIZE (rubygem/activesupport-3.2.22.2.gem) = 290816 Modified: branches/2016Q1/mail/rubygem-actionmailer/Makefile ============================================================================== --- branches/2016Q1/mail/rubygem-actionmailer/Makefile Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/mail/rubygem-actionmailer/Makefile Mon Mar 7 19:56:17 2016 (r410543) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionmailer -PORTVERSION= 3.2.22.1 +PORTVERSION= 3.2.22.2 CATEGORIES= mail rubygems MASTER_SITES= RG Modified: branches/2016Q1/mail/rubygem-actionmailer/distinfo ============================================================================== --- branches/2016Q1/mail/rubygem-actionmailer/distinfo Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/mail/rubygem-actionmailer/distinfo Mon Mar 7 19:56:17 2016 (r410543) @@ -1,2 +1,2 @@ -SHA256 (rubygem/actionmailer-3.2.22.1.gem) = 69dbdc86054a1c9cf7ef5dcfc745ee3a2a2ea9e4242e0ca19d1891d972d0b095 -SIZE (rubygem/actionmailer-3.2.22.1.gem) = 22016 +SHA256 (rubygem/actionmailer-3.2.22.2.gem) = 276fcf1913a7ce0cef6b6fee33cd90650da76ddf0c60ace37822e305bb1ff5ce +SIZE (rubygem/actionmailer-3.2.22.2.gem) = 21504 Modified: branches/2016Q1/www/rubygem-actionpack/Makefile ============================================================================== --- branches/2016Q1/www/rubygem-actionpack/Makefile Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/www/rubygem-actionpack/Makefile Mon Mar 7 19:56:17 2016 (r410543) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionpack -PORTVERSION= 3.2.22.1 +PORTVERSION= 3.2.22.2 CATEGORIES= www rubygems MASTER_SITES= RG Modified: branches/2016Q1/www/rubygem-actionpack/distinfo ============================================================================== --- branches/2016Q1/www/rubygem-actionpack/distinfo Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/www/rubygem-actionpack/distinfo Mon Mar 7 19:56:17 2016 (r410543) @@ -1,2 +1,2 @@ -SHA256 (rubygem/actionpack-3.2.22.1.gem) = 419505e367140dbd3f93f21722ab36a5ed7dffd40f49c58ce0a2c1dc0fe95f46 -SIZE (rubygem/actionpack-3.2.22.1.gem) = 291840 +SHA256 (rubygem/actionpack-3.2.22.2.gem) = 8f4e012092b98918767e300a35429d5015a3792115d8cef93a6280934fa160fc +SIZE (rubygem/actionpack-3.2.22.2.gem) = 293376 Modified: branches/2016Q1/www/rubygem-activeresource/Makefile ============================================================================== --- branches/2016Q1/www/rubygem-activeresource/Makefile Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/www/rubygem-activeresource/Makefile Mon Mar 7 19:56:17 2016 (r410543) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activeresource -PORTVERSION= 3.2.22.1 +PORTVERSION= 3.2.22.2 CATEGORIES= www rubygems MASTER_SITES= RG Modified: branches/2016Q1/www/rubygem-activeresource/distinfo ============================================================================== --- branches/2016Q1/www/rubygem-activeresource/distinfo Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/www/rubygem-activeresource/distinfo Mon Mar 7 19:56:17 2016 (r410543) @@ -1,2 +1,2 @@ -SHA256 (rubygem/activeresource-3.2.22.1.gem) = 5f6f42132babd4a41ca41eb7bd9b37b011fc4a357a2b2ea09034e0a56df378c0 -SIZE (rubygem/activeresource-3.2.22.1.gem) = 37376 +SHA256 (rubygem/activeresource-3.2.22.2.gem) = 345333f96de1dcde0e4a9cd71ea00c705d7612b9b12164d3ec4738ca7c4d274c +SIZE (rubygem/activeresource-3.2.22.2.gem) = 37376 Modified: branches/2016Q1/www/rubygem-rails/Makefile ============================================================================== --- branches/2016Q1/www/rubygem-rails/Makefile Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/www/rubygem-rails/Makefile Mon Mar 7 19:56:17 2016 (r410543) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rails -PORTVERSION= 3.2.22.1 +PORTVERSION= 3.2.22.2 CATEGORIES= www rubygems MASTER_SITES= RG Modified: branches/2016Q1/www/rubygem-rails/distinfo ============================================================================== --- branches/2016Q1/www/rubygem-rails/distinfo Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/www/rubygem-rails/distinfo Mon Mar 7 19:56:17 2016 (r410543) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rails-3.2.22.1.gem) = 55bc070a05d583ffc0028bfc6b1c5be60e9d5fc7655ebada06c5c83ae38249e9 -SIZE (rubygem/rails-3.2.22.1.gem) = 4608 +SHA256 (rubygem/rails-3.2.22.2.gem) = e40902aa453b1ce4e0048221d8d1d4e8dda1f3bd58c80c23f6c38c7bd3fae9cb +SIZE (rubygem/rails-3.2.22.2.gem) = 3584 Modified: branches/2016Q1/www/rubygem-railties/Makefile ============================================================================== --- branches/2016Q1/www/rubygem-railties/Makefile Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/www/rubygem-railties/Makefile Mon Mar 7 19:56:17 2016 (r410543) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= railties -PORTVERSION= 3.2.22.1 +PORTVERSION= 3.2.22.2 CATEGORIES= www rubygems MASTER_SITES= RG Modified: branches/2016Q1/www/rubygem-railties/distinfo ============================================================================== --- branches/2016Q1/www/rubygem-railties/distinfo Mon Mar 7 19:45:43 2016 (r410542) +++ branches/2016Q1/www/rubygem-railties/distinfo Mon Mar 7 19:56:17 2016 (r410543) @@ -1,2 +1,2 @@ -SHA256 (rubygem/railties-3.2.22.1.gem) = 903b106c85d549f4e8a67980a4f78366d825a0bd0d87a13e599b57ec4ce95750 -SIZE (rubygem/railties-3.2.22.1.gem) = 1588736 +SHA256 (rubygem/railties-3.2.22.2.gem) = 824dbfdacddbc0f7927370899fc79b65e0a2790cdd202c24fe46e96d6e7f75f0 +SIZE (rubygem/railties-3.2.22.2.gem) = 1590784 From owner-svn-ports-branches@freebsd.org Tue Mar 8 01:02:35 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2FFAAC74FB; Tue, 8 Mar 2016 01:02:35 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 956BFF75; Tue, 8 Mar 2016 01:02:35 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2812Yjp048716; Tue, 8 Mar 2016 01:02:34 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2812XHk048703; Tue, 8 Mar 2016 01:02:33 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201603080102.u2812XHk048703@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 8 Mar 2016 01:02:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410593 - in branches/2016Q1: chinese/wordpress-zh_CN chinese/wordpress-zh_TW german/wordpress japanese/wordpress russian/wordpress www/wordpress 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.21 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, 08 Mar 2016 01:02:35 -0000 Author: junovitch Date: Tue Mar 8 01:02:33 2016 New Revision: 410593 URL: https://svnweb.freebsd.org/changeset/ports/410593 Log: MFH: r409392 - Update to 4.4.2 Security: CVE-2016-2221 Security: CVE-2016-2222 Security: https://vuxml.FreeBSD.org/freebsd/fef03980-e4c6-11e5-b2bd-002590263bf5.html Approved by: ports-secteam (with hat) Modified: branches/2016Q1/chinese/wordpress-zh_CN/Makefile branches/2016Q1/chinese/wordpress-zh_CN/distinfo branches/2016Q1/chinese/wordpress-zh_TW/Makefile branches/2016Q1/chinese/wordpress-zh_TW/distinfo branches/2016Q1/german/wordpress/Makefile branches/2016Q1/german/wordpress/distinfo branches/2016Q1/japanese/wordpress/Makefile branches/2016Q1/japanese/wordpress/distinfo branches/2016Q1/russian/wordpress/Makefile branches/2016Q1/russian/wordpress/distinfo branches/2016Q1/www/wordpress/Makefile branches/2016Q1/www/wordpress/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/chinese/wordpress-zh_CN/Makefile ============================================================================== --- branches/2016Q1/chinese/wordpress-zh_CN/Makefile Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/chinese/wordpress-zh_CN/Makefile Tue Mar 8 01:02:33 2016 (r410593) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.4.1 +PORTVERSION= 4.4.2 DISTVERSIONSUFFIX= -zh_CN CATEGORIES= chinese www MASTER_SITES= http://cn.wordpress.org/ Modified: branches/2016Q1/chinese/wordpress-zh_CN/distinfo ============================================================================== --- branches/2016Q1/chinese/wordpress-zh_CN/distinfo Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/chinese/wordpress-zh_CN/distinfo Tue Mar 8 01:02:33 2016 (r410593) @@ -1,2 +1,2 @@ -SHA256 (wordpress-4.4.1-zh_CN.tar.gz) = a1ca8c2cb0954c8e4e58a94c8ab8dbdf4e33480033c34d955792f25f0977d07a -SIZE (wordpress-4.4.1-zh_CN.tar.gz) = 7541624 +SHA256 (wordpress-4.4.2-zh_CN.tar.gz) = 19b1ed0281bc5de86b23373694f1de710c90cf528942ba4668f8566cce48100f +SIZE (wordpress-4.4.2-zh_CN.tar.gz) = 7519893 Modified: branches/2016Q1/chinese/wordpress-zh_TW/Makefile ============================================================================== --- branches/2016Q1/chinese/wordpress-zh_TW/Makefile Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/chinese/wordpress-zh_TW/Makefile Tue Mar 8 01:02:33 2016 (r410593) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.4.1 +PORTVERSION= 4.4.2 DISTVERSIONSUFFIX= -zh_TW CATEGORIES= chinese www MASTER_SITES= http://tw.wordpress.org/ Modified: branches/2016Q1/chinese/wordpress-zh_TW/distinfo ============================================================================== --- branches/2016Q1/chinese/wordpress-zh_TW/distinfo Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/chinese/wordpress-zh_TW/distinfo Tue Mar 8 01:02:33 2016 (r410593) @@ -1,2 +1,2 @@ -SHA256 (wordpress-4.4.1-zh_TW.tar.gz) = eb67bf54e33c53bba34e59e154baec22c30a5edff0641e152005345994cfd9df -SIZE (wordpress-4.4.1-zh_TW.tar.gz) = 7526879 +SHA256 (wordpress-4.4.2-zh_TW.tar.gz) = 11420a463e25b2c0b3ec6bc1fd9a1b5fa09d7e7f00f99b25684571e30c1eefdd +SIZE (wordpress-4.4.2-zh_TW.tar.gz) = 7527437 Modified: branches/2016Q1/german/wordpress/Makefile ============================================================================== --- branches/2016Q1/german/wordpress/Makefile Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/german/wordpress/Makefile Tue Mar 8 01:02:33 2016 (r410593) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.4.1 +PORTVERSION= 4.4.2 DISTVERSIONSUFFIX= -de_DE -PORTREVISION= 1 CATEGORIES= german www MASTER_SITES= http://de.wordpress.org/ Modified: branches/2016Q1/german/wordpress/distinfo ============================================================================== --- branches/2016Q1/german/wordpress/distinfo Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/german/wordpress/distinfo Tue Mar 8 01:02:33 2016 (r410593) @@ -1,2 +1,2 @@ -SHA256 (wordpress-4.4.1-de_DE.tar.gz) = 8189fd1e584d0634b3770af6b86924c5f51a1faa5248fe1dea6948dbc9ffd324 -SIZE (wordpress-4.4.1-de_DE.tar.gz) = 7544365 +SHA256 (wordpress-4.4.2-de_DE.tar.gz) = b12be8888aa422e99230fca2b0b0b5c5eb6825ee75f7a222c50a19c0f4933c70 +SIZE (wordpress-4.4.2-de_DE.tar.gz) = 7544759 Modified: branches/2016Q1/japanese/wordpress/Makefile ============================================================================== --- branches/2016Q1/japanese/wordpress/Makefile Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/japanese/wordpress/Makefile Tue Mar 8 01:02:33 2016 (r410593) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.4.1 +PORTVERSION= 4.4.2 PORTREVISION= 1 DISTVERSIONSUFFIX= -ja CATEGORIES= japanese www Modified: branches/2016Q1/japanese/wordpress/distinfo ============================================================================== --- branches/2016Q1/japanese/wordpress/distinfo Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/japanese/wordpress/distinfo Tue Mar 8 01:02:33 2016 (r410593) @@ -1,2 +1,2 @@ -SHA256 (wordpress-4.4.1-ja.tar.gz) = 2821835eb4d76839bc99f9bffe03e0734c97d6be5e80a214d380e54a9e409169 -SIZE (wordpress-4.4.1-ja.tar.gz) = 7557890 +SHA256 (wordpress-4.4.2-ja.tar.gz) = 1d6e1f2558a6a0fa1856824a1caef1824a4ecf8a57b1435fd4946ce31454df59 +SIZE (wordpress-4.4.2-ja.tar.gz) = 7549339 Modified: branches/2016Q1/russian/wordpress/Makefile ============================================================================== --- branches/2016Q1/russian/wordpress/Makefile Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/russian/wordpress/Makefile Tue Mar 8 01:02:33 2016 (r410593) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.4.1 +PORTVERSION= 4.4.2 DISTVERSIONSUFFIX= -ru_RU CATEGORIES= russian www MASTER_SITES= http://ru.wordpress.org/ Modified: branches/2016Q1/russian/wordpress/distinfo ============================================================================== --- branches/2016Q1/russian/wordpress/distinfo Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/russian/wordpress/distinfo Tue Mar 8 01:02:33 2016 (r410593) @@ -1,2 +1,2 @@ -SHA256 (wordpress-4.4.1-ru_RU.tar.gz) = c027d87823993647540ee9b5f0e42d768962dae10bcafe5bf20745ddf06abbcb -SIZE (wordpress-4.4.1-ru_RU.tar.gz) = 7578641 +SHA256 (wordpress-4.4.2-ru_RU.tar.gz) = 063151d8059a6f732883a497c941d54ddb98f733ab7f6d8a578df11fbce65273 +SIZE (wordpress-4.4.2-ru_RU.tar.gz) = 7579231 Modified: branches/2016Q1/www/wordpress/Makefile ============================================================================== --- branches/2016Q1/www/wordpress/Makefile Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/www/wordpress/Makefile Tue Mar 8 01:02:33 2016 (r410593) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.4.1 +PORTVERSION= 4.4.2 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= http://wordpress.org/ Modified: branches/2016Q1/www/wordpress/distinfo ============================================================================== --- branches/2016Q1/www/wordpress/distinfo Tue Mar 8 01:00:34 2016 (r410592) +++ branches/2016Q1/www/wordpress/distinfo Tue Mar 8 01:02:33 2016 (r410593) @@ -1,2 +1,2 @@ -SHA256 (wordpress-4.4.1.tar.gz) = 4895ac8c2ee348513ead161103ae2d97d3ef3f684167e5ce602d3998370c05f4 -SIZE (wordpress-4.4.1.tar.gz) = 7099537 +SHA256 (wordpress-4.4.2.tar.gz) = c8a74c0f7cfc0d19989d235759e70cebd90f42aa0513bd9bc344230b0f79e08b +SIZE (wordpress-4.4.2.tar.gz) = 7099520 From owner-svn-ports-branches@freebsd.org Tue Mar 8 01:21:33 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63CD5AC7B4C; Tue, 8 Mar 2016 01:21:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3652CE6C; Tue, 8 Mar 2016 01:21:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u281LWma055023; Tue, 8 Mar 2016 01:21:32 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u281LWZC055020; Tue, 8 Mar 2016 01:21:32 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201603080121.u281LWZC055020@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 8 Mar 2016 01:21:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410595 - branches/2016Q1/games/openra 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.21 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, 08 Mar 2016 01:21:33 -0000 Author: jbeich Date: Tue Mar 8 01:21:31 2016 New Revision: 410595 URL: https://svnweb.freebsd.org/changeset/ports/410595 Log: MFH: r410588 games/openra: update GeoLite2 to March snapshot Approved by: ports-secteam (junovitch) Modified: branches/2016Q1/games/openra/Makefile branches/2016Q1/games/openra/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/games/openra/Makefile ============================================================================== --- branches/2016Q1/games/openra/Makefile Tue Mar 8 01:09:24 2016 (r410594) +++ branches/2016Q1/games/openra/Makefile Tue Mar 8 01:21:31 2016 (r410595) @@ -3,7 +3,7 @@ PORTNAME= openra PORTVERSION= 20151224 DISTVERSIONPREFIX= release- -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games # XXX Convert to USES=nuget or package dependencies instead MASTER_SITES= https://nuget.org/api/v2/package/StyleCopPlus.MSBuild/4.7.49.5?dummy=/:StyleCopPlus \ Modified: branches/2016Q1/games/openra/distinfo ============================================================================== --- branches/2016Q1/games/openra/distinfo Tue Mar 8 01:09:24 2016 (r410594) +++ branches/2016Q1/games/openra/distinfo Tue Mar 8 01:21:31 2016 (r410595) @@ -28,5 +28,5 @@ SHA256 (SDL2-CS.dll) = acb68619a8043b044 SIZE (SDL2-CS.dll) = 2884608 SHA256 (Eluant.dll) = abb67679c241ae35a430f79696792cbd9093ceda5998f6f578d0fd763ee440b0 SIZE (Eluant.dll) = 64000 -SHA256 (GeoLite2-Country.mmdb.gz) = 951ab95ae114f38a4eb5e4ae4fba9d65751abb87b280f3a508fc3949a1e2b86a -SIZE (GeoLite2-Country.mmdb.gz) = 1085151 +SHA256 (GeoLite2-Country.mmdb.gz) = 593c63d2861f7163b78a02a5e95c5e166cc0928650cad50e795c68045f40b91c +SIZE (GeoLite2-Country.mmdb.gz) = 1108460 From owner-svn-ports-branches@freebsd.org Tue Mar 8 09:17:46 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8284EAC2EE9; Tue, 8 Mar 2016 09:17:46 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53035EC0; Tue, 8 Mar 2016 09:17:46 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u289Hj8Q098512; Tue, 8 Mar 2016 09:17:45 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u289Hj1w098509; Tue, 8 Mar 2016 09:17:45 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201603080917.u289Hj1w098509@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Tue, 8 Mar 2016 09:17:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410608 - in branches/2016Q1/net/rabbitmq: . 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.21 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, 08 Mar 2016 09:17:46 -0000 Author: olgeni Date: Tue Mar 8 09:17:45 2016 New Revision: 410608 URL: https://svnweb.freebsd.org/changeset/ports/410608 Log: MFH: r409962 Update net/rabbitmq to version 3.6.1. From the release notes: This release fixes a number of bugs in 3.6.0 and earlier versions, as well as one security issue (CVE-2015-8786) in the management plugin. It also contains usability improvements. CVE 2015-8786 has not been publicly announced yet. Security: CVE-2015-8786 Approved by: ports-secteam (miwi) Deleted: branches/2016Q1/net/rabbitmq/files/patch-src_rabbit__misc.erl Modified: branches/2016Q1/net/rabbitmq/Makefile branches/2016Q1/net/rabbitmq/distinfo branches/2016Q1/net/rabbitmq/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/rabbitmq/Makefile ============================================================================== --- branches/2016Q1/net/rabbitmq/Makefile Tue Mar 8 08:25:42 2016 (r410607) +++ branches/2016Q1/net/rabbitmq/Makefile Tue Mar 8 09:17:45 2016 (r410608) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= rabbitmq -PORTVERSION= 3.5.7 -PORTREVISION= 3 +PORTVERSION= 3.6.1 CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-server-${PORTVERSION} @@ -17,18 +16,19 @@ BUILD_DEPENDS= erl:${PORTSDIR}/lang/erla ${PYTHON_PKGNAMEPREFIX}simplejson>=2.0:${PORTSDIR}/devel/py-simplejson \ xmlto:${PORTSDIR}/textproc/xmlto \ unzip:${PORTSDIR}/archivers/unzip \ - zip:${PORTSDIR}/archivers/zip + zip:${PORTSDIR}/archivers/zip \ + rsync:${PORTSDIR}/net/rsync RUN_DEPENDS= erl:${PORTSDIR}/lang/erlang OPTIONS_DEFINE= ADMIN OPTIONS_SUB= yes ADMIN_DESC= Install rabbitmqadmin script +ADMIN_USES= python:run -USES= cpe gmake python:build shebangfix +ALL_TARGET= all manpages +USES= cpe gmake python:build tar:xz USE_RC_SUBR= rabbitmq -SHEBANG_FILES= calculate-relative plugins-src/rabbitmq-amqp1.0/codegen.py -python_OLD_CMD= .*python NO_ARCH= yes USERS= rabbitmq @@ -38,6 +38,7 @@ PLIST_SUB= VERSION=${PORTVERSION} CPE_VENDOR= pivotal_software +REINPLACE_ARGS= -i "" SCRIPTS_DIR= ${WRKSRC}/scripts/ MAKE_ARGS+= PYTHON=${PYTHON_CMD} MAKE_ENV+= TARGET_DIR="${STAGEDIR}${PREFIX}/lib/erlang/lib/rabbitmq_server-${PORTVERSION}" \ @@ -49,24 +50,14 @@ MAKE_JOBS_UNSAFE= yes .include -.if ${PORT_OPTIONS:MADMIN} -USES+= python:run -.endif - post-patch: @${REINPLACE_CMD} -e 's|/etc/rabbitmq|${PREFIX}/etc/rabbitmq|g ; s|/var/lib|/var/db|g ; s|$${ERL_DIR}erl|${PREFIX}/bin/erl|g' \ - ${SCRIPTS_DIR}/rabbitmq-server ${SCRIPTS_DIR}/rabbitmqctl \ - ${SCRIPTS_DIR}/rabbitmq-env ${SCRIPTS_DIR}/rabbitmq-plugins \ + ${SCRIPTS_DIR}/rabbitmq-server \ + ${SCRIPTS_DIR}/rabbitmqctl \ + ${SCRIPTS_DIR}/rabbitmq-env \ + ${SCRIPTS_DIR}/rabbitmq-plugins \ ${SCRIPTS_DIR}/rabbitmq-defaults \ ${WRKSRC}/docs/rabbitmq-env.conf.5.xml - @${REINPLACE_CMD} -e 's|VERSION=0.0.0|VERSION=${PORTVERSION}|g' \ - ${WRKSRC}/plugins-src/rabbitmq-erlang-client/Makefile \ - ${WRKSRC}/plugins-src/release.mk - @${REINPLACE_CMD} -e 's|VERSION:=0.0.0|VERSION:=${PORTVERSION}|g' \ - ${WRKSRC}/plugins-src/Makefile - @${REINPLACE_CMD} -e 's|VERSION?=0.0.0|VERSION?=${PORTVERSION}|g' \ - ${WRKSRC}/Makefile - @${FIND} ${WRKSRC} -name "*.bak" -delete post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/rabbitmq @@ -74,8 +65,15 @@ post-install: @${MKDIR} ${STAGEDIR}/var/log/rabbitmq ${INSTALL_DATA} ${WRKSRC}/docs/rabbitmq.config.example \ ${STAGEDIR}${PREFIX}/etc/rabbitmq/rabbitmq.config.sample -.if ${PORT_OPTIONS:MADMIN} - ${INSTALL} ${WRKSRC}/plugins-src/rabbitmq-management/bin/rabbitmqadmin ${STAGEDIR}${PREFIX}/bin -.endif +.for _file in rabbitmq-defaults rabbitmq-env rabbitmq-plugins rabbitmq-server rabbitmqctl + ${LN} -s ../lib/erlang/lib/rabbitmq_server-${PORTVERSION}/sbin/${_file} ${STAGEDIR}${PREFIX}/sbin +.endfor +.for _file in rabbitmq-plugins.1 rabbitmq-server.1 rabbitmqctl.1 + ${INSTALL_MAN} ${WRKSRC}/docs/${_file} ${STAGEDIR}${MAN1PREFIX}/man/man1 +.endfor + ${INSTALL_MAN} ${WRKSRC}/docs/rabbitmq-env.conf.5 ${STAGEDIR}${MAN5PREFIX}/man/man5 + +post-install-ADMIN-on: + ${INSTALL} ${WRKSRC}/deps/rabbitmq_management/bin/rabbitmqadmin ${STAGEDIR}${PREFIX}/bin .include Modified: branches/2016Q1/net/rabbitmq/distinfo ============================================================================== --- branches/2016Q1/net/rabbitmq/distinfo Tue Mar 8 08:25:42 2016 (r410607) +++ branches/2016Q1/net/rabbitmq/distinfo Tue Mar 8 09:17:45 2016 (r410608) @@ -1,2 +1,2 @@ -SHA256 (rabbitmq-server-3.5.7.tar.gz) = 380c9cab8f24add440a0aead3b70a0830e0f32a531139828003ae18e08b72028 -SIZE (rabbitmq-server-3.5.7.tar.gz) = 3919168 +SHA256 (rabbitmq-server-3.6.1.tar.xz) = c696134e863f99191a301288c12d69ff00b7e648107ee52c8686ae047dde1bee +SIZE (rabbitmq-server-3.6.1.tar.xz) = 2895888 Modified: branches/2016Q1/net/rabbitmq/pkg-plist ============================================================================== --- branches/2016Q1/net/rabbitmq/pkg-plist Tue Mar 8 08:25:42 2016 (r410607) +++ branches/2016Q1/net/rabbitmq/pkg-plist Tue Mar 8 09:17:45 2016 (r410608) @@ -1,79 +1,58 @@ -@sample etc/rabbitmq/rabbitmq.config.sample +@sample %%ETCDIR%%/rabbitmq.config.sample %%ADMIN%%bin/rabbitmqadmin -sbin/rabbitmq-defaults -sbin/rabbitmq-env -sbin/rabbitmq-server -sbin/rabbitmqctl -sbin/rabbitmq-plugins lib/erlang/lib/rabbitmq_server-%%VERSION%%/INSTALL lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-APACHE2-ExplorerCanvas +lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-APL2-Rebar lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-APL2-Stomp-Websocket -lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-Apache-Basho lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-BSD-base64js lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-BSD-glMatrix +lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-EPL-OTP lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-MIT-EJS10 lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-MIT-Flot lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-MIT-Mochi +lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-MIT-Mochiweb lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-MIT-Sammy060 -lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-MIT-eldap +lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-MIT-SockJS lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-MIT-jQuery164 lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-MPL-RabbitMQ -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/app_utils.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/LICENSE-MPL2 lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/background_gc.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/credit_flow.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/delegate.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/delegate_sup.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/dtree.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/file_handle_cache.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/file_handle_cache_stats.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/gatherer.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/gen_server2.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/gm.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/lqueue.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/mirrored_supervisor.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/mirrored_supervisor_sups.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/mnesia_sync.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/mochijson2.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/mochinum.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/pg2_fixed.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/pg_local.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/pmon.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/priority_queue.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit.app lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_access_control.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_alarm.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_amqqueue.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_amqqueue_process.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_amqqueue_sup.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_amqqueue_sup_sup.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_app.in lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_auth_backend_dummy.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_auth_backend_internal.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_auth_mechanism.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_auth_mechanism_amqplain.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_auth_mechanism_cr_demo.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_auth_mechanism_plain.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_authn_backend.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_authz_backend.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_autoheal.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_backing_queue.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_basic.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_binary_generator.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_binary_parser.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_binding.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_channel.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_channel_interceptor.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_boot_steps.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_channel_sup.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_channel_sup_sup.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_cli.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_client_sup.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_command_assembler.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_connection_helper_sup.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_connection_sup.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_control_main.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_ctl_misc.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_ctl_usage.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_dead_letter.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_diagnostics.beam @@ -82,10 +61,8 @@ lib/erlang/lib/rabbitmq_server-%%VERSION lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_epmd_monitor.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_error_logger.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_error_logger_file_h.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_event.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_exchange.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_exchange_decorator.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_exchange_type.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_exchange_parameters.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_exchange_type_direct.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_exchange_type_fanout.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_exchange_type_headers.beam @@ -93,10 +70,8 @@ lib/erlang/lib/rabbitmq_server-%%VERSION lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_exchange_type_topic.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_file.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_framing.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_framing_amqp_0_8.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_framing_amqp_0_9_1.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_guid.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_heartbeat.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_hipe.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_limiter.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_log.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_memory_monitor.beam @@ -109,38 +84,38 @@ lib/erlang/lib/rabbitmq_server-%%VERSION lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_mirror_queue_mode_nodes.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_mirror_queue_slave.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_mirror_queue_sync.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_misc.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_mnesia.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_mnesia_rename.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_msg_file.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_msg_store.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_msg_store_ets_index.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_msg_store_gc.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_msg_store_index.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_net.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_networking.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_node_monitor.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_nodes.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_parameter_validation.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_password.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_password_hashing_md5.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_password_hashing_sha256.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_password_hashing_sha512.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_plugins.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_plugins_main.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_plugins_usage.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_policies.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_policy.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_policy_validator.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_prelaunch.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_prequeue.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_priority_queue.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_queue_collector.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_queue_consumers.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_queue_decorator.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_queue_index.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_reader.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_queue_location_client_local.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_queue_location_min_masters.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_queue_location_random.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_queue_location_validator.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_queue_master_location_misc.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_recovery_terms.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_registry.beam +lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_resource_monitor_misc.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_restartable_sup.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_router.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_runtime_parameter.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_runtime_parameters.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_sasl_report_file_h.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_ssl.beam @@ -154,15 +129,9 @@ lib/erlang/lib/rabbitmq_server-%%VERSION lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_version.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_vhost.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_vm.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/rabbit_writer.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/ssl_compat.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/supervised_lifecycle.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/supervisor2.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/tcp_acceptor.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/tcp_acceptor_sup.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/tcp_listener.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/tcp_listener_sup.beam -lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/time_compat.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/truncate.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/vm_memory_monitor.beam lib/erlang/lib/rabbitmq_server-%%VERSION%%/ebin/worker_pool.beam @@ -175,29 +144,33 @@ lib/erlang/lib/rabbitmq_server-%%VERSION lib/erlang/lib/rabbitmq_server-%%VERSION%%/include/rabbit_msg_store.hrl lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/README lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/amqp_client-%%VERSION%%.ez -lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/cowboy-0.5.0-rmq%%VERSION%%-git4b93c2d.ez -lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/eldap-%%VERSION%%-gite309de4.ez -lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/mochiweb-2.7.0-rmq%%VERSION%%-git680dba8.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/cowboy-1.0.3.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/cowlib-1.0.1.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/mochiweb-2.13.0.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbit_common-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_amqp1_0-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_auth_backend_ldap-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_auth_mechanism_ssl-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_consistent_hash_exchange-%%VERSION%%.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_event_exchange-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_federation-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_federation_management-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management_agent-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_management_visualiser-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_mqtt-%%VERSION%%.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_recent_history_exchange-1.2.1.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_sharding-0.1.0.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_shovel-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_shovel_management-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_stomp-%%VERSION%%.ez -lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_test-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_tracing-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_web_dispatch-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_web_stomp-%%VERSION%%.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/rabbitmq_web_stomp_examples-%%VERSION%%.ez -lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/sockjs-0.3.4-rmq%%VERSION%%-git3132eb9.ez -lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/webmachine-1.10.3-rmq%%VERSION%%-gite9359c7.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/ranch-1.2.1.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/sockjs-0.3.4.ez +lib/erlang/lib/rabbitmq_server-%%VERSION%%/plugins/webmachine-1.10.3.ez lib/erlang/lib/rabbitmq_server-%%VERSION%%/sbin/rabbitmq-defaults lib/erlang/lib/rabbitmq_server-%%VERSION%%/sbin/rabbitmq-env lib/erlang/lib/rabbitmq_server-%%VERSION%%/sbin/rabbitmq-plugins @@ -207,7 +180,11 @@ man/man1/rabbitmq-plugins.1.gz man/man1/rabbitmq-server.1.gz man/man1/rabbitmqctl.1.gz man/man5/rabbitmq-env.conf.5.gz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rabbitmq.config.example +sbin/rabbitmq-defaults +sbin/rabbitmq-env +sbin/rabbitmq-plugins +sbin/rabbitmq-server +sbin/rabbitmqctl @dir(rabbitmq,rabbitmq,755) /var/log/rabbitmq @dir(rabbitmq,rabbitmq,755) /var/db/rabbitmq/mnesia @dir(rabbitmq,rabbitmq,755) /var/db/rabbitmq From owner-svn-ports-branches@freebsd.org Tue Mar 8 18:19:59 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D149AC3B54; Tue, 8 Mar 2016 18:19:59 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 09E24B4E; Tue, 8 Mar 2016 18:19:58 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u28IJwnj068707; Tue, 8 Mar 2016 18:19:58 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u28IJuAg068691; Tue, 8 Mar 2016 18:19:56 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201603081819.u28IJuAg068691@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 8 Mar 2016 18:19:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410638 - in branches/2016Q1: Mk Mk/Uses mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr-i18n www/firefox-esr/files www/firefox-i18n www/firefox/files www/libxul www/... 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.21 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, 08 Mar 2016 18:19:59 -0000 Author: jbeich Date: Tue Mar 8 18:19:56 2016 New Revision: 410638 URL: https://svnweb.freebsd.org/changeset/ports/410638 Log: MFH: r408984 r410176 r410186 www/firefox: simplify upstream graphite2 update-helper www/firefox{,-esr}: update to 45.0 (rc2) / 38.7.0 Prepare www/firefox a bit for ESR45: - [e10s] Make layers.progressive-paint;true work at least on 11.0-CURRENT - Chase bundled versions for system dependencies [1] - Drop unused/broken system opus and speex support Changes: https://www.mozilla.org/firefox/45.0/releasenotes/ Changes: https://www.mozilla.org/firefox/38.7.0/releasenotes/ PR: 207686 [1] Security: 2225c5b4-1e5a-44fc-9920-b3201c384a15 Approved by: ports-secteam (feld, merge conflict blanket) Added: branches/2016Q1/www/firefox/files/patch-bug1242132 - copied unchanged from r410176, head/www/firefox/files/patch-bug1242132 branches/2016Q1/www/firefox/files/patch-bug1252246 - copied unchanged from r410176, head/www/firefox/files/patch-bug1252246 Deleted: branches/2016Q1/www/firefox/files/patch-bug1228742 Modified: branches/2016Q1/Mk/Uses/gecko.mk branches/2016Q1/Mk/bsd.gecko.mk branches/2016Q1/mail/thunderbird/files/patch-bug847568 branches/2016Q1/www/firefox-esr-i18n/Makefile branches/2016Q1/www/firefox-esr-i18n/distinfo branches/2016Q1/www/firefox-esr/Makefile branches/2016Q1/www/firefox-esr/distinfo branches/2016Q1/www/firefox-esr/files/patch-bug847568 branches/2016Q1/www/firefox-i18n/Makefile branches/2016Q1/www/firefox-i18n/distinfo branches/2016Q1/www/firefox/Makefile branches/2016Q1/www/firefox/distinfo branches/2016Q1/www/firefox/files/patch-bug1021761 branches/2016Q1/www/firefox/files/patch-bug702179 branches/2016Q1/www/firefox/files/patch-bug826985 branches/2016Q1/www/firefox/files/patch-bug847568 branches/2016Q1/www/firefox/files/patch-config-baseconfig.mk branches/2016Q1/www/firefox/files/patch-z-bug517422 branches/2016Q1/www/libxul/Makefile branches/2016Q1/www/libxul/distinfo branches/2016Q1/www/libxul/files/patch-bug847568 branches/2016Q1/www/linux-firefox/Makefile branches/2016Q1/www/linux-firefox/distinfo branches/2016Q1/www/linux-firefox/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/Mk/Uses/gecko.mk ============================================================================== --- branches/2016Q1/Mk/Uses/gecko.mk Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/Mk/Uses/gecko.mk Tue Mar 8 18:19:56 2016 (r410638) @@ -37,12 +37,12 @@ RUN_DEPENDS+= libxul>=38:${PORTSDIR}/www .elif ${gecko_ARGS:Mfirefox} _GECKO_DEFAULT_VERSION= 38 -_GECKO_VERSIONS= 38 44 +_GECKO_VERSIONS= 38 45 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions 38_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr -44_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox +45_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null Modified: branches/2016Q1/Mk/bsd.gecko.mk ============================================================================== --- branches/2016Q1/Mk/bsd.gecko.mk Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/Mk/bsd.gecko.mk Tue Mar 8 18:19:56 2016 (r410638) @@ -177,7 +177,6 @@ icu_LIB_DEPENDS= libicui18n.so:${PORTSD icu_MOZ_OPTIONS= --with-system-icu --with-intl-api -jpeg_BUILD_DEPENDS=yasm:${PORTSDIR}/devel/yasm -# XXX JCS_EXTENSIONS API is currently disabled by r371283 # XXX Remove files/patch-ijg-libjpeg once -turbo is default jpeg_USES= jpeg jpeg_MOZ_OPTIONS= --with-system-jpeg=${LOCALBASE} @@ -188,7 +187,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) +.if exists(${FILESDIR}/patch-z-bug517422) && ${MOZILLA_VER:R:R} < 45 opus_LIB_DEPENDS= libopus.so:${PORTSDIR}/audio/opus opus_MOZ_OPTIONS= --with-system-opus .endif @@ -202,10 +201,6 @@ png_MOZ_OPTIONS= --with-system-png=${LOC .if exists(${FILESDIR}/patch-z-bug517422) soundtouch_LIB_DEPENDS= libSoundTouch.so:${PORTSDIR}/audio/soundtouch soundtouch_MOZ_OPTIONS= --with-system-soundtouch - -# XXX disabled: bug 913854 not yet upstreamed -speex_LIB_DEPENDS= libspeexdsp.so:${PORTSDIR}/audio/speex -speex_MOZ_OPTIONS= --with-system-speex .endif sqlite_LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 Modified: branches/2016Q1/mail/thunderbird/files/patch-bug847568 ============================================================================== --- branches/2016Q1/mail/thunderbird/files/patch-bug847568 Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/mail/thunderbird/files/patch-bug847568 Tue Mar 8 18:19:56 2016 (r410638) @@ -101,14 +101,11 @@ diff --git gfx/graphite2/moz-gr-update.s index f3d76ea..a9e7fb6 100644 --- mozilla/gfx/graphite2/moz-gr-update.sh +++ mozilla/gfx/graphite2/moz-gr-update.sh -@@ -37,6 +37,12 @@ +@@ -37,6 +37,9 @@ #find gfx/graphite2/ -name "*.cpp" -exec perl -p -i -e "s///;s/Windows.h/windows.h/;" {} \; #find gfx/graphite2/ -name "*.h" -exec perl -p -i -e "s///;s/Windows.h/windows.h/;" {} \; -+# closest tag/release to require for system version -+TAG=$(cd ../graphitedev/ && hg parents --template {latesttag}) -+ -+perl -p -i -e "s/[0-9]+\,[0-9]+\,[0-9]+/$TAG/ and tr/./,/ \ ++perl -p -i -e "s/[0-9]+\,[0-9]+\,[0-9]+/$RELEASE/ and tr/./,/ \ + if /GR2_VERSION_REQUIRE/" configure.in + # summarize what's been touched Modified: branches/2016Q1/www/firefox-esr-i18n/Makefile ============================================================================== --- branches/2016Q1/www/firefox-esr-i18n/Makefile Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/www/firefox-esr-i18n/Makefile Tue Mar 8 18:19:56 2016 (r410638) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 38.6.0 +PORTVERSION= 38.7.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build1/linux-i686/xpi Modified: branches/2016Q1/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2016Q1/www/firefox-esr-i18n/distinfo Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/www/firefox-esr-i18n/distinfo Tue Mar 8 18:19:56 2016 (r410638) @@ -1,176 +1,176 @@ -SHA256 (xpi/firefox-38.6.0/ach.xpi) = c255636e39aa7211af2ddc0135dac1d4f12e7d5caa7e05550bf11f29d1facae0 -SIZE (xpi/firefox-38.6.0/ach.xpi) = 477970 -SHA256 (xpi/firefox-38.6.0/af.xpi) = 75312cd630c037ddc2e50a43597e1c0242634c40d6b8353e20c5cf6b3416f187 -SIZE (xpi/firefox-38.6.0/af.xpi) = 483326 -SHA256 (xpi/firefox-38.6.0/an.xpi) = 5038a20d58fe4673ac8980b2030a797543c6f9d09bccdc32e4bc2d59acfb3187 -SIZE (xpi/firefox-38.6.0/an.xpi) = 461423 -SHA256 (xpi/firefox-38.6.0/ar.xpi) = 1d3b3f37f4c755915bf091d0bf21db7312d5d26bfdc72362aefedcd51d616e8e -SIZE (xpi/firefox-38.6.0/ar.xpi) = 516496 -SHA256 (xpi/firefox-38.6.0/as.xpi) = fa2194dd7e6a3b7dacf813117fe96f901be71776cf41cbaaa49fa2922edc252a -SIZE (xpi/firefox-38.6.0/as.xpi) = 509575 -SHA256 (xpi/firefox-38.6.0/ast.xpi) = 8982310d306ce78b1b03b23271cac18757b06ac68817517c7cef7b35e39918f6 -SIZE (xpi/firefox-38.6.0/ast.xpi) = 397203 -SHA256 (xpi/firefox-38.6.0/az.xpi) = 530c487310ebbbc5fdba19ef21ed8bac6014d9e384b91bf81c683d01b163fa82 -SIZE (xpi/firefox-38.6.0/az.xpi) = 489153 -SHA256 (xpi/firefox-38.6.0/be.xpi) = 4e3bd7e6a26a636e031a9afefcca6e54ba2a2c8ad5435d3471a9d41267dc3588 -SIZE (xpi/firefox-38.6.0/be.xpi) = 441057 -SHA256 (xpi/firefox-38.6.0/bg.xpi) = d25359f143a0c4dd23fcfe4804b3f01662d4e97206be8440881d39d15064c6c3 -SIZE (xpi/firefox-38.6.0/bg.xpi) = 487819 -SHA256 (xpi/firefox-38.6.0/bn-BD.xpi) = fa83a06b8b8ce4454a3543b13bbed40e92b8be87c3607b93d5efa41fa01f6d3d -SIZE (xpi/firefox-38.6.0/bn-BD.xpi) = 528690 -SHA256 (xpi/firefox-38.6.0/bn-IN.xpi) = 987259cc1f6dedb91988c3281c5f26c5a07325e289df8a2090e44e408f8efb66 -SIZE (xpi/firefox-38.6.0/bn-IN.xpi) = 527928 -SHA256 (xpi/firefox-38.6.0/br.xpi) = 64ac19d617f39376ef338f13cb114199407ac77c939f6b909092c394edc3567b -SIZE (xpi/firefox-38.6.0/br.xpi) = 441962 -SHA256 (xpi/firefox-38.6.0/bs.xpi) = 548f4326b19b535d9925e51a87d63df9e94c3fcec475d330123cf2426c8a3abd -SIZE (xpi/firefox-38.6.0/bs.xpi) = 485305 -SHA256 (xpi/firefox-38.6.0/ca.xpi) = c33d6a7afc0ab3381103b098c180a6f648e5373f2df06fcd495b18c486730bd1 -SIZE (xpi/firefox-38.6.0/ca.xpi) = 458092 -SHA256 (xpi/firefox-38.6.0/cs.xpi) = 982fcc4c7e45424b68370aa50ab98dbf1770c55baae8bffc09e25b9bb04a6031 -SIZE (xpi/firefox-38.6.0/cs.xpi) = 446727 -SHA256 (xpi/firefox-38.6.0/cy.xpi) = 6c3ee40c1b326172a55866b1f21ede38d8b94598e85c9b6f16a6ac7f269d515a -SIZE (xpi/firefox-38.6.0/cy.xpi) = 444385 -SHA256 (xpi/firefox-38.6.0/da.xpi) = 375b9c390e90612e7a9e847ec2b3a71527ee4ad79231b70b2ae9c67ca1fd5a19 -SIZE (xpi/firefox-38.6.0/da.xpi) = 450763 -SHA256 (xpi/firefox-38.6.0/de.xpi) = 8bdc8b5e21eb9f2c8c5a179cc60e7e23f2b3e34debd5bef69201d6cb347f3b83 -SIZE (xpi/firefox-38.6.0/de.xpi) = 451630 -SHA256 (xpi/firefox-38.6.0/dsb.xpi) = f9b41e8fa739b7c012ca5b4dabc24333688a1798c51f44108096ff27164fbc7a -SIZE (xpi/firefox-38.6.0/dsb.xpi) = 470924 -SHA256 (xpi/firefox-38.6.0/el.xpi) = f746ebe43d8b4848fcca795e753f4daa52b83e1fbe8b5148f460d7eed993f7a4 -SIZE (xpi/firefox-38.6.0/el.xpi) = 498370 -SHA256 (xpi/firefox-38.6.0/en-GB.xpi) = ac83745df0734e618b6a5b52166c9e2564c40ed16691da121ee0aeb7eefff506 -SIZE (xpi/firefox-38.6.0/en-GB.xpi) = 437845 -SHA256 (xpi/firefox-38.6.0/en-US.xpi) = c71966224748f8c4b17cd465c61a12d6cd0b442d31af0851212a93c2fd611377 -SIZE (xpi/firefox-38.6.0/en-US.xpi) = 469718 -SHA256 (xpi/firefox-38.6.0/en-ZA.xpi) = 288f473e35d4b682e45a2b82d2219adbddefed8bbe33d051ddd8d8de9fa9adc9 -SIZE (xpi/firefox-38.6.0/en-ZA.xpi) = 439926 -SHA256 (xpi/firefox-38.6.0/eo.xpi) = 03dd766b490847583cbf2765b4cf81ff23da75739e60918811c406af846f43c5 -SIZE (xpi/firefox-38.6.0/eo.xpi) = 488370 -SHA256 (xpi/firefox-38.6.0/es-AR.xpi) = c2599ff3ee9f099478427831f8f244252d16be7fc165f9d686cfe35b5a97cafe -SIZE (xpi/firefox-38.6.0/es-AR.xpi) = 453983 -SHA256 (xpi/firefox-38.6.0/es-CL.xpi) = e0cb68b939d965387e706f02fb5771fb091900ec392b135cfebdc3f1668213fc -SIZE (xpi/firefox-38.6.0/es-CL.xpi) = 384679 -SHA256 (xpi/firefox-38.6.0/es-ES.xpi) = a444361e1c0a3003f0f51285429096abea71309e358b3d308266a95773d7b3d9 -SIZE (xpi/firefox-38.6.0/es-ES.xpi) = 374073 -SHA256 (xpi/firefox-38.6.0/es-MX.xpi) = 9f78e0b078724d2f81e0a510c89388de42573086ca999c1a7b98af665761ef58 -SIZE (xpi/firefox-38.6.0/es-MX.xpi) = 457050 -SHA256 (xpi/firefox-38.6.0/et.xpi) = 23d0b0a9da9d207775c82f3f0b4b99d1bef54e1d50e9ca8920748ddbb3bd17a8 -SIZE (xpi/firefox-38.6.0/et.xpi) = 443228 -SHA256 (xpi/firefox-38.6.0/eu.xpi) = 114f0b7a0266d89545475d9e84b17ce9e44ef9430ae7e97dd8dfe746aa6924b4 -SIZE (xpi/firefox-38.6.0/eu.xpi) = 466555 -SHA256 (xpi/firefox-38.6.0/fa.xpi) = 6a1e3e580ed74ba93e3691bb25a4a1775975d13e6cee6c911735a942f1b78e00 -SIZE (xpi/firefox-38.6.0/fa.xpi) = 518282 -SHA256 (xpi/firefox-38.6.0/ff.xpi) = 9b9d0bee17df92ae143e1894f7fa3b628495c43263589a13a0c5b043c61a3ee3 -SIZE (xpi/firefox-38.6.0/ff.xpi) = 454587 -SHA256 (xpi/firefox-38.6.0/fi.xpi) = c574888f1b30a6e360b4b1c1cacd84cbc2b18108fadcbd49ac4ccfd47e924b65 -SIZE (xpi/firefox-38.6.0/fi.xpi) = 444853 -SHA256 (xpi/firefox-38.6.0/fr.xpi) = da189e63a07aa2d26784e5ddcb7041fb969dc63c3f147f566290e5f55581d083 -SIZE (xpi/firefox-38.6.0/fr.xpi) = 461402 -SHA256 (xpi/firefox-38.6.0/fy-NL.xpi) = ec064490e4c4bdc05eca33974878cdb079ba144f9dac4fa497296d030441265c -SIZE (xpi/firefox-38.6.0/fy-NL.xpi) = 455538 -SHA256 (xpi/firefox-38.6.0/ga-IE.xpi) = c009652b9800dfa3f38e07b5d89e9bc6b2f0e8056926420afbd99ec9aa322e8d -SIZE (xpi/firefox-38.6.0/ga-IE.xpi) = 469623 -SHA256 (xpi/firefox-38.6.0/gd.xpi) = 04e9ce1235b1fa0d726e0925472fdad4a9ebd8b6baf80392f77e9f7f44afc665 -SIZE (xpi/firefox-38.6.0/gd.xpi) = 454617 -SHA256 (xpi/firefox-38.6.0/gl.xpi) = ef4c959d24191e6abd54eb03bf7848a08f7ac4f0196e219c6074bea377e87ff4 -SIZE (xpi/firefox-38.6.0/gl.xpi) = 448925 -SHA256 (xpi/firefox-38.6.0/gu-IN.xpi) = e5380052b2adae2e99e592cc28d9a1ecff4dfbb74103abe4432d9688feabe452 -SIZE (xpi/firefox-38.6.0/gu-IN.xpi) = 477981 -SHA256 (xpi/firefox-38.6.0/he.xpi) = a9992a670f7c2412202b6c87e849c59d23e68f793770d06dd436ca274ffa921f -SIZE (xpi/firefox-38.6.0/he.xpi) = 486786 -SHA256 (xpi/firefox-38.6.0/hi-IN.xpi) = 4e68a008b7d0fd078d239bfc417ea4dcf2f505f97b39351c3b74d4147f847186 -SIZE (xpi/firefox-38.6.0/hi-IN.xpi) = 508167 -SHA256 (xpi/firefox-38.6.0/hr.xpi) = 34f86d16e2f1db465e44bafb53d23f858caa0f2e42f46b0a9270fe57c1a86fb3 -SIZE (xpi/firefox-38.6.0/hr.xpi) = 478272 -SHA256 (xpi/firefox-38.6.0/hsb.xpi) = 194a7950be8a0062e8b6ac9205025ee5ea6394b67c9a8af7642878ea84e16161 -SIZE (xpi/firefox-38.6.0/hsb.xpi) = 468720 -SHA256 (xpi/firefox-38.6.0/hu.xpi) = c5423d6a3f9e67c6ebc5db09befee3bbccf4d9de16f52533a1fa08c22b5f2ecc -SIZE (xpi/firefox-38.6.0/hu.xpi) = 453555 -SHA256 (xpi/firefox-38.6.0/hy-AM.xpi) = 0ff3c6e8fcd716047daf002ed2b58254fccb82d22c5de1a7fe780d1eea7d771f -SIZE (xpi/firefox-38.6.0/hy-AM.xpi) = 534265 -SHA256 (xpi/firefox-38.6.0/id.xpi) = 34fc6704d13c6bad38932eaa9c57221fe7b54e5c57acf2e49a184d0c7c4660e1 -SIZE (xpi/firefox-38.6.0/id.xpi) = 431489 -SHA256 (xpi/firefox-38.6.0/is.xpi) = 9a13253adc716018e7fa522915c2a9aca3a4d7daf5cb12b61ec77a7df4c2f3e1 -SIZE (xpi/firefox-38.6.0/is.xpi) = 485129 -SHA256 (xpi/firefox-38.6.0/it.xpi) = 3e78f0900b56104b61baab01e636256e8cd6d1241f142e2957d566b86ea79ba0 -SIZE (xpi/firefox-38.6.0/it.xpi) = 368410 -SHA256 (xpi/firefox-38.6.0/ja.xpi) = 693b4c0256e2252077bd4b3823ebf1cd2fde98d145da0ecdf8824133e445e165 -SIZE (xpi/firefox-38.6.0/ja.xpi) = 479114 -SHA256 (xpi/firefox-38.6.0/kk.xpi) = c9668fad6190cc7c7d1d71c8bf01aa46c9ee565ff0f08959a8be3a4343e68f96 -SIZE (xpi/firefox-38.6.0/kk.xpi) = 503568 -SHA256 (xpi/firefox-38.6.0/km.xpi) = 78dd06c63acdd8cff52f2c08604f612bd98f2ac9029b6da11913e9a5053e0f50 -SIZE (xpi/firefox-38.6.0/km.xpi) = 565674 -SHA256 (xpi/firefox-38.6.0/kn.xpi) = fe1f07f526b2a4069e69bf746e31fe435058f8eb0daf24e72e0362af00e0679a -SIZE (xpi/firefox-38.6.0/kn.xpi) = 533463 -SHA256 (xpi/firefox-38.6.0/ko.xpi) = 6be4f4e43fed606021d2218ec2cfe3712c63c737692b9116296a85ffe11650c5 -SIZE (xpi/firefox-38.6.0/ko.xpi) = 460854 -SHA256 (xpi/firefox-38.6.0/lij.xpi) = 9aa99d3d6db52466bd8fb52cad7df1e30bcf65ac5183e748dde2bbdf23783f08 -SIZE (xpi/firefox-38.6.0/lij.xpi) = 444238 -SHA256 (xpi/firefox-38.6.0/lt.xpi) = 824b6142ec3d13f31d4ea77b9a548eb66eab4942e745a719e197fa5813578ea1 -SIZE (xpi/firefox-38.6.0/lt.xpi) = 486451 -SHA256 (xpi/firefox-38.6.0/lv.xpi) = 28cdc44b46e3126c60091b664e9fe3c5ed8116372acd13182e46ef5a6024bfe4 -SIZE (xpi/firefox-38.6.0/lv.xpi) = 467198 -SHA256 (xpi/firefox-38.6.0/mai.xpi) = bafb8f90a8162dd03f3d2f49aae061411e0b412ca15c85c9da82150bb034769a -SIZE (xpi/firefox-38.6.0/mai.xpi) = 514666 -SHA256 (xpi/firefox-38.6.0/mk.xpi) = 69bb1d10e0f265342b4f4826766d0f6b13f3d777a0bafc448173f6441512a3f5 -SIZE (xpi/firefox-38.6.0/mk.xpi) = 529205 -SHA256 (xpi/firefox-38.6.0/ml.xpi) = 67ad0c3738ce988fd14536da26873519bc707e554e57e02e08c36a74228328b0 -SIZE (xpi/firefox-38.6.0/ml.xpi) = 528919 -SHA256 (xpi/firefox-38.6.0/mr.xpi) = f9e656e45fe64f95a2abb818ddcb8e2344ea42545c59f8f6d29909f181933120 -SIZE (xpi/firefox-38.6.0/mr.xpi) = 505962 -SHA256 (xpi/firefox-38.6.0/ms.xpi) = b0781182df3a057e95cf2397b686baaa8c625bf34044b669fab213d3caa0c7ed -SIZE (xpi/firefox-38.6.0/ms.xpi) = 489872 -SHA256 (xpi/firefox-38.6.0/nb-NO.xpi) = d2d6e1fb4c126dd0736994613682439201d7f0b4ec25a64aeedd18ba5ce89c79 -SIZE (xpi/firefox-38.6.0/nb-NO.xpi) = 444177 -SHA256 (xpi/firefox-38.6.0/nl.xpi) = 963ef9ce080aa18c0c4dac7e1192368025be95d7a0e4363ea63006a0950c85ad -SIZE (xpi/firefox-38.6.0/nl.xpi) = 443994 -SHA256 (xpi/firefox-38.6.0/nn-NO.xpi) = a05ec5d5da615d06a060df9e005d1cc4ebc2c82bca7d8836c06ba9a138f3ce5b -SIZE (xpi/firefox-38.6.0/nn-NO.xpi) = 438452 -SHA256 (xpi/firefox-38.6.0/or.xpi) = 526b2590f5b213d4b90d2e8a3a55723f3a551dc0ad98fbc8c40898cfeb82d58b -SIZE (xpi/firefox-38.6.0/or.xpi) = 527049 -SHA256 (xpi/firefox-38.6.0/pa-IN.xpi) = 16c2d17420c49a4f7fffdc978e9a114748ae0cfe76ee0f8db721ceef8a9bdc94 -SIZE (xpi/firefox-38.6.0/pa-IN.xpi) = 493722 -SHA256 (xpi/firefox-38.6.0/pl.xpi) = 8d918d988341c462b0b621c7d0cd9d77ff49c14b0e2b1bf134e99e9cc4469fb1 -SIZE (xpi/firefox-38.6.0/pl.xpi) = 406566 -SHA256 (xpi/firefox-38.6.0/pt-BR.xpi) = 396e9bfe5192511c0ad67107dcd8e9bcda83de94d62095ca10f6af4433d59100 -SIZE (xpi/firefox-38.6.0/pt-BR.xpi) = 459813 -SHA256 (xpi/firefox-38.6.0/pt-PT.xpi) = 7968f2e7b2a5da76d82312230d5486f8c8b59ddef18d43d0c3e43581ebe717d8 -SIZE (xpi/firefox-38.6.0/pt-PT.xpi) = 439975 -SHA256 (xpi/firefox-38.6.0/rm.xpi) = 7813fc4421fb3c08ec81e60ce955194f9f2a376662262da4a0f320db5caff342 -SIZE (xpi/firefox-38.6.0/rm.xpi) = 446288 -SHA256 (xpi/firefox-38.6.0/ro.xpi) = 7476011cb35e32f3cfa265621d830cac44d4912f5a5a3814c5c31e9cc5b899bc -SIZE (xpi/firefox-38.6.0/ro.xpi) = 494079 -SHA256 (xpi/firefox-38.6.0/ru.xpi) = 145b4bef6d8fa5f644d3d1726bd7fa3d5679d3dfa1c456a0e39be3bb98b64ab9 -SIZE (xpi/firefox-38.6.0/ru.xpi) = 414418 -SHA256 (xpi/firefox-38.6.0/si.xpi) = 1ba99487b2dba24c1a34f9cb3355492fc7002d1e15f00402788aa14bf1ea8483 -SIZE (xpi/firefox-38.6.0/si.xpi) = 537394 -SHA256 (xpi/firefox-38.6.0/sk.xpi) = b3cc30232399d25c130fbbf8476ef56013589b370ec44c18e76eb61caa4a457b -SIZE (xpi/firefox-38.6.0/sk.xpi) = 469436 -SHA256 (xpi/firefox-38.6.0/sl.xpi) = 77982fb211296342a39d5b16e2d538b8d4cecf7ab5a8ef7d958fb373bc32dd63 -SIZE (xpi/firefox-38.6.0/sl.xpi) = 441594 -SHA256 (xpi/firefox-38.6.0/son.xpi) = 0c80545bab1f7119067bafcecbcef0f902393fd3451a71dfc90122a6f0b8701e -SIZE (xpi/firefox-38.6.0/son.xpi) = 449267 -SHA256 (xpi/firefox-38.6.0/sq.xpi) = 6f3d9fcfff460a162fc3e0cfe75a8bccfbf5eddc8d683117474c99d07f47100b -SIZE (xpi/firefox-38.6.0/sq.xpi) = 486076 -SHA256 (xpi/firefox-38.6.0/sr.xpi) = 825d25c1d7b7fd15919579e5930bc6d146dd9c39ba31ee544bb78da7ba1a9b5e -SIZE (xpi/firefox-38.6.0/sr.xpi) = 479419 -SHA256 (xpi/firefox-38.6.0/sv-SE.xpi) = 62c5280c5e49f47c0c6136c41196db112b220bbc238e8219b989805bcfe66dd3 -SIZE (xpi/firefox-38.6.0/sv-SE.xpi) = 452633 -SHA256 (xpi/firefox-38.6.0/ta.xpi) = 57decfe700c7e047c10f39d8ef0a5d0a9f6f606fdbced530dff906cdba42bc43 -SIZE (xpi/firefox-38.6.0/ta.xpi) = 506606 -SHA256 (xpi/firefox-38.6.0/te.xpi) = a87f56bb7ebe1c01c0dd3aca66f0542d6c769e01171e99e6667a4f226cef2635 -SIZE (xpi/firefox-38.6.0/te.xpi) = 526253 -SHA256 (xpi/firefox-38.6.0/th.xpi) = c0e6584c2265cb1c2a5c55547e9ac11ae09817e26e3dea8f6b00334c3262a60a -SIZE (xpi/firefox-38.6.0/th.xpi) = 534270 -SHA256 (xpi/firefox-38.6.0/tr.xpi) = d05ea4e1f54a2356eb9062432280f85ac4733a1938eba039a01b5c7359913a24 -SIZE (xpi/firefox-38.6.0/tr.xpi) = 481076 -SHA256 (xpi/firefox-38.6.0/uk.xpi) = f81f6f044d01cb8fe1e5e56fd80524a735d08dd6b75ed88b05980aafbbaa3c5b -SIZE (xpi/firefox-38.6.0/uk.xpi) = 493313 -SHA256 (xpi/firefox-38.6.0/vi.xpi) = 3c07c24f533e3eb27f3189cfa384ef815a55cb8d160e706e0506f9d676a9ca9d -SIZE (xpi/firefox-38.6.0/vi.xpi) = 467504 -SHA256 (xpi/firefox-38.6.0/xh.xpi) = 5d23ed0ff61a1f9b7c4153450df002b3f4e559a60ed17e93d7b0f350f6130974 -SIZE (xpi/firefox-38.6.0/xh.xpi) = 450242 -SHA256 (xpi/firefox-38.6.0/zh-CN.xpi) = b1401c37e9e44bc01e2e3627ec82dea93346681d6259e6cf14079fb973ae20ca -SIZE (xpi/firefox-38.6.0/zh-CN.xpi) = 488277 -SHA256 (xpi/firefox-38.6.0/zh-TW.xpi) = e94521a7cabb0230dce0448e743c5986cff74bc4a7ef8ea7280e45e1d257237e -SIZE (xpi/firefox-38.6.0/zh-TW.xpi) = 467844 +SHA256 (xpi/firefox-38.7.0/ach.xpi) = 13f9ac03607c3cab58a7953c8aa7f1c1680f973889c87e994e7a01263ec02244 +SIZE (xpi/firefox-38.7.0/ach.xpi) = 477970 +SHA256 (xpi/firefox-38.7.0/af.xpi) = 675521824a2e97011f7faeb4bbfff192bce561bd837628038b26c1ad01d5a418 +SIZE (xpi/firefox-38.7.0/af.xpi) = 483326 +SHA256 (xpi/firefox-38.7.0/an.xpi) = 51f5fd73f1212958b7795408d560d30f25ba1c41fb332009cc03a4209b25d743 +SIZE (xpi/firefox-38.7.0/an.xpi) = 461423 +SHA256 (xpi/firefox-38.7.0/ar.xpi) = dfe75ee99959cb9d652d60dd64bb7ce747a42738c652323b7572f90725484425 +SIZE (xpi/firefox-38.7.0/ar.xpi) = 516496 +SHA256 (xpi/firefox-38.7.0/as.xpi) = 6c359b6563cd8a154bb700df8756eb2dd5dc8dd3f4634e43f5fd8a95dc1daf26 +SIZE (xpi/firefox-38.7.0/as.xpi) = 509574 +SHA256 (xpi/firefox-38.7.0/ast.xpi) = 733b8814356d1793e5b21f5bd22e8755aa95a0bcae52065d9a14ae55f5318487 +SIZE (xpi/firefox-38.7.0/ast.xpi) = 397202 +SHA256 (xpi/firefox-38.7.0/az.xpi) = 0fce3adc074c7b220be8d3853d3a69294eba820dc5ebe039920c588c56c9bae4 +SIZE (xpi/firefox-38.7.0/az.xpi) = 489153 +SHA256 (xpi/firefox-38.7.0/be.xpi) = cefa4008bf9b9e626da7c305df66ca3130817ca345ec9fbd3d63696e0cac2ed9 +SIZE (xpi/firefox-38.7.0/be.xpi) = 441057 +SHA256 (xpi/firefox-38.7.0/bg.xpi) = 8a21a68c2c6a2be71c56628b7c8b0a2c14cfb222442b39196b2fcf0ddba606bd +SIZE (xpi/firefox-38.7.0/bg.xpi) = 487819 +SHA256 (xpi/firefox-38.7.0/bn-BD.xpi) = b3b24bfc6d82b215b993b101d8449213bb5420747b8fc4f0fc5c3a4d59c86025 +SIZE (xpi/firefox-38.7.0/bn-BD.xpi) = 528690 +SHA256 (xpi/firefox-38.7.0/bn-IN.xpi) = c85dd33850666a98ee7d4e0d623253a8666bed8058baf513055d9f9a3aa9f121 +SIZE (xpi/firefox-38.7.0/bn-IN.xpi) = 527928 +SHA256 (xpi/firefox-38.7.0/br.xpi) = 1f77a10ad399a6ad1322b6b49d6cd11ad8c411e6c4766a5572edccdd0ea60ebc +SIZE (xpi/firefox-38.7.0/br.xpi) = 441962 +SHA256 (xpi/firefox-38.7.0/bs.xpi) = b1a665636d1d9d9a0b3734e13108942f1610d23fcb53610896040a48257bf822 +SIZE (xpi/firefox-38.7.0/bs.xpi) = 485305 +SHA256 (xpi/firefox-38.7.0/ca.xpi) = ea50a72ef42e10784e354fabf0a2cb7b4c60c80a4dfc98b897670168cd862b5c +SIZE (xpi/firefox-38.7.0/ca.xpi) = 458092 +SHA256 (xpi/firefox-38.7.0/cs.xpi) = b03bfb659c78654dd49b81f8e1252be0627f698ed025e7fa389fdecc563d4cbb +SIZE (xpi/firefox-38.7.0/cs.xpi) = 446727 +SHA256 (xpi/firefox-38.7.0/cy.xpi) = bd56baaa4acd1f2101c1cac3cbdd1c79d9eb3ce2670b278dbc4f04ec6fabb927 +SIZE (xpi/firefox-38.7.0/cy.xpi) = 444385 +SHA256 (xpi/firefox-38.7.0/da.xpi) = 8c783499ffeaa1348c8f851e81de1ac5ab585ef1ae3394381b3693b331be4db7 +SIZE (xpi/firefox-38.7.0/da.xpi) = 450763 +SHA256 (xpi/firefox-38.7.0/de.xpi) = 0806bd6faacefddafa7c39398ed665743067d0183d0993a32682824637aa235e +SIZE (xpi/firefox-38.7.0/de.xpi) = 451629 +SHA256 (xpi/firefox-38.7.0/dsb.xpi) = e4c74689fc5f8866f77c913771c08ad55a30d7f1742cc0785a3f8174c2d79b7e +SIZE (xpi/firefox-38.7.0/dsb.xpi) = 470924 +SHA256 (xpi/firefox-38.7.0/el.xpi) = 303cc36d14f2e55363742e964189e6801e9ecd0581046fd3af7aadf93df3e060 +SIZE (xpi/firefox-38.7.0/el.xpi) = 498370 +SHA256 (xpi/firefox-38.7.0/en-GB.xpi) = 17f9ab721c3fdb07301f92403175cbbf6af26ccf3caa16bd6d235f5fb34f4a13 +SIZE (xpi/firefox-38.7.0/en-GB.xpi) = 437846 +SHA256 (xpi/firefox-38.7.0/en-US.xpi) = 77e6e609a497831b9ae2d98bdd17edbc19823729fb6360cfc58f707b4612d889 +SIZE (xpi/firefox-38.7.0/en-US.xpi) = 469718 +SHA256 (xpi/firefox-38.7.0/en-ZA.xpi) = f8ba2a291ec8f1f76ae9c77c61a04828d61675868e8ae20e8496433c04fe97d2 +SIZE (xpi/firefox-38.7.0/en-ZA.xpi) = 439925 +SHA256 (xpi/firefox-38.7.0/eo.xpi) = 16325f9a8d319bade04a80d292c346a93a0a600a66c488030fbe7da04de43dfd +SIZE (xpi/firefox-38.7.0/eo.xpi) = 488370 +SHA256 (xpi/firefox-38.7.0/es-AR.xpi) = e67c2677d97e377402c6e3c631c464e3b1d09b9dbfa98a5ee3d80e5e77d83e60 +SIZE (xpi/firefox-38.7.0/es-AR.xpi) = 453983 +SHA256 (xpi/firefox-38.7.0/es-CL.xpi) = 0cb202243fa465e64911df8b5b1398e590ed8f0e5c179b531a9327545b689b89 +SIZE (xpi/firefox-38.7.0/es-CL.xpi) = 384679 +SHA256 (xpi/firefox-38.7.0/es-ES.xpi) = 06a62fc36f67888d466578f709142ae4cd5214381c1ac3fb6f8fb77dac7a0068 +SIZE (xpi/firefox-38.7.0/es-ES.xpi) = 374073 +SHA256 (xpi/firefox-38.7.0/es-MX.xpi) = 2ff975e49eaef5bfac33041f01ddda721347b3989c8d4cd33497ad8db5631244 +SIZE (xpi/firefox-38.7.0/es-MX.xpi) = 457049 +SHA256 (xpi/firefox-38.7.0/et.xpi) = 36cece5266be3ce9cbceb268ea13ce7626c267e3f460d53d1fe67b18ae180873 +SIZE (xpi/firefox-38.7.0/et.xpi) = 443228 +SHA256 (xpi/firefox-38.7.0/eu.xpi) = 9999fdaf81298fa7439e61ca540a3714f36e2f9e106597545a28436956186f1d +SIZE (xpi/firefox-38.7.0/eu.xpi) = 466555 +SHA256 (xpi/firefox-38.7.0/fa.xpi) = 7d42c57dcb72f70f41771047289a01cb36f7367fc57dca8e0242ebb0b57e2ee5 +SIZE (xpi/firefox-38.7.0/fa.xpi) = 518282 +SHA256 (xpi/firefox-38.7.0/ff.xpi) = 71be50b930c6427cd7bd35e9614f0f8f49327542449db22b4d11ea8402b5f853 +SIZE (xpi/firefox-38.7.0/ff.xpi) = 454587 +SHA256 (xpi/firefox-38.7.0/fi.xpi) = ecf2f59b7cd408b65c9d3435c2993ffba70358f3dca658faf331cda74decec1d +SIZE (xpi/firefox-38.7.0/fi.xpi) = 444852 +SHA256 (xpi/firefox-38.7.0/fr.xpi) = 8f42798e5600f7503b631ad651afce7a3c7c10ad6550de57a53dee28785b01a3 +SIZE (xpi/firefox-38.7.0/fr.xpi) = 461402 +SHA256 (xpi/firefox-38.7.0/fy-NL.xpi) = d982dddc3b969f701e006a7fa471c8c374c3fc0f294b297db98e7e5f3acb9cd8 +SIZE (xpi/firefox-38.7.0/fy-NL.xpi) = 455538 +SHA256 (xpi/firefox-38.7.0/ga-IE.xpi) = 5576ab51f6a71ef4d7c3b4954dfc31da693d000e4711c9ebbdac8e4bb8d7ba68 +SIZE (xpi/firefox-38.7.0/ga-IE.xpi) = 469623 +SHA256 (xpi/firefox-38.7.0/gd.xpi) = 54717fc0dc4ab75462d9c9b99c4e18348921fcaddf9ddab985016fed2458bfaa +SIZE (xpi/firefox-38.7.0/gd.xpi) = 454617 +SHA256 (xpi/firefox-38.7.0/gl.xpi) = b12e342799c4dbea920bcbf40713b7084477d32e4ce1ecf36bcd52aba77a85f9 +SIZE (xpi/firefox-38.7.0/gl.xpi) = 448925 +SHA256 (xpi/firefox-38.7.0/gu-IN.xpi) = 9d0bc5473c3224a398c8fc12b486226829c77bfee18dd4d070aaadbf811ef47a +SIZE (xpi/firefox-38.7.0/gu-IN.xpi) = 477981 +SHA256 (xpi/firefox-38.7.0/he.xpi) = 7114fad93c7a1e075c690f9213845850236eebefa64e68dddeca7e3c197c2d46 +SIZE (xpi/firefox-38.7.0/he.xpi) = 486785 +SHA256 (xpi/firefox-38.7.0/hi-IN.xpi) = 17b8b3ae8894c45b243a115f31b67c42171183db9f26c8771fe23e2bdc26e409 +SIZE (xpi/firefox-38.7.0/hi-IN.xpi) = 508167 +SHA256 (xpi/firefox-38.7.0/hr.xpi) = f1e543718daea0a958ff404853cfe8aff3d1f20fcb1764bad7e91f70d5d70977 +SIZE (xpi/firefox-38.7.0/hr.xpi) = 478272 +SHA256 (xpi/firefox-38.7.0/hsb.xpi) = 7deef68e6c2e5584cdf75f2a37928b61bfeeaa80705ec6f7991502dc6543ff96 +SIZE (xpi/firefox-38.7.0/hsb.xpi) = 468720 +SHA256 (xpi/firefox-38.7.0/hu.xpi) = ae16e0e3c3aa611f304eb4ee0ecf71f5f1ecb97403e5a3cc58bd51c81ebe5907 +SIZE (xpi/firefox-38.7.0/hu.xpi) = 453555 +SHA256 (xpi/firefox-38.7.0/hy-AM.xpi) = 2ebeb1d66b8ecb668cbae16ecdd4a88bc4e17513550024d079ae836b8a9a7c38 +SIZE (xpi/firefox-38.7.0/hy-AM.xpi) = 534265 +SHA256 (xpi/firefox-38.7.0/id.xpi) = 070a243a0d20ae06bc46c8d86441f930f4c5fc1af189dfe429079c90a3e10579 +SIZE (xpi/firefox-38.7.0/id.xpi) = 431489 +SHA256 (xpi/firefox-38.7.0/is.xpi) = c273405ae5996b0039185f35e6f28ab508a062883d837fd93606519fa7556531 +SIZE (xpi/firefox-38.7.0/is.xpi) = 485129 +SHA256 (xpi/firefox-38.7.0/it.xpi) = 9f0848c8890933393448b157678dc3ac26280e755bb37c5537a7e14d067bf1fd +SIZE (xpi/firefox-38.7.0/it.xpi) = 368409 +SHA256 (xpi/firefox-38.7.0/ja.xpi) = 01630ef878f1e27195a5d4c2d95ad699b8486d2da55f1e825208e61b0ea75b56 +SIZE (xpi/firefox-38.7.0/ja.xpi) = 479113 +SHA256 (xpi/firefox-38.7.0/kk.xpi) = 9d831e42ddfb4547b4b9a400aaa13e9a475690fc773a25fa378bc7e4f4982ef7 +SIZE (xpi/firefox-38.7.0/kk.xpi) = 503568 +SHA256 (xpi/firefox-38.7.0/km.xpi) = 2b61042ad4ce32d17aa4155adfeb3c7c08ff9aa7be277f74ad15086d16d98417 +SIZE (xpi/firefox-38.7.0/km.xpi) = 565674 +SHA256 (xpi/firefox-38.7.0/kn.xpi) = 268610b36017f8ded45e4bb58d011d880a8cb58646878dd54e4349801771361b +SIZE (xpi/firefox-38.7.0/kn.xpi) = 533464 +SHA256 (xpi/firefox-38.7.0/ko.xpi) = aac90f894f76b041caa9e7bcb1107aed957027f8e6507460929530aa112dfc21 +SIZE (xpi/firefox-38.7.0/ko.xpi) = 460854 +SHA256 (xpi/firefox-38.7.0/lij.xpi) = 73ba047446d0a233012b599d4215cc1fefe20f23e13d5a384f4e5f67f837160e +SIZE (xpi/firefox-38.7.0/lij.xpi) = 444238 +SHA256 (xpi/firefox-38.7.0/lt.xpi) = b589944b8ee53a15112b2f60e8ea23c88ba5554b0068fc4a23bd8311993a4d59 +SIZE (xpi/firefox-38.7.0/lt.xpi) = 486451 +SHA256 (xpi/firefox-38.7.0/lv.xpi) = 6d541c9b7f367ccfe019df7654fe957c058822b74f2afc692352ac31df9ded0d +SIZE (xpi/firefox-38.7.0/lv.xpi) = 467198 +SHA256 (xpi/firefox-38.7.0/mai.xpi) = bc2aabb4cd65df8a6074031dde13c59f9ada8aa5030cba0794416bca71a6d4b7 +SIZE (xpi/firefox-38.7.0/mai.xpi) = 514666 +SHA256 (xpi/firefox-38.7.0/mk.xpi) = c4036d54add50e5aeb916f74ac73142f26c6e1e03c4a44c7a1b5db75c1cf39d2 +SIZE (xpi/firefox-38.7.0/mk.xpi) = 529205 +SHA256 (xpi/firefox-38.7.0/ml.xpi) = 522af0df3cf21a826db14ae0799e9807cfcad07414850cdaeb5379baa578159c +SIZE (xpi/firefox-38.7.0/ml.xpi) = 528919 +SHA256 (xpi/firefox-38.7.0/mr.xpi) = a2202ba9f8c91ff588ca70cf73f01e6d86c601c55c9259e151bb61d38939223e +SIZE (xpi/firefox-38.7.0/mr.xpi) = 505962 +SHA256 (xpi/firefox-38.7.0/ms.xpi) = 1acfc454d344bdd49ea2ae0212305f30de534d5facc172e1fcfa39a1558b161a +SIZE (xpi/firefox-38.7.0/ms.xpi) = 489872 +SHA256 (xpi/firefox-38.7.0/nb-NO.xpi) = a3719d4719499ae66868ebae43574de6cee8bd202b9e699a299b9f57a071dc36 +SIZE (xpi/firefox-38.7.0/nb-NO.xpi) = 444177 +SHA256 (xpi/firefox-38.7.0/nl.xpi) = 1096afd769202d4712c75042c53c1e137f5a2ac9a8f447413a06dcab66a36cf0 +SIZE (xpi/firefox-38.7.0/nl.xpi) = 443994 +SHA256 (xpi/firefox-38.7.0/nn-NO.xpi) = 195cf6bc1dca17f5ce043f422554ef3e7ad56c434568fd80b85839bda623d1a1 +SIZE (xpi/firefox-38.7.0/nn-NO.xpi) = 438451 +SHA256 (xpi/firefox-38.7.0/or.xpi) = d4bf45d3be2c55987d340a428830806db2b90b193973515d947d0236751bec22 +SIZE (xpi/firefox-38.7.0/or.xpi) = 527049 +SHA256 (xpi/firefox-38.7.0/pa-IN.xpi) = bcc1e12357e429b938645b0d4fc077e6197c3305e4586978f48fed0326fd1167 +SIZE (xpi/firefox-38.7.0/pa-IN.xpi) = 493722 +SHA256 (xpi/firefox-38.7.0/pl.xpi) = bbb14b9081d32ce2620bd3c492ea6adb2c98be08151a5b75a63e3dd91cd4cc6e +SIZE (xpi/firefox-38.7.0/pl.xpi) = 406566 +SHA256 (xpi/firefox-38.7.0/pt-BR.xpi) = aa0297b5b741640bf9b6b4361fc4d9c951ae414830df87ee19d3fbeea4163aff +SIZE (xpi/firefox-38.7.0/pt-BR.xpi) = 459813 +SHA256 (xpi/firefox-38.7.0/pt-PT.xpi) = 0503e63e891f359d88f59390f61d80f00ea35dcd2a2c716818d28c0c0959718d +SIZE (xpi/firefox-38.7.0/pt-PT.xpi) = 439975 +SHA256 (xpi/firefox-38.7.0/rm.xpi) = 01f30d99bde50853b610cec9fe8d928ae5b5613a60cf96561a23fe894b233d1a +SIZE (xpi/firefox-38.7.0/rm.xpi) = 446287 +SHA256 (xpi/firefox-38.7.0/ro.xpi) = 55a0612453ee03d7de69c56528afe31e9341232bf2b01a8d5a16a3d1da34d920 +SIZE (xpi/firefox-38.7.0/ro.xpi) = 494079 +SHA256 (xpi/firefox-38.7.0/ru.xpi) = 242413dfbffadb398fe1ece975a0f7fb105994ec5cf9d7950b142989c993539f +SIZE (xpi/firefox-38.7.0/ru.xpi) = 414419 +SHA256 (xpi/firefox-38.7.0/si.xpi) = f164812897f1c494654e7979ae926a5b219c789974e4d8b0ae392aa46ffcd560 +SIZE (xpi/firefox-38.7.0/si.xpi) = 537393 +SHA256 (xpi/firefox-38.7.0/sk.xpi) = f90f1eceed9f5cb0a13912032a5e4a5b5e35d00944e9cc040df7fc5f51eb74b7 +SIZE (xpi/firefox-38.7.0/sk.xpi) = 469436 +SHA256 (xpi/firefox-38.7.0/sl.xpi) = 023ab979c55d99cfa7f0aaed891ad581c563108c04486cf0692707745371fe8c +SIZE (xpi/firefox-38.7.0/sl.xpi) = 441594 +SHA256 (xpi/firefox-38.7.0/son.xpi) = 5f6c61868087578905e4ea214596f430edd616dd46cbe84c1cf3cb41dcd79032 +SIZE (xpi/firefox-38.7.0/son.xpi) = 449267 +SHA256 (xpi/firefox-38.7.0/sq.xpi) = fa320efc2ffb30eeec87d00c8228fe7fcdd3610ea92b9753559bda4e417f6124 +SIZE (xpi/firefox-38.7.0/sq.xpi) = 486075 +SHA256 (xpi/firefox-38.7.0/sr.xpi) = de969fde2ccfda2643f116abfa1c5873c7c6e44f02ff1540900b5023b102f6fb +SIZE (xpi/firefox-38.7.0/sr.xpi) = 479419 +SHA256 (xpi/firefox-38.7.0/sv-SE.xpi) = 2fc825281f4209eecdf8b87fade387885fd3eee96dd8881b4b6cf843e851d852 +SIZE (xpi/firefox-38.7.0/sv-SE.xpi) = 452632 +SHA256 (xpi/firefox-38.7.0/ta.xpi) = 21d282577ed6a740fd10427a5bf4ee690492f56973836cd313745e654cb8cd0b +SIZE (xpi/firefox-38.7.0/ta.xpi) = 506607 +SHA256 (xpi/firefox-38.7.0/te.xpi) = e5777274dd261914aea7f242a4a4a39ae1a5f208bec0ea32b4dc36bd4132ff46 +SIZE (xpi/firefox-38.7.0/te.xpi) = 526253 +SHA256 (xpi/firefox-38.7.0/th.xpi) = 72f825e6c4425073ce7cb9c56e97d99f9738bf8bc71fed656a78cabe73dcaddb +SIZE (xpi/firefox-38.7.0/th.xpi) = 534269 +SHA256 (xpi/firefox-38.7.0/tr.xpi) = a0923f0f7bbb0968a9df6bfa73367cee8391c6aaa1dfdd8e5cd79819c713c21e +SIZE (xpi/firefox-38.7.0/tr.xpi) = 481076 +SHA256 (xpi/firefox-38.7.0/uk.xpi) = 532caac4579be2df36ce5803f0c9cb6f9c5324e9ef7955e88b2a9ac04f03c310 +SIZE (xpi/firefox-38.7.0/uk.xpi) = 493313 +SHA256 (xpi/firefox-38.7.0/vi.xpi) = a0430eafdb9f92098f2b9f9da3c50fc5d0fbc101aa3e21531193911f8d7280d4 +SIZE (xpi/firefox-38.7.0/vi.xpi) = 467505 +SHA256 (xpi/firefox-38.7.0/xh.xpi) = f5210ae23e117575206b0dfb96f79f5dfa035fc1be4fce64dfa13da09d2003ea +SIZE (xpi/firefox-38.7.0/xh.xpi) = 450242 +SHA256 (xpi/firefox-38.7.0/zh-CN.xpi) = 113816216e3aa49334b1baa9f65162b6251921bc7d212a21365802fc3b0bb71e +SIZE (xpi/firefox-38.7.0/zh-CN.xpi) = 488277 +SHA256 (xpi/firefox-38.7.0/zh-TW.xpi) = acc18a3c2178b2fc061ecd346f412920ca49e53be6c3e25097ff7343186e3f3d +SIZE (xpi/firefox-38.7.0/zh-TW.xpi) = 467843 Modified: branches/2016Q1/www/firefox-esr/Makefile ============================================================================== --- branches/2016Q1/www/firefox-esr/Makefile Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/www/firefox-esr/Makefile Tue Mar 8 18:19:56 2016 (r410638) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 38.6.0 +DISTVERSION= 38.7.0 DISTVERSIONSUFFIX=esr.source PORTEPOCH= 1 CATEGORIES= www ipv6 Modified: branches/2016Q1/www/firefox-esr/distinfo ============================================================================== --- branches/2016Q1/www/firefox-esr/distinfo Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/www/firefox-esr/distinfo Tue Mar 8 18:19:56 2016 (r410638) @@ -1,2 +1,2 @@ -SHA256 (firefox-38.6.0esr.source.tar.bz2) = 56244705572d25c5bdca111e814a6021bfe8eaefe3773646720e6e467e59e1d1 -SIZE (firefox-38.6.0esr.source.tar.bz2) = 181354489 +SHA256 (firefox-38.7.0esr.source.tar.bz2) = 5312ad03ccff3ca233d207b6e8e433bddb893ab6acc5ca2dfc5b7c18bb0dc8c0 +SIZE (firefox-38.7.0esr.source.tar.bz2) = 181313049 Modified: branches/2016Q1/www/firefox-esr/files/patch-bug847568 ============================================================================== --- branches/2016Q1/www/firefox-esr/files/patch-bug847568 Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/www/firefox-esr/files/patch-bug847568 Tue Mar 8 18:19:56 2016 (r410638) @@ -101,22 +101,16 @@ diff --git gfx/graphite2/moz-gr-update.s index f3d76ea..a9e7fb6 100644 --- gfx/graphite2/moz-gr-update.sh +++ gfx/graphite2/moz-gr-update.sh -@@ -23,8 +23,14 @@ echo "\nSee" $0 "for update procedure.\n" >> gfx/graphite2/README.mozilla - find gfx/graphite2/ -name "*.cpp" -exec perl -p -i -e "s///;s/Windows.h/windows.h/;" {} \; - find gfx/graphite2/ -name "*.h" -exec perl -p -i -e "s///;s/Windows.h/windows.h/;" {} \; +@@ -37,6 +37,9 @@ + #find gfx/graphite2/ -name "*.cpp" -exec perl -p -i -e "s///;s/Windows.h/windows.h/;" {} \; + #find gfx/graphite2/ -name "*.h" -exec perl -p -i -e "s///;s/Windows.h/windows.h/;" {} \; -+# closest tag/release to require for system version -+TAG=$(cd ../graphitedev/ && hg parents --template {latesttag}) -+ -+perl -p -i -e "s/[0-9]+\,[0-9]+\,[0-9]+/$TAG/ and tr/./,/ \ ++perl -p -i -e "s/[0-9]+\,[0-9]+\,[0-9]+/$RELEASE/ and tr/./,/ \ + if /GR2_VERSION_REQUIRE/" configure.in + # summarize what's been touched --echo Updated to $CHANGESET. -+echo Updated to $CHANGESET \($TAG for --with-system-graphite2\) + echo Updated to $RELEASE. echo Here is what changed in the gfx/graphite2 directory: - echo - diff --git gfx/harfbuzz/README-mozilla gfx/harfbuzz/README-mozilla index ca57d16..1ce21fe 100644 --- gfx/harfbuzz/README-mozilla Modified: branches/2016Q1/www/firefox-i18n/Makefile ============================================================================== --- branches/2016Q1/www/firefox-i18n/Makefile Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/www/firefox-i18n/Makefile Tue Mar 8 18:19:56 2016 (r410638) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 44.0.2 +PORTVERSION= 45.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build2/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} @@ -15,7 +15,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:${PORTSDIR}/archivers/zip -USES= zip:infozip gecko:firefox,44,build +USES= zip:infozip gecko:firefox,45,build USE_XPI= firefox linux-firefox NO_ARCH= yes Modified: branches/2016Q1/www/firefox-i18n/distinfo ============================================================================== --- branches/2016Q1/www/firefox-i18n/distinfo Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/www/firefox-i18n/distinfo Tue Mar 8 18:19:56 2016 (r410638) @@ -1,178 +1,178 @@ -SHA256 (xpi/firefox-i18n-44.0.2/ach.xpi) = 78dd4f875e94ef5b1dd6e4ae3c6383c0b5a9dac21d8906fdd6773515e3f79c6a -SIZE (xpi/firefox-i18n-44.0.2/ach.xpi) = 488915 -SHA256 (xpi/firefox-i18n-44.0.2/af.xpi) = f80bb4cc0937f2f355d594ee1e7b771e9e3f44672161403de8228d9fd0429e01 -SIZE (xpi/firefox-i18n-44.0.2/af.xpi) = 496124 -SHA256 (xpi/firefox-i18n-44.0.2/an.xpi) = 3c5dc9c43221be35d0234a45899133fdb0603622352c60a5992d633a1b577be4 -SIZE (xpi/firefox-i18n-44.0.2/an.xpi) = 474494 -SHA256 (xpi/firefox-i18n-44.0.2/ar.xpi) = bc0c64baf89b969be23cf3310a288717fccf7ba186e89eeadc11829efebd5587 -SIZE (xpi/firefox-i18n-44.0.2/ar.xpi) = 531970 -SHA256 (xpi/firefox-i18n-44.0.2/as.xpi) = 8ca2d9c3baffcaaffdc55eb2abc074f0d58f9f68b3dd1582faacb3f7492b1fed -SIZE (xpi/firefox-i18n-44.0.2/as.xpi) = 522459 -SHA256 (xpi/firefox-i18n-44.0.2/ast.xpi) = 7506051ecfb2a57947ccf53e0a8f8234badedd8a9668326a3e3fddb455eb4673 -SIZE (xpi/firefox-i18n-44.0.2/ast.xpi) = 420007 -SHA256 (xpi/firefox-i18n-44.0.2/az.xpi) = 5ef73f1399950591414ce1902435ed274fd2b6b58efaf241aaf0cf9c314f890e -SIZE (xpi/firefox-i18n-44.0.2/az.xpi) = 503490 -SHA256 (xpi/firefox-i18n-44.0.2/be.xpi) = 8788379b0978281d0e8d75e2905b67473ed80cd8c3372c3e7e3c9d723bf7b605 -SIZE (xpi/firefox-i18n-44.0.2/be.xpi) = 464851 -SHA256 (xpi/firefox-i18n-44.0.2/bg.xpi) = 5c744cbaadea198976b091c288efa4a17928a3ccf2ada2539b3134c694efe41b -SIZE (xpi/firefox-i18n-44.0.2/bg.xpi) = 505506 -SHA256 (xpi/firefox-i18n-44.0.2/bn-BD.xpi) = ecc8fffc55bc95330c33bc8c73b365580a29ea743914c392612733e8144fba8f -SIZE (xpi/firefox-i18n-44.0.2/bn-BD.xpi) = 550932 -SHA256 (xpi/firefox-i18n-44.0.2/bn-IN.xpi) = 19940df3112df882b1a300f4bd7e7fa37a71e2c71d1f18c469511af5e3f211b4 -SIZE (xpi/firefox-i18n-44.0.2/bn-IN.xpi) = 542129 -SHA256 (xpi/firefox-i18n-44.0.2/br.xpi) = 89c22568ff520a236f8ebbd8341d353af4914a999d1e3f3e9bbf15bbd5813c15 -SIZE (xpi/firefox-i18n-44.0.2/br.xpi) = 454296 -SHA256 (xpi/firefox-i18n-44.0.2/bs.xpi) = 8b8743f5b80f13f717e81e8742cb924d77fddb7d500e96fea5e5484d641cdc34 -SIZE (xpi/firefox-i18n-44.0.2/bs.xpi) = 493434 -SHA256 (xpi/firefox-i18n-44.0.2/ca.xpi) = 23bdf6db8bedc69a32e6dd5bf5a606311f9c3bf02e80d2e496f475845bf8488b -SIZE (xpi/firefox-i18n-44.0.2/ca.xpi) = 471463 -SHA256 (xpi/firefox-i18n-44.0.2/cs.xpi) = 0746fd83deabb832a01833689f03db0df1c691a2ad4bbe1d4ded93972c2d59d2 -SIZE (xpi/firefox-i18n-44.0.2/cs.xpi) = 460608 -SHA256 (xpi/firefox-i18n-44.0.2/cy.xpi) = 5b8e07e055ecdb040c6c46cde65dbd9745eb56b365034dcb28c20e23a44d76e3 -SIZE (xpi/firefox-i18n-44.0.2/cy.xpi) = 456838 -SHA256 (xpi/firefox-i18n-44.0.2/da.xpi) = 731c91695e99d187f7d8b03e86965b073293468b1fc808b811a67024e7ffe771 -SIZE (xpi/firefox-i18n-44.0.2/da.xpi) = 463398 -SHA256 (xpi/firefox-i18n-44.0.2/de.xpi) = 0709f207725631a3eff02bba748e443e6f53ec01a63fb1a4c67c8a00bd6a4df7 -SIZE (xpi/firefox-i18n-44.0.2/de.xpi) = 466178 -SHA256 (xpi/firefox-i18n-44.0.2/dsb.xpi) = 47398d2a491510130c37da329019b77add1f8198b48b28d6d55e32da71c459aa -SIZE (xpi/firefox-i18n-44.0.2/dsb.xpi) = 484752 -SHA256 (xpi/firefox-i18n-44.0.2/el.xpi) = 682325bdf8b134ecfb9375e169ecac6ccb40ee12e833c77326c77082607a3d3a -SIZE (xpi/firefox-i18n-44.0.2/el.xpi) = 511155 -SHA256 (xpi/firefox-i18n-44.0.2/en-GB.xpi) = 4510c02be16e876ac48c60f740bc078194fb4c21ddedba1683e15b5bfe50fba2 -SIZE (xpi/firefox-i18n-44.0.2/en-GB.xpi) = 452631 -SHA256 (xpi/firefox-i18n-44.0.2/en-US.xpi) = af07ff88e5414e41a31e4fd419528416ee8e558d80d132238efcb9b9d29de95e -SIZE (xpi/firefox-i18n-44.0.2/en-US.xpi) = 502960 -SHA256 (xpi/firefox-i18n-44.0.2/en-ZA.xpi) = bfe3cb660d027902a0fd89f291a4cec7bd2f2c216f4c1c536bd440176a4ee58f -SIZE (xpi/firefox-i18n-44.0.2/en-ZA.xpi) = 457279 -SHA256 (xpi/firefox-i18n-44.0.2/eo.xpi) = 7721b31e1d73ffc2e9ea9150d19d5f09d392f454f9254e960c98c6e9deaaadcd -SIZE (xpi/firefox-i18n-44.0.2/eo.xpi) = 496610 -SHA256 (xpi/firefox-i18n-44.0.2/es-AR.xpi) = a67fbc3c45cedf0c7f357136783a6c69d8d729908c7a0a0d9b5e24dbe04a2ece -SIZE (xpi/firefox-i18n-44.0.2/es-AR.xpi) = 465212 -SHA256 (xpi/firefox-i18n-44.0.2/es-CL.xpi) = 84ccd4151bb5c7d0b1946e1690f0f26b29a61737fc8467624f1667d62e09a655 -SIZE (xpi/firefox-i18n-44.0.2/es-CL.xpi) = 389732 -SHA256 (xpi/firefox-i18n-44.0.2/es-ES.xpi) = a41a27f78068859fcfb14cbeaa31273062dddb5c627b8ba21d42e136e5b5d083 -SIZE (xpi/firefox-i18n-44.0.2/es-ES.xpi) = 378686 -SHA256 (xpi/firefox-i18n-44.0.2/es-MX.xpi) = d41b3b321af8bfd63a05636aa8e90cb79a4e771adaa232544d1b2e257c9c4892 -SIZE (xpi/firefox-i18n-44.0.2/es-MX.xpi) = 470417 -SHA256 (xpi/firefox-i18n-44.0.2/et.xpi) = 9a584347e3890967acf1f2e7b8cde6d50dc922cbbd8df4b3f1780bcc9949159d -SIZE (xpi/firefox-i18n-44.0.2/et.xpi) = 461959 -SHA256 (xpi/firefox-i18n-44.0.2/eu.xpi) = 6406f57634fb8b392dd0454e45a58c6e76abeb13d9ae56145e02d66174af7cf5 -SIZE (xpi/firefox-i18n-44.0.2/eu.xpi) = 479776 -SHA256 (xpi/firefox-i18n-44.0.2/fa.xpi) = 49c4c10758a960dac223c29dbfb62eef71336ffa0c0a1b1691d625298cf97bfe -SIZE (xpi/firefox-i18n-44.0.2/fa.xpi) = 535476 -SHA256 (xpi/firefox-i18n-44.0.2/ff.xpi) = 70f108474b4541f4bb9cbdfb5d4be3c1218083691c0af979a62a4d4189dc199a -SIZE (xpi/firefox-i18n-44.0.2/ff.xpi) = 469606 -SHA256 (xpi/firefox-i18n-44.0.2/fi.xpi) = b8779fd758eba162ae817b52163d26b534cf6bc860b7cae868474e101a995724 -SIZE (xpi/firefox-i18n-44.0.2/fi.xpi) = 461261 -SHA256 (xpi/firefox-i18n-44.0.2/fr.xpi) = 04ca61dacbabb368e72b3fea3760a1faeea9d54b7afe3aacb24f290c0bf9b914 -SIZE (xpi/firefox-i18n-44.0.2/fr.xpi) = 475595 -SHA256 (xpi/firefox-i18n-44.0.2/fy-NL.xpi) = b19bb1d3e938d31a33e98bd3c1e85a29eb409d528b8a70b0265871ee789cd22f -SIZE (xpi/firefox-i18n-44.0.2/fy-NL.xpi) = 468849 -SHA256 (xpi/firefox-i18n-44.0.2/ga-IE.xpi) = 4ae1edad5df17f874c3e127e9b49044f98cd77a65f8d0639ed119d9306fadd00 -SIZE (xpi/firefox-i18n-44.0.2/ga-IE.xpi) = 481201 -SHA256 (xpi/firefox-i18n-44.0.2/gd.xpi) = 547434963fcdcc164b668b7d00ad93fa51c58d97f6ad40b3b57a0192bf256074 -SIZE (xpi/firefox-i18n-44.0.2/gd.xpi) = 466941 -SHA256 (xpi/firefox-i18n-44.0.2/gl.xpi) = 53904c0e7e50852ce0751a2cb5817493eca9496104ca8cda961e6e7544432c59 -SIZE (xpi/firefox-i18n-44.0.2/gl.xpi) = 461112 -SHA256 (xpi/firefox-i18n-44.0.2/gu-IN.xpi) = d3d92f193da7e084afa2fe615cf89c7557f5da205c2dea6567c659e481cc64a0 -SIZE (xpi/firefox-i18n-44.0.2/gu-IN.xpi) = 498552 -SHA256 (xpi/firefox-i18n-44.0.2/he.xpi) = 5bf2d9de7e23d817a29ac616dcb29dee08164bff76405487f0501909e13dd076 -SIZE (xpi/firefox-i18n-44.0.2/he.xpi) = 490168 -SHA256 (xpi/firefox-i18n-44.0.2/hi-IN.xpi) = 555b81e609badb42d964a132db8340fbe76058a50f6666d7225149552da8f251 -SIZE (xpi/firefox-i18n-44.0.2/hi-IN.xpi) = 523874 -SHA256 (xpi/firefox-i18n-44.0.2/hr.xpi) = ba3ee6dfae31599f129dee59d40de832fe7a706f5b8ee07c71c3497829d93938 -SIZE (xpi/firefox-i18n-44.0.2/hr.xpi) = 491274 -SHA256 (xpi/firefox-i18n-44.0.2/hsb.xpi) = df84f58c10e01bd05883850313ad9bb7aff9fb4500adf2d219ba28aa28723958 -SIZE (xpi/firefox-i18n-44.0.2/hsb.xpi) = 482374 -SHA256 (xpi/firefox-i18n-44.0.2/hu.xpi) = 43a3a184917de8acf7351602fa9d8e6f3de2cd96c83e610ed957dad407b78548 -SIZE (xpi/firefox-i18n-44.0.2/hu.xpi) = 466878 -SHA256 (xpi/firefox-i18n-44.0.2/hy-AM.xpi) = 3abe2cc28d1f3359e83c7ddd961c70fa6332af1a74c14926e4c152a3c204ba36 -SIZE (xpi/firefox-i18n-44.0.2/hy-AM.xpi) = 549359 -SHA256 (xpi/firefox-i18n-44.0.2/id.xpi) = a148c51185e82b445cf41f3172ee572ce294c3f602c5ff2263d76fadfa2898d1 -SIZE (xpi/firefox-i18n-44.0.2/id.xpi) = 449870 -SHA256 (xpi/firefox-i18n-44.0.2/is.xpi) = 00de442df3cb7229956a3b7ce5b0937d7d157ee5620848554be043eec003819f -SIZE (xpi/firefox-i18n-44.0.2/is.xpi) = 498245 -SHA256 (xpi/firefox-i18n-44.0.2/it.xpi) = 495c54d5f2b250281dc35ac0db080518d16e1d87976b099e445116c68041855a -SIZE (xpi/firefox-i18n-44.0.2/it.xpi) = 369826 -SHA256 (xpi/firefox-i18n-44.0.2/ja.xpi) = 9fc7f986b17212a25bec75f72a4dd5d8947077327dc61e7fb1112428500237ed -SIZE (xpi/firefox-i18n-44.0.2/ja.xpi) = 493750 -SHA256 (xpi/firefox-i18n-44.0.2/kk.xpi) = e79fc6df878ef4ad55acd7faa56486e2780331b789a81e32864ebe4cb2d6333f -SIZE (xpi/firefox-i18n-44.0.2/kk.xpi) = 519877 -SHA256 (xpi/firefox-i18n-44.0.2/km.xpi) = 2da9abca08f869bff867e994c9fd16c4087955663dd8fa564396bd55a4215345 -SIZE (xpi/firefox-i18n-44.0.2/km.xpi) = 587939 -SHA256 (xpi/firefox-i18n-44.0.2/kn.xpi) = 471a33aa15d391cd46210a787f7c366e2ddf5c71bde8631d6b5ddc4facb8fda2 -SIZE (xpi/firefox-i18n-44.0.2/kn.xpi) = 547918 -SHA256 (xpi/firefox-i18n-44.0.2/ko.xpi) = c66172bfcac47899a9bcfc216aefb36156c4c96e7a85daff8adee4a7b8c8c40a -SIZE (xpi/firefox-i18n-44.0.2/ko.xpi) = 480596 -SHA256 (xpi/firefox-i18n-44.0.2/lij.xpi) = 17f1251e3be515192b5778c015e1fcef68eac8ce62359304094d4b8a35884564 -SIZE (xpi/firefox-i18n-44.0.2/lij.xpi) = 403837 -SHA256 (xpi/firefox-i18n-44.0.2/lt.xpi) = 22594998956157dab0f5f75d197dc6916d3d129b7271c1fcbab62d457aa03317 -SIZE (xpi/firefox-i18n-44.0.2/lt.xpi) = 500333 -SHA256 (xpi/firefox-i18n-44.0.2/lv.xpi) = e624f07073e3e109cfb6f75c2dcdd37f212335777b7648d69572b5b03b86cfd1 -SIZE (xpi/firefox-i18n-44.0.2/lv.xpi) = 480445 -SHA256 (xpi/firefox-i18n-44.0.2/mai.xpi) = c610849c98f75d22c953ca8f969a5a8eb216f7b9abe2b69a994437c45883780b -SIZE (xpi/firefox-i18n-44.0.2/mai.xpi) = 532118 -SHA256 (xpi/firefox-i18n-44.0.2/mk.xpi) = c20266df9f18e539cc306fa0c8510beb465fc142c4bd0a0b2981fd488c2f3e7b -SIZE (xpi/firefox-i18n-44.0.2/mk.xpi) = 537872 -SHA256 (xpi/firefox-i18n-44.0.2/ml.xpi) = 58e3cba0bd84b6196f56d5430cc802d050f89e81f7df6bbba3de78b36505a06c -SIZE (xpi/firefox-i18n-44.0.2/ml.xpi) = 551283 -SHA256 (xpi/firefox-i18n-44.0.2/mr.xpi) = 905688e784a3687869a89a89ae6990dbf50b8a3dce01b58a675e5a130ec8d0dd -SIZE (xpi/firefox-i18n-44.0.2/mr.xpi) = 527783 -SHA256 (xpi/firefox-i18n-44.0.2/ms.xpi) = fa05f5cb131c17bd47aff71c828c62623df8ac7cc1c4a77aa7e8ef5b52655b7c -SIZE (xpi/firefox-i18n-44.0.2/ms.xpi) = 507273 -SHA256 (xpi/firefox-i18n-44.0.2/nb-NO.xpi) = 5f7ac91893b8dba07cf6380aaecbbf59c6cf9f6828f15905c74fe7508b00e69c -SIZE (xpi/firefox-i18n-44.0.2/nb-NO.xpi) = 458674 -SHA256 (xpi/firefox-i18n-44.0.2/nl.xpi) = 07af52f923566de4c75fa573e12cc642a952a9d34c68107031db3c47568ec5f3 -SIZE (xpi/firefox-i18n-44.0.2/nl.xpi) = 456555 -SHA256 (xpi/firefox-i18n-44.0.2/nn-NO.xpi) = 6a452c10f93bd0317e16c40ad58a167d092c65770d62401c7680a2667f07a4c3 -SIZE (xpi/firefox-i18n-44.0.2/nn-NO.xpi) = 452668 -SHA256 (xpi/firefox-i18n-44.0.2/or.xpi) = e9c8e29ae48027f411b456e9d51490ac5340952d94ba79cf06f44b5af1426a03 -SIZE (xpi/firefox-i18n-44.0.2/or.xpi) = 540590 -SHA256 (xpi/firefox-i18n-44.0.2/pa-IN.xpi) = b90d3ca3eab8f94d130869f3c722ad1e3eaa6e4e3cc40eef2bc4fdb82e77bb69 -SIZE (xpi/firefox-i18n-44.0.2/pa-IN.xpi) = 516426 -SHA256 (xpi/firefox-i18n-44.0.2/pl.xpi) = 8421b880f1e5268d5cd2a1314b05e3933ea3ef568139ae9e11c2064f3e723c5a -SIZE (xpi/firefox-i18n-44.0.2/pl.xpi) = 403715 -SHA256 (xpi/firefox-i18n-44.0.2/pt-BR.xpi) = 34295e1c43322c48749829f9e378fed557881a65789511eedb443eac717dd81d -SIZE (xpi/firefox-i18n-44.0.2/pt-BR.xpi) = 473588 -SHA256 (xpi/firefox-i18n-44.0.2/pt-PT.xpi) = 430b639c423329aaeb0a58455a92cea8f2ef3e25e1076e081672295b016194cb -SIZE (xpi/firefox-i18n-44.0.2/pt-PT.xpi) = 454144 -SHA256 (xpi/firefox-i18n-44.0.2/rm.xpi) = 334dd7850b1de48c0c806bb5993f55ece0f45b636e781394abe89c54b7751dff -SIZE (xpi/firefox-i18n-44.0.2/rm.xpi) = 460177 -SHA256 (xpi/firefox-i18n-44.0.2/ro.xpi) = c115c0e142cf82bc713a646e11ac345985d48f08fefbd72d2da4757062ea77d0 -SIZE (xpi/firefox-i18n-44.0.2/ro.xpi) = 507826 -SHA256 (xpi/firefox-i18n-44.0.2/ru.xpi) = c4c8196ece406b71b642efe4142ff5fb3e244b4e575569dd354f5c89f6fee0dd -SIZE (xpi/firefox-i18n-44.0.2/ru.xpi) = 418291 -SHA256 (xpi/firefox-i18n-44.0.2/si.xpi) = 8f48c04cbae69a254646255af72be70157f67f903cc59621f2be8b05842c4559 -SIZE (xpi/firefox-i18n-44.0.2/si.xpi) = 553904 -SHA256 (xpi/firefox-i18n-44.0.2/sk.xpi) = 694a66caadd8d3b7fca3d73856e8192f3f0ca0c766c5d9abe2a087f8e29acb99 -SIZE (xpi/firefox-i18n-44.0.2/sk.xpi) = 482729 -SHA256 (xpi/firefox-i18n-44.0.2/sl.xpi) = ad458b5c47206e4347437eb2ad1a0c8b00d5d9855cbec808f56eef44a8ce465d -SIZE (xpi/firefox-i18n-44.0.2/sl.xpi) = 456216 -SHA256 (xpi/firefox-i18n-44.0.2/son.xpi) = 7ab8b84b1cbe8101194546eb714bdc46237c420e8da1f5fcb4945ae4cf8a0f02 -SIZE (xpi/firefox-i18n-44.0.2/son.xpi) = 463191 -SHA256 (xpi/firefox-i18n-44.0.2/sq.xpi) = 40bf8e6d4a0598bed75738814a9f2a3363aae4061d77096176f81e80b9a67e0d -SIZE (xpi/firefox-i18n-44.0.2/sq.xpi) = 499916 -SHA256 (xpi/firefox-i18n-44.0.2/sr.xpi) = 423fa059b7f76b35a354b6677bdaad18977aadec1b0a077a49385d86dbddff73 -SIZE (xpi/firefox-i18n-44.0.2/sr.xpi) = 490393 -SHA256 (xpi/firefox-i18n-44.0.2/sv-SE.xpi) = 8ee4c83ce771f97b2d742345eeda9586319dff9fbb9a518b9b557f2f2d479db5 -SIZE (xpi/firefox-i18n-44.0.2/sv-SE.xpi) = 465391 -SHA256 (xpi/firefox-i18n-44.0.2/ta.xpi) = 4af0895359af13368b298e50ea92b9a7368ae8966e153fb631012e37f2917dfb -SIZE (xpi/firefox-i18n-44.0.2/ta.xpi) = 522514 -SHA256 (xpi/firefox-i18n-44.0.2/te.xpi) = 5e7607c4c2f8a5a305866d944399c574c4d2a2f362cc78897220996e5333236a -SIZE (xpi/firefox-i18n-44.0.2/te.xpi) = 538473 -SHA256 (xpi/firefox-i18n-44.0.2/th.xpi) = 9485e0929ab39dde7de36531a17b2dfb063d783c3c7041639d2a75340ef3041f -SIZE (xpi/firefox-i18n-44.0.2/th.xpi) = 547043 -SHA256 (xpi/firefox-i18n-44.0.2/tr.xpi) = fe97ee662baa6b52d5872488b1069b54e967d2ff4bb38dec48af83d408ee9a99 -SIZE (xpi/firefox-i18n-44.0.2/tr.xpi) = 472326 -SHA256 (xpi/firefox-i18n-44.0.2/uk.xpi) = 367a130ac1e3e87e2fd6734b6b780bea569fc3ec4d668149a01c81072ab0b7c7 -SIZE (xpi/firefox-i18n-44.0.2/uk.xpi) = 511050 -SHA256 (xpi/firefox-i18n-44.0.2/uz.xpi) = 0d31bc447e4255a507b4fb4a46c50ba752ac2203de5b38caa587f34c07835c41 -SIZE (xpi/firefox-i18n-44.0.2/uz.xpi) = 510445 -SHA256 (xpi/firefox-i18n-44.0.2/vi.xpi) = f1d380e4e083da62dd3adfede3cc7a894036d6f4dcf36097b1d32f16ebe50352 -SIZE (xpi/firefox-i18n-44.0.2/vi.xpi) = 481583 -SHA256 (xpi/firefox-i18n-44.0.2/xh.xpi) = 08ba2553fe4042c123eeffa05721ae7a26b4d30bb79219d3ead1620bed918d4d -SIZE (xpi/firefox-i18n-44.0.2/xh.xpi) = 460794 -SHA256 (xpi/firefox-i18n-44.0.2/zh-CN.xpi) = e8609ff71c038286fb3768369941bfd864343eace5c0081897387eaf2f51da0d -SIZE (xpi/firefox-i18n-44.0.2/zh-CN.xpi) = 496301 -SHA256 (xpi/firefox-i18n-44.0.2/zh-TW.xpi) = 3af3a905106a7572753d7863bdaec82bbe5b3670c1abbd80d6f4893a17ddce89 -SIZE (xpi/firefox-i18n-44.0.2/zh-TW.xpi) = 487761 +SHA256 (xpi/firefox-i18n-45.0/ach.xpi) = f3c4a7d88ae5d896a3e05408280f47836ed53d1657bb6de2efc894781ec67448 +SIZE (xpi/firefox-i18n-45.0/ach.xpi) = 421463 +SHA256 (xpi/firefox-i18n-45.0/af.xpi) = f744cb5c7aee123f168d57d66a74010c50c3f9793995337d7fe8a6dde5de8dc1 +SIZE (xpi/firefox-i18n-45.0/af.xpi) = 436168 +SHA256 (xpi/firefox-i18n-45.0/an.xpi) = 5dbaf930e53fa21da82521edb95767826d942ac8f9a82dcc0489df669db131c9 +SIZE (xpi/firefox-i18n-45.0/an.xpi) = 443977 +SHA256 (xpi/firefox-i18n-45.0/ar.xpi) = 82030ea6870372a5b9fe9f4122ccb5372a30c63091bac016f1480e4cbf9a35fb +SIZE (xpi/firefox-i18n-45.0/ar.xpi) = 471774 +SHA256 (xpi/firefox-i18n-45.0/as.xpi) = 82eab7a994a7d844724698a79e649eefc77b5e3fad503b3f9fb12efafc22ae7b +SIZE (xpi/firefox-i18n-45.0/as.xpi) = 479909 +SHA256 (xpi/firefox-i18n-45.0/ast.xpi) = b398d8552f632f83bf5323cde80412215f07f1a13e747143ae3b0d7101f1c9a3 +SIZE (xpi/firefox-i18n-45.0/ast.xpi) = 416053 +SHA256 (xpi/firefox-i18n-45.0/az.xpi) = 7343f45e0f6c923922185f7d5dcee137cad9afd36b4e264dc0094b69dc1f58be +SIZE (xpi/firefox-i18n-45.0/az.xpi) = 458355 +SHA256 (xpi/firefox-i18n-45.0/be.xpi) = 8aa34b45aed00891ea0ff26ce8ff5b626fecb376329c9f256a8de7fa56d6fd72 +SIZE (xpi/firefox-i18n-45.0/be.xpi) = 439432 +SHA256 (xpi/firefox-i18n-45.0/bg.xpi) = e1d041add7954b914fade76a5a0e1f9e21448ae90f83d469334259900e7aa966 +SIZE (xpi/firefox-i18n-45.0/bg.xpi) = 457340 +SHA256 (xpi/firefox-i18n-45.0/bn-BD.xpi) = 96c7e5622f1b93390132763723f65a8facfff86da37efb3e920135d0b0f4f154 +SIZE (xpi/firefox-i18n-45.0/bn-BD.xpi) = 509414 +SHA256 (xpi/firefox-i18n-45.0/bn-IN.xpi) = 3fbd320efa0e5f7f55a6c9bf17daba1b8ed060f8d4f3f562465fc70415f670a6 +SIZE (xpi/firefox-i18n-45.0/bn-IN.xpi) = 490796 +SHA256 (xpi/firefox-i18n-45.0/br.xpi) = ade6346d7c4a0f503bd53e77685f33baa6842e307f88cdd0fe26eab278889e9b +SIZE (xpi/firefox-i18n-45.0/br.xpi) = 431332 +SHA256 (xpi/firefox-i18n-45.0/bs.xpi) = 743bd7621911d99919a00c65b6bf28f6bf497c6d6a4c497008671457ed819caf +SIZE (xpi/firefox-i18n-45.0/bs.xpi) = 439697 +SHA256 (xpi/firefox-i18n-45.0/ca.xpi) = 1c14052dc7090298026b2e5b8473cd447e2d083b2abeec2dbb423b4760602732 +SIZE (xpi/firefox-i18n-45.0/ca.xpi) = 433724 +SHA256 (xpi/firefox-i18n-45.0/cs.xpi) = 01b1b18f9eb59a744b1dde006350251aa21d0d8053c5d3c42ab541014e6cdc01 +SIZE (xpi/firefox-i18n-45.0/cs.xpi) = 437699 +SHA256 (xpi/firefox-i18n-45.0/cy.xpi) = 8d5a82459c97ff0a49ac3029ec133f239129e48a010f957c314fbe5495f68a15 +SIZE (xpi/firefox-i18n-45.0/cy.xpi) = 433863 +SHA256 (xpi/firefox-i18n-45.0/da.xpi) = 7782299deb270bd67708ed723024c7a5de92dbeb98d3580adcffe0935a8fe4ef +SIZE (xpi/firefox-i18n-45.0/da.xpi) = 424611 +SHA256 (xpi/firefox-i18n-45.0/de.xpi) = 186f6039a579a144ac441fb5a28751866cb6eca86ab3a533c88252ec9cd44965 +SIZE (xpi/firefox-i18n-45.0/de.xpi) = 439755 +SHA256 (xpi/firefox-i18n-45.0/dsb.xpi) = dc12333c62f84edc8f9dcbed4bc6f9fdea202cd67ec61f3bde5291ca03230956 +SIZE (xpi/firefox-i18n-45.0/dsb.xpi) = 458050 +SHA256 (xpi/firefox-i18n-45.0/el.xpi) = 52169263d83786930e5ca370cba3d1b9e6ffc87ae2139fbbc41b11945fb910d9 +SIZE (xpi/firefox-i18n-45.0/el.xpi) = 467210 +SHA256 (xpi/firefox-i18n-45.0/en-GB.xpi) = 8fb4f3dc623d9e59209095885a0009aa2628115fd0059077f256d92b606695db +SIZE (xpi/firefox-i18n-45.0/en-GB.xpi) = 418741 +SHA256 (xpi/firefox-i18n-45.0/en-US.xpi) = 15022f01d063b6c8b336bf683201b29209a6783e05381174f17c307e1fef3d39 +SIZE (xpi/firefox-i18n-45.0/en-US.xpi) = 420386 +SHA256 (xpi/firefox-i18n-45.0/en-ZA.xpi) = 261a5bea7dbdcd51cb219d83c2624fd48fb53bb6055124fdd37be27f9b7bbfb1 +SIZE (xpi/firefox-i18n-45.0/en-ZA.xpi) = 415693 +SHA256 (xpi/firefox-i18n-45.0/eo.xpi) = a333f3dbc0d1e88758f0a669868291f5d6c4c0c5c311a3f35ba11f36f49ac8d6 +SIZE (xpi/firefox-i18n-45.0/eo.xpi) = 437886 +SHA256 (xpi/firefox-i18n-45.0/es-AR.xpi) = de51301a807f4c606d0b9faeb69be7b8605ae555d10dbf2bae84f6306ac3352a +SIZE (xpi/firefox-i18n-45.0/es-AR.xpi) = 436399 +SHA256 (xpi/firefox-i18n-45.0/es-CL.xpi) = 5f1c00c260b2100a52eecc36cfafb47c0baaf579e3e8ed81e2d3f59b7e792f5f +SIZE (xpi/firefox-i18n-45.0/es-CL.xpi) = 363184 +SHA256 (xpi/firefox-i18n-45.0/es-ES.xpi) = 1c433fef4ff75d2b531ab4c388c1bf9ca8c4d368dbbbd38fe7233cc297c4e4f6 +SIZE (xpi/firefox-i18n-45.0/es-ES.xpi) = 348131 +SHA256 (xpi/firefox-i18n-45.0/es-MX.xpi) = e72af51262814b1dd342bfbc8f2dddbae91ae5532f36c98291a46a3cecc3cf05 +SIZE (xpi/firefox-i18n-45.0/es-MX.xpi) = 443817 +SHA256 (xpi/firefox-i18n-45.0/et.xpi) = 906d1d9514dc2aaaf95ca8092da7e250f53f9c43fac828e8d343ff4ce56a3c63 +SIZE (xpi/firefox-i18n-45.0/et.xpi) = 427884 +SHA256 (xpi/firefox-i18n-45.0/eu.xpi) = fc1facc9eee4d72e2494c888cd93134b269b1bdbbd951167d33bb808c433af94 +SIZE (xpi/firefox-i18n-45.0/eu.xpi) = 438041 +SHA256 (xpi/firefox-i18n-45.0/fa.xpi) = b985b4c82a63a6bd842eeaaa3dcd60f05929d5932e4a1371d1253a2bcd50ce4d +SIZE (xpi/firefox-i18n-45.0/fa.xpi) = 485804 +SHA256 (xpi/firefox-i18n-45.0/ff.xpi) = cf1ea83479183837dc7c72471b193951aceff26a9da3182b92a719a86d4b3f72 +SIZE (xpi/firefox-i18n-45.0/ff.xpi) = 438222 +SHA256 (xpi/firefox-i18n-45.0/fi.xpi) = 6a4e5c37bc2803d6d4d0361dc1f5d4ef10c25ce494f4a9e729a257fd4593d859 +SIZE (xpi/firefox-i18n-45.0/fi.xpi) = 435341 +SHA256 (xpi/firefox-i18n-45.0/fr.xpi) = 20a02546e93726649a0cedda8d1e7d1fb4342234d07e252290ad374e44573f63 +SIZE (xpi/firefox-i18n-45.0/fr.xpi) = 444343 +SHA256 (xpi/firefox-i18n-45.0/fy-NL.xpi) = c32f81eea351def671c6f38ca8ef736a8ba062ce8ad94b395243fadc0ab3548a +SIZE (xpi/firefox-i18n-45.0/fy-NL.xpi) = 442267 +SHA256 (xpi/firefox-i18n-45.0/ga-IE.xpi) = c85afb300caaa46bc2285f183210bf6bb16d33c48a92ccc8854645db3a3bd774 +SIZE (xpi/firefox-i18n-45.0/ga-IE.xpi) = 454972 +SHA256 (xpi/firefox-i18n-45.0/gd.xpi) = 816f63b9b9e160db3ebd0f6df9b4f271dc4720d9abaca11aadf56841784f429d +SIZE (xpi/firefox-i18n-45.0/gd.xpi) = 443931 +SHA256 (xpi/firefox-i18n-45.0/gl.xpi) = cd3be3abd31ae0144cccac861ad818e60d168c7a36630075049fab35f3fb2f04 +SIZE (xpi/firefox-i18n-45.0/gl.xpi) = 431617 +SHA256 (xpi/firefox-i18n-45.0/gu-IN.xpi) = 04255887adec2fac5695889b53e307669f47dda0f24574ccb235c06b3ec5a7f6 +SIZE (xpi/firefox-i18n-45.0/gu-IN.xpi) = 469356 +SHA256 (xpi/firefox-i18n-45.0/he.xpi) = 27b635e376bf978f8a954e73e93f6c349b39ee36915a7d57f57efea03208edec +SIZE (xpi/firefox-i18n-45.0/he.xpi) = 451978 +SHA256 (xpi/firefox-i18n-45.0/hi-IN.xpi) = 0a5a40d8cefd5ffb1e0fa6bb5763b2704db1ed1122dd87d0bca55da29aabb2a0 +SIZE (xpi/firefox-i18n-45.0/hi-IN.xpi) = 483333 +SHA256 (xpi/firefox-i18n-45.0/hr.xpi) = 77e7e11d34c8a2cdd017bb5b8d2866c36153ea841959a681c9b7233095851ba2 +SIZE (xpi/firefox-i18n-45.0/hr.xpi) = 445883 +SHA256 (xpi/firefox-i18n-45.0/hsb.xpi) = 9480b541d445cb9342f65a96eb749db411d2eb68a1ee6adf57f75f15a132ead6 +SIZE (xpi/firefox-i18n-45.0/hsb.xpi) = 455731 +SHA256 (xpi/firefox-i18n-45.0/hu.xpi) = 7e98c7a6a7074455c663e8116203764671a08d1b5d46716e8be31a42db4e8342 +SIZE (xpi/firefox-i18n-45.0/hu.xpi) = 444065 +SHA256 (xpi/firefox-i18n-45.0/hy-AM.xpi) = 9024bc417baf22e9836cf30312055c47eaf10309d474b1d10c6b4aa94a137cdc +SIZE (xpi/firefox-i18n-45.0/hy-AM.xpi) = 494081 +SHA256 (xpi/firefox-i18n-45.0/id.xpi) = 78d6633ef86c9f7414d76e12c51780da5c1fe85db4353b87f2365d111e6d5383 +SIZE (xpi/firefox-i18n-45.0/id.xpi) = 421748 +SHA256 (xpi/firefox-i18n-45.0/is.xpi) = 02e9491e0ec6a6b2a74884aa9758067017317cbfbccdde4e1c1caf1763146984 +SIZE (xpi/firefox-i18n-45.0/is.xpi) = 438155 +SHA256 (xpi/firefox-i18n-45.0/it.xpi) = 64692512e57eea61ca243d50b4a109a44bd2335fb593c27067c7df3ef9f5c800 +SIZE (xpi/firefox-i18n-45.0/it.xpi) = 338103 +SHA256 (xpi/firefox-i18n-45.0/ja.xpi) = 7d80f8470a04cfdfc80af6d35be303e37cee9433cfee2efba1b979e7a8aa7150 +SIZE (xpi/firefox-i18n-45.0/ja.xpi) = 480325 +SHA256 (xpi/firefox-i18n-45.0/kk.xpi) = addd1d2835f62d1bb47799331647ec4d82ef158c7d2d77bcaad74ea5f5547894 +SIZE (xpi/firefox-i18n-45.0/kk.xpi) = 493279 +SHA256 (xpi/firefox-i18n-45.0/km.xpi) = a0c33b3bb17c945280bc2030535d7efb938e29069b980a4c7d407d53be6ef7b4 +SIZE (xpi/firefox-i18n-45.0/km.xpi) = 501116 +SHA256 (xpi/firefox-i18n-45.0/kn.xpi) = 649417a550c2fce773976fbbe72093290ce7095f958278af6feffd44c465606a +SIZE (xpi/firefox-i18n-45.0/kn.xpi) = 492245 +SHA256 (xpi/firefox-i18n-45.0/ko.xpi) = 0190cc1accd327819e3e773f48d00571e2c7aa5ca3312ae39c97c6fb06a75e88 +SIZE (xpi/firefox-i18n-45.0/ko.xpi) = 459998 +SHA256 (xpi/firefox-i18n-45.0/lij.xpi) = 93684b7fcf12f738dadd2020d2828572831c530faf869773c45f6bae6213c29c +SIZE (xpi/firefox-i18n-45.0/lij.xpi) = 376297 +SHA256 (xpi/firefox-i18n-45.0/lt.xpi) = afcf61c54175446c9f8a0d65f4cf24864bcd96e1bec5e2ad3e1971673507b57e +SIZE (xpi/firefox-i18n-45.0/lt.xpi) = 451527 +SHA256 (xpi/firefox-i18n-45.0/lv.xpi) = be00bc185f2718dba9be72ae9baff541d0f57b468da68299aaa12a7493b674f8 +SIZE (xpi/firefox-i18n-45.0/lv.xpi) = 442658 +SHA256 (xpi/firefox-i18n-45.0/mai.xpi) = 9866254d18cb985bb37bdc13a067ec283b07a77b19c8977e5f73e5b8bb946a68 +SIZE (xpi/firefox-i18n-45.0/mai.xpi) = 487581 +SHA256 (xpi/firefox-i18n-45.0/mk.xpi) = d245069ad6e136e5002b320a58e14f3ca994616f907ce95a4fa15af1dab0514b +SIZE (xpi/firefox-i18n-45.0/mk.xpi) = 473207 +SHA256 (xpi/firefox-i18n-45.0/ml.xpi) = 169f5581e98d9c398205cd115d8b4ec77190bcab400e9d8fcf4a269d7df7ffc9 +SIZE (xpi/firefox-i18n-45.0/ml.xpi) = 495274 +SHA256 (xpi/firefox-i18n-45.0/mr.xpi) = fcd86e1ea7f7eaa12fd950c3956ce53b08ae91a8b100cd38aac9ef547cd7e879 +SIZE (xpi/firefox-i18n-45.0/mr.xpi) = 498641 +SHA256 (xpi/firefox-i18n-45.0/ms.xpi) = 05582934c6b4a10346b5061496e6bf945974280caaf3f8fc9a1528b0838ce82d +SIZE (xpi/firefox-i18n-45.0/ms.xpi) = 436878 +SHA256 (xpi/firefox-i18n-45.0/nb-NO.xpi) = 73dde6c695162c41d3abf795935964a622a64a4d03dd95fddf921be8323b721f +SIZE (xpi/firefox-i18n-45.0/nb-NO.xpi) = 432168 +SHA256 (xpi/firefox-i18n-45.0/nl.xpi) = ce63fd03a213876d4b78efbe266c36519331267c325467c13abdc6c4aa4b00ff +SIZE (xpi/firefox-i18n-45.0/nl.xpi) = 429704 +SHA256 (xpi/firefox-i18n-45.0/nn-NO.xpi) = 29d89d3378c7124378118242c60bcde1d477930f7b502bf0ed99c9014e7456d5 +SIZE (xpi/firefox-i18n-45.0/nn-NO.xpi) = 427850 +SHA256 (xpi/firefox-i18n-45.0/or.xpi) = d8a6b4cbaeb0238888c660e0a8f47490008e7f1b2cbbf2a7ccc1ba8d60343c48 +SIZE (xpi/firefox-i18n-45.0/or.xpi) = 492735 +SHA256 (xpi/firefox-i18n-45.0/pa-IN.xpi) = 36b94559c34da4ca60f3798f7c57869381054164613d40113d15b1a984f7471c +SIZE (xpi/firefox-i18n-45.0/pa-IN.xpi) = 485887 +SHA256 (xpi/firefox-i18n-45.0/pl.xpi) = f0ab7ae2db4a14a99c0a1ecd2f94086d994db4a6da34c88c31d7c9348c9c2d2f +SIZE (xpi/firefox-i18n-45.0/pl.xpi) = 379556 +SHA256 (xpi/firefox-i18n-45.0/pt-BR.xpi) = d6a00cd285f091eed478a2f558e78970ef12f80865297baf35acc1e903beb074 +SIZE (xpi/firefox-i18n-45.0/pt-BR.xpi) = 445519 +SHA256 (xpi/firefox-i18n-45.0/pt-PT.xpi) = faf804a408fe1e9bc1285ce1cfbd111be6b249860ad30b0b9c4e17a74a1eeaad +SIZE (xpi/firefox-i18n-45.0/pt-PT.xpi) = 431497 +SHA256 (xpi/firefox-i18n-45.0/rm.xpi) = d5edb258ab602218587cbc7810fa1c10bb03b7e04616338ad75f4c7f7776da56 +SIZE (xpi/firefox-i18n-45.0/rm.xpi) = 432731 +SHA256 (xpi/firefox-i18n-45.0/ro.xpi) = a9a01ccefeb946f68b718b37ea44cef1fbffc5ab143f9a6bbf551c4979bb7d21 +SIZE (xpi/firefox-i18n-45.0/ro.xpi) = 440797 +SHA256 (xpi/firefox-i18n-45.0/ru.xpi) = 0d237ab95686cc96056e953e31186491009d62533c555a65e01968ba7ce74ca8 +SIZE (xpi/firefox-i18n-45.0/ru.xpi) = 386410 +SHA256 (xpi/firefox-i18n-45.0/si.xpi) = 7fb163fb2f0f725eacc717f82044d20b78ad37a996d0f8c55a0c87234a411245 +SIZE (xpi/firefox-i18n-45.0/si.xpi) = 479304 +SHA256 (xpi/firefox-i18n-45.0/sk.xpi) = c00e91a405e031091f15a6b890d96ed95ff0b1d8d39ff1f17480c8a979845821 +SIZE (xpi/firefox-i18n-45.0/sk.xpi) = 447859 +SHA256 (xpi/firefox-i18n-45.0/sl.xpi) = 55cb5a014d2baba7fa93c7beb85e7ff35ff7b0787d00dc2e79abb5cb8da8eabe +SIZE (xpi/firefox-i18n-45.0/sl.xpi) = 439483 +SHA256 (xpi/firefox-i18n-45.0/son.xpi) = 74a4d46d81c91cb35aeffbeec4992379234bc20673a04efa3003f5997b49a801 +SIZE (xpi/firefox-i18n-45.0/son.xpi) = 430486 +SHA256 (xpi/firefox-i18n-45.0/sq.xpi) = ba2df36b997c960a22f9d8faf604dea3cae39c3f135747bf729824a98d4680a4 +SIZE (xpi/firefox-i18n-45.0/sq.xpi) = 446481 +SHA256 (xpi/firefox-i18n-45.0/sr.xpi) = 290889c15728690fc7745395152dc3af5f773eef23df0f64a880d0e46b2e6846 +SIZE (xpi/firefox-i18n-45.0/sr.xpi) = 459050 +SHA256 (xpi/firefox-i18n-45.0/sv-SE.xpi) = 707cb8dc49bb18399a20ca5e5c3e1ae66e7c0a14d0660b824e428f55679ed351 +SIZE (xpi/firefox-i18n-45.0/sv-SE.xpi) = 438723 +SHA256 (xpi/firefox-i18n-45.0/ta.xpi) = b7dc71e2e34c6927e01c33feb68d75fc3ea25f0b62c915d128c4fd1d5b591b27 +SIZE (xpi/firefox-i18n-45.0/ta.xpi) = 479527 +SHA256 (xpi/firefox-i18n-45.0/te.xpi) = c9f1d6ee4a4ccd6b3fa1f642e464089a5590f8c6185314fdcef1e4168e8d9f9c +SIZE (xpi/firefox-i18n-45.0/te.xpi) = 489284 +SHA256 (xpi/firefox-i18n-45.0/th.xpi) = 928aaacaceaefb7f5dd6235aaf6b9bcb71725550c846db1a8f71aa3747048b17 +SIZE (xpi/firefox-i18n-45.0/th.xpi) = 474139 +SHA256 (xpi/firefox-i18n-45.0/tr.xpi) = fc4c54a9f8a70f1c9844e30c270b96daf21fcbd3b443ea8ba9ea2c2db91269ec +SIZE (xpi/firefox-i18n-45.0/tr.xpi) = 445668 +SHA256 (xpi/firefox-i18n-45.0/uk.xpi) = 4bda4c866d370a61427136da362904cb3368e854a0bd329ccd560ccc38622d85 +SIZE (xpi/firefox-i18n-45.0/uk.xpi) = 488431 +SHA256 (xpi/firefox-i18n-45.0/uz.xpi) = 006bd7dcd3f04f0a72738196fe101d45ccf743c82db2a2f176850ea659c0c748 +SIZE (xpi/firefox-i18n-45.0/uz.xpi) = 438746 +SHA256 (xpi/firefox-i18n-45.0/vi.xpi) = dd4905958068ffbc2516edf7905ecc48773a1c403a29266f4cfdfb72a72f3789 +SIZE (xpi/firefox-i18n-45.0/vi.xpi) = 447592 +SHA256 (xpi/firefox-i18n-45.0/xh.xpi) = e62f7f7daa990f3122babb2b239e15a5f8e2b6259917c2a34b255314e0a9e523 +SIZE (xpi/firefox-i18n-45.0/xh.xpi) = 429732 +SHA256 (xpi/firefox-i18n-45.0/zh-CN.xpi) = d1c7d020002c91a4c6fe9e2a24ed87e2b2043a05aa14787df2ff01e2216c6f1a +SIZE (xpi/firefox-i18n-45.0/zh-CN.xpi) = 469930 +SHA256 (xpi/firefox-i18n-45.0/zh-TW.xpi) = fd0c7e1ad5bfc2fe1979c748a84799d066d67f1ac6fc5cd19e3cf5ce1e82b018 +SIZE (xpi/firefox-i18n-45.0/zh-TW.xpi) = 460793 Modified: branches/2016Q1/www/firefox/Makefile ============================================================================== --- branches/2016Q1/www/firefox/Makefile Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/www/firefox/Makefile Tue Mar 8 18:19:56 2016 (r410638) @@ -2,24 +2,25 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 44.0.2 +DISTVERSION= 45.0 DISTVERSIONSUFFIX=.source PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla -BUILD_DEPENDS= nspr>=4.10.10:${PORTSDIR}/devel/nspr \ - nss>=3.21:${PORTSDIR}/security/nss \ +BUILD_DEPENDS= nspr>=4.12:${PORTSDIR}/devel/nspr \ + nss>=3.21.1:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ - harfbuzz>=0.9.42:${PORTSDIR}/print/harfbuzz \ - graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ + soundtouch>=1.9.0:${PORTSDIR}/audio/soundtouch \ + harfbuzz>=1.1.0:${PORTSDIR}/print/harfbuzz \ + graphite2>=1.3.6:${PORTSDIR}/graphics/graphite2 \ + png>=1.6.19:${PORTSDIR}/graphics/png \ libvorbis>=1.3.5,3:${PORTSDIR}/audio/libvorbis \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ + libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.9.1:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ @@ -27,14 +28,13 @@ BUILD_DEPENDS= nspr>=4.10.10:${PORTSDIR} yasm:${PORTSDIR}/devel/yasm \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr-45.* firefox-esr-3[18].* firefox-esr-24.* MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -opus +USE_MOZILLA= # empty MOZILLA_NAME= Firefox USE_QT5= # empty @@ -81,8 +81,6 @@ post-extract: <${FILESDIR}/firefox.desktop.in >${WRKDIR}/${MOZILLA}.desktop post-patch: - @${REINPLACE_CMD} -e '/MOZPNG/s/=[0-9]*/=10511/' \ - ${WRKSRC}/configure.in @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp Modified: branches/2016Q1/www/firefox/distinfo ============================================================================== --- branches/2016Q1/www/firefox/distinfo Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/www/firefox/distinfo Tue Mar 8 18:19:56 2016 (r410638) @@ -1,2 +1,2 @@ -SHA256 (firefox-44.0.2.source.tar.xz) = 0bb28841a9268c50cbb239f759f16f55b3a624f679c68965158beaa0a83a2d9e -SIZE (firefox-44.0.2.source.tar.xz) = 182355632 +SHA256 (firefox-45.0.source.tar.xz) = 36ab0f09b1b1df071a8aafa673c6286d99c18dc06cecbb70d1bb2021fbf379f1 +SIZE (firefox-45.0.source.tar.xz) = 183999640 Modified: branches/2016Q1/www/firefox/files/patch-bug1021761 ============================================================================== --- branches/2016Q1/www/firefox/files/patch-bug1021761 Tue Mar 8 17:49:44 2016 (r410637) +++ branches/2016Q1/www/firefox/files/patch-bug1021761 Tue Mar 8 18:19:56 2016 (r410638) @@ -561,8 +561,8 @@ index a962553..1f780f4 100644 /* get a pcm, disabling resampling, so we get a rate the * hardware/dmix/pulse/etc. supports. */ -- r = snd_pcm_open(&pcm, "default", SND_PCM_STREAM_PLAYBACK | SND_PCM_NO_AUTO_RESAMPLE, 0); -+ r = WRAP(snd_pcm_open)(&pcm, "default", SND_PCM_STREAM_PLAYBACK | SND_PCM_NO_AUTO_RESAMPLE, 0); +- r = snd_pcm_open(&pcm, CUBEB_ALSA_PCM_NAME, SND_PCM_STREAM_PLAYBACK | SND_PCM_NO_AUTO_RESAMPLE, 0); ++ r = WRAP(snd_pcm_open)(&pcm, CUBEB_ALSA_PCM_NAME, SND_PCM_STREAM_PLAYBACK | SND_PCM_NO_AUTO_RESAMPLE, 0); if (r < 0) { return CUBEB_ERROR; } Copied: branches/2016Q1/www/firefox/files/patch-bug1242132 (from r410176, head/www/firefox/files/patch-bug1242132) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/www/firefox/files/patch-bug1242132 Tue Mar 8 18:19:56 2016 (r410638, copy of r410176, head/www/firefox/files/patch-bug1242132) @@ -0,0 +1,13 @@ +# nss-config --cflags returns multiple flags, don't treat them as one string + +--- python/mozbuild/mozbuild/frontend/gyp_reader.py~ ++++ python/mozbuild/mozbuild/frontend/gyp_reader.py +@@ -217,7 +217,7 @@ def read_from_gyp(config, path, output, + # We may be getting make variable references out of the + # gyp data, and we don't want those in emitted data, so + # substitute them with their actual value. +- f = expand_variables(f, config.substs) ++ f = expand_variables(f, config.substs).split() + if not f: + continue + # the result may be a string or a list. Copied: branches/2016Q1/www/firefox/files/patch-bug1252246 (from r410176, head/www/firefox/files/patch-bug1252246) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/www/firefox/files/patch-bug1252246 Tue Mar 8 18:19:56 2016 (r410638, copy of r410176, head/www/firefox/files/patch-bug1252246) @@ -0,0 +1,44 @@ +# Prefer PTHREAD_PROCESS_SHARED on FreeBSD 11.0 or later + +diff --git a/ipc/glue/CrossProcessMutex.h b/ipc/glue/CrossProcessMutex.h +--- ipc/glue/CrossProcessMutex.h ++++ ipc/glue/CrossProcessMutex.h +@@ -9,7 +9,7 @@ + #include "base/process.h" + #include "mozilla/Mutex.h" + +-#if defined(OS_LINUX) || defined(XP_DARWIN) ++#if !defined(OS_WIN) && !defined(OS_NETBSD) && !defined(OS_OPENBSD) + #include + #include "SharedMemoryBasic.h" + #include "mozilla/Atomics.h" +@@ -34,7 +34,7 @@ struct ParamTraits; + namespace mozilla { + #if defined(OS_WIN) + typedef HANDLE CrossProcessMutexHandle; +-#elif defined(OS_LINUX) || defined(OS_MACOSX) ++#elif !defined(OS_NETBSD) && !defined(OS_OPENBSD) + typedef mozilla::ipc::SharedMemoryBasic::Handle CrossProcessMutexHandle; + #else + // Stub for other platforms. We can't use uintptr_t here since different +@@ -100,7 +100,7 @@ private: + + #if defined(OS_WIN) + HANDLE mMutex; +-#elif defined(OS_LINUX) || defined(OS_MACOSX) ++#elif !defined(OS_NETBSD) && !defined(OS_OPENBSD) + RefPtr mSharedBuffer; + pthread_mutex_t* mMutex; + mozilla::Atomic* mCount; +diff --git a/ipc/glue/moz.build b/ipc/glue/moz.build +--- ipc/glue/moz.build ++++ ipc/glue/moz.build +@@ -61,7 +61,7 @@ if CONFIG['OS_ARCH'] == 'WINNT': + SOURCES += [ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Tue Mar 8 21:09:19 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAD61AC754F; Tue, 8 Mar 2016 21:09:19 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81EEABD2; Tue, 8 Mar 2016 21:09:19 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u28L9IJH023929; Tue, 8 Mar 2016 21:09:18 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u28L9Ij7023926; Tue, 8 Mar 2016 21:09:18 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201603082109.u28L9Ij7023926@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Tue, 8 Mar 2016 21:09:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410663 - branches/2016Q1/security/libssh 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.21 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, 08 Mar 2016 21:09:19 -0000 Author: johans Date: Tue Mar 8 21:09:18 2016 New Revision: 410663 URL: https://svnweb.freebsd.org/changeset/ports/410663 Log: MFH: r409932 Update libssh to 0.7.3 Includes security update: https://www.libssh.org/2016/02/23/libssh-0-7-3-security-and-bugfix-release/ Approved by: ports-secteam (feld) Modified: branches/2016Q1/security/libssh/Makefile branches/2016Q1/security/libssh/distinfo branches/2016Q1/security/libssh/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/security/libssh/Makefile ============================================================================== --- branches/2016Q1/security/libssh/Makefile Tue Mar 8 20:50:29 2016 (r410662) +++ branches/2016Q1/security/libssh/Makefile Tue Mar 8 21:09:18 2016 (r410663) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libssh -DISTVERSION= 0.7.2 +DISTVERSION= 0.7.3 CATEGORIES= security devel MASTER_SITES= https://git.libssh.org/projects/libssh.git/snapshot/ Modified: branches/2016Q1/security/libssh/distinfo ============================================================================== --- branches/2016Q1/security/libssh/distinfo Tue Mar 8 20:50:29 2016 (r410662) +++ branches/2016Q1/security/libssh/distinfo Tue Mar 8 21:09:18 2016 (r410663) @@ -1,2 +1,2 @@ -SHA256 (libssh-0.7.2.tar.xz) = d37072116bcdd4716c91e98e633cd8a734b065c8c9614b6b9ecae9a5ec6de6ce -SIZE (libssh-0.7.2.tar.xz) = 350692 +SHA256 (libssh-0.7.3.tar.xz) = aa408aa188541c60120743c335e3c3e835865c8345bcd5fd10c41d2aa6b93b4a +SIZE (libssh-0.7.3.tar.xz) = 351016 Modified: branches/2016Q1/security/libssh/pkg-plist ============================================================================== --- branches/2016Q1/security/libssh/pkg-plist Tue Mar 8 20:50:29 2016 (r410662) +++ branches/2016Q1/security/libssh/pkg-plist Tue Mar 8 21:09:18 2016 (r410663) @@ -11,10 +11,10 @@ lib/cmake/libssh/libssh/libssh-config-ve %%STATIC%%lib/libssh.a lib/libssh.so lib/libssh.so.4 -lib/libssh.so.4.4.0 +lib/libssh.so.4.4.1 %%STATIC%%lib/libssh_threads.a lib/libssh_threads.so lib/libssh_threads.so.4 -lib/libssh_threads.so.4.4.0 +lib/libssh_threads.so.4.4.1 libdata/pkgconfig/libssh.pc libdata/pkgconfig/libssh_threads.pc From owner-svn-ports-branches@freebsd.org Tue Mar 8 23:13:45 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F3ADAC7459; Tue, 8 Mar 2016 23:13:45 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DB28A7E9; Tue, 8 Mar 2016 23:13:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u28NDhTN063922; Tue, 8 Mar 2016 23:13:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u28NDhg3063919; Tue, 8 Mar 2016 23:13:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201603082313.u28NDhg3063919@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 8 Mar 2016 23:13:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410670 - in branches/2016Q1/archivers/brotli: . 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.21 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, 08 Mar 2016 23:13:45 -0000 Author: jbeich Date: Tue Mar 8 23:13:43 2016 New Revision: 410670 URL: https://svnweb.freebsd.org/changeset/ports/410670 Log: MFH: r410664 archivers/brotli: fix buffer overflow Obtained from: upstream Security: 1bcfd963-e483-41b8-ab8e-bad5c3ce49c9 Approved by: ports-secteam (feld) Added: branches/2016Q1/archivers/brotli/files/patch-CVE-2016-1624 - copied, changed from r410664, head/archivers/brotli/files/patch-CVE-2016-1624 Modified: branches/2016Q1/archivers/brotli/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/archivers/brotli/Makefile ============================================================================== --- branches/2016Q1/archivers/brotli/Makefile Tue Mar 8 22:55:54 2016 (r410669) +++ branches/2016Q1/archivers/brotli/Makefile Tue Mar 8 23:13:43 2016 (r410670) @@ -4,7 +4,7 @@ PORTNAME= brotli PORTVERSION= 0.2.0 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers MAINTAINER= sunpoet@FreeBSD.org Copied and modified: branches/2016Q1/archivers/brotli/files/patch-CVE-2016-1624 (from r410664, head/archivers/brotli/files/patch-CVE-2016-1624) ============================================================================== --- head/archivers/brotli/files/patch-CVE-2016-1624 Tue Mar 8 21:15:16 2016 (r410664, copy source) +++ branches/2016Q1/archivers/brotli/files/patch-CVE-2016-1624 Tue Mar 8 23:13:43 2016 (r410670) @@ -11,14 +11,14 @@ diff --git a/dec/decode.c b/dec/decode.c index 920959c..892a254 100644 --- dec/decode.c +++ dec/decode.c -@@ -1714,6 +1714,10 @@ static BROTLI_INLINE BrotliResult ProcessCommandsInternal(int safe, - } else { - const uint8_t *ringbuffer_end_minus_copy_length = - s->ringbuffer_end - i; -+ /* Check for possible underflow and clamp the pointer to 0. */ -+ if (PREDICT_FALSE(s->ringbuffer_end < (const uint8_t*)0 + i)) { -+ ringbuffer_end_minus_copy_length = 0; -+ } - uint8_t* copy_src = &s->ringbuffer[ - (pos - s->distance_code) & s->ringbuffer_mask]; - uint8_t* copy_dst = &s->ringbuffer[pos]; +@@ -1410,6 +1410,10 @@ postReadDistance: + } else { + const uint8_t *ringbuffer_end_minus_copy_length = + s->ringbuffer_end - i; ++ /* Check for possible underflow and clamp the pointer to 0. */ ++ if (PREDICT_FALSE(s->ringbuffer_end < (const uint8_t*)0 + i)) { ++ ringbuffer_end_minus_copy_length = 0; ++ } + copy_src = &s->ringbuffer[(pos - s->distance_code) & + s->ringbuffer_mask]; + copy_dst = &s->ringbuffer[pos]; From owner-svn-ports-branches@freebsd.org Wed Mar 9 02:36:14 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7BE62AC7166; Wed, 9 Mar 2016 02:36:14 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3AE80F40; Wed, 9 Mar 2016 02:36:14 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u292aDVS025140; Wed, 9 Mar 2016 02:36:13 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u292aCBU025136; Wed, 9 Mar 2016 02:36:12 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201603090236.u292aCBU025136@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Wed, 9 Mar 2016 02:36:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410681 - in branches/2016Q1/www: py-django py-django18 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.21 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, 09 Mar 2016 02:36:14 -0000 Author: junovitch Date: Wed Mar 9 02:36:12 2016 New Revision: 410681 URL: https://svnweb.freebsd.org/changeset/ports/410681 Log: MFH: r406200, r410082 www/py-django18: update 1.8.7 -> 1.8.10 www/py-django: update 1.8.7 -> 1.8.10 (manual) - MFH just the version bumps. Additional changes in ports/head marked www/py-django as IGNORE in r406202 in preparation of making it a meta port and set the RUN_DEPENDS of dependent ports to www/py-django18 (r406203 and r406208). Those changes will not be merged. Security: CVE-2016-2512 Security: CVE-2016-2513 Security: https://vuxml.FreeBSD.org/freebsd/f9e6c0d1-e4cc-11e5-b2bd-002590263bf5.html Approved by: ports-secteam (with hat) Modified: branches/2016Q1/www/py-django/Makefile branches/2016Q1/www/py-django/distinfo branches/2016Q1/www/py-django18/Makefile branches/2016Q1/www/py-django18/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/py-django/Makefile ============================================================================== --- branches/2016Q1/www/py-django/Makefile Wed Mar 9 02:24:12 2016 (r410680) +++ branches/2016Q1/www/py-django/Makefile Wed Mar 9 02:36:12 2016 (r410681) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django -PORTVERSION= 1.8.7 +PORTVERSION= 1.8.10 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ https://www.djangoproject.com/m/releases/${PORTVERSION}/ Modified: branches/2016Q1/www/py-django/distinfo ============================================================================== --- branches/2016Q1/www/py-django/distinfo Wed Mar 9 02:24:12 2016 (r410680) +++ branches/2016Q1/www/py-django/distinfo Wed Mar 9 02:36:12 2016 (r410681) @@ -1,2 +1,2 @@ -SHA256 (python/Django-1.8.7.tar.gz) = 17a66de5cf59b5ee81c3dc57609b145bb45adddc0dc06937b998597d6e7b4523 -SIZE (python/Django-1.8.7.tar.gz) = 7276831 +SHA256 (python/Django-1.8.10.tar.gz) = d2e5b11eb694984957378419f809b7205598326373d509d0262f9f84b17d1a23 +SIZE (python/Django-1.8.10.tar.gz) = 7291016 Modified: branches/2016Q1/www/py-django18/Makefile ============================================================================== --- branches/2016Q1/www/py-django18/Makefile Wed Mar 9 02:24:12 2016 (r410680) +++ branches/2016Q1/www/py-django18/Makefile Wed Mar 9 02:36:12 2016 (r410681) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django -PORTVERSION= 1.8.7 +PORTVERSION= 1.8.10 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ https://www.djangoproject.com/m/releases/${PORTVERSION}/ Modified: branches/2016Q1/www/py-django18/distinfo ============================================================================== --- branches/2016Q1/www/py-django18/distinfo Wed Mar 9 02:24:12 2016 (r410680) +++ branches/2016Q1/www/py-django18/distinfo Wed Mar 9 02:36:12 2016 (r410681) @@ -1,2 +1,2 @@ -SHA256 (python/Django-1.8.7.tar.gz) = 17a66de5cf59b5ee81c3dc57609b145bb45adddc0dc06937b998597d6e7b4523 -SIZE (python/Django-1.8.7.tar.gz) = 7276831 +SHA256 (python/Django-1.8.10.tar.gz) = d2e5b11eb694984957378419f809b7205598326373d509d0262f9f84b17d1a23 +SIZE (python/Django-1.8.10.tar.gz) = 7291016 From owner-svn-ports-branches@freebsd.org Wed Mar 9 17:14:24 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B65BAC9330; Wed, 9 Mar 2016 17:14:24 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D80B1BEA; Wed, 9 Mar 2016 17:14:23 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u29HEMe0091714; Wed, 9 Mar 2016 17:14:22 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u29HEM0K091712; Wed, 9 Mar 2016 17:14:22 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603091714.u29HEM0K091712@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 9 Mar 2016 17:14:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410713 - in branches/2016Q1/graphics/giflib: . 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.21 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, 09 Mar 2016 17:14:24 -0000 Author: feld Date: Wed Mar 9 17:14:22 2016 New Revision: 410713 URL: https://svnweb.freebsd.org/changeset/ports/410713 Log: MFH: r410712 graphics/giflib: Add patch to fix regression There is a regression with the 5.1.2 update to giflib. This affects the ability for applications to render gif images usually ocurring after the first gif image is rendered. Upstream has been notified but has not yet provided feedback. giflib 5.1.2 was a security fix, so reverting is not reasonable. "The removed check look redundant - I couldn't find a code path where Private->RunningBits would exceed that limit after initialization. (Currently Private->RunningBits is checked before it is initialized)." PR: 207849 Submitted by: Stefan Ehmann Approved by: ports-secteam (with hat) Added: branches/2016Q1/graphics/giflib/files/patch-lib_dgif__lib.c - copied unchanged from r410712, head/graphics/giflib/files/patch-lib_dgif__lib.c Modified: branches/2016Q1/graphics/giflib/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/graphics/giflib/Makefile ============================================================================== --- branches/2016Q1/graphics/giflib/Makefile Wed Mar 9 17:13:49 2016 (r410712) +++ branches/2016Q1/graphics/giflib/Makefile Wed Mar 9 17:14:22 2016 (r410713) @@ -3,7 +3,7 @@ PORTNAME= giflib PORTVERSION= 5.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME} Copied: branches/2016Q1/graphics/giflib/files/patch-lib_dgif__lib.c (from r410712, head/graphics/giflib/files/patch-lib_dgif__lib.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/graphics/giflib/files/patch-lib_dgif__lib.c Wed Mar 9 17:14:22 2016 (r410713, copy of r410712, head/graphics/giflib/files/patch-lib_dgif__lib.c) @@ -0,0 +1,11 @@ +--- lib/dgif_lib.c.orig 2016-03-06 10:52:49.090426000 +0100 ++++ lib/dgif_lib.c 2016-03-06 10:53:00.938584000 +0100 +@@ -764,7 +764,7 @@ + BitsPerPixel = CodeSize; + + /* this can only happen on a severely malformed GIF */ +- if (BitsPerPixel > 8 || Private->RunningBits > 32) { ++ if (BitsPerPixel > 8) { + GifFile->Error = D_GIF_ERR_READ_FAILED; /* somewhat bogus error code */ + return GIF_ERROR; /* Failed to read Code size. */ + } From owner-svn-ports-branches@freebsd.org Wed Mar 9 21:21:53 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11B9AAC8BB3; Wed, 9 Mar 2016 21:21:53 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5FB7163B; Wed, 9 Mar 2016 21:21:52 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u29LLpql068784; Wed, 9 Mar 2016 21:21:51 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u29LLo8a068773; Wed, 9 Mar 2016 21:21:50 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201603092121.u29LLo8a068773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 9 Mar 2016 21:21:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410729 - in branches/2016Q1/dns: bind9-devel bind9-devel/files bind910 bind910/files bind99 bind99/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.21 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, 09 Mar 2016 21:21:53 -0000 Author: mat Date: Wed Mar 9 21:21:50 2016 New Revision: 410729 URL: https://svnweb.freebsd.org/changeset/ports/410729 Log: MFH: r410728 Update to 9.9.8-P4, 9.10.3-P4 and latest snapshot. Security: CVE-2016-1285 Security: CVE-2016-1286 Security: CVE-2016-2088 Sponsored by: Absolight Modified: branches/2016Q1/dns/bind9-devel/Makefile branches/2016Q1/dns/bind9-devel/distinfo branches/2016Q1/dns/bind9-devel/files/extrapatch-bind-min-override-ttl branches/2016Q1/dns/bind9-devel/files/patch-configure branches/2016Q1/dns/bind9-devel/pkg-plist branches/2016Q1/dns/bind910/Makefile branches/2016Q1/dns/bind910/distinfo branches/2016Q1/dns/bind910/files/extrapatch-bind-min-override-ttl branches/2016Q1/dns/bind99/Makefile branches/2016Q1/dns/bind99/distinfo branches/2016Q1/dns/bind99/files/extrapatch-bind-min-override-ttl Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/dns/bind9-devel/Makefile ============================================================================== --- branches/2016Q1/dns/bind9-devel/Makefile Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind9-devel/Makefile Wed Mar 9 21:21:50 2016 (r410729) @@ -19,8 +19,8 @@ COMMENT= BIND DNS suite with updated DNS LICENSE= ISCL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.11.0.a20160119 -HASH= fc7bce5 +ISCVERSION= 9.11.0.a20160309 +HASH= 0c7a779 MAKE_JOBS_UNSAFE= yes Modified: branches/2016Q1/dns/bind9-devel/distinfo ============================================================================== --- branches/2016Q1/dns/bind9-devel/distinfo Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind9-devel/distinfo Wed Mar 9 21:21:50 2016 (r410729) @@ -1,2 +1,2 @@ -SHA256 (bind9-fc7bce5.tar.gz) = d216744bc16ed494d4fa86288c7194ccea46ca54a7b502b381eef16d788c989f -SIZE (bind9-fc7bce5.tar.gz) = 11010437 +SHA256 (bind9-0c7a779.tar.gz) = 691e2e196f7c286375a540747a06dfe3ca5c62860859e3f728637bd92ebcdb72 +SIZE (bind9-0c7a779.tar.gz) = 11690194 Modified: branches/2016Q1/dns/bind9-devel/files/extrapatch-bind-min-override-ttl ============================================================================== --- branches/2016Q1/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Wed Mar 9 21:21:50 2016 (r410729) @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2015-12-19 01:04:14 UTC +--- bin/named/config.c.orig 2016-03-09 04:02:43 UTC +++ bin/named/config.c @@ -159,6 +159,8 @@ options {\n\ lame-ttl 600;\n\ @@ -9,7 +9,7 @@ max-cache-ttl 604800; /* 1 week */\n\ transfer-format many-answers;\n\ max-cache-size 90%;\n\ ---- bin/named/server.c.orig 2015-12-19 01:04:14 UTC +--- bin/named/server.c.orig 2016-03-09 04:02:43 UTC +++ bin/named/server.c @@ -3022,6 +3022,16 @@ configure_view(dns_view_t *view, dns_vie } @@ -28,7 +28,7 @@ result = ns_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2015-12-19 01:04:14 UTC +--- lib/dns/include/dns/view.h.orig 2016-03-09 04:02:43 UTC +++ lib/dns/include/dns/view.h @@ -152,6 +152,8 @@ struct dns_view { isc_boolean_t requestnsid; @@ -39,9 +39,9 @@ dns_ttl_t maxncachettl; isc_uint32_t nta_lifetime; isc_uint32_t nta_recheck; ---- lib/dns/resolver.c.orig 2015-12-19 01:04:14 UTC +--- lib/dns/resolver.c.orig 2016-03-09 04:02:43 UTC +++ lib/dns/resolver.c -@@ -5397,6 +5397,18 @@ cache_name(fetchctx_t *fctx, dns_name_t +@@ -5419,6 +5419,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } /* @@ -60,7 +60,7 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) ---- lib/isccfg/namedconf.c.orig 2015-12-19 01:04:14 UTC +--- lib/isccfg/namedconf.c.orig 2016-03-09 04:02:43 UTC +++ lib/isccfg/namedconf.c @@ -1677,6 +1677,8 @@ view_clauses[] = { { "nosit-udp-size", &cfg_type_uint32, CFG_CLAUSEFLAG_OBSOLETE }, Modified: branches/2016Q1/dns/bind9-devel/files/patch-configure ============================================================================== --- branches/2016Q1/dns/bind9-devel/files/patch-configure Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind9-devel/files/patch-configure Wed Mar 9 21:21:50 2016 (r410729) @@ -1,6 +1,6 @@ ---- configure.orig 2015-12-15 23:30:08 UTC +--- configure.orig 2016-03-09 04:02:43 UTC +++ configure -@@ -14113,27 +14113,9 @@ done +@@ -14151,27 +14151,9 @@ done # problems start to show up. saved_libs="$LIBS" for TRY_LIBS in \ @@ -30,7 +30,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5 $as_echo_n "checking linking as $TRY_LIBS... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext -@@ -14176,47 +14158,7 @@ $as_echo "no" >&6; } ;; +@@ -14214,47 +14196,7 @@ $as_echo "no" >&6; } ;; no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;; esac @@ -79,7 +79,7 @@ DNS_GSSAPI_LIBS="$LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5 -@@ -21870,7 +21812,7 @@ $as_echo "" >&6; } +@@ -21949,7 +21891,7 @@ $as_echo "" >&6; } # Check other locations for includes. # Order is important (sigh). Modified: branches/2016Q1/dns/bind9-devel/pkg-plist ============================================================================== --- branches/2016Q1/dns/bind9-devel/pkg-plist Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind9-devel/pkg-plist Wed Mar 9 21:21:50 2016 (r410729) @@ -379,13 +379,13 @@ man/man8/named-compilezone.8.gz man/man8/named-journalprint.8.gz man/man8/named.8.gz man/man8/nsec3hash.8.gz -man/man8/tsig-keygen.8.gz %%NATIVE_PKCS11%%man/man8/pkcs11-destroy.8.gz %%NATIVE_PKCS11%%man/man8/pkcs11-keygen.8.gz %%NATIVE_PKCS11%%man/man8/pkcs11-list.8.gz %%NATIVE_PKCS11%%man/man8/pkcs11-tokens.8.gz man/man8/rndc-confgen.8.gz man/man8/rndc.8.gz +man/man8/tsig-keygen.8.gz sbin/arpaname sbin/ddns-confgen %%PYTHON%%sbin/dnssec-checkds Modified: branches/2016Q1/dns/bind910/Makefile ============================================================================== --- branches/2016Q1/dns/bind910/Makefile Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind910/Makefile Wed Mar 9 21:21:50 2016 (r410729) @@ -29,7 +29,7 @@ COMMENT= BIND DNS suite with updated DNS LICENSE= ISCL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.10.3-P3 +ISCVERSION= 9.10.3-P4 MAKE_JOBS_UNSAFE= yes Modified: branches/2016Q1/dns/bind910/distinfo ============================================================================== --- branches/2016Q1/dns/bind910/distinfo Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind910/distinfo Wed Mar 9 21:21:50 2016 (r410729) @@ -1,2 +1,2 @@ -SHA256 (bind-9.10.3-P3.tar.gz) = 690810d1fbb72afa629e74638d19cd44e28d2b2e5eb63f55c705ad85d1a4cb83 -SIZE (bind-9.10.3-P3.tar.gz) = 8527540 +SHA256 (bind-9.10.3-P4.tar.gz) = 2ac044b5fbdf45fb45107af0df961b3b7cb5262a3bf1948ed3fe7a170dd13e3e +SIZE (bind-9.10.3-P4.tar.gz) = 8529535 Modified: branches/2016Q1/dns/bind910/files/extrapatch-bind-min-override-ttl ============================================================================== --- branches/2016Q1/dns/bind910/files/extrapatch-bind-min-override-ttl Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind910/files/extrapatch-bind-min-override-ttl Wed Mar 9 21:21:50 2016 (r410729) @@ -1,7 +1,6 @@ -diff -Nabdur bind-9.6.0-P1.orig/bin/named/config.c bind-9.6.0-P1/bin/named/config.c ---- bin/named/config.c 2009-05-22 12:24:49.000000000 +0400 -+++ bin/named/config.c 2009-05-22 12:31:35.000000000 +0400 -@@ -129,6 +129,8 @@ +--- bin/named/config.c.orig 2016-02-29 00:29:06 UTC ++++ bin/named/config.c +@@ -151,6 +151,8 @@ options {\n\ min-roots 2;\n\ lame-ttl 600;\n\ max-ncache-ttl 10800; /* 3 hours */\n\ @@ -10,11 +9,10 @@ diff -Nabdur bind-9.6.0-P1.orig/bin/name max-cache-ttl 604800; /* 1 week */\n\ transfer-format many-answers;\n\ max-cache-size 0;\n\ -diff -Nabdur bind-9.6.0-P1.orig/bin/named/server.c bind-9.6.0-P1/bin/named/server.c ---- bin/named/server.c 2009-05-22 12:24:49.000000000 +0400 -+++ bin/named/server.c 2009-05-22 12:32:18.000000000 +0400 -@@ -1727,6 +1727,16 @@ - CHECK(mustbesecure(obj, view->resolver)); +--- bin/named/server.c.orig 2016-02-29 00:29:06 UTC ++++ bin/named/server.c +@@ -2797,6 +2797,16 @@ configure_view(dns_view_t *view, dns_vie + } obj = NULL; + result = ns_config_get(maps, "override-cache-ttl", &obj); @@ -30,22 +28,20 @@ diff -Nabdur bind-9.6.0-P1.orig/bin/name result = ns_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); -diff -Nabdur bind-9.6.0-P1.orig/lib/dns/include/dns/view.h bind-9.6.0-P1/lib/dns/include/dns/view.h ---- lib/dns/include/dns/view.h 2009-05-22 12:24:49.000000000 +0400 -+++ lib/dns/include/dns/view.h 2009-05-22 12:29:03.000000000 +0400 -@@ -131,6 +131,8 @@ - isc_boolean_t provideixfr; +--- lib/dns/include/dns/view.h.orig 2016-02-29 00:29:06 UTC ++++ lib/dns/include/dns/view.h +@@ -150,6 +150,8 @@ struct dns_view { isc_boolean_t requestnsid; + isc_boolean_t requestsit; dns_ttl_t maxcachettl; + dns_ttl_t mincachettl; + dns_ttl_t overridecachettl; dns_ttl_t maxncachettl; - in_port_t dstport; - dns_aclenv_t aclenv; -diff -Nabdur bind-9.6.0-P1.orig/lib/dns/resolver.c bind-9.6.0-P1/lib/dns/resolver.c ---- lib/dns/resolver.c 2009-05-22 12:24:49.000000000 +0400 -+++ lib/dns/resolver.c 2009-05-22 12:30:41.000000000 +0400 -@@ -4054,6 +4054,18 @@ + dns_ttl_t prefetch_trigger; + dns_ttl_t prefetch_eligible; +--- lib/dns/resolver.c.orig 2016-02-29 00:29:06 UTC ++++ lib/dns/resolver.c +@@ -5345,6 +5345,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } /* @@ -64,11 +60,10 @@ diff -Nabdur bind-9.6.0-P1.orig/lib/dns/ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) -diff -Nabdur bind-9.6.0-P1.orig/lib/isccfg/namedconf.c bind-9.6.0-P1/lib/isccfg/namedconf.c ---- lib/isccfg/namedconf.c 2009-05-22 12:24:49.000000000 +0400 -+++ lib/isccfg/namedconf.c 2009-05-22 12:31:21.000000000 +0400 -@@ -821,6 +821,8 @@ - { "lame-ttl", &cfg_type_uint32, 0 }, +--- lib/isccfg/namedconf.c.orig 2016-02-29 00:29:06 UTC ++++ lib/isccfg/namedconf.c +@@ -1561,6 +1561,8 @@ view_clauses[] = { + #endif { "max-acache-size", &cfg_type_sizenodefault, 0 }, { "max-cache-size", &cfg_type_sizenodefault, 0 }, + { "override-cache-ttl", &cfg_type_uint32, 0 }, Modified: branches/2016Q1/dns/bind99/Makefile ============================================================================== --- branches/2016Q1/dns/bind99/Makefile Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind99/Makefile Wed Mar 9 21:21:50 2016 (r410729) @@ -15,7 +15,7 @@ COMMENT= BIND DNS suite with updated DNS LICENSE= ISCL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.9.8-P3 +ISCVERSION= 9.9.8-P4 MAKE_JOBS_UNSAFE= yes Modified: branches/2016Q1/dns/bind99/distinfo ============================================================================== --- branches/2016Q1/dns/bind99/distinfo Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind99/distinfo Wed Mar 9 21:21:50 2016 (r410729) @@ -1,4 +1,4 @@ -SHA256 (bind-9.9.8-P3.tar.gz) = 6a489f98dffaf31cfd8b572aa5cc345e8d775758488a4541f2f0c974c8090a07 -SIZE (bind-9.9.8-P3.tar.gz) = 7998476 -SHA256 (9.9.8-P3-rpz2+rl.14038.05.patch.xz) = d886ee7d350b65068c7502e2d925ce675875ed968f3b8c82ad87de5f6843e372 -SIZE (9.9.8-P3-rpz2+rl.14038.05.patch.xz) = 39224 +SHA256 (bind-9.9.8-P4.tar.gz) = 5ed0b852e4d1dc90e10751c7fa70a9ee29a619bad61d97250eac8161009d89f2 +SIZE (bind-9.9.8-P4.tar.gz) = 7999697 +SHA256 (9.9.8-P4-rpz2+rl.14038.05.patch.xz) = 5415559171c03a9a02e31284552a4888911eeb692d57def8d631b7d0564dc5f0 +SIZE (9.9.8-P4-rpz2+rl.14038.05.patch.xz) = 39240 Modified: branches/2016Q1/dns/bind99/files/extrapatch-bind-min-override-ttl ============================================================================== --- branches/2016Q1/dns/bind99/files/extrapatch-bind-min-override-ttl Wed Mar 9 21:16:31 2016 (r410728) +++ branches/2016Q1/dns/bind99/files/extrapatch-bind-min-override-ttl Wed Mar 9 21:21:50 2016 (r410729) @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2015-09-09 02:23:50 UTC +--- bin/named/config.c.orig 2016-02-29 00:30:52 UTC +++ bin/named/config.c @@ -141,6 +141,8 @@ options {\n\ min-roots 2;\n\ @@ -9,7 +9,7 @@ max-cache-ttl 604800; /* 1 week */\n\ transfer-format many-answers;\n\ max-cache-size 0;\n\ ---- bin/named/server.c.orig 2015-09-09 02:23:50 UTC +--- bin/named/server.c.orig 2016-02-29 00:30:52 UTC +++ bin/named/server.c @@ -2554,6 +2554,16 @@ configure_view(dns_view_t *view, cfg_obj } @@ -28,7 +28,7 @@ result = ns_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2015-09-09 02:23:50 UTC +--- lib/dns/include/dns/view.h.orig 2016-02-29 00:30:52 UTC +++ lib/dns/include/dns/view.h @@ -148,6 +148,8 @@ struct dns_view { isc_boolean_t provideixfr; @@ -39,9 +39,9 @@ dns_ttl_t maxncachettl; in_port_t dstport; dns_aclenv_t aclenv; ---- lib/dns/resolver.c.orig 2015-09-09 02:23:50 UTC +--- lib/dns/resolver.c.orig 2016-02-29 00:30:52 UTC +++ lib/dns/resolver.c -@@ -5086,6 +5086,18 @@ cache_name(fetchctx_t *fctx, dns_name_t +@@ -5088,6 +5088,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } /* @@ -60,7 +60,7 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) ---- lib/isccfg/namedconf.c.orig 2015-09-09 02:23:50 UTC +--- lib/isccfg/namedconf.c.orig 2016-02-29 00:30:52 UTC +++ lib/isccfg/namedconf.c @@ -1448,6 +1448,8 @@ view_clauses[] = { { "lame-ttl", &cfg_type_uint32, 0 }, From owner-svn-ports-branches@freebsd.org Wed Mar 9 22:38:35 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4CDEACAFD5; Wed, 9 Mar 2016 22:38:35 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C5AC33D; Wed, 9 Mar 2016 22:38:35 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u29McY1m090951; Wed, 9 Mar 2016 22:38:34 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u29McYam090948; Wed, 9 Mar 2016 22:38:34 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603092238.u29McYam090948@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 9 Mar 2016 22:38:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410732 - branches/2016Q1/security/libotr 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.21 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, 09 Mar 2016 22:38:35 -0000 Author: feld Date: Wed Mar 9 22:38:34 2016 New Revision: 410732 URL: https://svnweb.freebsd.org/changeset/ports/410732 Log: MFH: r410731 security/libotr: Update to 4.1.1 Changes: * Fix an integer overflow bug that can cause a heap buffer overflow (and from there remote code execution) on 64-bit platforms * Fix possible free() of an uninitialized pointer * Be stricter about parsing v3 fragments * Add a testsuite ("make check" to run it), but only on Linux for now, since it uses Linux-specific features such as epoll * Fix a memory leak when reading a malformed instance tag file * Protocol documentation clarifications Security: CVE-2016-2851 Approved by: ports-secteam (with hat) Modified: branches/2016Q1/security/libotr/Makefile branches/2016Q1/security/libotr/distinfo branches/2016Q1/security/libotr/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/security/libotr/Makefile ============================================================================== --- branches/2016Q1/security/libotr/Makefile Wed Mar 9 22:37:52 2016 (r410731) +++ branches/2016Q1/security/libotr/Makefile Wed Mar 9 22:38:34 2016 (r410732) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libotr -PORTVERSION= 4.1.0 -PORTREVISION= 1 +PORTVERSION= 4.1.1 CATEGORIES= security net-im net MASTER_SITES= https://otr.cypherpunks.ca/ \ http://www.c-s.li/ports/ Modified: branches/2016Q1/security/libotr/distinfo ============================================================================== --- branches/2016Q1/security/libotr/distinfo Wed Mar 9 22:37:52 2016 (r410731) +++ branches/2016Q1/security/libotr/distinfo Wed Mar 9 22:38:34 2016 (r410732) @@ -1,4 +1,4 @@ -SHA256 (libotr-4.1.0.tar.gz) = 4fdb891940ec89d300190a98f69a9138248dcb8c8d337633fb981b8d0a9cd930 -SIZE (libotr-4.1.0.tar.gz) = 576771 -SHA256 (libotr-4.1.0.tar.gz.asc) = d77b093c282235977bbf8050a310f64f197e6ed05fb432b516e9e2dab272077b -SIZE (libotr-4.1.0.tar.gz.asc) = 190 +SHA256 (libotr-4.1.1.tar.gz) = 8b3b182424251067a952fb4e6c7b95a21e644fbb27fbd5f8af2b2ed87ca419f5 +SIZE (libotr-4.1.1.tar.gz) = 655791 +SHA256 (libotr-4.1.1.tar.gz.asc) = 3a24fe5ef490292295a5be7484d1148a4dbcace3a703279c9ea8ff7947215e90 +SIZE (libotr-4.1.1.tar.gz.asc) = 811 Modified: branches/2016Q1/security/libotr/pkg-plist ============================================================================== --- branches/2016Q1/security/libotr/pkg-plist Wed Mar 9 22:37:52 2016 (r410731) +++ branches/2016Q1/security/libotr/pkg-plist Wed Mar 9 22:38:34 2016 (r410732) @@ -23,7 +23,7 @@ include/libotr/version.h lib/libotr.a lib/libotr.so lib/libotr.so.5 -lib/libotr.so.5.1.0 +lib/libotr.so.5.1.1 libdata/pkgconfig/libotr.pc man/man1/otr_mackey.1.gz man/man1/otr_modify.1.gz From owner-svn-ports-branches@freebsd.org Thu Mar 10 15:08:29 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 898B9ACB23D; Thu, 10 Mar 2016 15:08:29 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 65326D50; Thu, 10 Mar 2016 15:08:29 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2AF8SNM092855; Thu, 10 Mar 2016 15:08:28 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2AF8S30092852; Thu, 10 Mar 2016 15:08:28 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603101508.u2AF8S30092852@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 10 Mar 2016 15:08:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410758 - branches/2016Q1/security/pidgin-otr 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.21 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Mar 2016 15:08:29 -0000 Author: feld Date: Thu Mar 10 15:08:28 2016 New Revision: 410758 URL: https://svnweb.freebsd.org/changeset/ports/410758 Log: MFH: r405833 - Update to 4.0.1 - Add NLS OPTION Approved by: ports-secteam (with hat) Modified: branches/2016Q1/security/pidgin-otr/Makefile branches/2016Q1/security/pidgin-otr/distinfo branches/2016Q1/security/pidgin-otr/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/security/pidgin-otr/Makefile ============================================================================== --- branches/2016Q1/security/pidgin-otr/Makefile Thu Mar 10 15:06:51 2016 (r410757) +++ branches/2016Q1/security/pidgin-otr/Makefile Thu Mar 10 15:08:28 2016 (r410758) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= otr -PORTVERSION= 4.0.0 -PORTREVISION= 6 +PORTVERSION= 4.0.1 CATEGORIES= security net-im net MASTER_SITES= http://www.cypherpunks.ca/otr/ PKGNAMEPREFIX= pidgin- @@ -19,7 +18,11 @@ LIB_DEPENDS= libotr.so.5:${PORTSDIR}/sec libgcrypt.so:${PORTSDIR}/security/libgcrypt \ libpurple.so:${PORTSDIR}/net-im/libpurple -USES= cpe gettext gmake libtool pkgconfig +USES= cpe gmake libtool pkgconfig +OPTIONS_DEFINE= NLS +NLS_USES= gettext +OPTIONS_SUB= yes + CPE_VENDOR= cypherpunks CPE_PRODUCT= ${PKGNAMEPREFIX}${PORTNAME} USE_GNOME= gtk20 intltool Modified: branches/2016Q1/security/pidgin-otr/distinfo ============================================================================== --- branches/2016Q1/security/pidgin-otr/distinfo Thu Mar 10 15:06:51 2016 (r410757) +++ branches/2016Q1/security/pidgin-otr/distinfo Thu Mar 10 15:08:28 2016 (r410758) @@ -1,2 +1,2 @@ -SHA256 (pidgin-otr-4.0.0.tar.gz) = d56b3f092dbe9ee6597641c7d2dd294884dc04ba47aaf4ec571cd54977df4691 -SIZE (pidgin-otr-4.0.0.tar.gz) = 459591 +SHA256 (pidgin-otr-4.0.1.tar.gz) = 1b781f48c27bcc9de3136c0674810df23f7d6b44c727dbf4dfb24067909bf30a +SIZE (pidgin-otr-4.0.1.tar.gz) = 496879 Modified: branches/2016Q1/security/pidgin-otr/pkg-plist ============================================================================== --- branches/2016Q1/security/pidgin-otr/pkg-plist Thu Mar 10 15:06:51 2016 (r410757) +++ branches/2016Q1/security/pidgin-otr/pkg-plist Thu Mar 10 15:08:28 2016 (r410758) @@ -1,18 +1,22 @@ lib/pidgin/pidgin-otr.so -share/locale/ar/LC_MESSAGES/pidgin-otr.mo -share/locale/de/LC_MESSAGES/pidgin-otr.mo -share/locale/el/LC_MESSAGES/pidgin-otr.mo -share/locale/es/LC_MESSAGES/pidgin-otr.mo -share/locale/fa/LC_MESSAGES/pidgin-otr.mo -share/locale/fr/LC_MESSAGES/pidgin-otr.mo -share/locale/it/LC_MESSAGES/pidgin-otr.mo -share/locale/hu/LC_MESSAGES/pidgin-otr.mo -share/locale/nl/LC_MESSAGES/pidgin-otr.mo -share/locale/my_MM/LC_MESSAGES/pidgin-otr.mo -share/locale/nn/LC_MESSAGES/pidgin-otr.mo -share/locale/pl/LC_MESSAGES/pidgin-otr.mo -share/locale/ru/LC_MESSAGES/pidgin-otr.mo -share/locale/sk/LC_MESSAGES/pidgin-otr.mo -share/locale/sv/LC_MESSAGES/pidgin-otr.mo -share/locale/vi/LC_MESSAGES/pidgin-otr.mo -share/locale/zh_CN/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/ar/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/de/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/el/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/es/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/fa/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/fi/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/hu/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/it/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/my_MM/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/nl/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/nn/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/sk/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pidgin-otr.mo From owner-svn-ports-branches@freebsd.org Thu Mar 10 15:09:18 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E150ACB285; Thu, 10 Mar 2016 15:09:18 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F790E3D; Thu, 10 Mar 2016 15:09:18 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2AF9HS5093024; Thu, 10 Mar 2016 15:09:17 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2AF9HJA093023; Thu, 10 Mar 2016 15:09:17 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603101509.u2AF9HJA093023@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 10 Mar 2016 15:09:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410759 - branches/2016Q1/security/pidgin-otr 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.21 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Mar 2016 15:09:18 -0000 Author: feld Date: Thu Mar 10 15:09:17 2016 New Revision: 410759 URL: https://svnweb.freebsd.org/changeset/ports/410759 Log: MFH: r409519 - Clarify LICENSE - Add LICENSE_FILE - Fix build with disabled NLS Approved by: ports-secteam (with hat) Modified: branches/2016Q1/security/pidgin-otr/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/security/pidgin-otr/Makefile ============================================================================== --- branches/2016Q1/security/pidgin-otr/Makefile Thu Mar 10 15:08:28 2016 (r410758) +++ branches/2016Q1/security/pidgin-otr/Makefile Thu Mar 10 15:09:17 2016 (r410759) @@ -10,7 +10,8 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${ MAINTAINER= ports@FreeBSD.org COMMENT= Allows deniable private conversations using Pidgin -LICENSE= GPLv2 +LICENSE= GPLv2 # only +LICENSE_FILE= ${WRKSRC}/COPYING # explicitly use libotr.so.5 (see ports/186944) BUILD_DEPENDS= pidgin:${PORTSDIR}/net-im/pidgin @@ -19,10 +20,6 @@ LIB_DEPENDS= libotr.so.5:${PORTSDIR}/sec libpurple.so:${PORTSDIR}/net-im/libpurple USES= cpe gmake libtool pkgconfig -OPTIONS_DEFINE= NLS -NLS_USES= gettext -OPTIONS_SUB= yes - CPE_VENDOR= cypherpunks CPE_PRODUCT= ${PKGNAMEPREFIX}${PORTNAME} USE_GNOME= gtk20 intltool @@ -34,6 +31,12 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --with-libotr-prefix=${LOCALBASE}/lib \ --with-libotr-inc-prefix=${LOCALBASE}/include +OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes + +NLS_USES= gettext +NLS_USES_OFF= gettext-tools + .include .if ${OSVERSION} < 1000036 && ${ARCH} == i386 From owner-svn-ports-branches@freebsd.org Thu Mar 10 15:09:55 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F417ACB2F2; Thu, 10 Mar 2016 15:09:55 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DCC18F2F; Thu, 10 Mar 2016 15:09:54 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2AF9ro8093209; Thu, 10 Mar 2016 15:09:53 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2AF9rKC093205; Thu, 10 Mar 2016 15:09:53 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603101509.u2AF9rKC093205@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 10 Mar 2016 15:09:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410760 - branches/2016Q1/security/pidgin-otr 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.21 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Mar 2016 15:09:55 -0000 Author: feld Date: Thu Mar 10 15:09:53 2016 New Revision: 410760 URL: https://svnweb.freebsd.org/changeset/ports/410760 Log: MFH: r410757 security/pidgin-otr: Update to 4.0.2 Changes: - Fix use-after-free issue during SMP - Updated Spanish, German, Norwegian Bokmål translations - New Danish translation - The Windows binary has been linked with updated versions of libotr, libgcrypt, libgpg-error, and other supporting libraries Security: CVE-2015-8833 Security: http://www.vuxml.org/freebsd/77e0b631-e6cf-11e5-85be-14dae9d210b8.html Approved by: ports-secteam (with hat) Modified: branches/2016Q1/security/pidgin-otr/Makefile branches/2016Q1/security/pidgin-otr/distinfo branches/2016Q1/security/pidgin-otr/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/security/pidgin-otr/Makefile ============================================================================== --- branches/2016Q1/security/pidgin-otr/Makefile Thu Mar 10 15:09:17 2016 (r410759) +++ branches/2016Q1/security/pidgin-otr/Makefile Thu Mar 10 15:09:53 2016 (r410760) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= otr -PORTVERSION= 4.0.1 +PORTVERSION= 4.0.2 CATEGORIES= security net-im net MASTER_SITES= http://www.cypherpunks.ca/otr/ PKGNAMEPREFIX= pidgin- Modified: branches/2016Q1/security/pidgin-otr/distinfo ============================================================================== --- branches/2016Q1/security/pidgin-otr/distinfo Thu Mar 10 15:09:17 2016 (r410759) +++ branches/2016Q1/security/pidgin-otr/distinfo Thu Mar 10 15:09:53 2016 (r410760) @@ -1,2 +1,2 @@ -SHA256 (pidgin-otr-4.0.1.tar.gz) = 1b781f48c27bcc9de3136c0674810df23f7d6b44c727dbf4dfb24067909bf30a -SIZE (pidgin-otr-4.0.1.tar.gz) = 496879 +SHA256 (pidgin-otr-4.0.2.tar.gz) = f4b59eef4a94b1d29dbe0c106dd00cdc630e47f18619fc754e5afbf5724ebac4 +SIZE (pidgin-otr-4.0.2.tar.gz) = 515627 Modified: branches/2016Q1/security/pidgin-otr/pkg-plist ============================================================================== --- branches/2016Q1/security/pidgin-otr/pkg-plist Thu Mar 10 15:09:17 2016 (r410759) +++ branches/2016Q1/security/pidgin-otr/pkg-plist Thu Mar 10 15:09:53 2016 (r410760) @@ -1,6 +1,7 @@ lib/pidgin/pidgin-otr.so %%NLS%%share/locale/ar/LC_MESSAGES/pidgin-otr.mo %%NLS%%share/locale/cs/LC_MESSAGES/pidgin-otr.mo +%%NLS%%share/locale/da/LC_MESSAGES/pidgin-otr.mo %%NLS%%share/locale/de/LC_MESSAGES/pidgin-otr.mo %%NLS%%share/locale/el/LC_MESSAGES/pidgin-otr.mo %%NLS%%share/locale/es/LC_MESSAGES/pidgin-otr.mo From owner-svn-ports-branches@freebsd.org Thu Mar 10 16:35:17 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6878EACA199; Thu, 10 Mar 2016 16:35:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1FBF9F2D; Thu, 10 Mar 2016 16:35:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2AGZG0i021826; Thu, 10 Mar 2016 16:35:16 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2AGZGxM021824; Thu, 10 Mar 2016 16:35:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201603101635.u2AGZGxM021824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 10 Mar 2016 16:35:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410765 - in branches/2016Q1/www: firefox firefox-esr 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.21 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Mar 2016 16:35:17 -0000 Author: jbeich Date: Thu Mar 10 16:35:15 2016 New Revision: 410765 URL: https://svnweb.freebsd.org/changeset/ports/410765 Log: MFH: r410739 www/firefox{,-esr}: drop obsolete note after r403852 Approved by: ports-secteam (feld) Modified: branches/2016Q1/www/firefox-esr/pkg-message branches/2016Q1/www/firefox/pkg-message Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/firefox-esr/pkg-message ============================================================================== --- branches/2016Q1/www/firefox-esr/pkg-message Thu Mar 10 16:30:32 2016 (r410764) +++ branches/2016Q1/www/firefox-esr/pkg-message Thu Mar 10 16:35:15 2016 (r410765) @@ -14,23 +14,6 @@ The SSH server on remote_host must allow ====================================================================== -Firefox and HTML5 - -Certain functions used to display HTML5 elements need the sem(4) -module but only on 8.x releases (or before r201546). - -If your Firefox crashes with the following message while viewing a -HTML5 page: -"Bad system call (core dumped)" - -you need to load the sem module (kldload sem). - -To load sem on every boot put the following into your -/boot/loader.conf: -sem_load="YES" - -====================================================================== - Any bug reports should be addressed to the maintainers at: gecko@FreeBSD.org You may also Cc: freebsd-ports@FreeBSD.org. Please do not send Modified: branches/2016Q1/www/firefox/pkg-message ============================================================================== --- branches/2016Q1/www/firefox/pkg-message Thu Mar 10 16:30:32 2016 (r410764) +++ branches/2016Q1/www/firefox/pkg-message Thu Mar 10 16:35:15 2016 (r410765) @@ -14,23 +14,6 @@ The SSH server on remote_host must allow ====================================================================== -Firefox and HTML5 - -Certain functions used to display HTML5 elements need the sem(4) -module but only on 8.x releases (or before r201546). - -If your Firefox crashes with the following message while viewing a -HTML5 page: -"Bad system call (core dumped)" - -you need to load the sem module (kldload sem). - -To load sem on every boot put the following into your -/boot/loader.conf: -sem_load="YES" - -====================================================================== - Any bug reports should be addressed to the maintainers at: gecko@FreeBSD.org You may also Cc: freebsd-ports@FreeBSD.org. Please do not send