From owner-svn-ports-branches@freebsd.org Sun Apr 17 01:17:56 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 DADD1AEED2F; Sun, 17 Apr 2016 01:17:56 +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 B651F1F56; Sun, 17 Apr 2016 01:17:56 +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 u3H1HtSJ006562; Sun, 17 Apr 2016 01:17:55 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3H1HtED006558; Sun, 17 Apr 2016 01:17:55 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201604170117.u3H1HtED006558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 17 Apr 2016 01:17:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413487 - in branches/2016Q2/net/dhcpcd: . 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, 17 Apr 2016 01:17:57 -0000 Author: junovitch Date: Sun Apr 17 01:17:55 2016 New Revision: 413487 URL: https://svnweb.freebsd.org/changeset/ports/413487 Log: MFH: r413437 net/dhcpcd: 6.10.1 -> 6.10.2 Changes: - Add fix for CVE-2014-7913. - eloop performance and API improvements. - Don't send a blank hostname. - Prefix Delegation default value fixes. - Prefix Delegation suffix is now configurable. - dhcpcd.conf now allows embedded comments. - IPv6 static address support. - ipv6ra_accept_nopublic has been removed, all prefixes now accepted. - Remove pidfile handling from dhcpcd and use pidfile_lock(3). If not available, use a compat shim. - Fix changing routes on BSD. Specific to FreeBSD ports package: - dhcpcd rc.d script now supports starting as a service (dhcpcd_enable=YES) as well as handling per interface if needed from devd. - The patch to dhcpcd.conf has been removed and the pkg-message adjusted to match the more recent findings in bug #194485 PR: 208702 Submitted by: roy@marples.name (maintainer) Approved by: ports-secteam (with hat) Security: CVE-2014-7913 Security: https://vuxml.FreeBSD.org/freebsd/6ec9f210-0404-11e6-9aee-bc5ff4fb5ea1.html Deleted: branches/2016Q2/net/dhcpcd/files/patch-dhcpcd.conf Modified: branches/2016Q2/net/dhcpcd/Makefile branches/2016Q2/net/dhcpcd/distinfo branches/2016Q2/net/dhcpcd/files/dhcpcd.in branches/2016Q2/net/dhcpcd/pkg-message Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/net/dhcpcd/Makefile ============================================================================== --- branches/2016Q2/net/dhcpcd/Makefile Sun Apr 17 01:16:22 2016 (r413486) +++ branches/2016Q2/net/dhcpcd/Makefile Sun Apr 17 01:17:55 2016 (r413487) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dhcpcd -PORTVERSION= 6.10.1 +PORTVERSION= 6.10.2 CATEGORIES= net MASTER_SITES= http://roy.marples.name/downloads/dhcpcd/ \ http://roy.aydogan.net/dhcpcd/ \ Modified: branches/2016Q2/net/dhcpcd/distinfo ============================================================================== --- branches/2016Q2/net/dhcpcd/distinfo Sun Apr 17 01:16:22 2016 (r413486) +++ branches/2016Q2/net/dhcpcd/distinfo Sun Apr 17 01:17:55 2016 (r413487) @@ -1,2 +1,2 @@ -SHA256 (dhcpcd-6.10.1.tar.xz) = 284abf8c3be0580bbac5eaca95359346ab0d78d4072317b6ce87cc68f2e8ae7b -SIZE (dhcpcd-6.10.1.tar.xz) = 180112 +SHA256 (dhcpcd-6.10.2.tar.xz) = 64a0ff84ba7f1e820b2ccfe08980b3b73e96bb072274b21de523f1da83a94e09 +SIZE (dhcpcd-6.10.2.tar.xz) = 184512 Modified: branches/2016Q2/net/dhcpcd/files/dhcpcd.in ============================================================================== --- branches/2016Q2/net/dhcpcd/files/dhcpcd.in Sun Apr 17 01:16:22 2016 (r413486) +++ branches/2016Q2/net/dhcpcd/files/dhcpcd.in Sun Apr 17 01:17:55 2016 (r413487) @@ -11,26 +11,30 @@ name="dhcpcd" ifn="$2" command="%%PREFIX%%/sbin/dhcpcd" command_args="$ifn" -pidfile="/var/run/dhcpcd-$ifn.pid" +if [ -n "$ifn" ]; then + specific="$(get_if_var $ifn dhcpcd_flags_IF)" + if [ -z "$flags" -a -n "$specific" ]; then + rc_flags="$specific" + fi + pidfile="/var/run/dhcpcd-$ifn.pid" +else + pidfile="$($command -P $rc_flags)" +fi start_precmd="dhcpcd_precmd" dhcpcd_precmd() { - # Override for $ifn specific flags (see rc.subr for $flags setting) - specific=`get_if_var $ifn dhcpcd_flags_IF` - if [ -z "$flags" -a -n "$specific" ]; then - rc_flags=$specific - fi - # dhcpcd may need local binaries - export PATH=${PATH}:%%PREFIX%%/sbin + export PATH=${PATH}:/usr/local/sbin } load_rc_config $name load_rc_config network -if ! dhcpif $ifn; then - return 1 +if [ -n "$ifn" ]; then + if ! dhcpif $ifn; then + err 1 "$ifn is not enabled for DHCP" + fi fi run_rc_command "$1" Modified: branches/2016Q2/net/dhcpcd/pkg-message ============================================================================== --- branches/2016Q2/net/dhcpcd/pkg-message Sun Apr 17 01:16:22 2016 (r413486) +++ branches/2016Q2/net/dhcpcd/pkg-message Sun Apr 17 01:17:55 2016 (r413487) @@ -1,4 +1,6 @@ The default FreeBSD kernel does not allow userland to provide IPv6 -Prefix Routes, which dhcpcd needs to do when running the default configuration. +Prefix Routes when the kernel is handling Router Advertisements. +The default dhcpcd configuration will disable the kernel from handling +Router Advertisements. See http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194485 for a patch. From owner-svn-ports-branches@freebsd.org Sun Apr 17 05:02: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 688E0B10A10; Sun, 17 Apr 2016 05:02:45 +0000 (UTC) (envelope-from ohauer@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 E771A1040; Sun, 17 Apr 2016 05:02:44 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3H52i0B075575; Sun, 17 Apr 2016 05:02:44 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3H52iIb075573; Sun, 17 Apr 2016 05:02:44 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201604170502.u3H52iIb075573@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sun, 17 Apr 2016 05:02:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413490 - in branches/2016Q2/www/apache24: . 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, 17 Apr 2016 05:02:45 -0000 Author: ohauer Date: Sun Apr 17 05:02:43 2016 New Revision: 413490 URL: https://svnweb.freebsd.org/changeset/ports/413490 Log: MFH: r413476 - fix scoreboard, backport fix from [1] - bump PORTREVISION For details see discussion: http://mail-archives.apache.org/mod_mbox/httpd-dev/201604.mbox/browser Thanks to Ken J. for reporting the issue and testing the patch! Reported by: Ken J. (on apache@ list) Obtained from: http://home.apache.org/~ylavic/patches/scoreboard-2.4.18.diff [1] Approved by: ports-secteam (junovitch@) Added: branches/2016Q2/www/apache24/files/patch-server__scoreboard.c - copied unchanged from r413476, head/www/apache24/files/patch-server__scoreboard.c Modified: branches/2016Q2/www/apache24/Makefile Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/www/apache24/Makefile ============================================================================== --- branches/2016Q2/www/apache24/Makefile Sun Apr 17 03:55:01 2016 (r413489) +++ branches/2016Q2/www/apache24/Makefile Sun Apr 17 05:02:43 2016 (r413490) @@ -2,6 +2,7 @@ PORTNAME= apache24 PORTVERSION= 2.4.20 +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} Copied: branches/2016Q2/www/apache24/files/patch-server__scoreboard.c (from r413476, head/www/apache24/files/patch-server__scoreboard.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/www/apache24/files/patch-server__scoreboard.c Sun Apr 17 05:02:43 2016 (r413490, copy of r413476, head/www/apache24/files/patch-server__scoreboard.c) @@ -0,0 +1,119 @@ +Fix apache24-2.4.20 scoreboard, see discussion +http://mail-archives.apache.org/mod_mbox/httpd-dev/201604.mbox/browser + +Patch based on http://home.apache.org/~ylavic/patches/scoreboard-2.4.18.diff + +Index: server/scoreboard.c +=================================================================== +--- server/scoreboard.c.orig 2016-03-02 13:22:07 UTC ++++ server/scoreboard.c +@@ -464,22 +464,18 @@ static int update_child_status_internal( + { + int old_status; + worker_score *ws; +- process_score *ps; + int mpm_generation; + + ws = &ap_scoreboard_image->servers[child_num][thread_num]; + old_status = ws->status; +- if (status >= 0) { +- ws->status = status; +- +- ps = &ap_scoreboard_image->parent[child_num]; +- +- if (status == SERVER_READY +- && old_status == SERVER_STARTING) { +- ws->thread_num = child_num * thread_limit + thread_num; +- ap_mpm_query(AP_MPMQ_GENERATION, &mpm_generation); +- ps->generation = mpm_generation; +- } ++ ws->status = status; ++ ++ if (status == SERVER_READY ++ && old_status == SERVER_STARTING) { ++ process_score *ps = &ap_scoreboard_image->parent[child_num]; ++ ws->thread_num = child_num * thread_limit + thread_num; ++ ap_mpm_query(AP_MPMQ_GENERATION, &mpm_generation); ++ ps->generation = mpm_generation; + } + + if (ap_extended_status) { +@@ -497,46 +493,42 @@ static int update_child_status_internal( + ws->conn_bytes = 0; + ws->last_used = apr_time_now(); + } +- if (status == SERVER_READY) { +- ws->client[0]='\0'; +- ws->vhost[0]='\0'; +- ws->request[0]='\0'; +- ws->protocol[0]='\0'; ++ ++ if (descr) { ++ apr_cpystrn(ws->request, descr, sizeof(ws->request)); + } +- else { +- if (descr) { +- apr_cpystrn(ws->request, descr, sizeof(ws->request)); +- } +- else if (r) { +- copy_request(ws->request, sizeof(ws->request), r); +- } +- if (r) { +- if (!(val = ap_get_useragent_host(r, REMOTE_NOLOOKUP, NULL))) +- apr_cpystrn(ws->client, r->useragent_ip, sizeof(ws->client)); +- else +- apr_cpystrn(ws->client, val, sizeof(ws->client)); +- } +- else if (c) { +- if (!(val = ap_get_remote_host(c, c->base_server->lookup_defaults, +- REMOTE_NOLOOKUP, NULL))) +- apr_cpystrn(ws->client, c->client_ip, sizeof(ws->client)); +- else +- apr_cpystrn(ws->client, val, sizeof(ws->client)); +- } +- if (s) { +- if (c) { +- apr_snprintf(ws->vhost, sizeof(ws->vhost), "%s:%d", +- s->server_hostname, c->local_addr->port); +- } +- else { +- apr_cpystrn(ws->vhost, s->server_hostname, sizeof(ws->vhost)); +- } +- } ++ else if (r) { ++ copy_request(ws->request, sizeof(ws->request), r); ++ } ++ ++ if (r) { ++ if (!(val = ap_get_useragent_host(r, REMOTE_NOLOOKUP, NULL))) ++ apr_cpystrn(ws->client, r->useragent_ip, sizeof(ws->client)); ++ else ++ apr_cpystrn(ws->client, val, sizeof(ws->client)); ++ } ++ else if (c) { ++ if (!(val = ap_get_remote_host(c, c->base_server->lookup_defaults, ++ REMOTE_NOLOOKUP, NULL))) ++ apr_cpystrn(ws->client, c->client_ip, sizeof(ws->client)); ++ else ++ apr_cpystrn(ws->client, val, sizeof(ws->client)); ++ } ++ ++ if (s) { + if (c) { +- val = ap_get_protocol(c); +- apr_cpystrn(ws->protocol, val, sizeof(ws->protocol)); ++ apr_snprintf(ws->vhost, sizeof(ws->vhost), "%s:%d", ++ s->server_hostname, c->local_addr->port); ++ } ++ else { ++ apr_cpystrn(ws->vhost, s->server_hostname, sizeof(ws->vhost)); + } + } ++ ++ if (c) { ++ val = ap_get_protocol(c); ++ apr_cpystrn(ws->protocol, val, sizeof(ws->protocol)); ++ } + } + + return old_status; From owner-svn-ports-branches@freebsd.org Sun Apr 17 13:33:40 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 18D6AB114FE; Sun, 17 Apr 2016 13:33:40 +0000 (UTC) (envelope-from dim@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 CD5491D23; Sun, 17 Apr 2016 13:33:39 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3HDXdZS030904; Sun, 17 Apr 2016 13:33:39 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3HDXdxE030903; Sun, 17 Apr 2016 13:33:39 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201604171333.u3HDXdxE030903@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sun, 17 Apr 2016 13:33:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413509 - branches/2016Q2/graphics/gource/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, 17 Apr 2016 13:33:40 -0000 Author: dim (src committer) Date: Sun Apr 17 13:33:38 2016 New Revision: 413509 URL: https://svnweb.freebsd.org/changeset/ports/413509 Log: MFH: r413481 During the exp-run in bug 208158, it was found that graphics/gource gives errors with libc++ 3.8.0: src/dirnode.cpp:585:27: error: no matching function for call to 'max' this->parent_radius = std::max(1.0, sqrt(total_file_area) * gGourceDirPadding); ^~~~~~~~ This is because max() is being called with two arguments of different type (double and float). Fix this by using 0.0f instead (and casting the result of sqrt to float like two lines above, though this should strictly not be necessary). Approved by: portmgr (junovitch) PR: 208844 Added: branches/2016Q2/graphics/gource/files/ - copied from r413481, head/graphics/gource/files/ Modified: Directory Properties: branches/2016Q2/ (props changed) From owner-svn-ports-branches@freebsd.org Mon Apr 18 19:02:57 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 47401B134A1; Mon, 18 Apr 2016 19:02:57 +0000 (UTC) (envelope-from dim@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 1637D17B0; Mon, 18 Apr 2016 19:02:57 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3IJ2uZ6074791; Mon, 18 Apr 2016 19:02:56 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3IJ2u44074790; Mon, 18 Apr 2016 19:02:56 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201604181902.u3IJ2u44074790@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Mon, 18 Apr 2016 19:02:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413606 - branches/2016Q2/graphics/cuneiform/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: Mon, 18 Apr 2016 19:02:57 -0000 Author: dim (src committer) Date: Mon Apr 18 19:02:56 2016 New Revision: 413606 URL: https://svnweb.freebsd.org/changeset/ports/413606 Log: MFH: r413510 During the exp-run in bug 208158, it was found that graphics/cuneiform gives errors with libc++ 3.8.0: cuneiform_src/Kern/rimage/sources/main/cricontrol.cpp:597:32: error: call to 'abs' is ambiguous wNewHeight = (mbMarginsFlag ? abs(mrMargins.rmBottomMarg - mrMargins.rmTopMarg) : mpSourceDIB->GetLinesNumber()); ^~~ This is because abs() is being called an unsigned argument. Fix this by casting the argument to the appropriate signed type. Approved by: portmgr (junovitch) PR: 208843 Added: branches/2016Q2/graphics/cuneiform/files/ - copied from r413510, head/graphics/cuneiform/files/ Modified: Directory Properties: branches/2016Q2/ (props changed) From owner-svn-ports-branches@freebsd.org Mon Apr 18 21:13:42 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 01080B13D98; Mon, 18 Apr 2016 21:13:42 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC6271A80; Mon, 18 Apr 2016 21:13:41 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3ILDegf014527; Mon, 18 Apr 2016 21:13:40 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3ILDeWg014520; Mon, 18 Apr 2016 21:13:40 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201604182113.u3ILDeWg014520@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 18 Apr 2016 21:13:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413610 - in branches/2016Q2/ports-mgmt/poudriere: . files/MANIFESTS 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, 18 Apr 2016 21:13:42 -0000 Author: bdrewery Date: Mon Apr 18 21:13:40 2016 New Revision: 413610 URL: https://svnweb.freebsd.org/changeset/ports/413610 Log: MFH: r412501 Add MANIFEST files from 10.3-RELEASE. The MANIFEST files were obtained by (a) verifying the signature on the 10.3-RELEASE announcement against the GPG key in the FreeBSD documentation repository; (b) downloading all of the bootonly.iso.xz ISOs; (c) verifying those files against the hashes listed in the signed release announcement; and (d) extracting the MANIFEST files. Added: branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/amd64-amd64-10.3-RELEASE - copied unchanged from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/amd64-amd64-10.3-RELEASE branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/i386-i386-10.3-RELEASE - copied unchanged from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/i386-i386-10.3-RELEASE branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/ia64-ia64-10.3-RELEASE - copied unchanged from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/ia64-ia64-10.3-RELEASE branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc-10.3-RELEASE - copied unchanged from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc-10.3-RELEASE branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc64-10.3-RELEASE - copied unchanged from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc64-10.3-RELEASE branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/sparc64-sparc64-10.3-RELEASE - copied unchanged from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/sparc64-sparc64-10.3-RELEASE Modified: branches/2016Q2/ports-mgmt/poudriere/Makefile Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/ports-mgmt/poudriere/Makefile ============================================================================== --- branches/2016Q2/ports-mgmt/poudriere/Makefile Mon Apr 18 21:05:28 2016 (r413609) +++ branches/2016Q2/ports-mgmt/poudriere/Makefile Mon Apr 18 21:13:40 2016 (r413610) @@ -2,7 +2,7 @@ PORTNAME= poudriere DISTVERSION= 3.1.12 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ Copied: branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/amd64-amd64-10.3-RELEASE (from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/amd64-amd64-10.3-RELEASE) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/amd64-amd64-10.3-RELEASE Mon Apr 18 21:13:40 2016 (r413610, copy of r412501, head/ports-mgmt/poudriere/files/MANIFESTS/amd64-amd64-10.3-RELEASE) @@ -0,0 +1,7 @@ +base.txz e7c4c961694e34b2b60598d9668a185b5de1c6241bedfc4891cd9ea8fbff2dc4 19949 base "Base system (MANDATORY)" on +doc.txz 9c12797809cbef2f99a392432ad3f0407fed537856e10157f96afb47e7c1307c 121 doc "Additional documentation" off +games.txz e9210573ad5aef0a4c1a08cdda1cafdda99f4b9fc92ed6c5dfa61a30daf63fb7 53 games "Games (fortune, etc.)" on +kernel.txz dfb652cfe67adb705c4ac0b2a2bd8671d786137132adc4e6a55c2b18fe05a704 1550 kernel "Kernel (MANDATORY)" on +lib32.txz e9faa712618ee88f0306f5d31abe3069fad0f15028ae9900b68e01c369eeff4a 687 lib32 "32-bit compatibility libraries" on +ports.txz 2e4b1a328885ede0e8b279ca4dffcdf7f81ee51abef5acc44549ccb8512bb196 157722 ports "Ports tree" on +src.txz f50763dcac88e9b7ec616b77d537bf338f470350e2c85e0cc7decfcc8372b54d 70682 src "System source code" off Copied: branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/i386-i386-10.3-RELEASE (from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/i386-i386-10.3-RELEASE) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/i386-i386-10.3-RELEASE Mon Apr 18 21:13:40 2016 (r413610, copy of r412501, head/ports-mgmt/poudriere/files/MANIFESTS/i386-i386-10.3-RELEASE) @@ -0,0 +1,6 @@ +base.txz 311faed2f5484184d4942399edc49e7add0fdccf30bdb22ee404f0c5d5cd768a 19967 base "Base system (MANDATORY)" on +doc.txz 339fe9925c20164ddb7373aca445f14ec4c4d3c8cd96415d1fb52a83b1299aa5 121 doc "Additional documentation" off +games.txz 222554b668bcd8283b241647875433f58a40f9fc87b01bd8cdf719ceb2e1681b 53 games "Games (fortune, etc.)" on +kernel.txz 52fbd9cc70a36022a66af0bc81929d444d02ced29e59c0aa42b51124a0df42ab 1596 kernel "Kernel (MANDATORY)" on +ports.txz 28b00e9e571f95a2e8a81b6894a863fa3ae61693e809190e9e6be86e1a46db79 157722 ports "Ports tree" on +src.txz f50763dcac88e9b7ec616b77d537bf338f470350e2c85e0cc7decfcc8372b54d 70682 src "System source code" off Copied: branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/ia64-ia64-10.3-RELEASE (from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/ia64-ia64-10.3-RELEASE) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/ia64-ia64-10.3-RELEASE Mon Apr 18 21:13:40 2016 (r413610, copy of r412501, head/ports-mgmt/poudriere/files/MANIFESTS/ia64-ia64-10.3-RELEASE) @@ -0,0 +1,6 @@ +base.txz 5e90cffc329ac8a374a9baa66b52cb4a8636073150639cf2aafb7df68b14919a 19966 base "Base system (MANDATORY)" on +doc.txz 6768ade83719c2ba85516e21feefdc455d48ededd87456c27a9e1058a5ca3ab1 121 doc "Additional documentation" off +games.txz adff87520d6199eddcd5c744b43f09dbd8a399946139894d9a2f372e4860d847 53 games "Games (fortune, etc.)" on +kernel.txz f52672fb0d8e93f5d1f5bb65909087a74f450718ee265cdc5dd59caf6647f62a 1073 kernel "Kernel (MANDATORY)" on +ports.txz 0e5bad98ffbd237d1aa378f025a27745e13146d91fd5c5aa8158f793b2d36d7e 157722 ports "Ports tree" on +src.txz f50763dcac88e9b7ec616b77d537bf338f470350e2c85e0cc7decfcc8372b54d 70682 src "System source code" off Copied: branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc-10.3-RELEASE (from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc-10.3-RELEASE) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc-10.3-RELEASE Mon Apr 18 21:13:40 2016 (r413610, copy of r412501, head/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc-10.3-RELEASE) @@ -0,0 +1,6 @@ +base.txz b5de05397e7fddd2d1b1d76aee43cdb5dca1f35188936dca59ac107f38f0dcf2 20062 base "Base system (MANDATORY)" on +doc.txz c3e90c97c32e7e96fbdd4c092a5cd7c4ba17453ba96b8a31427dcda2f164ce4b 121 doc "Additional documentation" off +games.txz fb358460adfbc00db176d0bbdd3b1c9769d45003f80eaf5fab484e9402ddcdbc 53 games "Games (fortune, etc.)" on +kernel.txz 0694d63e0544b6dc6ff39fe4ab0d5745620788868f63b2d5e636a226796a8760 1035 kernel "Kernel (MANDATORY)" on +ports.txz c96d9fd5e1e67b6c01127750f4cc51907865d25de4cb01e84cfd3d4ec5c1aaaa 157722 ports "Ports tree" on +src.txz f50763dcac88e9b7ec616b77d537bf338f470350e2c85e0cc7decfcc8372b54d 70682 src "System source code" off Copied: branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc64-10.3-RELEASE (from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc64-10.3-RELEASE) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc64-10.3-RELEASE Mon Apr 18 21:13:40 2016 (r413610, copy of r412501, head/ports-mgmt/poudriere/files/MANIFESTS/powerpc-powerpc64-10.3-RELEASE) @@ -0,0 +1,7 @@ +base.txz a52a9041bfbbecb903b5f522c317c88e28264873ed8a4c5dd2141be0c1488c75 20078 base "Base system (MANDATORY)" on +doc.txz 041eee1be9a8b644681f8c0a8a45ddc3121b62053a4812a810d26c81e3bcba49 121 doc "Additional documentation" off +games.txz b2078841e7a6b997db609ac03525af4920e33ee02c61820a5eac075c7e99b935 53 games "Games (fortune, etc.)" on +kernel.txz 0d42baa2424f981ba7dfb9f3ed889ed08ddd5eeab8275ed0ebd1ee7821a05466 1245 kernel "Kernel (MANDATORY)" on +lib32.txz 8a96406efc46d8f7cf6a4f899285e31a42c5f5941f518cafeb865298efc624b5 684 lib32 "32-bit compatibility libraries" on +ports.txz 870dcebd3ee267110cd98cdb62668f5f68d079aa30cb5b2c88bc8f5a87175291 157722 ports "Ports tree" on +src.txz f50763dcac88e9b7ec616b77d537bf338f470350e2c85e0cc7decfcc8372b54d 70682 src "System source code" off Copied: branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/sparc64-sparc64-10.3-RELEASE (from r412501, head/ports-mgmt/poudriere/files/MANIFESTS/sparc64-sparc64-10.3-RELEASE) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/ports-mgmt/poudriere/files/MANIFESTS/sparc64-sparc64-10.3-RELEASE Mon Apr 18 21:13:40 2016 (r413610, copy of r412501, head/ports-mgmt/poudriere/files/MANIFESTS/sparc64-sparc64-10.3-RELEASE) @@ -0,0 +1,6 @@ +base.txz 036748e329a6eec71a184ad78ede721c1c1500ae724c8f30484a3f5b1069bf15 20030 base "Base system (MANDATORY)" on +doc.txz 571e2394973db97c82e0e257377bdc18789bcb4e67801df0c33b1112d839146a 121 doc "Additional documentation" off +games.txz e658aa497d998c2f0386a5c47faadb31ea127eaadfcecfa892176e1357279121 53 games "Games (fortune, etc.)" on +kernel.txz e0ee4d1a05d330e7cf4a9b13a14962b79d44114c98e29453edb59c390d7f3af1 1027 kernel "Kernel (MANDATORY)" on +ports.txz 0880102bb35aafe9304fcd572bb5bf88570e576b88dc77fbeca898e150fba96d 157722 ports "Ports tree" on +src.txz f50763dcac88e9b7ec616b77d537bf338f470350e2c85e0cc7decfcc8372b54d 70682 src "System source code" off From owner-svn-ports-branches@freebsd.org Mon Apr 18 21:14:48 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 5C679B13DEF; Mon, 18 Apr 2016 21:14:48 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 33A9E1B93; Mon, 18 Apr 2016 21:14:48 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3ILElsb014679; Mon, 18 Apr 2016 21:14:47 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3ILElWh014678; Mon, 18 Apr 2016 21:14:47 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201604182114.u3ILElWh014678@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 18 Apr 2016 21:14:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413611 - branches/2016Q2/ports-mgmt/poudriere 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, 18 Apr 2016 21:14:48 -0000 Author: bdrewery Date: Mon Apr 18 21:14:47 2016 New Revision: 413611 URL: https://svnweb.freebsd.org/changeset/ports/413611 Log: MFH: r412544 - fix and sort pkg-plist Modified: branches/2016Q2/ports-mgmt/poudriere/pkg-plist Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/ports-mgmt/poudriere/pkg-plist ============================================================================== --- branches/2016Q2/ports-mgmt/poudriere/pkg-plist Mon Apr 18 21:13:40 2016 (r413610) +++ branches/2016Q2/ports-mgmt/poudriere/pkg-plist Mon Apr 18 21:14:47 2016 (r413611) @@ -24,6 +24,7 @@ man/man8/poudriere.8.gz %%DATADIR%%/MANIFESTS/amd64-amd64-10.0-RELEASE %%DATADIR%%/MANIFESTS/amd64-amd64-10.1-RELEASE %%DATADIR%%/MANIFESTS/amd64-amd64-10.2-RELEASE +%%DATADIR%%/MANIFESTS/amd64-amd64-10.3-RELEASE %%DATADIR%%/MANIFESTS/amd64-amd64-9.0-RELEASE %%DATADIR%%/MANIFESTS/amd64-amd64-9.1-RELEASE %%DATADIR%%/MANIFESTS/amd64-amd64-9.2-RELEASE @@ -31,6 +32,7 @@ man/man8/poudriere.8.gz %%DATADIR%%/MANIFESTS/i386-i386-10.0-RELEASE %%DATADIR%%/MANIFESTS/i386-i386-10.1-RELEASE %%DATADIR%%/MANIFESTS/i386-i386-10.2-RELEASE +%%DATADIR%%/MANIFESTS/i386-i386-10.3-RELEASE %%DATADIR%%/MANIFESTS/i386-i386-9.0-RELEASE %%DATADIR%%/MANIFESTS/i386-i386-9.1-RELEASE %%DATADIR%%/MANIFESTS/i386-i386-9.2-RELEASE @@ -38,18 +40,21 @@ man/man8/poudriere.8.gz %%DATADIR%%/MANIFESTS/ia64-ia64-10.0-RELEASE %%DATADIR%%/MANIFESTS/ia64-ia64-10.1-RELEASE %%DATADIR%%/MANIFESTS/ia64-ia64-10.2-RELEASE +%%DATADIR%%/MANIFESTS/ia64-ia64-10.3-RELEASE %%DATADIR%%/MANIFESTS/ia64-ia64-9.0-RELEASE %%DATADIR%%/MANIFESTS/ia64-ia64-9.2-RELEASE %%DATADIR%%/MANIFESTS/ia64-ia64-9.3-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc-10.0-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc-10.1-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc-10.2-RELEASE +%%DATADIR%%/MANIFESTS/powerpc-powerpc-10.3-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc-9.0-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc-9.2-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc-9.3-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc64-10.0-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc64-10.1-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc64-10.2-RELEASE +%%DATADIR%%/MANIFESTS/powerpc-powerpc64-10.3-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc64-9.0-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc64-9.1-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc64-9.2-RELEASE @@ -57,10 +62,12 @@ man/man8/poudriere.8.gz %%DATADIR%%/MANIFESTS/sparc64-sparc64-10.0-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-10.1-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-10.2-RELEASE +%%DATADIR%%/MANIFESTS/sparc64-sparc64-10.3-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-9.0-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-9.1-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-9.2-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-9.3-RELEASE +%%DATADIR%%/api.sh %%DATADIR%%/awk/dependency_loop.awk %%DATADIR%%/awk/humanize.awk %%DATADIR%%/awk/json.awk @@ -68,7 +75,6 @@ man/man8/poudriere.8.gz %%DATADIR%%/awk/json_top.awk %%DATADIR%%/awk/processonelog2.awk %%DATADIR%%/awk/siginfo_buildtime.awk -%%DATADIR%%/api.sh %%DATADIR%%/bulk.sh %%DATADIR%%/clean.sh %%DATADIR%%/common.sh @@ -107,10 +113,10 @@ man/man8/poudriere.8.gz %%DATADIR%%/html/index.html %%DATADIR%%/html/jail.html %%DATADIR%%/html/robots.txt -%%DATADIR%%/include/common.sh.dragonfly -%%DATADIR%%/include/common.sh.freebsd %%DATADIR%%/include/colors.pre.sh %%DATADIR%%/include/colors.sh +%%DATADIR%%/include/common.sh.dragonfly +%%DATADIR%%/include/common.sh.freebsd %%DATADIR%%/include/display.sh %%DATADIR%%/include/fs.sh %%DATADIR%%/include/hash.sh From owner-svn-ports-branches@freebsd.org Mon Apr 18 21:20:51 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 895BAB13FE1; Mon, 18 Apr 2016 21:20:51 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5894E1E65; Mon, 18 Apr 2016 21:20:51 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3ILKoLW015103; Mon, 18 Apr 2016 21:20:50 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3ILKoAt015102; Mon, 18 Apr 2016 21:20:50 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201604182120.u3ILKoAt015102@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 18 Apr 2016 21:20:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413613 - branches/2016Q2/ports-mgmt/poudriere 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, 18 Apr 2016 21:20:51 -0000 Author: bdrewery Date: Mon Apr 18 21:20:50 2016 New Revision: 413613 URL: https://svnweb.freebsd.org/changeset/ports/413613 Log: MFH: r413612 Bump revision after orphan plist fix in r412544. Modified: branches/2016Q2/ports-mgmt/poudriere/Makefile Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/ports-mgmt/poudriere/Makefile ============================================================================== --- branches/2016Q2/ports-mgmt/poudriere/Makefile Mon Apr 18 21:20:28 2016 (r413612) +++ branches/2016Q2/ports-mgmt/poudriere/Makefile Mon Apr 18 21:20:50 2016 (r413613) @@ -2,7 +2,7 @@ PORTNAME= poudriere DISTVERSION= 3.1.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ From owner-svn-ports-branches@freebsd.org Tue Apr 19 00:38:25 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 E464EB13505; Tue, 19 Apr 2016 00:38:25 +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 A653C1674; Tue, 19 Apr 2016 00:38:25 +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 u3J0cONt074718; Tue, 19 Apr 2016 00:38:24 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3J0cOMO074713; Tue, 19 Apr 2016 00:38:24 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201604190038.u3J0cOMO074713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 19 Apr 2016 00:38:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413618 - in branches/2016Q2/security/wpa_supplicant: . 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, 19 Apr 2016 00:38:26 -0000 Author: junovitch Date: Tue Apr 19 00:38:24 2016 New Revision: 413618 URL: https://svnweb.freebsd.org/changeset/ports/413618 Log: MFH: r413609 security/wpa_supplicant: patch 3 CVE security advisories These patches were developed upstream and published as a response to the security advisories. PR: 208482 Security: CVE-2015-5310 Security: CVE-2015-5315 Security: CVE-2015-5316 Security: https://vuxml.FreeBSD.org/freebsd/976567f6-05c5-11e6-94fa-002590263bf5.html Approved by: ports-secteam (with hat) Added: branches/2016Q2/security/wpa_supplicant/files/patch-2015-6-backported-WNM-Ignore-Key-Data-in-WNM-Sleep-Mode-Response-frame - copied unchanged from r413609, head/security/wpa_supplicant/files/patch-2015-6-backported-WNM-Ignore-Key-Data-in-WNM-Sleep-Mode-Response-frame branches/2016Q2/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-peer-Fix-last-fragment-length-validation - copied unchanged from r413609, head/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-peer-Fix-last-fragment-length-validation branches/2016Q2/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-server-Fix-last-fragment-length-validation - copied unchanged from r413609, head/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-server-Fix-last-fragment-length-validation branches/2016Q2/security/wpa_supplicant/files/patch-2015-8-EAP-pwd-peer-Fix-error-path-for-unexpected-Confirm-m - copied unchanged from r413609, head/security/wpa_supplicant/files/patch-2015-8-EAP-pwd-peer-Fix-error-path-for-unexpected-Confirm-m Modified: branches/2016Q2/security/wpa_supplicant/Makefile Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/security/wpa_supplicant/Makefile ============================================================================== --- branches/2016Q2/security/wpa_supplicant/Makefile Tue Apr 19 00:36:17 2016 (r413617) +++ branches/2016Q2/security/wpa_supplicant/Makefile Tue Apr 19 00:38:24 2016 (r413618) @@ -2,6 +2,7 @@ PORTNAME= wpa_supplicant PORTVERSION= 2.5 +PORTREVISION= 1 CATEGORIES= security net MASTER_SITES= http://w1.fi/releases/ Copied: branches/2016Q2/security/wpa_supplicant/files/patch-2015-6-backported-WNM-Ignore-Key-Data-in-WNM-Sleep-Mode-Response-frame (from r413609, head/security/wpa_supplicant/files/patch-2015-6-backported-WNM-Ignore-Key-Data-in-WNM-Sleep-Mode-Response-frame) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/security/wpa_supplicant/files/patch-2015-6-backported-WNM-Ignore-Key-Data-in-WNM-Sleep-Mode-Response-frame Tue Apr 19 00:38:24 2016 (r413618, copy of r413609, head/security/wpa_supplicant/files/patch-2015-6-backported-WNM-Ignore-Key-Data-in-WNM-Sleep-Mode-Response-frame) @@ -0,0 +1,30 @@ +From 6b12d93d2c7428a34bfd4b3813ba339ed57b698a Mon Sep 17 00:00:00 2001 +From: Jouni Malinen +Date: Sun, 25 Oct 2015 15:45:50 +0200 +Subject: [PATCH] WNM: Ignore Key Data in WNM Sleep Mode Response frame if no + PMF in use + +WNM Sleep Mode Response frame is used to update GTK/IGTK only if PMF is +enabled. Verify that PMF is in use before using this field on station +side to avoid accepting unauthenticated key updates. (CVE-2015-5310) + +Signed-off-by: Jouni Malinen +--- + wpa_supplicant/wnm_sta.c | 6 ++++++ + 1 file changed, 6 insertions(+) + +--- wpa_supplicant/wnm_sta.c ++++ wpa_supplicant/wnm_sta.c +@@ -187,6 +187,12 @@ static void wnm_sleep_mode_exit_success(struct wpa_supplicant *wpa_s, + end = ptr + key_len_total; + wpa_hexdump_key(MSG_DEBUG, "WNM: Key Data", ptr, key_len_total); + ++ if (key_len_total && !wpa_sm_pmf_enabled(wpa_s->wpa)) { ++ wpa_msg(wpa_s, MSG_INFO, ++ "WNM: Ignore Key Data in WNM-Sleep Mode Response - PMF not enabled"); ++ return; ++ } ++ + while (ptr + 1 < end) { + if (ptr + 2 + ptr[1] > end) { + wpa_printf(MSG_DEBUG, "WNM: Invalid Key Data element " Copied: branches/2016Q2/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-peer-Fix-last-fragment-length-validation (from r413609, head/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-peer-Fix-last-fragment-length-validation) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-peer-Fix-last-fragment-length-validation Tue Apr 19 00:38:24 2016 (r413618, copy of r413609, head/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-peer-Fix-last-fragment-length-validation) @@ -0,0 +1,52 @@ +From 8057821706784608b828e769ccefbced95591e50 Mon Sep 17 00:00:00 2001 +From: Jouni Malinen +Date: Sun, 1 Nov 2015 18:18:17 +0200 +Subject: [PATCH] EAP-pwd peer: Fix last fragment length validation + +All but the last fragment had their length checked against the remaining +room in the reassembly buffer. This allowed a suitably constructed last +fragment frame to try to add extra data that would go beyond the buffer. +The length validation code in wpabuf_put_data() prevents an actual +buffer write overflow from occurring, but this results in process +termination. (CVE-2015-5315) + +Signed-off-by: Jouni Malinen +--- + src/eap_peer/eap_pwd.c | 7 +++---- + 1 file changed, 3 insertions(+), 4 deletions(-) + +--- src/eap_peer/eap_pwd.c ++++ src/eap_peer/eap_pwd.c +@@ -903,7 +903,7 @@ eap_pwd_process(struct eap_sm *sm, void *priv, struct eap_method_ret *ret, + /* + * buffer and ACK the fragment + */ +- if (EAP_PWD_GET_MORE_BIT(lm_exch)) { ++ if (EAP_PWD_GET_MORE_BIT(lm_exch) || data->in_frag_pos) { + data->in_frag_pos += len; + if (data->in_frag_pos > wpabuf_size(data->inbuf)) { + wpa_printf(MSG_INFO, "EAP-pwd: Buffer overflow attack " +@@ -916,7 +916,8 @@ eap_pwd_process(struct eap_sm *sm, void *priv, struct eap_method_ret *ret, + return NULL; + } + wpabuf_put_data(data->inbuf, pos, len); +- ++ } ++ if (EAP_PWD_GET_MORE_BIT(lm_exch)) { + resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_PWD, + EAP_PWD_HDR_SIZE, + EAP_CODE_RESPONSE, eap_get_id(reqData)); +@@ -930,10 +931,8 @@ eap_pwd_process(struct eap_sm *sm, void *priv, struct eap_method_ret *ret, + * we're buffering and this is the last fragment + */ + if (data->in_frag_pos) { +- wpabuf_put_data(data->inbuf, pos, len); + wpa_printf(MSG_DEBUG, "EAP-pwd: Last fragment, %d bytes", + (int) len); +- data->in_frag_pos += len; + pos = wpabuf_head_u8(data->inbuf); + len = data->in_frag_pos; + } +-- +1.9.1 + Copied: branches/2016Q2/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-server-Fix-last-fragment-length-validation (from r413609, head/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-server-Fix-last-fragment-length-validation) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-server-Fix-last-fragment-length-validation Tue Apr 19 00:38:24 2016 (r413618, copy of r413609, head/security/wpa_supplicant/files/patch-2015-7-EAP-pwd-server-Fix-last-fragment-length-validation) @@ -0,0 +1,49 @@ +From bef802ece03f9ae9d52a21f0cf4f1bc2c5a1f8aa Mon Sep 17 00:00:00 2001 +From: Jouni Malinen +Date: Sun, 1 Nov 2015 18:24:16 +0200 +Subject: [PATCH] EAP-pwd server: Fix last fragment length validation + +All but the last fragment had their length checked against the remaining +room in the reassembly buffer. This allowed a suitably constructed last +fragment frame to try to add extra data that would go beyond the buffer. +The length validation code in wpabuf_put_data() prevents an actual +buffer write overflow from occurring, but this results in process +termination. (CVE-2015-5314) + +Signed-off-by: Jouni Malinen +--- + src/eap_server/eap_server_pwd.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +--- src/eap_server/eap_server_pwd.c ++++ src/eap_server/eap_server_pwd.c +@@ -970,7 +970,7 @@ static void eap_pwd_process(struct eap_sm *sm, void *priv, + /* + * the first and all intermediate fragments have the M bit set + */ +- if (EAP_PWD_GET_MORE_BIT(lm_exch)) { ++ if (EAP_PWD_GET_MORE_BIT(lm_exch) || data->in_frag_pos) { + if ((data->in_frag_pos + len) > wpabuf_size(data->inbuf)) { + wpa_printf(MSG_DEBUG, "EAP-pwd: Buffer overflow " + "attack detected! (%d+%d > %d)", +@@ -981,6 +981,8 @@ static void eap_pwd_process(struct eap_sm *sm, void *priv, + } + wpabuf_put_data(data->inbuf, pos, len); + data->in_frag_pos += len; ++ } ++ if (EAP_PWD_GET_MORE_BIT(lm_exch)) { + wpa_printf(MSG_DEBUG, "EAP-pwd: Got a %d byte fragment", + (int) len); + return; +@@ -990,8 +992,6 @@ static void eap_pwd_process(struct eap_sm *sm, void *priv, + * buffering fragments so that's how we know it's the last) + */ + if (data->in_frag_pos) { +- wpabuf_put_data(data->inbuf, pos, len); +- data->in_frag_pos += len; + pos = wpabuf_head_u8(data->inbuf); + len = data->in_frag_pos; + wpa_printf(MSG_DEBUG, "EAP-pwd: Last fragment, %d bytes", +-- +1.9.1 + Copied: branches/2016Q2/security/wpa_supplicant/files/patch-2015-8-EAP-pwd-peer-Fix-error-path-for-unexpected-Confirm-m (from r413609, head/security/wpa_supplicant/files/patch-2015-8-EAP-pwd-peer-Fix-error-path-for-unexpected-Confirm-m) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/security/wpa_supplicant/files/patch-2015-8-EAP-pwd-peer-Fix-error-path-for-unexpected-Confirm-m Tue Apr 19 00:38:24 2016 (r413618, copy of r413609, head/security/wpa_supplicant/files/patch-2015-8-EAP-pwd-peer-Fix-error-path-for-unexpected-Confirm-m) @@ -0,0 +1,32 @@ +From 95577884ca4fa76be91344ff7a8d5d1e6dc3da61 Mon Sep 17 00:00:00 2001 +From: Jouni Malinen +Date: Sun, 1 Nov 2015 19:35:44 +0200 +Subject: [PATCH] EAP-pwd peer: Fix error path for unexpected Confirm message + +If the Confirm message is received from the server before the Identity +exchange has been completed, the group has not yet been determined and +data->grp is NULL. The error path in eap_pwd_perform_confirm_exchange() +did not take this corner case into account and could end up +dereferencing a NULL pointer and terminating the process if invalid +message sequence is received. (CVE-2015-5316) + +Signed-off-by: Jouni Malinen +--- + src/eap_peer/eap_pwd.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +--- src/eap_peer/eap_pwd.c ++++ src/eap_peer/eap_pwd.c +@@ -774,7 +774,8 @@ eap_pwd_perform_confirm_exchange(struct eap_sm *sm, struct eap_pwd_data *data, + wpabuf_put_data(data->outbuf, conf, SHA256_MAC_LEN); + + fin: +- bin_clear_free(cruft, BN_num_bytes(data->grp->prime)); ++ if (data->grp) ++ bin_clear_free(cruft, BN_num_bytes(data->grp->prime)); + BN_clear_free(x); + BN_clear_free(y); + if (data->outbuf == NULL) { +-- +1.9.1 + From owner-svn-ports-branches@freebsd.org Wed Apr 20 14:03:58 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6BA15B160BA; Wed, 20 Apr 2016 14:03:58 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D9E51C8F; Wed, 20 Apr 2016 14:03:58 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3KE3vgf058222; Wed, 20 Apr 2016 14:03:57 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3KE3vPC058220; Wed, 20 Apr 2016 14:03:57 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201604201403.u3KE3vPC058220@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 20 Apr 2016 14:03:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413689 - branches/2016Q2/sysutils/ansible1 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, 20 Apr 2016 14:03:58 -0000 Author: matthew Date: Wed Apr 20 14:03:57 2016 New Revision: 413689 URL: https://svnweb.freebsd.org/changeset/ports/413689 Log: MFH: r413585 Update to 1.9.6 - extend expiry date another month PR: 208896 Submitted by: maintainer (lifanov@mail.lifanov.com) Approved by: ports-secteam (feld) Modified: branches/2016Q2/sysutils/ansible1/Makefile branches/2016Q2/sysutils/ansible1/distinfo Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/sysutils/ansible1/Makefile ============================================================================== --- branches/2016Q2/sysutils/ansible1/Makefile Wed Apr 20 13:45:22 2016 (r413688) +++ branches/2016Q2/sysutils/ansible1/Makefile Wed Apr 20 14:03:57 2016 (r413689) @@ -2,7 +2,7 @@ # $FreeBSD$ PKGNAMESUFFIX= 1 -PORTVERSION= 1.9.5 +PORTVERSION= 1.9.6 PORTREVISION= CONFLICTS= ansible-* @@ -15,6 +15,6 @@ SHEBANG_FILES= lib/ansible/runner/action EXTRA_PATCHES= DEPRECATED= please upgrade to sysutils/ansible -EXPIRATION_DATE= 2016-09-01 +EXPIRATION_DATE= 2016-10-01 .include "${MASTERDIR}/Makefile" Modified: branches/2016Q2/sysutils/ansible1/distinfo ============================================================================== --- branches/2016Q2/sysutils/ansible1/distinfo Wed Apr 20 13:45:22 2016 (r413688) +++ branches/2016Q2/sysutils/ansible1/distinfo Wed Apr 20 14:03:57 2016 (r413689) @@ -1,2 +1,2 @@ -SHA256 (ansible-1.9.5.tar.gz) = 6ba3539d98d993089bea0eb4ee83a04608aff900086040f11a77f2124dccbd8e -SIZE (ansible-1.9.5.tar.gz) = 941331 +SHA256 (ansible-1.9.6.tar.gz) = 50773781b1e76f2885bbeb2351a97cf1c6a29239d3e073da939a104e7e81ee5d +SIZE (ansible-1.9.6.tar.gz) = 941457 From owner-svn-ports-branches@freebsd.org Thu Apr 21 02:17: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 ECDDCB17603; Thu, 21 Apr 2016 02:17:34 +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 A4F821133; Thu, 21 Apr 2016 02:17:34 +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 u3L2HXlB080918; Thu, 21 Apr 2016 02:17:33 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3L2HXaK080915; Thu, 21 Apr 2016 02:17:33 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201604210217.u3L2HXaK080915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 21 Apr 2016 02:17:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413712 - branches/2016Q2/security/libtasn1 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, 21 Apr 2016 02:17:35 -0000 Author: junovitch Date: Thu Apr 21 02:17:33 2016 New Revision: 413712 URL: https://svnweb.freebsd.org/changeset/ports/413712 Log: MFH: r413488 security/libtasn1: update to 4.8 Security: CVE-2016-4008 Security: https://vuxml.FreeBSD.org/freebsd/1b0d2938-0766-11e6-94fa-002590263bf5.html Approved by: ports-secteam (with hat) Modified: branches/2016Q2/security/libtasn1/Makefile branches/2016Q2/security/libtasn1/distinfo branches/2016Q2/security/libtasn1/pkg-plist Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/security/libtasn1/Makefile ============================================================================== --- branches/2016Q2/security/libtasn1/Makefile Thu Apr 21 02:16:31 2016 (r413711) +++ branches/2016Q2/security/libtasn1/Makefile Thu Apr 21 02:17:33 2016 (r413712) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libtasn1 -PORTVERSION= 4.7 +PORTVERSION= 4.8 CATEGORIES= security MASTER_SITES= GNU Modified: branches/2016Q2/security/libtasn1/distinfo ============================================================================== --- branches/2016Q2/security/libtasn1/distinfo Thu Apr 21 02:16:31 2016 (r413711) +++ branches/2016Q2/security/libtasn1/distinfo Thu Apr 21 02:17:33 2016 (r413712) @@ -1,2 +1,2 @@ -SHA256 (libtasn1-4.7.tar.gz) = a40780dc93fc6d819170240e8ece25352058a85fd1d2347ce0f143667d8f11c9 -SIZE (libtasn1-4.7.tar.gz) = 1851611 +SHA256 (libtasn1-4.8.tar.gz) = fa802fc94d79baa00e7397cedf29eb6827d4bd8b4dd77b577373577c93a8c513 +SIZE (libtasn1-4.8.tar.gz) = 1859924 Modified: branches/2016Q2/security/libtasn1/pkg-plist ============================================================================== --- branches/2016Q2/security/libtasn1/pkg-plist Thu Apr 21 02:16:31 2016 (r413711) +++ branches/2016Q2/security/libtasn1/pkg-plist Thu Apr 21 02:17:33 2016 (r413712) @@ -5,7 +5,7 @@ include/libtasn1.h lib/libtasn1.a lib/libtasn1.so lib/libtasn1.so.6 -lib/libtasn1.so.6.5.1 +lib/libtasn1.so.6.5.2 libdata/pkgconfig/libtasn1.pc man/man1/asn1Coding.1.gz man/man1/asn1Decoding.1.gz From owner-svn-ports-branches@freebsd.org Thu Apr 21 07:32:50 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 C05EEB17B3A; Thu, 21 Apr 2016 07:32:50 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9148C19AE; Thu, 21 Apr 2016 07:32:50 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3L7Wn1V077343; Thu, 21 Apr 2016 07:32:49 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3L7WnIe077341; Thu, 21 Apr 2016 07:32:49 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201604210732.u3L7WnIe077341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 21 Apr 2016 07:32:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413718 - branches/2016Q2/sysutils/ansible 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, 21 Apr 2016 07:32:50 -0000 Author: matthew Date: Thu Apr 21 07:32:49 2016 New Revision: 413718 URL: https://svnweb.freebsd.org/changeset/ports/413718 Log: MFH: r413687 Security update to 2.0.2.0 Amongst many other updates, this addresses CVE-2016-3096, which is a predictable temporary file name vulnerability that affects users of LXC containers. ChangeLog: https://raw.githubusercontent.com/ansible/ansible/v2.0.2.0-1/CHANGELOG.md PR: 208932 Submitted by: lifanov@mail.lifanov.com (maintainer) Security: 253c6889-06f0-11e6-925f-6805ca0b3d42 Approved by: ports-secteam (junovitch) Modified: branches/2016Q2/sysutils/ansible/Makefile branches/2016Q2/sysutils/ansible/distinfo Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/sysutils/ansible/Makefile ============================================================================== --- branches/2016Q2/sysutils/ansible/Makefile Thu Apr 21 07:29:02 2016 (r413717) +++ branches/2016Q2/sysutils/ansible/Makefile Thu Apr 21 07:32:49 2016 (r413718) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ansible -PORTVERSION?= 2.0.1.0 +PORTVERSION?= 2.0.2.0 CATEGORIES= sysutils python MASTER_SITES= http://releases.ansible.com/ansible/ Modified: branches/2016Q2/sysutils/ansible/distinfo ============================================================================== --- branches/2016Q2/sysutils/ansible/distinfo Thu Apr 21 07:29:02 2016 (r413717) +++ branches/2016Q2/sysutils/ansible/distinfo Thu Apr 21 07:32:49 2016 (r413718) @@ -1,2 +1,2 @@ -SHA256 (ansible-2.0.1.0.tar.gz) = cddc4fa6af4c1be6cd1d6634de1bd0397abad921c76b32cab6722c042744ee5d -SIZE (ansible-2.0.1.0.tar.gz) = 1510155 +SHA256 (ansible-2.0.2.0.tar.gz) = 373a2e50319d90da50948e3faf1c033464b7302200e0199da8981d24646d4387 +SIZE (ansible-2.0.2.0.tar.gz) = 1516681 From owner-svn-ports-branches@freebsd.org Thu Apr 21 07:44: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 A7872B16208; Thu, 21 Apr 2016 07:44:46 +0000 (UTC) (envelope-from pi@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 7F86812F1; Thu, 21 Apr 2016 07:44:46 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3L7ijTK080719; Thu, 21 Apr 2016 07:44:45 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3L7ijgn080716; Thu, 21 Apr 2016 07:44:45 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201604210744.u3L7ijgn080716@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Apr 2016 07:44:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413719 - in branches/2016Q2/www/squid: . 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: Thu, 21 Apr 2016 07:44:46 -0000 Author: pi Date: Thu Apr 21 07:44:45 2016 New Revision: 413719 URL: https://svnweb.freebsd.org/changeset/ports/413719 Log: MFH: r413688 r413697 www/squid: Add all available official patches up to 14031 It fixes two annoying and long-standing problems: - header forgery detection (using sslbump) leads to crash - add chained certificates and signing certificate to peek-then-bumped connections. PR: 207901 Submitted by: Pavel Timofeev (maintainer) Reported by: Christophe Anselme-Moizan www/squid: 3.5.16 -> 3.5.17 Changes: http://www.squid-cache.org/Versions/v3/3.5/changesets/SQUID_3_5_17.html http://www.squid-cache.org/Advisories/SQUID-2016_5.txt PR: 208939 Submitted by: Pavel Timofeev (maintainer) Security: CVE-2016-4052, CVE-2016-4053, CVE-2016-4054 Approved by: ports-secteam (junovitch) Modified: branches/2016Q2/www/squid/Makefile branches/2016Q2/www/squid/distinfo branches/2016Q2/www/squid/files/patch-src__ip__Intercept.cc Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/www/squid/Makefile ============================================================================== --- branches/2016Q2/www/squid/Makefile Thu Apr 21 07:32:49 2016 (r413718) +++ branches/2016Q2/www/squid/Makefile Thu Apr 21 07:44:45 2016 (r413719) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= squid -PORTVERSION= 3.5.16 +PORTVERSION= 3.5.17 CATEGORIES= www ipv6 MASTER_SITES= http://www.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \ http://www2.us.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \ @@ -17,6 +17,7 @@ PATCH_SITES= http://www.squid-cache.org/ http://www1.jp.squid-cache.org/%SUBDIR%/ \ http://master.squid-cache.org/~amosjeffries/patches/:nosid PATCH_SITE_SUBDIR= Versions/v3/${PORTVERSION:R}/changesets +#PATCHFILES= MAINTAINER= timp87@gmail.com COMMENT= HTTP Caching Proxy Modified: branches/2016Q2/www/squid/distinfo ============================================================================== --- branches/2016Q2/www/squid/distinfo Thu Apr 21 07:32:49 2016 (r413718) +++ branches/2016Q2/www/squid/distinfo Thu Apr 21 07:44:45 2016 (r413719) @@ -1,2 +1,2 @@ -SHA256 (squid3.5/squid-3.5.16.tar.xz) = e73d821180eed8bed230f357c680c0b19f1efa51a24725e810f2b48a2079d385 -SIZE (squid3.5/squid-3.5.16.tar.xz) = 2317320 +SHA256 (squid3.5/squid-3.5.17.tar.xz) = cb04e34f6ec80a5ae6caaef042703c841d3803c4c280e75eff12a5a6c84951a2 +SIZE (squid3.5/squid-3.5.17.tar.xz) = 2318216 Modified: branches/2016Q2/www/squid/files/patch-src__ip__Intercept.cc ============================================================================== --- branches/2016Q2/www/squid/files/patch-src__ip__Intercept.cc Thu Apr 21 07:32:49 2016 (r413718) +++ branches/2016Q2/www/squid/files/patch-src__ip__Intercept.cc Thu Apr 21 07:44:45 2016 (r413719) @@ -8,7 +8,7 @@ + // warn once every million at critical level, then push down a level each repeated event static int warningLevel = DBG_CRITICAL; debugs(89, warningLevel, "IPF (IPFilter v4) NAT does not support IPv6. Please upgrade to IPFilter v5.1"); -- warningLevel = ++warningLevel % 10; +- warningLevel = (warningLevel + 1) % 10; + warningLevel = (warningLevel + 1) % 1048576; return false; #else From owner-svn-ports-branches@freebsd.org Thu Apr 21 14:46: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 BE7F6B17259; Thu, 21 Apr 2016 14:46:29 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8BA6B11F5; Thu, 21 Apr 2016 14:46:29 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3LEkS3u010979; Thu, 21 Apr 2016 14:46:28 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3LEkStM010978; Thu, 21 Apr 2016 14:46:28 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201604211446.u3LEkStM010978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 21 Apr 2016 14:46:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413733 - branches/2016Q2/x11/pixman 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, 21 Apr 2016 14:46:29 -0000 Author: swills Date: Thu Apr 21 14:46:28 2016 New Revision: 413733 URL: https://svnweb.freebsd.org/changeset/ports/413733 Log: MFH: r413732 x11/pixman: fix build on powerpc64/powerpc Reviewed by: dumbbell, kwm Modified: branches/2016Q2/x11/pixman/Makefile Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/x11/pixman/Makefile ============================================================================== --- branches/2016Q2/x11/pixman/Makefile Thu Apr 21 14:01:05 2016 (r413732) +++ branches/2016Q2/x11/pixman/Makefile Thu Apr 21 14:46:28 2016 (r413733) @@ -23,4 +23,10 @@ INSTALL_TARGET= install-strip # where the build of the tests crashes ld; see PR bin/202284. MAKE_ARGS= SUBDIRS=pixman -.include +.include + +.if ${ARCH} == "powerpc64" || ${ARCH} == "powerpc" +CONFIGURE_ARGS+= --disable-vmx +.endif + +.include From owner-svn-ports-branches@freebsd.org Fri Apr 22 12:16: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 9BC31B19857; Fri, 22 Apr 2016 12:16:04 +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 38B281784; Fri, 22 Apr 2016 12:16:04 +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 u3MCG3De013900; Fri, 22 Apr 2016 12:16:03 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3MCG1Fa013883; Fri, 22 Apr 2016 12:16:01 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201604221216.u3MCG1Fa013883@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 22 Apr 2016 12:16:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413772 - in branches/2016Q2: Mk/Uses www/firefox www/firefox-esr www/firefox-esr-i18n www/firefox-esr/files www/firefox-i18n www/firefox/files www/libxul www/libxul/files www/linux-fir... 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: Fri, 22 Apr 2016 12:16:04 -0000 Author: jbeich Date: Fri Apr 22 12:16:01 2016 New Revision: 413772 URL: https://svnweb.freebsd.org/changeset/ports/413772 Log: MFH: r413326 r413726 r413760 www/firefox{,-esr}: update to 46.0 (rc5) / 45.1esr Changes: https://www.mozilla.org/firefox/46.0/releasenotes/ Changes: https://www.mozilla.org/firefox/45.1.0/releasenotes/ Security: 92d44f83-a7bf-41cf-91ee-3d1b8ecf579f Approved by: ports-secteam (junovitch) Added: branches/2016Q2/www/firefox-esr/files/patch-bug1242132 - copied unchanged from r413726, head/www/firefox-esr/files/patch-bug1242132 branches/2016Q2/www/firefox-esr/files/patch-bug1252246 - copied unchanged from r413726, head/www/firefox-esr/files/patch-bug1252246 branches/2016Q2/www/firefox-esr/files/patch-bug1257947 - copied unchanged from r413726, head/www/firefox-esr/files/patch-bug1257947 branches/2016Q2/www/firefox-esr/files/patch-modules-libpref-init-all.js - copied unchanged from r413726, head/www/firefox-esr/files/patch-modules-libpref-init-all.js branches/2016Q2/www/firefox/files/patch-bug1239550 - copied unchanged from r413726, head/www/firefox/files/patch-bug1239550 branches/2016Q2/www/firefox/files/patch-bug1256136 - copied unchanged from r413726, head/www/firefox/files/patch-bug1256136 branches/2016Q2/www/libxul/files/patch-bug1242132 - copied unchanged from r413726, head/www/libxul/files/patch-bug1242132 branches/2016Q2/www/libxul/files/patch-bug1252246 - copied unchanged from r413726, head/www/libxul/files/patch-bug1252246 branches/2016Q2/www/libxul/files/patch-modules-libpref-init-all.js - copied unchanged from r413726, head/www/libxul/files/patch-modules-libpref-init-all.js Deleted: branches/2016Q2/www/firefox-esr/files/extra-patch-bug1125514 branches/2016Q2/www/firefox-esr/files/patch-bug1026499 branches/2016Q2/www/firefox-esr/files/patch-bug1073117 branches/2016Q2/www/firefox-esr/files/patch-bug1138845 branches/2016Q2/www/firefox-esr/files/patch-bug1143686 branches/2016Q2/www/firefox-esr/files/patch-bug1144643 branches/2016Q2/www/firefox-esr/files/patch-bug1148203 branches/2016Q2/www/firefox-esr/files/patch-bug779713 branches/2016Q2/www/firefox-esr/files/patch-dom-events-MessageEvent.h branches/2016Q2/www/firefox-esr/files/patch-memory-jemalloc-Makefile.in branches/2016Q2/www/firefox/files/patch-bug1257947 branches/2016Q2/www/libxul/files/extra-patch-bug1125514 branches/2016Q2/www/libxul/files/patch-bug1026499 branches/2016Q2/www/libxul/files/patch-bug1073117 branches/2016Q2/www/libxul/files/patch-bug1138845 branches/2016Q2/www/libxul/files/patch-bug1143686 branches/2016Q2/www/libxul/files/patch-bug1144643 branches/2016Q2/www/libxul/files/patch-bug1148203 branches/2016Q2/www/libxul/files/patch-bug779713 branches/2016Q2/www/libxul/files/patch-dom-events-MessageEvent.h branches/2016Q2/www/libxul/files/patch-memory-jemalloc-Makefile.in Modified: branches/2016Q2/Mk/Uses/gecko.mk branches/2016Q2/www/firefox-esr-i18n/Makefile branches/2016Q2/www/firefox-esr-i18n/Makefile.lang branches/2016Q2/www/firefox-esr-i18n/Makefile.option branches/2016Q2/www/firefox-esr-i18n/distinfo branches/2016Q2/www/firefox-esr/Makefile branches/2016Q2/www/firefox-esr/distinfo branches/2016Q2/www/firefox-esr/files/patch-bug1013882 branches/2016Q2/www/firefox-esr/files/patch-bug1021761 branches/2016Q2/www/firefox-esr/files/patch-bug1233275 branches/2016Q2/www/firefox-esr/files/patch-bug702179 branches/2016Q2/www/firefox-esr/files/patch-bug826985 branches/2016Q2/www/firefox-esr/files/patch-bug847568 branches/2016Q2/www/firefox-esr/files/patch-bug981348 branches/2016Q2/www/firefox-esr/files/patch-bug991253 branches/2016Q2/www/firefox-esr/files/patch-config-baseconfig.mk branches/2016Q2/www/firefox-esr/files/patch-ijg-libjpeg branches/2016Q2/www/firefox-esr/files/patch-toolkit_mozapps_installer_packager_mk branches/2016Q2/www/firefox-esr/files/patch-z-bug517422 branches/2016Q2/www/firefox-i18n/Makefile branches/2016Q2/www/firefox-i18n/Makefile.lang branches/2016Q2/www/firefox-i18n/Makefile.option branches/2016Q2/www/firefox-i18n/distinfo branches/2016Q2/www/firefox/Makefile branches/2016Q2/www/firefox/distinfo branches/2016Q2/www/firefox/files/patch-bug1021761 branches/2016Q2/www/firefox/files/patch-bug826985 branches/2016Q2/www/firefox/files/patch-bug847568 branches/2016Q2/www/firefox/files/patch-z-bug517422 branches/2016Q2/www/libxul/Makefile branches/2016Q2/www/libxul/distinfo branches/2016Q2/www/libxul/files/patch-bug1013882 branches/2016Q2/www/libxul/files/patch-bug1021761 branches/2016Q2/www/libxul/files/patch-bug1233275 branches/2016Q2/www/libxul/files/patch-bug702179 branches/2016Q2/www/libxul/files/patch-bug826985 branches/2016Q2/www/libxul/files/patch-bug847568 branches/2016Q2/www/libxul/files/patch-bug981348 branches/2016Q2/www/libxul/files/patch-bug991253 branches/2016Q2/www/libxul/files/patch-config-baseconfig.mk branches/2016Q2/www/libxul/files/patch-ijg-libjpeg branches/2016Q2/www/libxul/files/patch-toolkit_mozapps_installer_packager_mk branches/2016Q2/www/libxul/files/patch-z-bug517422 branches/2016Q2/www/linux-firefox/Makefile branches/2016Q2/www/linux-firefox/distinfo branches/2016Q2/www/linux-firefox/pkg-plist Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/Mk/Uses/gecko.mk ============================================================================== --- branches/2016Q2/Mk/Uses/gecko.mk Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/Mk/Uses/gecko.mk Fri Apr 22 12:16:01 2016 (r413772) @@ -31,18 +31,18 @@ GECKO_CONFING?= ${LOCALBASE}/bin/${GECKO XPIDL?= ${LOCALBASE}/lib/${GECKO}/xpidl XPIDL_INCL?= `${GECKO_CONFIG} --idlflags` -BUILD_DEPENDS+= libxul>=38:www/libxul -RUN_DEPENDS+= libxul>=38:www/libxul +BUILD_DEPENDS+= libxul>=45:www/libxul +RUN_DEPENDS+= libxul>=45:www/libxul .elif ${gecko_ARGS:Mfirefox} -_GECKO_DEFAULT_VERSION= 38 -_GECKO_VERSIONS= 38 45 +_GECKO_DEFAULT_VERSION= 45 +_GECKO_VERSIONS= 45 46 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions -38_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr -45_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox +45_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr +46_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null Modified: branches/2016Q2/www/firefox-esr-i18n/Makefile ============================================================================== --- branches/2016Q2/www/firefox-esr-i18n/Makefile Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr-i18n/Makefile Fri Apr 22 12:16:01 2016 (r413772) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 38.7.1 +PORTVERSION= 45.1.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/2016Q2/www/firefox-esr-i18n/Makefile.lang ============================================================================== --- branches/2016Q2/www/firefox-esr-i18n/Makefile.lang Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr-i18n/Makefile.lang Fri Apr 22 12:16:01 2016 (r413772) @@ -3,11 +3,11 @@ FIREFOX_I18N_ALL_= ach af an ar as ast az be bg bn-BD bn-IN br bs ca cs \ cy da de dsb el en-GB en-US en-ZA eo es-AR es-CL \ - es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl \ + es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl gn \ gu-IN he hi-IN hr hsb hu hy-AM id is it ja kk km \ kn ko lij lt lv mai mk ml mr ms nb-NO nl nn-NO \ or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq \ - sr sv-SE ta te th tr uk vi xh zh-CN zh-TW + sr sv-SE ta te th tr uk uz vi xh zh-CN zh-TW .if defined(FIREFOX_I18N_ALL) || defined(PACKAGE_BUILDING) || target(package) FIREFOX_I18N= ${FIREFOX_I18N_ALL_} @@ -57,9 +57,6 @@ FIREFOX_I18N+= ca .if ${PORT_OPTIONS:MLANG_CS} FIREFOX_I18N+= cs .endif -.if ${PORT_OPTIONS:MLANG_CSB} -FIREFOX_I18N+= csb -.endif .if ${PORT_OPTIONS:MLANG_CY} FIREFOX_I18N+= cy .endif @@ -129,6 +126,9 @@ FIREFOX_I18N+= gd .if ${PORT_OPTIONS:MLANG_GL} FIREFOX_I18N+= gl .endif +.if ${PORT_OPTIONS:MLANG_GN} +FIREFOX_I18N+= gn +.endif .if ${PORT_OPTIONS:MLANG_GU} FIREFOX_I18N+= gu-IN .endif @@ -174,9 +174,6 @@ FIREFOX_I18N+= kn .if ${PORT_OPTIONS:MLANG_KO} FIREFOX_I18N+= ko .endif -.if ${PORT_OPTIONS:MLANG_KU} -FIREFOX_I18N+= ku -.endif .if ${PORT_OPTIONS:MLANG_LIJ} FIREFOX_I18N+= lij .endif @@ -240,12 +237,12 @@ FIREFOX_I18N+= si .if ${PORT_OPTIONS:MLANG_SK} FIREFOX_I18N+= sk .endif -.if ${PORT_OPTIONS:MLANG_SON} -FIREFOX_I18N+= son -.endif .if ${PORT_OPTIONS:MLANG_SL} FIREFOX_I18N+= sl .endif +.if ${PORT_OPTIONS:MLANG_SON} +FIREFOX_I18N+= son +.endif .if ${PORT_OPTIONS:MLANG_SQ} FIREFOX_I18N+= sq .endif @@ -255,9 +252,6 @@ FIREFOX_I18N+= sr .if ${PORT_OPTIONS:MLANG_SV} FIREFOX_I18N+= sv-SE .endif -.if ${PORT_OPTIONS:MLANG_SW} -FIREFOX_I18N+= sw -.endif .if ${PORT_OPTIONS:MLANG_TA} FIREFOX_I18N+= ta .endif @@ -273,6 +267,9 @@ FIREFOX_I18N+= tr .if ${PORT_OPTIONS:MLANG_UK} FIREFOX_I18N+= uk .endif +.if ${PORT_OPTIONS:MLANG_UZ} +FIREFOX_I18N+= uz +.endif .if ${PORT_OPTIONS:MLANG_VI} FIREFOX_I18N+= vi .endif @@ -285,7 +282,4 @@ FIREFOX_I18N+= zh-CN .if ${PORT_OPTIONS:MLANG_TW} FIREFOX_I18N+= zh-TW .endif -.if ${PORT_OPTIONS:MLANG_ZU} -FIREFOX_I18N+= zu -.endif .endif Modified: branches/2016Q2/www/firefox-esr-i18n/Makefile.option ============================================================================== --- branches/2016Q2/www/firefox-esr-i18n/Makefile.option Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr-i18n/Makefile.option Fri Apr 22 12:16:01 2016 (r413772) @@ -1,100 +1,101 @@ # Created by: Koji Yokota # $FreeBSD$ +# this is sorted on the name of the xpi files, not the option name OPTIONS_DEFINE= LANG_ACH \ LANG_AF \ LANG_AN \ - LANG_SQ \ LANG_AR \ LANG_AS \ - LANG_AM \ LANG_AST \ LANG_AZ \ - LANG_EU \ - LANG_BN \ + LANG_BE \ + LANG_BG \ LANG_BB \ - LANG_BS \ + LANG_BN \ LANG_BR \ - LANG_BG \ - LANG_BE \ + LANG_BS \ LANG_CA \ - LANG_CN \ LANG_CS \ + LANG_CY \ LANG_DA \ - LANG_NL \ + LANG_DE \ + LANG_DSB \ + LANG_EL \ LANG_GB \ LANG_US \ + LANG_ZA \ LANG_EO \ + LANG_SA \ + LANG_SC \ + LANG_ES \ + LANG_SM \ LANG_ET \ - LANG_GL \ - LANG_DE \ - LANG_DSB \ - LANG_EL \ - LANG_GU \ + LANG_EU \ + LANG_FA \ LANG_FF \ LANG_FI \ LANG_FR \ LANG_FY \ LANG_GA \ LANG_GD \ + LANG_GL \ + LANG_GN \ + LANG_GU \ LANG_HE \ LANG_HI \ LANG_HR \ LANG_HSB \ LANG_HU \ - LANG_IS \ + LANG_AM \ LANG_ID \ + LANG_IS \ LANG_IT \ LANG_JA \ - LANG_KN \ LANG_KK \ LANG_KM \ + LANG_KN \ LANG_KO \ - LANG_LV \ - LANG_LT \ LANG_LIJ \ - LANG_MK \ + LANG_LT \ + LANG_LV \ LANG_MAI \ + LANG_MK \ LANG_ML \ LANG_MR \ - LANG_MN \ LANG_MS \ LANG_NB \ + LANG_NL \ LANG_NN \ LANG_OR \ - LANG_FA \ + LANG_PA \ LANG_PL \ - LANG_PT \ LANG_PBR\ - LANG_PA \ - LANG_RO \ + LANG_PT \ LANG_RM \ + LANG_RO \ LANG_RU \ - LANG_SR \ LANG_SI \ - LANG_ES \ - LANG_SON \ - LANG_SA \ - LANG_SC \ - LANG_SM \ LANG_SK \ LANG_SL \ + LANG_SON \ + LANG_SQ \ + LANG_SR \ LANG_SV \ - LANG_TW \ LANG_TA \ LANG_TE \ LANG_TH \ LANG_TR \ LANG_UK \ + LANG_UZ \ LANG_VI \ - LANG_CY \ LANG_XH \ - LANG_ZA \ - LANG_ZU + LANG_CN \ + LANG_TW OPTIONS_DEFAULT=LANG_AR LANG_BN LANG_BR LANG_CN LANG_ET LANG_DE LANG_FR \ LANG_HI LANG_ID LANG_IT LANG_JA LANG_KO LANG_MK LANG_MR \ - LANG_MN LANG_PBR LANG_PA LANG_RU LANG_ES LANG_SON LANG_TE + LANG_PBR LANG_PA LANG_RU LANG_ES LANG_SON LANG_TE LANG_ACH_DESC?= Acholi language support LANG_AN_DESC?= Aragonese language support @@ -103,9 +104,11 @@ LANG_AZ_DESC?= Azerbaijani language supp LANG_CSB_DESC?= Kashubian language support LANG_DSB_DESC?= Lower Sorbian language support LANG_FF_DESC?= Fulah language support +LANG_GN_DESC?= Guarani (Paraguay) language support LANG_HSB_DESC?= Upper Sorbian language support LANG_KM_DESC?= Khmer language support LANG_LIJ_DESC?= Ligurian (Genoa) language support LANG_MS_DESC?= Malay language support LANG_SW_DESC?= Swahili language support +LANG_UZ_DESC?= Uzbek language support LANG_XH_DESC?= Xhosa language support Modified: branches/2016Q2/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2016Q2/www/firefox-esr-i18n/distinfo Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr-i18n/distinfo Fri Apr 22 12:16:01 2016 (r413772) @@ -1,176 +1,180 @@ -SHA256 (xpi/firefox-38.7.1/ach.xpi) = e426d4a42a3a5922ebfce36791f3150eec4be09b82c48a24cff82d54231ab1b1 -SIZE (xpi/firefox-38.7.1/ach.xpi) = 477969 -SHA256 (xpi/firefox-38.7.1/af.xpi) = 495ba9aa6d33b913ceb89be4eff01746574b6315d87b038ae9229d9ba0217adb -SIZE (xpi/firefox-38.7.1/af.xpi) = 483326 -SHA256 (xpi/firefox-38.7.1/an.xpi) = 9e3c9588b363b08ec230bf0518a6709a84d9efe0cd89f4577147e91f7e223fd7 -SIZE (xpi/firefox-38.7.1/an.xpi) = 461423 -SHA256 (xpi/firefox-38.7.1/ar.xpi) = 49035a4c7bbc4ec29388a531d13a73c6d6c69dcbcb55fcfd0f09866378a795d0 -SIZE (xpi/firefox-38.7.1/ar.xpi) = 516495 -SHA256 (xpi/firefox-38.7.1/as.xpi) = 245b472e0a22f66afb2aa1b5c5121be45a51137e5b356be40c2e792189593af9 -SIZE (xpi/firefox-38.7.1/as.xpi) = 509574 -SHA256 (xpi/firefox-38.7.1/ast.xpi) = 54915a1d3d4e241cfa11a41384db5d50cbf13e2053b74ff38d49480550d4f0b8 -SIZE (xpi/firefox-38.7.1/ast.xpi) = 397202 -SHA256 (xpi/firefox-38.7.1/az.xpi) = f0600dcc8b1b7e0d871d402aa7f93e16796b1560d329bb9e93c65649c6117ba3 -SIZE (xpi/firefox-38.7.1/az.xpi) = 489153 -SHA256 (xpi/firefox-38.7.1/be.xpi) = 6b36c34fc846032af3ef67707662c997704d6a410c1d672c2cda7cd7c172d6b6 -SIZE (xpi/firefox-38.7.1/be.xpi) = 441057 -SHA256 (xpi/firefox-38.7.1/bg.xpi) = ffb7d4db11f3fa641281cdfa2eb146971dba5b5c74c0fc84401ee5f5779d6f52 -SIZE (xpi/firefox-38.7.1/bg.xpi) = 487819 -SHA256 (xpi/firefox-38.7.1/bn-BD.xpi) = b77c6eb0c696926727a792b0fc60f95713b4b999d54fc7708804bee5abd11213 -SIZE (xpi/firefox-38.7.1/bn-BD.xpi) = 528690 -SHA256 (xpi/firefox-38.7.1/bn-IN.xpi) = d7558c09adcc9c26cdf0ff1d5e66813336c8e1e50dfe759510553788e0bc887a -SIZE (xpi/firefox-38.7.1/bn-IN.xpi) = 527927 -SHA256 (xpi/firefox-38.7.1/br.xpi) = 75fa3b403ba6be699e7dce4d189231c6ce6c50d0ad44e672140f5ec680635100 -SIZE (xpi/firefox-38.7.1/br.xpi) = 441962 -SHA256 (xpi/firefox-38.7.1/bs.xpi) = 2cc60c9216dc38d7b28a7fd1594d1755c69378ec05c9edcdaef5b6de9ed3a11c -SIZE (xpi/firefox-38.7.1/bs.xpi) = 485305 -SHA256 (xpi/firefox-38.7.1/ca.xpi) = febf01c4ebe3ed48ced0bd4309f0baa1423fb42e992286669d32ac6022ad5625 -SIZE (xpi/firefox-38.7.1/ca.xpi) = 458092 -SHA256 (xpi/firefox-38.7.1/cs.xpi) = 13e71176b8ec9d27858aa9536e3c702b1e30b700f9e68016beb78d29353cd838 -SIZE (xpi/firefox-38.7.1/cs.xpi) = 446726 -SHA256 (xpi/firefox-38.7.1/cy.xpi) = 4b23251868fbaf581186e19f20b5fc661ea5f015e769b782470ed0790ab2c25f -SIZE (xpi/firefox-38.7.1/cy.xpi) = 444385 -SHA256 (xpi/firefox-38.7.1/da.xpi) = 54ee9948a047eec9827abf0ea62f4f80f963edde1e681f7a3e8b22a518468c32 -SIZE (xpi/firefox-38.7.1/da.xpi) = 450762 -SHA256 (xpi/firefox-38.7.1/de.xpi) = 02ab0f297dac17e189eb8aa19c5a11e5a7f7d93a59c4734847ccdbe6c079f4d3 -SIZE (xpi/firefox-38.7.1/de.xpi) = 451629 -SHA256 (xpi/firefox-38.7.1/dsb.xpi) = 995d87f77fd6da8c3ae62c1dceb6f74caf32c0b135b0852f4259e6fba31402f8 -SIZE (xpi/firefox-38.7.1/dsb.xpi) = 470923 -SHA256 (xpi/firefox-38.7.1/el.xpi) = f7798d14e6b623a4390d2eb6aebb5cdcf0ac14a538d0aa60d0f68d6400110201 -SIZE (xpi/firefox-38.7.1/el.xpi) = 498370 -SHA256 (xpi/firefox-38.7.1/en-GB.xpi) = 299005aa0b813bf6ce711214abd89f116a907be84e14076620bc54d54b0e5fd1 -SIZE (xpi/firefox-38.7.1/en-GB.xpi) = 437845 -SHA256 (xpi/firefox-38.7.1/en-US.xpi) = 2850454d1cea1aba064f69e5d3b845ae3591f6b65b54011c4e16f7816df22b8e -SIZE (xpi/firefox-38.7.1/en-US.xpi) = 469718 -SHA256 (xpi/firefox-38.7.1/en-ZA.xpi) = e749074c9260be3eecc42976c06341920b93015a40f2564f9e04a6de7f9b47d0 -SIZE (xpi/firefox-38.7.1/en-ZA.xpi) = 439925 -SHA256 (xpi/firefox-38.7.1/eo.xpi) = 6b7c10f8a21a5038f3a770ebfb37b10207ac9ce2702abfefe8f7f4225223a84d -SIZE (xpi/firefox-38.7.1/eo.xpi) = 488369 -SHA256 (xpi/firefox-38.7.1/es-AR.xpi) = 6d69d7543694e5dbc79918b630c0ebed94c7cb67dc3ee6cf93f05accc26af920 -SIZE (xpi/firefox-38.7.1/es-AR.xpi) = 453983 -SHA256 (xpi/firefox-38.7.1/es-CL.xpi) = cada53ffc8c1a0d35cf16fa8990d1e4678937375fefaf5b464a6c0d6e0a4d398 -SIZE (xpi/firefox-38.7.1/es-CL.xpi) = 384678 -SHA256 (xpi/firefox-38.7.1/es-ES.xpi) = 6cac270d43a71cbf833329197bb5d965be231bb5c67311a005861c347b64659f -SIZE (xpi/firefox-38.7.1/es-ES.xpi) = 374073 -SHA256 (xpi/firefox-38.7.1/es-MX.xpi) = a54e0d916a2b5b0b81e68f24a3f0263458311435204013fc1c09aed94161bea5 -SIZE (xpi/firefox-38.7.1/es-MX.xpi) = 457049 -SHA256 (xpi/firefox-38.7.1/et.xpi) = 0577f74dac4d36ae9ed87aeffb2e4d6f9cfb2286fafd6d8b45378d6aec7919a8 -SIZE (xpi/firefox-38.7.1/et.xpi) = 443229 -SHA256 (xpi/firefox-38.7.1/eu.xpi) = 13e617b0e8476d6ea2353414f5157c8f2494c2a91a06476568ecc513abdd2bbc -SIZE (xpi/firefox-38.7.1/eu.xpi) = 466555 -SHA256 (xpi/firefox-38.7.1/fa.xpi) = e41d3fa8b4af987a567faffb61199417bb6fc7c691e8e22865d5a5cf73074506 -SIZE (xpi/firefox-38.7.1/fa.xpi) = 518282 -SHA256 (xpi/firefox-38.7.1/ff.xpi) = c44d2a4fa2e780027332c2e987a919c4b515f79b9cac7bf1a919c336c8602673 -SIZE (xpi/firefox-38.7.1/ff.xpi) = 454587 -SHA256 (xpi/firefox-38.7.1/fi.xpi) = 4cca1a5987ba25b7d516e006e7286bd88b9d87db24b295a21cdafeaec1d8b42c -SIZE (xpi/firefox-38.7.1/fi.xpi) = 444852 -SHA256 (xpi/firefox-38.7.1/fr.xpi) = 3307e02df045e91d4406e1008fca298fd386f707899914052faee11a10cb79fe -SIZE (xpi/firefox-38.7.1/fr.xpi) = 461402 -SHA256 (xpi/firefox-38.7.1/fy-NL.xpi) = 2dfe6582cf7f4b38bf7ab1ba4d929764144d9fe0d9981f28a0371a3c201a6e10 -SIZE (xpi/firefox-38.7.1/fy-NL.xpi) = 455541 -SHA256 (xpi/firefox-38.7.1/ga-IE.xpi) = d5f98c255c96505b2303780ae939db1d63280b8d757c1a33308b0fba3e6a83d3 -SIZE (xpi/firefox-38.7.1/ga-IE.xpi) = 469623 -SHA256 (xpi/firefox-38.7.1/gd.xpi) = 0c34cec01771932438fa78457a65bb320d5246e003861caa4a2b099f5bde7194 -SIZE (xpi/firefox-38.7.1/gd.xpi) = 454616 -SHA256 (xpi/firefox-38.7.1/gl.xpi) = 61a24fc4decd3fc98815784183e98c9d631fb0569fc8342c2d052585c5367264 -SIZE (xpi/firefox-38.7.1/gl.xpi) = 448925 -SHA256 (xpi/firefox-38.7.1/gu-IN.xpi) = 404df6179b7d422ca170c8b5fb473a3a4deb31382876f2944f311ab716bb261e -SIZE (xpi/firefox-38.7.1/gu-IN.xpi) = 477980 -SHA256 (xpi/firefox-38.7.1/he.xpi) = fd43f7c6721b6b33fbe65e64b6b6bdcc8c64d1801ece8cb30ac6828e90ed682f -SIZE (xpi/firefox-38.7.1/he.xpi) = 486786 -SHA256 (xpi/firefox-38.7.1/hi-IN.xpi) = 9330e532d897056aad75c33ac89c34e947d45ba902679d67b02201936b4ccdc6 -SIZE (xpi/firefox-38.7.1/hi-IN.xpi) = 508167 -SHA256 (xpi/firefox-38.7.1/hr.xpi) = fa418bf4eddc971c53d9e2f2dc46726df63820fd196bc17b4c51f9b19fcbf6bf -SIZE (xpi/firefox-38.7.1/hr.xpi) = 478272 -SHA256 (xpi/firefox-38.7.1/hsb.xpi) = 9a59584de8d1339950c085e486d79a59dc3a40c04cceaa06ac2fc335fdbdfb7f -SIZE (xpi/firefox-38.7.1/hsb.xpi) = 468719 -SHA256 (xpi/firefox-38.7.1/hu.xpi) = 8116c880098c2efa89561edf0ef0541cea1a1d742dbfc6df97747c3e7d8b4003 -SIZE (xpi/firefox-38.7.1/hu.xpi) = 453555 -SHA256 (xpi/firefox-38.7.1/hy-AM.xpi) = fb2c52d224128732dc2efa22661bc74ccfab729a263ea92979e0007a151ae80d -SIZE (xpi/firefox-38.7.1/hy-AM.xpi) = 534265 -SHA256 (xpi/firefox-38.7.1/id.xpi) = 07b83d2cac216a8e395b78f816d29c812af142a59c63543785dc2b16f8242e39 -SIZE (xpi/firefox-38.7.1/id.xpi) = 431489 -SHA256 (xpi/firefox-38.7.1/is.xpi) = 4e4d5d646d985da2f1c2199919edfd123153229109137aaefee806d7aadb6136 -SIZE (xpi/firefox-38.7.1/is.xpi) = 485128 -SHA256 (xpi/firefox-38.7.1/it.xpi) = f130c735897f87788add259808b1ba63597c563d16e13718f1c8cc252435afdc -SIZE (xpi/firefox-38.7.1/it.xpi) = 368409 -SHA256 (xpi/firefox-38.7.1/ja.xpi) = a8dfde526878ec3139641b2684b33374b3c8efe2437daa3b61eae55435a241fb -SIZE (xpi/firefox-38.7.1/ja.xpi) = 479113 -SHA256 (xpi/firefox-38.7.1/kk.xpi) = 575076851a9ced7683cca17e642c377cceeedc645bd39d065a603d6acbd94762 -SIZE (xpi/firefox-38.7.1/kk.xpi) = 503568 -SHA256 (xpi/firefox-38.7.1/km.xpi) = e7b96756bf6fa67491b52b36bf4278b318fdf19c17f8b229a537a9a7d991fcf2 -SIZE (xpi/firefox-38.7.1/km.xpi) = 565674 -SHA256 (xpi/firefox-38.7.1/kn.xpi) = a045b0e508b2b25b69aa5d59a0837de0dcff30e89c699ce2a679f8681a38b8e2 -SIZE (xpi/firefox-38.7.1/kn.xpi) = 533464 -SHA256 (xpi/firefox-38.7.1/ko.xpi) = a1eec2480d601ddd5457e2db32e093ea1fa2afb86f5e994efcbdb1cb3a04ce30 -SIZE (xpi/firefox-38.7.1/ko.xpi) = 460854 -SHA256 (xpi/firefox-38.7.1/lij.xpi) = 9976a055215e903deca570ea02d453747319629408bcd8b589f8d71848c391f7 -SIZE (xpi/firefox-38.7.1/lij.xpi) = 444241 -SHA256 (xpi/firefox-38.7.1/lt.xpi) = e6c4d6219fe9615ceeaf500e3307ea2e918e596ebf302bedf3621e39f08b4b81 -SIZE (xpi/firefox-38.7.1/lt.xpi) = 486452 -SHA256 (xpi/firefox-38.7.1/lv.xpi) = 5ddd9963c85db2e99bb26908e767ccb4b079fe87ee08feb15e62d5bf8eb56414 -SIZE (xpi/firefox-38.7.1/lv.xpi) = 467198 -SHA256 (xpi/firefox-38.7.1/mai.xpi) = 73064db0dccc3127d9998b04537d236a288538595e06c0f5d8b6a1712669cb57 -SIZE (xpi/firefox-38.7.1/mai.xpi) = 514665 -SHA256 (xpi/firefox-38.7.1/mk.xpi) = f01ac3cd7c09b8855df905acac57daf053f0e5dbb476f8c58fea23c3034ccedf -SIZE (xpi/firefox-38.7.1/mk.xpi) = 529205 -SHA256 (xpi/firefox-38.7.1/ml.xpi) = 7c5b7d6e67a86df253b8f865035a049cc8541d35d7741029faf5ec4f285fbd88 -SIZE (xpi/firefox-38.7.1/ml.xpi) = 528919 -SHA256 (xpi/firefox-38.7.1/mr.xpi) = 903e11f0be03982cb00da9e709469c98f321ebb96cd416258b3c5ed807c54c29 -SIZE (xpi/firefox-38.7.1/mr.xpi) = 505961 -SHA256 (xpi/firefox-38.7.1/ms.xpi) = 5b9f3769a67c0211eaba899a03ad5bd54aea33a4759c342dc1db57b43342562e -SIZE (xpi/firefox-38.7.1/ms.xpi) = 489872 -SHA256 (xpi/firefox-38.7.1/nb-NO.xpi) = 34c8aa37d1e6c914ad97aba939ce26800d71d96ed264247afe56767c57bf522c -SIZE (xpi/firefox-38.7.1/nb-NO.xpi) = 444176 -SHA256 (xpi/firefox-38.7.1/nl.xpi) = 0f794624e2e68eaeb33c2d225dbdae3ff407c887549f4969ff702f886fb68c36 -SIZE (xpi/firefox-38.7.1/nl.xpi) = 443994 -SHA256 (xpi/firefox-38.7.1/nn-NO.xpi) = 743ea205e27aefd8eccaa22aa92f507a7a2e87a87c6c0cc032faff1eac24142e -SIZE (xpi/firefox-38.7.1/nn-NO.xpi) = 438451 -SHA256 (xpi/firefox-38.7.1/or.xpi) = bc6db8fa74f36e725a5c3b13f81240353dcb5dace0280b045b70a7e71788df1b -SIZE (xpi/firefox-38.7.1/or.xpi) = 527049 -SHA256 (xpi/firefox-38.7.1/pa-IN.xpi) = b18721f0e3ff559201179007b6e2a4bc52528f5d4fd4b633472456a2d9394526 -SIZE (xpi/firefox-38.7.1/pa-IN.xpi) = 493722 -SHA256 (xpi/firefox-38.7.1/pl.xpi) = 126d7277b112cd5e1016e970dd966002a00c1bcc168ebb076380eba0b93b8e9b -SIZE (xpi/firefox-38.7.1/pl.xpi) = 406566 -SHA256 (xpi/firefox-38.7.1/pt-BR.xpi) = a50abb5b26d99b2015993d38aa2736b049e9784375f29c4340c67b5ce5901e9e -SIZE (xpi/firefox-38.7.1/pt-BR.xpi) = 459810 -SHA256 (xpi/firefox-38.7.1/pt-PT.xpi) = e74a1044b30ce08b536840eb97fc41322ffbbfabb8d65f32f86552f9055adca9 -SIZE (xpi/firefox-38.7.1/pt-PT.xpi) = 439975 -SHA256 (xpi/firefox-38.7.1/rm.xpi) = 23a00150ed90672462ce64646b960afe7e93c365407c900d64b5efdefc9658b0 -SIZE (xpi/firefox-38.7.1/rm.xpi) = 446287 -SHA256 (xpi/firefox-38.7.1/ro.xpi) = 5ec5d1365df706e1cb24877df22ac97e7aaa982af951e99e4318d05a6a4c9164 -SIZE (xpi/firefox-38.7.1/ro.xpi) = 494078 -SHA256 (xpi/firefox-38.7.1/ru.xpi) = b993cbfaa34fc2c2b06993ab1a1b660d9f9c58830ce0c1ef6afa6eb80e566932 -SIZE (xpi/firefox-38.7.1/ru.xpi) = 414419 -SHA256 (xpi/firefox-38.7.1/si.xpi) = 976713479c27a6e27eb8aa1264c690e83ad006be284e28e4762f9b76ddfd2170 -SIZE (xpi/firefox-38.7.1/si.xpi) = 537393 -SHA256 (xpi/firefox-38.7.1/sk.xpi) = d85f0a9f7ed32c93c9006af642e1442aa65860a8fe0252f1282575f64f790305 -SIZE (xpi/firefox-38.7.1/sk.xpi) = 469436 -SHA256 (xpi/firefox-38.7.1/sl.xpi) = 788ab280792ffe954cc410191f30f358e74b8f786435616d62c371087359f799 -SIZE (xpi/firefox-38.7.1/sl.xpi) = 441594 -SHA256 (xpi/firefox-38.7.1/son.xpi) = eec4af39f46367dcc9c282e298e6b947b4da62e8e2f4ee75c03de11f277d11e5 -SIZE (xpi/firefox-38.7.1/son.xpi) = 449268 -SHA256 (xpi/firefox-38.7.1/sq.xpi) = 7264bc57b263ff32a5e1a93e8047cdee44fc6bd78be737ffd03648d2485a9aa1 -SIZE (xpi/firefox-38.7.1/sq.xpi) = 486076 -SHA256 (xpi/firefox-38.7.1/sr.xpi) = b92988b1bee95773e35639ed3f02db267916bc2cff8a71bf02aab38fa1cab520 -SIZE (xpi/firefox-38.7.1/sr.xpi) = 479419 -SHA256 (xpi/firefox-38.7.1/sv-SE.xpi) = 980c79937cdd273c0275731bd26c03d57e82c8a5e0d0fb79b0dbd0a25b606ab8 -SIZE (xpi/firefox-38.7.1/sv-SE.xpi) = 452633 -SHA256 (xpi/firefox-38.7.1/ta.xpi) = b0a828f1f077ebbedd6618e85de5172f2f51f4baaf13acfedf7b5d94fbf6f85c -SIZE (xpi/firefox-38.7.1/ta.xpi) = 506607 -SHA256 (xpi/firefox-38.7.1/te.xpi) = ed56af85b5ae041aa56986688d51e1f14ffe210360483e744c1350508961a865 -SIZE (xpi/firefox-38.7.1/te.xpi) = 526250 -SHA256 (xpi/firefox-38.7.1/th.xpi) = 45c2369c227ccdd786cd9e99bfe3ef53f98bf8d86c17286ab7182c60b66bb042 -SIZE (xpi/firefox-38.7.1/th.xpi) = 534270 -SHA256 (xpi/firefox-38.7.1/tr.xpi) = 0bb028b144c5cda6b0d310b91b1312e591e18c91db0b223a037b18e0cbe34f83 -SIZE (xpi/firefox-38.7.1/tr.xpi) = 481076 -SHA256 (xpi/firefox-38.7.1/uk.xpi) = 2fa352e22e30f6ad80c4884ab85b9036483223b17470cf0d559875c9da1b815a -SIZE (xpi/firefox-38.7.1/uk.xpi) = 493313 -SHA256 (xpi/firefox-38.7.1/vi.xpi) = e44d8ad1601ccda0f534ae5a7c5afbbca89723ab4dd35c54ff917fed15112914 -SIZE (xpi/firefox-38.7.1/vi.xpi) = 467504 -SHA256 (xpi/firefox-38.7.1/xh.xpi) = e758251a6189df898e7eaf67a794d5160e82b0a94a703b1821f4dc6e0cdb86fd -SIZE (xpi/firefox-38.7.1/xh.xpi) = 450242 -SHA256 (xpi/firefox-38.7.1/zh-CN.xpi) = 8c99716132f6268368d632e150cb77ad43e4a2374f85566fccbbe88dcbf76512 -SIZE (xpi/firefox-38.7.1/zh-CN.xpi) = 488276 -SHA256 (xpi/firefox-38.7.1/zh-TW.xpi) = e41aa8a9b5cd65abaca3735e2a87065671d1fc30b7627187ca1e4353290549f0 -SIZE (xpi/firefox-38.7.1/zh-TW.xpi) = 467843 +SHA256 (xpi/firefox-45.1.0/ach.xpi) = 520703fb2e195a2ed247633062cb0bbb5aa4adb090abd00f83ed7fcebce532b4 +SIZE (xpi/firefox-45.1.0/ach.xpi) = 426525 +SHA256 (xpi/firefox-45.1.0/af.xpi) = 4e830d0c8fd8d2be20de9bc76484b5517191c582bfc3ec8fd049f80d101905f8 +SIZE (xpi/firefox-45.1.0/af.xpi) = 439350 +SHA256 (xpi/firefox-45.1.0/an.xpi) = dacee584b408755b199e91cc302eae5819ce362d5177633ae4da67d277767e32 +SIZE (xpi/firefox-45.1.0/an.xpi) = 449031 +SHA256 (xpi/firefox-45.1.0/ar.xpi) = ffd15f00739b1add480594933b14af7ed6f1a18be9d9570e5d55f06dcdad211f +SIZE (xpi/firefox-45.1.0/ar.xpi) = 474955 +SHA256 (xpi/firefox-45.1.0/as.xpi) = 5844b82bb60165784c0d0066ca03d6149997854b241712d67675568684db2749 +SIZE (xpi/firefox-45.1.0/as.xpi) = 483091 +SHA256 (xpi/firefox-45.1.0/ast.xpi) = 8387356f83db26385201ca706b1de8d870ccf74647cf64c3db99c430e53757ca +SIZE (xpi/firefox-45.1.0/ast.xpi) = 419244 +SHA256 (xpi/firefox-45.1.0/az.xpi) = 757612b2ab3d7a0174f77fba2fc79c36012ea81c4d32f70368a10d2a4ad913da +SIZE (xpi/firefox-45.1.0/az.xpi) = 464012 +SHA256 (xpi/firefox-45.1.0/be.xpi) = fa57643a1c050dd4b5d37a5302348ef86dd0f97d718ff42ae2fb65ce49514156 +SIZE (xpi/firefox-45.1.0/be.xpi) = 442614 +SHA256 (xpi/firefox-45.1.0/bg.xpi) = 0483235b368cf7b980fa8a017c8f606842eb2538f989656e0ca49cd968dc036b +SIZE (xpi/firefox-45.1.0/bg.xpi) = 460803 +SHA256 (xpi/firefox-45.1.0/bn-BD.xpi) = ec199c1a9a1f5aa379eee7176584c9f68d85ecc7e27a00d3252de3260748ab6c +SIZE (xpi/firefox-45.1.0/bn-BD.xpi) = 515637 +SHA256 (xpi/firefox-45.1.0/bn-IN.xpi) = 3ddc05753ccd30595d5204f90ee715bab75fefeec430c572ec0e98d13ffb6c42 +SIZE (xpi/firefox-45.1.0/bn-IN.xpi) = 494070 +SHA256 (xpi/firefox-45.1.0/br.xpi) = 6a914b1c11d73a628be78596ce34dbe9c10a6bf221c16aa409b39d6033b4cf8f +SIZE (xpi/firefox-45.1.0/br.xpi) = 436387 +SHA256 (xpi/firefox-45.1.0/bs.xpi) = 835a206cd5f2f628c80abd440c393c2984bcb202a2ecdcc86e0c8fc5218f2be1 +SIZE (xpi/firefox-45.1.0/bs.xpi) = 442992 +SHA256 (xpi/firefox-45.1.0/ca.xpi) = 34d21e459aa1ca44748de421429f6368fcac22d66ab44135df4e9d583f705c9a +SIZE (xpi/firefox-45.1.0/ca.xpi) = 436828 +SHA256 (xpi/firefox-45.1.0/cs.xpi) = 66de4bb611850904d2b3037e22ea60a1e0184ad0362afbfd04c1c74a649f4674 +SIZE (xpi/firefox-45.1.0/cs.xpi) = 443478 +SHA256 (xpi/firefox-45.1.0/cy.xpi) = a0e9d2d5b7c4406ff9156464bbcf44f2f3f7f12c1a409eb091b10fc18425cf98 +SIZE (xpi/firefox-45.1.0/cy.xpi) = 438903 +SHA256 (xpi/firefox-45.1.0/da.xpi) = beaeddeff7d784a1e8bf99ccbf36e65240aa62de7f600f8a5513a34e95f995ed +SIZE (xpi/firefox-45.1.0/da.xpi) = 430073 +SHA256 (xpi/firefox-45.1.0/de.xpi) = d375a46d2d5b626c3036d45eb286da06402b40c4fb7fe564c07426cb9b9e05ac +SIZE (xpi/firefox-45.1.0/de.xpi) = 445477 +SHA256 (xpi/firefox-45.1.0/dsb.xpi) = 9358152130db0eb7bbed6d71ef27464ce5367e041ff2329813c783a51a624538 +SIZE (xpi/firefox-45.1.0/dsb.xpi) = 463786 +SHA256 (xpi/firefox-45.1.0/el.xpi) = 5ec7b64200168b59dde23b41e44874f2a15f47ee160cf9d2e7b65a7ced08698c +SIZE (xpi/firefox-45.1.0/el.xpi) = 470862 +SHA256 (xpi/firefox-45.1.0/en-GB.xpi) = c856d0dedb73068d16b56db7706d6107f510dfe9649f0b878988b75fd8f4fc58 +SIZE (xpi/firefox-45.1.0/en-GB.xpi) = 423866 +SHA256 (xpi/firefox-45.1.0/en-US.xpi) = b21bee531e86c7e85c9c4a97e4ba4b2c7d061e44a7dbbdc23bcef57d897891c9 +SIZE (xpi/firefox-45.1.0/en-US.xpi) = 425464 +SHA256 (xpi/firefox-45.1.0/en-ZA.xpi) = 601cb03941023adcf1f22234c538912ad138629d24031266f4b7deaed2f47e8d +SIZE (xpi/firefox-45.1.0/en-ZA.xpi) = 420771 +SHA256 (xpi/firefox-45.1.0/eo.xpi) = 8f45bb2b8ac13d578e9ec410a1d05523ee5284409ac908c456109194a8d79d74 +SIZE (xpi/firefox-45.1.0/eo.xpi) = 440955 +SHA256 (xpi/firefox-45.1.0/es-AR.xpi) = 8017fa20fee5db586f654496e8779cbc3b7f0ce7ea710f8eeefb0e67c374d0b0 +SIZE (xpi/firefox-45.1.0/es-AR.xpi) = 441476 +SHA256 (xpi/firefox-45.1.0/es-CL.xpi) = 5d7b7d5c58198a61d13371d8e7cfd8a61b1b173e5c75e1595c68787f38fa2f92 +SIZE (xpi/firefox-45.1.0/es-CL.xpi) = 368759 +SHA256 (xpi/firefox-45.1.0/es-ES.xpi) = 422423e6a3c680daa70fb84bed3c671f8a754fa8c0f9957f0bbffe390042f476 +SIZE (xpi/firefox-45.1.0/es-ES.xpi) = 353710 +SHA256 (xpi/firefox-45.1.0/es-MX.xpi) = 02772e3581b82d298a3a42ba944fab64645516f2768353891ab7168882c0290e +SIZE (xpi/firefox-45.1.0/es-MX.xpi) = 449390 +SHA256 (xpi/firefox-45.1.0/et.xpi) = 47fe79a5b5a3ce60fc2df77170cad6f33a4cd45b46506f6994b5f3b9cd7d0cd5 +SIZE (xpi/firefox-45.1.0/et.xpi) = 433347 +SHA256 (xpi/firefox-45.1.0/eu.xpi) = 09ef21060722257a9c061f36f65ff264387572084cbb9df09ead920c81779956 +SIZE (xpi/firefox-45.1.0/eu.xpi) = 441352 +SHA256 (xpi/firefox-45.1.0/fa.xpi) = e66d551af1ab1d722c778c07164297fb1836b5e07013c4be94012ee7dddcba2f +SIZE (xpi/firefox-45.1.0/fa.xpi) = 491935 +SHA256 (xpi/firefox-45.1.0/ff.xpi) = d117e2390e6e5311b8e3fac85be71c090149d0b49f04f5a99a9ced3b853567b8 +SIZE (xpi/firefox-45.1.0/ff.xpi) = 441495 +SHA256 (xpi/firefox-45.1.0/fi.xpi) = 7fcfe60b776ce7beb4284d9ee026a4a845d76912be44a4e8868f01385fad568e +SIZE (xpi/firefox-45.1.0/fi.xpi) = 438343 +SHA256 (xpi/firefox-45.1.0/fr.xpi) = acf98ddd2d7900b378631f9f0debe5725ffbb6757bb12e8395c648b923a612b2 +SIZE (xpi/firefox-45.1.0/fr.xpi) = 450033 +SHA256 (xpi/firefox-45.1.0/fy-NL.xpi) = 631becc167f5ac36071a68124047638cdea99589ee7c8e44619e9630a8499d81 +SIZE (xpi/firefox-45.1.0/fy-NL.xpi) = 447773 +SHA256 (xpi/firefox-45.1.0/ga-IE.xpi) = 996f321a4706efbf0489ed0d4f834396758cece68ea51fcedb78c55f00e9c486 +SIZE (xpi/firefox-45.1.0/ga-IE.xpi) = 460050 +SHA256 (xpi/firefox-45.1.0/gd.xpi) = c691bc21f05f9e0b1cd8a00f60516ddad15240bc4eb314b025940e47d06140ec +SIZE (xpi/firefox-45.1.0/gd.xpi) = 449705 +SHA256 (xpi/firefox-45.1.0/gl.xpi) = d941d515af9a304579cf5f08719489ddcbdbfe7a63c3b6d65e02138084bbc3bd +SIZE (xpi/firefox-45.1.0/gl.xpi) = 434800 +SHA256 (xpi/firefox-45.1.0/gn.xpi) = 437b2b9885a8e3800435afd26e33638743cf300b66a9ee0b9e92566fc1419d7d +SIZE (xpi/firefox-45.1.0/gn.xpi) = 460642 +SHA256 (xpi/firefox-45.1.0/gu-IN.xpi) = 7fe25e9f20cdaaa10d5685303c69bdfdb42d677ace365933f6041d88a6298984 +SIZE (xpi/firefox-45.1.0/gu-IN.xpi) = 472561 +SHA256 (xpi/firefox-45.1.0/he.xpi) = 878cbe9aa34d1968a40b1abc8a43eb7bf75d2a1c85e13e77d45e79ad595552f1 +SIZE (xpi/firefox-45.1.0/he.xpi) = 454782 +SHA256 (xpi/firefox-45.1.0/hi-IN.xpi) = def808718637fb0a8f1ec842fa6187d7c6ccf33e77535d8d1a7e37045910767a +SIZE (xpi/firefox-45.1.0/hi-IN.xpi) = 486985 +SHA256 (xpi/firefox-45.1.0/hr.xpi) = 272881202ef43f0f686649bf5135c374d5cae28670aea2833a2d3c9414591578 +SIZE (xpi/firefox-45.1.0/hr.xpi) = 449065 +SHA256 (xpi/firefox-45.1.0/hsb.xpi) = 788e9d9a496663a81eda82af730a1db2228fcb3b5d4b9e04d7f28036c62fb2db +SIZE (xpi/firefox-45.1.0/hsb.xpi) = 461449 +SHA256 (xpi/firefox-45.1.0/hu.xpi) = 8ddefee5e3d9bb1f2983af3376f8247e3fcd38b1bd0136d82b1e7c610a87feba +SIZE (xpi/firefox-45.1.0/hu.xpi) = 449772 +SHA256 (xpi/firefox-45.1.0/hy-AM.xpi) = e54b4ea162145165b938cbd89d78e6817bed4bb92f252aa7cf380ad32f62b9e8 +SIZE (xpi/firefox-45.1.0/hy-AM.xpi) = 500035 +SHA256 (xpi/firefox-45.1.0/id.xpi) = 3792ff8654aaad501b523720a5ff250d41fed98b6105abfb5de198aa52e6e2ee +SIZE (xpi/firefox-45.1.0/id.xpi) = 427171 +SHA256 (xpi/firefox-45.1.0/is.xpi) = 742676e0207c26fc81a1ef89ddee5fa905dda343659cee879f5a192ce8951c87 +SIZE (xpi/firefox-45.1.0/is.xpi) = 443209 +SHA256 (xpi/firefox-45.1.0/it.xpi) = 781c48919f90a461d402936252dfd04cc449d20fcfdace5b3e2430dc76acc874 +SIZE (xpi/firefox-45.1.0/it.xpi) = 343720 +SHA256 (xpi/firefox-45.1.0/ja.xpi) = 5de75db5bb087a5032a5d8fbac727239639a5ec5a5544e5ad563c42d6cfaf1e2 +SIZE (xpi/firefox-45.1.0/ja.xpi) = 486325 +SHA256 (xpi/firefox-45.1.0/kk.xpi) = 64e3ccdaafca6d9127d0faa46c253342340ce0eacdbcc8e4176fcf0166e012a9 +SIZE (xpi/firefox-45.1.0/kk.xpi) = 498890 +SHA256 (xpi/firefox-45.1.0/km.xpi) = 8cd72b860d89103ec6f61f46137ada5f1b96047e70beb70e08b0fc5b97c3fe61 +SIZE (xpi/firefox-45.1.0/km.xpi) = 504298 +SHA256 (xpi/firefox-45.1.0/kn.xpi) = 8b5b90c613be9e2892f07795bcfed1a7d68c9105546836a678a230086f4cdc90 +SIZE (xpi/firefox-45.1.0/kn.xpi) = 495877 +SHA256 (xpi/firefox-45.1.0/ko.xpi) = 65cdc4462a2212e935b7309e047a2ad05ad34ff9921e958a2de7243c6a6650e6 +SIZE (xpi/firefox-45.1.0/ko.xpi) = 465285 +SHA256 (xpi/firefox-45.1.0/lij.xpi) = c7054361b75abe861dd365cf2cd6f98783326c6adc8756ba1d10e916095438f7 +SIZE (xpi/firefox-45.1.0/lij.xpi) = 381379 +SHA256 (xpi/firefox-45.1.0/lt.xpi) = 4c6c918deeab044783177cb7f0303269be16ff3cbf80c855786f71b2732a5cb9 +SIZE (xpi/firefox-45.1.0/lt.xpi) = 454674 +SHA256 (xpi/firefox-45.1.0/lv.xpi) = 647bcdf245353e7f22b04c387ae98bb0a4283f0555bd832c03abb5551fbc09d5 +SIZE (xpi/firefox-45.1.0/lv.xpi) = 445716 +SHA256 (xpi/firefox-45.1.0/mai.xpi) = 9cedbc11eaffb5968e33df27f47f67fb457bb7dc17ae142283f093f245c38e6d +SIZE (xpi/firefox-45.1.0/mai.xpi) = 492644 +SHA256 (xpi/firefox-45.1.0/mk.xpi) = 2e4fc67d1ed7564148851166d04787ce856445960849ac891982ab3c66da0ade +SIZE (xpi/firefox-45.1.0/mk.xpi) = 476389 +SHA256 (xpi/firefox-45.1.0/ml.xpi) = 9e7375141869b52cbdd7ef89a4dabc9b797d7b50632a7d9a8af72c780fb20f05 +SIZE (xpi/firefox-45.1.0/ml.xpi) = 498677 +SHA256 (xpi/firefox-45.1.0/mr.xpi) = c3d38c612d3aff7c4fd2f8bccd2b74176be0f0b0161781c5242dedbedb35c5f0 +SIZE (xpi/firefox-45.1.0/mr.xpi) = 503694 +SHA256 (xpi/firefox-45.1.0/ms.xpi) = 2875610734813bbbf52337bd3317768e82838dce14543333041648d0cc30b529 +SIZE (xpi/firefox-45.1.0/ms.xpi) = 440061 +SHA256 (xpi/firefox-45.1.0/nb-NO.xpi) = 9496e01cb9839677cb8051667acc2b6692f4663de532d13d72c31596e2fa0fac +SIZE (xpi/firefox-45.1.0/nb-NO.xpi) = 435466 +SHA256 (xpi/firefox-45.1.0/nl.xpi) = 3e7bcb94564cb01be83e12adc490001180f0cf666c6ce64691bd46fc1af4fd7f +SIZE (xpi/firefox-45.1.0/nl.xpi) = 435197 +SHA256 (xpi/firefox-45.1.0/nn-NO.xpi) = 55d754d238d3fb7834199879ea64667e11bdf14b291a715f34586090a8b75269 +SIZE (xpi/firefox-45.1.0/nn-NO.xpi) = 432929 +SHA256 (xpi/firefox-45.1.0/or.xpi) = 07d421f719bef417588838d668ea50f28853c8b05f0197334dd48df982102813 +SIZE (xpi/firefox-45.1.0/or.xpi) = 495917 +SHA256 (xpi/firefox-45.1.0/pa-IN.xpi) = 909c16142442a4f0cd83a0b4da87ce52fd339fba740b008227b143c3cb90dec1 +SIZE (xpi/firefox-45.1.0/pa-IN.xpi) = 489546 +SHA256 (xpi/firefox-45.1.0/pl.xpi) = d79512a921f3137ec393882af23ac4060a5e058fff0b23466750c3a921b12396 +SIZE (xpi/firefox-45.1.0/pl.xpi) = 383924 +SHA256 (xpi/firefox-45.1.0/pt-BR.xpi) = fc299a8c1552ac2008a2a4cb5fe8b0fb2285e8f0cf92df541a309da3bb08219d +SIZE (xpi/firefox-45.1.0/pt-BR.xpi) = 450986 +SHA256 (xpi/firefox-45.1.0/pt-PT.xpi) = 388de1d5ec25349f7d0b59bb8d0817ab7031821f23591692debeaf06d130ad23 +SIZE (xpi/firefox-45.1.0/pt-PT.xpi) = 437017 +SHA256 (xpi/firefox-45.1.0/rm.xpi) = 2a1185afca7aebf2a236df616f8a7fada7829cce0ccbd7f0bab38b42ee6530c4 +SIZE (xpi/firefox-45.1.0/rm.xpi) = 437714 +SHA256 (xpi/firefox-45.1.0/ro.xpi) = f094b95572faf5415ce7cd1073830d6c1e82e09b305478a70322f3485276c8f8 +SIZE (xpi/firefox-45.1.0/ro.xpi) = 444056 +SHA256 (xpi/firefox-45.1.0/ru.xpi) = 7e2c2f27b273077193b9a2eee3581e324201ea2b8119960ead943c4bad895441 +SIZE (xpi/firefox-45.1.0/ru.xpi) = 392734 +SHA256 (xpi/firefox-45.1.0/si.xpi) = 87d5c084c8c9ee2949e9703bf59163f03400b466b83722ee3dd9e3a114bc4f8b +SIZE (xpi/firefox-45.1.0/si.xpi) = 482242 +SHA256 (xpi/firefox-45.1.0/sk.xpi) = b9770ec13612263736b1c59063e644f5c78dedf25b43b66339107ee1c5fd5a9d +SIZE (xpi/firefox-45.1.0/sk.xpi) = 453603 +SHA256 (xpi/firefox-45.1.0/sl.xpi) = 1b7a5c66c37c4cc7900cd4fc97c019c166b1cdd974846d685179f84733fb92f8 +SIZE (xpi/firefox-45.1.0/sl.xpi) = 444960 +SHA256 (xpi/firefox-45.1.0/son.xpi) = f1782e9086ea8a52c3f0c66b4d315b086bd75b649c539e88d389943a051c4457 +SIZE (xpi/firefox-45.1.0/son.xpi) = 433509 +SHA256 (xpi/firefox-45.1.0/sq.xpi) = ff807f114438782bc017869b6a4e4cc2c323cabc09ad9a47094bed7736382897 +SIZE (xpi/firefox-45.1.0/sq.xpi) = 452182 +SHA256 (xpi/firefox-45.1.0/sr.xpi) = 24f3be1c5751a1283e14ebbb33c73951371c2f0715a1fece502f03d6dd5cef87 +SIZE (xpi/firefox-45.1.0/sr.xpi) = 464474 +SHA256 (xpi/firefox-45.1.0/sv-SE.xpi) = f0f0d1f0217cdbf6d919ad5731c6f6492c30c059fd4ece63ec59f44a61742e45 +SIZE (xpi/firefox-45.1.0/sv-SE.xpi) = 444208 +SHA256 (xpi/firefox-45.1.0/ta.xpi) = 5803307096dc644cbb282c42e8d041451899dacbd052a68b2f2d044b425e23bd +SIZE (xpi/firefox-45.1.0/ta.xpi) = 483114 +SHA256 (xpi/firefox-45.1.0/te.xpi) = 2ad70721fa4b4b2b67bdce70760b72f2d9c32a79e4bda2563aa5a6a5c9758395 +SIZE (xpi/firefox-45.1.0/te.xpi) = 492465 +SHA256 (xpi/firefox-45.1.0/th.xpi) = 0ba903ee3607ba6bc76c39a1ea855e3e0eec9b0af91beced08136def0138949a +SIZE (xpi/firefox-45.1.0/th.xpi) = 477644 +SHA256 (xpi/firefox-45.1.0/tr.xpi) = cf86e15a1c0547f891121d9cadce25cd3be09d35c1e2f998a2809e7f66241e3d +SIZE (xpi/firefox-45.1.0/tr.xpi) = 451160 +SHA256 (xpi/firefox-45.1.0/uk.xpi) = d9b9493fa0da79fdd86c043c455b7626312246ed5c3b1a82052b79a3231d25b7 +SIZE (xpi/firefox-45.1.0/uk.xpi) = 494776 +SHA256 (xpi/firefox-45.1.0/uz.xpi) = e33398c14c24241c412fd22b46eaa3e2f78cb36e26a9ee02fe2aacc881cc3aa6 +SIZE (xpi/firefox-45.1.0/uz.xpi) = 443798 +SHA256 (xpi/firefox-45.1.0/vi.xpi) = 842a43a616f2a5ea0ad6963fe21fb2d3b25b98612a21be629adbb74301dec67a +SIZE (xpi/firefox-45.1.0/vi.xpi) = 450774 +SHA256 (xpi/firefox-45.1.0/xh.xpi) = 24f08d22e7d90f211a005b7c6f5580512268088c046b452052e62102b6e4acf1 +SIZE (xpi/firefox-45.1.0/xh.xpi) = 432913 +SHA256 (xpi/firefox-45.1.0/zh-CN.xpi) = 5532eaf005914abca2e28a9c455029a98357bd17b305a0460e020ca37f4fd864 +SIZE (xpi/firefox-45.1.0/zh-CN.xpi) = 475791 +SHA256 (xpi/firefox-45.1.0/zh-TW.xpi) = 5127eb60caead072b71dac2a3a75a0b28fc85f7532ef78f75e4bd834557a0aab +SIZE (xpi/firefox-45.1.0/zh-TW.xpi) = 466524 Modified: branches/2016Q2/www/firefox-esr/Makefile ============================================================================== --- branches/2016Q2/www/firefox-esr/Makefile Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr/Makefile Fri Apr 22 12:16:01 2016 (r413772) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 38.7.1 +DISTVERSION= 45.1.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ @@ -14,35 +13,36 @@ PKGNAMESUFFIX= -esr MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla -BUILD_DEPENDS= nspr>=4.10.10:devel/nspr \ - nss>=3.19.2.1:security/nss \ +BUILD_DEPENDS= nspr>=4.12:devel/nspr \ + nss>=3.21.1:security/nss \ libevent2>=2.0.21_2:devel/libevent2 \ - soundtouch>=1.8.0:audio/soundtouch \ - harfbuzz>=0.9.34:print/harfbuzz \ - graphite2>=1.2.4:graphics/graphite2 \ + soundtouch>=1.9.0:audio/soundtouch \ + harfbuzz>=1.1.0:print/harfbuzz \ + graphite2>=1.3.6:graphics/graphite2 \ + png>=1.6.19:graphics/png \ libvorbis>=1.3.5,3:audio/libvorbis \ - libvpx>=1.3.0:multimedia/libvpx \ - sqlite3>=3.8.9:databases/sqlite3 \ + libvpx>=1.5.0:multimedia/libvpx \ + sqlite3>=3.9.1:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ + yasm:devel/yasm \ zip:archivers/zip \ unzip:archivers/unzip -# opus>=1.1:audio/opus \ LIB_DEPENDS= libv4l2.so:multimedia/libv4l USE_GECKO= gecko CPE_PRODUCT= ${PORTNAME}_esr -CONFLICTS_INSTALL= firefox-4[0-46-9].* firefox-3[02-9].* firefox-2[0-35-9].* +CONFLICTS_INSTALL= firefox-[0-9]* MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -opus +USE_MOZILLA= # empty MOZILLA_NAME= Firefox USE_QT5= # empty QT_NONSTANDARD= yes USE_GL= gl -USES= tar:bzip2 +USES= tar:xz FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png @@ -50,14 +50,16 @@ MOZ_OPTIONS= --program-transform-name='s --enable-application=browser \ --enable-official-branding -OPTIONS_DEFAULT= GTK2 +OPTIONS_EXCLUDE= GSTREAMER LOGGING +OPTIONS_DEFINE= RUST +OPTIONS_DEFAULT= BUNDLED_CAIRO GTK2 OPTIONS_SINGLE+= TOOLKIT OPTIONS_SINGLE_TOOLKIT= GTK2 GTK3 .include "${.CURDIR}/../../www/firefox/Makefile.options" -WRKSRC:= ${WRKDIR}/mozilla-esr38 +WRKSRC:= ${WRKDIR}/${PORTNAME}-${DISTVERSION}esr post-extract: @${SED} -e 's|@FIREFOX_ICON@|${FIREFOX_ICON}|' -e 's|@MOZILLA@|${MOZILLA}|' \ @@ -65,8 +67,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/2016Q2/www/firefox-esr/distinfo ============================================================================== --- branches/2016Q2/www/firefox-esr/distinfo Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr/distinfo Fri Apr 22 12:16:01 2016 (r413772) @@ -1,2 +1,2 @@ -SHA256 (firefox-38.7.1esr.source.tar.bz2) = d0fce46a948610c8231ceaad5da5542bd57af363ff2341d77f2f00955f888f65 -SIZE (firefox-38.7.1esr.source.tar.bz2) = 181300248 +SHA256 (firefox-45.1.0esr.source.tar.xz) = 8bdc4a0f6d0ca4f28e888ca0044ba735ddc78302820b5ffcc25cd65064ff40a1 +SIZE (firefox-45.1.0esr.source.tar.xz) = 184373664 Modified: branches/2016Q2/www/firefox-esr/files/patch-bug1013882 ============================================================================== --- branches/2016Q2/www/firefox-esr/files/patch-bug1013882 Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr/files/patch-bug1013882 Fri Apr 22 12:16:01 2016 (r413772) @@ -2,7 +2,7 @@ diff --git b2g/installer/Makefile.in b2g index 754312a..c69904c 100644 --- b2g/installer/Makefile.in +++ b2g/installer/Makefile.in -@@ -63,6 +63,10 @@ ifneq (,$(filter rtsp,$(NECKO_PROTOCOLS))) +@@ -101,6 +101,10 @@ ifneq (,$(filter rtsp,$(NECKO_PROTOCOLS) DEFINES += -DMOZ_RTSP endif @@ -10,21 +10,21 @@ index 754312a..c69904c 100644 +DEFINES += -DMOZ_DEBUG=1 +endif + - ifdef GKMEDIAS_SHARED_LIBRARY - DEFINES += -DGKMEDIAS_SHARED_LIBRARY - endif + DEFINES += -DMOZ_ICU_VERSION=$(MOZ_ICU_VERSION) + ifdef MOZ_NATIVE_ICU + DEFINES += -DMOZ_NATIVE_ICU diff --git b2g/installer/package-manifest.in b2g/installer/package-manifest.in index 17d433c..0416187 100644 --- b2g/installer/package-manifest.in +++ b2g/installer/package-manifest.in -@@ -576,7 +576,7 @@ - @BINPATH@/components/MozKeyboard.js - @BINPATH@/components/InputMethod.manifest +@@ -660,7 +660,7 @@ + @RESPATH@/components/EngineeringModeAPI.js + @RESPATH@/components/EngineeringModeService.js -#ifdef MOZ_DEBUG +#if defined(ENABLE_TESTS) && defined(MOZ_DEBUG) - @BINPATH@/components/TestInterfaceJS.js - @BINPATH@/components/TestInterfaceJS.manifest + @RESPATH@/components/TestInterfaceJS.js + @RESPATH@/components/TestInterfaceJS.manifest #endif diff --git browser/installer/package-manifest.in browser/installer/package-manifest.in index b509fd4..195345c 100644 Modified: branches/2016Q2/www/firefox-esr/files/patch-bug1021761 ============================================================================== --- branches/2016Q2/www/firefox-esr/files/patch-bug1021761 Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr/files/patch-bug1021761 Fri Apr 22 12:16:01 2016 (r413772) @@ -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; } @@ -1070,11 +1070,11 @@ index 8b7a0dd..31212ce 100644 +CFLAGS += CONFIG['MOZ_OSS_CFLAGS'] CFLAGS += CONFIG['MOZ_ALSA_CFLAGS'] CFLAGS += CONFIG['MOZ_PULSEAUDIO_CFLAGS'] -diff --git media/webrtc/signaling/test/moz.build media/webrtc/signaling/test/moz.build +diff --git media/webrtc/signaling/test/common.build media/webrtc/signaling/test/common.build index 991f03f..3d99eb5 100644 ---- media/webrtc/signaling/test/moz.build -+++ media/webrtc/signaling/test/moz.build -@@ -112,8 +112,8 @@ if CONFIG['JS_SHARED_LIBRARY']: +--- media/webrtc/signaling/test/common.build ++++ media/webrtc/signaling/test/common.build +@@ -102,8 +102,8 @@ USE_LIBS += ['mozglue'] OS_LIBS += CONFIG['MOZ_WEBRTC_X11_LIBS'] OS_LIBS += CONFIG['REALTIME_LIBS'] Modified: branches/2016Q2/www/firefox-esr/files/patch-bug1233275 ============================================================================== --- branches/2016Q2/www/firefox-esr/files/patch-bug1233275 Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr/files/patch-bug1233275 Fri Apr 22 12:16:01 2016 (r413772) @@ -3,23 +3,19 @@ diff --git a/ipc/chromium/src/base/process_util_bsd.cc b/ipc/chromium/src/base/process_util_bsd.cc --- ipc/chromium/src/base/process_util_bsd.cc +++ ipc/chromium/src/base/process_util_bsd.cc -@@ -13,6 +13,7 @@ +@@ -12,10 +12,9 @@ #include +#include "nspr.h" #include "base/eintr_wrapper.h" - #include "base/file_util.h" - #include "base/logging.h" -@@ -48,7 +49,6 @@ - #ifdef HAVE_POSIX_SPAWN - #include --extern "C" char **environ __dso_public; - #endif +-extern "C" char **environ __attribute__((__visibility__("default"))); +- + namespace base { - namespace { -@@ -114,6 +114,7 @@ bool LaunchApp(const std::vector + #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 += [ + 'CrossProcessMutex_windows.cpp', + ] +-elif CONFIG['OS_ARCH'] in ('Linux', 'Darwin'): ++elif not CONFIG['OS_ARCH'] in ('NetBSD', 'OpenBSD'): + UNIFIED_SOURCES += [ + 'CrossProcessMutex_posix.cpp', + ] Copied: branches/2016Q2/www/firefox-esr/files/patch-bug1257947 (from r413726, head/www/firefox-esr/files/patch-bug1257947) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/www/firefox-esr/files/patch-bug1257947 Fri Apr 22 12:16:01 2016 (r413772, copy of r413726, head/www/firefox-esr/files/patch-bug1257947) @@ -0,0 +1,13 @@ +# Fix Hello icon (bug 1257947) + +--- browser/extensions/loop/jar.mn.orig 2016-04-14 21:11:21.842908299 +0200 ++++ browser/extensions/loop/jar.mn 2016-04-14 21:11:36.570907377 +0200 +@@ -6,7 +6,7 @@ + [features/loop@mozilla.org] chrome.jar: + % content loop %content/ contentaccessible=yes + % content loop-locale-fallback %content/locale-fallback/en-US/ +-% skin loop classic/1.0 %skin/linux/ os=Linux ++% skin loop classic/1.0 %skin/linux/ + % skin loop classic/1.0 %skin/osx/ os=Darwin + % skin loop classic/1.0 %skin/windows/ os=WINNT + % skin loop-shared classic/1.0 %skin/shared/ Modified: branches/2016Q2/www/firefox-esr/files/patch-bug702179 ============================================================================== --- branches/2016Q2/www/firefox-esr/files/patch-bug702179 Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr/files/patch-bug702179 Fri Apr 22 12:16:01 2016 (r413772) @@ -1,24 +1,13 @@ -commit 6ddaacd -Author: Ginn Chen -Date: Wed Nov 30 07:23:46 2011 +0800 - - Bug 702179 dtrace probes are not installed on Solaris with static js lib r=glandium ---- - js/src/Makefile.in | 3 --- - toolkit/library/moz.build | 5 ----- - 2 files changed, 8 deletions(-) - -diff --git js/src/Makefile.in js/src/Makefile.in -index 62bbfa0..90400cb 100644 ---- js/src/Makefile.in -+++ js/src/Makefile.in -@@ -17,9 +17,6 @@ TOPLEVEL_BUILD := 1 - run_for_side_effects := $(shell echo 'MAKE: $(MAKE)') - EXTRA_LIBS += $(NSPR_LIBS) +--- js/src/moz.build.orig 2015-12-16 12:32:04.574425000 +0100 ++++ js/src/moz.build 2015-12-16 12:32:09.032032000 +0100 +@@ -671,10 +671,6 @@ CFLAGS += CONFIG['MOZ_ICU_CFLAGS'] + CXXFLAGS += CONFIG['MOZ_ICU_CFLAGS'] + LOCAL_INCLUDES += CONFIG['MOZ_ICU_INCLUDES'] --DIST_INSTALL = 1 --NO_EXPAND_LIBS = 1 +-NO_EXPAND_LIBS = True - - ifdef JS_HAS_CTYPES - ifdef MOZ_NATIVE_FFI - LOCAL_INCLUDES = $(MOZ_FFI_CFLAGS) +-DIST_INSTALL = True +- + # Prepare self-hosted JS code for embedding + GENERATED_FILES += ['selfhosted.out.h'] + selfhosted = GENERATED_FILES['selfhosted.out.h'] Modified: branches/2016Q2/www/firefox-esr/files/patch-bug826985 ============================================================================== --- branches/2016Q2/www/firefox-esr/files/patch-bug826985 Fri Apr 22 10:50:27 2016 (r413771) +++ branches/2016Q2/www/firefox-esr/files/patch-bug826985 Fri Apr 22 12:16:01 2016 (r413772) @@ -17,10 +17,10 @@ diff --git config/system-headers config/ index 55e4cd1..76567b3 100644 --- config/system-headers +++ config/system-headers -@@ -635,6 +635,7 @@ libgnomevfs/gnome-vfs-mime-handlers.h - libgnomevfs/gnome-vfs-mime-utils.h - libgnomevfs/gnome-vfs-ops.h - libgnomevfs/gnome-vfs-standard-callbacks.h +@@ -627,6 +627,7 @@ libgnome/libgnome.h + libgnomeui/gnome-icon-lookup.h + libgnomeui/gnome-icon-theme.h + libgnomeui/gnome-ui-init.h +libv4l2.h lib$routines.h limits @@ -51,13 +51,13 @@ index b483cd1..f1dd1f0 100644 # basic stuff for everything 'include_internal_video_render': 0, 'clang_use_chrome_plugins': 0, -diff --git media/webrtc/signaling/test/moz.build media/webrtc/signaling/test/moz.build +diff --git media/webrtc/signaling/test/common.build media/webrtc/signaling/test/common.build index b483cd1..f1dd1f0 100644 ---- media/webrtc/signaling/test/moz.build -+++ media/webrtc/signaling/test/moz.build -@@ -122,6 +122,7 @@ if CONFIG['JS_SHARED_LIBRARY']: - 'js', - ] +--- media/webrtc/signaling/test/common.build ++++ media/webrtc/signaling/test/common.build +@@ -99,6 +99,7 @@ if CONFIG['JS_SHARED_LIBRARY']: + + USE_LIBS += ['mozglue'] +OS_LIBS += CONFIG['MOZ_LIBV4L2_LIBS'] OS_LIBS += CONFIG['MOZ_WEBRTC_X11_LIBS'] @@ -145,26 +145,26 @@ index d46b5aa..e452223 100644 *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Fri Apr 22 15:42:23 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 8535BB187C6; Fri, 22 Apr 2016 15:42:23 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 472B4167F; Fri, 22 Apr 2016 15:42:23 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3MFgMEr079132; Fri, 22 Apr 2016 15:42:22 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3MFgL1r079124; Fri, 22 Apr 2016 15:42:21 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201604221542.u3MFgL1r079124@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 22 Apr 2016 15:42:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413784 - in branches/2016Q2/emulators: virtualbox-ose virtualbox-ose-additions virtualbox-ose-kmod virtualbox-ose/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: Fri, 22 Apr 2016 15:42:23 -0000 Author: jkim Date: Fri Apr 22 15:42:21 2016 New Revision: 413784 URL: https://svnweb.freebsd.org/changeset/ports/413784 Log: MFH: r413655, r413748 - Install NAT helper. - Update to 4.3.38. Approved by: ports-secteam (junovitch) Modified: branches/2016Q2/emulators/virtualbox-ose-additions/Makefile branches/2016Q2/emulators/virtualbox-ose-additions/distinfo branches/2016Q2/emulators/virtualbox-ose-kmod/Makefile branches/2016Q2/emulators/virtualbox-ose-kmod/distinfo branches/2016Q2/emulators/virtualbox-ose/Makefile branches/2016Q2/emulators/virtualbox-ose/distinfo branches/2016Q2/emulators/virtualbox-ose/files/patch-src-VBox-Additions-x11-vboxmouse-Makefile.kmk branches/2016Q2/emulators/virtualbox-ose/pkg-plist Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/emulators/virtualbox-ose-additions/Makefile ============================================================================== --- branches/2016Q2/emulators/virtualbox-ose-additions/Makefile Fri Apr 22 14:26:38 2016 (r413783) +++ branches/2016Q2/emulators/virtualbox-ose-additions/Makefile Fri Apr 22 15:42:21 2016 (r413784) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= virtualbox-ose -DISTVERSION= 4.3.36 +DISTVERSION= 4.3.38 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${DISTVERSION}/ \ http://tmp.chruetertee.ch/ \ Modified: branches/2016Q2/emulators/virtualbox-ose-additions/distinfo ============================================================================== --- branches/2016Q2/emulators/virtualbox-ose-additions/distinfo Fri Apr 22 14:26:38 2016 (r413783) +++ branches/2016Q2/emulators/virtualbox-ose-additions/distinfo Fri Apr 22 15:42:21 2016 (r413784) @@ -1,2 +1,2 @@ -SHA256 (VirtualBox-4.3.36.tar.bz2) = af0776df6d03b2709cb76a69f055487bf12bdb3b4163e2a82959860300283046 -SIZE (VirtualBox-4.3.36.tar.bz2) = 98421624 +SHA256 (VirtualBox-4.3.38.tar.bz2) = 36f16d435acf04c1dce81df08ba0b522b7c3b10fe48f6ab5b95e9c8404d1f2e5 +SIZE (VirtualBox-4.3.38.tar.bz2) = 98437150 Modified: branches/2016Q2/emulators/virtualbox-ose-kmod/Makefile ============================================================================== --- branches/2016Q2/emulators/virtualbox-ose-kmod/Makefile Fri Apr 22 14:26:38 2016 (r413783) +++ branches/2016Q2/emulators/virtualbox-ose-kmod/Makefile Fri Apr 22 15:42:21 2016 (r413784) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= virtualbox-ose -DISTVERSION= 4.3.36 +DISTVERSION= 4.3.38 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${DISTVERSION}/ \ http://tmp.chruetertee.ch/ \ Modified: branches/2016Q2/emulators/virtualbox-ose-kmod/distinfo ============================================================================== --- branches/2016Q2/emulators/virtualbox-ose-kmod/distinfo Fri Apr 22 14:26:38 2016 (r413783) +++ branches/2016Q2/emulators/virtualbox-ose-kmod/distinfo Fri Apr 22 15:42:21 2016 (r413784) @@ -1,2 +1,2 @@ -SHA256 (VirtualBox-4.3.36.tar.bz2) = af0776df6d03b2709cb76a69f055487bf12bdb3b4163e2a82959860300283046 -SIZE (VirtualBox-4.3.36.tar.bz2) = 98421624 +SHA256 (VirtualBox-4.3.38.tar.bz2) = 36f16d435acf04c1dce81df08ba0b522b7c3b10fe48f6ab5b95e9c8404d1f2e5 +SIZE (VirtualBox-4.3.38.tar.bz2) = 98437150 Modified: branches/2016Q2/emulators/virtualbox-ose/Makefile ============================================================================== --- branches/2016Q2/emulators/virtualbox-ose/Makefile Fri Apr 22 14:26:38 2016 (r413783) +++ branches/2016Q2/emulators/virtualbox-ose/Makefile Fri Apr 22 15:42:21 2016 (r413784) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= virtualbox-ose -DISTVERSION= 4.3.36 +DISTVERSION= 4.3.38 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${DISTVERSION}/ \ http://tmp.chruetertee.ch/ \ @@ -55,8 +55,8 @@ GROUPS= ${VBOXGROUP} VBOX_DIR= ${PREFIX}/lib/virtualbox VBOX_LINKS= VBoxVRDP VBOX_PROGS= VBoxAutostart VBoxBalloonCtrl VBoxHeadless VBoxManage -VBOX_UTILS= VBoxExtPackHelperApp VBoxNetAdpCtl VBoxNetDHCP VBoxSVC \ - VBoxXPCOMIPCD +VBOX_UTILS= VBoxExtPackHelperApp VBoxNetAdpCtl VBoxNetDHCP VBoxNetNAT \ + VBoxSVC VBoxXPCOMIPCD VBOX_GUEST_VER= ${PORTVERSION} Modified: branches/2016Q2/emulators/virtualbox-ose/distinfo ============================================================================== --- branches/2016Q2/emulators/virtualbox-ose/distinfo Fri Apr 22 14:26:38 2016 (r413783) +++ branches/2016Q2/emulators/virtualbox-ose/distinfo Fri Apr 22 15:42:21 2016 (r413784) @@ -1,4 +1,4 @@ -SHA256 (VirtualBox-4.3.36.tar.bz2) = af0776df6d03b2709cb76a69f055487bf12bdb3b4163e2a82959860300283046 -SIZE (VirtualBox-4.3.36.tar.bz2) = 98421624 -SHA256 (VBoxGuestAdditions_4.3.36.iso) = adba31edc86b4043d5d9a1700f2adf9806220125549cd83fc010e1f2770f0b79 -SIZE (VBoxGuestAdditions_4.3.36.iso) = 58388480 +SHA256 (VirtualBox-4.3.38.tar.bz2) = 36f16d435acf04c1dce81df08ba0b522b7c3b10fe48f6ab5b95e9c8404d1f2e5 +SIZE (VirtualBox-4.3.38.tar.bz2) = 98437150 +SHA256 (VBoxGuestAdditions_4.3.38.iso) = 0aabbc9d548658e90f3b30d08e76a023ba93402cd2b833dd153530f122ea0502 +SIZE (VBoxGuestAdditions_4.3.38.iso) = 57085952 Modified: branches/2016Q2/emulators/virtualbox-ose/files/patch-src-VBox-Additions-x11-vboxmouse-Makefile.kmk ============================================================================== --- branches/2016Q2/emulators/virtualbox-ose/files/patch-src-VBox-Additions-x11-vboxmouse-Makefile.kmk Fri Apr 22 14:26:38 2016 (r413783) +++ branches/2016Q2/emulators/virtualbox-ose/files/patch-src-VBox-Additions-x11-vboxmouse-Makefile.kmk Fri Apr 22 15:42:21 2016 (r413784) @@ -1,6 +1,6 @@ ---- src/VBox/Additions/x11/vboxmouse/Makefile.kmk.orig 2015-07-10 16:27:59.000000000 +0200 -+++ src/VBox/Additions/x11/vboxmouse/Makefile.kmk 2015-10-13 08:40:36.448907000 +0200 -@@ -228,6 +228,61 @@ +--- src/VBox/Additions/x11/vboxmouse/Makefile.kmk.orig 2016-04-20 09:56:37 UTC ++++ src/VBox/Additions/x11/vboxmouse/Makefile.kmk +@@ -228,6 +228,72 @@ vboxmouse_drv_112_INCS := \ vboxmouse_drv_112_SOURCES = \ vboxmouse.c @@ -59,15 +59,26 @@ +vboxmouse_drv_117_SOURCES = \ + vboxmouse.c + ++DLLS += vboxmouse_drv_118 ++vboxmouse_drv_118_TEMPLATE = VBOXGUESTR3XORGMOD ++vboxmouse_drv_118_DEFS := $(vboxmouse_drv_70_DEFS) NO_ANSIC ++## @todo replace $(VBOX_PATH_X11_ROOT)/xorg-server-1.6.0-local ++vboxmouse_drv_118_INCS := \ ++ $(vboxmouse_xorg_INCS) \ ++ $(VBOX_PATH_X11_ROOT)/xorg-server-1.18.0 \ ++ $(PATH_SUB_CURRENT) ++vboxmouse_drv_118_SOURCES = \ ++ vboxmouse.c ++ endif # neq ($(KBUILD_TARGET),linux) -@@ -276,7 +331,7 @@ +@@ -276,7 +342,7 @@ $$(vboxmouse_drv_0_OUTDIR)/tstvboxmouse6 $(foreach ver, _70 _71 _13 _14 _15 _16, $(eval $(def_vboxmouse_test))) ifneq ($(KBUILD_TARGET), linux) - $(foreach ver, _17 _18 _19 _110 _111 _112 _113, $(eval $(def_vboxmouse_test))) -+ $(foreach ver, _17 _18 _19 _110 _111 _112 _113 _114 _115 _116 _117, $(eval $(def_vboxmouse_test))) ++ $(foreach ver, _17 _18 _19 _110 _111 _112 _113 _114 _115 _116 _117 _118, $(eval $(def_vboxmouse_test))) endif # neq ($(KBUILD_TARGET),linux) Modified: branches/2016Q2/emulators/virtualbox-ose/pkg-plist ============================================================================== --- branches/2016Q2/emulators/virtualbox-ose/pkg-plist Fri Apr 22 14:26:38 2016 (r413783) +++ branches/2016Q2/emulators/virtualbox-ose/pkg-plist Fri Apr 22 15:42:21 2016 (r413784) @@ -366,6 +366,7 @@ lib/virtualbox/VBoxHostChannel.so lib/virtualbox/VBoxManage @(root,%%VBOXGROUP%%,4510) lib/virtualbox/VBoxNetAdpCtl @(root,%%VBOXGROUP%%,4510) lib/virtualbox/VBoxNetDHCP +@(root,%%VBOXGROUP%%,4510) lib/virtualbox/VBoxNetNAT lib/virtualbox/VBoxNetDHCP.so lib/virtualbox/VBoxNetNAT.so %%X11%%lib/virtualbox/VBoxOGLhostcrutil.so From owner-svn-ports-branches@freebsd.org Sat Apr 23 13:35:50 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 5343CB127B6; Sat, 23 Apr 2016 13:35:50 +0000 (UTC) (envelope-from flo@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 F368214ED; Sat, 23 Apr 2016 13:35:49 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3NDZnQK081389; Sat, 23 Apr 2016 13:35:49 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3NDZmII081386; Sat, 23 Apr 2016 13:35:48 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201604231335.u3NDZmII081386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Sat, 23 Apr 2016 13:35:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413873 - branches/2016Q2/www/phpmyfaq 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: Sat, 23 Apr 2016 13:35:50 -0000 Author: flo Date: Sat Apr 23 13:35:48 2016 New Revision: 413873 URL: https://svnweb.freebsd.org/changeset/ports/413873 Log: MFH: r413864 Update to 2.8.27 Security: https://vuxml.freebsd.org/freebsd/f87a9376-0943-11e6-8fc4-00a0986f28c4.html Sponsored by: Essen Linuxhotel Hackathon 2016 Approved by: portmgr (bapt) Modified: branches/2016Q2/www/phpmyfaq/Makefile branches/2016Q2/www/phpmyfaq/distinfo branches/2016Q2/www/phpmyfaq/pkg-plist Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/www/phpmyfaq/Makefile ============================================================================== --- branches/2016Q2/www/phpmyfaq/Makefile Sat Apr 23 13:30:33 2016 (r413872) +++ branches/2016Q2/www/phpmyfaq/Makefile Sat Apr 23 13:35:48 2016 (r413873) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phpmyfaq -PORTVERSION= 2.8.23 +PORTVERSION= 2.8.27 CATEGORIES= www MASTER_SITES= http://www.phpmyfaq.de/download/ DISTNAME= phpMyFAQ-${PORTVERSION} Modified: branches/2016Q2/www/phpmyfaq/distinfo ============================================================================== --- branches/2016Q2/www/phpmyfaq/distinfo Sat Apr 23 13:30:33 2016 (r413872) +++ branches/2016Q2/www/phpmyfaq/distinfo Sat Apr 23 13:35:48 2016 (r413873) @@ -1,2 +1,2 @@ -SHA256 (phpMyFAQ-2.8.23.tar.gz) = 6ab6c0bc19c910fc367e315376a5862df17edec915ccab1a6deedaa50f4a9b72 -SIZE (phpMyFAQ-2.8.23.tar.gz) = 5741249 +SHA256 (phpMyFAQ-2.8.27.tar.gz) = 0a5c32abc7c60aa618425dcc62e70fc0b300cf97646821e6bde21fd22e753ee9 +SIZE (phpMyFAQ-2.8.27.tar.gz) = 5801473 Modified: branches/2016Q2/www/phpmyfaq/pkg-plist ============================================================================== --- branches/2016Q2/www/phpmyfaq/pkg-plist Sat Apr 23 13:30:33 2016 (r413872) +++ branches/2016Q2/www/phpmyfaq/pkg-plist Sat Apr 23 13:35:48 2016 (r413873) @@ -549,12 +549,12 @@ %%WWWDIR%%/admin/editor/plugins/style/css/props.css %%WWWDIR%%/admin/editor/plugins/style/editor_plugin.js %%WWWDIR%%/admin/editor/plugins/style/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/style/readme.txt %%WWWDIR%%/admin/editor/plugins/style/js/props.js %%WWWDIR%%/admin/editor/plugins/style/langs/cs_dlg.js %%WWWDIR%%/admin/editor/plugins/style/langs/de_dlg.js %%WWWDIR%%/admin/editor/plugins/style/langs/en_dlg.js %%WWWDIR%%/admin/editor/plugins/style/props.htm +%%WWWDIR%%/admin/editor/plugins/style/readme.txt %%WWWDIR%%/admin/editor/plugins/syntaxhl/README %%WWWDIR%%/admin/editor/plugins/syntaxhl/dialog.htm %%WWWDIR%%/admin/editor/plugins/syntaxhl/editor_plugin.js @@ -787,8 +787,8 @@ %%WWWDIR%%/assets/js/autosave.js %%WWWDIR%%/assets/js/functions.js %%WWWDIR%%/assets/js/jquery.min.map -%%WWWDIR%%/assets/js/libs/jquery.min.map %%WWWDIR%%/assets/js/libs/jquery.min.js +%%WWWDIR%%/assets/js/libs/jquery.min.map %%WWWDIR%%/assets/js/libs/modernizr.min.js %%WWWDIR%%/assets/js/phpmyfaq.js %%WWWDIR%%/assets/js/phpmyfaq.min.js @@ -860,11 +860,11 @@ %%WWWDIR%%/assets/template/default/favicon.ico %%WWWDIR%%/assets/template/default/glossary.tpl %%WWWDIR%%/assets/template/default/images/arrow.gif -%%WWWDIR%%/assets/template/default/indexPassword.tpl %%WWWDIR%%/assets/template/default/index.tpl %%WWWDIR%%/assets/template/default/indexLogin.tpl %%WWWDIR%%/assets/template/default/indexMaintenance.tpl %%WWWDIR%%/assets/template/default/indexNewUser.tpl +%%WWWDIR%%/assets/template/default/indexPassword.tpl %%WWWDIR%%/assets/template/default/instantresponse.tpl %%WWWDIR%%/assets/template/default/less/style.less %%WWWDIR%%/assets/template/default/less/style.rtl.less @@ -1042,8 +1042,8 @@ %%WWWDIR%%/inc/libs/Symfony/Component/ClassLoader/DebugUniversalClassLoader.php %%WWWDIR%%/inc/libs/Symfony/Component/ClassLoader/LICENSE %%WWWDIR%%/inc/libs/Symfony/Component/ClassLoader/MapClassLoader.php -%%WWWDIR%%/inc/libs/Symfony/Component/ClassLoader/README.md %%WWWDIR%%/inc/libs/Symfony/Component/ClassLoader/Psr4ClassLoader.php +%%WWWDIR%%/inc/libs/Symfony/Component/ClassLoader/README.md %%WWWDIR%%/inc/libs/Symfony/Component/ClassLoader/Tests/ClassCollectionLoaderTest.php %%WWWDIR%%/inc/libs/Symfony/Component/ClassLoader/Tests/ClassLoaderTest.php %%WWWDIR%%/inc/libs/Symfony/Component/ClassLoader/Tests/ClassMapGeneratorTest.php @@ -1139,6 +1139,14 @@ %%WWWDIR%%/inc/libs/phpseclib/Crypt/RC2.php %%WWWDIR%%/inc/libs/phpseclib/Crypt/RC4.php %%WWWDIR%%/inc/libs/phpseclib/Crypt/RSA.php +%%WWWDIR%%/inc/libs/phpseclib/Crypt/RSA/MSBLOB.php +%%WWWDIR%%/inc/libs/phpseclib/Crypt/RSA/OpenSSH.php +%%WWWDIR%%/inc/libs/phpseclib/Crypt/RSA/PKCS.php +%%WWWDIR%%/inc/libs/phpseclib/Crypt/RSA/PKCS1.php +%%WWWDIR%%/inc/libs/phpseclib/Crypt/RSA/PKCS8.php +%%WWWDIR%%/inc/libs/phpseclib/Crypt/RSA/PuTTY.php +%%WWWDIR%%/inc/libs/phpseclib/Crypt/RSA/Raw.php +%%WWWDIR%%/inc/libs/phpseclib/Crypt/RSA/XML.php %%WWWDIR%%/inc/libs/phpseclib/Crypt/Random.php %%WWWDIR%%/inc/libs/phpseclib/Crypt/Rijndael.php %%WWWDIR%%/inc/libs/phpseclib/Crypt/TripleDES.php @@ -1220,13 +1228,14 @@ %%WWWDIR%%/lang/language_da.php %%WWWDIR%%/lang/language_de.php %%WWWDIR%%/lang/language_el.php +%%WWWDIR%%/lang/language_en-us.php %%WWWDIR%%/lang/language_en.php %%WWWDIR%%/lang/language_es.php %%WWWDIR%%/lang/language_eu.php %%WWWDIR%%/lang/language_fa.php %%WWWDIR%%/lang/language_fi.php -%%WWWDIR%%/lang/language_fr.php %%WWWDIR%%/lang/language_fr-ca.php +%%WWWDIR%%/lang/language_fr.php %%WWWDIR%%/lang/language_he.php %%WWWDIR%%/lang/language_hi.php %%WWWDIR%%/lang/language_hu.php From owner-svn-ports-branches@freebsd.org Sat Apr 23 16:59: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 45B88B1A0E5; Sat, 23 Apr 2016 16:59:45 +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 1D8761346; Sat, 23 Apr 2016 16:59:45 +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 u3NGxiaj043599; Sat, 23 Apr 2016 16:59:44 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3NGxiep043596; Sat, 23 Apr 2016 16:59:44 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201604231659.u3NGxiep043596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 23 Apr 2016 16:59:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413891 - branches/2016Q2/devel/linux-c6-nspr 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: Sat, 23 Apr 2016 16:59:45 -0000 Author: feld Date: Sat Apr 23 16:59:43 2016 New Revision: 413891 URL: https://svnweb.freebsd.org/changeset/ports/413891 Log: MFH: r413889 devel/linux-c6-nspr: Update to 4.11.0 Security: 9d04936c-75f1-4a2c-9ade-4c1708be5df9 Approved by: ports-secteam (with hat) Modified: branches/2016Q2/devel/linux-c6-nspr/Makefile branches/2016Q2/devel/linux-c6-nspr/distinfo.i686 branches/2016Q2/devel/linux-c6-nspr/distinfo.x86_64 Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/devel/linux-c6-nspr/Makefile ============================================================================== --- branches/2016Q2/devel/linux-c6-nspr/Makefile Sat Apr 23 16:50:51 2016 (r413890) +++ branches/2016Q2/devel/linux-c6-nspr/Makefile Sat Apr 23 16:59:43 2016 (r413891) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= nspr -PORTVERSION= 4.10.8 -PORTREVISION= 2 +PORTVERSION= 4.11.0 CATEGORIES= devel linux MASTER_SITES= CENTOS_LINUX_UPDATES @@ -13,7 +12,7 @@ COMMENT= Netscape Portable Runtime (Linu CONFLICTS= linux-f10-nspr-[0-9]* ONLY_FOR_ARCHS= i386 amd64 -RPMVERSION= 2.el6_7 +RPMVERSION= 0.1.el6_7 USE_LINUX= c6 USE_LINUX_RPM= yes Modified: branches/2016Q2/devel/linux-c6-nspr/distinfo.i686 ============================================================================== --- branches/2016Q2/devel/linux-c6-nspr/distinfo.i686 Sat Apr 23 16:50:51 2016 (r413890) +++ branches/2016Q2/devel/linux-c6-nspr/distinfo.i686 Sat Apr 23 16:59:43 2016 (r413891) @@ -1,4 +1,4 @@ -SHA256 (rpm/i686/centos/6.7/nspr-4.10.8-2.el6_7.i686.rpm) = 4918a807ce01bae46183b6a1340c9df45625542a2ef912f305666dba8c60329b -SIZE (rpm/i686/centos/6.7/nspr-4.10.8-2.el6_7.i686.rpm) = 118892 -SHA256 (rpm/i686/centos/6.7/nspr-4.10.8-2.el6_7.src.rpm) = 999b3e49fd18fc6982167b3e4059fb770ca228060b832804b2857018417ec3e9 -SIZE (rpm/i686/centos/6.7/nspr-4.10.8-2.el6_7.src.rpm) = 888909 +SHA256 (rpm/i686/centos/6.7/nspr-4.11.0-0.1.el6_7.i686.rpm) = 3b223ca6b209603975d7067ca45911b0f61f445196fb4b87e8e30b881ba9c2e5 +SIZE (rpm/i686/centos/6.7/nspr-4.11.0-0.1.el6_7.i686.rpm) = 119120 +SHA256 (rpm/i686/centos/6.7/nspr-4.11.0-0.1.el6_7.src.rpm) = 34bfff2b29fc9e980193a8cdc85aa65bae37e6c8e622de0882d0237365aa0c47 +SIZE (rpm/i686/centos/6.7/nspr-4.11.0-0.1.el6_7.src.rpm) = 904178 Modified: branches/2016Q2/devel/linux-c6-nspr/distinfo.x86_64 ============================================================================== --- branches/2016Q2/devel/linux-c6-nspr/distinfo.x86_64 Sat Apr 23 16:50:51 2016 (r413890) +++ branches/2016Q2/devel/linux-c6-nspr/distinfo.x86_64 Sat Apr 23 16:59:43 2016 (r413891) @@ -1,4 +1,6 @@ -SHA256 (rpm/x86_64/centos/6.7/nspr-4.10.8-2.el6_7.x86_64.rpm) = bfdb7611d0a5f624f7193a504c12dbf44c863caf3077c5572bc485fb29ae6704 -SIZE (rpm/x86_64/centos/6.7/nspr-4.10.8-2.el6_7.x86_64.rpm) = 116196 -SHA256 (rpm/x86_64/centos/6.7/nspr-4.10.8-2.el6_7.src.rpm) = 999b3e49fd18fc6982167b3e4059fb770ca228060b832804b2857018417ec3e9 -SIZE (rpm/x86_64/centos/6.7/nspr-4.10.8-2.el6_7.src.rpm) = 888909 +SHA256 (rpm/x86_64/centos/6.7/nspr-4.11.0-0.1.el6_7.x86_64.rpm) = 3d109fb2c496edf99f41fd9db08769239caef7758ea6abf118ffe72b1de57c94 +SIZE (rpm/x86_64/centos/6.7/nspr-4.11.0-0.1.el6_7.x86_64.rpm) = 116468 +SHA256 (rpm/x86_64/centos/6.7/nspr-4.11.0-0.1.el6_7.i686.rpm) = 3b223ca6b209603975d7067ca45911b0f61f445196fb4b87e8e30b881ba9c2e5 +SIZE (rpm/x86_64/centos/6.7/nspr-4.11.0-0.1.el6_7.i686.rpm) = 119120 +SHA256 (rpm/x86_64/centos/6.7/nspr-4.11.0-0.1.el6_7.src.rpm) = 34bfff2b29fc9e980193a8cdc85aa65bae37e6c8e622de0882d0237365aa0c47 +SIZE (rpm/x86_64/centos/6.7/nspr-4.11.0-0.1.el6_7.src.rpm) = 904178 From owner-svn-ports-branches@freebsd.org Sat Apr 23 20:14: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 4D4BAB1AF09; Sat, 23 Apr 2016 20:14:14 +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 1C2461805; Sat, 23 Apr 2016 20:14:14 +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 u3NKEDva004978; Sat, 23 Apr 2016 20:14:13 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3NKEDK7004976; Sat, 23 Apr 2016 20:14:13 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201604232014.u3NKEDK7004976@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sat, 23 Apr 2016 20:14:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r413908 - in branches/2016Q2/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: Sat, 23 Apr 2016 20:14:14 -0000 Author: olgeni Date: Sat Apr 23 20:14:13 2016 New Revision: 413908 URL: https://svnweb.freebsd.org/changeset/ports/413908 Log: MFH: r413880 Make sure that the Erlang cookie file has mode 600 before starting, else RabbitMQ will not run. Approved by: portmgr Modified: branches/2016Q2/net/rabbitmq/Makefile branches/2016Q2/net/rabbitmq/files/rabbitmq.in Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/net/rabbitmq/Makefile ============================================================================== --- branches/2016Q2/net/rabbitmq/Makefile Sat Apr 23 19:54:48 2016 (r413907) +++ branches/2016Q2/net/rabbitmq/Makefile Sat Apr 23 20:14:13 2016 (r413908) @@ -3,6 +3,7 @@ PORTNAME= rabbitmq PORTVERSION= 3.6.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-server-${PORTVERSION} Modified: branches/2016Q2/net/rabbitmq/files/rabbitmq.in ============================================================================== --- branches/2016Q2/net/rabbitmq/files/rabbitmq.in Sat Apr 23 19:54:48 2016 (r413907) +++ branches/2016Q2/net/rabbitmq/files/rabbitmq.in Sat Apr 23 20:14:13 2016 (r413908) @@ -52,6 +52,10 @@ rabbitmq_start() chown -R ${rabbitmq_user}:${rabbitmq_user} ${RABBITMQ_LOGDIR} fi + if [ -f ${RABBITMQ_HOME}/.erlang.cookie ]; then + chmod 600 ${RABBITMQ_HOME}/.erlang.cookie + fi + env HOME=${RABBITMQ_HOME} daemon -c -f -u ${rabbitmq_user} -p ${pidfile} -P ${daemon_pidfile} ${rabbitmq_server} debug "Running: rabbitmqctl wait ${pidfile}" ${rabbitmq_ctl} wait ${pidfile} >/dev/null 2>&1