From owner-svn-ports-branches@freebsd.org Mon Oct 1 00:18:00 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5784510AD9A1; Mon, 1 Oct 2018 00:18:00 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED17679AE5; Mon, 1 Oct 2018 00:17:59 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E256B196E4; Mon, 1 Oct 2018 00:17:59 +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 w910Hxw4087343; Mon, 1 Oct 2018 00:17:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w910HxPR087342; Mon, 1 Oct 2018 00:17:59 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810010017.w910HxPR087342@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 1 Oct 2018 00:17:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r480988 - branches/2018Q3/devel/googletest X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q3/devel/googletest X-SVN-Commit-Revision: 480988 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 00:18:00 -0000 Author: jbeich Date: Mon Oct 1 00:17:59 2018 New Revision: 480988 URL: https://svnweb.freebsd.org/changeset/ports/480988 Log: MFH: r480987 devel/googletest: unbreak on GCC architectures after r478607 In file included from ./include/gtest/gtest.h:59, from src/gtest_main.cc:31: ./include/gtest/internal/gtest-internal.h:657: error: expected ',' or '...' before '>' token ./include/gtest/internal/gtest-internal.h:657: error: parse error in template argument list ./include/gtest/internal/gtest-internal.h:657: error: default argument missing for parameter 7 of 'static bool testing::internal::TypeParameterizedTest::Register(const char*, const testing::internal::CodeLocation&, const char*, const char*, int, const std::vector, std::allocator >, std::allocator, std::allocator > > >&, Types)' In file included from src/gtest_main.cc:31: In file included from ./include/gtest/gtest.h:59: ./include/gtest/internal/gtest-internal.h:947:44: error: no member named 'declval' in namespace 'std' class Iterator = decltype(::std::declval().begin()), ~~~~~~~^ ./include/gtest/internal/gtest-internal.h:947:52: error: expected expression class Iterator = decltype(::std::declval().begin()), ^ ./include/gtest/internal/gtest-internal.h:948:35: error: no member named 'declval' in namespace 'std' class = decltype(::std::declval().end()), ~~~~~~~^ ./include/gtest/internal/gtest-internal.h:948:43: error: expected expression class = decltype(::std::declval().end()), ^ ./include/gtest/internal/gtest-internal.h:949:37: error: no member named 'declval' in namespace 'std' class = decltype(++::std::declval()), ~~~~~~~^ ./include/gtest/internal/gtest-internal.h:949:45: error: 'Iterator' does not refer to a value class = decltype(++::std::declval()), ^ ./include/gtest/internal/gtest-internal.h:947:17: note: declared here class Iterator = decltype(::std::declval().begin()), ^ ./include/gtest/internal/gtest-internal.h:949:54: error: expected expression class = decltype(++::std::declval()), ^ ./include/gtest/internal/gtest-internal.h:949:56: error: expected expression class = decltype(++::std::declval()), ^ ./include/gtest/internal/gtest-internal.h:950:36: error: no member named 'declval' in namespace 'std' class = decltype(*::std::declval()), ~~~~~~~^ ./include/gtest/internal/gtest-internal.h:950:44: error: 'Iterator' does not refer to a value class = decltype(*::std::declval()), ^ ./include/gtest/internal/gtest-internal.h:947:17: note: declared here class Iterator = decltype(::std::declval().begin()), ^ ./include/gtest/internal/gtest-internal.h:950:54: error: expected expression class = decltype(*::std::declval()), ^ PR: 231835 Submitted by: Piotr Kubaj (based on) Approved by: ports-secteam blanket Modified: branches/2018Q3/devel/googletest/Makefile Directory Properties: branches/2018Q3/ (props changed) Modified: branches/2018Q3/devel/googletest/Makefile ============================================================================== --- branches/2018Q3/devel/googletest/Makefile Mon Oct 1 00:13:16 2018 (r480987) +++ branches/2018Q3/devel/googletest/Makefile Mon Oct 1 00:17:59 2018 (r480988) @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= google -USES= autoreconf libtool +USES= autoreconf compiler:c++11-lib libtool WRKSRC_SUBDIR= ${PORTNAME} GNU_CONFIGURE= yes # fused-src python tests are only useful for bundling. There's no point in From owner-svn-ports-branches@freebsd.org Mon Oct 1 00:31:44 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD36810ADE61; Mon, 1 Oct 2018 00:31:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 70C9D7A1B3; Mon, 1 Oct 2018 00:31:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6B9AB199E4; Mon, 1 Oct 2018 00:31:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w910ViSM096173; Mon, 1 Oct 2018 00:31:44 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w910Vi2v096172; Mon, 1 Oct 2018 00:31:44 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810010031.w910Vi2v096172@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 1 Oct 2018 00:31:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r480990 - branches/2018Q3/devel/googletest X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q3/devel/googletest X-SVN-Commit-Revision: 480990 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 00:31:45 -0000 Author: jbeich Date: Mon Oct 1 00:31:43 2018 New Revision: 480990 URL: https://svnweb.freebsd.org/changeset/ports/480990 Log: MFH: r480989 devel/googletest: oops, builds fine with clang++ -stdlib=libstdc++ -std=gnu++03 FreeBSD 9.x defaulted to GCC 4.2 but could use Clang, so c++11-lang used Clang while c++11-lib use lang/gcc* bun nowadays the difference no longer exists. While testing previous change I forgot to account that newer Clang versions have switched to C++14 by default while libstdc++ 4.2 doesn't support C++11 or newer. PR: 231835 Approved by: ports-secteam blanket Modified: branches/2018Q3/devel/googletest/Makefile Directory Properties: branches/2018Q3/ (props changed) Modified: branches/2018Q3/devel/googletest/Makefile ============================================================================== --- branches/2018Q3/devel/googletest/Makefile Mon Oct 1 00:31:09 2018 (r480989) +++ branches/2018Q3/devel/googletest/Makefile Mon Oct 1 00:31:43 2018 (r480990) @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= google -USES= autoreconf compiler:c++11-lib libtool +USES= autoreconf compiler:c++11-lang libtool WRKSRC_SUBDIR= ${PORTNAME} GNU_CONFIGURE= yes # fused-src python tests are only useful for bundling. There's no point in From owner-svn-ports-branches@freebsd.org Mon Oct 1 00:37:29 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B76F910ADF5B; Mon, 1 Oct 2018 00:37:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 605707A41A; Mon, 1 Oct 2018 00:37:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 572E219A22; Mon, 1 Oct 2018 00:37:29 +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 w910bTKY097553; Mon, 1 Oct 2018 00:37:29 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w910bTeW097552; Mon, 1 Oct 2018 00:37:29 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810010037.w910bTeW097552@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 1 Oct 2018 00:37:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r480992 - branches/2018Q3/devel/googlemock X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q3/devel/googlemock X-SVN-Commit-Revision: 480992 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 00:37:29 -0000 Author: jbeich Date: Mon Oct 1 00:37:28 2018 New Revision: 480992 URL: https://svnweb.freebsd.org/changeset/ports/480992 Log: MFH: r480991 devel/googlemock: unbreak on GCC architectures In file included from /usr/local/include/gtest/gtest.h:59, from ./include/gmock/internal/gmock-internal-utils.h:47, from ./include/gmock/gmock-actions.h:47, from ./include/gmock/gmock.h:59, from src/gmock_main.cc:32: /usr/local/include/gtest/internal/gtest-internal.h:657: error: expected ',' or '...' before '>' token /usr/local/include/gtest/internal/gtest-internal.h:657: error: parse error in template argument list /usr/local/include/gtest/internal/gtest-internal.h:657: error: default argument missing for parameter 7 of 'static bool testing::internal::TypeParameterizedTest::Register(const char*, const testing::internal::CodeLocation&, const char*, const char*, int, const std::vector, std::allocator >, std::allocator, std::allocator > > >&, Types)' PR: 231835 Approved by: ports-secteam blanket Modified: branches/2018Q3/devel/googlemock/Makefile Directory Properties: branches/2018Q3/ (props changed) Modified: branches/2018Q3/devel/googlemock/Makefile ============================================================================== --- branches/2018Q3/devel/googlemock/Makefile Mon Oct 1 00:36:37 2018 (r480991) +++ branches/2018Q3/devel/googlemock/Makefile Mon Oct 1 00:37:28 2018 (r480992) @@ -21,7 +21,7 @@ USE_GITHUB= yes GH_ACCOUNT= google GH_PROJECT= googletest -USES= autoreconf libtool localbase python:run shebangfix +USES= autoreconf compiler:c++11-lang libtool localbase python:run shebangfix SHEBANG_FILES= scripts/gmock_doctor.py WRKSRC_SUBDIR= ${PORTNAME} GNU_CONFIGURE= yes From owner-svn-ports-branches@freebsd.org Mon Oct 1 01:59:36 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3359810AF4D9; Mon, 1 Oct 2018 01:59:36 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CCA577C1DB; Mon, 1 Oct 2018 01:59:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C224F1A6EA; Mon, 1 Oct 2018 01:59:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w911xZSt038494; Mon, 1 Oct 2018 01:59:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w911xZZh038491; Mon, 1 Oct 2018 01:59:35 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810010159.w911xZZh038491@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 1 Oct 2018 01:59:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r480995 - in branches/2018Q3/devel: googlemock googletest X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q3/devel: googlemock googletest X-SVN-Commit-Revision: 480995 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 01:59:36 -0000 Author: jbeich Date: Mon Oct 1 01:59:34 2018 New Revision: 480995 URL: https://svnweb.freebsd.org/changeset/ports/480995 Log: devel/google{test,mock}: back out r480988, r480990, r480991 The ports still build fine with GCC 4.2 as 2018Q3 lacks r478607. PR: 231835 Approved by: ports-secteam blanket Modified: branches/2018Q3/devel/googlemock/Makefile branches/2018Q3/devel/googletest/Makefile Directory Properties: branches/2018Q3/ (props changed) Modified: branches/2018Q3/devel/googlemock/Makefile ============================================================================== --- branches/2018Q3/devel/googlemock/Makefile Mon Oct 1 01:43:47 2018 (r480994) +++ branches/2018Q3/devel/googlemock/Makefile Mon Oct 1 01:59:34 2018 (r480995) @@ -21,7 +21,7 @@ USE_GITHUB= yes GH_ACCOUNT= google GH_PROJECT= googletest -USES= autoreconf compiler:c++11-lang libtool localbase python:run shebangfix +USES= autoreconf libtool localbase python:run shebangfix SHEBANG_FILES= scripts/gmock_doctor.py WRKSRC_SUBDIR= ${PORTNAME} GNU_CONFIGURE= yes Modified: branches/2018Q3/devel/googletest/Makefile ============================================================================== --- branches/2018Q3/devel/googletest/Makefile Mon Oct 1 01:43:47 2018 (r480994) +++ branches/2018Q3/devel/googletest/Makefile Mon Oct 1 01:59:34 2018 (r480995) @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= google -USES= autoreconf compiler:c++11-lang libtool +USES= autoreconf libtool WRKSRC_SUBDIR= ${PORTNAME} GNU_CONFIGURE= yes # fused-src python tests are only useful for bundling. There's no point in From owner-svn-ports-branches@freebsd.org Mon Oct 1 06:21:45 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8333310B69A2; Mon, 1 Oct 2018 06:21:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3AEDA8D077; Mon, 1 Oct 2018 06:21:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1D5F11D35A; Mon, 1 Oct 2018 06:21:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w916LiKh074351; Mon, 1 Oct 2018 06:21:44 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w916Li5Y074350; Mon, 1 Oct 2018 06:21:44 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201810010621.w916Li5Y074350@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 1 Oct 2018 06:21:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481002 - branches/2018Q4 X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: branches/2018Q4 X-SVN-Commit-Revision: 481002 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 06:21:45 -0000 Author: rene Date: Mon Oct 1 06:21:44 2018 New Revision: 481002 URL: https://svnweb.freebsd.org/changeset/ports/481002 Log: Branch 2018Q4 Added: branches/2018Q4/ - copied from r481001, head/ From owner-svn-ports-branches@freebsd.org Mon Oct 1 08:30:42 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D87510A436C; Mon, 1 Oct 2018 08:30:42 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2296F9469D; Mon, 1 Oct 2018 08:30:42 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1D9DD1E6D8; Mon, 1 Oct 2018 08:30:42 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w918UfQ3039165; Mon, 1 Oct 2018 08:30:41 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w918UfiO039164; Mon, 1 Oct 2018 08:30:41 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201810010830.w918UfiO039164@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 1 Oct 2018 08:30:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481011 - branches/2018Q4/textproc/ibus X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2018Q4/textproc/ibus X-SVN-Commit-Revision: 481011 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 08:30:42 -0000 Author: antoine Date: Mon Oct 1 08:30:41 2018 New Revision: 481011 URL: https://svnweb.freebsd.org/changeset/ports/481011 Log: MFH: r481010 ibus doesn't work with python3 Modified: branches/2018Q4/textproc/ibus/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/textproc/ibus/Makefile ============================================================================== --- branches/2018Q4/textproc/ibus/Makefile Mon Oct 1 08:24:56 2018 (r481010) +++ branches/2018Q4/textproc/ibus/Makefile Mon Oct 1 08:30:41 2018 (r481011) @@ -22,7 +22,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.83.0:devel ${LOCALBASE}/share/xml/iso-codes/iso_639.xml:misc/iso-codes \ setxkbmap:x11/setxkbmap -USES= compiler cpe gmake gnome libtool localbase pathfix pkgconfig python +USES= compiler cpe gmake gnome libtool localbase pathfix pkgconfig python:2.7 USE_GNOME= glib20 intltool librsvg2 pygobject3 USE_LDCONFIG= yes From owner-svn-ports-branches@freebsd.org Mon Oct 1 09:22:17 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5419E10A92D2; Mon, 1 Oct 2018 09:22:17 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 09B0896603; Mon, 1 Oct 2018 09:22:17 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 049471F057; Mon, 1 Oct 2018 09:22:17 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w919MGQU067556; Mon, 1 Oct 2018 09:22:16 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w919MGhS067554; Mon, 1 Oct 2018 09:22:16 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201810010922.w919MGhS067554@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 1 Oct 2018 09:22:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481019 - in branches/2018Q4/multimedia: gstreamer1 gstreamer1-plugins X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in branches/2018Q4/multimedia: gstreamer1 gstreamer1-plugins X-SVN-Commit-Revision: 481019 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 09:22:17 -0000 Author: antoine Date: Mon Oct 1 09:22:16 2018 New Revision: 481019 URL: https://svnweb.freebsd.org/changeset/ports/481019 Log: MFH: r481018 Add explicit USES=python Modified: branches/2018Q4/multimedia/gstreamer1-plugins/Makefile branches/2018Q4/multimedia/gstreamer1/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/multimedia/gstreamer1-plugins/Makefile ============================================================================== --- branches/2018Q4/multimedia/gstreamer1-plugins/Makefile Mon Oct 1 09:21:37 2018 (r481018) +++ branches/2018Q4/multimedia/gstreamer1-plugins/Makefile Mon Oct 1 09:22:16 2018 (r481019) @@ -40,7 +40,7 @@ UGLY_DISTNAME= gst-plugins-ugly-${UGLY_PORTVERSION} UGLY_DISTFILE= ${UGLY_DISTNAME}${EXTRACT_SUFX} DIST?= base -USES+= gettext gmake gnome libtool pathfix pkgconfig tar:xz +USES+= gettext gmake gnome libtool pathfix pkgconfig python tar:xz WANT_GSTREAMER= yes USE_GNOME+= glib20 introspection:build libxml2 GNU_CONFIGURE= yes Modified: branches/2018Q4/multimedia/gstreamer1/Makefile ============================================================================== --- branches/2018Q4/multimedia/gstreamer1/Makefile Mon Oct 1 09:21:37 2018 (r481018) +++ branches/2018Q4/multimedia/gstreamer1/Makefile Mon Oct 1 09:22:16 2018 (r481019) @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING PORTSCOUT= limitw:1,even CFLAGS+= -Wno-format -USES= bison gettext gmake gnome libtool pathfix pkgconfig tar:xz +USES= bison gettext gmake gnome libtool pathfix pkgconfig python tar:xz USE_GNOME= glib20 introspection:build GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-tests \ From owner-svn-ports-branches@freebsd.org Mon Oct 1 09:54:24 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 03E2510AC044; Mon, 1 Oct 2018 09:54:24 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from mail-it1-f177.google.com (mail-it1-f177.google.com [209.85.166.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9127E978BA; Mon, 1 Oct 2018 09:54:20 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: by mail-it1-f177.google.com with SMTP id h6-v6so5819338ith.0; Mon, 01 Oct 2018 02:54:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=GcgZ7pPP5YPyUtEpI7W/D/xe7+BakzWxbg/3Fmg+S+k=; b=Axc+OXMQHSDpZXO/TauS2Q3frFkWEByWNPs4h19ZCi4DqE3rVgm3VDmNiizZL3O3iC feExb9THuNPdVmDsfWVRceYjTqL/Mfnelc8cSDSMajgeXh8U4ctBhSOfg4pgprZ7TB/d HvEwRNYiT/TWMT7nvcrc/zJ6Vwtxu8L++zWvQMy9JmNBQXBOF6ZjrPRtJFPyNVmobn0+ aAO6e8jCo6QkOH9Th6PdaK3vFz1SzzfqEG6TSx3GXJZEMMlzvb54ZqeLyp1TjJATQxGF nG+GnuP5Rjquv6upscZi8M6tKKhJXnx+qkl5Yo+pkRlxjUE6w+KCfvIEUvl91dIDX22F ti3A== X-Gm-Message-State: ABuFfojUL/JJkjWydHANYH+lnwH8K5oK4ysJqKljJpg9hwiAGBFRqLUf pOWpRfRplMqINW2Gc8v7xoFCDUmsZEUxj5AIxL09Aw== X-Google-Smtp-Source: ACcGV62NOItOmNXsmz+twGMFUagOtx3KGgIxJ+QWJZ2vpHvBtKAAdDxoOA6TsjQwIDgjaWLMw98n6srXDTf3616C8KE= X-Received: by 2002:a24:bd41:: with SMTP id x62-v6mr8905997ite.152.1538387653579; Mon, 01 Oct 2018 02:54:13 -0700 (PDT) MIME-Version: 1.0 References: <201810010621.w916Li5Y074350@repo.freebsd.org> In-Reply-To: From: =?UTF-8?Q?Ren=C3=A9_Ladan?= Date: Mon, 1 Oct 2018 11:54:02 +0200 Message-ID: Subject: Re: svn commit: r481002 - branches/2018Q4 To: Jan Beich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.27 X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 09:54:24 -0000 Op ma 1 okt. 2018 om 11:24 schreef Jan Beich : > Rene Ladan writes: > > > Author: rene > > Date: Mon Oct 1 06:21:44 2018 > > New Revision: 481002 > > URL: https://svnweb.freebsd.org/changeset/ports/481002 > > > > Log: > > Branch 2018Q4 > > > > Added: > > branches/2018Q4/ > > - copied from r481001, head/ > > Can you also bump _UNSUPPORTED_SYSTEM_MESSAGE conditional in Mk/ > bsd.port.mk? > As of today FreeBSD 11.1 is no longer supported, so committers are free > to drop support for it. > Done in r481023 for head. thanks for the reminder. Ren=C3=A9 From owner-svn-ports-branches@freebsd.org Mon Oct 1 09:24:20 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89AFE10A96C7; Mon, 1 Oct 2018 09:24:20 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4510196756; Mon, 1 Oct 2018 09:24:20 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 21AB924BFB; Mon, 1 Oct 2018 09:24:20 +0000 (UTC) From: Jan Beich To: Rene Ladan Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: Re: svn commit: r481002 - branches/2018Q4 References: <201810010621.w916Li5Y074350@repo.freebsd.org> Date: Mon, 01 Oct 2018 11:24:16 +0200 In-Reply-To: <201810010621.w916Li5Y074350@repo.freebsd.org> (Rene Ladan's message of "Mon, 1 Oct 2018 06:21:44 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 09:24:20 -0000 Rene Ladan writes: > Author: rene > Date: Mon Oct 1 06:21:44 2018 > New Revision: 481002 > URL: https://svnweb.freebsd.org/changeset/ports/481002 > > Log: > Branch 2018Q4 > > Added: > branches/2018Q4/ > - copied from r481001, head/ Can you also bump _UNSUPPORTED_SYSTEM_MESSAGE conditional in Mk/bsd.port.mk? As of today FreeBSD 11.1 is no longer supported, so committers are free to drop support for it. From owner-svn-ports-branches@freebsd.org Mon Oct 1 11:32:49 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6451310B3637; Mon, 1 Oct 2018 11:32:49 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 10F167274B; Mon, 1 Oct 2018 11:32:49 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0BED1205F3; Mon, 1 Oct 2018 11:32:49 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w91BWms3044769; Mon, 1 Oct 2018 11:32:48 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w91BWmLw044768; Mon, 1 Oct 2018 11:32:48 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201810011132.w91BWmLw044768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 1 Oct 2018 11:32:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481026 - branches/2018Q4/Mk X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: branches/2018Q4/Mk X-SVN-Commit-Revision: 481026 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 11:32:49 -0000 Author: rene Date: Mon Oct 1 11:32:48 2018 New Revision: 481026 URL: https://svnweb.freebsd.org/changeset/ports/481026 Log: MFH: r481023 Drop support for FreeBSD 11.1 in bsd.port.mk, its support ended on 2018-09-30. Submitted by: jbeich Approved by: portmgr (implicit) Modified: branches/2018Q4/Mk/bsd.port.mk Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/Mk/bsd.port.mk ============================================================================== --- branches/2018Q4/Mk/bsd.port.mk Mon Oct 1 11:32:37 2018 (r481025) +++ branches/2018Q4/Mk/bsd.port.mk Mon Oct 1 11:32:48 2018 (r481026) @@ -1180,7 +1180,7 @@ OSVERSION!= ${AWK} '/^\#define[[:blank:]]__FreeBSD_ver .endif _EXPORTED_VARS+= OSVERSION -.if (${OPSYS} == FreeBSD && (${OSVERSION} < 1004000 || (${OSVERSION} >= 1100000 && ${OSVERSION} < 1101001))) || \ +.if (${OPSYS} == FreeBSD && (${OSVERSION} < 1004000 || (${OSVERSION} >= 1100000 && ${OSVERSION} < 1102000))) || \ (${OPSYS} == DragonFly && ${DFLYVERSION} < 400400) _UNSUPPORTED_SYSTEM_MESSAGE= Ports Collection support for your ${OPSYS} version has ended, and no ports\ are guaranteed to build on this system. Please upgrade to a supported release. From owner-svn-ports-branches@freebsd.org Mon Oct 1 17:23:42 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF72910A49C4; Mon, 1 Oct 2018 17:23:42 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 72EE4832F7; Mon, 1 Oct 2018 17:23:42 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6D2F923F99; Mon, 1 Oct 2018 17:23:42 +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 w91HNguK068653; Mon, 1 Oct 2018 17:23:42 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w91HNgKG068652; Mon, 1 Oct 2018 17:23:42 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810011723.w91HNgKG068652@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 1 Oct 2018 17:23:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481045 - in branches/2018Q4/multimedia/libvpx: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q4/multimedia/libvpx: . files X-SVN-Commit-Revision: 481045 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 17:23:43 -0000 Author: jbeich Date: Mon Oct 1 17:23:41 2018 New Revision: 481045 URL: https://svnweb.freebsd.org/changeset/ports/481045 Log: MFH: r481043 multimedia/libvpx: backport use-after-free fix https://bugs.chromium.org/p/chromium/issues/detail?id=842265 Inspired by: Mozilla Obtained from: upstream (Chromium 68, Firefox 62) Approved by: ports-secteam blanket Added: branches/2018Q4/multimedia/libvpx/files/patch-mozilla-bug1480092 - copied unchanged from r481043, head/multimedia/libvpx/files/patch-mozilla-bug1480092 Modified: branches/2018Q4/multimedia/libvpx/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/multimedia/libvpx/Makefile ============================================================================== --- branches/2018Q4/multimedia/libvpx/Makefile Mon Oct 1 17:22:02 2018 (r481044) +++ branches/2018Q4/multimedia/libvpx/Makefile Mon Oct 1 17:23:41 2018 (r481045) @@ -4,7 +4,7 @@ PORTNAME= libvpx DISTVERSIONPREFIX= v DISTVERSION= 1.7.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org Copied: branches/2018Q4/multimedia/libvpx/files/patch-mozilla-bug1480092 (from r481043, head/multimedia/libvpx/files/patch-mozilla-bug1480092) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q4/multimedia/libvpx/files/patch-mozilla-bug1480092 Mon Oct 1 17:23:41 2018 (r481045, copy of r481043, head/multimedia/libvpx/files/patch-mozilla-bug1480092) @@ -0,0 +1,13 @@ +https://chromium.googlesource.com/webm/libvpx/+/52add5896661%5E!/ + +--- vp8/common/postproc.c.orig 2018-01-24 22:25:44 UTC ++++ vp8/common/postproc.c +@@ -65,7 +65,7 @@ void vp8_deblock(VP8_COMMON *cm, YV12_BUFFER_CONFIG *s + double level = 6.0e-05 * q * q * q - .0067 * q * q + .306 * q + .0065; + int ppl = (int)(level + .5); + +- const MODE_INFO *mode_info_context = cm->show_frame_mi; ++ const MODE_INFO *mode_info_context = cm->mi; + int mbr, mbc; + + /* The pixel thresholds are adjusted according to if or not the macroblock From owner-svn-ports-branches@freebsd.org Mon Oct 1 18:42:21 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A10010A70BA; Mon, 1 Oct 2018 18:42:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C36EA86D3F; Mon, 1 Oct 2018 18:42:20 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BE35C24C8A; Mon, 1 Oct 2018 18:42:20 +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 w91IgKB5018732; Mon, 1 Oct 2018 18:42:20 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w91IgKTp018731; Mon, 1 Oct 2018 18:42:20 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810011842.w91IgKTp018731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 1 Oct 2018 18:42:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481050 - branches/2018Q4/emulators/rpcs3 X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q4/emulators/rpcs3 X-SVN-Commit-Revision: 481050 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 18:42:21 -0000 Author: jbeich Date: Mon Oct 1 18:42:20 2018 New Revision: 481050 URL: https://svnweb.freebsd.org/changeset/ports/481050 Log: MFH: r481049 emulators/rpcs3: unbreak with LLD by default /usr/bin/ld: error: cannot preempt symbol: alcOpenDevice >>> defined in /usr/local/lib/libopenal.so >>> referenced by OpenALThread.cpp >>> OpenALThread.cpp.o:(OpenALThread::OpenALThread()) in archive rpcs3/Emu/librpcs3_emu.a /usr/bin/ld: error: cannot preempt symbol: alcGetError >>> defined in /usr/local/lib/libopenal.so >>> referenced by OpenALThread.cpp >>> OpenALThread.cpp.o:(OpenALThread::OpenALThread()) in archive rpcs3/Emu/librpcs3_emu.a Reported by: pkg-fallout Approved by: ports-secteam blanket Modified: branches/2018Q4/emulators/rpcs3/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/emulators/rpcs3/Makefile ============================================================================== --- branches/2018Q4/emulators/rpcs3/Makefile Mon Oct 1 18:41:13 2018 (r481049) +++ branches/2018Q4/emulators/rpcs3/Makefile Mon Oct 1 18:42:20 2018 (r481050) @@ -43,6 +43,7 @@ USES= cmake:outsource compiler:c++17-lang iconv:wchar USE_GL= gl glew USE_QT= qmake_build buildtools_build core dbus gui network widgets qml USE_XORG= x11 +LLD_UNSAFE= yes # XXX ports/219089 CMAKE_ON= CMAKE_SKIP_RPATH USE_SYSTEM_FFMPEG USE_SYSTEM_LIBPNG CMAKE_OFF= USE_NATIVE_INSTRUCTIONS CXXFLAGS+= -Wno-macro-redefined # __STDC_*_MACROS sys/cdefs.h vs. llvm-config From owner-svn-ports-branches@freebsd.org Mon Oct 1 21:57:39 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C58D110ABAFE; Mon, 1 Oct 2018 21:57:38 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7B03D8EDAA; Mon, 1 Oct 2018 21:57:38 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 710FF26B7E; Mon, 1 Oct 2018 21:57:38 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w91LvcPA037268; Mon, 1 Oct 2018 21:57:38 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w91LvbUL037263; Mon, 1 Oct 2018 21:57:37 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201810012157.w91LvbUL037263@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Mon, 1 Oct 2018 21:57:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481074 - in branches/2018Q4/mail: thunderbird thunderbird-i18n X-SVN-Group: ports-branches X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: in branches/2018Q4/mail: thunderbird thunderbird-i18n X-SVN-Commit-Revision: 481074 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 21:57:39 -0000 Author: cmt Date: Mon Oct 1 21:57:37 2018 New Revision: 481074 URL: https://svnweb.freebsd.org/changeset/ports/481074 Log: MFH: r481073 mail/thunderbird: update to 60.2.1 (rc1) Release Notes: https://www.thunderbird.net/en-US/thunderbird/60.2.1/releasenotes/ (once ready) PR: 231868 Approved by: maintainer (jbeich, gecko) Security: c96d416a-eae7-4d5d-bc84-40deca9329fb Approved by: portmgr (blanket: web browsers and the like) Modified: branches/2018Q4/mail/thunderbird-i18n/Makefile branches/2018Q4/mail/thunderbird-i18n/distinfo branches/2018Q4/mail/thunderbird/Makefile branches/2018Q4/mail/thunderbird/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/mail/thunderbird-i18n/Makefile ============================================================================== --- branches/2018Q4/mail/thunderbird-i18n/Makefile Mon Oct 1 21:43:22 2018 (r481073) +++ branches/2018Q4/mail/thunderbird-i18n/Makefile Mon Oct 1 21:57:37 2018 (r481074) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 60.1.0 +PORTVERSION= 60.2.1 CATEGORIES= mail news net-im -MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi +MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-x86_64/xpi \ + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-x86_64/xpi PKGNAMEPREFIX= DISTFILES= ${THUNDERBIRD_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: branches/2018Q4/mail/thunderbird-i18n/distinfo ============================================================================== --- branches/2018Q4/mail/thunderbird-i18n/distinfo Mon Oct 1 21:43:22 2018 (r481073) +++ branches/2018Q4/mail/thunderbird-i18n/distinfo Mon Oct 1 21:57:37 2018 (r481074) @@ -1,117 +1,117 @@ -TIMESTAMP = 1536716545 -SHA256 (xpi/thunderbird-i18n-60.1.0/ar.xpi) = 50f627e14883a9ad7c83855840c619175cea63ef03b1237cead2729da6a86908 -SIZE (xpi/thunderbird-i18n-60.1.0/ar.xpi) = 627179 -SHA256 (xpi/thunderbird-i18n-60.1.0/ast.xpi) = db429264f08aaa73ff93a3033350236196f0bf78300ebdcf550123fe08185052 -SIZE (xpi/thunderbird-i18n-60.1.0/ast.xpi) = 560865 -SHA256 (xpi/thunderbird-i18n-60.1.0/be.xpi) = fbe19b49c3355c68d5ffdffc040897ebc5f7c86dfdcd66b7a6d10562b698af12 -SIZE (xpi/thunderbird-i18n-60.1.0/be.xpi) = 659077 -SHA256 (xpi/thunderbird-i18n-60.1.0/bg.xpi) = ed3666663dad3165a91f7589c954989c401edb4300834e5d30e75f27bdf4e521 -SIZE (xpi/thunderbird-i18n-60.1.0/bg.xpi) = 665511 -SHA256 (xpi/thunderbird-i18n-60.1.0/br.xpi) = 7f9e160b013eabf16fb048d2902bfe8bc0730a79d6e6a0e4dd3b61153639c6cd -SIZE (xpi/thunderbird-i18n-60.1.0/br.xpi) = 581591 -SHA256 (xpi/thunderbird-i18n-60.1.0/ca.xpi) = 20c7531d3f5345f144cdf70c291bd180b5875077c62b74e8eb16c03392d14128 -SIZE (xpi/thunderbird-i18n-60.1.0/ca.xpi) = 591968 -SHA256 (xpi/thunderbird-i18n-60.1.0/cs.xpi) = 30b8d5cbdfa4ac3b42bcf92fee0c25f8b331071aa0bce79e78beff3a06a261a0 -SIZE (xpi/thunderbird-i18n-60.1.0/cs.xpi) = 611199 -SHA256 (xpi/thunderbird-i18n-60.1.0/cy.xpi) = 7c2b04979df18c76bbf197c03747a8e710a5ea8a1bd1452b9dc4a25e87ea1848 -SIZE (xpi/thunderbird-i18n-60.1.0/cy.xpi) = 582232 -SHA256 (xpi/thunderbird-i18n-60.1.0/da.xpi) = b8a56bca09c619d9b985aacc4d76653512fd76239aa920d4c4d80307a6160f9b -SIZE (xpi/thunderbird-i18n-60.1.0/da.xpi) = 570805 -SHA256 (xpi/thunderbird-i18n-60.1.0/de.xpi) = 81ac640f672d7c4e1f7423449f179fce366f20173edef758ad9e9a07abab17e9 -SIZE (xpi/thunderbird-i18n-60.1.0/de.xpi) = 582573 -SHA256 (xpi/thunderbird-i18n-60.1.0/dsb.xpi) = 06eb9865ab1fc9d20f89b0fee2ddee84f0b92ce01e6d26e6ab1aa9eda9d12fe1 -SIZE (xpi/thunderbird-i18n-60.1.0/dsb.xpi) = 613757 -SHA256 (xpi/thunderbird-i18n-60.1.0/el.xpi) = ee5308531090601a655428a1e942953dd0e971cd47d4565e9293f4c2a6dbbf31 -SIZE (xpi/thunderbird-i18n-60.1.0/el.xpi) = 691053 -SHA256 (xpi/thunderbird-i18n-60.1.0/en-GB.xpi) = 160634a59704234d13f3de93c559c171d41bf31d2afbc8a5cd5c821f71f8cd10 -SIZE (xpi/thunderbird-i18n-60.1.0/en-GB.xpi) = 550354 -SHA256 (xpi/thunderbird-i18n-60.1.0/en-US.xpi) = 8110707b5f18d0fae39c4b72e1e3bc874e6e136483a0f5723f8f4626bbe3a6c4 -SIZE (xpi/thunderbird-i18n-60.1.0/en-US.xpi) = 547034 -SHA256 (xpi/thunderbird-i18n-60.1.0/es-AR.xpi) = fbc578bfa4d18983d95201f4866234c42b0ece0220b6df141f8d09fa309fcf73 -SIZE (xpi/thunderbird-i18n-60.1.0/es-AR.xpi) = 595046 -SHA256 (xpi/thunderbird-i18n-60.1.0/es-ES.xpi) = 39800e439ed7277bde9f79a500655dc4e97151f361dd21c98ae3208dc63a15e1 -SIZE (xpi/thunderbird-i18n-60.1.0/es-ES.xpi) = 492209 -SHA256 (xpi/thunderbird-i18n-60.1.0/et.xpi) = c78281795e9fb06b9af4b5f38bd38109fb6b114c372f52604c28a9eb8411a45f -SIZE (xpi/thunderbird-i18n-60.1.0/et.xpi) = 570866 -SHA256 (xpi/thunderbird-i18n-60.1.0/eu.xpi) = 0cb0dbb2b8a2d18176a29f6dc783e81786c2b162526b31cf06bbc4894bb2f7eb -SIZE (xpi/thunderbird-i18n-60.1.0/eu.xpi) = 577576 -SHA256 (xpi/thunderbird-i18n-60.1.0/fi.xpi) = fdb0664ec555ec607a3f84f2e4ea9a94ce923935565160d2b7f7b12d477bff5d -SIZE (xpi/thunderbird-i18n-60.1.0/fi.xpi) = 575752 -SHA256 (xpi/thunderbird-i18n-60.1.0/fr.xpi) = 534f79359c187e2fee9e903bc715f2372bd1c3bbbd610d12746b1c714e2cd2fc -SIZE (xpi/thunderbird-i18n-60.1.0/fr.xpi) = 608464 -SHA256 (xpi/thunderbird-i18n-60.1.0/fy-NL.xpi) = 35afd4518f08187f5706ba5b026836242dfa5a2fb0ae6d62c1d609ffe853c7ef -SIZE (xpi/thunderbird-i18n-60.1.0/fy-NL.xpi) = 590032 -SHA256 (xpi/thunderbird-i18n-60.1.0/ga-IE.xpi) = ebf0e4e2b487ea9246e8fe50764be4557a2138b05b1097bd262b8ab746c09111 -SIZE (xpi/thunderbird-i18n-60.1.0/ga-IE.xpi) = 603505 -SHA256 (xpi/thunderbird-i18n-60.1.0/gd.xpi) = 46dc016d37abee04aa7213095b5a341c1122460d419f03b2f5b20d817ba0dda2 -SIZE (xpi/thunderbird-i18n-60.1.0/gd.xpi) = 599260 -SHA256 (xpi/thunderbird-i18n-60.1.0/gl.xpi) = 83d0dc27fe7b3a15a505adcadfd2dd34e2c04019c5dc2d54105549576a7a3904 -SIZE (xpi/thunderbird-i18n-60.1.0/gl.xpi) = 576546 -SHA256 (xpi/thunderbird-i18n-60.1.0/he.xpi) = 05f0c9faeaec375b20fc33a061a4c863b70a757ef863d07287118ea91bf7b437 -SIZE (xpi/thunderbird-i18n-60.1.0/he.xpi) = 618364 -SHA256 (xpi/thunderbird-i18n-60.1.0/hr.xpi) = 6e6087be80a143ea6662266d2b00834b854e89f59ed9ee3bb955cbc047a2410b -SIZE (xpi/thunderbird-i18n-60.1.0/hr.xpi) = 583459 -SHA256 (xpi/thunderbird-i18n-60.1.0/hsb.xpi) = 47272a717b5760423ee8c0d4a2676c36edb505af679501cfede25bf389be19e7 -SIZE (xpi/thunderbird-i18n-60.1.0/hsb.xpi) = 611321 -SHA256 (xpi/thunderbird-i18n-60.1.0/hu.xpi) = 8bc5ae84f7d3029c46d5e65d5cdc5a03b0870cb64f9c85495af5b234daf96197 -SIZE (xpi/thunderbird-i18n-60.1.0/hu.xpi) = 615344 -SHA256 (xpi/thunderbird-i18n-60.1.0/hy-AM.xpi) = 9b805ce0eef763603059616e356741c50fe30eecdaaa2232843aa20c630e1cf0 -SIZE (xpi/thunderbird-i18n-60.1.0/hy-AM.xpi) = 649711 -SHA256 (xpi/thunderbird-i18n-60.1.0/id.xpi) = e32bd7c9ed59388fb5da1349b4617e98e32c4921f527b4bcc99a89edc12ea8c8 -SIZE (xpi/thunderbird-i18n-60.1.0/id.xpi) = 568859 -SHA256 (xpi/thunderbird-i18n-60.1.0/is.xpi) = 05b980d65a7b6dc1d10692ba060786c7e1e9ad9fe980cc6534a665b40516cd44 -SIZE (xpi/thunderbird-i18n-60.1.0/is.xpi) = 579046 -SHA256 (xpi/thunderbird-i18n-60.1.0/it.xpi) = 1975d923449e2a91dd27ed09a95a632b4bf33d238e889841a2a2d81fd4a76bf9 -SIZE (xpi/thunderbird-i18n-60.1.0/it.xpi) = 477498 -SHA256 (xpi/thunderbird-i18n-60.1.0/ja.xpi) = 319b15f75866d6046e99c4d71471ae6e1ce63ade0faa09cc5415acf7c230c76c -SIZE (xpi/thunderbird-i18n-60.1.0/ja.xpi) = 653342 -SHA256 (xpi/thunderbird-i18n-60.1.0/kab.xpi) = 65ce8f245dddc1d0ad0927427af77218b37f7fc0ccc8f0c6a45d01fca94bf796 -SIZE (xpi/thunderbird-i18n-60.1.0/kab.xpi) = 595237 -SHA256 (xpi/thunderbird-i18n-60.1.0/kk.xpi) = a806c4b5717b910e6f9a85223e4eff2f8ed7064b6e83625d091092f725036ff0 -SIZE (xpi/thunderbird-i18n-60.1.0/kk.xpi) = 670449 -SHA256 (xpi/thunderbird-i18n-60.1.0/ko.xpi) = 9b58a4396cc9dc3a6b3e80fd2239a07c1a6e80a1be014d81456e545797254f40 -SIZE (xpi/thunderbird-i18n-60.1.0/ko.xpi) = 619728 -SHA256 (xpi/thunderbird-i18n-60.1.0/lt.xpi) = 614c831937067b79bdf80b5056acbe70d6cc7c2d43eb9cac40738ad6444a0cfc -SIZE (xpi/thunderbird-i18n-60.1.0/lt.xpi) = 605440 -SHA256 (xpi/thunderbird-i18n-60.1.0/ms.xpi) = aff11e2e1c9698b6fdb5f638e9f4a9aca93124977fbf8464e335ae0f758bc423 -SIZE (xpi/thunderbird-i18n-60.1.0/ms.xpi) = 574306 -SHA256 (xpi/thunderbird-i18n-60.1.0/nb-NO.xpi) = 8916b2940494bc87ffff317de572e1a7620521d9dd5f77c8567b18e59aa8e030 -SIZE (xpi/thunderbird-i18n-60.1.0/nb-NO.xpi) = 578232 -SHA256 (xpi/thunderbird-i18n-60.1.0/nl.xpi) = 7a91e62c463399e3f3bfc5b38928838d113c589516833606ebbbbf0fd2bf181d -SIZE (xpi/thunderbird-i18n-60.1.0/nl.xpi) = 583912 -SHA256 (xpi/thunderbird-i18n-60.1.0/nn-NO.xpi) = b75b4282769fbcecdc217ad0e0e5ce4795b8a4b4c942226414f71353eb1191b0 -SIZE (xpi/thunderbird-i18n-60.1.0/nn-NO.xpi) = 577652 -SHA256 (xpi/thunderbird-i18n-60.1.0/pl.xpi) = 74e709108a966947dc461508f860442895d2b7cb50166189946b9cdbaecbde21 -SIZE (xpi/thunderbird-i18n-60.1.0/pl.xpi) = 480723 -SHA256 (xpi/thunderbird-i18n-60.1.0/pt-BR.xpi) = 2d52da60a1fd39aeee47560c7f96a2dec70abd90c2109f5d5c4b0d6b980a0e7a -SIZE (xpi/thunderbird-i18n-60.1.0/pt-BR.xpi) = 585016 -SHA256 (xpi/thunderbird-i18n-60.1.0/pt-PT.xpi) = 5fd7d874640325c4d7d07a37ce21a8ded45990f87d7045b33d7ca86e60d7d726 -SIZE (xpi/thunderbird-i18n-60.1.0/pt-PT.xpi) = 593184 -SHA256 (xpi/thunderbird-i18n-60.1.0/rm.xpi) = ff24116ef338ab157f71a5a80ddfb1b23d6198989b0259daf70b9f314297891f -SIZE (xpi/thunderbird-i18n-60.1.0/rm.xpi) = 578382 -SHA256 (xpi/thunderbird-i18n-60.1.0/ro.xpi) = e4ce3c4d447cd60f0b39ede94dbd63b77e60ba8394ec9d24892e4d8f7c8c2bc1 -SIZE (xpi/thunderbird-i18n-60.1.0/ro.xpi) = 584306 -SHA256 (xpi/thunderbird-i18n-60.1.0/ru.xpi) = 4b77434128c45967437dacf0dad6b24ff6da953f2b2d8d5dbf3cb03103e0d0b7 -SIZE (xpi/thunderbird-i18n-60.1.0/ru.xpi) = 694704 -SHA256 (xpi/thunderbird-i18n-60.1.0/si.xpi) = 6692f166e27d8a1a255bf02ec9a43df44bcfb322131313c7374ca9c086c8173f -SIZE (xpi/thunderbird-i18n-60.1.0/si.xpi) = 643790 -SHA256 (xpi/thunderbird-i18n-60.1.0/sk.xpi) = 88c99ca7ef08e39b1455dd0aaf0347bbcef75bd81ef71fd0adb06612e2ac287f -SIZE (xpi/thunderbird-i18n-60.1.0/sk.xpi) = 612214 -SHA256 (xpi/thunderbird-i18n-60.1.0/sl.xpi) = fcdecaf98be19c925b29a6e91ce5837b7ee91c1cfcf6e6d5def427cbd5fe69d3 -SIZE (xpi/thunderbird-i18n-60.1.0/sl.xpi) = 589945 -SHA256 (xpi/thunderbird-i18n-60.1.0/sq.xpi) = 0d3b2d18107aeb4d0e76c3d35ef904fb6f82e52f12210a7b1f00a4b1b677da71 -SIZE (xpi/thunderbird-i18n-60.1.0/sq.xpi) = 593095 -SHA256 (xpi/thunderbird-i18n-60.1.0/sr.xpi) = 4f89725e876a99a9446c0b1ba195bae8b964b8d315c6f8396840b89199d60d67 -SIZE (xpi/thunderbird-i18n-60.1.0/sr.xpi) = 637720 -SHA256 (xpi/thunderbird-i18n-60.1.0/sv-SE.xpi) = 1c2622d8c7b64e1288e14ffa0d667f83fa4a7656f25baa3d75010f608e754516 -SIZE (xpi/thunderbird-i18n-60.1.0/sv-SE.xpi) = 594076 -SHA256 (xpi/thunderbird-i18n-60.1.0/tr.xpi) = ee969e2e9d96954dba06ba1b4c8b1d30683dfbf6ad318364d200eceef18958b3 -SIZE (xpi/thunderbird-i18n-60.1.0/tr.xpi) = 598008 -SHA256 (xpi/thunderbird-i18n-60.1.0/uk.xpi) = 503e0f15e5b062fbb44fe73e7ce777c04f685b218c612f12a3f324100e19dc24 -SIZE (xpi/thunderbird-i18n-60.1.0/uk.xpi) = 684153 -SHA256 (xpi/thunderbird-i18n-60.1.0/vi.xpi) = c648008e0ab238268e30af5e7bfbb9ce11c848ecb93b95ac85861718d1577401 -SIZE (xpi/thunderbird-i18n-60.1.0/vi.xpi) = 638421 -SHA256 (xpi/thunderbird-i18n-60.1.0/zh-CN.xpi) = 2d43f63fc5f73b799255b819ee64c4f0a3801ec95845329dc8895d267c66d0bd -SIZE (xpi/thunderbird-i18n-60.1.0/zh-CN.xpi) = 622464 -SHA256 (xpi/thunderbird-i18n-60.1.0/zh-TW.xpi) = ff594850e9b565bd8cba2b46fd11c78be5e6db6e7e604137ccb2d85db63ebc16 -SIZE (xpi/thunderbird-i18n-60.1.0/zh-TW.xpi) = 626188 +TIMESTAMP = 1538416483 +SHA256 (xpi/thunderbird-i18n-60.2.1/ar.xpi) = 8fc9e5766d39180ec47e0310a70eed7ce1d8f2e4510195506386bf6a9e7a8425 +SIZE (xpi/thunderbird-i18n-60.2.1/ar.xpi) = 627179 +SHA256 (xpi/thunderbird-i18n-60.2.1/ast.xpi) = e191ec5cafb71b46a02f64f02cdbc6117471b11c14e9876e688b1b774c1bd0e8 +SIZE (xpi/thunderbird-i18n-60.2.1/ast.xpi) = 560865 +SHA256 (xpi/thunderbird-i18n-60.2.1/be.xpi) = fe9cb445c45925f31a7a230ffdcd4757eae7d8ec0b8784632ee51ca42d55b00c +SIZE (xpi/thunderbird-i18n-60.2.1/be.xpi) = 659077 +SHA256 (xpi/thunderbird-i18n-60.2.1/bg.xpi) = f4e26a005298576f7ad4e2fc157ae0a6a5d674fe98aac89e7f287f9b2b922c5b +SIZE (xpi/thunderbird-i18n-60.2.1/bg.xpi) = 665511 +SHA256 (xpi/thunderbird-i18n-60.2.1/br.xpi) = a7d7a11c8a7d162b291d8423e6c02a38708c6c1ed3cae65f7be4b1af9fae72d5 +SIZE (xpi/thunderbird-i18n-60.2.1/br.xpi) = 581591 +SHA256 (xpi/thunderbird-i18n-60.2.1/ca.xpi) = c8c6ced20c48a46953c23f5f84ec6f3827babcf634f045e5f29caf90427055e1 +SIZE (xpi/thunderbird-i18n-60.2.1/ca.xpi) = 591970 +SHA256 (xpi/thunderbird-i18n-60.2.1/cs.xpi) = beb3eb4296900acba8d4462235cf4dd735cfd02774bc6da6801d53b6baa1f7fb +SIZE (xpi/thunderbird-i18n-60.2.1/cs.xpi) = 611201 +SHA256 (xpi/thunderbird-i18n-60.2.1/cy.xpi) = d6b598f4911d19b13b12afb9f2c7def02a161603aea4a9c3d963a9b153505a08 +SIZE (xpi/thunderbird-i18n-60.2.1/cy.xpi) = 582232 +SHA256 (xpi/thunderbird-i18n-60.2.1/da.xpi) = bd5644ec10d31c708b2c339a7ee7bb67100f2db0a29e53750cf7238e47ad88c0 +SIZE (xpi/thunderbird-i18n-60.2.1/da.xpi) = 570805 +SHA256 (xpi/thunderbird-i18n-60.2.1/de.xpi) = 3508f712676fabea01ecdfe06ed5e1d3b1fbf24d0ee70e9f00a16f0ea65957cf +SIZE (xpi/thunderbird-i18n-60.2.1/de.xpi) = 582574 +SHA256 (xpi/thunderbird-i18n-60.2.1/dsb.xpi) = 40620bc3504d9b64017c1cef55f5544f5cc27afcc217dc42359ec5c934e4cb7c +SIZE (xpi/thunderbird-i18n-60.2.1/dsb.xpi) = 613758 +SHA256 (xpi/thunderbird-i18n-60.2.1/el.xpi) = adebeb4d331c1c32b9a9218f8ab0a600dd09357f32116014dcbc08853fc9d045 +SIZE (xpi/thunderbird-i18n-60.2.1/el.xpi) = 691053 +SHA256 (xpi/thunderbird-i18n-60.2.1/en-GB.xpi) = 5221448e152276d407c82bef9c6fe028c476baf5e145476bcf14fa15e546414f +SIZE (xpi/thunderbird-i18n-60.2.1/en-GB.xpi) = 550353 +SHA256 (xpi/thunderbird-i18n-60.2.1/en-US.xpi) = 72c7c8ac179e0c9c1e9b4df57b134f8dd5e1387b1d2a3cb6886b9ad04a0fd610 +SIZE (xpi/thunderbird-i18n-60.2.1/en-US.xpi) = 546992 +SHA256 (xpi/thunderbird-i18n-60.2.1/es-AR.xpi) = 836b394097826c88f59238533821d10daba709fdf717dc480b834909d4fcf295 +SIZE (xpi/thunderbird-i18n-60.2.1/es-AR.xpi) = 595047 +SHA256 (xpi/thunderbird-i18n-60.2.1/es-ES.xpi) = 4e22fc941edc6176cab0b422d84d065fcce7a93479e42777d8c562c33773dacc +SIZE (xpi/thunderbird-i18n-60.2.1/es-ES.xpi) = 492210 +SHA256 (xpi/thunderbird-i18n-60.2.1/et.xpi) = d054fadcd56f524e2c406bcaead90a70eeca77935f0acc2f85cdd0b7d451e89d +SIZE (xpi/thunderbird-i18n-60.2.1/et.xpi) = 570866 +SHA256 (xpi/thunderbird-i18n-60.2.1/eu.xpi) = 91cc98b50628bd912f1dd38ce5af079f650a2477e16bef8f6907d0c4f3250e41 +SIZE (xpi/thunderbird-i18n-60.2.1/eu.xpi) = 577578 +SHA256 (xpi/thunderbird-i18n-60.2.1/fi.xpi) = 7b4c93bdc2a93f10a1d3a356a4e66d3bb6c4ffa54dbb76fdb8ca231adcd7dad7 +SIZE (xpi/thunderbird-i18n-60.2.1/fi.xpi) = 575754 +SHA256 (xpi/thunderbird-i18n-60.2.1/fr.xpi) = 954b029cbef725fcf474c57155baadc1f90d8f0f3815da8bdfe7724bbf9e2e84 +SIZE (xpi/thunderbird-i18n-60.2.1/fr.xpi) = 608465 +SHA256 (xpi/thunderbird-i18n-60.2.1/fy-NL.xpi) = 8ebac71d6d4000d37ee52f486f7f84a8c2ccaead392b0c663806897fa1fc8732 +SIZE (xpi/thunderbird-i18n-60.2.1/fy-NL.xpi) = 590033 +SHA256 (xpi/thunderbird-i18n-60.2.1/ga-IE.xpi) = 4fa6eb4bd1809b3821772add11cdd53806c44a61d30fdac492597a3945db9b4b +SIZE (xpi/thunderbird-i18n-60.2.1/ga-IE.xpi) = 603505 +SHA256 (xpi/thunderbird-i18n-60.2.1/gd.xpi) = ca0010e3e7bc58f6cba9d6565ef4e39ae470450c186b073874665953a2269708 +SIZE (xpi/thunderbird-i18n-60.2.1/gd.xpi) = 599259 +SHA256 (xpi/thunderbird-i18n-60.2.1/gl.xpi) = 524383ca36d03a431104fe00763ad7d72147d737a1ce2ab1ef16d8aea2d4d938 +SIZE (xpi/thunderbird-i18n-60.2.1/gl.xpi) = 576546 +SHA256 (xpi/thunderbird-i18n-60.2.1/he.xpi) = d6821298aa10dfd67f8d82410b8458410ad3fee79c47d819a6767e8361e79ade +SIZE (xpi/thunderbird-i18n-60.2.1/he.xpi) = 618364 +SHA256 (xpi/thunderbird-i18n-60.2.1/hr.xpi) = 067e9a6f1c23772502682143764fefe1e0d235e34fe15f9b2fee9694157e447d +SIZE (xpi/thunderbird-i18n-60.2.1/hr.xpi) = 583459 +SHA256 (xpi/thunderbird-i18n-60.2.1/hsb.xpi) = ed3c2eacda2b62a0381e31ca25f4a9cc0023c64cc64dbacc646c0621bc4850bb +SIZE (xpi/thunderbird-i18n-60.2.1/hsb.xpi) = 611322 +SHA256 (xpi/thunderbird-i18n-60.2.1/hu.xpi) = ba481b37d00a48a503e02fb537de3fe5e4d81e48f27dc1b72153060f44647ad2 +SIZE (xpi/thunderbird-i18n-60.2.1/hu.xpi) = 615344 +SHA256 (xpi/thunderbird-i18n-60.2.1/hy-AM.xpi) = 9b70fe835c16837d24857570fa987b97f4a0e84b6de3ac0a65e405c3d8f67719 +SIZE (xpi/thunderbird-i18n-60.2.1/hy-AM.xpi) = 649712 +SHA256 (xpi/thunderbird-i18n-60.2.1/id.xpi) = 70f45e73c7d793ae903bc7a52f68c1173bee4977e1cba54d5546a6f7e7dfc95c +SIZE (xpi/thunderbird-i18n-60.2.1/id.xpi) = 568859 +SHA256 (xpi/thunderbird-i18n-60.2.1/is.xpi) = b132a8f9864f42044494e9777cba56bdfbdb977bd4abdbdaa91f45e58cb1a30f +SIZE (xpi/thunderbird-i18n-60.2.1/is.xpi) = 579045 +SHA256 (xpi/thunderbird-i18n-60.2.1/it.xpi) = 3cc9d3e60453b3a430f483575436d4502a3ae262dde5eff4a08e250871effb77 +SIZE (xpi/thunderbird-i18n-60.2.1/it.xpi) = 477499 +SHA256 (xpi/thunderbird-i18n-60.2.1/ja.xpi) = 1658177df483dfa39f103d22195ae50c771851706f9d320519f1e884599497ca +SIZE (xpi/thunderbird-i18n-60.2.1/ja.xpi) = 653343 +SHA256 (xpi/thunderbird-i18n-60.2.1/kab.xpi) = fb92d59b2c99c13c2df50b75938140729de1ec516b4ca4fa4a3d257272f21dc2 +SIZE (xpi/thunderbird-i18n-60.2.1/kab.xpi) = 595238 +SHA256 (xpi/thunderbird-i18n-60.2.1/kk.xpi) = 7449cdef23fdf998b6b0e389f78bdb9dfef448160a92e904092ad00f6bf7a847 +SIZE (xpi/thunderbird-i18n-60.2.1/kk.xpi) = 670449 +SHA256 (xpi/thunderbird-i18n-60.2.1/ko.xpi) = 1db5ceae1a232ab756eecd5f48d584822f8b62335fd7730261e72ddca397966f +SIZE (xpi/thunderbird-i18n-60.2.1/ko.xpi) = 619729 +SHA256 (xpi/thunderbird-i18n-60.2.1/lt.xpi) = 1c5e2af5fc0ee50b065808142110bb3a5a7dd45c5de1e85d716288e5fed7f505 +SIZE (xpi/thunderbird-i18n-60.2.1/lt.xpi) = 605439 +SHA256 (xpi/thunderbird-i18n-60.2.1/ms.xpi) = ede6001cc574df38baaed9e629de0b027b86f288a5f2c5f6eda56f15e9d0e3f1 +SIZE (xpi/thunderbird-i18n-60.2.1/ms.xpi) = 574305 +SHA256 (xpi/thunderbird-i18n-60.2.1/nb-NO.xpi) = 7ef7427b2d692be29848afdc80e7e34e1fa05264f191a30d74dab27f7c5929a5 +SIZE (xpi/thunderbird-i18n-60.2.1/nb-NO.xpi) = 578233 +SHA256 (xpi/thunderbird-i18n-60.2.1/nl.xpi) = 2da1db53f2e5dcdc73309d597035425505a9f60abea1b832c395b8134e675ea8 +SIZE (xpi/thunderbird-i18n-60.2.1/nl.xpi) = 583912 +SHA256 (xpi/thunderbird-i18n-60.2.1/nn-NO.xpi) = aaef0707cc018e0727405970bd91879e78736be93b3f3fad5c8bba334c52dc4f +SIZE (xpi/thunderbird-i18n-60.2.1/nn-NO.xpi) = 577653 +SHA256 (xpi/thunderbird-i18n-60.2.1/pl.xpi) = 5558731b1603e4117a52d8212c4ff7fb8684a0c7c0618e7f22250306f31fd238 +SIZE (xpi/thunderbird-i18n-60.2.1/pl.xpi) = 480723 +SHA256 (xpi/thunderbird-i18n-60.2.1/pt-BR.xpi) = 8c5412fd8d059c9102b7bca6f56c35aa7fad9df07a9347037adae557679f7ef3 +SIZE (xpi/thunderbird-i18n-60.2.1/pt-BR.xpi) = 585016 +SHA256 (xpi/thunderbird-i18n-60.2.1/pt-PT.xpi) = 0aaf11e251e9867b903cf4453d34a8c97297de52fdcbbadbec6aadcc4b4b725c +SIZE (xpi/thunderbird-i18n-60.2.1/pt-PT.xpi) = 593184 +SHA256 (xpi/thunderbird-i18n-60.2.1/rm.xpi) = ca60d96703f05e21e152e56b169d84838aefad35a52a648d5e7341a24a5c17db +SIZE (xpi/thunderbird-i18n-60.2.1/rm.xpi) = 578381 +SHA256 (xpi/thunderbird-i18n-60.2.1/ro.xpi) = 3b71daf9cb501ac5aa131dca434a0b2949e0b7775de94e8fa68892985eae3db8 +SIZE (xpi/thunderbird-i18n-60.2.1/ro.xpi) = 584307 +SHA256 (xpi/thunderbird-i18n-60.2.1/ru.xpi) = 62e91004a4b329016e0e88784e6246344634954b4fa54c560167fec5b35cadc0 +SIZE (xpi/thunderbird-i18n-60.2.1/ru.xpi) = 694704 +SHA256 (xpi/thunderbird-i18n-60.2.1/si.xpi) = cffeb1fdba9e460bfa549a4f018c996a91e8b523a4ba2f0663ef6a8f19aa2198 +SIZE (xpi/thunderbird-i18n-60.2.1/si.xpi) = 643790 +SHA256 (xpi/thunderbird-i18n-60.2.1/sk.xpi) = 47229bfe0c71ec4b83978f81e87b887240fb36619c1a089e7071ce8871d934b7 +SIZE (xpi/thunderbird-i18n-60.2.1/sk.xpi) = 612216 +SHA256 (xpi/thunderbird-i18n-60.2.1/sl.xpi) = 6211cb69be41630f33cbfe3099655b4be144d9aa343540d90ac7099cd391db58 +SIZE (xpi/thunderbird-i18n-60.2.1/sl.xpi) = 589946 +SHA256 (xpi/thunderbird-i18n-60.2.1/sq.xpi) = 6fda75506398c98daf0660747bd2a6745383274df59c443d23c47c280bf9aee6 +SIZE (xpi/thunderbird-i18n-60.2.1/sq.xpi) = 593094 +SHA256 (xpi/thunderbird-i18n-60.2.1/sr.xpi) = e559d8713df0d3ecf0c07db24e6e695519202bea7d7cb5fd73fecbe74ae111e4 +SIZE (xpi/thunderbird-i18n-60.2.1/sr.xpi) = 637720 +SHA256 (xpi/thunderbird-i18n-60.2.1/sv-SE.xpi) = 1dd842c0b10f118d7bff3982f092632e21c88c7cb3446f8362718b8b734285a8 +SIZE (xpi/thunderbird-i18n-60.2.1/sv-SE.xpi) = 594077 +SHA256 (xpi/thunderbird-i18n-60.2.1/tr.xpi) = 1f864d604c5226cea7bfc538595d5cefb155d92e050966aaaadb00c9dfa89b34 +SIZE (xpi/thunderbird-i18n-60.2.1/tr.xpi) = 598009 +SHA256 (xpi/thunderbird-i18n-60.2.1/uk.xpi) = b3cfcb2ad78038d7f5ba0715bd02f374217b3ae9f9ca736cc1535b0beb07a39e +SIZE (xpi/thunderbird-i18n-60.2.1/uk.xpi) = 684153 +SHA256 (xpi/thunderbird-i18n-60.2.1/vi.xpi) = 829cc45aca41d346f5da63c512caa61e84213a5f5ab80a2fb811b68d89c5fe4f +SIZE (xpi/thunderbird-i18n-60.2.1/vi.xpi) = 638421 +SHA256 (xpi/thunderbird-i18n-60.2.1/zh-CN.xpi) = 0715e2c15f317e122451fd6919f63f420aff55750a67fda182f28b70cca22d7f +SIZE (xpi/thunderbird-i18n-60.2.1/zh-CN.xpi) = 622464 +SHA256 (xpi/thunderbird-i18n-60.2.1/zh-TW.xpi) = a7ccac0fc160bddf335dbb201d0588c753894dc9ca52a27f3e553b68375913a2 +SIZE (xpi/thunderbird-i18n-60.2.1/zh-TW.xpi) = 626188 Modified: branches/2018Q4/mail/thunderbird/Makefile ============================================================================== --- branches/2018Q4/mail/thunderbird/Makefile Mon Oct 1 21:43:22 2018 (r481073) +++ branches/2018Q4/mail/thunderbird/Makefile Mon Oct 1 21:57:37 2018 (r481074) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 60.1.0 -PORTREVISION= 2 +DISTVERSION= 60.2.1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -35,8 +34,6 @@ USE_MOZILLA= -cairo -soundtouch USE_GL= gl USES= tar:xz - -WRKSRC= ${WRKDIR}/${PORTNAME}-60.0.1 MOZ_OPTIONS= --enable-application=comm/mail --enable-official-branding MOZ_MK_OPTIONS= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 Modified: branches/2018Q4/mail/thunderbird/distinfo ============================================================================== --- branches/2018Q4/mail/thunderbird/distinfo Mon Oct 1 21:43:22 2018 (r481073) +++ branches/2018Q4/mail/thunderbird/distinfo Mon Oct 1 21:57:37 2018 (r481074) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536716545 -SHA256 (thunderbird-60.1.0.source.tar.xz) = 4734f5381140d6f905591ac3698fde77fabf6c846e5f097944b25601ee188baf -SIZE (thunderbird-60.1.0.source.tar.xz) = 284897004 +TIMESTAMP = 1538415530 +SHA256 (thunderbird-60.2.1.source.tar.xz) = d313f25cd7ddc016bf8e4d4115f14b34a66621c0feabbc0dd72f9304cb93d7bf +SIZE (thunderbird-60.2.1.source.tar.xz) = 284570000 From owner-svn-ports-branches@freebsd.org Mon Oct 1 23:34:47 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 84CB610AD50C; Mon, 1 Oct 2018 23:34:47 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2EAE7716F6; Mon, 1 Oct 2018 23:34:47 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 29A2E27B89; Mon, 1 Oct 2018 23:34:47 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w91NYkri098347; Mon, 1 Oct 2018 23:34:46 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w91NYkUf098342; Mon, 1 Oct 2018 23:34:46 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810012334.w91NYkUf098342@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 1 Oct 2018 23:34:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481081 - branches/2018Q4/emulators/citra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q4/emulators/citra X-SVN-Commit-Revision: 481081 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 23:34:47 -0000 Author: jbeich Date: Mon Oct 1 23:34:46 2018 New Revision: 481081 URL: https://svnweb.freebsd.org/changeset/ports/481081 Log: MFH: r481079 emulators/citra: update to s20181001 Changes: https://github.com/citra-emu/citra/compare/7c97e8df6...fceec3494 Approved by: ports-secteam (swills, implicit for snapshots) Modified: branches/2018Q4/emulators/citra/Makefile branches/2018Q4/emulators/citra/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/emulators/citra/Makefile ============================================================================== --- branches/2018Q4/emulators/citra/Makefile Mon Oct 1 23:34:32 2018 (r481080) +++ branches/2018Q4/emulators/citra/Makefile Mon Oct 1 23:34:46 2018 (r481081) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20180927 +PORTVERSION= s20181001 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,10 +23,10 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= 7c97e8df6 +GH_TAGNAME= fceec3494 GH_TUPLE= citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ - MerryMage:dynarmic:r1-873-g68ca03e:dynarmic/externals/dynarmic \ + MerryMage:dynarmic:r1-992-g4e6848d1:dynarmic/externals/dynarmic \ arsenm:sanitizers-cmake:f09151b:sanitizers_cmake/externals/cubeb/cmake/sanitizers-cmake \ benhoyt:inih:r40:inih/externals/inih/inih \ catchorg:Catch2:v2.3.0:catch/externals/catch \ Modified: branches/2018Q4/emulators/citra/distinfo ============================================================================== --- branches/2018Q4/emulators/citra/distinfo Mon Oct 1 23:34:32 2018 (r481080) +++ branches/2018Q4/emulators/citra/distinfo Mon Oct 1 23:34:46 2018 (r481081) @@ -1,12 +1,12 @@ -TIMESTAMP = 1538057377 -SHA256 (citra-emu-citra-s20180927-7c97e8df6_GH0.tar.gz) = 95bac74454b21550f59a26b007568d7a99e1530126e05eb05d93dc3b5f908c6d -SIZE (citra-emu-citra-s20180927-7c97e8df6_GH0.tar.gz) = 4484531 +TIMESTAMP = 1538433163 +SHA256 (citra-emu-citra-s20181001-fceec3494_GH0.tar.gz) = e6c02be3d8772459b40dd44c464190f70d6592e9121b1e64cd13461da991c3c8 +SIZE (citra-emu-citra-s20181001-fceec3494_GH0.tar.gz) = 4486762 SHA256 (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = f3fc8c9d4991b05ca1e1c8f5907ecd3ffd9724a8dccf328087b4784cda5c7db3 SIZE (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = 1762942 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c SIZE (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = 59514 -SHA256 (MerryMage-dynarmic-r1-873-g68ca03e_GH0.tar.gz) = fba34129493232649aaca6930ebc5390690b848cf73cc7be4e1c59fe40b2093a -SIZE (MerryMage-dynarmic-r1-873-g68ca03e_GH0.tar.gz) = 1427270 +SHA256 (MerryMage-dynarmic-r1-992-g4e6848d1_GH0.tar.gz) = 1dd65997fce183976de08904c1097f3a4d2dfbdf59e69a492b1b8c4271973511 +SIZE (MerryMage-dynarmic-r1-992-g4e6848d1_GH0.tar.gz) = 1446282 SHA256 (arsenm-sanitizers-cmake-f09151b_GH0.tar.gz) = 40d826a6c98fdedf1097bdb96944b2905be507ed5d11e74480680d459fc22431 SIZE (arsenm-sanitizers-cmake-f09151b_GH0.tar.gz) = 6856 SHA256 (benhoyt-inih-r40_GH0.tar.gz) = 0a7d8600c523ccd2d01a5bec2ef3a6482ada49794e67cf694d2bec796cb2c340 From owner-svn-ports-branches@freebsd.org Mon Oct 1 23:45:51 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 272BC10ADA04; Mon, 1 Oct 2018 23:45:51 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C7F0771F09; Mon, 1 Oct 2018 23:45:50 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B9B7E27D25; Mon, 1 Oct 2018 23:45:50 +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 w91Njo09005146; Mon, 1 Oct 2018 23:45:50 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w91Njn9j005141; Mon, 1 Oct 2018 23:45:49 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810012345.w91Njn9j005141@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 1 Oct 2018 23:45:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481086 - in branches/2018Q4/www: firefox firefox-i18n X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q4/www: firefox firefox-i18n X-SVN-Commit-Revision: 481086 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 23:45:51 -0000 Author: jbeich Date: Mon Oct 1 23:45:49 2018 New Revision: 481086 URL: https://svnweb.freebsd.org/changeset/ports/481086 Log: MFH: r481083 www/firefox: update to 62.0.3 Changes: https://www.mozilla.org/firefox/62.0.3/releasenotes/ PR: 229168 Approved by: ports-secteam blanket Modified: branches/2018Q4/www/firefox-i18n/Makefile branches/2018Q4/www/firefox-i18n/distinfo branches/2018Q4/www/firefox/Makefile branches/2018Q4/www/firefox/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/www/firefox-i18n/Makefile ============================================================================== --- branches/2018Q4/www/firefox-i18n/Makefile Mon Oct 1 23:39:33 2018 (r481085) +++ branches/2018Q4/www/firefox-i18n/Makefile Mon Oct 1 23:45:49 2018 (r481086) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 62.0.2 +PORTVERSION= 62.0.3 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi Modified: branches/2018Q4/www/firefox-i18n/distinfo ============================================================================== --- branches/2018Q4/www/firefox-i18n/distinfo Mon Oct 1 23:39:33 2018 (r481085) +++ branches/2018Q4/www/firefox-i18n/distinfo Mon Oct 1 23:45:49 2018 (r481086) @@ -1,199 +1,199 @@ -TIMESTAMP = 1537461713 -SHA256 (xpi/firefox-i18n-62.0.2/ach.xpi) = 4711c07dd1ec081e0e447ddb93f77e3da764753db78ccc3c9a75f7424c18e910 -SIZE (xpi/firefox-i18n-62.0.2/ach.xpi) = 446319 -SHA256 (xpi/firefox-i18n-62.0.2/af.xpi) = 90ae70b4003266d323303fabbf82a5399dda7f7c9c860046abdd739448f04e7f -SIZE (xpi/firefox-i18n-62.0.2/af.xpi) = 432296 -SHA256 (xpi/firefox-i18n-62.0.2/an.xpi) = 1c3fe45e786cff4436d5303ccb914f9bb90a5abcb4bea91e8b6e46455be77dde -SIZE (xpi/firefox-i18n-62.0.2/an.xpi) = 467502 -SHA256 (xpi/firefox-i18n-62.0.2/ar.xpi) = 4c50080f0d328aabb2465b433120e47994b97037be0a64c5d5ddb807e3d02a7b -SIZE (xpi/firefox-i18n-62.0.2/ar.xpi) = 497988 -SHA256 (xpi/firefox-i18n-62.0.2/as.xpi) = 4e44780795592a9c4d4833a3a054de7ce59aaad662ac496c4a83ef3cbca77228 -SIZE (xpi/firefox-i18n-62.0.2/as.xpi) = 478314 -SHA256 (xpi/firefox-i18n-62.0.2/ast.xpi) = c6c225ae8af848e9502f2b6d8319b445a4c910491dd18da1888aa98b44b89f4c -SIZE (xpi/firefox-i18n-62.0.2/ast.xpi) = 455184 -SHA256 (xpi/firefox-i18n-62.0.2/az.xpi) = 4e573ea2cfcf9e7d084a0b688524c2a62b28d79a829b7845417a2331d820e059 -SIZE (xpi/firefox-i18n-62.0.2/az.xpi) = 477133 -SHA256 (xpi/firefox-i18n-62.0.2/be.xpi) = 04d33d8cf2a4686c8992c70bd840b686238dca7ca6e1ccb742f29edd88780dc0 -SIZE (xpi/firefox-i18n-62.0.2/be.xpi) = 534917 -SHA256 (xpi/firefox-i18n-62.0.2/bg.xpi) = f8de677d9dc83e4ce50d13b0f79256bae5c413e45a3c40d45ba4470429fe9a93 -SIZE (xpi/firefox-i18n-62.0.2/bg.xpi) = 524205 -SHA256 (xpi/firefox-i18n-62.0.2/bn-BD.xpi) = acb2d6dae625f668ce428ff3e176aec5c5d843ee56db23234591aa4f60f63c28 -SIZE (xpi/firefox-i18n-62.0.2/bn-BD.xpi) = 538602 -SHA256 (xpi/firefox-i18n-62.0.2/bn-IN.xpi) = d31af3ead225d5c757378db762d7251bda714a870b3fa5b0adffd5796f0bd5fb -SIZE (xpi/firefox-i18n-62.0.2/bn-IN.xpi) = 509954 -SHA256 (xpi/firefox-i18n-62.0.2/br.xpi) = abeac82510e7cbda96c3046b2034e8f476a01296db28abeec0b6aa670aff003a -SIZE (xpi/firefox-i18n-62.0.2/br.xpi) = 464404 -SHA256 (xpi/firefox-i18n-62.0.2/bs.xpi) = d1ebe8c1220a70e7836ccfe5eeba40a54e7381bde03c0f2f3d7a5ff9b0271c69 -SIZE (xpi/firefox-i18n-62.0.2/bs.xpi) = 466252 -SHA256 (xpi/firefox-i18n-62.0.2/ca.xpi) = 94060e4e5807a4c7199935c9a73593bf7bc1dc50b9934209c16344ba9296baf7 -SIZE (xpi/firefox-i18n-62.0.2/ca.xpi) = 470060 -SHA256 (xpi/firefox-i18n-62.0.2/cak.xpi) = 936ff8b6a85d47415f5ee1da0ccaa68ac5f5b1145d04927add91307467e5dc08 -SIZE (xpi/firefox-i18n-62.0.2/cak.xpi) = 488841 -SHA256 (xpi/firefox-i18n-62.0.2/cs.xpi) = 43ae44e602656fa17dbc06e857538116efd37a5f18ba4d5893689ff97ac44ecf -SIZE (xpi/firefox-i18n-62.0.2/cs.xpi) = 478357 -SHA256 (xpi/firefox-i18n-62.0.2/cy.xpi) = 40a19a7d55c85e3d08985963b4721a62f91e240709b6d830736ae40ef2487b14 -SIZE (xpi/firefox-i18n-62.0.2/cy.xpi) = 468861 -SHA256 (xpi/firefox-i18n-62.0.2/da.xpi) = 382409c0a75121c8ea5717407b12c333ae079911bc46fdb96096647eedbb0a5d -SIZE (xpi/firefox-i18n-62.0.2/da.xpi) = 467292 -SHA256 (xpi/firefox-i18n-62.0.2/de.xpi) = 438ead547a8c56519f0e1de64844905631dbf5e7fd2d4f2ca21ff903d5d6d747 -SIZE (xpi/firefox-i18n-62.0.2/de.xpi) = 475935 -SHA256 (xpi/firefox-i18n-62.0.2/dsb.xpi) = ff278d6aafc414d899c9aac7603b9d7d84fd5ba38c69a04e56b67908c8a3f721 -SIZE (xpi/firefox-i18n-62.0.2/dsb.xpi) = 488172 -SHA256 (xpi/firefox-i18n-62.0.2/el.xpi) = 39570e0f160250f65d19e89b287d8853a2ba45a39b50ccf718703cb024e05e93 -SIZE (xpi/firefox-i18n-62.0.2/el.xpi) = 546431 -SHA256 (xpi/firefox-i18n-62.0.2/en-CA.xpi) = 6387f532d9aaffe0b9aa8c83c6d6453ffeddca359b0777db31dd5305e0302d35 -SIZE (xpi/firefox-i18n-62.0.2/en-CA.xpi) = 439068 -SHA256 (xpi/firefox-i18n-62.0.2/en-GB.xpi) = fe9c9132a25fba32e669b8a6012fa3b5485b101ddbaf0d69ddc18ea155861cb7 -SIZE (xpi/firefox-i18n-62.0.2/en-GB.xpi) = 436175 -SHA256 (xpi/firefox-i18n-62.0.2/en-US.xpi) = a3d72821a3db842481c75cbec7f6b8fad6a0d2e9f2d3efac702e0f5d46ae912b -SIZE (xpi/firefox-i18n-62.0.2/en-US.xpi) = 417301 -SHA256 (xpi/firefox-i18n-62.0.2/en-ZA.xpi) = e98e234382f8ceb8957af5af2c6bec71920d3623fe9f777faa1da9a55774377e -SIZE (xpi/firefox-i18n-62.0.2/en-ZA.xpi) = 422865 -SHA256 (xpi/firefox-i18n-62.0.2/eo.xpi) = c2a9918c30380016cbf69c3ec0b26c7ceb1b609690318e1ab0d4d24fc798ef79 -SIZE (xpi/firefox-i18n-62.0.2/eo.xpi) = 466537 -SHA256 (xpi/firefox-i18n-62.0.2/es-AR.xpi) = e61ee662702304f5e0eec4023faa906666a200ca4b57754cf60f04940bb94083 -SIZE (xpi/firefox-i18n-62.0.2/es-AR.xpi) = 473516 -SHA256 (xpi/firefox-i18n-62.0.2/es-CL.xpi) = 8e37b4a469a6e733b76e21f70eee142304a645b5b8c83381f5828e81140784f5 -SIZE (xpi/firefox-i18n-62.0.2/es-CL.xpi) = 473984 -SHA256 (xpi/firefox-i18n-62.0.2/es-ES.xpi) = 9efd706e488c8ed32f7a56e18c0f8cef2ec569564d2f56029ab044ca9c901fab -SIZE (xpi/firefox-i18n-62.0.2/es-ES.xpi) = 414983 -SHA256 (xpi/firefox-i18n-62.0.2/es-MX.xpi) = db5d35cea2a4404b3f80983c4e6a592a8ee9016758480338dbc1fd47e03889b1 -SIZE (xpi/firefox-i18n-62.0.2/es-MX.xpi) = 477954 -SHA256 (xpi/firefox-i18n-62.0.2/et.xpi) = bb7142a9ed859f161fd71aa49fe2d605b3c52d82b41da7f61b6c76916ca458ed -SIZE (xpi/firefox-i18n-62.0.2/et.xpi) = 455378 -SHA256 (xpi/firefox-i18n-62.0.2/eu.xpi) = dba9a8a1311c047d554e7d14ea7605b620dbf47cc4ade30e5c0c2ba736a60284 -SIZE (xpi/firefox-i18n-62.0.2/eu.xpi) = 465901 -SHA256 (xpi/firefox-i18n-62.0.2/fa.xpi) = c2c17e3a845221332a874392bc2fd944aa2ae02f6cd1d813f374dca38c6ee9cb -SIZE (xpi/firefox-i18n-62.0.2/fa.xpi) = 514444 -SHA256 (xpi/firefox-i18n-62.0.2/ff.xpi) = a80a13e86398cdce445b3b4c5d9f3c879fb007d871e69dc9014b62774fac88cf -SIZE (xpi/firefox-i18n-62.0.2/ff.xpi) = 459043 -SHA256 (xpi/firefox-i18n-62.0.2/fi.xpi) = adf7aab051668d93bfe320929b8cd742e656b387bfd3d8d71e222f465beda9ac -SIZE (xpi/firefox-i18n-62.0.2/fi.xpi) = 458680 -SHA256 (xpi/firefox-i18n-62.0.2/fr.xpi) = 9f9e643180f05a5edce51ec5fc9d9f407b401447fe65aedc97f96fc68b161670 -SIZE (xpi/firefox-i18n-62.0.2/fr.xpi) = 482960 -SHA256 (xpi/firefox-i18n-62.0.2/fy-NL.xpi) = 942db9b3f36dcccce187c06c6d82bb3b1ff966ace8918dfe002b2aed79b79621 -SIZE (xpi/firefox-i18n-62.0.2/fy-NL.xpi) = 470424 -SHA256 (xpi/firefox-i18n-62.0.2/ga-IE.xpi) = 222f429d8f6cd9f90ff6a4c0913206b4c502fd70ac7ee92eb7308d89ebdd110d -SIZE (xpi/firefox-i18n-62.0.2/ga-IE.xpi) = 472261 -SHA256 (xpi/firefox-i18n-62.0.2/gd.xpi) = 5679b65600559ac41898bea465c65a2a18375ffc80ddf4dab7d2b71ca2333156 -SIZE (xpi/firefox-i18n-62.0.2/gd.xpi) = 473971 -SHA256 (xpi/firefox-i18n-62.0.2/gl.xpi) = a3b869538d0749ec394a03418b9e1719d74015870ce553a5558ee3725756103a -SIZE (xpi/firefox-i18n-62.0.2/gl.xpi) = 451821 -SHA256 (xpi/firefox-i18n-62.0.2/gn.xpi) = 67f8159a27d6ffce4794d846826ff9e2b3b82bdc69fe6edf5783dc55de63a7ba -SIZE (xpi/firefox-i18n-62.0.2/gn.xpi) = 483153 -SHA256 (xpi/firefox-i18n-62.0.2/gu-IN.xpi) = 36b19aa8e147bc3feb9477267fa884de7c3a48922068c00f2f4cc9c235e2b6f7 -SIZE (xpi/firefox-i18n-62.0.2/gu-IN.xpi) = 539984 -SHA256 (xpi/firefox-i18n-62.0.2/he.xpi) = abec492ba1e81a61cb7834389efab50169932be5fcbcc0dbbdf02dead6c2165f -SIZE (xpi/firefox-i18n-62.0.2/he.xpi) = 484819 -SHA256 (xpi/firefox-i18n-62.0.2/hi-IN.xpi) = dad4a7d7455ed5684c7d85733f183ec598f8f691b7d65a16b7ffcbf9e5602509 -SIZE (xpi/firefox-i18n-62.0.2/hi-IN.xpi) = 537125 -SHA256 (xpi/firefox-i18n-62.0.2/hr.xpi) = d8f4d9ea82179ad04d05a034d76c064d647cd01dc3dc45913b9e91404ec9422a -SIZE (xpi/firefox-i18n-62.0.2/hr.xpi) = 459607 -SHA256 (xpi/firefox-i18n-62.0.2/hsb.xpi) = 0cbb8ee411d3588d3de4b17a5a86455bf0deb5962089e16368c43e72496f9c41 -SIZE (xpi/firefox-i18n-62.0.2/hsb.xpi) = 488118 -SHA256 (xpi/firefox-i18n-62.0.2/hu.xpi) = dfd388253aa9df3d530be2d097d804b96aaff2949bb6ef1c8005356e85bd701f -SIZE (xpi/firefox-i18n-62.0.2/hu.xpi) = 487432 -SHA256 (xpi/firefox-i18n-62.0.2/hy-AM.xpi) = 013237f82549d4a6eb5207e6a29c16ae8ffc5cf9d0948edd15cd103e4d4f5e16 -SIZE (xpi/firefox-i18n-62.0.2/hy-AM.xpi) = 518007 -SHA256 (xpi/firefox-i18n-62.0.2/ia.xpi) = 66c6fbb433a027197f554eef77ec7ee4cc2286460145a39bf9104d821f16052a -SIZE (xpi/firefox-i18n-62.0.2/ia.xpi) = 461404 -SHA256 (xpi/firefox-i18n-62.0.2/id.xpi) = 57acf847cc5c1423d8b815bd46205fb0e50772e27c13fcdf550fe3b2fab07d3e -SIZE (xpi/firefox-i18n-62.0.2/id.xpi) = 458272 -SHA256 (xpi/firefox-i18n-62.0.2/is.xpi) = 05fabd7ce6a0105b99ade1b5f3774e5458c9fc3e8eb39338a0abe6fc5eae3b47 -SIZE (xpi/firefox-i18n-62.0.2/is.xpi) = 459612 -SHA256 (xpi/firefox-i18n-62.0.2/it.xpi) = 297fcb7ba33c6c3479d02524054b0e56b1c79a538f96b1fca48eb3447a7a05e0 -SIZE (xpi/firefox-i18n-62.0.2/it.xpi) = 347134 -SHA256 (xpi/firefox-i18n-62.0.2/ja.xpi) = f141dfe2b765ed070de1f3d49e936cbbc5bbb76e5a5b3ab93d1e83abd9d3f645 -SIZE (xpi/firefox-i18n-62.0.2/ja.xpi) = 504024 -SHA256 (xpi/firefox-i18n-62.0.2/ka.xpi) = 52b1d444a3f6e97f2ec3655ed6b9eddacd3d6571151bffcbca230fa0daa31949 -SIZE (xpi/firefox-i18n-62.0.2/ka.xpi) = 503706 -SHA256 (xpi/firefox-i18n-62.0.2/kab.xpi) = 3ef3046c99bc140808d70def988ab8829680c8aa8312bb25572fd746f414b49e -SIZE (xpi/firefox-i18n-62.0.2/kab.xpi) = 478240 -SHA256 (xpi/firefox-i18n-62.0.2/kk.xpi) = e19f94cecaa36d7719fca48fdb27ab0cbf8aea4a739cfe171e1cddadbff34859 -SIZE (xpi/firefox-i18n-62.0.2/kk.xpi) = 530652 -SHA256 (xpi/firefox-i18n-62.0.2/km.xpi) = 6fadaad12af7ce25e28a845bf06648f9af862300bb83bced40a72a4677c52bbc -SIZE (xpi/firefox-i18n-62.0.2/km.xpi) = 521446 -SHA256 (xpi/firefox-i18n-62.0.2/kn.xpi) = ce577dc1c862cb4ede32a6e8dd183911f5ea48fae20d349af36787c1b27b2de1 -SIZE (xpi/firefox-i18n-62.0.2/kn.xpi) = 528083 -SHA256 (xpi/firefox-i18n-62.0.2/ko.xpi) = 51d8e8730de175179cc224e818334cd9a81d11eb4803c94065ba2558b6ffa193 -SIZE (xpi/firefox-i18n-62.0.2/ko.xpi) = 498336 -SHA256 (xpi/firefox-i18n-62.0.2/lij.xpi) = ea36f6384c582ba4c067bdad2eb7535e7d0cc5d0d8ea2a5b48b6bb8e8c63c3f2 -SIZE (xpi/firefox-i18n-62.0.2/lij.xpi) = 463445 -SHA256 (xpi/firefox-i18n-62.0.2/lt.xpi) = fa599b0bf09fa4de9cc946a646d152190b6bb4fe70d2e53662d88e2b9f529710 -SIZE (xpi/firefox-i18n-62.0.2/lt.xpi) = 487646 -SHA256 (xpi/firefox-i18n-62.0.2/lv.xpi) = 3deb5ad3988e8faded7460ab642feb5b1d5015bc08caf282495361c0ba7270d1 -SIZE (xpi/firefox-i18n-62.0.2/lv.xpi) = 475696 -SHA256 (xpi/firefox-i18n-62.0.2/mai.xpi) = 01db89903d9edcf5a46e154930ab6d0fe019aa2f25f58f5e3e5beb03d5b25993 -SIZE (xpi/firefox-i18n-62.0.2/mai.xpi) = 494723 -SHA256 (xpi/firefox-i18n-62.0.2/mk.xpi) = 32c558879c92d9296645cd24f8ff9935a568a3dd60559d3e9eb75a33ca9914d0 -SIZE (xpi/firefox-i18n-62.0.2/mk.xpi) = 457527 -SHA256 (xpi/firefox-i18n-62.0.2/ml.xpi) = aa0efa1d1ff16829271656df77b2e1f69c0ec40b46ea3954aca5d709edb4af22 -SIZE (xpi/firefox-i18n-62.0.2/ml.xpi) = 538826 -SHA256 (xpi/firefox-i18n-62.0.2/mr.xpi) = 3dbd6481331f26ca691cb6c5cde0cd9afbede18622e1544e238502f4158c333c -SIZE (xpi/firefox-i18n-62.0.2/mr.xpi) = 530354 -SHA256 (xpi/firefox-i18n-62.0.2/ms.xpi) = f46329717c3b7ad161b9ff1fc6c8284950432f4620f9b26d6124eea55c701e00 -SIZE (xpi/firefox-i18n-62.0.2/ms.xpi) = 459911 -SHA256 (xpi/firefox-i18n-62.0.2/my.xpi) = c07bb1583e7d24fa9a47880819611e6cdfbb1ee29c30237ab82f94f367f8e164 -SIZE (xpi/firefox-i18n-62.0.2/my.xpi) = 507310 -SHA256 (xpi/firefox-i18n-62.0.2/nb-NO.xpi) = 2e148826d0e6a5fc19b76a0c9f16e7b447c20427deb184ec169e5b476d0d98f2 -SIZE (xpi/firefox-i18n-62.0.2/nb-NO.xpi) = 458925 -SHA256 (xpi/firefox-i18n-62.0.2/ne-NP.xpi) = e9601c5b2e1638b4e4c9c4685d3ca6246180505fffa588714515fc5116783a6c -SIZE (xpi/firefox-i18n-62.0.2/ne-NP.xpi) = 500513 -SHA256 (xpi/firefox-i18n-62.0.2/nl.xpi) = 5b93f182db9ad32e87f2e2a7a59bc5fb185b9952d52e8f200371948c6e3196f4 -SIZE (xpi/firefox-i18n-62.0.2/nl.xpi) = 459511 -SHA256 (xpi/firefox-i18n-62.0.2/nn-NO.xpi) = f4957834abd77078a1bce30243b46a19805bef898460a586e7422848a1c9973d -SIZE (xpi/firefox-i18n-62.0.2/nn-NO.xpi) = 457057 -SHA256 (xpi/firefox-i18n-62.0.2/oc.xpi) = b72c20f2c6fdf52b70b26781f544801256818b56d912c49b03fe3d99ec303e88 -SIZE (xpi/firefox-i18n-62.0.2/oc.xpi) = 475431 -SHA256 (xpi/firefox-i18n-62.0.2/or.xpi) = 2b9f98b48c1ce3affb0bbe0ce0ada8600d6b4fc503c53f4454dbe4a05f0b8469 -SIZE (xpi/firefox-i18n-62.0.2/or.xpi) = 485374 -SHA256 (xpi/firefox-i18n-62.0.2/pa-IN.xpi) = 80045fbd12a50ae4110f5c7ef9048994a5433f15231cb7196e30fefbcbf32915 -SIZE (xpi/firefox-i18n-62.0.2/pa-IN.xpi) = 496916 -SHA256 (xpi/firefox-i18n-62.0.2/pl.xpi) = a282423b2019681c2951195aa73cf81aae264b41884a94dfbe28c4c84b8914a7 -SIZE (xpi/firefox-i18n-62.0.2/pl.xpi) = 370890 -SHA256 (xpi/firefox-i18n-62.0.2/pt-BR.xpi) = 33447a9277f61c6a76367c6a1b9020e8e77d1acb7543661d9a52b3235e464427 -SIZE (xpi/firefox-i18n-62.0.2/pt-BR.xpi) = 460866 -SHA256 (xpi/firefox-i18n-62.0.2/pt-PT.xpi) = 597fc0e439309b940334bcdf6f6757c5fb087ec4c020cfe018a7d53bca2f1439 -SIZE (xpi/firefox-i18n-62.0.2/pt-PT.xpi) = 473526 -SHA256 (xpi/firefox-i18n-62.0.2/rm.xpi) = ccb9c81c911b701d429185248d8228e5d1640c3ad2470bc781b617f419d17613 -SIZE (xpi/firefox-i18n-62.0.2/rm.xpi) = 462470 -SHA256 (xpi/firefox-i18n-62.0.2/ro.xpi) = 31feeb6e6e4131ef6e4c308f018e36fa51d644a6b9ec3d59baeb5e2cb4f78e63 -SIZE (xpi/firefox-i18n-62.0.2/ro.xpi) = 463401 -SHA256 (xpi/firefox-i18n-62.0.2/ru.xpi) = 85ba1599f9f1ca568d0382ad54ecab73936ea6097353ec83d90d38b89272420b -SIZE (xpi/firefox-i18n-62.0.2/ru.xpi) = 539884 -SHA256 (xpi/firefox-i18n-62.0.2/si.xpi) = b6d864e4a43f8fdda9a130900429ae4a14e0e85ce816b723e6a5fe78560b57e2 -SIZE (xpi/firefox-i18n-62.0.2/si.xpi) = 487601 -SHA256 (xpi/firefox-i18n-62.0.2/sk.xpi) = cd7e8c362d010049d4337681b0b65802a1ec559a7d083b043b4eb2791c43c443 -SIZE (xpi/firefox-i18n-62.0.2/sk.xpi) = 488135 -SHA256 (xpi/firefox-i18n-62.0.2/sl.xpi) = 41bfbbb81a32703eb217b1cb9c33fdada439d8c9ff3dc5f2be2c9dfe1dea7454 -SIZE (xpi/firefox-i18n-62.0.2/sl.xpi) = 468414 -SHA256 (xpi/firefox-i18n-62.0.2/son.xpi) = 2b3ff5864dac7cc9e072507060f0ea7cab3594b9e759c665410d3016a10cd7c4 -SIZE (xpi/firefox-i18n-62.0.2/son.xpi) = 445941 -SHA256 (xpi/firefox-i18n-62.0.2/sq.xpi) = 62b8459f4fe9ae1a68c2cf108f269122296421d35f696f40fae8a73daa7c4c31 -SIZE (xpi/firefox-i18n-62.0.2/sq.xpi) = 475530 -SHA256 (xpi/firefox-i18n-62.0.2/sr.xpi) = 0e68d0f85a82dac2677f6127e777ed15bbddce2e019fcdf93120f86599907084 -SIZE (xpi/firefox-i18n-62.0.2/sr.xpi) = 498809 -SHA256 (xpi/firefox-i18n-62.0.2/sv-SE.xpi) = 0741fe8d9e8b58296e8ae93b12fcb3cb927d0861e937f77e83c812098b69a57f -SIZE (xpi/firefox-i18n-62.0.2/sv-SE.xpi) = 469508 -SHA256 (xpi/firefox-i18n-62.0.2/ta.xpi) = 416167777509d0f89997d818f7dac860635342f4df32fcac10cd2721840f3309 -SIZE (xpi/firefox-i18n-62.0.2/ta.xpi) = 526479 -SHA256 (xpi/firefox-i18n-62.0.2/te.xpi) = f3dc7b66d88ef952eaf3517ee1eeefd8750cb98bdf8b61508912565b4d5e37ad -SIZE (xpi/firefox-i18n-62.0.2/te.xpi) = 536779 -SHA256 (xpi/firefox-i18n-62.0.2/th.xpi) = 6901b515b224ce82e6a2bfcda29c147d73fb4a11ba0c891b9d4fa8ad72b10d9a -SIZE (xpi/firefox-i18n-62.0.2/th.xpi) = 507130 -SHA256 (xpi/firefox-i18n-62.0.2/tr.xpi) = 9f33c54c181ea4e7ba6df89aa807b5ebcb4dcd3f6da30710e854668d5e94c2e1 -SIZE (xpi/firefox-i18n-62.0.2/tr.xpi) = 477277 -SHA256 (xpi/firefox-i18n-62.0.2/uk.xpi) = 401bfeb1cd6b1fec916ae84573761c756af08f5c360a90f236696ba32c87f450 -SIZE (xpi/firefox-i18n-62.0.2/uk.xpi) = 532590 -SHA256 (xpi/firefox-i18n-62.0.2/ur.xpi) = 2b7b84e4907b61e56da88753ce8723470eec92012a623c69e9e45389cd87804b -SIZE (xpi/firefox-i18n-62.0.2/ur.xpi) = 512360 -SHA256 (xpi/firefox-i18n-62.0.2/uz.xpi) = ad60752a12cacec3c60d1cf9ded12fcdde0114b2eb71992ac270b9e64c5dd0ae -SIZE (xpi/firefox-i18n-62.0.2/uz.xpi) = 458001 -SHA256 (xpi/firefox-i18n-62.0.2/vi.xpi) = 0db36f39280ef9905964f71905f7ee63a9de1620888aadbce645d3eaf2d4a1bd -SIZE (xpi/firefox-i18n-62.0.2/vi.xpi) = 478327 -SHA256 (xpi/firefox-i18n-62.0.2/xh.xpi) = d080dac5f6b0fa76d28d9e6d9a76cebfb206c3e8f8d212b9c47a8a33c09bae91 -SIZE (xpi/firefox-i18n-62.0.2/xh.xpi) = 461198 -SHA256 (xpi/firefox-i18n-62.0.2/zh-CN.xpi) = bfff4dbdac9a0b8c11ed79e94c1d1ce87e3cb65daa9d8e9afbbdfd4d38346b50 -SIZE (xpi/firefox-i18n-62.0.2/zh-CN.xpi) = 491485 -SHA256 (xpi/firefox-i18n-62.0.2/zh-TW.xpi) = 5aef2cc2977af604c878c28447d66c9f62ef5804bc700869deb47bb4a8da54d4 -SIZE (xpi/firefox-i18n-62.0.2/zh-TW.xpi) = 494522 +TIMESTAMP = 1538418962 +SHA256 (xpi/firefox-i18n-62.0.3/ach.xpi) = 400f38c4232ee42185c8c247e97a273bff669d536ebf1d5eeb3ff05cc426ec42 +SIZE (xpi/firefox-i18n-62.0.3/ach.xpi) = 446325 +SHA256 (xpi/firefox-i18n-62.0.3/af.xpi) = 21a1e675b23ec836bcd5d8043033f3acbaf83ecb6025bde0d9c3e3e2ab50d850 +SIZE (xpi/firefox-i18n-62.0.3/af.xpi) = 432293 +SHA256 (xpi/firefox-i18n-62.0.3/an.xpi) = 50c266923cd3ea0f528ba3fd20c1839da6e72d2fb456f55ade69fa1d864a5067 +SIZE (xpi/firefox-i18n-62.0.3/an.xpi) = 467499 +SHA256 (xpi/firefox-i18n-62.0.3/ar.xpi) = eae6f999d4222d0a61105372421f80aa553c4ef1192e38947f79e219bd8c4fa0 +SIZE (xpi/firefox-i18n-62.0.3/ar.xpi) = 497996 +SHA256 (xpi/firefox-i18n-62.0.3/as.xpi) = 1d7ced2600866ac1212d7e87024cb8d147dcc878eb349f7b64629e21cd8177e3 +SIZE (xpi/firefox-i18n-62.0.3/as.xpi) = 478315 +SHA256 (xpi/firefox-i18n-62.0.3/ast.xpi) = 908b8926bcb3277fd6cd6593ba69c6dee22589e0ae835869bb0dfb08fe7e40cd +SIZE (xpi/firefox-i18n-62.0.3/ast.xpi) = 455191 +SHA256 (xpi/firefox-i18n-62.0.3/az.xpi) = c630dcff473fdca3061586e746934789b795db60b3cb427da4bdfc0ff225d669 +SIZE (xpi/firefox-i18n-62.0.3/az.xpi) = 477135 +SHA256 (xpi/firefox-i18n-62.0.3/be.xpi) = 1bdc2d51edd45768c8396a69baac89dce802e8cff875f499014e89f646892b2b +SIZE (xpi/firefox-i18n-62.0.3/be.xpi) = 534912 +SHA256 (xpi/firefox-i18n-62.0.3/bg.xpi) = 1c191e72b43195bd0b12cee03d3100b1f9c3b93d19304064e5f2b37a9171b21d +SIZE (xpi/firefox-i18n-62.0.3/bg.xpi) = 524199 +SHA256 (xpi/firefox-i18n-62.0.3/bn-BD.xpi) = 4e20199c9454c48feacb04f0297141536ee0601d8b61739ee220b051922398d2 +SIZE (xpi/firefox-i18n-62.0.3/bn-BD.xpi) = 538605 +SHA256 (xpi/firefox-i18n-62.0.3/bn-IN.xpi) = e4fa31c17d2f61cd99e647067c3b7103e6c511e44946a53acf4c7ed034e107d5 +SIZE (xpi/firefox-i18n-62.0.3/bn-IN.xpi) = 509953 +SHA256 (xpi/firefox-i18n-62.0.3/br.xpi) = 4c3ff64d4ca014c901d556ef15291c6d1742c977ec2ec998dd2e89a73169321c +SIZE (xpi/firefox-i18n-62.0.3/br.xpi) = 464406 +SHA256 (xpi/firefox-i18n-62.0.3/bs.xpi) = 08bfa75fd56e5e3a149492c4f8050208dbc8c32357d77d1ab974c37d91daa23b +SIZE (xpi/firefox-i18n-62.0.3/bs.xpi) = 466249 +SHA256 (xpi/firefox-i18n-62.0.3/ca.xpi) = 186754d5ff978c2cce7188656d02d94d9a661dfa4a8e54a65e351ca5ef11bc8d +SIZE (xpi/firefox-i18n-62.0.3/ca.xpi) = 470055 +SHA256 (xpi/firefox-i18n-62.0.3/cak.xpi) = ac8a47c2cb463a4ac61e6f89a212e6a7d994f18bf60badb837b2b3e27e429fc4 +SIZE (xpi/firefox-i18n-62.0.3/cak.xpi) = 488840 +SHA256 (xpi/firefox-i18n-62.0.3/cs.xpi) = e113db4fc11c6ac941b19d379172825c4753dfa73fb754838d8c8a77d252a7cd +SIZE (xpi/firefox-i18n-62.0.3/cs.xpi) = 478354 +SHA256 (xpi/firefox-i18n-62.0.3/cy.xpi) = 0b410833e27bc39759693f69c9a6ba12d639d8a97700969a4b6f7f248bdc158f +SIZE (xpi/firefox-i18n-62.0.3/cy.xpi) = 468857 +SHA256 (xpi/firefox-i18n-62.0.3/da.xpi) = 5b742928a7ce209d2e96d05e8c143010b1a1801127226d18ece5032a92bdd1b3 +SIZE (xpi/firefox-i18n-62.0.3/da.xpi) = 467290 +SHA256 (xpi/firefox-i18n-62.0.3/de.xpi) = f43137d3c59f2c154ac44a0a40af2fb2721ebf729001b74264cf0e2652bd9a58 +SIZE (xpi/firefox-i18n-62.0.3/de.xpi) = 475935 +SHA256 (xpi/firefox-i18n-62.0.3/dsb.xpi) = ac8784e9df9150a647cb17bdbce5c7201afa72accedc0f2727f3c8b87eb39b50 +SIZE (xpi/firefox-i18n-62.0.3/dsb.xpi) = 488173 +SHA256 (xpi/firefox-i18n-62.0.3/el.xpi) = 25ee30ae6cc67113186a022ee74d29133ef72e10cfe86d07562e5bba5d173369 +SIZE (xpi/firefox-i18n-62.0.3/el.xpi) = 546433 +SHA256 (xpi/firefox-i18n-62.0.3/en-CA.xpi) = 16b81c8e9728f262c8c06574c62c117fdb739fc1d733a2b0ac6c818fff444920 +SIZE (xpi/firefox-i18n-62.0.3/en-CA.xpi) = 439068 +SHA256 (xpi/firefox-i18n-62.0.3/en-GB.xpi) = 15139982829d699dec65295fbc899df030e2275512069939e008feadf3331fe3 +SIZE (xpi/firefox-i18n-62.0.3/en-GB.xpi) = 436177 +SHA256 (xpi/firefox-i18n-62.0.3/en-US.xpi) = 3e825c4cdca5eba4788d6fdff96b31629fdf62d3bdca15700f137a74b2dec867 +SIZE (xpi/firefox-i18n-62.0.3/en-US.xpi) = 417303 +SHA256 (xpi/firefox-i18n-62.0.3/en-ZA.xpi) = ffe1f20becbe7007255d122d9fffe2e9d924f424847ddeb5faf852c58f8ba469 +SIZE (xpi/firefox-i18n-62.0.3/en-ZA.xpi) = 422871 +SHA256 (xpi/firefox-i18n-62.0.3/eo.xpi) = 58e087b2c47f9dbf6c53c80335a5e47c23883bfdfaf7255fb8857891543a2c82 +SIZE (xpi/firefox-i18n-62.0.3/eo.xpi) = 466535 +SHA256 (xpi/firefox-i18n-62.0.3/es-AR.xpi) = b11ed055992d2a97e7dba3bf8712e03e585678253dee4e3615a29c5aefbb95f9 +SIZE (xpi/firefox-i18n-62.0.3/es-AR.xpi) = 473522 +SHA256 (xpi/firefox-i18n-62.0.3/es-CL.xpi) = c01336a56974bd8ec835b66d91162ced59eff0f642889c2e95b4c9b10e51b192 +SIZE (xpi/firefox-i18n-62.0.3/es-CL.xpi) = 473990 +SHA256 (xpi/firefox-i18n-62.0.3/es-ES.xpi) = 4c8019589e429f3277bd14395921ce24d7dec5ce13a8a887a556c5ee8cbda059 +SIZE (xpi/firefox-i18n-62.0.3/es-ES.xpi) = 414987 +SHA256 (xpi/firefox-i18n-62.0.3/es-MX.xpi) = 475209c0308f39b392db86b06f2baf16ae3c3a53fdeb298f772c42dccebf06da +SIZE (xpi/firefox-i18n-62.0.3/es-MX.xpi) = 477957 +SHA256 (xpi/firefox-i18n-62.0.3/et.xpi) = 4d06c7b3382422bdf3b0fc8160aeb8dc144a45eb1fb14576675096744c49c7d1 +SIZE (xpi/firefox-i18n-62.0.3/et.xpi) = 455377 +SHA256 (xpi/firefox-i18n-62.0.3/eu.xpi) = 0d80cb9ebead9a1755a106056d3c1c705951ec1b22b1fdd7cf0478fc03682586 +SIZE (xpi/firefox-i18n-62.0.3/eu.xpi) = 465903 +SHA256 (xpi/firefox-i18n-62.0.3/fa.xpi) = b2ff9fb8ecca109f866e4a741c9703e914b5bed34009eb81267478fb0d637ba9 +SIZE (xpi/firefox-i18n-62.0.3/fa.xpi) = 514442 +SHA256 (xpi/firefox-i18n-62.0.3/ff.xpi) = bcbef311228e644fa856ac43c21b1d1d8cbc865cf1d227060822474e740d6331 +SIZE (xpi/firefox-i18n-62.0.3/ff.xpi) = 459046 +SHA256 (xpi/firefox-i18n-62.0.3/fi.xpi) = 9bd8d44f508d8f68eefd44f03068b7c6ab0990ab0fdad5966689ce53d0cefc0c +SIZE (xpi/firefox-i18n-62.0.3/fi.xpi) = 458677 +SHA256 (xpi/firefox-i18n-62.0.3/fr.xpi) = 2c34b7cd7f552f82854712b2dd4ab7b7368889ce3a9f358b7c2313385e7ff516 +SIZE (xpi/firefox-i18n-62.0.3/fr.xpi) = 482968 +SHA256 (xpi/firefox-i18n-62.0.3/fy-NL.xpi) = 942dac3f2700e685368a0f82287c3133498503528340a67b4d2b49b40205d2e8 +SIZE (xpi/firefox-i18n-62.0.3/fy-NL.xpi) = 470422 +SHA256 (xpi/firefox-i18n-62.0.3/ga-IE.xpi) = 72d0ced7cf28305beb80865a377f2f644ee3356c4f2632e42854d293a090af45 +SIZE (xpi/firefox-i18n-62.0.3/ga-IE.xpi) = 472265 +SHA256 (xpi/firefox-i18n-62.0.3/gd.xpi) = e859014943bf06f2a9a8cf18a932880fcd4e54e49ba58e90525287c1a043217c +SIZE (xpi/firefox-i18n-62.0.3/gd.xpi) = 473970 +SHA256 (xpi/firefox-i18n-62.0.3/gl.xpi) = 584fc5c5a32420b80cb488507b2a2c4cd8e56675c29e4965501972acf9c12c45 +SIZE (xpi/firefox-i18n-62.0.3/gl.xpi) = 451816 +SHA256 (xpi/firefox-i18n-62.0.3/gn.xpi) = 1aae86b31d1fe25d1c229869716d5bafdf973b81d9fbf446a31d5d0985a00fd4 +SIZE (xpi/firefox-i18n-62.0.3/gn.xpi) = 483149 +SHA256 (xpi/firefox-i18n-62.0.3/gu-IN.xpi) = f5a06fbf5cdeb0729afce33d353071f1e0cb203818a607b4104fa210dc78e399 +SIZE (xpi/firefox-i18n-62.0.3/gu-IN.xpi) = 539984 +SHA256 (xpi/firefox-i18n-62.0.3/he.xpi) = 67d00e319d000da45a1184c3f1a96015c2c1ea857390bf7fb32258767ce3e191 +SIZE (xpi/firefox-i18n-62.0.3/he.xpi) = 484809 +SHA256 (xpi/firefox-i18n-62.0.3/hi-IN.xpi) = 8f61ffd90b004808a7f95d752789871f3fba6d075222bab0fb4302228cacbec1 +SIZE (xpi/firefox-i18n-62.0.3/hi-IN.xpi) = 537121 +SHA256 (xpi/firefox-i18n-62.0.3/hr.xpi) = 792b035430fe73c1427881713dd50c2d49779d76d0c9e698f7050278cf6cafb3 +SIZE (xpi/firefox-i18n-62.0.3/hr.xpi) = 459608 +SHA256 (xpi/firefox-i18n-62.0.3/hsb.xpi) = c88db766624580139c9119683178e4d658717b365012a04c748a003692983afd +SIZE (xpi/firefox-i18n-62.0.3/hsb.xpi) = 488120 +SHA256 (xpi/firefox-i18n-62.0.3/hu.xpi) = d1b3aaf057e428fd03e924009c8f58eaa1cd927f4deffd5d8666aef341ff54f9 +SIZE (xpi/firefox-i18n-62.0.3/hu.xpi) = 487428 +SHA256 (xpi/firefox-i18n-62.0.3/hy-AM.xpi) = ba765f45d683c8bc911a715373cba8fc50fb56064acb4354b761c700d619d9e9 +SIZE (xpi/firefox-i18n-62.0.3/hy-AM.xpi) = 518019 +SHA256 (xpi/firefox-i18n-62.0.3/ia.xpi) = d551a9b815e8532a6fb574957b452f2af907e12270860ee974f3f3e835e0b0d6 +SIZE (xpi/firefox-i18n-62.0.3/ia.xpi) = 461406 +SHA256 (xpi/firefox-i18n-62.0.3/id.xpi) = 8aef485ee83b5b11c5808013681cb09e419131b9386c0879ae02e1df8ea29f74 +SIZE (xpi/firefox-i18n-62.0.3/id.xpi) = 458276 +SHA256 (xpi/firefox-i18n-62.0.3/is.xpi) = f47fa1deb96dddd262d3557e67bb3f35fc87cef07d27ddb982adf4ae5012a6be +SIZE (xpi/firefox-i18n-62.0.3/is.xpi) = 459617 +SHA256 (xpi/firefox-i18n-62.0.3/it.xpi) = 875123a182895f2fbeee223c208a88b6a13ac5a4468697e906233406dc3dcca5 +SIZE (xpi/firefox-i18n-62.0.3/it.xpi) = 347139 +SHA256 (xpi/firefox-i18n-62.0.3/ja.xpi) = bd8d102bea1a57f55fe0f7e9a987b8a8e14b50a40f181c67e75050badd3764c2 +SIZE (xpi/firefox-i18n-62.0.3/ja.xpi) = 504031 +SHA256 (xpi/firefox-i18n-62.0.3/ka.xpi) = eae53cb8d6703c4722e7755bfbd0aed01c4c462949c292a1aab3ed7f50b68cea +SIZE (xpi/firefox-i18n-62.0.3/ka.xpi) = 503705 +SHA256 (xpi/firefox-i18n-62.0.3/kab.xpi) = 3f149a8c86f5c238d1649a5aaf0196b2e362217c334e138bc879e15557b8b30e +SIZE (xpi/firefox-i18n-62.0.3/kab.xpi) = 478240 +SHA256 (xpi/firefox-i18n-62.0.3/kk.xpi) = e0efeb01df8898f302ff15e7e750cca102f9de2141e800335be0f8faf9ee39ab +SIZE (xpi/firefox-i18n-62.0.3/kk.xpi) = 530654 +SHA256 (xpi/firefox-i18n-62.0.3/km.xpi) = 55258e74d455b6ebfc6f60c68e45404a04aacede76139a309fd0a6da0fdc2846 +SIZE (xpi/firefox-i18n-62.0.3/km.xpi) = 521445 +SHA256 (xpi/firefox-i18n-62.0.3/kn.xpi) = b39aa928053047e68315425e829861de903836b000be9c57120679c2b2d3a93e +SIZE (xpi/firefox-i18n-62.0.3/kn.xpi) = 528103 +SHA256 (xpi/firefox-i18n-62.0.3/ko.xpi) = bc46be021608035d318babb320ea9703b103c0d706f656704a0c0c2f3243ab3b +SIZE (xpi/firefox-i18n-62.0.3/ko.xpi) = 498342 +SHA256 (xpi/firefox-i18n-62.0.3/lij.xpi) = e0f48937d67a6b614e281f069eab3e76a9b559e4f34e9a192bc0d5ca932af105 +SIZE (xpi/firefox-i18n-62.0.3/lij.xpi) = 463444 +SHA256 (xpi/firefox-i18n-62.0.3/lt.xpi) = 2cae97570af6b6d48eba32308c1b24fcfa53c7387aede5ca2eda2be6901c6ff1 +SIZE (xpi/firefox-i18n-62.0.3/lt.xpi) = 487650 +SHA256 (xpi/firefox-i18n-62.0.3/lv.xpi) = 1805344100f6910b0eb33618ae043545d358861ebc419460fc19b62bf7331d44 +SIZE (xpi/firefox-i18n-62.0.3/lv.xpi) = 475710 +SHA256 (xpi/firefox-i18n-62.0.3/mai.xpi) = 08ec1feb9b95391e14a4c881ee7c3ebbbd983688db3621a8c8b470375f1708e2 +SIZE (xpi/firefox-i18n-62.0.3/mai.xpi) = 494726 +SHA256 (xpi/firefox-i18n-62.0.3/mk.xpi) = 6657805984c2704fb413ed80ff00679d513a88a3486b59abd2741453eaaa85fe +SIZE (xpi/firefox-i18n-62.0.3/mk.xpi) = 457532 +SHA256 (xpi/firefox-i18n-62.0.3/ml.xpi) = fc43a64a19b35c44029d032920fa7787313a7630a4e633682f76cf09c67d2f42 +SIZE (xpi/firefox-i18n-62.0.3/ml.xpi) = 538825 +SHA256 (xpi/firefox-i18n-62.0.3/mr.xpi) = 6a2cfe96c0947af68c0e1b3e7716a1900933a01dff411fc4d4599e6c928abd7f +SIZE (xpi/firefox-i18n-62.0.3/mr.xpi) = 530350 +SHA256 (xpi/firefox-i18n-62.0.3/ms.xpi) = a3c201b186a91b3bacab23ff67589bb72ec65da26f2c92123637e435addcd1dc +SIZE (xpi/firefox-i18n-62.0.3/ms.xpi) = 459916 +SHA256 (xpi/firefox-i18n-62.0.3/my.xpi) = be6f0cc7f50364457f77eded64f52ecb684363a4316ccfdf3f3181dce0451174 +SIZE (xpi/firefox-i18n-62.0.3/my.xpi) = 507314 +SHA256 (xpi/firefox-i18n-62.0.3/nb-NO.xpi) = fdd823e227fadde823ba62590bdfea48766851ae10965d481e13902a250b4e17 +SIZE (xpi/firefox-i18n-62.0.3/nb-NO.xpi) = 458931 +SHA256 (xpi/firefox-i18n-62.0.3/ne-NP.xpi) = e3b775e979d81569c5775a4acde13184f048c5eace77ee3bf69d253a30f2a666 +SIZE (xpi/firefox-i18n-62.0.3/ne-NP.xpi) = 500514 +SHA256 (xpi/firefox-i18n-62.0.3/nl.xpi) = f470c9ab403a9b76997bcbefd4685c8925f0e93dd6056c8230875eb7bb7be4b5 +SIZE (xpi/firefox-i18n-62.0.3/nl.xpi) = 459511 +SHA256 (xpi/firefox-i18n-62.0.3/nn-NO.xpi) = f64b40f808e32169e5feb62eae5b4163541318a5f628737d1b200b0be235d5f9 +SIZE (xpi/firefox-i18n-62.0.3/nn-NO.xpi) = 457054 +SHA256 (xpi/firefox-i18n-62.0.3/oc.xpi) = 258724772defde0228751e560daf9f184e7076b620e3883a1ffc9883b0889094 +SIZE (xpi/firefox-i18n-62.0.3/oc.xpi) = 475429 +SHA256 (xpi/firefox-i18n-62.0.3/or.xpi) = 7c92029df4a549eb355f8fab1c6756d66b3a4e7919fc65969304f62132b7a67b +SIZE (xpi/firefox-i18n-62.0.3/or.xpi) = 485373 +SHA256 (xpi/firefox-i18n-62.0.3/pa-IN.xpi) = 13bbd53588574db65b2f1d952a10ac2b99520a86064ddfcdbbb5517131161d35 +SIZE (xpi/firefox-i18n-62.0.3/pa-IN.xpi) = 496915 +SHA256 (xpi/firefox-i18n-62.0.3/pl.xpi) = 45971007aa565a0b13791b2aff2e929f90f61836886c4f7a52f8b340450684a3 +SIZE (xpi/firefox-i18n-62.0.3/pl.xpi) = 370890 +SHA256 (xpi/firefox-i18n-62.0.3/pt-BR.xpi) = 4a8c0bc97305d59a5e69996419c5b25280d7af1807abe91fc03ce6f7126decae +SIZE (xpi/firefox-i18n-62.0.3/pt-BR.xpi) = 460872 +SHA256 (xpi/firefox-i18n-62.0.3/pt-PT.xpi) = 7c61353d67b8206330f486ebdf1dfbe14a8e62b03e9b05acc11308c1df6e264d +SIZE (xpi/firefox-i18n-62.0.3/pt-PT.xpi) = 473528 +SHA256 (xpi/firefox-i18n-62.0.3/rm.xpi) = 0010c96776c3057a54d5228aba7aa9e0e0e0ec5632f8bd8b45d2c01d27aa5c7e +SIZE (xpi/firefox-i18n-62.0.3/rm.xpi) = 462474 +SHA256 (xpi/firefox-i18n-62.0.3/ro.xpi) = 2580e2271e35bb3aace53678920c4cfc77f34ef0633386f5362ef02638e63525 +SIZE (xpi/firefox-i18n-62.0.3/ro.xpi) = 463410 +SHA256 (xpi/firefox-i18n-62.0.3/ru.xpi) = 316b4341ea88192b3f95e339f5989449a80ad76768df0b822747c3282dbe4eff +SIZE (xpi/firefox-i18n-62.0.3/ru.xpi) = 539883 +SHA256 (xpi/firefox-i18n-62.0.3/si.xpi) = f8d03b7dd8ce0f3c54b0237059819c5bb952c3002ca2c2499a0fa18d39290c4b +SIZE (xpi/firefox-i18n-62.0.3/si.xpi) = 487601 +SHA256 (xpi/firefox-i18n-62.0.3/sk.xpi) = 36214d183f778718b8b7fd242e6609b497e176f98c2b1906825d6577b6131bab +SIZE (xpi/firefox-i18n-62.0.3/sk.xpi) = 488135 +SHA256 (xpi/firefox-i18n-62.0.3/sl.xpi) = 38cfe4e7b7bf7cebd1149cd1820b73fe4813a3ffae250ac6769b5c13c24d362f +SIZE (xpi/firefox-i18n-62.0.3/sl.xpi) = 468413 +SHA256 (xpi/firefox-i18n-62.0.3/son.xpi) = 4dcae84379316a74aaa0a7d3a84a2bde2717db8556420acdef53b2133a939aa1 +SIZE (xpi/firefox-i18n-62.0.3/son.xpi) = 445942 +SHA256 (xpi/firefox-i18n-62.0.3/sq.xpi) = c30b3145d7e3bfbcac77d5fc2796d430b6798ea0d1d7d74ef3add6278418d494 +SIZE (xpi/firefox-i18n-62.0.3/sq.xpi) = 475527 +SHA256 (xpi/firefox-i18n-62.0.3/sr.xpi) = 5c1f0129e2780ebbb51adce107af13010208bab304ef3fbecbd7bbdb3cbcfac9 +SIZE (xpi/firefox-i18n-62.0.3/sr.xpi) = 498808 +SHA256 (xpi/firefox-i18n-62.0.3/sv-SE.xpi) = 58c40837e33d6d4a5ee03dd7921af98708df7428cf2a87f3c2ec0ef12c2d9b9b +SIZE (xpi/firefox-i18n-62.0.3/sv-SE.xpi) = 469502 +SHA256 (xpi/firefox-i18n-62.0.3/ta.xpi) = 8cb4115d3e47e44e2b5105404e1031bc66bb99b74e86cb58844765076fbca03a +SIZE (xpi/firefox-i18n-62.0.3/ta.xpi) = 526475 +SHA256 (xpi/firefox-i18n-62.0.3/te.xpi) = a5888ed43e5213d93a377cb57bb020bf77c81997f9745ee50fde5b7229f602ed +SIZE (xpi/firefox-i18n-62.0.3/te.xpi) = 536779 +SHA256 (xpi/firefox-i18n-62.0.3/th.xpi) = 47b31b1f3edb13325b085d80cfe6a1a785b414b333db7a3308c4366269b83bed +SIZE (xpi/firefox-i18n-62.0.3/th.xpi) = 507128 +SHA256 (xpi/firefox-i18n-62.0.3/tr.xpi) = a48188dbec06ec384c6fc1c23ee2d609300691165e508955051bd4f024d99efd +SIZE (xpi/firefox-i18n-62.0.3/tr.xpi) = 477275 +SHA256 (xpi/firefox-i18n-62.0.3/uk.xpi) = 78585ec621bc4af581a79a0e447fcdb2c041379aa966b8ba51e7adb22f24c2aa +SIZE (xpi/firefox-i18n-62.0.3/uk.xpi) = 532597 +SHA256 (xpi/firefox-i18n-62.0.3/ur.xpi) = 6240d8aa0247820d339d2dcf896f31b3ac8ca6ec463ef4d494f58873f763bca3 +SIZE (xpi/firefox-i18n-62.0.3/ur.xpi) = 512366 +SHA256 (xpi/firefox-i18n-62.0.3/uz.xpi) = 5ad614f2ac62d8b8f3e7ca96f68dd90747749846218374ed37304e1ce8f0260b +SIZE (xpi/firefox-i18n-62.0.3/uz.xpi) = 457999 +SHA256 (xpi/firefox-i18n-62.0.3/vi.xpi) = 83f0d6986d1fe2ba2d4a70ca0240a5a42cbffc370461586304444dce3e7c0e0c +SIZE (xpi/firefox-i18n-62.0.3/vi.xpi) = 478333 +SHA256 (xpi/firefox-i18n-62.0.3/xh.xpi) = 116b96da3549f1204b2ff0f6dc40b0f780daf3bd444e48a943d60658b653c001 +SIZE (xpi/firefox-i18n-62.0.3/xh.xpi) = 461205 +SHA256 (xpi/firefox-i18n-62.0.3/zh-CN.xpi) = f5f326b10857073c63317d41ffbd2c2208f1104839df62d57bea4065c406e5ef +SIZE (xpi/firefox-i18n-62.0.3/zh-CN.xpi) = 491488 +SHA256 (xpi/firefox-i18n-62.0.3/zh-TW.xpi) = bad9eb5db7cb2c9b650fa8f2abee0129d43bb2f236c725482b793f6c854f90a9 +SIZE (xpi/firefox-i18n-62.0.3/zh-TW.xpi) = 494524 Modified: branches/2018Q4/www/firefox/Makefile ============================================================================== --- branches/2018Q4/www/firefox/Makefile Mon Oct 1 23:39:33 2018 (r481085) +++ branches/2018Q4/www/firefox/Makefile Mon Oct 1 23:45:49 2018 (r481086) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 62.0.2 -PORTREVISION= 1 +DISTVERSION= 62.0.3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: branches/2018Q4/www/firefox/distinfo ============================================================================== --- branches/2018Q4/www/firefox/distinfo Mon Oct 1 23:39:33 2018 (r481085) +++ branches/2018Q4/www/firefox/distinfo Mon Oct 1 23:45:49 2018 (r481086) @@ -1,3 +1,3 @@ -TIMESTAMP = 1537461713 -SHA256 (firefox-62.0.2.source.tar.xz) = 0474ce1bc9ed512e926d2d58d570e93f958f32bb7da755008e8fedca94f0e2ad -SIZE (firefox-62.0.2.source.tar.xz) = 258831964 +TIMESTAMP = 1538418962 +SHA256 (firefox-62.0.3.source.tar.xz) = c1d506eb7b1225e52398b2e4587085e77ff5f1fbf07728ba0fee60bbeae94636 +SIZE (firefox-62.0.3.source.tar.xz) = 259531444 From owner-svn-ports-branches@freebsd.org Mon Oct 1 23:55:03 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2DE3110ADC1D; Mon, 1 Oct 2018 23:55:03 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D14A2722DD; Mon, 1 Oct 2018 23:55:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C7E4827ECF; Mon, 1 Oct 2018 23:55:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w91Nt2pd011603; Mon, 1 Oct 2018 23:55:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w91Nt245011598; Mon, 1 Oct 2018 23:55:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810012355.w91Nt245011598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 1 Oct 2018 23:55:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481087 - in branches/2018Q4/www: firefox-esr firefox-esr-i18n firefox-esr/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q4/www: firefox-esr firefox-esr-i18n firefox-esr/files X-SVN-Commit-Revision: 481087 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Oct 2018 23:55:03 -0000 Author: jbeich Date: Mon Oct 1 23:55:01 2018 New Revision: 481087 URL: https://svnweb.freebsd.org/changeset/ports/481087 Log: MFH: r481084 www/firefox-esr: update to 60.2.2 Changes: https://www.mozilla.org/firefox/60.2.2/releasenotes/ Approved by: ports-secteam blanket Deleted: branches/2018Q4/www/firefox-esr/files/patch-bug1479540 Modified: branches/2018Q4/www/firefox-esr-i18n/Makefile branches/2018Q4/www/firefox-esr-i18n/distinfo branches/2018Q4/www/firefox-esr/Makefile branches/2018Q4/www/firefox-esr/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/www/firefox-esr-i18n/Makefile ============================================================================== --- branches/2018Q4/www/firefox-esr-i18n/Makefile Mon Oct 1 23:45:49 2018 (r481086) +++ branches/2018Q4/www/firefox-esr-i18n/Makefile Mon Oct 1 23:55:01 2018 (r481087) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 60.2.1 +PORTVERSION= 60.2.2 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build1/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build2/linux-i686/xpi PKGNAMEPREFIX= PKGNAMESUFFIX= -esr-i18n DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} Modified: branches/2018Q4/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2018Q4/www/firefox-esr-i18n/distinfo Mon Oct 1 23:45:49 2018 (r481086) +++ branches/2018Q4/www/firefox-esr-i18n/distinfo Mon Oct 1 23:55:01 2018 (r481087) @@ -1,197 +1,197 @@ -TIMESTAMP = 1537472891 -SHA256 (xpi/firefox-60.2.1/ach.xpi) = 62c8b1782b5ee2ca69934a35bbf3a21ad7eaf5339eebf3af99713a98d3207e79 -SIZE (xpi/firefox-60.2.1/ach.xpi) = 496841 -SHA256 (xpi/firefox-60.2.1/af.xpi) = 68d59fbe0713f37249c3543434a64e0d0a8324c4690486dfb7f8b10144466238 -SIZE (xpi/firefox-60.2.1/af.xpi) = 487309 -SHA256 (xpi/firefox-60.2.1/an.xpi) = 83de629045de0efa5b494dbb6410e5acd61a5c23281ea232324d436fd9934577 -SIZE (xpi/firefox-60.2.1/an.xpi) = 520500 -SHA256 (xpi/firefox-60.2.1/ar.xpi) = a0023012aa68d178e92f32685c0172f49068c491287b6bbeed01ef5f0a8380d8 -SIZE (xpi/firefox-60.2.1/ar.xpi) = 547822 -SHA256 (xpi/firefox-60.2.1/as.xpi) = 479548f7da8b31d95071658fe3004fe4aa76f44e54a4936fdc6d47bddac261d6 -SIZE (xpi/firefox-60.2.1/as.xpi) = 530721 -SHA256 (xpi/firefox-60.2.1/ast.xpi) = 31006e4501fb8570fcd2c72853bdd78e8dc24194e773996544c077f7d10b376a -SIZE (xpi/firefox-60.2.1/ast.xpi) = 508657 -SHA256 (xpi/firefox-60.2.1/az.xpi) = d6235d579a273a5316227086fdde1414d7e04336b3db2b7883e0d5576155643d -SIZE (xpi/firefox-60.2.1/az.xpi) = 524744 -SHA256 (xpi/firefox-60.2.1/be.xpi) = 6940c95b7f0cdbab1f2491f943ed9ea1c948d119e75f38a19437314cd4719539 -SIZE (xpi/firefox-60.2.1/be.xpi) = 580716 -SHA256 (xpi/firefox-60.2.1/bg.xpi) = 082792ab2e7ef5d48d1b1e817fe1ed34ca68416adcb69e53ace3dedd562612c9 -SIZE (xpi/firefox-60.2.1/bg.xpi) = 573850 -SHA256 (xpi/firefox-60.2.1/bn-BD.xpi) = f8878810c1b74c21a7766e05d33107e46d468bd79e978a1222a1dddcaef48092 -SIZE (xpi/firefox-60.2.1/bn-BD.xpi) = 590419 -SHA256 (xpi/firefox-60.2.1/bn-IN.xpi) = 583ac79cb4364731a8ae6f4ef850b4b24f6fc91f4b4787adea8b6b5a7fa952a2 -SIZE (xpi/firefox-60.2.1/bn-IN.xpi) = 570872 -SHA256 (xpi/firefox-60.2.1/br.xpi) = aaebcc0b704a1766777dbc8fba98366a834d1717971cd8081f6156aab580bd5e -SIZE (xpi/firefox-60.2.1/br.xpi) = 512028 -SHA256 (xpi/firefox-60.2.1/bs.xpi) = e3d7538c6ddf57fb7ea1838d63b593a6188f6bc2ebf32156309ef318ea439fe1 -SIZE (xpi/firefox-60.2.1/bs.xpi) = 514709 -SHA256 (xpi/firefox-60.2.1/ca.xpi) = 2174a8403aa963d48478cafed6904e63f29072f8019cf35430c5e5232674e877 -SIZE (xpi/firefox-60.2.1/ca.xpi) = 525260 -SHA256 (xpi/firefox-60.2.1/cak.xpi) = c8093fcdd9737e687771e4277952ee1b53eb087c6ed32353bed9c160c3594087 -SIZE (xpi/firefox-60.2.1/cak.xpi) = 536294 -SHA256 (xpi/firefox-60.2.1/cs.xpi) = edf11ca5c8643520cad7aff7173d564b1ffc4704813d70a0b4c46de11c31b9c4 -SIZE (xpi/firefox-60.2.1/cs.xpi) = 531795 -SHA256 (xpi/firefox-60.2.1/cy.xpi) = f1a81d57e00ddd924f9e95f075cf3ac4bb0ac58037da58fc88578d9518e6d3e3 -SIZE (xpi/firefox-60.2.1/cy.xpi) = 516631 -SHA256 (xpi/firefox-60.2.1/da.xpi) = 99792bde9f95dcd7cf97e9c42ba4d07f83a3b2a5964954cc4977cd5028b3a1ed -SIZE (xpi/firefox-60.2.1/da.xpi) = 510750 -SHA256 (xpi/firefox-60.2.1/de.xpi) = 1282fb5638e566dd9aeef3032f0748c5c8bbf637a3c66d149c2fb13c746a2e6f -SIZE (xpi/firefox-60.2.1/de.xpi) = 526520 -SHA256 (xpi/firefox-60.2.1/dsb.xpi) = 292c60b75300ef0f9a399efc0a1a279e0979a1ec3229fda1ec9e2a75eae37fbf -SIZE (xpi/firefox-60.2.1/dsb.xpi) = 539523 -SHA256 (xpi/firefox-60.2.1/el.xpi) = 2c8b2e010bec4701e1dbcc0c07257b78a72c3c5d612c0f6efe6ef161b5ad7ad9 -SIZE (xpi/firefox-60.2.1/el.xpi) = 593693 -SHA256 (xpi/firefox-60.2.1/en-GB.xpi) = 40fa971362464ff01ad835f57fe955e89d5233b0bf683cb842b1b5351a996ead -SIZE (xpi/firefox-60.2.1/en-GB.xpi) = 491693 -SHA256 (xpi/firefox-60.2.1/en-US.xpi) = 054b05484bcd7cd5911982fa1695540a492772087424cb2f0ea0186c0898c341 -SIZE (xpi/firefox-60.2.1/en-US.xpi) = 473181 -SHA256 (xpi/firefox-60.2.1/en-ZA.xpi) = 0bada9507aceb33c3df1390ba2011fd04c4cd2da8a015f4141f9e9a530173171 -SIZE (xpi/firefox-60.2.1/en-ZA.xpi) = 474678 -SHA256 (xpi/firefox-60.2.1/eo.xpi) = 1addb52b6f4853a4549693fae7662268251fb155bce69e300a8edf61aade5c30 -SIZE (xpi/firefox-60.2.1/eo.xpi) = 511260 -SHA256 (xpi/firefox-60.2.1/es-AR.xpi) = 10a848dc8a7e3baf0f7892cc7d093ad88769338654bd66adfec4006eb3d7e00c -SIZE (xpi/firefox-60.2.1/es-AR.xpi) = 524652 -SHA256 (xpi/firefox-60.2.1/es-CL.xpi) = ab53a9c1be69e888cf3df0dd6d75669e9d31618f9ad5e2de023feac4aa31121b -SIZE (xpi/firefox-60.2.1/es-CL.xpi) = 527326 -SHA256 (xpi/firefox-60.2.1/es-ES.xpi) = 68eb547f943322c4a33abf4dfa9c6b3cba456a8e904a976863e45f291685fb38 -SIZE (xpi/firefox-60.2.1/es-ES.xpi) = 459964 -SHA256 (xpi/firefox-60.2.1/es-MX.xpi) = cb3533089130f2a1ec999973f0e109b7ef8b7812c394df2c0a05b68d7aca413d -SIZE (xpi/firefox-60.2.1/es-MX.xpi) = 528661 -SHA256 (xpi/firefox-60.2.1/et.xpi) = 3344a1edec3a4d41a2306a71afd89186031b6f481cf9f1cd55832cde77289ad8 -SIZE (xpi/firefox-60.2.1/et.xpi) = 504970 -SHA256 (xpi/firefox-60.2.1/eu.xpi) = 76702aff7095acd400ecf2f999c28a1117c22594196e81a100c8664a138a158c -SIZE (xpi/firefox-60.2.1/eu.xpi) = 511713 -SHA256 (xpi/firefox-60.2.1/fa.xpi) = a51d49fea8a2455aa6f3469b58310afe8e3d9516cb9ef58efd64d44ea2d13023 -SIZE (xpi/firefox-60.2.1/fa.xpi) = 566263 -SHA256 (xpi/firefox-60.2.1/ff.xpi) = 9a631208340a64801a76d2864243973bfe23095354690d4c89fbb9d36778f1ef -SIZE (xpi/firefox-60.2.1/ff.xpi) = 512203 -SHA256 (xpi/firefox-60.2.1/fi.xpi) = ff891e842de52192e0909fd61882d694fb5c4ac99477793d87c66e04c4ec4fba -SIZE (xpi/firefox-60.2.1/fi.xpi) = 506180 -SHA256 (xpi/firefox-60.2.1/fr.xpi) = 614b84d51a0380b63ebaa6e1ae6c0721c0c46978d2e982bce5e9c0d6f72c11dc -SIZE (xpi/firefox-60.2.1/fr.xpi) = 536070 -SHA256 (xpi/firefox-60.2.1/fy-NL.xpi) = 30706fc08f49b6aaed855b24fbb9b391efbd8594a45cc9ac110ac62e25cf5a6b -SIZE (xpi/firefox-60.2.1/fy-NL.xpi) = 524520 -SHA256 (xpi/firefox-60.2.1/ga-IE.xpi) = 9827416be6ced88a24c50d10c05ddda4f46a9aa7b799669882b53208329406b2 -SIZE (xpi/firefox-60.2.1/ga-IE.xpi) = 526986 -SHA256 (xpi/firefox-60.2.1/gd.xpi) = ffd734f4a561aeeb60c85a6e6c72a4f34baf1a31bf26b9d8151cf0fe7a3000b8 -SIZE (xpi/firefox-60.2.1/gd.xpi) = 520866 -SHA256 (xpi/firefox-60.2.1/gl.xpi) = b3f3a601447d07858deaf7cb6625d073653a325b801c4a7ed83b5506df9dca6f -SIZE (xpi/firefox-60.2.1/gl.xpi) = 497372 -SHA256 (xpi/firefox-60.2.1/gn.xpi) = 63db129b07b6b760a1342e585443a58dda1c07f8c8eff460a2fce5f6d796e7db -SIZE (xpi/firefox-60.2.1/gn.xpi) = 533218 -SHA256 (xpi/firefox-60.2.1/gu-IN.xpi) = b131aa3b338f322bd82685b7009957b18c345f597dde9c9a2cee49a89474200b -SIZE (xpi/firefox-60.2.1/gu-IN.xpi) = 590264 -SHA256 (xpi/firefox-60.2.1/he.xpi) = b6b9db6f74c2937ece9085e7eef204b2a4547a840b4314561e7454310782cd92 -SIZE (xpi/firefox-60.2.1/he.xpi) = 535983 -SHA256 (xpi/firefox-60.2.1/hi-IN.xpi) = 2355199382a9cf46ef592d6bfcee2636c2a6625a660fcb7a18d8af5589dadeaf -SIZE (xpi/firefox-60.2.1/hi-IN.xpi) = 590854 -SHA256 (xpi/firefox-60.2.1/hr.xpi) = 37883a672d20dca64f043addff2d5216b8b57a1926df30f72512ce09acf66c9d -SIZE (xpi/firefox-60.2.1/hr.xpi) = 515957 -SHA256 (xpi/firefox-60.2.1/hsb.xpi) = 590afe5c8df7efc46923fe4450c04fd4103f55732ff0bf4823375da16df20185 -SIZE (xpi/firefox-60.2.1/hsb.xpi) = 537068 -SHA256 (xpi/firefox-60.2.1/hu.xpi) = 9fd0d7208fa8fd8f3e34c0d241841afcae6fd78cb6d559bf33b02b46d3478124 -SIZE (xpi/firefox-60.2.1/hu.xpi) = 538416 -SHA256 (xpi/firefox-60.2.1/hy-AM.xpi) = 36f05e2edbef97fcbe4fcf6bf40653517a81ec4da8ddd09e892f90b1edae96ca -SIZE (xpi/firefox-60.2.1/hy-AM.xpi) = 569422 -SHA256 (xpi/firefox-60.2.1/ia.xpi) = 5d643668a4e57a03a7bc29b8bab1af74e698174e571cb3f16a16f64e9b9af70d -SIZE (xpi/firefox-60.2.1/ia.xpi) = 510729 -SHA256 (xpi/firefox-60.2.1/id.xpi) = c0b44eea6099b3b60decb6e363b307d8d81fbbef9a0156bd9ca877f2aa440684 -SIZE (xpi/firefox-60.2.1/id.xpi) = 502222 -SHA256 (xpi/firefox-60.2.1/is.xpi) = 1948ec3c7e18cec325cc759afa8fd029d6184e981ebcf312c11051a8e3020b0a -SIZE (xpi/firefox-60.2.1/is.xpi) = 513264 -SHA256 (xpi/firefox-60.2.1/it.xpi) = 9b9a4f5c9f6f6ac2f3ef37aedfd676d4b6fa05ac74159cab434913764fbb27f3 -SIZE (xpi/firefox-60.2.1/it.xpi) = 399099 -SHA256 (xpi/firefox-60.2.1/ja.xpi) = 64148e91d43dad4322aa5b5e71786a319536e6168666d029f6bc3557cc156775 -SIZE (xpi/firefox-60.2.1/ja.xpi) = 572012 -SHA256 (xpi/firefox-60.2.1/ka.xpi) = 096eb9c86367957f23f1d86534b4b1967409956b871b784177ce73f301e48fee -SIZE (xpi/firefox-60.2.1/ka.xpi) = 556851 -SHA256 (xpi/firefox-60.2.1/kab.xpi) = 304f407b91f218cc3dd804648968dc257d181d1db7dbfffc221199cf4741958e -SIZE (xpi/firefox-60.2.1/kab.xpi) = 520397 -SHA256 (xpi/firefox-60.2.1/kk.xpi) = 1f4371029385308abab95f8588becbb183a1ef6c01cca4e299ac2f3bc3381114 -SIZE (xpi/firefox-60.2.1/kk.xpi) = 582980 -SHA256 (xpi/firefox-60.2.1/km.xpi) = 4577b6d00208de58add110c32f81a7bc800c80f42c7f2c3281ee3ebd054728a7 -SIZE (xpi/firefox-60.2.1/km.xpi) = 583107 -SHA256 (xpi/firefox-60.2.1/kn.xpi) = d1fad493d8fffbe3376cceea002930df34a24f4bbaffb094fdbc76d688a97295 -SIZE (xpi/firefox-60.2.1/kn.xpi) = 585866 -SHA256 (xpi/firefox-60.2.1/ko.xpi) = 4cad6078ccf73153bf18c67338d31805fff26caae1d35b7abd1d74fe63882b7c -SIZE (xpi/firefox-60.2.1/ko.xpi) = 547820 -SHA256 (xpi/firefox-60.2.1/lij.xpi) = 6d13dfc091901fc1ac7f57936cb4df63a1e7b517262e407481f0ff7ae7da8f02 -SIZE (xpi/firefox-60.2.1/lij.xpi) = 513177 -SHA256 (xpi/firefox-60.2.1/lt.xpi) = 7d32ea3a21e285738766c51a129908ddcab37c9e9713591a8e44651682e4e82f -SIZE (xpi/firefox-60.2.1/lt.xpi) = 536465 -SHA256 (xpi/firefox-60.2.1/lv.xpi) = 6ed6829be6f99147717f85a00b7beb6e6d26bb2770cb6fc57a9693365574f0fe -SIZE (xpi/firefox-60.2.1/lv.xpi) = 526414 -SHA256 (xpi/firefox-60.2.1/mai.xpi) = f379c9ec9119c5f466568ee40e000c11f6a486d540093957f1e0a7a658a69036 -SIZE (xpi/firefox-60.2.1/mai.xpi) = 549254 -SHA256 (xpi/firefox-60.2.1/mk.xpi) = ac24dd137bf35761c5c878d83bbb784bc6590ac45a5b9c315d32219401fef43c -SIZE (xpi/firefox-60.2.1/mk.xpi) = 513807 -SHA256 (xpi/firefox-60.2.1/ml.xpi) = 7f65aa5867c75d8be7c950a95a2d8d88d59fbf6f9eda12fb6009280c8f033383 -SIZE (xpi/firefox-60.2.1/ml.xpi) = 598973 -SHA256 (xpi/firefox-60.2.1/mr.xpi) = 727587c6bbf12c71ee27c9bf10881c63e423a9b2434c2574a64f54dd4b5ab936 -SIZE (xpi/firefox-60.2.1/mr.xpi) = 579110 -SHA256 (xpi/firefox-60.2.1/ms.xpi) = 22d87110ff77ab0de8c2e5cd86a3436e12ea9476a82087b12c07f1453c725d33 -SIZE (xpi/firefox-60.2.1/ms.xpi) = 509555 -SHA256 (xpi/firefox-60.2.1/my.xpi) = 4b1097069d5f30abb2a8db1bf953d3a2ce0cafa7b024b2caa6b2b3aa0af4d575 -SIZE (xpi/firefox-60.2.1/my.xpi) = 570346 -SHA256 (xpi/firefox-60.2.1/nb-NO.xpi) = 5b4ca113664cadd07e23acefe45ec4f359032caecbd0cc7c51c0fd7280fdb078 -SIZE (xpi/firefox-60.2.1/nb-NO.xpi) = 509881 -SHA256 (xpi/firefox-60.2.1/ne-NP.xpi) = 24bacb46ac3034483f4c01b765bee86249efe16166ffd1dcd6f15454cfd0ceab -SIZE (xpi/firefox-60.2.1/ne-NP.xpi) = 555358 -SHA256 (xpi/firefox-60.2.1/nl.xpi) = b19dd690eb9b586d383ef65522ec87cc713274c21e6181074a12d08141e63ef4 -SIZE (xpi/firefox-60.2.1/nl.xpi) = 517459 -SHA256 (xpi/firefox-60.2.1/nn-NO.xpi) = 9b29e3af5669ff6d48302761c428e4b65981a2889a5f77e51ca197d583757817 -SIZE (xpi/firefox-60.2.1/nn-NO.xpi) = 511436 -SHA256 (xpi/firefox-60.2.1/oc.xpi) = 991dbec799ff222190ad3924dd3f885874b1f03bde8a53d2b23ef1001ce6597f -SIZE (xpi/firefox-60.2.1/oc.xpi) = 526989 -SHA256 (xpi/firefox-60.2.1/or.xpi) = f71c61375e18724262b9ca39301ae83ae79247786d66822be0f795c5070a895c -SIZE (xpi/firefox-60.2.1/or.xpi) = 540869 -SHA256 (xpi/firefox-60.2.1/pa-IN.xpi) = 34f8fab455c475aee4ef378152b7f971750685cf5d0ae314a2442694527abf1f -SIZE (xpi/firefox-60.2.1/pa-IN.xpi) = 557873 -SHA256 (xpi/firefox-60.2.1/pl.xpi) = c48320c71efc36a5798987314e22dce4a41664d718608b20bf1ecbc72844f60b -SIZE (xpi/firefox-60.2.1/pl.xpi) = 419019 -SHA256 (xpi/firefox-60.2.1/pt-BR.xpi) = 24a9648d133d66bb049a18c38832abffc64802cdc1bbac3b2e667d085d5ca387 -SIZE (xpi/firefox-60.2.1/pt-BR.xpi) = 514760 -SHA256 (xpi/firefox-60.2.1/pt-PT.xpi) = 3d223e46deaaca1a8e119addb7749fb49c2228900f6f59d003a7e21593f69aa1 -SIZE (xpi/firefox-60.2.1/pt-PT.xpi) = 519358 -SHA256 (xpi/firefox-60.2.1/rm.xpi) = ed770c2fccd346af478f11835a0fb18b8ce7bba2951ba19400af81af30f017fa -SIZE (xpi/firefox-60.2.1/rm.xpi) = 506044 -SHA256 (xpi/firefox-60.2.1/ro.xpi) = dc8f369de784b054ce5d2ebebb8b903c802ebc51d6e86e68ad7a2c20cc5f74a7 -SIZE (xpi/firefox-60.2.1/ro.xpi) = 514055 -SHA256 (xpi/firefox-60.2.1/ru.xpi) = a4ab975431cdba003711f14929d0ef9828ab5f2e142a9af9105b9062151fa658 -SIZE (xpi/firefox-60.2.1/ru.xpi) = 591394 -SHA256 (xpi/firefox-60.2.1/si.xpi) = 226beff2b4477e3b67fcd8a56bf903b5a5275006abb930abb4f9d6a6c6330a2a -SIZE (xpi/firefox-60.2.1/si.xpi) = 545575 -SHA256 (xpi/firefox-60.2.1/sk.xpi) = a6b5d77abd67f6e21c82bf1dc2b5c1d8ad58c35fd5aba10553073adacb1f9dfa -SIZE (xpi/firefox-60.2.1/sk.xpi) = 541694 -SHA256 (xpi/firefox-60.2.1/sl.xpi) = 0e0eb7d2935e9036482f3241cf626f7b4245b51c334c1d91aa51cd0700f41868 -SIZE (xpi/firefox-60.2.1/sl.xpi) = 519371 -SHA256 (xpi/firefox-60.2.1/son.xpi) = 93d0c01947c8f81d5b3de8ee09edc8131317dd6a6a2274ccaa1f886b041efa11 -SIZE (xpi/firefox-60.2.1/son.xpi) = 497697 -SHA256 (xpi/firefox-60.2.1/sq.xpi) = 5e889b0919a51209561d4857a8988412b05932d6809df92f462423f76bc7d88e -SIZE (xpi/firefox-60.2.1/sq.xpi) = 521263 -SHA256 (xpi/firefox-60.2.1/sr.xpi) = f5a73fd22335d794a2414c7550679b08d3732343a42da2cc43da47a0053a64ef -SIZE (xpi/firefox-60.2.1/sr.xpi) = 548770 -SHA256 (xpi/firefox-60.2.1/sv-SE.xpi) = b0eec641175537b6b8ba7626b5fcc54af1e4e0d9666537ac60c024742b4bf6f7 -SIZE (xpi/firefox-60.2.1/sv-SE.xpi) = 518656 -SHA256 (xpi/firefox-60.2.1/ta.xpi) = 357e1f05d477a1d1a37cba7d9d603a94c7fc466aa2369f6baff678c8b972ef71 -SIZE (xpi/firefox-60.2.1/ta.xpi) = 577911 -SHA256 (xpi/firefox-60.2.1/te.xpi) = eef8b0a7c3561cad6503f30093f24ac5c11ea0e0f54e70475fa54264bdf9f9a9 -SIZE (xpi/firefox-60.2.1/te.xpi) = 590961 -SHA256 (xpi/firefox-60.2.1/th.xpi) = 32ddfa765a01006c9036868881f379761a57ce4dceeb75805212927dff1b8152 -SIZE (xpi/firefox-60.2.1/th.xpi) = 562813 -SHA256 (xpi/firefox-60.2.1/tr.xpi) = e5ae36d6d856374f419ad4adb796844bdc03f2f6cc4a8c900466a811867d26aa -SIZE (xpi/firefox-60.2.1/tr.xpi) = 525859 -SHA256 (xpi/firefox-60.2.1/uk.xpi) = c335873064b17fb1e361837e5dd627dc159ddca1ef6d4d01c3afaea593f61bda -SIZE (xpi/firefox-60.2.1/uk.xpi) = 580919 -SHA256 (xpi/firefox-60.2.1/ur.xpi) = bfa34be45ff064eedc47bbbf922bb83a99d907a7c1531dad59a8959254157ee0 -SIZE (xpi/firefox-60.2.1/ur.xpi) = 563373 -SHA256 (xpi/firefox-60.2.1/uz.xpi) = c9893055de93c698be5f7c9a5822c2b1d9bf406bf74c99256ad8496333c0e519 -SIZE (xpi/firefox-60.2.1/uz.xpi) = 513686 -SHA256 (xpi/firefox-60.2.1/vi.xpi) = c40f077abbdd9d0905c5631d27849644c80695db32b2c7d8330ad2ba501b58b2 -SIZE (xpi/firefox-60.2.1/vi.xpi) = 528188 -SHA256 (xpi/firefox-60.2.1/xh.xpi) = 631d13b0d4e21b49a76ca41b7c9cca80a107524999f64a4033087d49d0ef74c7 -SIZE (xpi/firefox-60.2.1/xh.xpi) = 511857 -SHA256 (xpi/firefox-60.2.1/zh-CN.xpi) = f40eceb943c480af00da5ad26557b061bfe98c27cfbfe1347c00cd298959860f -SIZE (xpi/firefox-60.2.1/zh-CN.xpi) = 543584 -SHA256 (xpi/firefox-60.2.1/zh-TW.xpi) = 3fbff2292c0fddf1a2005497b244ecd1b340d03e55e03227fef23cdbb12deb9c -SIZE (xpi/firefox-60.2.1/zh-TW.xpi) = 541914 +TIMESTAMP = 1538404142 +SHA256 (xpi/firefox-60.2.2/ach.xpi) = 84817dff42dd0521cf2e79388187d541c6980dc312c9e8a5dd04d6a7cd349cbb +SIZE (xpi/firefox-60.2.2/ach.xpi) = 496840 +SHA256 (xpi/firefox-60.2.2/af.xpi) = aea3ce14532e20ed78ddc57bc4d75efe39c21fa12237074bf3e88d8963f7e502 +SIZE (xpi/firefox-60.2.2/af.xpi) = 487308 +SHA256 (xpi/firefox-60.2.2/an.xpi) = a34f447b9b67ca0758500e1e6da464074844553db47ab943c84e549bc287f512 +SIZE (xpi/firefox-60.2.2/an.xpi) = 520494 +SHA256 (xpi/firefox-60.2.2/ar.xpi) = 6f686e02842089ce3dccc88284666025cfd6389210095d2d31bdc5bf567f4b82 +SIZE (xpi/firefox-60.2.2/ar.xpi) = 547818 +SHA256 (xpi/firefox-60.2.2/as.xpi) = 5b7b787115559065defe49c3a637456258d11c0cc95ad1835b73c5ca527a516a +SIZE (xpi/firefox-60.2.2/as.xpi) = 530719 +SHA256 (xpi/firefox-60.2.2/ast.xpi) = 7272abf43525b8f248bf8b812e13b09ced1ae46ecfe5bd9fb3d7914941ad6055 +SIZE (xpi/firefox-60.2.2/ast.xpi) = 508650 +SHA256 (xpi/firefox-60.2.2/az.xpi) = 35bc565cfb4abb46308f4b5840f65ab69a525b19860b69d9283e4109321a0868 +SIZE (xpi/firefox-60.2.2/az.xpi) = 524745 +SHA256 (xpi/firefox-60.2.2/be.xpi) = 0f0a4523d5bd287c7f4a49a24f29cc60fc5923dab4ca41af32daa0e59d8342ac +SIZE (xpi/firefox-60.2.2/be.xpi) = 580714 +SHA256 (xpi/firefox-60.2.2/bg.xpi) = 5eabd054a3c3ef1b4a9277861e13d7db04f7cac122cb061f52804bac0b2affe4 +SIZE (xpi/firefox-60.2.2/bg.xpi) = 573853 +SHA256 (xpi/firefox-60.2.2/bn-BD.xpi) = d7f9531a227564da0bf3324ba3cd1afecfbfe7cbd13bd6ea051ea85e4e711589 +SIZE (xpi/firefox-60.2.2/bn-BD.xpi) = 590419 +SHA256 (xpi/firefox-60.2.2/bn-IN.xpi) = 84286c4aa23c38a5b77000f35e27857ac8bc70eb986203a97ada7fd6cf0f7771 +SIZE (xpi/firefox-60.2.2/bn-IN.xpi) = 570864 +SHA256 (xpi/firefox-60.2.2/br.xpi) = 31b80aa77c5c1227188a0730a784b5a1366adf282535f64946276941014ba690 +SIZE (xpi/firefox-60.2.2/br.xpi) = 512027 +SHA256 (xpi/firefox-60.2.2/bs.xpi) = 4082732547092e33f6affa5fbc5b364bec0d9a69eadf62b3ac5df43b3d17d897 +SIZE (xpi/firefox-60.2.2/bs.xpi) = 514715 +SHA256 (xpi/firefox-60.2.2/ca.xpi) = 4569042305ad7c642c1e23d330ff343b42e7c5b2b8bd6b21991e8a987eaaef23 +SIZE (xpi/firefox-60.2.2/ca.xpi) = 525257 +SHA256 (xpi/firefox-60.2.2/cak.xpi) = 22b9d1893597a6600449555feeba0c939224295af2419b294a00957d8e48e1fd +SIZE (xpi/firefox-60.2.2/cak.xpi) = 536290 +SHA256 (xpi/firefox-60.2.2/cs.xpi) = d5e41b8fb5cd44cfb6cfff87de7608fc4141f325160550b872c1694cbf9c96e1 +SIZE (xpi/firefox-60.2.2/cs.xpi) = 531798 +SHA256 (xpi/firefox-60.2.2/cy.xpi) = 97889122462ebea949181890aab790f1470f9c573bad617a87ca5ea2bf9c9a95 +SIZE (xpi/firefox-60.2.2/cy.xpi) = 516642 +SHA256 (xpi/firefox-60.2.2/da.xpi) = ace4c8e3f6fed6b0c48b05ec51738cdd9a553425650c10c32cd498e1461d243f +SIZE (xpi/firefox-60.2.2/da.xpi) = 510753 +SHA256 (xpi/firefox-60.2.2/de.xpi) = 01577da0003195281d5542db255abf3db5dfa475143eabfc4646b5b998144a8d +SIZE (xpi/firefox-60.2.2/de.xpi) = 526515 +SHA256 (xpi/firefox-60.2.2/dsb.xpi) = e7ec592e456f63dc89b67ca6b6633af52cbf3cb8f2fcc34673311f3c09e2b20d +SIZE (xpi/firefox-60.2.2/dsb.xpi) = 539524 +SHA256 (xpi/firefox-60.2.2/el.xpi) = 8e0dfc4dbfc0a61c17edccca09fbfc9bb277b79da36e39ab590b821b9820ed8d +SIZE (xpi/firefox-60.2.2/el.xpi) = 593691 +SHA256 (xpi/firefox-60.2.2/en-GB.xpi) = 5eb62661a25c8c6b41c1ae36b7595aa415396b9d31b4464e8a5fe3aac73266a3 +SIZE (xpi/firefox-60.2.2/en-GB.xpi) = 491694 +SHA256 (xpi/firefox-60.2.2/en-US.xpi) = 41ee20b0dfaa122fdb42e8710f05f75e81c4ffa4c9ecac656880dc9f9f2b8b45 +SIZE (xpi/firefox-60.2.2/en-US.xpi) = 473177 +SHA256 (xpi/firefox-60.2.2/en-ZA.xpi) = c80956bdb0858ff665db3095da6b2a47183b6b57532274186a98c4f666d0fea0 +SIZE (xpi/firefox-60.2.2/en-ZA.xpi) = 474679 +SHA256 (xpi/firefox-60.2.2/eo.xpi) = 0a8557f79dff10953f151791e3e987d915b9c712e283745fce96180464d33668 +SIZE (xpi/firefox-60.2.2/eo.xpi) = 511267 +SHA256 (xpi/firefox-60.2.2/es-AR.xpi) = 744913909328594f5da16a979af51c3273638e52e25fbaa10a8b4f4bc4e7b208 +SIZE (xpi/firefox-60.2.2/es-AR.xpi) = 524650 +SHA256 (xpi/firefox-60.2.2/es-CL.xpi) = c55af22a61c0f179dde0a1477249d0f060cb8fc63f4d80879abbd4150b672628 +SIZE (xpi/firefox-60.2.2/es-CL.xpi) = 527320 +SHA256 (xpi/firefox-60.2.2/es-ES.xpi) = acaa22af522b8a5661b1b8aeff28d874cab82eef8819d10d2d14dfa21a68c2fe +SIZE (xpi/firefox-60.2.2/es-ES.xpi) = 459958 +SHA256 (xpi/firefox-60.2.2/es-MX.xpi) = 291c7b60abb82e9939de2884a103a57d858df77eefd286cbd5770a06d1ab7ab5 +SIZE (xpi/firefox-60.2.2/es-MX.xpi) = 528664 +SHA256 (xpi/firefox-60.2.2/et.xpi) = 68696bf701450b232e27fc82eb8941c78b85f70fcbb8f6655dfcd2e7222f0913 +SIZE (xpi/firefox-60.2.2/et.xpi) = 504975 +SHA256 (xpi/firefox-60.2.2/eu.xpi) = 67c12afc605eb3cdacc2a39105cb3e0c25343324ef19a65724469adbde664bd6 +SIZE (xpi/firefox-60.2.2/eu.xpi) = 511710 +SHA256 (xpi/firefox-60.2.2/fa.xpi) = f46660812d80c7dbca1d707042db2b294e7ebf9d76586b9ef91c0fdba93a68c8 +SIZE (xpi/firefox-60.2.2/fa.xpi) = 566262 +SHA256 (xpi/firefox-60.2.2/ff.xpi) = 02d6a68b7af8b43d416eebb46374d0f0d347b718133e107fad0d9383a1e3fbc0 +SIZE (xpi/firefox-60.2.2/ff.xpi) = 512205 +SHA256 (xpi/firefox-60.2.2/fi.xpi) = afbd69292221eb6001d1911ec3f6db1347791e3c224223d006e56e8b8ad1880b +SIZE (xpi/firefox-60.2.2/fi.xpi) = 506177 +SHA256 (xpi/firefox-60.2.2/fr.xpi) = 270c3ce74864aa19ab754fcd2f47997e80817eadc2f4625df886e41dc53b3f45 +SIZE (xpi/firefox-60.2.2/fr.xpi) = 536072 +SHA256 (xpi/firefox-60.2.2/fy-NL.xpi) = 5f0950d0bc8183feb81afd0f6251e156b95dfdab66381734b1871b64118b8321 +SIZE (xpi/firefox-60.2.2/fy-NL.xpi) = 524520 +SHA256 (xpi/firefox-60.2.2/ga-IE.xpi) = f27922c766dc00615f19197f89064143d8033c1d17cf940bb98ccb10e2fa77ce +SIZE (xpi/firefox-60.2.2/ga-IE.xpi) = 526986 +SHA256 (xpi/firefox-60.2.2/gd.xpi) = 92c75984df644e277594ee5dd4ca9a0ea5b34358c4961d96f79c5e805da86772 +SIZE (xpi/firefox-60.2.2/gd.xpi) = 520872 +SHA256 (xpi/firefox-60.2.2/gl.xpi) = df150241bd6d74beab33c398f58f6922332f1fe6d17d19ea566f9fe57ebd6911 +SIZE (xpi/firefox-60.2.2/gl.xpi) = 497371 +SHA256 (xpi/firefox-60.2.2/gn.xpi) = ed0a229ea989c694f14464c6bef6f8890570322340ea36bc39c52dfd82b09b28 +SIZE (xpi/firefox-60.2.2/gn.xpi) = 533219 +SHA256 (xpi/firefox-60.2.2/gu-IN.xpi) = 1212b55edf0a927877a8fe9fc1e3e11b70cc2c95259213d26702d80a414c4233 +SIZE (xpi/firefox-60.2.2/gu-IN.xpi) = 590266 +SHA256 (xpi/firefox-60.2.2/he.xpi) = 604ff0b366666cb39129e3fc84bc17c15e07087a22fde0cf508fe0571925f427 +SIZE (xpi/firefox-60.2.2/he.xpi) = 535979 +SHA256 (xpi/firefox-60.2.2/hi-IN.xpi) = be5d25efa454d44cbf4c1782632664b4ab46f73b32a264b12f5eb6eba2170150 +SIZE (xpi/firefox-60.2.2/hi-IN.xpi) = 590870 +SHA256 (xpi/firefox-60.2.2/hr.xpi) = 259650f201c9759e1fd2f40b79b0b94627c06ec955380c121c241cbe000cd8a1 +SIZE (xpi/firefox-60.2.2/hr.xpi) = 515960 +SHA256 (xpi/firefox-60.2.2/hsb.xpi) = 629545c0406651e32e580600d48927eee6f7a1af14dbc7af3361b8cbc2e62d41 +SIZE (xpi/firefox-60.2.2/hsb.xpi) = 537059 +SHA256 (xpi/firefox-60.2.2/hu.xpi) = 681684ac3f4af3c7e114ec9b41ed080f67aa36d1cd993ddcd28ca013f7eede2f +SIZE (xpi/firefox-60.2.2/hu.xpi) = 538418 +SHA256 (xpi/firefox-60.2.2/hy-AM.xpi) = 00d7bf668bb6a1cdb9e41ee2ca9561bd5feb8f0afdbd7212da9baa548139ca1e +SIZE (xpi/firefox-60.2.2/hy-AM.xpi) = 569415 +SHA256 (xpi/firefox-60.2.2/ia.xpi) = 7ac6bbae0b1ee5ae6de1a9861ad1e7997b5a382e7289307037c6b2763bb84b22 +SIZE (xpi/firefox-60.2.2/ia.xpi) = 510731 +SHA256 (xpi/firefox-60.2.2/id.xpi) = 6d748ae5eb97f115a5cd14706a6981ab16d476cde8da657a357ee295386e1746 +SIZE (xpi/firefox-60.2.2/id.xpi) = 502220 +SHA256 (xpi/firefox-60.2.2/is.xpi) = d08b525062c47433274846667f1f3124321623d3d7dfef90effcb05a89e914ed +SIZE (xpi/firefox-60.2.2/is.xpi) = 513271 +SHA256 (xpi/firefox-60.2.2/it.xpi) = 95c646c7ae0dc1f2a4d8b2903f038ce5f4fdff5e7201b1133f240b8d72cb242a +SIZE (xpi/firefox-60.2.2/it.xpi) = 399096 +SHA256 (xpi/firefox-60.2.2/ja.xpi) = 3c198a51b6a8a6dfd9f48e62be55af232abfe0952109f3f90e96e0d0a09f9621 +SIZE (xpi/firefox-60.2.2/ja.xpi) = 572015 +SHA256 (xpi/firefox-60.2.2/ka.xpi) = 109c3106bac02973dfde8c4cc52a9a4c9c44c2fbb258afabd048a777a0c73516 +SIZE (xpi/firefox-60.2.2/ka.xpi) = 556846 +SHA256 (xpi/firefox-60.2.2/kab.xpi) = 8b680fb5f21336ce7a7ec285bb3f54dcd9977e4751dc749f7ba8ea8354a0e703 +SIZE (xpi/firefox-60.2.2/kab.xpi) = 520399 +SHA256 (xpi/firefox-60.2.2/kk.xpi) = ae64c1cc7bb2792329ad6992b25c297887d73a254138eef7874bc6ed21596cbd +SIZE (xpi/firefox-60.2.2/kk.xpi) = 582980 +SHA256 (xpi/firefox-60.2.2/km.xpi) = fda2589601976c9a35d4965e513bc2ccc3c34c73da162376fab6a9b814914208 +SIZE (xpi/firefox-60.2.2/km.xpi) = 583116 +SHA256 (xpi/firefox-60.2.2/kn.xpi) = 4a4d2f463cc1b65a9120339c6d746e3c85764e72adf1d5f4805913c58cd190c0 +SIZE (xpi/firefox-60.2.2/kn.xpi) = 585873 +SHA256 (xpi/firefox-60.2.2/ko.xpi) = fd96a2185c636d718e26724d7d418dc5549379d674355b5806749beab9148196 +SIZE (xpi/firefox-60.2.2/ko.xpi) = 547826 +SHA256 (xpi/firefox-60.2.2/lij.xpi) = c86fb34a1f28b3fb74fa430dde42778eefe93fe82a4a39d0c4640891ffb2ab22 +SIZE (xpi/firefox-60.2.2/lij.xpi) = 513176 +SHA256 (xpi/firefox-60.2.2/lt.xpi) = 60cf6a636ff25b69e38f8e64050ca865a83708e1c0d7291d0e92341408cc86df +SIZE (xpi/firefox-60.2.2/lt.xpi) = 536464 +SHA256 (xpi/firefox-60.2.2/lv.xpi) = 4f9a8dea86f252e38b12e1355b14bc5fe4e045adb5d632e7143f669f479e8f63 +SIZE (xpi/firefox-60.2.2/lv.xpi) = 526414 +SHA256 (xpi/firefox-60.2.2/mai.xpi) = 71e71eae766d524fda46670140da70f82110b1cf0847e1cbafd1f55401b41825 +SIZE (xpi/firefox-60.2.2/mai.xpi) = 549256 +SHA256 (xpi/firefox-60.2.2/mk.xpi) = 6f50037070dfade3ace6ff59a65e266909868d48e40e58234ea8c3733faf1c4d +SIZE (xpi/firefox-60.2.2/mk.xpi) = 513807 +SHA256 (xpi/firefox-60.2.2/ml.xpi) = c6922f1cb920fa57ecf8b84af098d244925f7a96843c437cf484ed5711158a56 +SIZE (xpi/firefox-60.2.2/ml.xpi) = 598976 +SHA256 (xpi/firefox-60.2.2/mr.xpi) = 1fd81960370c0d01267d9298fb9ee2b0ac6e01b700e6d8e7ed8ae11c899647ac +SIZE (xpi/firefox-60.2.2/mr.xpi) = 579120 +SHA256 (xpi/firefox-60.2.2/ms.xpi) = b7f0a5c88d0573644f425f94dd2d460b31ccc2fac182e31e9034a62d4f833a79 +SIZE (xpi/firefox-60.2.2/ms.xpi) = 509552 +SHA256 (xpi/firefox-60.2.2/my.xpi) = ac963037fbc3e409893c441cf3865478cf9925bd98dc9f52aff113987c00f561 +SIZE (xpi/firefox-60.2.2/my.xpi) = 570353 +SHA256 (xpi/firefox-60.2.2/nb-NO.xpi) = 012dee9f786c87c9ca1dd34bf4af3b2ff2c24beadf65dabd0a77c53c8c35cd6a +SIZE (xpi/firefox-60.2.2/nb-NO.xpi) = 509890 +SHA256 (xpi/firefox-60.2.2/ne-NP.xpi) = a2822416e8ea563fd5a39338c979cd13478a0e75a135c5a6da6f5bfae54fc314 +SIZE (xpi/firefox-60.2.2/ne-NP.xpi) = 555368 +SHA256 (xpi/firefox-60.2.2/nl.xpi) = b70ef22040eb505da52b9225f6e9e60d735f5371b7990ebfb661dcc1d7cb8a30 +SIZE (xpi/firefox-60.2.2/nl.xpi) = 517459 +SHA256 (xpi/firefox-60.2.2/nn-NO.xpi) = 5413745d9e136fe8243cd6f64d6d5b187fcf93fa7075d321558af508855551e0 +SIZE (xpi/firefox-60.2.2/nn-NO.xpi) = 511429 +SHA256 (xpi/firefox-60.2.2/oc.xpi) = 17883958bd4b202966e34e3065dbe02f22cdde9bd261a6a3974a96e82c195940 +SIZE (xpi/firefox-60.2.2/oc.xpi) = 526990 +SHA256 (xpi/firefox-60.2.2/or.xpi) = 4e52534f0a194e023f1a6eab7ddfa9ad8ab09e85cd5df4658ef1512012266db4 +SIZE (xpi/firefox-60.2.2/or.xpi) = 540863 +SHA256 (xpi/firefox-60.2.2/pa-IN.xpi) = 24dfe3a70e153b024b03a8da7be6ae496a131699536d8f914256a0d51295cc58 +SIZE (xpi/firefox-60.2.2/pa-IN.xpi) = 557877 +SHA256 (xpi/firefox-60.2.2/pl.xpi) = 80bc58cc00499711484dd02ab75f4ab6ef82a294e22d71d69456e3f2045c90e9 +SIZE (xpi/firefox-60.2.2/pl.xpi) = 419023 +SHA256 (xpi/firefox-60.2.2/pt-BR.xpi) = 136d776ae0c3ac15cb71f685ba89332d23c9367b4d5dd34a32ccd8de4140da24 +SIZE (xpi/firefox-60.2.2/pt-BR.xpi) = 514759 +SHA256 (xpi/firefox-60.2.2/pt-PT.xpi) = 16b65aa67528adc45ec9eb34d016c98b8c909c0887c1f52ccf49b9571b48e1d4 +SIZE (xpi/firefox-60.2.2/pt-PT.xpi) = 519361 +SHA256 (xpi/firefox-60.2.2/rm.xpi) = 230753735ed5ea7741d0b21ffef61d1a98811def49bcd645986ed294de79da69 +SIZE (xpi/firefox-60.2.2/rm.xpi) = 506037 +SHA256 (xpi/firefox-60.2.2/ro.xpi) = 708f261cac197517a97c0b07a59f24970deb8dd5d33ede272d9176e97a8aadaa +SIZE (xpi/firefox-60.2.2/ro.xpi) = 514050 +SHA256 (xpi/firefox-60.2.2/ru.xpi) = 01b9b85a2c582a37d67d2fd58d0758e14a1bf34e1c5a263d70f6d5e8c0af84f3 +SIZE (xpi/firefox-60.2.2/ru.xpi) = 591397 +SHA256 (xpi/firefox-60.2.2/si.xpi) = 2e4a9de9ada2ab5503f09d4f926a255f1d36a9020a9514edf30622a14f019b5f +SIZE (xpi/firefox-60.2.2/si.xpi) = 545572 +SHA256 (xpi/firefox-60.2.2/sk.xpi) = b3c0590528ad390bb337e6a797732b76b20308e566f9b70d115743c75586a8d5 +SIZE (xpi/firefox-60.2.2/sk.xpi) = 541702 +SHA256 (xpi/firefox-60.2.2/sl.xpi) = 834a0e63427124e5f015233e9dc7dc9614bb77a292f32c88c47ad92e28bbb511 +SIZE (xpi/firefox-60.2.2/sl.xpi) = 519378 +SHA256 (xpi/firefox-60.2.2/son.xpi) = 48785bec20408ec2766ea11f1f1c1ccb6899067ba6417c843030e3abb1fd0151 +SIZE (xpi/firefox-60.2.2/son.xpi) = 497699 +SHA256 (xpi/firefox-60.2.2/sq.xpi) = a7c6fc73c3376f01aacb8a04ca5c5b3751c6646f5a26c4308671b067ce84ebc7 +SIZE (xpi/firefox-60.2.2/sq.xpi) = 521266 +SHA256 (xpi/firefox-60.2.2/sr.xpi) = 54db6f25d509df140e6a4da0605515f756cbd40090d8601251f7cfe12e67be4b +SIZE (xpi/firefox-60.2.2/sr.xpi) = 548771 +SHA256 (xpi/firefox-60.2.2/sv-SE.xpi) = f4ded3d062e809795a1dda2c6cd0707992776c5301d051bb0c0ccc5ee55d07ce +SIZE (xpi/firefox-60.2.2/sv-SE.xpi) = 518661 +SHA256 (xpi/firefox-60.2.2/ta.xpi) = 515948498bd61b9549a2afc7278704e2b0434cd524c5612b89e602fef6e919d6 +SIZE (xpi/firefox-60.2.2/ta.xpi) = 577920 +SHA256 (xpi/firefox-60.2.2/te.xpi) = 8608eccfa357c2751436e077c52b03f3ed03b89989879c2a9dda910e9c8a58d0 +SIZE (xpi/firefox-60.2.2/te.xpi) = 590956 +SHA256 (xpi/firefox-60.2.2/th.xpi) = 992e23a1ebf6c335be5b6270a6cfc4004379e019fdbf136a10753da87afcccd7 +SIZE (xpi/firefox-60.2.2/th.xpi) = 562814 +SHA256 (xpi/firefox-60.2.2/tr.xpi) = 4969cb889deb7f28058a106017afb2944b4f330f60bae0a57a4053364ecf2384 +SIZE (xpi/firefox-60.2.2/tr.xpi) = 525852 +SHA256 (xpi/firefox-60.2.2/uk.xpi) = 04d60db1cbcbffb2c4eaa2a8b69919a111ee39d4f0a4bf818ec112c58198a0b0 +SIZE (xpi/firefox-60.2.2/uk.xpi) = 580921 +SHA256 (xpi/firefox-60.2.2/ur.xpi) = 4a14196c6d8117671908f1eeead772193bbe7306b8a7810572fcc8a75f31905c +SIZE (xpi/firefox-60.2.2/ur.xpi) = 563373 +SHA256 (xpi/firefox-60.2.2/uz.xpi) = 6fb1d17d0c71e895e185a43de4b28f8ce90d34715d693aba35434182a6463d24 +SIZE (xpi/firefox-60.2.2/uz.xpi) = 513689 +SHA256 (xpi/firefox-60.2.2/vi.xpi) = 99b6b7fbbd923988cf97f4f61585c24a762b67f653ac6bdebea45052be5895b3 +SIZE (xpi/firefox-60.2.2/vi.xpi) = 528190 +SHA256 (xpi/firefox-60.2.2/xh.xpi) = 0a86ae904bc97162a22864a878f9e5e728188d9b830f210faa069a68ec9431fe +SIZE (xpi/firefox-60.2.2/xh.xpi) = 511856 +SHA256 (xpi/firefox-60.2.2/zh-CN.xpi) = 76e96e7ee14a5412911891685fe983584ebc8829edfa15df30f8cbd519807729 +SIZE (xpi/firefox-60.2.2/zh-CN.xpi) = 543584 +SHA256 (xpi/firefox-60.2.2/zh-TW.xpi) = c4bf29cc5716103bf514f7090fa2bdf93bf767992632e7f8911c13e797f9cfbf +SIZE (xpi/firefox-60.2.2/zh-TW.xpi) = 541908 Modified: branches/2018Q4/www/firefox-esr/Makefile ============================================================================== --- branches/2018Q4/www/firefox-esr/Makefile Mon Oct 1 23:45:49 2018 (r481086) +++ branches/2018Q4/www/firefox-esr/Makefile Mon Oct 1 23:55:01 2018 (r481087) @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 60.2.1 -PORTREVISION= 1 +DISTVERSION= 60.2.2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build1/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build2/source PKGNAMESUFFIX= -esr DISTFILES= ${DISTNAME}esr.source${EXTRACT_SUFX} Modified: branches/2018Q4/www/firefox-esr/distinfo ============================================================================== --- branches/2018Q4/www/firefox-esr/distinfo Mon Oct 1 23:45:49 2018 (r481086) +++ branches/2018Q4/www/firefox-esr/distinfo Mon Oct 1 23:55:01 2018 (r481087) @@ -1,3 +1,3 @@ -TIMESTAMP = 1537472891 -SHA256 (firefox-60.2.1esr.source.tar.xz) = 32f22ce32b3d07104f09faf1647a25d4e5222ed2fdd0b90ee070ea672365c07c -SIZE (firefox-60.2.1esr.source.tar.xz) = 269948396 +TIMESTAMP = 1538404142 +SHA256 (firefox-60.2.2esr.source.tar.xz) = 8f27ac9ebf253a87d161147b6ec7a56d486db2428565a2e97324c3bb55f684d2 +SIZE (firefox-60.2.2esr.source.tar.xz) = 267599268 From owner-svn-ports-branches@freebsd.org Tue Oct 2 00:27:41 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12EE110AE52D; Tue, 2 Oct 2018 00:27:41 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B789E72FF6; Tue, 2 Oct 2018 00:27:40 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 98BC42838D; Tue, 2 Oct 2018 00:27:40 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w920RetI030504; Tue, 2 Oct 2018 00:27:40 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w920Redj030501; Tue, 2 Oct 2018 00:27:40 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810020027.w920Redj030501@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 2 Oct 2018 00:27:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481091 - branches/2018Q4/emulators/rpcs3 X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q4/emulators/rpcs3 X-SVN-Commit-Revision: 481091 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 02 Oct 2018 00:27:41 -0000 Author: jbeich Date: Tue Oct 2 00:27:39 2018 New Revision: 481091 URL: https://svnweb.freebsd.org/changeset/ports/481091 Log: MFH: r481089 emulators/rpcs3: update to 0.0.5.951 Changes: https://github.com/RPCS3/rpcs3/compare/da6ce80f4...145667831 Approved by: ports-secteam (junovitch, implicit for snapshots) Modified: branches/2018Q4/emulators/rpcs3/Makefile branches/2018Q4/emulators/rpcs3/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/emulators/rpcs3/Makefile ============================================================================== --- branches/2018Q4/emulators/rpcs3/Makefile Tue Oct 2 00:26:30 2018 (r481090) +++ branches/2018Q4/emulators/rpcs3/Makefile Tue Oct 2 00:27:39 2018 (r481091) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-945 -DISTVERSIONSUFFIX= -gda6ce80f4 +DISTVERSION= 0.0.5-951 +DISTVERSIONSUFFIX= -g145667831 CATEGORIES= emulators PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ @@ -29,7 +29,7 @@ ONLY_FOR_ARCHS_REASON= requires int128 and SSE2 USE_GITHUB= yes GH_ACCOUNT= RPCS3 GH_TUPLE= RPCS3:hidapi:hidapi-0.8.0-rc1-26-g4c27501:hidapi/3rdparty/hidapi \ - RPCS3:llvm:be9f7bfe2068:llvm/llvm \ + RPCS3:llvm:5c906fd1694e:llvm/llvm \ Cyan4973:xxHash:v0.6.5:xxHash/3rdparty/xxHash \ jbeder:yaml-cpp:yaml-cpp-0.6.2-8-gc90c08c:yamlcpp/3rdparty/yaml-cpp \ kobalicek:asmjit:673dcef:asmjit/asmjit \ Modified: branches/2018Q4/emulators/rpcs3/distinfo ============================================================================== --- branches/2018Q4/emulators/rpcs3/distinfo Tue Oct 2 00:26:30 2018 (r481090) +++ branches/2018Q4/emulators/rpcs3/distinfo Tue Oct 2 00:27:39 2018 (r481091) @@ -1,10 +1,10 @@ -TIMESTAMP = 1538080633 -SHA256 (RPCS3-rpcs3-v0.0.5-945-gda6ce80f4_GH0.tar.gz) = e1e49e0f81632b91895a62a1af8dee4c149b33f564a5fe492014aa55e1c313d6 -SIZE (RPCS3-rpcs3-v0.0.5-945-gda6ce80f4_GH0.tar.gz) = 5005463 +TIMESTAMP = 1538436146 +SHA256 (RPCS3-rpcs3-v0.0.5-951-g145667831_GH0.tar.gz) = fa9ae34567264d9d8e65cae88cb219b8736d643e7539ff405642c4a6eeb57f74 +SIZE (RPCS3-rpcs3-v0.0.5-951-g145667831_GH0.tar.gz) = 5011601 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-26-g4c27501_GH0.tar.gz) = 4f58ba2a51136cc6af0f1d833688b55f78468c4f5429a4bf9b38bb51c9d212b1 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-26-g4c27501_GH0.tar.gz) = 105372 -SHA256 (RPCS3-llvm-be9f7bfe2068_GH0.tar.gz) = 6fc805799e0853505ce786882e5856d018130fcca37206e7ef5fcef6b72937d3 -SIZE (RPCS3-llvm-be9f7bfe2068_GH0.tar.gz) = 42328799 +SHA256 (RPCS3-llvm-5c906fd1694e_GH0.tar.gz) = 8bbe95fbbea545ebb03e73d526add64e2853f86176ad42690f8ce5846bd419ce +SIZE (RPCS3-llvm-5c906fd1694e_GH0.tar.gz) = 43639523 SHA256 (Cyan4973-xxHash-v0.6.5_GH0.tar.gz) = 19030315f4fc1b4b2cdb9d7a317069a109f90e39d1fe4c9159b7aaa39030eb95 SIZE (Cyan4973-xxHash-v0.6.5_GH0.tar.gz) = 37521 SHA256 (jbeder-yaml-cpp-yaml-cpp-0.6.2-8-gc90c08c_GH0.tar.gz) = 97c3638ef39adb392199d51c4bb700201e15160f43f6da9f2d09c3e87f5c8c51 From owner-svn-ports-branches@freebsd.org Tue Oct 2 06:20:33 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66D9C10B8680; Tue, 2 Oct 2018 06:20:33 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1CF137DC18; Tue, 2 Oct 2018 06:20:33 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 17ED22BE94; Tue, 2 Oct 2018 06:20:33 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w926KWDB029988; Tue, 2 Oct 2018 06:20:32 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w926KWHg029987; Tue, 2 Oct 2018 06:20:32 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201810020620.w926KWHg029987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Tue, 2 Oct 2018 06:20:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481097 - branches/2018Q4/devel/gitaly X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2018Q4/devel/gitaly X-SVN-Commit-Revision: 481097 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 02 Oct 2018 06:20:33 -0000 Author: mfechner Date: Tue Oct 2 06:20:32 2018 New Revision: 481097 URL: https://svnweb.freebsd.org/changeset/ports/481097 Log: MFH: r481062 devel/gitaly upgrade to 0.120.1 which is required for gitlab-ce 11.3.1 security update. Approved by: mentors (implicit) MFC after: 0d Security: 065b3b72-c5ab-11e8-9ae2-001b217b3468 Approved by: ports-secteam (miwi) Modified: branches/2018Q4/devel/gitaly/Makefile branches/2018Q4/devel/gitaly/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/devel/gitaly/Makefile ============================================================================== --- branches/2018Q4/devel/gitaly/Makefile Tue Oct 2 04:01:36 2018 (r481096) +++ branches/2018Q4/devel/gitaly/Makefile Tue Oct 2 06:20:32 2018 (r481097) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gitaly -DISTVERSION= 0.120.0 +DISTVERSION= 0.120.1 CATEGORIES= devel MAINTAINER= mfechner@FreeBSD.org @@ -41,7 +41,7 @@ USE_RUBY= yes USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find this here: https://gitlab.com/gitlab-org/gitaly/tags -GL_COMMIT= 8a8daada771e4659baeb6fc08178179ea78010a6 +GL_COMMIT= 5a739d657452de73137c2a0cb7d171c40fa3557a post-patch: ${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/config.toml.example Modified: branches/2018Q4/devel/gitaly/distinfo ============================================================================== --- branches/2018Q4/devel/gitaly/distinfo Tue Oct 2 04:01:36 2018 (r481096) +++ branches/2018Q4/devel/gitaly/distinfo Tue Oct 2 06:20:32 2018 (r481097) @@ -1,3 +1,3 @@ -TIMESTAMP = 1537566136 -SHA256 (gitlab-org-gitaly-8a8daada771e4659baeb6fc08178179ea78010a6_GL0.tar.gz) = 172816c471e65f2da09eb51066624d115c7b4db05a8983dbb4d6943ab24f197e -SIZE (gitlab-org-gitaly-8a8daada771e4659baeb6fc08178179ea78010a6_GL0.tar.gz) = 3608782 +TIMESTAMP = 1538419557 +SHA256 (gitlab-org-gitaly-5a739d657452de73137c2a0cb7d171c40fa3557a_GL0.tar.gz) = 1bc5e27bef1ae2ff6c69f8a04afbd8db954562d3888398226e281a4004ea5ea0 +SIZE (gitlab-org-gitaly-5a739d657452de73137c2a0cb7d171c40fa3557a_GL0.tar.gz) = 3608844 From owner-svn-ports-branches@freebsd.org Tue Oct 2 06:21:50 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 054D710B886B; Tue, 2 Oct 2018 06:21:50 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AF0587DF39; Tue, 2 Oct 2018 06:21:49 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9E392BEFD; Tue, 2 Oct 2018 06:21:49 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w926LnFS031843; Tue, 2 Oct 2018 06:21:49 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w926Ln9X031841; Tue, 2 Oct 2018 06:21:49 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201810020621.w926Ln9X031841@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Tue, 2 Oct 2018 06:21:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481098 - branches/2018Q4/www/gitlab-ce X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2018Q4/www/gitlab-ce X-SVN-Commit-Revision: 481098 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 02 Oct 2018 06:21:50 -0000 Author: mfechner Date: Tue Oct 2 06:21:48 2018 New Revision: 481098 URL: https://svnweb.freebsd.org/changeset/ports/481098 Log: MFH: r481064 www/gitlab-ce security update to 11.3.1. For more details please see here: https://about.gitlab.com/2018/10/01/security-release-gitlab-11-dot-3-dot-1-released/ Approved by: mentors (implicit) MFC after: 0d Security: 065b3b72-c5ab-11e8-9ae2-001b217b3468 Approved by: ports-secteam (miwi) Modified: branches/2018Q4/www/gitlab-ce/Makefile branches/2018Q4/www/gitlab-ce/distinfo branches/2018Q4/www/gitlab-ce/pkg-plist Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/www/gitlab-ce/Makefile ============================================================================== --- branches/2018Q4/www/gitlab-ce/Makefile Tue Oct 2 06:20:32 2018 (r481097) +++ branches/2018Q4/www/gitlab-ce/Makefile Tue Oct 2 06:21:48 2018 (r481098) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gitlab-ce -PORTVERSION= 11.3.0 +PORTVERSION= 11.3.1 CATEGORIES= www devel MAINTAINER= mfechner@FreeBSD.org @@ -18,7 +18,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE MY_DEPENDS= git>=2.16.2:devel/git \ gitlab-shell>=8.3.3:devel/gitlab-shell \ gitlab-workhorse>=6.1.0:www/gitlab-workhorse \ - gitaly>=0.120.0:devel/gitaly \ + gitaly>=0.120.1:devel/gitaly \ gitlab-pages>=1.1.0:www/gitlab-pages \ redis>=2.8.23:databases/redis \ npm>=4.3.0:www/npm \ @@ -218,7 +218,7 @@ USE_RC_SUBR= gitlab USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find the here: https://gitlab.com/gitlab-org/gitlab-ce/tags -GL_COMMIT= 17bd59adecf525e5e0a42101d241d05e29228338 +GL_COMMIT= 32cb452ee039e11b42933646f982b5e36363d360 USERS= git GROUPS= git Modified: branches/2018Q4/www/gitlab-ce/distinfo ============================================================================== --- branches/2018Q4/www/gitlab-ce/distinfo Tue Oct 2 06:20:32 2018 (r481097) +++ branches/2018Q4/www/gitlab-ce/distinfo Tue Oct 2 06:21:48 2018 (r481098) @@ -1,3 +1,3 @@ -TIMESTAMP = 1537563375 -SHA256 (gitlab-org-gitlab-ce-17bd59adecf525e5e0a42101d241d05e29228338_GL0.tar.gz) = 7a3615de5c2359f10f5f0ec606871a3034546e7f5cf41f41809665fe56a11464 -SIZE (gitlab-org-gitlab-ce-17bd59adecf525e5e0a42101d241d05e29228338_GL0.tar.gz) = 42430478 +TIMESTAMP = 1538419242 +SHA256 (gitlab-org-gitlab-ce-32cb452ee039e11b42933646f982b5e36363d360_GL0.tar.gz) = fd5f44632b842c117362ec105ff4a6130706d13a29ce5bf95724671126f8f784 +SIZE (gitlab-org-gitlab-ce-32cb452ee039e11b42933646f982b5e36363d360_GL0.tar.gz) = 42434337 Modified: branches/2018Q4/www/gitlab-ce/pkg-plist ============================================================================== --- branches/2018Q4/www/gitlab-ce/pkg-plist Tue Oct 2 06:20:32 2018 (r481097) +++ branches/2018Q4/www/gitlab-ce/pkg-plist Tue Oct 2 06:21:48 2018 (r481098) @@ -10347,6 +10347,7 @@ %%WWWDIR%%/rubocop/cop/gitlab/httparty.rb %%WWWDIR%%/rubocop/cop/gitlab/module_with_instance_variables.rb %%WWWDIR%%/rubocop/cop/gitlab/predicate_memoization.rb +%%WWWDIR%%/rubocop/cop/group_public_or_visible_to_user.rb %%WWWDIR%%/rubocop/cop/include_sidekiq_worker.rb %%WWWDIR%%/rubocop/cop/line_break_around_conditional_block.rb %%WWWDIR%%/rubocop/cop/migration/add_column.rb @@ -11892,6 +11893,7 @@ %%WWWDIR%%/spec/javascripts/issue_show/components/form_spec.js %%WWWDIR%%/spec/javascripts/issue_show/components/title_spec.js %%WWWDIR%%/spec/javascripts/issue_show/helpers.js +%%WWWDIR%%/spec/javascripts/issue_show/index_spec.js %%WWWDIR%%/spec/javascripts/issue_show/mock_data.js %%WWWDIR%%/spec/javascripts/issue_spec.js %%WWWDIR%%/spec/javascripts/job_spec.js @@ -13484,6 +13486,7 @@ %%WWWDIR%%/spec/requests/api/projects_spec.rb %%WWWDIR%%/spec/requests/api/protected_branches_spec.rb %%WWWDIR%%/spec/requests/api/protected_tags_spec.rb +%%WWWDIR%%/spec/requests/api/redacted_events_spec.rb %%WWWDIR%%/spec/requests/api/repositories_spec.rb %%WWWDIR%%/spec/requests/api/resource_label_events_spec.rb %%WWWDIR%%/spec/requests/api/runner_spec.rb @@ -13528,6 +13531,7 @@ %%WWWDIR%%/spec/rubocop/cop/gitlab/httparty_spec.rb %%WWWDIR%%/spec/rubocop/cop/gitlab/module_with_instance_variables_spec.rb %%WWWDIR%%/spec/rubocop/cop/gitlab/predicate_memoization_spec.rb +%%WWWDIR%%/spec/rubocop/cop/group_public_or_visible_to_user_spec.rb %%WWWDIR%%/spec/rubocop/cop/include_sidekiq_worker_spec.rb %%WWWDIR%%/spec/rubocop/cop/line_break_around_conditional_block_spec.rb %%WWWDIR%%/spec/rubocop/cop/migration/add_concurrent_foreign_key_spec.rb @@ -13571,6 +13575,7 @@ %%WWWDIR%%/spec/serializers/deploy_key_entity_spec.rb %%WWWDIR%%/spec/serializers/deployment_entity_spec.rb %%WWWDIR%%/spec/serializers/diff_file_entity_spec.rb +%%WWWDIR%%/spec/serializers/diff_line_entity_spec.rb %%WWWDIR%%/spec/serializers/diff_line_serializer_spec.rb %%WWWDIR%%/spec/serializers/diffs_entity_spec.rb %%WWWDIR%%/spec/serializers/discussion_entity_spec.rb From owner-svn-ports-branches@freebsd.org Tue Oct 2 06:56:33 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7BE5010B934A; Tue, 2 Oct 2018 06:56:33 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2E3667F1AA; Tue, 2 Oct 2018 06:56:33 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 174E12C511; Tue, 2 Oct 2018 06:56:33 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w926uWJW050146; Tue, 2 Oct 2018 06:56:32 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w926uW7o050144; Tue, 2 Oct 2018 06:56:32 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201810020656.w926uW7o050144@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 2 Oct 2018 06:56:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481099 - in branches/2018Q4/www/newsboat: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in branches/2018Q4/www/newsboat: . files X-SVN-Commit-Revision: 481099 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 02 Oct 2018 06:56:33 -0000 Author: tobik Date: Tue Oct 2 06:56:32 2018 New Revision: 481099 URL: https://svnweb.freebsd.org/changeset/ports/481099 Log: MFH: r481077 www/newsboat: Update to 2.13 Changes: https://github.com/newsboat/newsboat/blob/r2.13/CHANGELOG.md PR: 231866 Submitted by: mt@markoturk.info (maintainer) Approved by: ports-secteam (miwi) Deleted: branches/2018Q4/www/newsboat/files/patch-json-libc++7 Modified: branches/2018Q4/www/newsboat/Makefile branches/2018Q4/www/newsboat/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/www/newsboat/Makefile ============================================================================== --- branches/2018Q4/www/newsboat/Makefile Tue Oct 2 06:21:48 2018 (r481098) +++ branches/2018Q4/www/newsboat/Makefile Tue Oct 2 06:56:32 2018 (r481099) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= newsboat -PORTVERSION= 2.12 -PORTREVISION= 2 +PORTVERSION= 2.13 DISTVERSIONPREFIX= r CATEGORIES= www @@ -18,7 +17,7 @@ LIB_DEPENDS= libstfl.so:devel/stfl \ libcurl.so:ftp/curl \ libjson-c.so:devel/json-c -USES= compiler:c++11-lib gettext gmake iconv:translit ncurses \ +USES= compiler:c++11-lib gettext gmake gnome iconv:translit ncurses \ pkgconfig sqlite shebangfix ssl USE_GITHUB= yes USE_CXXSTD= gnu++11 Modified: branches/2018Q4/www/newsboat/distinfo ============================================================================== --- branches/2018Q4/www/newsboat/distinfo Tue Oct 2 06:21:48 2018 (r481098) +++ branches/2018Q4/www/newsboat/distinfo Tue Oct 2 06:56:32 2018 (r481099) @@ -1,3 +1,3 @@ -TIMESTAMP = 1530284475 -SHA256 (newsboat-newsboat-r2.12_GH0.tar.gz) = 8f2f511703d3218ab195fa48dc94306f5e13ceff86d94dcf78d917cb57090c88 -SIZE (newsboat-newsboat-r2.12_GH0.tar.gz) = 660853 +TIMESTAMP = 1538306020 +SHA256 (newsboat-newsboat-r2.13_GH0.tar.gz) = 3e3b30a03dda293b6187475ae300abe9fcdbf03b98e55ed8f1fe6a0ffa548508 +SIZE (newsboat-newsboat-r2.13_GH0.tar.gz) = 686245 From owner-svn-ports-branches@freebsd.org Tue Oct 2 06:57:36 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 070DE10B939C; Tue, 2 Oct 2018 06:57:36 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B04C87F2A1; Tue, 2 Oct 2018 06:57:35 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AB26E2C514; Tue, 2 Oct 2018 06:57:35 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w926vZgv050358; Tue, 2 Oct 2018 06:57:35 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w926vZux050355; Tue, 2 Oct 2018 06:57:35 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201810020657.w926vZux050355@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 2 Oct 2018 06:57:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481100 - in branches/2018Q4/editors/mg: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in branches/2018Q4/editors/mg: . files X-SVN-Commit-Revision: 481100 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 02 Oct 2018 06:57:36 -0000 Author: tobik Date: Tue Oct 2 06:57:34 2018 New Revision: 481100 URL: https://svnweb.freebsd.org/changeset/ports/481100 Log: MFH: r481035 editors/mg: Update to 20180927 This brings mg up to what will be in OpenBSD 6.4. Simplify port by moving to Brian Callahan's portable mg release. It has a configure script to detect OS features and it hopefully won't break building mg on FreeBSD for no reason. Approved by: ports-secteam (miwi) Deleted: branches/2018Q4/editors/mg/files/ Modified: branches/2018Q4/editors/mg/Makefile branches/2018Q4/editors/mg/distinfo branches/2018Q4/editors/mg/pkg-descr Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/editors/mg/Makefile ============================================================================== --- branches/2018Q4/editors/mg/Makefile Tue Oct 2 06:56:32 2018 (r481099) +++ branches/2018Q4/editors/mg/Makefile Tue Oct 2 06:57:34 2018 (r481100) @@ -2,8 +2,9 @@ # $FreeBSD$ PORTNAME= mg -PORTVERSION= 20180408 +PORTVERSION= 20180927 CATEGORIES= editors +MASTER_SITES= https://github.com/ibara/mg/releases/download/mg-${PORTVERSION}/ MAINTAINER= tobik@FreeBSD.org COMMENT= Small, fast Emacs-like editor @@ -11,30 +12,12 @@ COMMENT= Small, fast Emacs-like editor LICENSE= PD USES= ncurses -USE_GITHUB= yes -GH_ACCOUNT= hboetes +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} PLIST_FILES= bin/mg man/man1/mg.1.gz -PORTDOCS= README tutorial +PORTDOCS= README-Mg README.md tutorial OPTIONS_DEFINE= DOCS - -.include - -.if ${OPSYS} != FreeBSD || ${OSVERSION} < 1100072 -EXTRA_PATCHES= ${FILESDIR}/extra-patch-def.h - -post-patch: - ${CP} ${FILESDIR}/reallocarray.c ${WRKSRC} - @${REINPLACE_CMD} 's| tags.c| tags.c reallocarray.c|' ${WRKSRC}/Makefile -.endif - -pre-configure: - @${REINPLACE_CMD} 's|-lcurses|-lncurses|' ${WRKSRC}/Makefile - @${REINPLACE_CMD} 's|__dead|__dead2|' ${WRKSRC}/main.c - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: branches/2018Q4/editors/mg/distinfo ============================================================================== --- branches/2018Q4/editors/mg/distinfo Tue Oct 2 06:56:32 2018 (r481099) +++ branches/2018Q4/editors/mg/distinfo Tue Oct 2 06:57:34 2018 (r481100) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526285944 -SHA256 (hboetes-mg-20180408_GH0.tar.gz) = 85c1d47500fd042e427b670c630c228668bcc4f532a280f9ecce3d302229bbe4 -SIZE (hboetes-mg-20180408_GH0.tar.gz) = 141988 +TIMESTAMP = 1538400869 +SHA256 (mg-20180927.tar.gz) = 99b2fd2cf9d6474153d6c5769c818dd5514c147b8a8ad660a5e114bc1ebd504d +SIZE (mg-20180927.tar.gz) = 156632 Modified: branches/2018Q4/editors/mg/pkg-descr ============================================================================== --- branches/2018Q4/editors/mg/pkg-descr Tue Oct 2 06:56:32 2018 (r481099) +++ branches/2018Q4/editors/mg/pkg-descr Tue Oct 2 06:57:34 2018 (r481100) @@ -3,4 +3,4 @@ editor maintained by the OpenBSD Project. It is inten who can't, or don't want to, run the real GNU Emacs, or are not familiar with the vi(1) editor. -WWW: https://github.com/hboetes/mg +WWW: https://github.com/ibara/mg From owner-svn-ports-branches@freebsd.org Tue Oct 2 07:13:08 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9AC6810B998C; Tue, 2 Oct 2018 07:13:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 504D27FA3C; Tue, 2 Oct 2018 07:13:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4B3692C85B; Tue, 2 Oct 2018 07:13:08 +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 w927D8BO060754; Tue, 2 Oct 2018 07:13:08 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w927D7jr060752; Tue, 2 Oct 2018 07:13:07 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810020713.w927D7jr060752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 2 Oct 2018 07:13:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481101 - branches/2018Q4/www/py-flexget X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q4/www/py-flexget X-SVN-Commit-Revision: 481101 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 02 Oct 2018 07:13:08 -0000 Author: jbeich Date: Tue Oct 2 07:13:07 2018 New Revision: 481101 URL: https://svnweb.freebsd.org/changeset/ports/481101 Log: MFH: r481051 www/py-flexget: update to 2.14.24 Changes: https://github.com/Flexget/Flexget/compare/2.14.22...2.14.24 Approved by: ports-secteam (miwi) Modified: branches/2018Q4/www/py-flexget/Makefile branches/2018Q4/www/py-flexget/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/www/py-flexget/Makefile ============================================================================== --- branches/2018Q4/www/py-flexget/Makefile Tue Oct 2 06:57:34 2018 (r481100) +++ branches/2018Q4/www/py-flexget/Makefile Tue Oct 2 07:13:07 2018 (r481101) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flexget -PORTVERSION= 2.14.22 +PORTVERSION= 2.14.24 PORTEPOCH= 1 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: branches/2018Q4/www/py-flexget/distinfo ============================================================================== --- branches/2018Q4/www/py-flexget/distinfo Tue Oct 2 06:57:34 2018 (r481100) +++ branches/2018Q4/www/py-flexget/distinfo Tue Oct 2 07:13:07 2018 (r481101) @@ -1,3 +1,3 @@ -TIMESTAMP = 1538100224 -SHA256 (flexget-Flexget-2.14.22_GH0.tar.gz) = 2d1505d3b66aafe200cea69140c75f43a24008f20a79d0ed7776a5707cb0ed72 -SIZE (flexget-Flexget-2.14.22_GH0.tar.gz) = 6633672 +TIMESTAMP = 1538359480 +SHA256 (flexget-Flexget-2.14.24_GH0.tar.gz) = 3459a600848f7f44f4dc0119f26a30c0959c338a157f957d58d457d3dde9977c +SIZE (flexget-Flexget-2.14.24_GH0.tar.gz) = 6633696 From owner-svn-ports-branches@freebsd.org Tue Oct 2 08:19:59 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D10310BBBC4; Tue, 2 Oct 2018 08:19:59 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 194DA81B17; Tue, 2 Oct 2018 08:19:59 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 11E2B2D29C; Tue, 2 Oct 2018 08:19:59 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w928Jw6m091282; Tue, 2 Oct 2018 08:19:58 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w928Jwee091279; Tue, 2 Oct 2018 08:19:58 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201810020819.w928Jwee091279@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 2 Oct 2018 08:19:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481103 - in branches/2018Q4: graphics/goocanvas2 mail/claws-mail net/gtk-vnc X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in branches/2018Q4: graphics/goocanvas2 mail/claws-mail net/gtk-vnc X-SVN-Commit-Revision: 481103 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 02 Oct 2018 08:19:59 -0000 Author: antoine Date: Tue Oct 2 08:19:58 2018 New Revision: 481103 URL: https://svnweb.freebsd.org/changeset/ports/481103 Log: MFH: r481102 Add explicit USES=python Modified: branches/2018Q4/graphics/goocanvas2/Makefile branches/2018Q4/mail/claws-mail/Makefile branches/2018Q4/net/gtk-vnc/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/graphics/goocanvas2/Makefile ============================================================================== --- branches/2018Q4/graphics/goocanvas2/Makefile Tue Oct 2 08:19:24 2018 (r481102) +++ branches/2018Q4/graphics/goocanvas2/Makefile Tue Oct 2 08:19:58 2018 (r481103) @@ -14,7 +14,7 @@ COMMENT= Canvas widget for GTK+ 3 GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= gmake libtool pathfix pkgconfig tar:xz +USES= gmake libtool pathfix pkgconfig python tar:xz USE_GNOME= gtk30 introspection:build USE_LDCONFIG= yes Modified: branches/2018Q4/mail/claws-mail/Makefile ============================================================================== --- branches/2018Q4/mail/claws-mail/Makefile Tue Oct 2 08:19:24 2018 (r481102) +++ branches/2018Q4/mail/claws-mail/Makefile Tue Oct 2 08:19:58 2018 (r481103) @@ -18,7 +18,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ RUN_DEPENDS= mime-support>0:misc/mime-support USES= compiler:c++11-lang cpe desktop-file-utils gnome pathfix \ - python:2.7,run shebangfix ssl + python:2.7 shebangfix ssl USE_XORG= ice sm USE_GNOME= cairo gtk20 librsvg2 SHEBANG_FILES= tools/*.pl tools/*.py tools/tb2claws-mail Modified: branches/2018Q4/net/gtk-vnc/Makefile ============================================================================== --- branches/2018Q4/net/gtk-vnc/Makefile Tue Oct 2 08:19:24 2018 (r481102) +++ branches/2018Q4/net/gtk-vnc/Makefile Tue Oct 2 08:19:58 2018 (r481103) @@ -19,7 +19,7 @@ LIB_DEPENDS= libgnutls.so:security/gnutls \ libsasl2.so:security/cyrus-sasl2 USE_GNOME= cairo gdkpixbuf2 gtk30 intltool introspection:build -USES= gettext gmake gnome libtool localbase pathfix pkgconfig tar:xz +USES= gettext gmake gnome libtool localbase pathfix pkgconfig python tar:xz USE_XORG= x11 USE_LDCONFIG= yes GNU_CONFIGURE= yes From owner-svn-ports-branches@freebsd.org Tue Oct 2 19:47:26 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0DC910AA400; Tue, 2 Oct 2018 19:47:26 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 71B86799EA; Tue, 2 Oct 2018 19:47:26 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6C8B4498E; Tue, 2 Oct 2018 19:47:26 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w92JlQ9w046058; Tue, 2 Oct 2018 19:47:26 GMT (envelope-from pizzamig@FreeBSD.org) Received: (from pizzamig@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w92JlQJF046057; Tue, 2 Oct 2018 19:47:26 GMT (envelope-from pizzamig@FreeBSD.org) Message-Id: <201810021947.w92JlQJF046057@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pizzamig set sender to pizzamig@FreeBSD.org using -f From: Luca Pizzamiglio Date: Tue, 2 Oct 2018 19:47:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481131 - branches/2018Q4/net/librdkafka X-SVN-Group: ports-branches X-SVN-Commit-Author: pizzamig X-SVN-Commit-Paths: branches/2018Q4/net/librdkafka X-SVN-Commit-Revision: 481131 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 02 Oct 2018 19:47:26 -0000 Author: pizzamig Date: Tue Oct 2 19:47:25 2018 New Revision: 481131 URL: https://svnweb.freebsd.org/changeset/ports/481131 Log: MFH: r481029 net/librdkafka: fix build with powerpc64 PR: 231777 Reported by: Piotr Kubaj Sponsored by: IntegriCloud Approved by: ports-secteam (miwi) Modified: branches/2018Q4/net/librdkafka/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/net/librdkafka/Makefile ============================================================================== --- branches/2018Q4/net/librdkafka/Makefile Tue Oct 2 19:21:49 2018 (r481130) +++ branches/2018Q4/net/librdkafka/Makefile Tue Oct 2 19:47:25 2018 (r481131) @@ -14,13 +14,13 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_mips= fails to build: undefined reference to __sync_add_and_fetch_4 BROKEN_mips64= fails to build: undefined reference to __sync_add_and_fetch_4 -BROKEN_powerpc64= fails to build: cc: Internal error: Segmentation fault (program ld) BUILD_DEPENDS= bash:shells/bash LIB_DEPENDS= liblz4.so:archivers/liblz4 -USES= gmake ssl +USES= compiler:c11 gmake ssl USE_GITHUB= yes + GH_ACCOUNT= edenhill GNU_CONFIGURE= yes From owner-svn-ports-branches@freebsd.org Wed Oct 3 08:14:00 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A17D410BBEF0; Wed, 3 Oct 2018 08:14:00 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F00C712BC; Wed, 3 Oct 2018 08:14:00 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 48420144E9; Wed, 3 Oct 2018 08:14:00 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w938E0QX030054; Wed, 3 Oct 2018 08:14:00 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w938Dx2S030048; Wed, 3 Oct 2018 08:13:59 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201810030813.w938Dx2S030048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 3 Oct 2018 08:13:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481147 - in branches/2018Q4/net-mgmt/monitoring-plugins: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in branches/2018Q4/net-mgmt/monitoring-plugins: . files X-SVN-Commit-Revision: 481147 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 03 Oct 2018 08:14:00 -0000 Author: mat Date: Wed Oct 3 08:13:59 2018 New Revision: 481147 URL: https://svnweb.freebsd.org/changeset/ports/481147 Log: MFH: r481146 Fix spurious crashes. PR: 231801 Submitted by: madpilot Added: branches/2018Q4/net-mgmt/monitoring-plugins/files/patch-lib_utils__base.c - copied unchanged from r481146, head/net-mgmt/monitoring-plugins/files/patch-lib_utils__base.c Modified: branches/2018Q4/net-mgmt/monitoring-plugins/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/net-mgmt/monitoring-plugins/Makefile ============================================================================== --- branches/2018Q4/net-mgmt/monitoring-plugins/Makefile Wed Oct 3 08:09:59 2018 (r481146) +++ branches/2018Q4/net-mgmt/monitoring-plugins/Makefile Wed Oct 3 08:13:59 2018 (r481147) @@ -3,7 +3,7 @@ PORTNAME= monitoring-plugins PORTVERSION= 2.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-mgmt MASTER_SITES= https://www.monitoring-plugins.org/download/ LOCAL/mat/${PORTNAME} Copied: branches/2018Q4/net-mgmt/monitoring-plugins/files/patch-lib_utils__base.c (from r481146, head/net-mgmt/monitoring-plugins/files/patch-lib_utils__base.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q4/net-mgmt/monitoring-plugins/files/patch-lib_utils__base.c Wed Oct 3 08:13:59 2018 (r481147, copy of r481146, head/net-mgmt/monitoring-plugins/files/patch-lib_utils__base.c) @@ -0,0 +1,20 @@ +--- lib/utils_base.c.orig 2016-11-29 08:45:08 UTC ++++ lib/utils_base.c +@@ -87,10 +87,13 @@ void _get_monitoring_plugin( monitoring_ + void + die (int result, const char *fmt, ...) + { +- va_list ap; +- va_start (ap, fmt); +- vprintf (fmt, ap); +- va_end (ap); ++ if(fmt!=NULL) { ++ va_list ap; ++ va_start (ap, fmt); ++ vprintf (fmt, ap); ++ va_end (ap); ++ } ++ + if(this_monitoring_plugin!=NULL) { + np_cleanup(); + } From owner-svn-ports-branches@freebsd.org Wed Oct 3 13:53:26 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DCC8E10C3DA5; Wed, 3 Oct 2018 13:53:26 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 906A17B85C; Wed, 3 Oct 2018 13:53:26 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8B60617CE5; Wed, 3 Oct 2018 13:53:26 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w93DrQ5C003821; Wed, 3 Oct 2018 13:53:26 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w93DrQJq003820; Wed, 3 Oct 2018 13:53:26 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201810031353.w93DrQJq003820@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 3 Oct 2018 13:53:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481161 - branches/2018Q4/www/py-django21 X-SVN-Group: ports-branches X-SVN-Commit-Author: wen X-SVN-Commit-Paths: branches/2018Q4/www/py-django21 X-SVN-Commit-Revision: 481161 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 03 Oct 2018 13:53:27 -0000 Author: wen Date: Wed Oct 3 13:53:25 2018 New Revision: 481161 URL: https://svnweb.freebsd.org/changeset/ports/481161 Log: MFH: r481115 - Update to 2.1.2(include security fix) Approved by: ports-secteam@(miwi@) Modified: branches/2018Q4/www/py-django21/Makefile branches/2018Q4/www/py-django21/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/www/py-django21/Makefile ============================================================================== --- branches/2018Q4/www/py-django21/Makefile Wed Oct 3 13:46:36 2018 (r481160) +++ branches/2018Q4/www/py-django21/Makefile Wed Oct 3 13:53:25 2018 (r481161) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django -PORTVERSION= 2.1.1 +PORTVERSION= 2.1.2 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ https://www.djangoproject.com/m/releases/${PORTVERSION}/ Modified: branches/2018Q4/www/py-django21/distinfo ============================================================================== --- branches/2018Q4/www/py-django21/distinfo Wed Oct 3 13:46:36 2018 (r481160) +++ branches/2018Q4/www/py-django21/distinfo Wed Oct 3 13:53:25 2018 (r481161) @@ -1,3 +1,3 @@ -TIMESTAMP = 1535806176 -SHA256 (python/Django-2.1.1.tar.gz) = e1cc1cd6b658aa4e052f5f2b148bfda08091d7c3558529708342e37e4e33f72c -SIZE (python/Django-2.1.1.tar.gz) = 8595422 +TIMESTAMP = 1538485349 +SHA256 (python/Django-2.1.2.tar.gz) = efbcad7ebb47daafbcead109b38a5bd519a3c3cd92c6ed0f691ff97fcdd16b45 +SIZE (python/Django-2.1.2.tar.gz) = 8611286 From owner-svn-ports-branches@freebsd.org Wed Oct 3 20:08:59 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15D1710AC064; Wed, 3 Oct 2018 20:08:59 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BFC258D6D7; Wed, 3 Oct 2018 20:08:58 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BA9711BB0B; Wed, 3 Oct 2018 20:08:58 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w93K8wDh000748; Wed, 3 Oct 2018 20:08:58 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w93K8wZQ000746; Wed, 3 Oct 2018 20:08:58 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201810032008.w93K8wZQ000746@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Wed, 3 Oct 2018 20:08:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481185 - branches/2018Q4/net/traefik X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: branches/2018Q4/net/traefik X-SVN-Commit-Revision: 481185 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 03 Oct 2018 20:08:59 -0000 Author: riggs Date: Wed Oct 3 20:08:58 2018 New Revision: 481185 URL: https://svnweb.freebsd.org/changeset/ports/481185 Log: MFH: r481184 Update to upstream version 1.7.1 Details: - New features and bug fixes (many related to acme) in the 1.7 branch, see https://github.com/containous/traefik/releases/tag/v1.7.0 - Additional bug fixes sind 1.7.0 release, see https://github.com/containous/traefik/releases/tag/v1.7.1 Approved by: ports-secteam (riggs) Modified: branches/2018Q4/net/traefik/Makefile branches/2018Q4/net/traefik/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/net/traefik/Makefile ============================================================================== --- branches/2018Q4/net/traefik/Makefile Wed Oct 3 20:07:46 2018 (r481184) +++ branches/2018Q4/net/traefik/Makefile Wed Oct 3 20:08:58 2018 (r481185) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= traefik -PORTVERSION= 1.6.6 +PORTVERSION= 1.7.1 DISTVERSIONPREFIX= v CATEGORIES= net MASTER_SITES= LOCAL/riggs/${PORTNAME}:webui Modified: branches/2018Q4/net/traefik/distinfo ============================================================================== --- branches/2018Q4/net/traefik/distinfo Wed Oct 3 20:07:46 2018 (r481184) +++ branches/2018Q4/net/traefik/distinfo Wed Oct 3 20:08:58 2018 (r481185) @@ -1,5 +1,5 @@ -TIMESTAMP = 1535614354 -SHA256 (traefik-webui-static-1.6.6.tar.gz) = 22293c2e04213fc37bb1dac2ef9447ea2856c01cc3ff212dde4d614fd7f57608 -SIZE (traefik-webui-static-1.6.6.tar.gz) = 920499 -SHA256 (containous-traefik-v1.6.6_GH0.tar.gz) = f5b5e5b6c990e1e06d2ae599e5cc04864831b3072b2d7c3fcdd71fbd7100fb52 -SIZE (containous-traefik-v1.6.6_GH0.tar.gz) = 9775054 +TIMESTAMP = 1538589536 +SHA256 (traefik-webui-static-1.7.1.tar.gz) = 36b85e607588b81981642d68fe72c0796d345be06b1eefa5f7d859b019172210 +SIZE (traefik-webui-static-1.7.1.tar.gz) = 924811 +SHA256 (containous-traefik-v1.7.1_GH0.tar.gz) = 4059f119fec2365739a95c1c583efc8d106f9bebda9e9b676da1ae09b491c5f2 +SIZE (containous-traefik-v1.7.1_GH0.tar.gz) = 10366440 From owner-svn-ports-branches@freebsd.org Wed Oct 3 23:19:55 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24AFC10B0A2D; Wed, 3 Oct 2018 23:19:55 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C26F674781; Wed, 3 Oct 2018 23:19:54 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B92941DB96; Wed, 3 Oct 2018 23:19:54 +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 w93NJsxG097944; Wed, 3 Oct 2018 23:19:54 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w93NJsTl097942; Wed, 3 Oct 2018 23:19:54 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810032319.w93NJsTl097942@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 3 Oct 2018 23:19:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481191 - branches/2018Q4/emulators/rpcs3 X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q4/emulators/rpcs3 X-SVN-Commit-Revision: 481191 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 03 Oct 2018 23:19:55 -0000 Author: jbeich Date: Wed Oct 3 23:19:54 2018 New Revision: 481191 URL: https://svnweb.freebsd.org/changeset/ports/481191 Log: MFH: r481189 emulators/rpcs3: update to 0.0.5.968 Changes: https://github.com/RPCS3/rpcs3/compare/145667831...cc846eb67 Approved by: ports-secteam (junovitch, implicit for snapshots) Modified: branches/2018Q4/emulators/rpcs3/Makefile branches/2018Q4/emulators/rpcs3/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/emulators/rpcs3/Makefile ============================================================================== --- branches/2018Q4/emulators/rpcs3/Makefile Wed Oct 3 23:18:53 2018 (r481190) +++ branches/2018Q4/emulators/rpcs3/Makefile Wed Oct 3 23:19:54 2018 (r481191) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-951 -DISTVERSIONSUFFIX= -g145667831 +DISTVERSION= 0.0.5-968 +DISTVERSIONSUFFIX= -gcc846eb67 CATEGORIES= emulators PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ Modified: branches/2018Q4/emulators/rpcs3/distinfo ============================================================================== --- branches/2018Q4/emulators/rpcs3/distinfo Wed Oct 3 23:18:53 2018 (r481190) +++ branches/2018Q4/emulators/rpcs3/distinfo Wed Oct 3 23:19:54 2018 (r481191) @@ -1,6 +1,6 @@ -TIMESTAMP = 1538436146 -SHA256 (RPCS3-rpcs3-v0.0.5-951-g145667831_GH0.tar.gz) = fa9ae34567264d9d8e65cae88cb219b8736d643e7539ff405642c4a6eeb57f74 -SIZE (RPCS3-rpcs3-v0.0.5-951-g145667831_GH0.tar.gz) = 5011601 +TIMESTAMP = 1538603359 +SHA256 (RPCS3-rpcs3-v0.0.5-968-gcc846eb67_GH0.tar.gz) = af50ba73838a6ea7d97302af0517f2a10fc52c744e180c386aaf7c64a160925e +SIZE (RPCS3-rpcs3-v0.0.5-968-gcc846eb67_GH0.tar.gz) = 5013046 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-26-g4c27501_GH0.tar.gz) = 4f58ba2a51136cc6af0f1d833688b55f78468c4f5429a4bf9b38bb51c9d212b1 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-26-g4c27501_GH0.tar.gz) = 105372 SHA256 (RPCS3-llvm-5c906fd1694e_GH0.tar.gz) = 8bbe95fbbea545ebb03e73d526add64e2853f86176ad42690f8ce5846bd419ce From owner-svn-ports-branches@freebsd.org Wed Oct 3 23:20:48 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D40610B0AC6; Wed, 3 Oct 2018 23:20:48 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 337ED7489F; Wed, 3 Oct 2018 23:20:48 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2E9581DBAA; Wed, 3 Oct 2018 23:20:48 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w93NKmvB098135; Wed, 3 Oct 2018 23:20:48 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w93NKlrk098133; Wed, 3 Oct 2018 23:20:47 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810032320.w93NKlrk098133@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 3 Oct 2018 23:20:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481192 - branches/2018Q4/emulators/citra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q4/emulators/citra X-SVN-Commit-Revision: 481192 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 03 Oct 2018 23:20:48 -0000 Author: jbeich Date: Wed Oct 3 23:20:47 2018 New Revision: 481192 URL: https://svnweb.freebsd.org/changeset/ports/481192 Log: MFH: r481190 emulators/citra: update to s20181003 Changes: https://github.com/citra-emu/citra/compare/fceec3494...ea53b0f79 Approved by: ports-secteam (swills, implicit for snapshots) Modified: branches/2018Q4/emulators/citra/Makefile branches/2018Q4/emulators/citra/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/emulators/citra/Makefile ============================================================================== --- branches/2018Q4/emulators/citra/Makefile Wed Oct 3 23:19:54 2018 (r481191) +++ branches/2018Q4/emulators/citra/Makefile Wed Oct 3 23:20:47 2018 (r481192) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20181001 +PORTVERSION= s20181003 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= fceec3494 +GH_TAGNAME= ea53b0f79 GH_TUPLE= citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ MerryMage:dynarmic:r1-992-g4e6848d1:dynarmic/externals/dynarmic \ Modified: branches/2018Q4/emulators/citra/distinfo ============================================================================== --- branches/2018Q4/emulators/citra/distinfo Wed Oct 3 23:19:54 2018 (r481191) +++ branches/2018Q4/emulators/citra/distinfo Wed Oct 3 23:20:47 2018 (r481192) @@ -1,6 +1,6 @@ -TIMESTAMP = 1538433163 -SHA256 (citra-emu-citra-s20181001-fceec3494_GH0.tar.gz) = e6c02be3d8772459b40dd44c464190f70d6592e9121b1e64cd13461da991c3c8 -SIZE (citra-emu-citra-s20181001-fceec3494_GH0.tar.gz) = 4486762 +TIMESTAMP = 1538602900 +SHA256 (citra-emu-citra-s20181003-ea53b0f79_GH0.tar.gz) = ed389c68d5f632226fb71238a686116c55480d40277b72d388a879f976b61318 +SIZE (citra-emu-citra-s20181003-ea53b0f79_GH0.tar.gz) = 4487586 SHA256 (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = f3fc8c9d4991b05ca1e1c8f5907ecd3ffd9724a8dccf328087b4784cda5c7db3 SIZE (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = 1762942 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c From owner-svn-ports-branches@freebsd.org Wed Oct 3 23:22:34 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 90A2410B0C7A; Wed, 3 Oct 2018 23:22:34 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46C0174BD7; Wed, 3 Oct 2018 23:22:34 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 41E401DD41; Wed, 3 Oct 2018 23:22:34 +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 w93NMY1A002860; Wed, 3 Oct 2018 23:22:34 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w93NMYlW002859; Wed, 3 Oct 2018 23:22:34 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810032322.w93NMYlW002859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 3 Oct 2018 23:22:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481193 - branches/2018Q4/emulators/rpcs3/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q4/emulators/rpcs3/files X-SVN-Commit-Revision: 481193 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 03 Oct 2018 23:22:34 -0000 Author: jbeich Date: Wed Oct 3 23:22:33 2018 New Revision: 481193 URL: https://svnweb.freebsd.org/changeset/ports/481193 Log: MFH: r481033 emulators/rpcs3: drop FreeBSD 11.1 support after EOL Approved by: ports-secteam blanket (required by other MFHs) Deleted: branches/2018Q4/emulators/rpcs3/files/patch-libc++ Modified: Directory Properties: branches/2018Q4/ (props changed) From owner-svn-ports-branches@freebsd.org Thu Oct 4 03:45:43 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14DCE10BD997; Thu, 4 Oct 2018 03:45:43 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ABD3D80C43; Thu, 4 Oct 2018 03:45:42 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A0D9920CC1; Thu, 4 Oct 2018 03:45:42 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w943jglF036341; Thu, 4 Oct 2018 03:45:42 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w943jgio036340; Thu, 4 Oct 2018 03:45:42 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201810040345.w943jgio036340@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 4 Oct 2018 03:45:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481200 - branches/2018Q4/graphics/minder X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: branches/2018Q4/graphics/minder X-SVN-Commit-Revision: 481200 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 04 Oct 2018 03:45:43 -0000 Author: tobik Date: Thu Oct 4 03:45:42 2018 New Revision: 481200 URL: https://svnweb.freebsd.org/changeset/ports/481200 Log: MFH: r481151 graphics/minder: Update to 1.1.1 Changes: https://github.com/phase1geo/Minder/releases/tag/1.1.1 Approved by: ports-secteam (miwi) Modified: branches/2018Q4/graphics/minder/Makefile branches/2018Q4/graphics/minder/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/graphics/minder/Makefile ============================================================================== --- branches/2018Q4/graphics/minder/Makefile Thu Oct 4 03:26:58 2018 (r481199) +++ branches/2018Q4/graphics/minder/Makefile Thu Oct 4 03:45:42 2018 (r481200) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= minder -PORTVERSION= 1.1.0 +PORTVERSION= 1.1.1 CATEGORIES= graphics PKGNAMESUFFIX= -app # avoid PKGBASE collision with net-p2p/minder Modified: branches/2018Q4/graphics/minder/distinfo ============================================================================== --- branches/2018Q4/graphics/minder/distinfo Thu Oct 4 03:26:58 2018 (r481199) +++ branches/2018Q4/graphics/minder/distinfo Thu Oct 4 03:45:42 2018 (r481200) @@ -1,3 +1,3 @@ -TIMESTAMP = 1537432457 -SHA256 (phase1geo-Minder-1.1.0_GH0.tar.gz) = 37705dd3520ef52cfb93525696757d88a0b2bedece51be611fd7b9f2cabdeebc -SIZE (phase1geo-Minder-1.1.0_GH0.tar.gz) = 870236 +TIMESTAMP = 1538555818 +SHA256 (phase1geo-Minder-1.1.1_GH0.tar.gz) = 5c09e2ea1775949c2e3eb9c9df6e9cfac0bd3f57a7b622a017050692f8c600bc +SIZE (phase1geo-Minder-1.1.1_GH0.tar.gz) = 870516 From owner-svn-ports-branches@freebsd.org Thu Oct 4 13:22:51 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7338610AA46A; Thu, 4 Oct 2018 13:22:51 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 22A0196609; Thu, 4 Oct 2018 13:22:51 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1C3AD26B85; Thu, 4 Oct 2018 13:22:51 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w94DMoIV032955; Thu, 4 Oct 2018 13:22:50 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w94DMo7t032953; Thu, 4 Oct 2018 13:22:50 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201810041322.w94DMo7t032953@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Thu, 4 Oct 2018 13:22:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481221 - branches/2018Q4/security/strongswan X-SVN-Group: ports-branches X-SVN-Commit-Author: garga X-SVN-Commit-Paths: branches/2018Q4/security/strongswan X-SVN-Commit-Revision: 481221 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 04 Oct 2018 13:22:51 -0000 Author: garga Date: Thu Oct 4 13:22:50 2018 New Revision: 481221 URL: https://svnweb.freebsd.org/changeset/ports/481221 Log: MFH: r481111 security/strongswan: Update to 5.7.1 PR: 231862 Approved by: maintainer Obtained from: pfSense Security: CVE-2018-16151 CVE-2018-16152 Sponsored by: Rubicon Communications, LLC (Netgate) Approved by: ports-secteam (miwi) Modified: branches/2018Q4/security/strongswan/Makefile branches/2018Q4/security/strongswan/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/security/strongswan/Makefile ============================================================================== --- branches/2018Q4/security/strongswan/Makefile Thu Oct 4 13:11:08 2018 (r481220) +++ branches/2018Q4/security/strongswan/Makefile Thu Oct 4 13:22:50 2018 (r481221) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= strongswan -PORTVERSION= 5.7.0 +PORTVERSION= 5.7.1 CATEGORIES= security MASTER_SITES= http://download.strongswan.org/ \ http://download2.strongswan.org/ Modified: branches/2018Q4/security/strongswan/distinfo ============================================================================== --- branches/2018Q4/security/strongswan/distinfo Thu Oct 4 13:11:08 2018 (r481220) +++ branches/2018Q4/security/strongswan/distinfo Thu Oct 4 13:22:50 2018 (r481221) @@ -1,3 +1,3 @@ -TIMESTAMP = 1537883882 -SHA256 (strongswan-5.7.0.tar.bz2) = d6fd0994320bc027090f6ee34964e59c42e761e7dac36cfcf1836c8cefc53c5c -SIZE (strongswan-5.7.0.tar.bz2) = 4967449 +TIMESTAMP = 1538413648 +SHA256 (strongswan-5.7.1.tar.bz2) = 006f9c9126e2a2f4e7a874b5e1bd2abec1bbbb193c8b3b3a4c6ccd8c2d454bec +SIZE (strongswan-5.7.1.tar.bz2) = 4967533 From owner-svn-ports-branches@freebsd.org Thu Oct 4 13:44:10 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A72D910AB0D6; Thu, 4 Oct 2018 13:44:10 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 58B079756C; Thu, 4 Oct 2018 13:44:10 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 539C326EF6; Thu, 4 Oct 2018 13:44:10 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w94DiAnJ043640; Thu, 4 Oct 2018 13:44:10 GMT (envelope-from ler@FreeBSD.org) Received: (from ler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w94DiAU2043639; Thu, 4 Oct 2018 13:44:10 GMT (envelope-from ler@FreeBSD.org) Message-Id: <201810041344.w94DiAU2043639@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ler set sender to ler@FreeBSD.org using -f From: Larry Rosenman Date: Thu, 4 Oct 2018 13:44:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481223 - branches/2018Q4/security/clamav X-SVN-Group: ports-branches X-SVN-Commit-Author: ler X-SVN-Commit-Paths: branches/2018Q4/security/clamav X-SVN-Commit-Revision: 481223 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 04 Oct 2018 13:44:10 -0000 Author: ler Date: Thu Oct 4 13:44:09 2018 New Revision: 481223 URL: https://svnweb.freebsd.org/changeset/ports/481223 Log: MFH: r481197 security/clamav: update to 0.100.2. * Update to 0.100.2 - Reference: https://blog.clamav.net/2018/10/clamav-01002-has-been-released.html - Security: CVE-2018-14680, CVE-2018-14681, CVE-2018-14682, CVE-2018-15378 * Add gnome to USES to fix developer mode warning. PR: 231925 Submitted by: yasu@utahime.org Security: CVE-2018-14680, CVE-2018-14681, CVE-2018-14682, CVE-2018-15378 Approved by: ports-secteam (miwi) Modified: branches/2018Q4/security/clamav/Makefile branches/2018Q4/security/clamav/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/security/clamav/Makefile ============================================================================== --- branches/2018Q4/security/clamav/Makefile Thu Oct 4 13:43:48 2018 (r481222) +++ branches/2018Q4/security/clamav/Makefile Thu Oct 4 13:44:09 2018 (r481223) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= clamav -PORTVERSION= 0.100.1 -PORTREVISION= 1 +PORTVERSION= 0.100.2 CATEGORIES= security MASTER_SITES= http://www.clamav.net/downloads/production/ @@ -52,7 +51,7 @@ IPV6_CONFIGURE_ENABLE= ipv6 DMG_XAR_CONFIGURE_ENABLE= xml DMG_XAR_USE= GNOME=libxml2 -USES= cpe gmake libtool ncurses pathfix ssl +USES= cpe gmake gnome libtool ncurses pathfix ssl GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip Modified: branches/2018Q4/security/clamav/distinfo ============================================================================== --- branches/2018Q4/security/clamav/distinfo Thu Oct 4 13:43:48 2018 (r481222) +++ branches/2018Q4/security/clamav/distinfo Thu Oct 4 13:44:09 2018 (r481223) @@ -1,3 +1,3 @@ -TIMESTAMP = 1531160081 -SHA256 (clamav-0.100.1.tar.gz) = 84e026655152247de7237184ee13003701c40be030dd68e0316111049f58a59f -SIZE (clamav-0.100.1.tar.gz) = 16154415 +TIMESTAMP = 1538590041 +SHA256 (clamav-0.100.2.tar.gz) = 4a2e4f0cd41e62adb5a713b4a1857c49145cd09a69957e6d946ecad575206dd6 +SIZE (clamav-0.100.2.tar.gz) = 15926420 From owner-svn-ports-branches@freebsd.org Thu Oct 4 15:08:21 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1EC8B10AE2CB; Thu, 4 Oct 2018 15:08:21 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C85C773163; Thu, 4 Oct 2018 15:08:20 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C34B727BE7; Thu, 4 Oct 2018 15:08:20 +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 w94F8KHV084782; Thu, 4 Oct 2018 15:08:20 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w94F8KWZ084781; Thu, 4 Oct 2018 15:08:20 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201810041508.w94F8KWZ084781@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 4 Oct 2018 15:08:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481226 - in branches/2018Q4/databases/percona57-client: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in branches/2018Q4/databases/percona57-client: . files X-SVN-Commit-Revision: 481226 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 04 Oct 2018 15:08:21 -0000 Author: feld Date: Thu Oct 4 15:08:20 2018 New Revision: 481226 URL: https://svnweb.freebsd.org/changeset/ports/481226 Log: MFH: r481225 databases/percona57-client: Fix build with ppc64 PR: 231758 Added: branches/2018Q4/databases/percona57-client/files/patch-cmake_os_FreeBSD.cmake - copied unchanged from r481225, head/databases/percona57-client/files/patch-cmake_os_FreeBSD.cmake Modified: branches/2018Q4/databases/percona57-client/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/databases/percona57-client/Makefile ============================================================================== --- branches/2018Q4/databases/percona57-client/Makefile Thu Oct 4 15:07:30 2018 (r481225) +++ branches/2018Q4/databases/percona57-client/Makefile Thu Oct 4 15:08:20 2018 (r481226) @@ -9,8 +9,6 @@ COMMENT= Multithreaded SQL database (client) LICENSE= GPLv2+ -BROKEN_powerpc64= fails to configure: CMake Error at cmake/os/FreeBSD.cmake:34: Unsupported compiler! - MASTERDIR= ${.CURDIR}/../percona57-server OPTIONS_EXCLUDE=TOKUDB Copied: branches/2018Q4/databases/percona57-client/files/patch-cmake_os_FreeBSD.cmake (from r481225, head/databases/percona57-client/files/patch-cmake_os_FreeBSD.cmake) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q4/databases/percona57-client/files/patch-cmake_os_FreeBSD.cmake Thu Oct 4 15:08:20 2018 (r481226, copy of r481225, head/databases/percona57-client/files/patch-cmake_os_FreeBSD.cmake) @@ -0,0 +1,11 @@ +--- cmake/os/FreeBSD.cmake.orig 2018-09-27 09:15:26 UTC ++++ cmake/os/FreeBSD.cmake +@@ -30,8 +30,6 @@ IF(NOT FORCE_UNSUPPORTED_COMPILER) + IF(NOT HAVE_SUPPORTED_CLANG_VERSION) + MESSAGE(FATAL_ERROR "Clang 3.3 or newer is required!") + ENDIF() +- ELSE() +- MESSAGE(FATAL_ERROR "Unsupported compiler!") + ENDIF() + ENDIF() + From owner-svn-ports-branches@freebsd.org Thu Oct 4 15:14:54 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E760910AE895; Thu, 4 Oct 2018 15:14:53 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9AE1673AAC; Thu, 4 Oct 2018 15:14:53 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 95A9B27DB5; Thu, 4 Oct 2018 15:14:53 +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 w94FErNC089993; Thu, 4 Oct 2018 15:14:53 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w94FEq6R089986; Thu, 4 Oct 2018 15:14:52 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201810041514.w94FEq6R089986@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 4 Oct 2018 15:14:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481229 - in branches/2018Q4/news/nzbget: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in branches/2018Q4/news/nzbget: . files X-SVN-Commit-Revision: 481229 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 04 Oct 2018 15:14:54 -0000 Author: feld Date: Thu Oct 4 15:14:52 2018 New Revision: 481229 URL: https://svnweb.freebsd.org/changeset/ports/481229 Log: MFH: r481227 news/nzbget: Update to 20.0 - Add patches to disable building with optimized CFLAGS by default PR: 228888 Approved by: maintainer (timeout) Added: branches/2018Q4/news/nzbget/files/extra-disable-optimized-flags.patch - copied unchanged from r481227, head/news/nzbget/files/extra-disable-optimized-flags.patch branches/2018Q4/news/nzbget/files/patch-configure.ac - copied unchanged from r481227, head/news/nzbget/files/patch-configure.ac Modified: branches/2018Q4/news/nzbget/Makefile branches/2018Q4/news/nzbget/distinfo branches/2018Q4/news/nzbget/pkg-plist Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/news/nzbget/Makefile ============================================================================== --- branches/2018Q4/news/nzbget/Makefile Thu Oct 4 15:14:28 2018 (r481228) +++ branches/2018Q4/news/nzbget/Makefile Thu Oct 4 15:14:52 2018 (r481229) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= nzbget -PORTVERSION= 19.1 -PORTREVISION= 2 +PORTVERSION= 20.0 +PORTREVISION= 0 DISTVERSIONPREFIX= v CATEGORIES= news @@ -14,7 +14,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libxml2.so:textproc/libxml2 -USES= compiler:c++14-lang ncurses pkgconfig shebangfix ssl +USES= autoreconf compiler:c++14-lang gmake localbase ncurses pkgconfig shebangfix ssl USE_RC_SUBR= nzbget GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libcurses-includes=${NCURSESINC} \ @@ -23,10 +23,6 @@ CONFIGURE_ARGS= --with-libcurses-includes=${NCURSESINC --with-openssl-includes=${OPENSSLINC} \ --with-openssl-libraries=${OPENSSLLIB} -CONFIGURE_ENV= LOCALBASE="${LOCALBASE}" -MAKE_JOBS_UNSAFE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -lpthread BINMODE= 0755 SHEBANG_FILES= scripts/*.py @@ -34,13 +30,16 @@ SUB_FILES= pkg-message USE_GITHUB= yes -OPTIONS_DEFINE= 7Z PYTHON RAR DOCS +OPTIONS_DEFINE= 7Z OPTIMIZED_FLAGS PYTHON RAR OPTIONS_DEFAULT= PAR PYTHON RAR 7Z 7Z_DESC= Support extraction of 7z archives +OPTIMIZED_FLAGS_DESC= Enable optimized CPU instructions (SSE2/SSE3/NEON/etc) PYTHON_DESC= Support for python post-processing scripts RAR_DESC= Support extraction of rar archives 7Z_RUN_DEPENDS= 7z:archivers/p7zip + +OPTIMIZED_FLAGS_EXTRA_PATCHES_OFF= ${FILESDIR}/extra-disable-optimized-flags.patch PYTHON_USES= python:run Modified: branches/2018Q4/news/nzbget/distinfo ============================================================================== --- branches/2018Q4/news/nzbget/distinfo Thu Oct 4 15:14:28 2018 (r481228) +++ branches/2018Q4/news/nzbget/distinfo Thu Oct 4 15:14:52 2018 (r481229) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502370865 -SHA256 (nzbget-nzbget-v19.1_GH0.tar.gz) = 392c5aab41438faa3ad37a8497b5ff75f60cca3c9ba20c1764c592f6ce1be178 -SIZE (nzbget-nzbget-v19.1_GH0.tar.gz) = 1834888 +TIMESTAMP = 1528390488 +SHA256 (nzbget-nzbget-v20.0_GH0.tar.gz) = c04c4fca1ea226b767d922de041b3604bd9a53226878ab532e96b1ef31562361 +SIZE (nzbget-nzbget-v20.0_GH0.tar.gz) = 1952219 Copied: branches/2018Q4/news/nzbget/files/extra-disable-optimized-flags.patch (from r481227, head/news/nzbget/files/extra-disable-optimized-flags.patch) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q4/news/nzbget/files/extra-disable-optimized-flags.patch Thu Oct 4 15:14:52 2018 (r481229, copy of r481227, head/news/nzbget/files/extra-disable-optimized-flags.patch) @@ -0,0 +1,16 @@ +--- configure.ac.orig 2018-06-06 19:34:34 UTC ++++ configure.ac +@@ -569,12 +569,8 @@ case $host_cpu in + USE_SIMD=yes + ;; + esac ++USE_SIMD=no + AC_MSG_RESULT($USE_SIMD) +-AC_SUBST([SSE2_CXXFLAGS]) +-AC_SUBST([SSSE3_CXXFLAGS]) +-AC_SUBST([PCLMUL_CXXFLAGS]) +-AC_SUBST([NEON_CXXFLAGS]) +-AC_SUBST([ACLECRC_CXXFLAGS]) + + + dnl Copied: branches/2018Q4/news/nzbget/files/patch-configure.ac (from r481227, head/news/nzbget/files/patch-configure.ac) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q4/news/nzbget/files/patch-configure.ac Thu Oct 4 15:14:52 2018 (r481229, copy of r481227, head/news/nzbget/files/patch-configure.ac) @@ -0,0 +1,20 @@ +--- configure.ac.orig 2018-06-06 19:34:34 UTC ++++ configure.ac +@@ -37,7 +37,7 @@ dnl Check for programs. + dnl + AC_PROG_CXX + AC_PATH_PROG(TAR, tar, $FALSE) +-AC_PATH_PROG(MAKE, make, $FALSE) ++AC_PATH_PROG(MAKE, gmake, $FALSE) + AC_PROG_INSTALL + + +@@ -553,7 +553,7 @@ dnl + AC_MSG_CHECKING(whether to use SIMD-optimized routines) + USE_SIMD=no + case $host_cpu in +- i?86|x86_64) ++ i?86|x86_64|amd64) + SSE2_CXXFLAGS="-msse2" + SSSE3_CXXFLAGS="-mssse3" + PCLMUL_CXXFLAGS="-msse4.1 -mpclmul" Modified: branches/2018Q4/news/nzbget/pkg-plist ============================================================================== --- branches/2018Q4/news/nzbget/pkg-plist Thu Oct 4 15:14:28 2018 (r481228) +++ branches/2018Q4/news/nzbget/pkg-plist Thu Oct 4 15:14:52 2018 (r481229) @@ -15,6 +15,8 @@ bin/nzbget %%DATADIR%%/webui/history.js %%DATADIR%%/webui/img/download-anim-green-2x.png %%DATADIR%%/webui/img/download-anim-orange-2x.png +%%DATADIR%%/webui/img/favicon-256x256-opaque.png +%%DATADIR%%/webui/img/favicon-256x256.png %%DATADIR%%/webui/img/favicon.ico %%DATADIR%%/webui/img/icons-2x.png %%DATADIR%%/webui/img/icons.png From owner-svn-ports-branches@freebsd.org Fri Oct 5 22:37:43 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D969210B8B52; Fri, 5 Oct 2018 22:37:42 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8C535744C4; Fri, 5 Oct 2018 22:37:42 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 82CE51B8F1; Fri, 5 Oct 2018 22:37:42 +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 w95MbgpN055016; Fri, 5 Oct 2018 22:37:42 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w95MbgHu055015; Fri, 5 Oct 2018 22:37:42 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810052237.w95MbgHu055015@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 5 Oct 2018 22:37:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481309 - branches/2018Q4/emulators/citra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q4/emulators/citra X-SVN-Commit-Revision: 481309 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 05 Oct 2018 22:37:43 -0000 Author: jbeich Date: Fri Oct 5 22:37:41 2018 New Revision: 481309 URL: https://svnweb.freebsd.org/changeset/ports/481309 Log: MFH: r481308 emulators/citra: update to s20181005 Changes: https://github.com/citra-emu/citra/compare/ea53b0f79...b16350274 Approved by: ports-secteam (swills, implicit for snapshots) Modified: branches/2018Q4/emulators/citra/Makefile branches/2018Q4/emulators/citra/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/emulators/citra/Makefile ============================================================================== --- branches/2018Q4/emulators/citra/Makefile Fri Oct 5 22:30:30 2018 (r481308) +++ branches/2018Q4/emulators/citra/Makefile Fri Oct 5 22:37:41 2018 (r481309) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20181003 +PORTVERSION= s20181005 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= ea53b0f79 +GH_TAGNAME= b16350274 GH_TUPLE= citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ MerryMage:dynarmic:r1-992-g4e6848d1:dynarmic/externals/dynarmic \ Modified: branches/2018Q4/emulators/citra/distinfo ============================================================================== --- branches/2018Q4/emulators/citra/distinfo Fri Oct 5 22:30:30 2018 (r481308) +++ branches/2018Q4/emulators/citra/distinfo Fri Oct 5 22:37:41 2018 (r481309) @@ -1,6 +1,6 @@ -TIMESTAMP = 1538602900 -SHA256 (citra-emu-citra-s20181003-ea53b0f79_GH0.tar.gz) = ed389c68d5f632226fb71238a686116c55480d40277b72d388a879f976b61318 -SIZE (citra-emu-citra-s20181003-ea53b0f79_GH0.tar.gz) = 4487586 +TIMESTAMP = 1538751583 +SHA256 (citra-emu-citra-s20181005-b16350274_GH0.tar.gz) = 2d4ab9d4a35f364c03e939bb5fee221d5c03e91bf72986d0f9c6768ad78dc055 +SIZE (citra-emu-citra-s20181005-b16350274_GH0.tar.gz) = 4489802 SHA256 (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = f3fc8c9d4991b05ca1e1c8f5907ecd3ffd9724a8dccf328087b4784cda5c7db3 SIZE (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = 1762942 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c From owner-svn-ports-branches@freebsd.org Sat Oct 6 12:17:27 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A95010B8552; Sat, 6 Oct 2018 12:17:27 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D23C672A37; Sat, 6 Oct 2018 12:17:26 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C70C2246E0; Sat, 6 Oct 2018 12:17:26 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w96CHQN7084760; Sat, 6 Oct 2018 12:17:26 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w96CHQ7V084759; Sat, 6 Oct 2018 12:17:26 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201810061217.w96CHQ7V084759@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 6 Oct 2018 12:17:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481364 - branches/2018Q4/databases/cockroach X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: branches/2018Q4/databases/cockroach X-SVN-Commit-Revision: 481364 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 06 Oct 2018 12:17:27 -0000 Author: riggs Date: Sat Oct 6 12:17:26 2018 New Revision: 481364 URL: https://svnweb.freebsd.org/changeset/ports/481364 Log: MFH: r481363 Update to upstream version 2.0.5 PR: 231581 Submitted by: riggs Approved by: maintainer timeout (2 weeks) Approved by: ports-secteam (riggs) Modified: branches/2018Q4/databases/cockroach/Makefile branches/2018Q4/databases/cockroach/distinfo Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/databases/cockroach/Makefile ============================================================================== --- branches/2018Q4/databases/cockroach/Makefile Sat Oct 6 12:15:39 2018 (r481363) +++ branches/2018Q4/databases/cockroach/Makefile Sat Oct 6 12:17:26 2018 (r481364) @@ -2,7 +2,7 @@ PORTNAME= cockroach DISTVERSIONPREFIX= v -DISTVERSION= 2.0.2 +DISTVERSION= 2.0.5 CATEGORIES= databases MASTER_SITES= https://binaries.cockroachdb.com/ EXTRACT_SUFX= .src.tgz Modified: branches/2018Q4/databases/cockroach/distinfo ============================================================================== --- branches/2018Q4/databases/cockroach/distinfo Sat Oct 6 12:15:39 2018 (r481363) +++ branches/2018Q4/databases/cockroach/distinfo Sat Oct 6 12:17:26 2018 (r481364) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528529382 -SHA256 (cockroach-v2.0.2.src.tgz) = ee0e68ce9c74b8b1157e4c5d470b140960a5a281a70460c82bd79258a18e7d2b -SIZE (cockroach-v2.0.2.src.tgz) = 45521739 +TIMESTAMP = 1537611997 +SHA256 (cockroach-v2.0.5.src.tgz) = 2a3ba8e7a2c44f59644ad84b530930bdf09e597741033d73ee7b2e4490d2051d +SIZE (cockroach-v2.0.5.src.tgz) = 45551406 From owner-svn-ports-branches@freebsd.org Sat Oct 6 21:08:16 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4D90210C69E8; Sat, 6 Oct 2018 21:08:16 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 000E283C40; Sat, 6 Oct 2018 21:08:15 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EE6A31E66; Sat, 6 Oct 2018 21:08:15 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w96L8FSf087432; Sat, 6 Oct 2018 21:08:15 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w96L8Fdm087431; Sat, 6 Oct 2018 21:08:15 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201810062108.w96L8Fdm087431@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 6 Oct 2018 21:08:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481397 - branches/2018Q4/news/nzbget X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2018Q4/news/nzbget X-SVN-Commit-Revision: 481397 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 06 Oct 2018 21:08:16 -0000 Author: antoine Date: Sat Oct 6 21:08:15 2018 New Revision: 481397 URL: https://svnweb.freebsd.org/changeset/ports/481397 Log: MFH: r481396 Mark BROKEN: fails to package Reported by: pkg-fallout Modified: branches/2018Q4/news/nzbget/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/news/nzbget/Makefile ============================================================================== --- branches/2018Q4/news/nzbget/Makefile Sat Oct 6 21:07:39 2018 (r481396) +++ branches/2018Q4/news/nzbget/Makefile Sat Oct 6 21:08:15 2018 (r481397) @@ -12,6 +12,8 @@ COMMENT= Binary newsreader supporting NZB files LICENSE= GPLv2 +BROKEN= fails to package + LIB_DEPENDS= libxml2.so:textproc/libxml2 USES= autoreconf compiler:c++14-lang gmake localbase ncurses pkgconfig shebangfix ssl From owner-svn-ports-branches@freebsd.org Sat Oct 6 21:13:48 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72DC110C6DBB; Sat, 6 Oct 2018 21:13:48 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 29A0D84690; Sat, 6 Oct 2018 21:13:48 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 24BEC2006; Sat, 6 Oct 2018 21:13:48 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w96LDmSF092644; Sat, 6 Oct 2018 21:13:48 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w96LDmmX092643; Sat, 6 Oct 2018 21:13:48 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201810062113.w96LDmmX092643@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 6 Oct 2018 21:13:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r481400 - branches/2018Q4/net/openafs X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2018Q4/net/openafs X-SVN-Commit-Revision: 481400 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.27 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, 06 Oct 2018 21:13:48 -0000 Author: antoine Date: Sat Oct 6 21:13:47 2018 New Revision: 481400 URL: https://svnweb.freebsd.org/changeset/ports/481400 Log: MFH: r481399 Mark BROKEN: fails to build On 10.4 amd64: make[4]: don't know how to make ./param.amd64_fbsd_104.h. Stop On 11.2 amd64: make[4]: don't know how to make ./param.amd64_fbsd_112.h. Stop Reported by: pkg-fallout Modified: branches/2018Q4/net/openafs/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/net/openafs/Makefile ============================================================================== --- branches/2018Q4/net/openafs/Makefile Sat Oct 6 21:13:24 2018 (r481399) +++ branches/2018Q4/net/openafs/Makefile Sat Oct 6 21:13:47 2018 (r481400) @@ -21,7 +21,7 @@ LICENSE_NAME= IBM Public License Version 1.0 LICENSE_FILE= ${WRKSRC}/doc/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN_FreeBSD_12= does not build (use of undeclared identifier 'ROOTINO') +BROKEN= fails to build ONLY_FOR_ARCHS= i386 amd64 AFS_DISTVERSION= 1.6.22