From owner-svn-ports-branches@freebsd.org Sun Sep 11 08:59:05 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CDE1CBD4091; Sun, 11 Sep 2016 08:59:05 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8F5BFBFA; Sun, 11 Sep 2016 08:59:05 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B8x47d092359; Sun, 11 Sep 2016 08:59:04 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B8x4Bh092356; Sun, 11 Sep 2016 08:59:04 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609110859.u8B8x4Bh092356@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 11 Sep 2016 08:59:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421808 - in branches/2016Q3/devel/jsoncpp: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 08:59:05 -0000 Author: brnrd Date: Sun Sep 11 08:59:04 2016 New Revision: 421808 URL: https://svnweb.freebsd.org/changeset/ports/421808 Log: MFH: r417988 r418065 devel/jsoncpp: Fix build on 10.3 - Change OS version checks to compiler checks PR: 209954 Submitted by: Mathieu Simon devel/jsoncpp: Update to 1.7.3 - Update to version 1.7.3 [2] - Fix compiler issues [1] PR: 209945 Submitted by: Mathieu Simon [1] Reviewed by: yuri@rawbw.com (maintainer) [2] Approved by: ports-secteam (junovitch) Deleted: branches/2016Q3/devel/jsoncpp/files/patch-include_json_config.h Modified: branches/2016Q3/devel/jsoncpp/Makefile branches/2016Q3/devel/jsoncpp/distinfo branches/2016Q3/devel/jsoncpp/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/devel/jsoncpp/Makefile ============================================================================== --- branches/2016Q3/devel/jsoncpp/Makefile Sun Sep 11 08:19:43 2016 (r421807) +++ branches/2016Q3/devel/jsoncpp/Makefile Sun Sep 11 08:59:04 2016 (r421808) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= jsoncpp -DISTVERSION= 1.7.2 -PORTREVISION= 1 +DISTVERSION= 1.7.3 CATEGORIES= devel MAINTAINER= yuri@rawbw.com @@ -15,16 +14,17 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= open-source-parsers -USES= dos2unix scons +USES= compiler:features dos2unix scons USE_LDCONFIG= yes MAKE_ARGS= platform=linux-gcc .include -.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 -# NOTE Certain newest compiler features unlock some parts of jsoncpp API (ex. see JSON_HAS_RVALUE_REFERENCES). -# Use c++11 above to be most inclusive. +.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 33 || \ + ${COMPILER_TYPE} == gcc && ${COMPILER_VERSION} >= 48 +# Certain new compiler features unlock parts of jsoncpp API (ex. see JSON_HAS_RVALUE_REFERENCES). +# Use c++11 above to be the most inclusive. USES+= compiler:c++11-lang CXXFLAGS+= --std=c++11 .endif Modified: branches/2016Q3/devel/jsoncpp/distinfo ============================================================================== --- branches/2016Q3/devel/jsoncpp/distinfo Sun Sep 11 08:19:43 2016 (r421807) +++ branches/2016Q3/devel/jsoncpp/distinfo Sun Sep 11 08:59:04 2016 (r421808) @@ -1,2 +1,3 @@ -SHA256 (open-source-parsers-jsoncpp-1.7.2_GH0.tar.gz) = 2179a7df19c1c6dc87e02c65b847efc914625a9b87df3e443d9610fc70c0f557 -SIZE (open-source-parsers-jsoncpp-1.7.2_GH0.tar.gz) = 205391 +TIMESTAMP = 1467669507 +SHA256 (open-source-parsers-jsoncpp-1.7.3_GH0.tar.gz) = 1cfcad14054039ba97c22531888796cb9369e6353f257aacaad34fda956ada53 +SIZE (open-source-parsers-jsoncpp-1.7.3_GH0.tar.gz) = 205738 Modified: branches/2016Q3/devel/jsoncpp/pkg-plist ============================================================================== --- branches/2016Q3/devel/jsoncpp/pkg-plist Sun Sep 11 08:19:43 2016 (r421807) +++ branches/2016Q3/devel/jsoncpp/pkg-plist Sun Sep 11 08:59:04 2016 (r421808) @@ -12,5 +12,5 @@ include/jsoncpp/json/writer.h lib/libjsoncpp.a lib/libjsoncpp.so lib/libjsoncpp.so.1 -lib/libjsoncpp.so.1.7.2 +lib/libjsoncpp.so.1.7.3 libdata/pkgconfig/jsoncpp.pc From owner-svn-ports-branches@freebsd.org Sun Sep 11 09:00:18 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5060BBD431D; Sun, 11 Sep 2016 09:00:18 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E78DD0A; Sun, 11 Sep 2016 09:00:18 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B90HV3092650; Sun, 11 Sep 2016 09:00:17 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B90HPa092647; Sun, 11 Sep 2016 09:00:17 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609110900.u8B90HPa092647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 11 Sep 2016 09:00:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421809 - in branches/2016Q3/databases: mysql57-client/files mysql57-server mysql57-server/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 09:00:18 -0000 Author: brnrd Date: Sun Sep 11 09:00:17 2016 New Revision: 421809 URL: https://svnweb.freebsd.org/changeset/ports/421809 Log: MFH: r420816 databases/mysql57-server: Fix build with LibreSSL - Fix building when OPENSSL_VERSION_NUMBER == 2 - Switch USE_OPENSSL to USES= ssl PR: 211770 Submitted by: Markus Kohlmeyer Reported by: Markus Kohlmeyer Approved by: Mahdi Mokhtari Approved by: ports-secteam (junovitch) Added: branches/2016Q3/databases/mysql57-client/files/patch-cmake_ssl.cmake - copied unchanged from r420816, head/databases/mysql57-client/files/patch-cmake_ssl.cmake branches/2016Q3/databases/mysql57-server/files/patch-cmake_ssl.cmake - copied unchanged from r420816, head/databases/mysql57-server/files/patch-cmake_ssl.cmake Modified: branches/2016Q3/databases/mysql57-server/Makefile Directory Properties: branches/2016Q3/ (props changed) Copied: branches/2016Q3/databases/mysql57-client/files/patch-cmake_ssl.cmake (from r420816, head/databases/mysql57-client/files/patch-cmake_ssl.cmake) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/databases/mysql57-client/files/patch-cmake_ssl.cmake Sun Sep 11 09:00:17 2016 (r421809, copy of r420816, head/databases/mysql57-client/files/patch-cmake_ssl.cmake) @@ -0,0 +1,15 @@ +--- cmake/ssl.cmake.orig 2016-08-12 10:55:07 UTC ++++ cmake/ssl.cmake +@@ -179,6 +179,12 @@ MACRO (MYSQL_CHECK_SSL) + OPENSSL_MAJOR_VERSION STREQUAL "1" + ) + SET(OPENSSL_FOUND TRUE) ++ ELSEIF(OPENSSL_INCLUDE_DIR AND ++ OPENSSL_LIBRARY AND ++ CRYPTO_LIBRARY AND ++ OPENSSL_MAJOR_VERSION STREQUAL "2" ++ ) ++ SET(OPENSSL_FOUND TRUE) + ELSE() + SET(OPENSSL_FOUND FALSE) + ENDIF() Modified: branches/2016Q3/databases/mysql57-server/Makefile ============================================================================== --- branches/2016Q3/databases/mysql57-server/Makefile Sun Sep 11 08:59:04 2016 (r421808) +++ branches/2016Q3/databases/mysql57-server/Makefile Sun Sep 11 09:00:17 2016 (r421809) @@ -17,9 +17,9 @@ LICENSE= GPLv2 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} SLAVEDIRS= databases/mysql57-client -USES= bison:build cmake:outsource compiler:c11 compiler:c++11-lib cpe libedit localbase perl5 shebangfix +USES= bison:build cmake:outsource compiler:c11 compiler:c++11-lib \ + cpe libedit localbase perl5 shebangfix ssl -USE_OPENSSL= yes USE_PERL5= run MY_DBDIR= /var/db/mysql Copied: branches/2016Q3/databases/mysql57-server/files/patch-cmake_ssl.cmake (from r420816, head/databases/mysql57-server/files/patch-cmake_ssl.cmake) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/databases/mysql57-server/files/patch-cmake_ssl.cmake Sun Sep 11 09:00:17 2016 (r421809, copy of r420816, head/databases/mysql57-server/files/patch-cmake_ssl.cmake) @@ -0,0 +1,15 @@ +--- cmake/ssl.cmake.orig 2016-08-12 10:55:07 UTC ++++ cmake/ssl.cmake +@@ -179,6 +179,12 @@ MACRO (MYSQL_CHECK_SSL) + OPENSSL_MAJOR_VERSION STREQUAL "1" + ) + SET(OPENSSL_FOUND TRUE) ++ ELSEIF(OPENSSL_INCLUDE_DIR AND ++ OPENSSL_LIBRARY AND ++ CRYPTO_LIBRARY AND ++ OPENSSL_MAJOR_VERSION STREQUAL "2" ++ ) ++ SET(OPENSSL_FOUND TRUE) + ELSE() + SET(OPENSSL_FOUND FALSE) + ENDIF() From owner-svn-ports-branches@freebsd.org Sun Sep 11 09:03:28 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8750CBD44D8; Sun, 11 Sep 2016 09:03:28 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4617B15F; Sun, 11 Sep 2016 09:03:28 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B93R1c096371; Sun, 11 Sep 2016 09:03:27 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B93QgV096365; Sun, 11 Sep 2016 09:03:26 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609110903.u8B93QgV096365@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 11 Sep 2016 09:03:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421811 - in branches/2016Q3/mail/postfix: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 09:03:28 -0000 Author: brnrd Date: Sun Sep 11 09:03:26 2016 New Revision: 421811 URL: https://svnweb.freebsd.org/changeset/ports/421811 Log: MFH: r421091 mail/postfix: Fix runtime issues with LibreSSL - Add LibreSSL checks to <> 1.1.0 OpenSSL checks - Bump portrevision PR: 212223 Submitted by: Markus Kohlmeier Reported by: Markus Kohlmeier Approved by: ohauer (via PR) Approved by: ports-secteam (delphij) Added: branches/2016Q3/mail/postfix/files/patch-src_posttls-finger_posttls-finger.c - copied unchanged from r421091, head/mail/postfix/files/patch-src_posttls-finger_posttls-finger.c branches/2016Q3/mail/postfix/files/patch-src_tls_tls__client.c - copied unchanged from r421091, head/mail/postfix/files/patch-src_tls_tls__client.c branches/2016Q3/mail/postfix/files/patch-src_tls_tls__dane.c - copied unchanged from r421091, head/mail/postfix/files/patch-src_tls_tls__dane.c branches/2016Q3/mail/postfix/files/patch-src_tls_tls__rsa.c - copied unchanged from r421091, head/mail/postfix/files/patch-src_tls_tls__rsa.c branches/2016Q3/mail/postfix/files/patch-src_tls_tls__server.c - copied unchanged from r421091, head/mail/postfix/files/patch-src_tls_tls__server.c Modified: branches/2016Q3/mail/postfix/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/mail/postfix/Makefile ============================================================================== --- branches/2016Q3/mail/postfix/Makefile Sun Sep 11 09:01:48 2016 (r421810) +++ branches/2016Q3/mail/postfix/Makefile Sun Sep 11 09:03:26 2016 (r421811) @@ -4,6 +4,7 @@ PORTNAME= postfix PORTVERSION= 3.1.1 PORTEPOCH= 1 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \ http://de.postfix.org/ftpmirror/ \ Copied: branches/2016Q3/mail/postfix/files/patch-src_posttls-finger_posttls-finger.c (from r421091, head/mail/postfix/files/patch-src_posttls-finger_posttls-finger.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/mail/postfix/files/patch-src_posttls-finger_posttls-finger.c Sun Sep 11 09:03:26 2016 (r421811, copy of r421091, head/mail/postfix/files/patch-src_posttls-finger_posttls-finger.c) @@ -0,0 +1,22 @@ +--- src/posttls-finger/posttls-finger.c.orig 2016-08-27 20:27:50 UTC ++++ src/posttls-finger/posttls-finger.c +@@ -1511,7 +1511,8 @@ static int finger(STATE *state) + return (0); + } + +-#if defined(USE_TLS) && OPENSSL_VERSION_NUMBER < 0x10100000L ++#if defined(USE_TLS) && \ ++ ( OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) ) + + /* ssl_cleanup - free memory allocated in the OpenSSL library */ + +@@ -1958,7 +1959,8 @@ int main(int argc, char *argv[]) + cleanup(&state); + + /* OpenSSL 1.1.0 and later (de)initialization is implicit */ +-#if defined(USE_TLS) && OPENSSL_VERSION_NUMBER < 0x10100000L ++#if defined(USE_TLS) && \ ++ ( OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) ) + ssl_cleanup(); + #endif + Copied: branches/2016Q3/mail/postfix/files/patch-src_tls_tls__client.c (from r421091, head/mail/postfix/files/patch-src_tls_tls__client.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/mail/postfix/files/patch-src_tls_tls__client.c Sun Sep 11 09:03:26 2016 (r421811, copy of r421091, head/mail/postfix/files/patch-src_tls_tls__client.c) @@ -0,0 +1,20 @@ +--- src/tls/tls_client.c.orig 2016-08-27 20:27:50 UTC ++++ src/tls/tls_client.c +@@ -299,7 +299,7 @@ TLS_APPL_STATE *tls_client_init(const TL + */ + tls_check_version(); + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + + /* + * Initialize the OpenSSL library by the book! To start with, we must +@@ -441,7 +441,7 @@ TLS_APPL_STATE *tls_client_init(const TL + /* + * 2015-12-05: Ephemeral RSA removed from OpenSSL 1.1.0-dev + */ +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + + /* + * According to the OpenSSL documentation, temporary RSA key is needed Copied: branches/2016Q3/mail/postfix/files/patch-src_tls_tls__dane.c (from r421091, head/mail/postfix/files/patch-src_tls_tls__dane.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/mail/postfix/files/patch-src_tls_tls__dane.c Sun Sep 11 09:03:26 2016 (r421811, copy of r421091, head/mail/postfix/files/patch-src_tls_tls__dane.c) @@ -0,0 +1,11 @@ +--- src/tls/tls_dane.c.orig 2016-08-27 20:27:50 UTC ++++ src/tls/tls_dane.c +@@ -2163,7 +2163,7 @@ static SSL_CTX *ctx_init(const char *CAf + tls_param_init(); + tls_check_version(); + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESS_VERSION_NUMBER) + SSL_load_error_strings(); + SSL_library_init(); + #endif Copied: branches/2016Q3/mail/postfix/files/patch-src_tls_tls__rsa.c (from r421091, head/mail/postfix/files/patch-src_tls_tls__rsa.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/mail/postfix/files/patch-src_tls_tls__rsa.c Sun Sep 11 09:03:26 2016 (r421811, copy of r421091, head/mail/postfix/files/patch-src_tls_tls__rsa.c) @@ -0,0 +1,20 @@ +--- src/tls/tls_rsa.c.orig 2016-01-03 14:49:51 UTC ++++ src/tls/tls_rsa.c +@@ -57,7 +57,7 @@ + /* + * 2015-12-05: Ephemeral RSA removed from OpenSSL 1.1.0-dev + */ +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + + /* tls_tmp_rsa_cb - call-back to generate ephemeral RSA key */ + +@@ -109,7 +109,7 @@ int main(int unused_argc, char *cons + /* + * 2015-12-05: Ephemeral RSA removed from OpenSSL 1.1.0-dev + */ +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + RSA *rsa; + + msg_vstream_init(argv[0], VSTREAM_ERR); Copied: branches/2016Q3/mail/postfix/files/patch-src_tls_tls__server.c (from r421091, head/mail/postfix/files/patch-src_tls_tls__server.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/mail/postfix/files/patch-src_tls_tls__server.c Sun Sep 11 09:03:26 2016 (r421811, copy of r421091, head/mail/postfix/files/patch-src_tls_tls__server.c) @@ -0,0 +1,29 @@ +--- src/tls/tls_server.c.orig 2016-08-27 20:27:50 UTC ++++ src/tls/tls_server.c +@@ -174,7 +174,7 @@ static const char server_session_id_cont + #endif /* OPENSSL_VERSION_NUMBER */ + + /* OpenSSL 1.1.0 bitrot */ +-#if OPENSSL_VERSION_NUMBER >= 0x10100000L ++#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + typedef const unsigned char *session_id_t; + + #else +@@ -377,7 +377,7 @@ TLS_APPL_STATE *tls_server_init(const TL + */ + tls_check_version(); + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + + /* + * Initialize the OpenSSL library by the book! To start with, we must +@@ -588,7 +588,7 @@ TLS_APPL_STATE *tls_server_init(const TL + /* + * 2015-12-05: Ephemeral RSA removed from OpenSSL 1.1.0-dev + */ +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + + /* + * According to OpenSSL documentation, a temporary RSA key is needed when From owner-svn-ports-branches@freebsd.org Sun Sep 11 23:56:32 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EEDCEBD7A9F; Sun, 11 Sep 2016 23:56:32 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB5B6ADB; Sun, 11 Sep 2016 23:56:32 +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 u8BNuVZ4038081; Sun, 11 Sep 2016 23:56:31 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BNuUn6038062; Sun, 11 Sep 2016 23:56:30 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609112356.u8BNuUn6038062@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 11 Sep 2016 23:56:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421884 - in branches/2016Q3: Mk Mk/Uses mail/thunderbird www/firefox www/firefox-esr www/firefox-i18n www/firefox/files www/libxul www/seamonkey www/seamonkey/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 23:56:33 -0000 Author: jbeich Date: Sun Sep 11 23:56:30 2016 New Revision: 421884 URL: https://svnweb.freebsd.org/changeset/ports/421884 Log: MFH: r421531 r421645 www/firefox: update to 49.0 (rc2) Bump PORTREVISION to account for slightly different behavior in other gecko@ ports and to get a discrete regression window. Changes: https://www.mozilla.org/firefox/49.0/releasenotes/ PR: 211792 Submitted by: Jochen Neumeister (based on) Security: 2c57c47e-8bb3-4694-83c8-9fc3abad3964 Approved by: ports-secteam (feld) Added: branches/2016Q3/www/firefox/files/patch-bug1288587 - copied unchanged from r421531, head/www/firefox/files/patch-bug1288587 branches/2016Q3/www/seamonkey/files/patch-bug1234033 - copied unchanged from r421531, head/www/seamonkey/files/patch-bug1234033 Deleted: branches/2016Q3/www/firefox/files/patch-bug1233275 Modified: branches/2016Q3/Mk/Uses/gecko.mk branches/2016Q3/Mk/bsd.gecko.mk branches/2016Q3/mail/thunderbird/Makefile branches/2016Q3/www/firefox-esr/Makefile branches/2016Q3/www/firefox-i18n/Makefile branches/2016Q3/www/firefox-i18n/distinfo branches/2016Q3/www/firefox/Makefile branches/2016Q3/www/firefox/Makefile.options branches/2016Q3/www/firefox/distinfo branches/2016Q3/www/firefox/files/patch-bug1013882 branches/2016Q3/www/firefox/files/patch-bug1021761 branches/2016Q3/www/firefox/files/patch-bug847568 branches/2016Q3/www/firefox/files/patch-ijg-libjpeg branches/2016Q3/www/firefox/files/patch-modules-libpref-init-all.js branches/2016Q3/www/firefox/files/patch-z-bug517422 branches/2016Q3/www/libxul/Makefile branches/2016Q3/www/seamonkey/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/Mk/Uses/gecko.mk ============================================================================== --- branches/2016Q3/Mk/Uses/gecko.mk Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/Mk/Uses/gecko.mk Sun Sep 11 23:56:30 2016 (r421884) @@ -37,12 +37,12 @@ RUN_DEPENDS+= libxul>=45:www/libxul .elif ${gecko_ARGS:Mfirefox} _GECKO_DEFAULT_VERSION= 45 -_GECKO_VERSIONS= 45 47 +_GECKO_VERSIONS= 45 49 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions 45_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr -47_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox +49_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null Modified: branches/2016Q3/Mk/bsd.gecko.mk ============================================================================== --- branches/2016Q3/Mk/bsd.gecko.mk Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/Mk/bsd.gecko.mk Sun Sep 11 23:56:30 2016 (r421884) @@ -95,12 +95,18 @@ USE_XORG= x11 xcomposite xdamage xext xf BUNDLE_LIBS= yes .endif +# call to implicitly-deleted copy constructor of 'mozilla::WidevineVideoFrame' +. if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000019 && ${MOZILLA_VER:R:R} >= 49 +# XXX USES=compiler:c++11-lib cannot be used due to ports/208538 +USE_GCC= 5+ +.endif + MOZILLA_SUFX?= none MOZSRC?= ${WRKSRC} WRKSRC?= ${WRKDIR}/mozilla PLISTF?= ${WRKDIR}/plist_files -MOZ_OBJDIR?= ${WRKSRC}/obj-${CONFIGURE_TARGET} +MOZ_OBJDIR?= ${WRKSRC}/obj-${ARCH:C/amd64/x86_64/}-unknown-${OPSYS:tl}${OSREL} MOZ_PIS_DIR?= lib/${MOZILLA}/init.d @@ -119,10 +125,9 @@ MOZ_PKGCONFIG_FILES?= ${MOZILLA}-gtkmoze ALL_TARGET?= build -CONFIGURE_TARGET:=${ARCH:C/amd64/x86_64/}-portbld-${OPSYS:tl}${OSREL} MOZ_EXPORT+= ${CONFIGURE_ENV} \ PERL="${PERL}" -MOZ_OPTIONS+= ${CONFIGURE_TARGET} --prefix="${PREFIX}" +MOZ_OPTIONS+= --prefix="${PREFIX}" MOZ_MK_OPTIONS+=MOZ_OBJDIR="${MOZ_OBJDIR}" CPPFLAGS+= -isystem${LOCALBASE}/include @@ -138,7 +143,11 @@ MOZ_EXPORT+= MOZ_JEMALLOC3=1 MOZ_JEMALLO EXTRA_PATCHES+= ${FILESDIR}/extra-patch-bug1125514 . endif .elif ${OPSYS} != FreeBSD || ${OSVERSION} < 1000012 || ${MOZILLA_VER:R:R} >= 37 +. if ${MOZILLA_VER:R:R} >= 48 +MOZ_OPTIONS+= --enable-jemalloc=4 +.else MOZ_OPTIONS+= --enable-jemalloc +. endif .endif .endif # !DragonFly @@ -265,14 +274,7 @@ MOZ_OPTIONS+= --enable-necko-protocols=$ # others MOZ_OPTIONS+= --with-system-zlib \ --with-system-bz2 \ - --enable-unified-compilation \ - --disable-debug-symbols \ - --disable-glibtest \ - --disable-gtktest \ - --disable-freetypetest \ - --disable-installer \ - --disable-updater \ - --disable-pedantic + --disable-debug-symbols # API keys from www/chromium # http://www.chromium.org/developers/how-tos/api-keys @@ -308,10 +310,6 @@ CFLAGS+= -O3 MOZ_EXPORT+= MOZ_OPTIMIZE_FLAGS="${CFLAGS:M-O*}" MOZ_OPTIONS+= --enable-optimize .else -. if ${MOZILLA_VER:R:R} >= 45 && ${ARCH} == i386 && \ - (${OSVERSION} >= 1000000 && ${OSVERSION} < 1003501) -USES:= compiler:c++14-lang ${USES:Ncompiler*c++11*} # XXX ports/207837 -. endif MOZ_OPTIONS+= --disable-optimize .endif @@ -326,7 +324,7 @@ LIB_DEPENDS+= libdbus-1.so:devel/dbus \ libstartup-notification-1.so:x11/startup-notification MOZ_OPTIONS+= --enable-startup-notification .else -MOZ_OPTIONS+= --disable-dbus --disable-libnotify +MOZ_OPTIONS+= --disable-dbus .endif .if ${PORT_OPTIONS:MFFMPEG} @@ -338,7 +336,7 @@ RUN_DEPENDS+= ffmpeg>=0.8,1:multimedia/f RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:multimedia/gstreamer1-libav USE_GSTREAMER1?=good libav MOZ_OPTIONS+= --enable-gstreamer=1.0 -.else +.elif ${MOZILLA_VER:R:R} < 46 MOZ_OPTIONS+= --disable-gstreamer .endif Modified: branches/2016Q3/mail/thunderbird/Makefile ============================================================================== --- branches/2016Q3/mail/thunderbird/Makefile Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/mail/thunderbird/Makefile Sun Sep 11 23:56:30 2016 (r421884) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 45.3.0 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: branches/2016Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2016Q3/www/firefox-esr/Makefile Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox-esr/Makefile Sun Sep 11 23:56:30 2016 (r421884) @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 45.3.0 DISTVERSIONSUFFIX=esr.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2016Q3/www/firefox-i18n/Makefile ============================================================================== --- branches/2016Q3/www/firefox-i18n/Makefile Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox-i18n/Makefile Sun Sep 11 23:56:30 2016 (r421884) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 47.0.1 +PORTVERSION= 49.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build2/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} @@ -15,7 +15,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:archivers/zip -USES= zip:infozip gecko:firefox,47,build +USES= zip:infozip gecko:firefox,49,build USE_XPI= firefox NO_ARCH= yes Modified: branches/2016Q3/www/firefox-i18n/distinfo ============================================================================== --- branches/2016Q3/www/firefox-i18n/distinfo Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox-i18n/distinfo Sun Sep 11 23:56:30 2016 (r421884) @@ -1,180 +1,181 @@ -SHA256 (xpi/firefox-i18n-47.0.1/ach.xpi) = 45bc4e91e4e6adf7242aee948158b5afee17c4770dfa5dccc7355d85e531aef8 -SIZE (xpi/firefox-i18n-47.0.1/ach.xpi) = 425998 -SHA256 (xpi/firefox-i18n-47.0.1/af.xpi) = a1e279483c5344db24a4ccfc2c38e8b6efcb424825fd85bc07d16d3277e0e7d8 -SIZE (xpi/firefox-i18n-47.0.1/af.xpi) = 441515 -SHA256 (xpi/firefox-i18n-47.0.1/an.xpi) = 40c1b71ce8fba6a16cd8b3d1ddfaef2fc6cf15502cd0aa567c3d5f3bee698447 -SIZE (xpi/firefox-i18n-47.0.1/an.xpi) = 453260 -SHA256 (xpi/firefox-i18n-47.0.1/ar.xpi) = ce4907b3c63db0f81386d8177f51fefa6713e74a0960eda49178027a61cc2abc -SIZE (xpi/firefox-i18n-47.0.1/ar.xpi) = 478502 -SHA256 (xpi/firefox-i18n-47.0.1/as.xpi) = 14057de2c80c22337dbb1ed8809a966919645f1dc2a8da42e907c570a969c917 -SIZE (xpi/firefox-i18n-47.0.1/as.xpi) = 484619 -SHA256 (xpi/firefox-i18n-47.0.1/ast.xpi) = e58e044b10c9c7d299866bd2d710d35ce56d43bbe6427c0029ad86bcfd69c4c6 -SIZE (xpi/firefox-i18n-47.0.1/ast.xpi) = 422168 -SHA256 (xpi/firefox-i18n-47.0.1/az.xpi) = 8b60d632ed4271a42d03345f5b6bbd68bf09b4b98263e6281d79e604488e5e39 -SIZE (xpi/firefox-i18n-47.0.1/az.xpi) = 453802 -SHA256 (xpi/firefox-i18n-47.0.1/be.xpi) = 05c89d49ec5c593c5ae98d22b0e435c5f1fb4c6ac97938721d2277f5210c91b7 -SIZE (xpi/firefox-i18n-47.0.1/be.xpi) = 445105 -SHA256 (xpi/firefox-i18n-47.0.1/bg.xpi) = c3b8b4969bb809eba2a0a3d5a940682dd77c2707acb2a9d80231e9237dfaab13 -SIZE (xpi/firefox-i18n-47.0.1/bg.xpi) = 490776 -SHA256 (xpi/firefox-i18n-47.0.1/bn-BD.xpi) = cc6a61c51a212d29251e43938940524ac3859ca2675e56a4cf97f58cee55b5ef -SIZE (xpi/firefox-i18n-47.0.1/bn-BD.xpi) = 509738 -SHA256 (xpi/firefox-i18n-47.0.1/bn-IN.xpi) = 2f174dcf71804700c17326e5192ed80c43c19c603877a5e571feba1df7a51558 -SIZE (xpi/firefox-i18n-47.0.1/bn-IN.xpi) = 515482 -SHA256 (xpi/firefox-i18n-47.0.1/br.xpi) = 91978b6bea28c3ef2cbd41d75afcb1fe25fc506f9ca5a3caa3b23ccfdefaee0c -SIZE (xpi/firefox-i18n-47.0.1/br.xpi) = 430467 -SHA256 (xpi/firefox-i18n-47.0.1/bs.xpi) = 09732c9fa433178638fcf44abdb65b4bb81f846deb3a3cd10bbfde3ba594da14 -SIZE (xpi/firefox-i18n-47.0.1/bs.xpi) = 447152 -SHA256 (xpi/firefox-i18n-47.0.1/ca.xpi) = d6f1cbf852d55dc8d5b47f642cd4ac4c889df0662da620d4370077bbad5771c8 -SIZE (xpi/firefox-i18n-47.0.1/ca.xpi) = 438340 -SHA256 (xpi/firefox-i18n-47.0.1/cs.xpi) = 432e0f194cc6513ea9c998ba09032b646a55e5cada4de3512b88436d63622363 -SIZE (xpi/firefox-i18n-47.0.1/cs.xpi) = 438404 -SHA256 (xpi/firefox-i18n-47.0.1/cy.xpi) = 02f69f9ae0c62ce88a747974a357b28622b5b5c162818b12a91a5b5e9dbea419 -SIZE (xpi/firefox-i18n-47.0.1/cy.xpi) = 433790 -SHA256 (xpi/firefox-i18n-47.0.1/da.xpi) = d645b416e27c0376195bf9c8620f77ff9a33dfdd2703b4f02e0d021b411ad54a -SIZE (xpi/firefox-i18n-47.0.1/da.xpi) = 424569 -SHA256 (xpi/firefox-i18n-47.0.1/de.xpi) = 611080e81b13ac5cfa0cc84ccaacd91f2c102884e36558af73d7d71fad18db0c -SIZE (xpi/firefox-i18n-47.0.1/de.xpi) = 440551 -SHA256 (xpi/firefox-i18n-47.0.1/dsb.xpi) = be5dd0e172d05143333fd093e4916bdc8f858c0c82e7a4ad8d526baf288b15bb -SIZE (xpi/firefox-i18n-47.0.1/dsb.xpi) = 458254 -SHA256 (xpi/firefox-i18n-47.0.1/el.xpi) = 5abae91c3dca06d4f9f4ed683f9e1db33461b53442beb37297fe7b0a10fbd055 -SIZE (xpi/firefox-i18n-47.0.1/el.xpi) = 470596 -SHA256 (xpi/firefox-i18n-47.0.1/en-GB.xpi) = 9c15f22d32aeeb2d3f7c7defd6394eb3b07973eb68c96e8cb9add5131ceb695c -SIZE (xpi/firefox-i18n-47.0.1/en-GB.xpi) = 418329 -SHA256 (xpi/firefox-i18n-47.0.1/en-US.xpi) = e5e37ec169bc609219a721dd43fedf06193f14917f36ea04ba5ae36680ca532c -SIZE (xpi/firefox-i18n-47.0.1/en-US.xpi) = 426931 -SHA256 (xpi/firefox-i18n-47.0.1/en-ZA.xpi) = 6f51495b1d534226e3c35c87a8dfc2432d44ba57d0aeb46a08e83c799444dc32 -SIZE (xpi/firefox-i18n-47.0.1/en-ZA.xpi) = 407835 -SHA256 (xpi/firefox-i18n-47.0.1/eo.xpi) = dfeba075649beee35415a80858973cb442a6808b602fea9a0110350f1262bab7 -SIZE (xpi/firefox-i18n-47.0.1/eo.xpi) = 434240 -SHA256 (xpi/firefox-i18n-47.0.1/es-AR.xpi) = 76f17a70c23298bc722de3660529f5fe8fa456914cdf719f864fa000433f2f0c -SIZE (xpi/firefox-i18n-47.0.1/es-AR.xpi) = 435267 -SHA256 (xpi/firefox-i18n-47.0.1/es-CL.xpi) = 5cd683e2a3d3b5763835af82618135a120f448e07eadd20083a38075fa13aec1 -SIZE (xpi/firefox-i18n-47.0.1/es-CL.xpi) = 372784 -SHA256 (xpi/firefox-i18n-47.0.1/es-ES.xpi) = ff1d09566fd7e78bc374c5c83bed768aa87392e49a16e89eab09f3f6eed67e54 -SIZE (xpi/firefox-i18n-47.0.1/es-ES.xpi) = 348231 -SHA256 (xpi/firefox-i18n-47.0.1/es-MX.xpi) = aa2f4868cef504ba087a33cc395e00ddabf2d765491a51f0048ee704a585ac49 -SIZE (xpi/firefox-i18n-47.0.1/es-MX.xpi) = 445766 -SHA256 (xpi/firefox-i18n-47.0.1/et.xpi) = 11a3d3441bef1876736cf828c1c042af607ef426db14185d7cb37cd7b84d32a7 -SIZE (xpi/firefox-i18n-47.0.1/et.xpi) = 434961 -SHA256 (xpi/firefox-i18n-47.0.1/eu.xpi) = 3e66452b8cd01159c0305e863c2ad6bf95a9c95d881381715e49800a54df88c2 -SIZE (xpi/firefox-i18n-47.0.1/eu.xpi) = 435865 -SHA256 (xpi/firefox-i18n-47.0.1/fa.xpi) = ec6ea46b9674719227bb76f6150172aa36e18cacda99e16ad070454592f4ea64 -SIZE (xpi/firefox-i18n-47.0.1/fa.xpi) = 486498 -SHA256 (xpi/firefox-i18n-47.0.1/ff.xpi) = 702f066fc3974ccfa9185daeb14430910bf1a2adae82588f9fcbe4261079021b -SIZE (xpi/firefox-i18n-47.0.1/ff.xpi) = 443579 -SHA256 (xpi/firefox-i18n-47.0.1/fi.xpi) = ed47d8ca5bfecabcc22c8f568e076fa772a49f125b992eedae1b026580e47591 -SIZE (xpi/firefox-i18n-47.0.1/fi.xpi) = 429551 -SHA256 (xpi/firefox-i18n-47.0.1/fr.xpi) = e8bdc9eada416f728ccdcd46e4d69b0ff743d04e0662c44539be98f223203bc4 -SIZE (xpi/firefox-i18n-47.0.1/fr.xpi) = 450329 -SHA256 (xpi/firefox-i18n-47.0.1/fy-NL.xpi) = 8270d9be627108fa1e6e2e936a55f2ab7a1d36230ea875c261ea69106fce868d -SIZE (xpi/firefox-i18n-47.0.1/fy-NL.xpi) = 442464 -SHA256 (xpi/firefox-i18n-47.0.1/ga-IE.xpi) = 94b6744107662d06991e86355deb37dfe310e65b3dd394e40bc055d4ab6d2501 -SIZE (xpi/firefox-i18n-47.0.1/ga-IE.xpi) = 454693 -SHA256 (xpi/firefox-i18n-47.0.1/gd.xpi) = 2f93cbafc5548a00907c608eb2193a662e0f72dbe6ed3c4c276601a3f629a9ed -SIZE (xpi/firefox-i18n-47.0.1/gd.xpi) = 443138 -SHA256 (xpi/firefox-i18n-47.0.1/gl.xpi) = 8b5b5621bc744e8d21dc84bce2668a52f483858997eb9ad4d15fe8dc16dd371d -SIZE (xpi/firefox-i18n-47.0.1/gl.xpi) = 438909 -SHA256 (xpi/firefox-i18n-47.0.1/gn.xpi) = a8b6effa4189ea1816f89658d7c62ffd3d5cb4ce57e664f9c5dd4377952255b7 -SIZE (xpi/firefox-i18n-47.0.1/gn.xpi) = 464961 -SHA256 (xpi/firefox-i18n-47.0.1/gu-IN.xpi) = 86a5495a14202d68d095cc66c1865daca059a47767c8cf82abb24f38adaec4bb -SIZE (xpi/firefox-i18n-47.0.1/gu-IN.xpi) = 472819 -SHA256 (xpi/firefox-i18n-47.0.1/he.xpi) = 1131961ba5993d28929fc38602a1ce02761c75488b507540c69d7f7caba039f9 -SIZE (xpi/firefox-i18n-47.0.1/he.xpi) = 449445 -SHA256 (xpi/firefox-i18n-47.0.1/hi-IN.xpi) = d4318c5efba739b519f7c9f5c302dc98ebda40abaa46f3f5dd9d78ec184dabe8 -SIZE (xpi/firefox-i18n-47.0.1/hi-IN.xpi) = 489305 -SHA256 (xpi/firefox-i18n-47.0.1/hr.xpi) = e56f5877d6f66773e44b32cc3ca12d14da6d3c986c312787827145a6a1db834e -SIZE (xpi/firefox-i18n-47.0.1/hr.xpi) = 443336 -SHA256 (xpi/firefox-i18n-47.0.1/hsb.xpi) = 2515e205390983fd32e0102f0a105896953913f170ed83e3cc167934d7c0020f -SIZE (xpi/firefox-i18n-47.0.1/hsb.xpi) = 455861 -SHA256 (xpi/firefox-i18n-47.0.1/hu.xpi) = 604068b6f604d505dc6e51a05ff18e857d6b30eadf24c8652683331331bb7185 -SIZE (xpi/firefox-i18n-47.0.1/hu.xpi) = 448454 -SHA256 (xpi/firefox-i18n-47.0.1/hy-AM.xpi) = 115e4f497c799d1bd431c43876d03c0cdbb953c259fa9c2c5f5f5a90fac69e88 -SIZE (xpi/firefox-i18n-47.0.1/hy-AM.xpi) = 494271 -SHA256 (xpi/firefox-i18n-47.0.1/id.xpi) = 358340a6ca043e6daf5fe8d01ba047d9e7f4ff67203f5ab6f75851f14c4ff328 -SIZE (xpi/firefox-i18n-47.0.1/id.xpi) = 420863 -SHA256 (xpi/firefox-i18n-47.0.1/is.xpi) = fc41a1a97c58a2c5f1014685880068d1c5a4290b80bc0ab572992bbfd005d724 -SIZE (xpi/firefox-i18n-47.0.1/is.xpi) = 437344 -SHA256 (xpi/firefox-i18n-47.0.1/it.xpi) = 312edd360fbf24ffdf8a3000dd31fe434806635d94056a11338d4b0e4756017c -SIZE (xpi/firefox-i18n-47.0.1/it.xpi) = 342328 -SHA256 (xpi/firefox-i18n-47.0.1/ja.xpi) = bc89e620c8f445d4be02f6521c3fa51eb39bdada8a1b14ef3f2f2ca46cede849 -SIZE (xpi/firefox-i18n-47.0.1/ja.xpi) = 485006 -SHA256 (xpi/firefox-i18n-47.0.1/kk.xpi) = 3330a11aa4a7a6585ac1ef41c0f3f5da1005082ddbc8dd4b5e4568cd4bca345f -SIZE (xpi/firefox-i18n-47.0.1/kk.xpi) = 491494 -SHA256 (xpi/firefox-i18n-47.0.1/km.xpi) = dc94fbe0fa6ace0f4425f6776a29a23d7e24e75fd16a9c9ae341eee032736c6a -SIZE (xpi/firefox-i18n-47.0.1/km.xpi) = 507775 -SHA256 (xpi/firefox-i18n-47.0.1/kn.xpi) = 82a3cbd086c17e14eb867f40d24ac4f25d96f93c7414f4f8357cc4e06903a84b -SIZE (xpi/firefox-i18n-47.0.1/kn.xpi) = 512033 -SHA256 (xpi/firefox-i18n-47.0.1/ko.xpi) = cbdb8b25554a37603ed4474896b7d054dea6a2fd9bf87d4154f4b50126ed8109 -SIZE (xpi/firefox-i18n-47.0.1/ko.xpi) = 457472 -SHA256 (xpi/firefox-i18n-47.0.1/lij.xpi) = 9933031b52d5e7b8a50a63e8a7d761a990b0d87fae0c5c1ef4bddbab59bfc2ba -SIZE (xpi/firefox-i18n-47.0.1/lij.xpi) = 391959 -SHA256 (xpi/firefox-i18n-47.0.1/lt.xpi) = 449d8cf318c277d242b3fdb224e9b72a50975e69f31f041c8b047ff29a795990 -SIZE (xpi/firefox-i18n-47.0.1/lt.xpi) = 449058 -SHA256 (xpi/firefox-i18n-47.0.1/lv.xpi) = f6d990ac44675f0ebfb3f98e3c85e7bdcd0c3b657a2d4c0bfa99071e6eedc101 -SIZE (xpi/firefox-i18n-47.0.1/lv.xpi) = 442457 -SHA256 (xpi/firefox-i18n-47.0.1/mai.xpi) = 6aa5a42e3022cf58e6b016ab7b788eb23e67625e1905a340aad703be3bfc622c -SIZE (xpi/firefox-i18n-47.0.1/mai.xpi) = 494895 -SHA256 (xpi/firefox-i18n-47.0.1/mk.xpi) = 8a9521bf7962a03e8ad268ac59d3c20d9ab0ec13c2e0137d7d327917da185b80 -SIZE (xpi/firefox-i18n-47.0.1/mk.xpi) = 476189 -SHA256 (xpi/firefox-i18n-47.0.1/ml.xpi) = d864a9265b23dd871521a19b600d5deb1b44fef4b394613a53152dc1d4c45cd6 -SIZE (xpi/firefox-i18n-47.0.1/ml.xpi) = 524949 -SHA256 (xpi/firefox-i18n-47.0.1/mr.xpi) = a2ae1a5fbcecf7b7af2e9a6e590e496733ae1ea7030828d5d39c946a2c803dac -SIZE (xpi/firefox-i18n-47.0.1/mr.xpi) = 497587 -SHA256 (xpi/firefox-i18n-47.0.1/ms.xpi) = e72517c0cf40317cfc337ee33b43c23e7cd8e44c9e0584c6f777f3ca880383ae -SIZE (xpi/firefox-i18n-47.0.1/ms.xpi) = 443220 -SHA256 (xpi/firefox-i18n-47.0.1/nb-NO.xpi) = da0f4738e673ce3a7cb7935383945d58fd9f5050ae2086dcfbec43014e4fe5d2 -SIZE (xpi/firefox-i18n-47.0.1/nb-NO.xpi) = 429971 -SHA256 (xpi/firefox-i18n-47.0.1/nl.xpi) = 2eb190d4b6140d13f077e774e11a13bd48250c8cf1198058dbba696bbc77bb28 -SIZE (xpi/firefox-i18n-47.0.1/nl.xpi) = 429576 -SHA256 (xpi/firefox-i18n-47.0.1/nn-NO.xpi) = fd18bc2166d4a03147cce6ed5e3d4fa959d99dfbdbb0048ff7162370fecf8fa0 -SIZE (xpi/firefox-i18n-47.0.1/nn-NO.xpi) = 425797 -SHA256 (xpi/firefox-i18n-47.0.1/or.xpi) = d474a56eba467485488e9d181e981ff12dea18f57a48b397df4affb7c0ff855e -SIZE (xpi/firefox-i18n-47.0.1/or.xpi) = 497590 -SHA256 (xpi/firefox-i18n-47.0.1/pa-IN.xpi) = ed2907e16280b53c6b16bcb79579ce00e838fa179790160a0463e2579fc52047 -SIZE (xpi/firefox-i18n-47.0.1/pa-IN.xpi) = 492398 -SHA256 (xpi/firefox-i18n-47.0.1/pl.xpi) = 8d6c67251bceae0d3b92463b9ffe8b29c27c8bbb7e7d5ab8bf7077c4e9c17491 -SIZE (xpi/firefox-i18n-47.0.1/pl.xpi) = 371971 -SHA256 (xpi/firefox-i18n-47.0.1/pt-BR.xpi) = e7386ef912551b1daf7b8afbf8189aab579fc241ed085c98d68c16a870471fd5 -SIZE (xpi/firefox-i18n-47.0.1/pt-BR.xpi) = 443876 -SHA256 (xpi/firefox-i18n-47.0.1/pt-PT.xpi) = 3dfb14c2bc860af07da733e457e6f9128dfe3701795b8bfe2a233aa3992fcd0a -SIZE (xpi/firefox-i18n-47.0.1/pt-PT.xpi) = 431644 -SHA256 (xpi/firefox-i18n-47.0.1/rm.xpi) = 32cc50d8b16f978adc25e7d43fb807c93fbcc2d201b85f8191e6ad17fbfc35bf -SIZE (xpi/firefox-i18n-47.0.1/rm.xpi) = 431929 -SHA256 (xpi/firefox-i18n-47.0.1/ro.xpi) = 4be70d42a513abd6697e114161aa768d136d72274a7b252c2c337fa260685289 -SIZE (xpi/firefox-i18n-47.0.1/ro.xpi) = 445166 -SHA256 (xpi/firefox-i18n-47.0.1/ru.xpi) = 818dace0bb3e748a336db9fc9db456b2430e8bcbebec7770bfaa36cfde321bc2 -SIZE (xpi/firefox-i18n-47.0.1/ru.xpi) = 392468 -SHA256 (xpi/firefox-i18n-47.0.1/si.xpi) = a2786e505817c65394b7bfa492ef7b0d6719651b8428bf7cf27357387dc13e7e -SIZE (xpi/firefox-i18n-47.0.1/si.xpi) = 488802 -SHA256 (xpi/firefox-i18n-47.0.1/sk.xpi) = cce9362fbfa295f3de6893150fd0a2d51ffc9718d7383dfc24188cae86a5e418 -SIZE (xpi/firefox-i18n-47.0.1/sk.xpi) = 452877 -SHA256 (xpi/firefox-i18n-47.0.1/sl.xpi) = f198bb1db5e412a3bcb28a8f24144ceff3e827632884a6fe59bd744195757088 -SIZE (xpi/firefox-i18n-47.0.1/sl.xpi) = 429763 -SHA256 (xpi/firefox-i18n-47.0.1/son.xpi) = 493fc303a80b6fa76ab274e005897870333d6a84da63b4152040bf663420a03e -SIZE (xpi/firefox-i18n-47.0.1/son.xpi) = 441955 -SHA256 (xpi/firefox-i18n-47.0.1/sq.xpi) = 96a7e3c877f8fa5b5bb3be6f1e6892a276db4158a348b8400e3a6368ba82e61f -SIZE (xpi/firefox-i18n-47.0.1/sq.xpi) = 446757 -SHA256 (xpi/firefox-i18n-47.0.1/sr.xpi) = bf740e40de6018df798ac065e53041fde5459a990b5041e1bd7528307360d46a -SIZE (xpi/firefox-i18n-47.0.1/sr.xpi) = 462409 -SHA256 (xpi/firefox-i18n-47.0.1/sv-SE.xpi) = ec52f16c0f56cdcbf0a517fa69327fcaeb0aa0cf75557af7f0c9e8038d6c0407 -SIZE (xpi/firefox-i18n-47.0.1/sv-SE.xpi) = 438739 -SHA256 (xpi/firefox-i18n-47.0.1/ta.xpi) = 15eafeadbc45709e6f08c53b44397eb01c87e316ceca2035eacc3ee23b12de7d -SIZE (xpi/firefox-i18n-47.0.1/ta.xpi) = 485395 -SHA256 (xpi/firefox-i18n-47.0.1/te.xpi) = 6c10823ada3e63bc08bd2e241506ce0550b3b8ea344d5b5ef8ea0cf8435ced04 -SIZE (xpi/firefox-i18n-47.0.1/te.xpi) = 516411 -SHA256 (xpi/firefox-i18n-47.0.1/th.xpi) = a2c784f4adae0c951955f83ea6aeb5e2aae328eea94dd103f43427d308e47e67 -SIZE (xpi/firefox-i18n-47.0.1/th.xpi) = 492437 -SHA256 (xpi/firefox-i18n-47.0.1/tr.xpi) = dc8c04ef72855048b942219125a6114583b36932f9c23e2d7b4aad07c20babda -SIZE (xpi/firefox-i18n-47.0.1/tr.xpi) = 438667 -SHA256 (xpi/firefox-i18n-47.0.1/uk.xpi) = bb4c29beb636edbacc9e8b8a054ba5a2c6ddbbf4475e4ef2ac00efa8275bddc1 -SIZE (xpi/firefox-i18n-47.0.1/uk.xpi) = 487554 -SHA256 (xpi/firefox-i18n-47.0.1/uz.xpi) = e93a2dd6c3415cff51e53804b6f10f1d09c6d7196841c9ca8581125cee2b550b -SIZE (xpi/firefox-i18n-47.0.1/uz.xpi) = 446245 -SHA256 (xpi/firefox-i18n-47.0.1/vi.xpi) = 115cb4ffaabae35343a086664d6014e30a311e522010c3b55ccbc7394e8e6b90 -SIZE (xpi/firefox-i18n-47.0.1/vi.xpi) = 454209 -SHA256 (xpi/firefox-i18n-47.0.1/xh.xpi) = 5142bc34da8e31ec27dc89e255a3a6e6357f5f02dcda1739ad875b15396f75c1 -SIZE (xpi/firefox-i18n-47.0.1/xh.xpi) = 435194 -SHA256 (xpi/firefox-i18n-47.0.1/zh-CN.xpi) = d5da058ad1b0a5dbb09575637a81865364ac8b2ee6eaf924889c1765e29a01bc -SIZE (xpi/firefox-i18n-47.0.1/zh-CN.xpi) = 459553 -SHA256 (xpi/firefox-i18n-47.0.1/zh-TW.xpi) = fb986d5692cd7ab0567912929907744f92b53143b48976ad3949d15027660f4e -SIZE (xpi/firefox-i18n-47.0.1/zh-TW.xpi) = 467825 +TIMESTAMP = 1473148535 +SHA256 (xpi/firefox-i18n-49.0/ach.xpi) = 74e77ee93d9806f50d3ed4ba4a2e1140dd2043dea21fde04f07f2d861554feac +SIZE (xpi/firefox-i18n-49.0/ach.xpi) = 427258 +SHA256 (xpi/firefox-i18n-49.0/af.xpi) = d4c11cf1f0b879c7a00c50e54a1fadb6e103cc5f3749bd9b5438eec68414dfcb +SIZE (xpi/firefox-i18n-49.0/af.xpi) = 436100 +SHA256 (xpi/firefox-i18n-49.0/an.xpi) = 18f91834bdf82d99a35c3615b2f212f425f1ffee980861c9a5ac143c3d64a44d +SIZE (xpi/firefox-i18n-49.0/an.xpi) = 446086 +SHA256 (xpi/firefox-i18n-49.0/ar.xpi) = 8a6d8c5dd590142c4adcad9416bab9ec1290c77c45adbe1bb67c32eab49a466b +SIZE (xpi/firefox-i18n-49.0/ar.xpi) = 471934 +SHA256 (xpi/firefox-i18n-49.0/as.xpi) = 20279a1e96b517010bbdcc1f53e8da7522a7ce7a77353b7cd05457c6ee5fc1f8 +SIZE (xpi/firefox-i18n-49.0/as.xpi) = 487353 +SHA256 (xpi/firefox-i18n-49.0/ast.xpi) = 4ee419fa0660c1ce125d4e8c43762ca0356456f793a1da62f5f330a8919a711d +SIZE (xpi/firefox-i18n-49.0/ast.xpi) = 461422 +SHA256 (xpi/firefox-i18n-49.0/az.xpi) = 41f0bd1f57dffb040812d6348908f8326344241eaca47ef6d43e97f0cb5623ae +SIZE (xpi/firefox-i18n-49.0/az.xpi) = 453807 +SHA256 (xpi/firefox-i18n-49.0/be.xpi) = d41263ee0feadf39935a0c80903b2774b56d9117393cd299583838f6fd58e0c1 +SIZE (xpi/firefox-i18n-49.0/be.xpi) = 457911 +SHA256 (xpi/firefox-i18n-49.0/bg.xpi) = 2aff7630fe389dd48a8d0e68c6fa4806aec5fc4b6d760fff978cbe2e9ddf5bd6 +SIZE (xpi/firefox-i18n-49.0/bg.xpi) = 485361 +SHA256 (xpi/firefox-i18n-49.0/bn-BD.xpi) = 8b22da03725d6b889bcab67f5fdc92f85fa9c331b9a88b395e7de4c9131ee14a +SIZE (xpi/firefox-i18n-49.0/bn-BD.xpi) = 511110 +SHA256 (xpi/firefox-i18n-49.0/bn-IN.xpi) = f0d128f08e36819372d269408cef85587234c2cae739c3e15c9edf0d3e11eae5 +SIZE (xpi/firefox-i18n-49.0/bn-IN.xpi) = 508046 +SHA256 (xpi/firefox-i18n-49.0/br.xpi) = 2d17b214774a5bc9872f2e628aef50781331933c641e0e72ac8d7eb8a26cb326 +SIZE (xpi/firefox-i18n-49.0/br.xpi) = 432776 +SHA256 (xpi/firefox-i18n-49.0/bs.xpi) = b99a1bbcf93bad826cb34ce93ecbd356a21a33c64cf6877a7224a87347128ec0 +SIZE (xpi/firefox-i18n-49.0/bs.xpi) = 440114 +SHA256 (xpi/firefox-i18n-49.0/ca.xpi) = 59d4c8249312a1d79f3ecca11523b9abed4023a84ed666aab1365e0b2d164261 +SIZE (xpi/firefox-i18n-49.0/ca.xpi) = 442607 +SHA256 (xpi/firefox-i18n-49.0/cs.xpi) = 450c1eb6c34af705b22d171a0483fd8e847fb40062e3dcf822f3e4db3e423972 +SIZE (xpi/firefox-i18n-49.0/cs.xpi) = 439658 +SHA256 (xpi/firefox-i18n-49.0/cy.xpi) = 3f72e646d51af08c1898662e3c57af872ed99a0210662fe48db91f4275ae2f90 +SIZE (xpi/firefox-i18n-49.0/cy.xpi) = 435867 +SHA256 (xpi/firefox-i18n-49.0/da.xpi) = 5adfa8d47a10a521e6bcaaa54d2ec951ffd95072bf054fa9e274d89017c656d4 +SIZE (xpi/firefox-i18n-49.0/da.xpi) = 423924 +SHA256 (xpi/firefox-i18n-49.0/de.xpi) = c7de9ddccb83903b0feb2122ec6aefbeee89a9a6bd0e6148f17ac24dabbc9fed +SIZE (xpi/firefox-i18n-49.0/de.xpi) = 441916 +SHA256 (xpi/firefox-i18n-49.0/dsb.xpi) = 040e499646f57440526b91d15ca3859586433341089c3186e50b63eacf252de3 +SIZE (xpi/firefox-i18n-49.0/dsb.xpi) = 459990 +SHA256 (xpi/firefox-i18n-49.0/el.xpi) = 8bafacb3fdd32070d045397c5605bf67ec3e726573952b3424f367460fa9ec40 +SIZE (xpi/firefox-i18n-49.0/el.xpi) = 506678 +SHA256 (xpi/firefox-i18n-49.0/en-GB.xpi) = 9bbde23343491c723a73217da3ef7f53574580d9ac12997c2d754a5b8c33993b +SIZE (xpi/firefox-i18n-49.0/en-GB.xpi) = 421948 +SHA256 (xpi/firefox-i18n-49.0/en-US.xpi) = 8151c6ee64b776616a16a37cc7e3fb8676da01e002cb63596b24ee63b00dfb31 +SIZE (xpi/firefox-i18n-49.0/en-US.xpi) = 427548 +SHA256 (xpi/firefox-i18n-49.0/en-ZA.xpi) = 2465656bd1116c12e47253385464b7500f6056c7faf8252386832c89cd83cb12 +SIZE (xpi/firefox-i18n-49.0/en-ZA.xpi) = 410563 +SHA256 (xpi/firefox-i18n-49.0/eo.xpi) = 30c9ead203b3eb1c75d1d88d9fe34f4a9b5bec776b5bf83ff54572a25dd99e97 +SIZE (xpi/firefox-i18n-49.0/eo.xpi) = 436591 +SHA256 (xpi/firefox-i18n-49.0/es-AR.xpi) = 7e401463d87ce8073e5a0784fd52474560bfa4cd8d7ce24c466854d3c4e601a4 +SIZE (xpi/firefox-i18n-49.0/es-AR.xpi) = 440335 +SHA256 (xpi/firefox-i18n-49.0/es-CL.xpi) = 88b0e36cef41f84703dbf834f92b076ce3624996fd6d73b48546100131e8f175 +SIZE (xpi/firefox-i18n-49.0/es-CL.xpi) = 441653 +SHA256 (xpi/firefox-i18n-49.0/es-ES.xpi) = 95408c71b561663b4952ef079e9e7754e4f1e10fd625eb38fe80641ad425aecf +SIZE (xpi/firefox-i18n-49.0/es-ES.xpi) = 347224 +SHA256 (xpi/firefox-i18n-49.0/es-MX.xpi) = 01982bafdf2d5efdd1f0ffc0e94bf96a6a858c1cb05ab84a110deedf566da8dc +SIZE (xpi/firefox-i18n-49.0/es-MX.xpi) = 447124 +SHA256 (xpi/firefox-i18n-49.0/et.xpi) = dd282ccd4b60c25c5ba8cf6aa18c90c87b9afba4fdaffe5d5a5f4f27f2715a16 +SIZE (xpi/firefox-i18n-49.0/et.xpi) = 424384 +SHA256 (xpi/firefox-i18n-49.0/eu.xpi) = 0f0782c38ac74f9dcdd43a64a27f0b6d3d89232e9fd907fd680d717b5efcf9d3 +SIZE (xpi/firefox-i18n-49.0/eu.xpi) = 439741 +SHA256 (xpi/firefox-i18n-49.0/fa.xpi) = a5382f4f8b4e66de993245cb3caa6310b769f721920cc8d2c4fea38d0c141850 +SIZE (xpi/firefox-i18n-49.0/fa.xpi) = 489884 +SHA256 (xpi/firefox-i18n-49.0/ff.xpi) = 2c5bfd1e397f6a9e04609e51c1a80d98463646847bace47e63f24e18dae7b138 +SIZE (xpi/firefox-i18n-49.0/ff.xpi) = 451262 +SHA256 (xpi/firefox-i18n-49.0/fi.xpi) = b067901b0186f7830c1cf4f0f4dd1f889271ed602da3f5aedef143af8529fc37 +SIZE (xpi/firefox-i18n-49.0/fi.xpi) = 430568 +SHA256 (xpi/firefox-i18n-49.0/fr.xpi) = 1223408b0d7e8d7ccfbb5e8fb5c46b343fdbf7d1ddc35378161600659bcbd932 +SIZE (xpi/firefox-i18n-49.0/fr.xpi) = 451718 +SHA256 (xpi/firefox-i18n-49.0/fy-NL.xpi) = 42d2691944e4d880a6a5513eaf8aabc529546abca9f43edfe4df9106c67f0420 +SIZE (xpi/firefox-i18n-49.0/fy-NL.xpi) = 443874 +SHA256 (xpi/firefox-i18n-49.0/ga-IE.xpi) = 70e375afc1a508e2d3b734d1b70f15089633820f110689ca92039422061c0960 +SIZE (xpi/firefox-i18n-49.0/ga-IE.xpi) = 457586 +SHA256 (xpi/firefox-i18n-49.0/gd.xpi) = 60abcd3288be743dcd94ccc351af5bdcf8383606aae5e7d135953bc17255641d +SIZE (xpi/firefox-i18n-49.0/gd.xpi) = 444957 +SHA256 (xpi/firefox-i18n-49.0/gl.xpi) = 9e73c4287f63ed9040ed1d09d35f87d3e9a590483bf701af1b6416c91db31665 +SIZE (xpi/firefox-i18n-49.0/gl.xpi) = 448066 +SHA256 (xpi/firefox-i18n-49.0/gn.xpi) = e6a19bb050a03d3d8c938dfbf08418fcfe36ef89ff7632f1881d0159c2828d4f +SIZE (xpi/firefox-i18n-49.0/gn.xpi) = 455552 +SHA256 (xpi/firefox-i18n-49.0/gu-IN.xpi) = 5d86e2da7e992f631dd0ae4f69a1e24dd60ae1045623fcf15d5a529352287202 +SIZE (xpi/firefox-i18n-49.0/gu-IN.xpi) = 491792 +SHA256 (xpi/firefox-i18n-49.0/he.xpi) = ae29bfd00fb1895a40e711956367938df399123ac8f3404a528c55acb285dbee +SIZE (xpi/firefox-i18n-49.0/he.xpi) = 460376 +SHA256 (xpi/firefox-i18n-49.0/hi-IN.xpi) = 238736c4020c896619cdd9fe159267a85c021e3d14d0c8b7f6db106e57c4c538 +SIZE (xpi/firefox-i18n-49.0/hi-IN.xpi) = 504513 +SHA256 (xpi/firefox-i18n-49.0/hr.xpi) = a584848452be3e96ec7d9971abdca27f652a5ae2f1283bcfcaeee110fe02d5ce +SIZE (xpi/firefox-i18n-49.0/hr.xpi) = 447984 +SHA256 (xpi/firefox-i18n-49.0/hsb.xpi) = b72532c3c1ce3a001d468c601f8e056b360487a7cda83801bc85a26380b52d3a +SIZE (xpi/firefox-i18n-49.0/hsb.xpi) = 457757 +SHA256 (xpi/firefox-i18n-49.0/hu.xpi) = fc2d8cd3d4e2c4958b2f817321f0f1f72c21305a1f63a61fb871415ea50b56be +SIZE (xpi/firefox-i18n-49.0/hu.xpi) = 450546 +SHA256 (xpi/firefox-i18n-49.0/hy-AM.xpi) = 875c5dd8d61656e9f2f49a84f6c8c57a274fb9a40eff9122f0a568fafa02d509 +SIZE (xpi/firefox-i18n-49.0/hy-AM.xpi) = 493806 +SHA256 (xpi/firefox-i18n-49.0/id.xpi) = b074c8fbce1ccdbc4230fd02aa7242839c47aa05d1eff65b2d2d6f7d4df5c7e5 +SIZE (xpi/firefox-i18n-49.0/id.xpi) = 423401 +SHA256 (xpi/firefox-i18n-49.0/is.xpi) = 86c14a2ae4f5fea840760f17f0e5842124da26d5bb1a6654494efc53be49bfcb +SIZE (xpi/firefox-i18n-49.0/is.xpi) = 437732 +SHA256 (xpi/firefox-i18n-49.0/it.xpi) = c03c21291bb939b266a5364362c68606881b442d9b5e666d98c75f291d151957 +SIZE (xpi/firefox-i18n-49.0/it.xpi) = 339263 +SHA256 (xpi/firefox-i18n-49.0/ja.xpi) = 166b704cb0cd351c0273126da1985a66adf9ae1b6d090153523e439c6f2386fc +SIZE (xpi/firefox-i18n-49.0/ja.xpi) = 486516 +SHA256 (xpi/firefox-i18n-49.0/kk.xpi) = 7958060108398ccffada4b0c3cfa729a4215d35460468273146b2e1ccd33c559 +SIZE (xpi/firefox-i18n-49.0/kk.xpi) = 494255 +SHA256 (xpi/firefox-i18n-49.0/km.xpi) = 2123476b1a495f2f0b050260cdbf55581b8e768777f5f4905b66afe6ae4be4be +SIZE (xpi/firefox-i18n-49.0/km.xpi) = 520082 +SHA256 (xpi/firefox-i18n-49.0/kn.xpi) = 309f7a0c41f3b00f1f057696c393792fe2f6503548b78b1b9d3b2b152af93e63 +SIZE (xpi/firefox-i18n-49.0/kn.xpi) = 518780 +SHA256 (xpi/firefox-i18n-49.0/ko.xpi) = b0e840264f89df71e2054b8ff69814773f20cb0578c2a1ea4ae22b343081dd24 +SIZE (xpi/firefox-i18n-49.0/ko.xpi) = 460894 +SHA256 (xpi/firefox-i18n-49.0/lij.xpi) = 1cc35f6df390a54f1b7f54c4b5dddd5d416256e4bb70170a2e8e2be028226095 +SIZE (xpi/firefox-i18n-49.0/lij.xpi) = 396168 +SHA256 (xpi/firefox-i18n-49.0/lt.xpi) = 293c71b21c8e0933d153a2d82f50979d415e25c6f31c76b4df61dd4de2e6e44f +SIZE (xpi/firefox-i18n-49.0/lt.xpi) = 451343 +SHA256 (xpi/firefox-i18n-49.0/lv.xpi) = 4ee7a942cfae3ed3ead7c53eab944cc62a97982e14cca27f80132afad6bee197 +SIZE (xpi/firefox-i18n-49.0/lv.xpi) = 445321 +SHA256 (xpi/firefox-i18n-49.0/mai.xpi) = eb890f44e854be962a24b1f4b8ede2b7f96682dbacc886c3e0f5ee595901c0b6 +SIZE (xpi/firefox-i18n-49.0/mai.xpi) = 502477 +SHA256 (xpi/firefox-i18n-49.0/mk.xpi) = 35390ffb43006544435cef05a2c6448dbac33a5f333d656d1bb05d6960261a77 +SIZE (xpi/firefox-i18n-49.0/mk.xpi) = 498489 +SHA256 (xpi/firefox-i18n-49.0/ml.xpi) = 3749b6a3a7ca683dca2b7bd86b66977d38bb8ce1ecbe13173bf671982086aede +SIZE (xpi/firefox-i18n-49.0/ml.xpi) = 519594 +SHA256 (xpi/firefox-i18n-49.0/mr.xpi) = d6580e2eba53ee39ae37f88e77afeebae87f3664b507cbedca21d92289f279cd +SIZE (xpi/firefox-i18n-49.0/mr.xpi) = 501072 +SHA256 (xpi/firefox-i18n-49.0/ms.xpi) = ce7952b3e85d57f1e3c0f5315076386a35c389703803822f242ec166e76bdf2f +SIZE (xpi/firefox-i18n-49.0/ms.xpi) = 439419 +SHA256 (xpi/firefox-i18n-49.0/nb-NO.xpi) = 2616b7425fe4914f69055577ae1836737e2a37fec50b786106028d2d6f820257 +SIZE (xpi/firefox-i18n-49.0/nb-NO.xpi) = 433584 +SHA256 (xpi/firefox-i18n-49.0/nl.xpi) = e7dca01248fbbe82ddeda4b4706f290801d76085e9cb60da45946dd8973ea681 +SIZE (xpi/firefox-i18n-49.0/nl.xpi) = 431241 +SHA256 (xpi/firefox-i18n-49.0/nn-NO.xpi) = ea1d4b8804a09ab421ea343fd1afa81af90163bfbb09feef046ef3cc4e9ebea7 +SIZE (xpi/firefox-i18n-49.0/nn-NO.xpi) = 427584 +SHA256 (xpi/firefox-i18n-49.0/or.xpi) = d872ff462ffc4b7c3c5bdf50da558b0c75dfdc8fb5bcf08de4c3df036279ebf0 +SIZE (xpi/firefox-i18n-49.0/or.xpi) = 499453 +SHA256 (xpi/firefox-i18n-49.0/pa-IN.xpi) = b31faaf8bb81837b084161dc6deab0135824dee7621b91e2a778638e34234ed0 +SIZE (xpi/firefox-i18n-49.0/pa-IN.xpi) = 479085 +SHA256 (xpi/firefox-i18n-49.0/pl.xpi) = a7a129caa15233fe4b85727515d79a2e8a184afcb9940b491482f4ffd23cfc04 +SIZE (xpi/firefox-i18n-49.0/pl.xpi) = 362533 +SHA256 (xpi/firefox-i18n-49.0/pt-BR.xpi) = e75e8fbb3b2d60ca4b459cd531e89914d70f2bee42eabee9e2425a272b1f624c +SIZE (xpi/firefox-i18n-49.0/pt-BR.xpi) = 446484 +SHA256 (xpi/firefox-i18n-49.0/pt-PT.xpi) = 77c4f4468c59222096eea30091792d9f0feb9fa425ef245e8d20a860a12b8a2c +SIZE (xpi/firefox-i18n-49.0/pt-PT.xpi) = 433685 +SHA256 (xpi/firefox-i18n-49.0/rm.xpi) = 34f5d339ecffc9a059fe08fd9c11c1487b3c9d3480610c4e85c9091b7fb2f187 +SIZE (xpi/firefox-i18n-49.0/rm.xpi) = 439645 +SHA256 (xpi/firefox-i18n-49.0/ro.xpi) = f898bd1cb618f26e62275d9bfee1966492629c1b30fc88d1cdfb81575628b95a +SIZE (xpi/firefox-i18n-49.0/ro.xpi) = 447537 +SHA256 (xpi/firefox-i18n-49.0/ru.xpi) = 0efd15d38d73ff52b372150b62c499915e9918e6040485bd17396314c1d58d6c +SIZE (xpi/firefox-i18n-49.0/ru.xpi) = 391743 +SHA256 (xpi/firefox-i18n-49.0/si.xpi) = 05054561d4a98abb55c0b732a290af7d7f2416c84056e70e122bd42e192da883 +SIZE (xpi/firefox-i18n-49.0/si.xpi) = 492129 +SHA256 (xpi/firefox-i18n-49.0/sk.xpi) = 743da09e1379a4953f1cc74acffa648fd214dc37a5c2504d40042fdad52366c7 +SIZE (xpi/firefox-i18n-49.0/sk.xpi) = 452528 +SHA256 (xpi/firefox-i18n-49.0/sl.xpi) = 466ce533193f90964207d406c470591e5d8e818e46de48864586a4a9a4075787 +SIZE (xpi/firefox-i18n-49.0/sl.xpi) = 430479 +SHA256 (xpi/firefox-i18n-49.0/son.xpi) = ae036066978340cd8eeca8d49aae5dba8afca4eb76c8b7a19d0af54fe3d85e58 +SIZE (xpi/firefox-i18n-49.0/son.xpi) = 437033 +SHA256 (xpi/firefox-i18n-49.0/sq.xpi) = 54018f51755e4fb715cf7dc8f2789747656b649414b4b0a46a7bdaec3658c7f4 +SIZE (xpi/firefox-i18n-49.0/sq.xpi) = 453367 +SHA256 (xpi/firefox-i18n-49.0/sr.xpi) = 6f017079d428836515918c7f32a2c1acc9a07cc67e9afc510488d7ae6ddf9030 +SIZE (xpi/firefox-i18n-49.0/sr.xpi) = 463882 +SHA256 (xpi/firefox-i18n-49.0/sv-SE.xpi) = 76dcd84ba983e48d081faae04df35febad163c639d409000bad39d7758e344ee +SIZE (xpi/firefox-i18n-49.0/sv-SE.xpi) = 440491 +SHA256 (xpi/firefox-i18n-49.0/ta.xpi) = fcca052aa7d33a03293ea0d52b6e8d2c444453290cd57431b51aaa16595f1ed3 +SIZE (xpi/firefox-i18n-49.0/ta.xpi) = 492433 +SHA256 (xpi/firefox-i18n-49.0/te.xpi) = 3ba228585b296e6d1a6013e49e345ed994dd5a8f375cfa92a84666a5b359e1ae +SIZE (xpi/firefox-i18n-49.0/te.xpi) = 518144 +SHA256 (xpi/firefox-i18n-49.0/th.xpi) = 4b807f928829a0d1f59f23763b0a302e066b159fda837d024d868bfc82c17809 +SIZE (xpi/firefox-i18n-49.0/th.xpi) = 486983 +SHA256 (xpi/firefox-i18n-49.0/tr.xpi) = 9b1cd82e2ca1617086aabaf8c9c722d24b7794ee5f2588c1002f51b3901ed14c +SIZE (xpi/firefox-i18n-49.0/tr.xpi) = 440855 +SHA256 (xpi/firefox-i18n-49.0/uk.xpi) = 4417c9b248b1d02170accaa0ba3014eb2765cba7aaf388ddca3696c54ee21019 +SIZE (xpi/firefox-i18n-49.0/uk.xpi) = 491356 +SHA256 (xpi/firefox-i18n-49.0/uz.xpi) = 5571d1b5c42fd5db1b4b75e1a84edf9c2b8138dac635b0461e89023c6b36bb4b +SIZE (xpi/firefox-i18n-49.0/uz.xpi) = 446443 +SHA256 (xpi/firefox-i18n-49.0/vi.xpi) = 85edf9733bd538268c74519b1aba4bcf79d3cd1983cc256f22565d0521b8eb8b +SIZE (xpi/firefox-i18n-49.0/vi.xpi) = 448047 +SHA256 (xpi/firefox-i18n-49.0/xh.xpi) = a6844d3412f58347a22e3ae0b242aee6b2dcbd504a949c064c83398a40e47c7c +SIZE (xpi/firefox-i18n-49.0/xh.xpi) = 439945 +SHA256 (xpi/firefox-i18n-49.0/zh-CN.xpi) = 1f5648cecfeb15503a320cf0c765b097ce220d01f17e4153032ef99fac3f6cf5 +SIZE (xpi/firefox-i18n-49.0/zh-CN.xpi) = 466752 +SHA256 (xpi/firefox-i18n-49.0/zh-TW.xpi) = efe84a997c57c394d1cc1067a1d63fd77719f015e8eb42bfa9fe8225250e8ddc +SIZE (xpi/firefox-i18n-49.0/zh-TW.xpi) = 469469 Modified: branches/2016Q3/www/firefox/Makefile ============================================================================== --- branches/2016Q3/www/firefox/Makefile Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox/Makefile Sun Sep 11 23:56:30 2016 (r421884) @@ -2,26 +2,26 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 47.0.1 +DISTVERSION= 49.0 DISTVERSIONSUFFIX=.source PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.12:devel/nspr \ - nss>=3.23:security/nss \ + nss>=3.25:security/nss \ libevent2>=2.0.21_2:devel/libevent2 \ soundtouch>=1.9.0:audio/soundtouch \ - harfbuzz>=1.2.2:print/harfbuzz \ + harfbuzz>=1.2.6:print/harfbuzz \ graphite2>=1.3.8:graphics/graphite2 \ png>=1.6.21:graphics/png \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ - sqlite3>=3.11.0:databases/sqlite3 \ + sqlite3>=3.13:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ @@ -44,8 +44,7 @@ USES= tar:xz FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png -MOZ_OPTIONS= --program-transform-name='s/firefox/${MOZILLA}/' \ - --enable-application=browser \ +MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding OPTIONS_EXCLUDE= GSTREAMER LOGGING @@ -62,6 +61,9 @@ OPTIONS_DEFAULT_FreeBSD_11_i386= RUST OPTIONS_SINGLE+= TOOLKIT OPTIONS_SINGLE_TOOLKIT= GTK2 GTK3 +TEST_BROKEN= No rule to make target '../../../dist/bin/libnspr4.so', needed by \ + '../../../_tests/xpcshell/modules/libmar/tests/unit/libnspr4.so' + .include "${.CURDIR}/../../www/firefox/Makefile.options" WRKSRC:= ${WRKDIR}/${PORTNAME}-${DISTVERSION} Modified: branches/2016Q3/www/firefox/Makefile.options ============================================================================== --- branches/2016Q3/www/firefox/Makefile.options Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox/Makefile.options Sun Sep 11 23:56:30 2016 (r421884) @@ -16,9 +16,9 @@ OPTIONS_MULTI_AUDIO= ALSA PULSEAUDIO OPTIONS_EXCLUDE+= DTRACE .endif -# dtrace(1) crashes during build -OPTIONS_EXCLUDE_FreeBSD_9_i386+= DTRACE -OPTIONS_EXCLUDE+= ${OPTIONS_EXCLUDE_${OPSYS}_${OSREL:R}_${ARCH}} +# dtrace(1) crashes during build or fails to allocate space for probe +OPTIONS_EXCLUDE_FreeBSD_9+= DTRACE +OPTIONS_EXCLUDE+= ${OPTIONS_EXCLUDE_${OPSYS}_${OSREL:R}} BUNDLED_CAIRO_DESC?= Use bundled fork of cairo-1.9.5 CANBERRA_DESC?= Sound theme alerts Modified: branches/2016Q3/www/firefox/distinfo ============================================================================== --- branches/2016Q3/www/firefox/distinfo Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox/distinfo Sun Sep 11 23:56:30 2016 (r421884) @@ -1,2 +1,3 @@ -SHA256 (firefox-47.0.1.source.tar.xz) = 5ac36c3481dde80ef2e36237badef6cb8ec5fe7e3b5ac1728839477de0cc034c -SIZE (firefox-47.0.1.source.tar.xz) = 188695532 +TIMESTAMP = 1473148535 +SHA256 (firefox-49.0.source.tar.xz) = feaded1735a270a0e66ea93262d28e210c6e348ee3af62d93da9d615ea9063b1 +SIZE (firefox-49.0.source.tar.xz) = 189545372 Modified: branches/2016Q3/www/firefox/files/patch-bug1013882 ============================================================================== --- branches/2016Q3/www/firefox/files/patch-bug1013882 Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox/files/patch-bug1013882 Sun Sep 11 23:56:30 2016 (r421884) @@ -11,8 +11,8 @@ index 754312a..c69904c 100644 +endif + DEFINES += -DMOZ_ICU_VERSION=$(MOZ_ICU_VERSION) - ifdef MOZ_NATIVE_ICU - DEFINES += -DMOZ_NATIVE_ICU + ifdef MOZ_SYSTEM_ICU + DEFINES += -DMOZ_SYSTEM_ICU diff --git b2g/installer/package-manifest.in b2g/installer/package-manifest.in index 17d433c..0416187 100644 --- b2g/installer/package-manifest.in Modified: branches/2016Q3/www/firefox/files/patch-bug1021761 ============================================================================== --- branches/2016Q3/www/firefox/files/patch-bug1021761 Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox/files/patch-bug1021761 Sun Sep 11 23:56:30 2016 (r421884) @@ -1,3 +1,15 @@ +diff --git build/moz.configure/old.configure build/moz.configure/old.configure +index b95dd2b..4cbefd5 100644 +--- build/moz.configure/old.configure ++++ build/moz.configure/old.configure +@@ -305,6 +305,7 @@ def old_configure_options(*options): + '--with-nspr-prefix', + '--with-nss-exec-prefix', + '--with-nss-prefix', ++ '--with-oss', + '--with-pthreads', + '--with-qemu-exe', + '--with-servo', diff --git old-configure.in configure.in index 48e60c0..ec08417 100644 --- old-configure.in @@ -1091,13 +1103,13 @@ index 991f03f..3d99eb5 100644 +if CONFIG['MOZ_OSS']: + OS_LIBS += CONFIG['MOZ_OSS_LIBS'] - if CONFIG['MOZ_NATIVE_JPEG']: + if CONFIG['MOZ_SYSTEM_JPEG']: OS_LIBS += CONFIG['MOZ_JPEG_LIBS'] diff --git toolkit/library/moz.build toolkit/library/moz.build index e191f13..4fb268a 100644 --- toolkit/library/moz.build +++ toolkit/library/moz.build -@@ -234,8 +234,8 @@ if CONFIG['MOZ_NATIVE_LIBVPX']: +@@ -234,8 +234,8 @@ if CONFIG['MOZ_SYSTEM_LIBVPX']: if not CONFIG['MOZ_TREE_PIXMAN']: OS_LIBS += CONFIG['MOZ_PIXMAN_LIBS'] Copied: branches/2016Q3/www/firefox/files/patch-bug1288587 (from r421531, head/www/firefox/files/patch-bug1288587) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/www/firefox/files/patch-bug1288587 Sun Sep 11 23:56:30 2016 (r421884, copy of r421531, head/www/firefox/files/patch-bug1288587) @@ -0,0 +1,67 @@ +diff --git a/build/moz.configure/init.configure b/build/moz.configure/init.configure +index 855214a..1e91d51 100644 +--- build/moz.configure/init.configure ++++ build/moz.configure/init.configure +@@ -165,16 +165,17 @@ option(env='PYTHON', nargs=1, help='Python interpreter') + # ============================================================== + @depends('PYTHON', check_build_environment, mozconfig, '--help') + @imports('os') + @imports('sys') + @imports('subprocess') + @imports(_from='mozbuild.configure.util', _import='LineIO') + @imports(_from='mozbuild.virtualenv', _import='VirtualenvManager') + @imports(_from='mozbuild.virtualenv', _import='verify_python_version') ++@imports(_from='__builtin__', _import='KeyError') + @imports('distutils.sysconfig') + def virtualenv_python(env_python, build_env, mozconfig, help): + if help: + return + + python = env_python[0] if env_python else None + + # Ideally we'd rely on the mozconfig injection from mozconfig_options, +@@ -184,16 +185,22 @@ def virtualenv_python(env_python, build_env, mozconfig, help): + if 'PYTHON' in mozconfig['env']['added']: + python = mozconfig['env']['added']['PYTHON'] + elif 'PYTHON' in mozconfig['env']['modified']: + python = mozconfig['env']['modified']['PYTHON'][1] + elif 'PYTHON' in mozconfig['vars']['added']: + python = mozconfig['vars']['added']['PYTHON'] + elif 'PYTHON' in mozconfig['vars']['modified']: + python = mozconfig['vars']['modified']['PYTHON'][1] ++ for i in ('env', 'vars'): ++ for j in ('added', 'modified'): ++ try: ++ del mozconfig[i][j]['PYTHON'] ++ except KeyError: ++ pass + + with LineIO(lambda l: log.error(l)) as out: + verify_python_version(out) + topsrcdir, topobjdir = build_env.topsrcdir, build_env.topobjdir + if topobjdir.endswith('/js/src'): + topobjdir = topobjdir[:-7] + + with LineIO(lambda l: log.info(l)) as out: +@@ -219,17 +226,20 @@ def virtualenv_python(env_python, build_env, mozconfig, help): + log.info('Creating Python environment') + manager.build(python) + + python = normsep(manager.python_path) + + if python != normsep(sys.executable): + log.info('Reexecuting in the virtualenv') + if env_python: +- del os.environ['PYTHON'] ++ try: ++ del os.environ['PYTHON'] ++ except KeyError: ++ pass + # One would prefer to use os.execl, but that's completely borked on + # Windows. + sys.exit(subprocess.call([python] + sys.argv)) + + # We are now in the virtualenv + if not distutils.sysconfig.get_python_lib(): + die('Could not determine python site packages directory') + Modified: branches/2016Q3/www/firefox/files/patch-bug847568 ============================================================================== --- branches/2016Q3/www/firefox/files/patch-bug847568 Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox/files/patch-bug847568 Sun Sep 11 23:56:30 2016 (r421884) @@ -1,15 +1,28 @@ # Allow building against system-wide graphite2/harfbuzz. +diff --git build/moz.configure/old.configure build/moz.configure/old.configure +index 4cbefd5..42ab554 100644 +--- build/moz.configure/old.configure ++++ build/moz.configure/old.configure +@@ -312,6 +312,8 @@ def old_configure_options(*options): + '--with-sixgill', + '--with-soft-float', + '--with-system-bz2', ++ '--with-system-graphite2', ++ '--with-system-harfbuzz', + '--with-system-icu', + '--with-system-jpeg', + '--with-system-libevent', diff --git config/Makefile.in config/Makefile.in index 14bfc0d..5383399 100644 --- config/Makefile.in +++ config/Makefile.in @@ -49,6 +49,8 @@ export:: $(export-preqs) - -DMOZ_NATIVE_LIBEVENT=$(MOZ_NATIVE_LIBEVENT) \ - -DMOZ_NATIVE_LIBVPX=$(MOZ_NATIVE_LIBVPX) \ - -DMOZ_NATIVE_ICU=$(MOZ_NATIVE_ICU) \ -+ -DMOZ_NATIVE_GRAPHITE2=$(MOZ_NATIVE_GRAPHITE2) \ -+ -DMOZ_NATIVE_HARFBUZZ=$(MOZ_NATIVE_HARFBUZZ) \ + -DMOZ_SYSTEM_LIBEVENT=$(MOZ_SYSTEM_LIBEVENT) \ + -DMOZ_SYSTEM_LIBVPX=$(MOZ_SYSTEM_LIBVPX) \ + -DMOZ_SYSTEM_ICU=$(MOZ_SYSTEM_ICU) \ ++ -DMOZ_SYSTEM_GRAPHITE2=$(MOZ_SYSTEM_GRAPHITE2) \ ++ -DMOZ_SYSTEM_HARFBUZZ=$(MOZ_SYSTEM_HARFBUZZ) \ $(srcdir)/system-headers | $(PERL) $(topsrcdir)/nsprpub/config/make-system-wrappers.pl system_wrappers $(INSTALL) system_wrappers $(DIST) @@ -21,11 +34,11 @@ index 18e8703..bdc5f82 100644 #endif libutil.h unwind.h -+#if MOZ_NATIVE_GRAPHITE2==1 ++#if MOZ_SYSTEM_GRAPHITE2==1 +graphite2/Font.h +graphite2/Segment.h +#endif -+#if MOZ_NATIVE_HARFBUZZ==1 ++#if MOZ_SYSTEM_HARFBUZZ==1 +harfbuzz/hb-ot.h +harfbuzz/hb.h +#endif @@ -42,14 +55,14 @@ index ac38f40..87536b7 100644 + +MOZ_ARG_WITH_BOOL(system-harfbuzz, +[ --with-system-harfbuzz Use system harfbuzz (located with pkgconfig)], -+MOZ_NATIVE_HARFBUZZ=1, -+MOZ_NATIVE_HARFBUZZ=) ++MOZ_SYSTEM_HARFBUZZ=1, ++MOZ_SYSTEM_HARFBUZZ=) + -+if test -n "$MOZ_NATIVE_HARFBUZZ"; then -+ PKG_CHECK_MODULES(MOZ_HARFBUZZ, harfbuzz >= 1.2.2) ++if test -n "$MOZ_SYSTEM_HARFBUZZ"; then ++ PKG_CHECK_MODULES(MOZ_HARFBUZZ, harfbuzz >= 1.2.6) +fi + -+AC_SUBST(MOZ_NATIVE_HARFBUZZ) ++AC_SUBST(MOZ_SYSTEM_HARFBUZZ) + +dnl ======================================================== +dnl Check for graphite2 @@ -57,10 +70,10 @@ index ac38f40..87536b7 100644 + +MOZ_ARG_WITH_BOOL(system-graphite2, +[ --with-system-graphite2 Use system graphite2 (located with pkgconfig)], -+MOZ_NATIVE_GRAPHITE2=1, -+MOZ_NATIVE_GRAPHITE2=) ++MOZ_SYSTEM_GRAPHITE2=1, ++MOZ_SYSTEM_GRAPHITE2=) + -+if test -n "$MOZ_NATIVE_GRAPHITE2"; then ++if test -n "$MOZ_SYSTEM_GRAPHITE2"; then + PKG_CHECK_MODULES(MOZ_GRAPHITE2, graphite2) + + dnl graphite2.pc has bogus version, check manually @@ -77,7 +90,7 @@ index ac38f40..87536b7 100644 + [AC_MSG_ERROR([--with-system-graphite2 requested but no working libgraphite2 found])]) +fi + -+AC_SUBST(MOZ_NATIVE_GRAPHITE2) ++AC_SUBST(MOZ_SYSTEM_GRAPHITE2) + +dnl ======================================================== dnl Check for pixman and cairo @@ -91,7 +104,7 @@ index a660ba4..6b2f602 100644 SOURCES += ['nsTextFragmentSSE2.cpp'] SOURCES['nsTextFragmentSSE2.cpp'].flags += CONFIG['SSE2_FLAGS'] -+if CONFIG['MOZ_NATIVE_HARFBUZZ']: ++if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + SOURCES['nsContentUtils.cpp'].flags += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + EXTRA_COMPONENTS += [ @@ -148,10 +161,10 @@ index 519aa46..6929751 100644 if CONFIG['MOZ_TREE_CAIRO']: DIRS += ['cairo'] -+if not CONFIG['MOZ_NATIVE_GRAPHITE2']: ++if not CONFIG['MOZ_SYSTEM_GRAPHITE2']: + DIRS += ['graphite2/src' ] + -+if not CONFIG['MOZ_NATIVE_HARFBUZZ']: ++if not CONFIG['MOZ_SYSTEM_HARFBUZZ']: + DIRS += ['harfbuzz/src'] + DIRS += [ @@ -174,7 +187,7 @@ index 28fa6b5..240dced 100755 '-Wno-unused-private-field', ] -+if CONFIG['MOZ_NATIVE_HARFBUZZ']: ++if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'android', 'gonk', 'qt'): @@ -188,7 +201,7 @@ index 1d0c2f9..adb8941 100644 '-Wno-unused-private-field', ] -+if CONFIG['MOZ_NATIVE_HARFBUZZ']: ++if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'android', 'gonk', 'qt'): @@ -203,10 +216,10 @@ index d5852fa..aeeab25 100644 LOCAL_INCLUDES += CONFIG['SKIA_INCLUDES'] -DEFINES['GRAPHITE2_STATIC'] = True -+if CONFIG['MOZ_NATIVE_HARFBUZZ']: ++if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + -+if CONFIG['MOZ_NATIVE_GRAPHITE2']: ++if CONFIG['MOZ_SYSTEM_GRAPHITE2']: + CXXFLAGS += CONFIG['MOZ_GRAPHITE2_CFLAGS'] +else: + DEFINES['GRAPHITE2_STATIC'] = True @@ -220,7 +233,7 @@ index d736943..41a931f 100644 LOCAL_INCLUDES += CONFIG['MOZ_ICU_INCLUDES'] USE_LIBS += ['icu'] -+if CONFIG['MOZ_NATIVE_HARFBUZZ']: ++if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + DIST_INSTALL = True @@ -232,7 +245,7 @@ index 0b0717a..2e665c9 100644 '/netwerk/base', ] -+if CONFIG['MOZ_NATIVE_HARFBUZZ']: ++if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and CONFIG['ANDROID_VERSION'] > '19': @@ -242,14 +255,14 @@ diff --git toolkit/library/moz.build too index 67f0db9..d42137a 100644 --- toolkit/library/moz.build +++ toolkit/library/moz.build -@@ -231,6 +231,12 @@ if CONFIG['MOZ_NATIVE_LIBVPX']: +@@ -231,6 +231,12 @@ if CONFIG['MOZ_SYSTEM_LIBVPX']: if not CONFIG['MOZ_TREE_PIXMAN']: OS_LIBS += CONFIG['MOZ_PIXMAN_LIBS'] -+if CONFIG['MOZ_NATIVE_GRAPHITE2']: ++if CONFIG['MOZ_SYSTEM_GRAPHITE2']: + OS_LIBS += CONFIG['MOZ_GRAPHITE2_LIBS'] + -+if CONFIG['MOZ_NATIVE_HARFBUZZ']: ++if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + OS_LIBS += CONFIG['MOZ_HARFBUZZ_LIBS'] + if CONFIG['MOZ_OSS']: Modified: branches/2016Q3/www/firefox/files/patch-ijg-libjpeg ============================================================================== --- branches/2016Q3/www/firefox/files/patch-ijg-libjpeg Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox/files/patch-ijg-libjpeg Sun Sep 11 23:56:30 2016 (r421884) @@ -4,7 +4,7 @@ diff --git old-configure.in configure.in index f0aeb5d..1c01010 100644 --- old-configure.in +++ old-configure.in -@@ -4027,11 +4027,7 @@ if test "$MOZ_NATIVE_JPEG" = 1; then +@@ -4027,11 +4027,7 @@ if test "$MOZ_SYSTEM_JPEG" = 1; then #include ], [ #if JPEG_LIB_VERSION < $MOZJPEG #error "Insufficient JPEG library version ($MOZJPEG required)." @@ -14,7 +14,7 @@ index f0aeb5d..1c01010 100644 - #endif - ], + #endif ], - MOZ_NATIVE_JPEG=1, + MOZ_SYSTEM_JPEG=1, AC_MSG_ERROR([Insufficient JPEG library version for --with-system-jpeg])) fi diff --git image/decoders/nsJPEGDecoder.cpp image/decoders/nsJPEGDecoder.cpp Modified: branches/2016Q3/www/firefox/files/patch-modules-libpref-init-all.js ============================================================================== --- branches/2016Q3/www/firefox/files/patch-modules-libpref-init-all.js Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox/files/patch-modules-libpref-init-all.js Sun Sep 11 23:56:30 2016 (r421884) @@ -1,15 +1,14 @@ ---- modules/libpref/init/all.js.orig 2015-08-06 22:39:34 UTC +--- modules/libpref/init/all.js.orig 2016-07-25 20:22:05 UTC +++ modules/libpref/init/all.js -@@ -4052,7 +4052,12 @@ pref("layers.max-active", -1); +@@ -4453,6 +4453,11 @@ pref("layers.max-active", -1); + // if you change the tile size. pref("layers.tiles.adjust", true); - // Set the default values, and then override per-platform as needed -+#ifdef MOZ_TREE_CAIRO - pref("layers.offmainthreadcomposition.enabled", true); -+#else ++#ifndef MOZ_TREE_CAIRO +// Disable for system cairo on suspicion of causing random crashes -+pref("layers.offmainthreadcomposition.enabled", false); ++pref("layers.offmainthreadcomposition.force-disabled", true); +#endif ++ // Compositor target frame rate. NOTE: If vsync is enabled the compositor // frame rate will still be capped. // -1 -> default (match layout.frame_rate or 60 FPS) Modified: branches/2016Q3/www/firefox/files/patch-z-bug517422 ============================================================================== --- branches/2016Q3/www/firefox/files/patch-z-bug517422 Sun Sep 11 23:01:34 2016 (r421883) +++ branches/2016Q3/www/firefox/files/patch-z-bug517422 Sun Sep 11 23:56:30 2016 (r421884) @@ -1,18 +1,35 @@ # Allow more config/external/ libs built against system-wide version. +diff --git build/moz.configure/old.configure build/moz.configure/old.configure +index 42ab554..c91df3d 100644 +--- build/moz.configure/old.configure ++++ build/moz.configure/old.configure +@@ -320,7 +320,12 @@ def old_configure_options(*options): + '--with-system-libvpx', + '--with-system-nspr', + '--with-system-nss', ++ '--with-system-ogg', + '--with-system-png', ++ '--with-system-soundtouch', ++ '--with-system-theora', ++ '--with-system-tremor', ++ '--with-system-vorbis', + '--with-system-zlib', + '--with-thumb', + '--with-thumb-interwork', diff --git config/Makefile.in config/Makefile.in index 5383399..0410004 100644 --- config/Makefile.in +++ config/Makefile.in @@ -77,6 +77,11 @@ export:: $(export-preqs) - -DMOZ_NATIVE_ICU=$(MOZ_NATIVE_ICU) \ - -DMOZ_NATIVE_GRAPHITE2=$(MOZ_NATIVE_GRAPHITE2) \ - -DMOZ_NATIVE_HARFBUZZ=$(MOZ_NATIVE_HARFBUZZ) \ -+ -DMOZ_NATIVE_OGG=$(MOZ_NATIVE_OGG) \ -+ -DMOZ_NATIVE_THEORA=$(MOZ_NATIVE_THEORA) \ -+ -DMOZ_NATIVE_VORBIS=$(MOZ_NATIVE_VORBIS) \ -+ -DMOZ_NATIVE_TREMOR=$(MOZ_NATIVE_TREMOR) \ -+ -DMOZ_NATIVE_SOUNDTOUCH=$(MOZ_NATIVE_SOUNDTOUCH) \ + -DMOZ_SYSTEM_ICU=$(MOZ_SYSTEM_ICU) \ + -DMOZ_SYSTEM_GRAPHITE2=$(MOZ_SYSTEM_GRAPHITE2) \ + -DMOZ_SYSTEM_HARFBUZZ=$(MOZ_SYSTEM_HARFBUZZ) \ ++ -DMOZ_SYSTEM_OGG=$(MOZ_SYSTEM_OGG) \ ++ -DMOZ_SYSTEM_THEORA=$(MOZ_SYSTEM_THEORA) \ ++ -DMOZ_SYSTEM_VORBIS=$(MOZ_SYSTEM_VORBIS) \ ++ -DMOZ_SYSTEM_TREMOR=$(MOZ_SYSTEM_TREMOR) \ ++ -DMOZ_SYSTEM_SOUNDTOUCH=$(MOZ_SYSTEM_SOUNDTOUCH) \ $(srcdir)/system-headers | $(PERL) $(topsrcdir)/nsprpub/config/make-system-wrappers.pl system_wrappers $(INSTALL) system_wrappers $(DIST) @@ -25,20 +42,20 @@ index f67c5c7..eb909ce 100644 external_dirs += ['modules/brotli'] -if CONFIG['MOZ_VORBIS']: -+if not CONFIG['MOZ_NATIVE_OGG']: ++if not CONFIG['MOZ_SYSTEM_OGG']: + external_dirs += ['media/libogg'] + -+if CONFIG['MOZ_VORBIS'] and not CONFIG['MOZ_NATIVE_VORBIS']: ++if CONFIG['MOZ_VORBIS'] and not CONFIG['MOZ_SYSTEM_VORBIS']: external_dirs += ['media/libvorbis'] -if CONFIG['MOZ_TREMOR']: -+if CONFIG['MOZ_TREMOR'] and not CONFIG['MOZ_NATIVE_TREMOR']: ++if CONFIG['MOZ_TREMOR'] and not CONFIG['MOZ_SYSTEM_TREMOR']: external_dirs += ['media/libtremor'] -+if not CONFIG['MOZ_NATIVE_THEORA']: *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Sun Sep 11 23:58:51 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EFE1ABD7D2E; Sun, 11 Sep 2016 23:58:51 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0AC4CD1; Sun, 11 Sep 2016 23:58:51 +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 u8BNwoUw038465; Sun, 11 Sep 2016 23:58:50 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BNwop1038464; Sun, 11 Sep 2016 23:58:50 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609112358.u8BNwop1038464@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 11 Sep 2016 23:58:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421886 - in branches/2016Q3/www/firefox: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 23:58:52 -0000 Author: jbeich Date: Sun Sep 11 23:58:50 2016 New Revision: 421886 URL: https://svnweb.freebsd.org/changeset/ports/421886 Log: MFH: r421532 www/firefox: re-enable OMTC for BUNDLED_CAIRO=off (backing out r393805) OMTC is also required to support Electrolysis (called Multiprocess Windows in about:support) introduced in Firefox 48 via e10srollout@mozilla.org system addon. PR: 202174, 211792 Tested by: scf Approved by: ports-secteam (feld) Deleted: branches/2016Q3/www/firefox/files/patch-modules-libpref-init-all.js Modified: branches/2016Q3/www/firefox/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/firefox/Makefile ============================================================================== --- branches/2016Q3/www/firefox/Makefile Sun Sep 11 23:57:56 2016 (r421885) +++ branches/2016Q3/www/firefox/Makefile Sun Sep 11 23:58:50 2016 (r421886) @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 49.0 DISTVERSIONSUFFIX=.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ From owner-svn-ports-branches@freebsd.org Mon Sep 12 00:00:53 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21227BD7DCC; Mon, 12 Sep 2016 00:00:53 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CE719ECE; Mon, 12 Sep 2016 00:00:52 +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 u8C00q7p038770; Mon, 12 Sep 2016 00:00:52 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C00pJc038768; Mon, 12 Sep 2016 00:00:51 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609120000.u8C00pJc038768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 12 Sep 2016 00:00:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421887 - in branches/2016Q3: Mk www/firefox X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 00:00:53 -0000 Author: jbeich Date: Mon Sep 12 00:00:51 2016 New Revision: 421887 URL: https://svnweb.freebsd.org/changeset/ports/421887 Log: MFH: r421533 gecko: drop poorly maintained GIO=off case after r376999 Glib IO is already used by Gtk internally, so there's little reason to avoid it unless using non-Gtk builds which are no longer supported. https://bugzilla.mozilla.org/show_bug.cgi?id=1286627 https://bugzilla.mozilla.org/show_bug.cgi?id=1287288 PR: 210220 Reported by: Marco Beishuizen, Arrigo Marchiori Approved by: ports-secteam (feld) Modified: branches/2016Q3/Mk/bsd.gecko.mk branches/2016Q3/www/firefox/Makefile.options Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/Mk/bsd.gecko.mk ============================================================================== --- branches/2016Q3/Mk/bsd.gecko.mk Sun Sep 11 23:58:50 2016 (r421886) +++ branches/2016Q3/Mk/bsd.gecko.mk Mon Sep 12 00:00:51 2016 (r421887) @@ -348,12 +348,6 @@ MOZ_OPTIONS+= --enable-gconf MOZ_OPTIONS+= --disable-gconf .endif -.if ${PORT_OPTIONS:MGIO} && ! ${MOZ_TOOLKIT:Mcairo-qt} -MOZ_OPTIONS+= --enable-gio -.else -MOZ_OPTIONS+= --disable-gio -.endif - .if ${PORT_OPTIONS:MGNOMEUI} BUILD_DEPENDS+= ${libgnomeui_DETECT}:${libgnomeui_LIB_DEPENDS:C/.*://} USE_GNOME+= libgnomeui:build Modified: branches/2016Q3/www/firefox/Makefile.options ============================================================================== --- branches/2016Q3/www/firefox/Makefile.options Sun Sep 11 23:58:50 2016 (r421886) +++ branches/2016Q3/www/firefox/Makefile.options Mon Sep 12 00:00:51 2016 (r421887) @@ -1,10 +1,10 @@ # -*- makefile-bsdmake -*- -OPTIONS_DEFINE+= BUNDLED_CAIRO CANBERRA DBUS DEBUG DTRACE FFMPEG GCONF GIO \ +OPTIONS_DEFINE+= BUNDLED_CAIRO CANBERRA DBUS DEBUG DTRACE FFMPEG GCONF \ GNOMEUI GSTREAMER INTEGER_SAMPLES LIBPROXY LOGGING \ OPTIMIZED_CFLAGS PGO PROFILE TEST -OPTIONS_DEFAULT+= DBUS DTRACE FFMPEG GIO GSTREAMER LOGGING OPTIMIZED_CFLAGS \ +OPTIONS_DEFAULT+= DBUS DTRACE FFMPEG GSTREAMER LOGGING OPTIMIZED_CFLAGS \ ${OPTIONS_MULTI_AUDIO} \ ${MACHINE_CPU:tu:MSOFTFP:S/SOFTFP/INTEGER_SAMPLES/} From owner-svn-ports-branches@freebsd.org Tue Sep 13 07:38:28 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83EB6BD8B0E; Tue, 13 Sep 2016 07:38:28 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C7FA7CA; Tue, 13 Sep 2016 07:38:28 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D7cRjN044489; Tue, 13 Sep 2016 07:38:27 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D7cRA3044487; Tue, 13 Sep 2016 07:38:27 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201609130738.u8D7cRA3044487@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Tue, 13 Sep 2016 07:38:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421983 - branches/2016Q3/databases/percona55-server X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 07:38:28 -0000 Author: flo Date: Tue Sep 13 07:38:27 2016 New Revision: 421983 URL: https://svnweb.freebsd.org/changeset/ports/421983 Log: MFH: r421982 Update to 5.5.51-38.1 Security: https://www.percona.com/blog/2016/09/12/percona-server-critical-update-cve-2016-6662/ Approved by: ports-secteam (delphij) Modified: branches/2016Q3/databases/percona55-server/Makefile branches/2016Q3/databases/percona55-server/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/databases/percona55-server/Makefile ============================================================================== --- branches/2016Q3/databases/percona55-server/Makefile Tue Sep 13 07:31:25 2016 (r421982) +++ branches/2016Q3/databases/percona55-server/Makefile Tue Sep 13 07:38:27 2016 (r421983) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= percona -DISTVERSION= 5.5.48-37.8 +DISTVERSION= 5.5.51-38.1 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.5/Percona-Server-${DISTVERSION}/source/tarball/ @@ -47,10 +47,6 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc SHEBANG_FILES= scripts/*.pl* scripts/*.sh -.ifdef USE_MYSQL -.error You have `USE_MYSQL' variable defined either in environment or in make(1) arguments. Please undefine and try again. -.endif - .include .if ${PORT_OPTIONS:MOPENSSL} @@ -62,8 +58,7 @@ CMAKE_ARGS+= -DWITH_FAST_MUTEXES=1 # MySQL-Server part .if !defined(CLIENT_ONLY) -USE_MYSQL= yes -WANT_MYSQL_VER= 55p +USES+=mysql:55p CONFLICTS_INSTALL= mysql*-server-* \ mariadb*-server-* \ Modified: branches/2016Q3/databases/percona55-server/distinfo ============================================================================== --- branches/2016Q3/databases/percona55-server/distinfo Tue Sep 13 07:31:25 2016 (r421982) +++ branches/2016Q3/databases/percona55-server/distinfo Tue Sep 13 07:38:27 2016 (r421983) @@ -1,2 +1,3 @@ -SHA256 (percona-server-5.5.48-37.8.tar.gz) = 00d5d882977d5dbfbf8d0467cbca5c1636401f5027bcfefa158c796abea3279e -SIZE (percona-server-5.5.48-37.8.tar.gz) = 22782980 +TIMESTAMP = 1473703016 +SHA256 (percona-server-5.5.51-38.1.tar.gz) = 330fe7065c66a32e8d9cf37f33ddcbb76bffc14acae2d031395c3fb8d6b0857b +SIZE (percona-server-5.5.51-38.1.tar.gz) = 22789037 From owner-svn-ports-branches@freebsd.org Tue Sep 13 07:45:00 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E02C6BD8E1C; Tue, 13 Sep 2016 07:45:00 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5E58BA6; Tue, 13 Sep 2016 07:45:00 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D7ixAq048427; Tue, 13 Sep 2016 07:44:59 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D7ixQ8048423; Tue, 13 Sep 2016 07:44:59 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201609130744.u8D7ixQ8048423@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Tue, 13 Sep 2016 07:44:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421984 - in branches/2016Q3/databases/percona56-server: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 07:45:01 -0000 Author: flo Date: Tue Sep 13 07:44:59 2016 New Revision: 421984 URL: https://svnweb.freebsd.org/changeset/ports/421984 Log: MFH: r419995 r420978 - Update to 5.6.31-77.0 [1] - fix TOKUDB option PR: 209785 [1] Submitted by: Thomas Babut Update to 5.6.32-78.0 PR: 212169 Submitted by: Thomas Babut Approved by: ports-secteam (feld) (only r420978 but r419995 is a prerequisite) Modified: branches/2016Q3/databases/percona56-server/Makefile branches/2016Q3/databases/percona56-server/distinfo branches/2016Q3/databases/percona56-server/files/extrapatch-tokudb branches/2016Q3/databases/percona56-server/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/databases/percona56-server/Makefile ============================================================================== --- branches/2016Q3/databases/percona56-server/Makefile Tue Sep 13 07:38:27 2016 (r421983) +++ branches/2016Q3/databases/percona56-server/Makefile Tue Sep 13 07:44:59 2016 (r421984) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= percona -DISTVERSION= 5.6.29-76.2 +DISTVERSION= 5.6.32-78.0 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-${DISTVERSION}/source/tarball/ @@ -19,17 +19,15 @@ USES= bison cmake perl5 shebangfix OPTIONS_DEFINE= OPENSSL FASTMTX INNODBMEMCACHED TOKUDB OPTIONS_DEFAULT= OPENSSL INNODBMEMCACHED -OPTIONS_SUB= yes +OPTIONS_SUB= yes FASTMTX_DESC= Replace mutexes with spinlocks -FASTMTX_CMAKE_ON= -DWITH_FAST_MUTEXES=1 -INNODBMEMCACHED_DESC= InnoDB Memcached plugin -INNODBMEMCACHED_CMAKE_ON=-DWITH_INNODB_MEMCACHED=1 -OPENSSL_CMAKE_ON= -DWITH_SSL=bundled +FASTMTX_CMAKE_ON= -DWITH_FAST_MUTEXES=1 +INNODBMEMCACHED_DESC= InnoDB Memcached plugin +INNODBMEMCACHED_CMAKE_ON= -DWITH_INNODB_MEMCACHED=1 +OPENSSL_CMAKE_ON= -DWITH_SSL=bundled TOKUDB_DESC= TokuDB Engine (experimental) -TOKUDB_CMAKE_ON=-DUSE_CTAGS=0 -TOKUDB_VARS= ONLY_FOR_ARCHS="amd64" \ - ONLY_FOR_ARCHS_REASON="TokuDB engine does not compile on ${ARCH}" +TOKUDB_CMAKE_ON= -DUSE_CTAGS=0 TOKUDB_EXTRA_PATCHES=${PATCHDIR}/extrapatch-tokudb DATADIR= ${PREFIX}/share/mysql @@ -59,11 +57,9 @@ SHEBANG_FILES= scripts/*.pl* scripts/*.s .error You have `USE_MYSQL' variable defined either in environment or in make(1) arguments. Please undefine and try again. .endif - # MySQL-Server part .if !defined(CLIENT_ONLY) -USE_MYSQL= yes -WANT_MYSQL_VER= 56p +USES+=mysql:56p CONFLICTS_INSTALL= mysql*-server-* \ mariadb*-server-* \ @@ -101,4 +97,16 @@ post-patch: BROKEN= Does not compile on arm .endif +.if ${PORT_OPTIONS:MTOKUDB} +NOT_FOR_ARCHS= i386 +NOT_FOR_ARCHS_REASON= TokuDB not supported on 32-bit platforms, see \ + https://github.com/percona/PerconaFT/blob/master/README.md + +.if ${OPSYS} == FreeBSD && ${OSVERSION} <= 1000000 +IGNORE= unsupported on FreeBSD 9 or older +.endif + +.endif + + .include Modified: branches/2016Q3/databases/percona56-server/distinfo ============================================================================== --- branches/2016Q3/databases/percona56-server/distinfo Tue Sep 13 07:38:27 2016 (r421983) +++ branches/2016Q3/databases/percona56-server/distinfo Tue Sep 13 07:44:59 2016 (r421984) @@ -1,2 +1,3 @@ -SHA256 (percona-server-5.6.29-76.2.tar.gz) = 23217feafc92222f313aeeb6e1806d110c35e50cf0b5f74510a9f8babe22e4b9 -SIZE (percona-server-5.6.29-76.2.tar.gz) = 55032788 +TIMESTAMP = 1472237462 +SHA256 (percona-server-5.6.32-78.0.tar.gz) = b3f9191dd8660ba4f825c5fa8fa470e66417335ad8455e31bbc2d5f2cac1a923 +SIZE (percona-server-5.6.32-78.0.tar.gz) = 55120585 Modified: branches/2016Q3/databases/percona56-server/files/extrapatch-tokudb ============================================================================== --- branches/2016Q3/databases/percona56-server/files/extrapatch-tokudb Tue Sep 13 07:38:27 2016 (r421983) +++ branches/2016Q3/databases/percona56-server/files/extrapatch-tokudb Tue Sep 13 07:44:59 2016 (r421984) @@ -60,3 +60,33 @@ va_end(op); return real_open(file, oflag, mode); } else { +--- storage/tokudb/PerconaFT/CMakeLists.txt.orig 2016-06-30 13:35:08.000000000 +0200 ++++ storage/tokudb/PerconaFT/CMakeLists.txt 2016-07-29 23:07:37.871068000 +0200 +@@ -82,7 +82,7 @@ + + install( + FILES README.md COPYING.AGPLv3 COPYING.GPLv2 PATENTS +- DESTINATION . ++ DESTINATION ${INSTALL_DOCDIR} + COMPONENT tokukv_misc + ) + +--- storage/tokudb/PerconaFT/buildheader/CMakeLists.txt.orig 2016-07-29 23:30:26.557847000 +0200 ++++ storage/tokudb/PerconaFT/buildheader/CMakeLists.txt 2016-07-29 23:30:32.695950000 +0200 +@@ -1,6 +1,6 @@ + set_directory_properties(PROPERTIES INCLUDE_DIRECTORIES "") + +-file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/runcat.sh" "#!/bin/bash ++file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/runcat.sh" "#!/bin/sh + out=$1; shift + exec \"$@\" >$out") + +@@ -8,7 +8,7 @@ + set_property(TARGET make_tdb APPEND PROPERTY COMPILE_DEFINITIONS _GNU_SOURCE) + add_custom_command( + OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/db.h" +- COMMAND bash runcat.sh "${CMAKE_CURRENT_BINARY_DIR}/db.h" $ ++ COMMAND sh runcat.sh "${CMAKE_CURRENT_BINARY_DIR}/db.h" $ + DEPENDS make_tdb) + add_custom_target(install_tdb_h DEPENDS + "${CMAKE_CURRENT_BINARY_DIR}/db.h") Modified: branches/2016Q3/databases/percona56-server/pkg-plist ============================================================================== --- branches/2016Q3/databases/percona56-server/pkg-plist Tue Sep 13 07:38:27 2016 (r421983) +++ branches/2016Q3/databases/percona56-server/pkg-plist Tue Sep 13 07:44:59 2016 (r421984) @@ -25,6 +25,7 @@ bin/resolve_stack_dump bin/resolveip %%TOKUDB%%bin/tokuft_logprint %%TOKUDB%%bin/tokuftdump +%%TOKUDB%%include/backup.h %%TOKUDB%%lib/mysql/libHotBackup.so lib/mysql/libmysqld.a lib/mysql/plugin/adt_null.so @@ -49,6 +50,7 @@ lib/mysql/plugin/query_response_time.so lib/mysql/plugin/scalability_metrics.so lib/mysql/plugin/semisync_master.so lib/mysql/plugin/semisync_slave.so +lib/mysql/plugin/test_udf_services.so %%TOKUDB%%lib/mysql/plugin/tokudb_backup.so lib/mysql/plugin/validate_password.so libexec/mysqld @@ -79,6 +81,10 @@ man/man1/replace.1.gz man/man1/resolve_stack_dump.1.gz man/man1/resolveip.1.gz man/man8/mysqld.8.gz +%%TOKUDB%%share/doc/mysql/COPYING.AGPLv3 +%%TOKUDB%%share/doc/mysql/COPYING.GPLv2 +%%TOKUDB%%share/doc/mysql/PATENTS +%%TOKUDB%%share/doc/mysql/README.md %%TOKUDB%%share/doc/mysql/README_tokudb_backup %%DATADIR%%/binary-configure %%DATADIR%%/bulgarian/errmsg.sys From owner-svn-ports-branches@freebsd.org Tue Sep 13 08:08:10 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62EBEBD1731; Tue, 13 Sep 2016 08:08:10 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2FD187C2; Tue, 13 Sep 2016 08:08:10 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D889h1056128; Tue, 13 Sep 2016 08:08:09 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D889ub056126; Tue, 13 Sep 2016 08:08:09 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201609130808.u8D889ub056126@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Tue, 13 Sep 2016 08:08:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421986 - branches/2016Q3/databases/mysql55-server X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 08:08:10 -0000 Author: delphij Date: Tue Sep 13 08:08:09 2016 New Revision: 421986 URL: https://svnweb.freebsd.org/changeset/ports/421986 Log: MFH: r421149 Update to 5.5.51 release. Approved by: ports-secteam Modified: branches/2016Q3/databases/mysql55-server/Makefile branches/2016Q3/databases/mysql55-server/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/databases/mysql55-server/Makefile ============================================================================== --- branches/2016Q3/databases/mysql55-server/Makefile Tue Sep 13 08:05:42 2016 (r421985) +++ branches/2016Q3/databases/mysql55-server/Makefile Tue Sep 13 08:08:09 2016 (r421986) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.5.50 +PORTVERSION= 5.5.51 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.5 Modified: branches/2016Q3/databases/mysql55-server/distinfo ============================================================================== --- branches/2016Q3/databases/mysql55-server/distinfo Tue Sep 13 08:05:42 2016 (r421985) +++ branches/2016Q3/databases/mysql55-server/distinfo Tue Sep 13 08:08:09 2016 (r421986) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469659156 -SHA256 (mysql-5.5.50.tar.gz) = 5eac55c8b1b2b18233c006935d90775d805a8422942e6deacf8b5bded432f951 -SIZE (mysql-5.5.50.tar.gz) = 21029856 +TIMESTAMP = 1472638975 +SHA256 (mysql-5.5.51.tar.gz) = ffa6866cb0cd833cae4a653e4260dfd5a80b62532d6b64e91cfb057bab5a22a7 +SIZE (mysql-5.5.51.tar.gz) = 21031206 From owner-svn-ports-branches@freebsd.org Tue Sep 13 08:08:58 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 055D2BD17C9; Tue, 13 Sep 2016 08:08:58 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B081090B; Tue, 13 Sep 2016 08:08:57 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D88utB056319; Tue, 13 Sep 2016 08:08:56 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D88uZg056316; Tue, 13 Sep 2016 08:08:56 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201609130808.u8D88uZg056316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Tue, 13 Sep 2016 08:08:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421987 - branches/2016Q3/databases/mysql56-server X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 08:08:58 -0000 Author: delphij Date: Tue Sep 13 08:08:56 2016 New Revision: 421987 URL: https://svnweb.freebsd.org/changeset/ports/421987 Log: MFH: r421148 Update to 5.6.32 release. Approved by: ports-secteam Modified: branches/2016Q3/databases/mysql56-server/Makefile branches/2016Q3/databases/mysql56-server/distinfo branches/2016Q3/databases/mysql56-server/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/databases/mysql56-server/Makefile ============================================================================== --- branches/2016Q3/databases/mysql56-server/Makefile Tue Sep 13 08:08:09 2016 (r421986) +++ branches/2016Q3/databases/mysql56-server/Makefile Tue Sep 13 08:08:56 2016 (r421987) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.6.30 +PORTVERSION= 5.6.32 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.6 Modified: branches/2016Q3/databases/mysql56-server/distinfo ============================================================================== --- branches/2016Q3/databases/mysql56-server/distinfo Tue Sep 13 08:08:09 2016 (r421986) +++ branches/2016Q3/databases/mysql56-server/distinfo Tue Sep 13 08:08:56 2016 (r421987) @@ -1,2 +1,3 @@ -SHA256 (mysql-5.6.30.tar.gz) = 48464df00aad9b9dfc26c903529ddad944a7562aa28e66e98e4f3f0c35179deb -SIZE (mysql-5.6.30.tar.gz) = 32223818 +TIMESTAMP = 1472639121 +SHA256 (mysql-5.6.32.tar.gz) = 4620ed9d9b5803a3ac7a23492dbea993214d3b5ffd4fb63d42771c616f60e359 +SIZE (mysql-5.6.32.tar.gz) = 32095208 Modified: branches/2016Q3/databases/mysql56-server/pkg-plist ============================================================================== --- branches/2016Q3/databases/mysql56-server/pkg-plist Tue Sep 13 08:08:09 2016 (r421986) +++ branches/2016Q3/databases/mysql56-server/pkg-plist Tue Sep 13 08:08:56 2016 (r421987) @@ -36,6 +36,7 @@ lib/mysql/plugin/qa_auth_interface.so lib/mysql/plugin/qa_auth_server.so lib/mysql/plugin/semisync_master.so lib/mysql/plugin/semisync_slave.so +lib/mysql/plugin/test_udf_services.so lib/mysql/plugin/validate_password.so libexec/mysqld man/man1/my_print_defaults.1.gz From owner-svn-ports-branches@freebsd.org Tue Sep 13 15:18:24 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2ECC5BD9201; Tue, 13 Sep 2016 15:18:24 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01688CFB; Tue, 13 Sep 2016 15:18:23 +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 u8DFINJm018645; Tue, 13 Sep 2016 15:18:23 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFINj5018643; Tue, 13 Sep 2016 15:18:23 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609131518.u8DFINj5018643@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 13 Sep 2016 15:18:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422014 - branches/2016Q3/devel/onscripter X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:18:24 -0000 Author: jbeich Date: Tue Sep 13 15:18:22 2016 New Revision: 422014 URL: https://svnweb.freebsd.org/changeset/ports/422014 Log: MFH: r421474 r421719 devel/onscripter: update to 20160910 Approved by: ports-secteam (feld) Modified: branches/2016Q3/devel/onscripter/Makefile branches/2016Q3/devel/onscripter/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/devel/onscripter/Makefile ============================================================================== --- branches/2016Q3/devel/onscripter/Makefile Tue Sep 13 14:25:29 2016 (r422013) +++ branches/2016Q3/devel/onscripter/Makefile Tue Sep 13 15:18:22 2016 (r422014) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= onscripter -PORTVERSION= 20160726 +PORTVERSION= 20160910 CATEGORIES= devel games MASTER_SITES= http://onscripter.osdn.jp/ Modified: branches/2016Q3/devel/onscripter/distinfo ============================================================================== --- branches/2016Q3/devel/onscripter/distinfo Tue Sep 13 14:25:29 2016 (r422013) +++ branches/2016Q3/devel/onscripter/distinfo Tue Sep 13 15:18:22 2016 (r422014) @@ -1,2 +1,3 @@ -SHA256 (onscripter-20160726.tar.gz) = 6860276e69f51e58fd651785fd6555144cb802d359ee4248bd19a4b116f07303 -SIZE (onscripter-20160726.tar.gz) = 237145 +TIMESTAMP = 1473526109 +SHA256 (onscripter-20160910.tar.gz) = 45b41deaf335431e306b1e957a9173378abe96356f89e404d7988a9ae7fab6c0 +SIZE (onscripter-20160910.tar.gz) = 240187 From owner-svn-ports-branches@freebsd.org Tue Sep 13 15:23:04 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A4CFBD93A8; Tue, 13 Sep 2016 15:23:04 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A1E4E146; Tue, 13 Sep 2016 15:23:03 +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 u8DFN2kd022655; Tue, 13 Sep 2016 15:23:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFN23T022647; Tue, 13 Sep 2016 15:23:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609131523.u8DFN23T022647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 13 Sep 2016 15:23:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422015 - in branches/2016Q3/www: firefox-esr firefox-esr-i18n firefox-esr/files libxul libxul/files linux-firefox X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:23:04 -0000 Author: jbeich Date: Tue Sep 13 15:23:02 2016 New Revision: 422015 URL: https://svnweb.freebsd.org/changeset/ports/422015 Log: MFH: r421490 www/firefox-esr: update 45.4esr Changes: https://www.mozilla.org/firefox/45.4.0/releasenotes/ Security: 2c57c47e-8bb3-4694-83c8-9fc3abad3964 Approved by: ports-secteam (feld) Deleted: branches/2016Q3/www/firefox-esr/files/patch-bug1242132 branches/2016Q3/www/firefox-esr/files/patch-bug1243312 branches/2016Q3/www/libxul/files/patch-bug1242132 branches/2016Q3/www/libxul/files/patch-bug1243312 Modified: branches/2016Q3/www/firefox-esr-i18n/Makefile branches/2016Q3/www/firefox-esr-i18n/distinfo branches/2016Q3/www/firefox-esr/Makefile branches/2016Q3/www/firefox-esr/distinfo branches/2016Q3/www/libxul/Makefile branches/2016Q3/www/libxul/distinfo branches/2016Q3/www/linux-firefox/Makefile branches/2016Q3/www/linux-firefox/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/firefox-esr-i18n/Makefile ============================================================================== --- branches/2016Q3/www/firefox-esr-i18n/Makefile Tue Sep 13 15:18:22 2016 (r422014) +++ branches/2016Q3/www/firefox-esr-i18n/Makefile Tue Sep 13 15:23:02 2016 (r422015) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 45.3.0 +PORTVERSION= 45.4.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build1/linux-i686/xpi Modified: branches/2016Q3/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2016Q3/www/firefox-esr-i18n/distinfo Tue Sep 13 15:18:22 2016 (r422014) +++ branches/2016Q3/www/firefox-esr-i18n/distinfo Tue Sep 13 15:23:02 2016 (r422015) @@ -1,180 +1,181 @@ -SHA256 (xpi/firefox-45.3.0/ach.xpi) = 8d92f203cfd053f63b9e0fc8e2139a65d92b17c6f7affdff14a54f33b01f7f83 -SIZE (xpi/firefox-45.3.0/ach.xpi) = 426530 -SHA256 (xpi/firefox-45.3.0/af.xpi) = 38a4489d5ac30210c1a0f617e81afb2667f52d4c74fac6ba8f40eb92123c7831 -SIZE (xpi/firefox-45.3.0/af.xpi) = 439353 -SHA256 (xpi/firefox-45.3.0/an.xpi) = 7c582f2b02f91ebbd84c9b6474e196811b3268c08f132debdd5a1ee32c2525a8 -SIZE (xpi/firefox-45.3.0/an.xpi) = 449036 -SHA256 (xpi/firefox-45.3.0/ar.xpi) = 957181886999ddaf2433a19ab9ff78e5ce8ba6070582d7909fc1256baae2b74b -SIZE (xpi/firefox-45.3.0/ar.xpi) = 474961 -SHA256 (xpi/firefox-45.3.0/as.xpi) = 38c203ad5e703ca47617d77ac62426d5481dae3667eed77973216045e7560649 -SIZE (xpi/firefox-45.3.0/as.xpi) = 483096 -SHA256 (xpi/firefox-45.3.0/ast.xpi) = d61d48043adbb904895c05a621128c0b21acaeca9eddfeb647d25cf7d823fb50 -SIZE (xpi/firefox-45.3.0/ast.xpi) = 419249 -SHA256 (xpi/firefox-45.3.0/az.xpi) = e8f4fea333daaa3aea303f914671c8026f70cecaea8286c2fc3d77e4f6c9d008 -SIZE (xpi/firefox-45.3.0/az.xpi) = 464018 -SHA256 (xpi/firefox-45.3.0/be.xpi) = ddf55d864bdf15a750573fc2bed5208a6ba4590b375b1dea44c11029e27bd6e6 -SIZE (xpi/firefox-45.3.0/be.xpi) = 442619 -SHA256 (xpi/firefox-45.3.0/bg.xpi) = aaa9a7caf3c10eb9097b0f1d8301515224c531419e341cc73c3fd2024f9eddba -SIZE (xpi/firefox-45.3.0/bg.xpi) = 460809 -SHA256 (xpi/firefox-45.3.0/bn-BD.xpi) = 50a0a3c0fa9ea9cb3b1cc3aeb6d533aef07ea405e596211544570313242e81f1 -SIZE (xpi/firefox-45.3.0/bn-BD.xpi) = 515643 -SHA256 (xpi/firefox-45.3.0/bn-IN.xpi) = 0f69c304491cad8632a59e5873dea745a43b77a1a73a63eda48e36d0944510e7 -SIZE (xpi/firefox-45.3.0/bn-IN.xpi) = 494076 -SHA256 (xpi/firefox-45.3.0/br.xpi) = 0c71e15c07881db347fd42ad1e95d74b539a4a866d4bbb4ad188ada3d86616e4 -SIZE (xpi/firefox-45.3.0/br.xpi) = 436390 -SHA256 (xpi/firefox-45.3.0/bs.xpi) = b8f8bb53981465182ae76f539aa84af304f3874af27734d8d5ae9d677ca8bff3 -SIZE (xpi/firefox-45.3.0/bs.xpi) = 442998 -SHA256 (xpi/firefox-45.3.0/ca.xpi) = 34d81e18a5d019d76a453b3292614aad91e03ede08d18578e69d506485fe9d70 -SIZE (xpi/firefox-45.3.0/ca.xpi) = 436832 -SHA256 (xpi/firefox-45.3.0/cs.xpi) = da5189b1ecfbd4fe02e4149fbff6288eb41c82dd5ecc846ad32d0af3922f9fcc -SIZE (xpi/firefox-45.3.0/cs.xpi) = 443482 -SHA256 (xpi/firefox-45.3.0/cy.xpi) = 73aa44deefd2ff2cfab6b1c0343226334749fde89ca9f1673c9e824b39051829 -SIZE (xpi/firefox-45.3.0/cy.xpi) = 438907 -SHA256 (xpi/firefox-45.3.0/da.xpi) = 66753cd64b22beb48eaa15070dc1f773cb120156c8f440f69e09935c76e72285 -SIZE (xpi/firefox-45.3.0/da.xpi) = 430078 -SHA256 (xpi/firefox-45.3.0/de.xpi) = 4f22e48368da0f042f4be2d47080de3fa3faccc0b06285d2a887c5b013692871 -SIZE (xpi/firefox-45.3.0/de.xpi) = 445481 -SHA256 (xpi/firefox-45.3.0/dsb.xpi) = 0c1553ba27e89c87c3c6585ed84e8f4b6c64a570c721d8d0e4e7d0d417345849 -SIZE (xpi/firefox-45.3.0/dsb.xpi) = 463791 -SHA256 (xpi/firefox-45.3.0/el.xpi) = 7cc7530d7e3054ab1b0cb32de6fcea8d3b67f4e245dfefdaf10c2a3d3b696b7f -SIZE (xpi/firefox-45.3.0/el.xpi) = 470866 -SHA256 (xpi/firefox-45.3.0/en-GB.xpi) = ffade7425d0edd8a07b25e0becab0ee4b5fb8797cf5e6ad1c42e15c3dba2ac4d -SIZE (xpi/firefox-45.3.0/en-GB.xpi) = 423871 -SHA256 (xpi/firefox-45.3.0/en-US.xpi) = b87c7b8d10a9878d89e54d452661b4543ce7291abcc6ab6cbff27a389c93f1bc -SIZE (xpi/firefox-45.3.0/en-US.xpi) = 425461 -SHA256 (xpi/firefox-45.3.0/en-ZA.xpi) = 303cb400d610dc630a4d6e5d630ca99d1938784739dd651c867a4540b5df1d16 -SIZE (xpi/firefox-45.3.0/en-ZA.xpi) = 420776 -SHA256 (xpi/firefox-45.3.0/eo.xpi) = b0c6752f4e1409d96f5f52d9a27fa75b2f1aa91909475114b277d9fec4a6e54b -SIZE (xpi/firefox-45.3.0/eo.xpi) = 440960 -SHA256 (xpi/firefox-45.3.0/es-AR.xpi) = 79eadd7e9345bbd3d4d6adedc5c023a6738bceb132ca0735e3683b1ac4eb1532 -SIZE (xpi/firefox-45.3.0/es-AR.xpi) = 441481 -SHA256 (xpi/firefox-45.3.0/es-CL.xpi) = 59b145737fdff59c35ca1a96d16d9edd942eb0b5fd04b2e7757ff8c322c62dac -SIZE (xpi/firefox-45.3.0/es-CL.xpi) = 368763 -SHA256 (xpi/firefox-45.3.0/es-ES.xpi) = 86ccdae8495500d3e1c8c2565be913eb343273199542076efa679c798f94815e -SIZE (xpi/firefox-45.3.0/es-ES.xpi) = 353716 -SHA256 (xpi/firefox-45.3.0/es-MX.xpi) = 097ac5a5f882a52b4b09370444c4d201a0a468ccd631e7e94a4826680c70628e -SIZE (xpi/firefox-45.3.0/es-MX.xpi) = 449395 -SHA256 (xpi/firefox-45.3.0/et.xpi) = 9310b9f9dcf190e5688a78604d27f8ef08baddb09b41866400e28dc364718630 -SIZE (xpi/firefox-45.3.0/et.xpi) = 433352 -SHA256 (xpi/firefox-45.3.0/eu.xpi) = c98129af6917217525a6b1275ecb7e6a98aabbf665faf3161c60470d10d62209 -SIZE (xpi/firefox-45.3.0/eu.xpi) = 441357 -SHA256 (xpi/firefox-45.3.0/fa.xpi) = cadcaea570e856b731ae07e9f57b010335d061eb01b1af0650a3f168adf260f4 -SIZE (xpi/firefox-45.3.0/fa.xpi) = 491941 -SHA256 (xpi/firefox-45.3.0/ff.xpi) = 222a6a46f9a768ab7eefc1810944582e602a04361f2afa7b53e0c87ff3c9ff5d -SIZE (xpi/firefox-45.3.0/ff.xpi) = 441499 -SHA256 (xpi/firefox-45.3.0/fi.xpi) = d3cda2cb1fcbfe24e535d703db60fbefd689ce2905efafc477f67bd47d4a5e13 -SIZE (xpi/firefox-45.3.0/fi.xpi) = 438347 -SHA256 (xpi/firefox-45.3.0/fr.xpi) = 9e090e0e986a851aff7a00245db430aca728ff17401e41836d16655dde454e63 -SIZE (xpi/firefox-45.3.0/fr.xpi) = 450037 -SHA256 (xpi/firefox-45.3.0/fy-NL.xpi) = d3e9574f71c22197ea9a07baa7b4e4239cebd411a5293c697ae754f55cfa1d41 -SIZE (xpi/firefox-45.3.0/fy-NL.xpi) = 447777 -SHA256 (xpi/firefox-45.3.0/ga-IE.xpi) = d9e99926787640510e11894add1ab970749f469829723dcb3b79ff8275f58471 -SIZE (xpi/firefox-45.3.0/ga-IE.xpi) = 460055 -SHA256 (xpi/firefox-45.3.0/gd.xpi) = 899b18a15da4e2b49e4c03e6fda769e13573a93689305dfa183a2d0f70dcb377 -SIZE (xpi/firefox-45.3.0/gd.xpi) = 449711 -SHA256 (xpi/firefox-45.3.0/gl.xpi) = 9029b5a78a4887f9297641e125a1c9b12e29af9f9b48b2f127a4742a6a6e436e -SIZE (xpi/firefox-45.3.0/gl.xpi) = 434804 -SHA256 (xpi/firefox-45.3.0/gn.xpi) = c20786c9be332a0eb905758f37bf21aabc7a68331a5a1791e88aa128f1ad054b -SIZE (xpi/firefox-45.3.0/gn.xpi) = 460648 -SHA256 (xpi/firefox-45.3.0/gu-IN.xpi) = c2d56ee0933e29ba1e8ff20661ba488c12d1d7d2829df22d5cbab5d47087a9f5 -SIZE (xpi/firefox-45.3.0/gu-IN.xpi) = 472566 -SHA256 (xpi/firefox-45.3.0/he.xpi) = 58dad792a5626a583655919e0b0db4a6c013205c44cc13ac32592be6c53cf31a -SIZE (xpi/firefox-45.3.0/he.xpi) = 454785 -SHA256 (xpi/firefox-45.3.0/hi-IN.xpi) = 1c107f6554f7614a5e640db7b2f021e8cc35b0e18f26adf8854d71c60243f855 -SIZE (xpi/firefox-45.3.0/hi-IN.xpi) = 486991 -SHA256 (xpi/firefox-45.3.0/hr.xpi) = 35cdd86496b7787006c7f98fcbfce5959564ead00f55ecc3eb3ad93d5d4b050e -SIZE (xpi/firefox-45.3.0/hr.xpi) = 449068 -SHA256 (xpi/firefox-45.3.0/hsb.xpi) = 8393b313c4044340b93d2a6233b6c0d53aa8b1cbd0be14a575a91bbb7808af4a -SIZE (xpi/firefox-45.3.0/hsb.xpi) = 461454 -SHA256 (xpi/firefox-45.3.0/hu.xpi) = 96bbb5f900e7415030585bbba9591537d7e305f4e681466008ce495b05ee3e49 -SIZE (xpi/firefox-45.3.0/hu.xpi) = 449777 -SHA256 (xpi/firefox-45.3.0/hy-AM.xpi) = a73472e9e420b43dc43e17a855dd60af2f311e6c9e91c989f0ecc0e431c92ab9 -SIZE (xpi/firefox-45.3.0/hy-AM.xpi) = 500040 -SHA256 (xpi/firefox-45.3.0/id.xpi) = 25646f57616dda365ffa291c53a50379d99364bc7c2ddf3a08087b280a883266 -SIZE (xpi/firefox-45.3.0/id.xpi) = 427175 -SHA256 (xpi/firefox-45.3.0/is.xpi) = 88e76762c209118f37a192859f0a2cebea3351ebdd1df10d567d0de5c372c4e3 -SIZE (xpi/firefox-45.3.0/is.xpi) = 443209 -SHA256 (xpi/firefox-45.3.0/it.xpi) = c8ed5d40eb444394b6b2ce17fdc3e15cae893cfd64bc6aa429a72d21a4378389 -SIZE (xpi/firefox-45.3.0/it.xpi) = 343724 -SHA256 (xpi/firefox-45.3.0/ja.xpi) = 4062eff4fa5c09d4fdd2ba485733ab193a826832c4e0a09fd608718cdf363e5e -SIZE (xpi/firefox-45.3.0/ja.xpi) = 486331 -SHA256 (xpi/firefox-45.3.0/kk.xpi) = e8fc700586ec6edfb5ede74933340c5cbdb17b24d0e10f2488dd0e8c5e12a8d4 -SIZE (xpi/firefox-45.3.0/kk.xpi) = 498895 -SHA256 (xpi/firefox-45.3.0/km.xpi) = 17fc8f965d3ee1db4d6af7334fc1e51dabc12a1c9ec539d99d445da19095e259 -SIZE (xpi/firefox-45.3.0/km.xpi) = 504301 -SHA256 (xpi/firefox-45.3.0/kn.xpi) = db4ac019feb54045e488cb3e8756a48426ce777332078640367e3c0c61f18f0d -SIZE (xpi/firefox-45.3.0/kn.xpi) = 495880 -SHA256 (xpi/firefox-45.3.0/ko.xpi) = 8e757c8cf4b8539311f26a7ad9f6964451f3d68a814d1bf57089eb326958c551 -SIZE (xpi/firefox-45.3.0/ko.xpi) = 465289 -SHA256 (xpi/firefox-45.3.0/lij.xpi) = 26acbff006fbbbb678265afe41968766daa78cf66f5f9a9c1a7ac40f4a98a72a -SIZE (xpi/firefox-45.3.0/lij.xpi) = 381384 -SHA256 (xpi/firefox-45.3.0/lt.xpi) = 877ab134d2424eec3623f6e6a63b184a4866279c7a677c47d6d33949208f11a9 -SIZE (xpi/firefox-45.3.0/lt.xpi) = 454678 -SHA256 (xpi/firefox-45.3.0/lv.xpi) = e4bfa3a6cfee7008738bf37ead2db1a35391951a83653c7bd19a6b23e69c3cc0 -SIZE (xpi/firefox-45.3.0/lv.xpi) = 445720 -SHA256 (xpi/firefox-45.3.0/mai.xpi) = 82907cc9dbc974669ff04b6c5d70f0d02086f3ddd8f315a687ac3beb7a5f4ad6 -SIZE (xpi/firefox-45.3.0/mai.xpi) = 492650 -SHA256 (xpi/firefox-45.3.0/mk.xpi) = 4ef85389f009c5e6d98796c2d86c61d34f4ee762a46c9b5e472005a58c0d6adc -SIZE (xpi/firefox-45.3.0/mk.xpi) = 476391 -SHA256 (xpi/firefox-45.3.0/ml.xpi) = cdac893c0fcd6509bcf2d0fcae1dd7ac9509551d39ff7c3ec879f3e733f1841c -SIZE (xpi/firefox-45.3.0/ml.xpi) = 498681 -SHA256 (xpi/firefox-45.3.0/mr.xpi) = f4b8db4423adfa18dc528777134089ec547aedfc83573ce0eac9c6c85af019b0 -SIZE (xpi/firefox-45.3.0/mr.xpi) = 503700 -SHA256 (xpi/firefox-45.3.0/ms.xpi) = 1ae55644bc31420b373b00977da621d2668ba8e15069daac68e7b3b74d50e601 -SIZE (xpi/firefox-45.3.0/ms.xpi) = 440064 -SHA256 (xpi/firefox-45.3.0/nb-NO.xpi) = 899cab940517d35b9fc77c47fc9740e26d9399361d4cf318ede91b8448dfb71e -SIZE (xpi/firefox-45.3.0/nb-NO.xpi) = 435470 -SHA256 (xpi/firefox-45.3.0/nl.xpi) = f1902a95d8f72c1be474392dd0b03e4242157c8e68d058995ae851b56f8ffcf1 -SIZE (xpi/firefox-45.3.0/nl.xpi) = 435202 -SHA256 (xpi/firefox-45.3.0/nn-NO.xpi) = 26892e1415a2cf93d4a55a581786e50797d4d64073dac96768f952b4dc914a07 -SIZE (xpi/firefox-45.3.0/nn-NO.xpi) = 432934 -SHA256 (xpi/firefox-45.3.0/or.xpi) = 22004bd75c11ec38b590ee3e935ad2a4e248eb544c746fc9e369ce9bf8344d44 -SIZE (xpi/firefox-45.3.0/or.xpi) = 495922 -SHA256 (xpi/firefox-45.3.0/pa-IN.xpi) = 04b7a3b3b5838dfed6ac5326bb394b8c66d42c4bc865e50fb9864bc439816743 -SIZE (xpi/firefox-45.3.0/pa-IN.xpi) = 489550 -SHA256 (xpi/firefox-45.3.0/pl.xpi) = 948a39a9c407be04fe4cb3917e49db1460a32e1670606bb9bd096e806ad1dd62 -SIZE (xpi/firefox-45.3.0/pl.xpi) = 383929 -SHA256 (xpi/firefox-45.3.0/pt-BR.xpi) = d80c53685b56fbfcc87a16fa3d3fac923dbe99b4279ebeef875b3573e87fa1bb -SIZE (xpi/firefox-45.3.0/pt-BR.xpi) = 450991 -SHA256 (xpi/firefox-45.3.0/pt-PT.xpi) = e358f3bdd97745dd06d5bfce4212bad5fec3957263b9de4594d785a1e1ad34dc -SIZE (xpi/firefox-45.3.0/pt-PT.xpi) = 437022 -SHA256 (xpi/firefox-45.3.0/rm.xpi) = 7be3f74c101e1ae55e2e6d4b931ecf0166e2bc7996b64cd2d4e85e53417d98b0 -SIZE (xpi/firefox-45.3.0/rm.xpi) = 437717 -SHA256 (xpi/firefox-45.3.0/ro.xpi) = 39cffa564f767ef31a712e6696e3f39cc00819f33aa899b9ecb56221c3ed04b0 -SIZE (xpi/firefox-45.3.0/ro.xpi) = 444062 -SHA256 (xpi/firefox-45.3.0/ru.xpi) = 28b28e799da22c1c576c2c624a980490d940310894a1cc39511334f8436999ae -SIZE (xpi/firefox-45.3.0/ru.xpi) = 392738 -SHA256 (xpi/firefox-45.3.0/si.xpi) = e8e12fbca0ba17f5c5abdd87519bee0bb71b7e455d0ec0cb7e8ddfd021a42ad9 -SIZE (xpi/firefox-45.3.0/si.xpi) = 482248 -SHA256 (xpi/firefox-45.3.0/sk.xpi) = 627104163ae9ee466b802028cfaa7c667fbfd63271b1eea186d1234f0209aaf0 -SIZE (xpi/firefox-45.3.0/sk.xpi) = 453606 -SHA256 (xpi/firefox-45.3.0/sl.xpi) = 9f3cb943ce906effdd313214cb38ac131ca5501f7b57ca3744a32311c28589be -SIZE (xpi/firefox-45.3.0/sl.xpi) = 444963 -SHA256 (xpi/firefox-45.3.0/son.xpi) = ce87df0f991330a2322c42a77eecc856c5bd355e7a8440f68683cb75f8971595 -SIZE (xpi/firefox-45.3.0/son.xpi) = 433513 -SHA256 (xpi/firefox-45.3.0/sq.xpi) = 5901935e95fbc43b483cec6cf952ff7260e32124422bc6feee7bbb8f2d46c3a5 -SIZE (xpi/firefox-45.3.0/sq.xpi) = 452186 -SHA256 (xpi/firefox-45.3.0/sr.xpi) = 44c692eda984bd569b34a30d844971637e6b50c5417d6af8edebbf95592d9770 -SIZE (xpi/firefox-45.3.0/sr.xpi) = 464479 -SHA256 (xpi/firefox-45.3.0/sv-SE.xpi) = 9e3ed60f6aba91fd3372ba87d29992212a58a11abe5023255c38f188fe3dfdff -SIZE (xpi/firefox-45.3.0/sv-SE.xpi) = 444214 -SHA256 (xpi/firefox-45.3.0/ta.xpi) = 441721aa669201fa9ff87b4df6169bc02aaa05b2d7c4d40c6ff46ed15833d5c8 -SIZE (xpi/firefox-45.3.0/ta.xpi) = 483117 -SHA256 (xpi/firefox-45.3.0/te.xpi) = 98036a788bac894455ce71ba51b646d7cd4df14e17420a03c2dc6614937db47b -SIZE (xpi/firefox-45.3.0/te.xpi) = 492471 -SHA256 (xpi/firefox-45.3.0/th.xpi) = ba3006e5c0a426a745ea385b11c2f7fedc170570a6c960ddabffec1e57aff52f -SIZE (xpi/firefox-45.3.0/th.xpi) = 477650 -SHA256 (xpi/firefox-45.3.0/tr.xpi) = bc4f673409e50dda48c42d4c913bc029c523aeee8e09ae026ec9d7f13ead4101 -SIZE (xpi/firefox-45.3.0/tr.xpi) = 451166 -SHA256 (xpi/firefox-45.3.0/uk.xpi) = b47822e78efa04c17ca0ba567f7ced0ce6f306d1d0d3dfbdaca68f5a6c27d5fe -SIZE (xpi/firefox-45.3.0/uk.xpi) = 494780 -SHA256 (xpi/firefox-45.3.0/uz.xpi) = 87642ded8387c416f5a43fc50920bf962ecf3056521b507493932ba6d69c1f6e -SIZE (xpi/firefox-45.3.0/uz.xpi) = 443803 -SHA256 (xpi/firefox-45.3.0/vi.xpi) = 696168c72df76c065ab7d8d5ec898fc28f46d22e9ee59c1b8f77ee26b729472c -SIZE (xpi/firefox-45.3.0/vi.xpi) = 450778 -SHA256 (xpi/firefox-45.3.0/xh.xpi) = 2bd00cf16339926c24217901196cd4135cf6039a3a40f055ab72d6012eb114d7 -SIZE (xpi/firefox-45.3.0/xh.xpi) = 432918 -SHA256 (xpi/firefox-45.3.0/zh-CN.xpi) = 89cb03bd98b25a8f2a3468ac509a1cd5a893a74ec62b5cd436fe0e9e2f105333 -SIZE (xpi/firefox-45.3.0/zh-CN.xpi) = 475797 -SHA256 (xpi/firefox-45.3.0/zh-TW.xpi) = 811561b65046f345531d95854c028ed345e99f57c919efeee887ef4fb9dee79f -SIZE (xpi/firefox-45.3.0/zh-TW.xpi) = 466529 +TIMESTAMP = 1473242792 +SHA256 (xpi/firefox-45.4.0/ach.xpi) = f43825621ccd7920710608686aa813594afd1d3b19bff8eb49bd32143b81a856 +SIZE (xpi/firefox-45.4.0/ach.xpi) = 426529 +SHA256 (xpi/firefox-45.4.0/af.xpi) = 93166fd1be0a9b870b3043c752ce7326f7a15a20c38daa40655ed0a6440a8afb +SIZE (xpi/firefox-45.4.0/af.xpi) = 439353 +SHA256 (xpi/firefox-45.4.0/an.xpi) = 350c7e992de73a4aed0573f679b819e8f79a4f0ed6a98d8a05eaeb8f1eae82b4 +SIZE (xpi/firefox-45.4.0/an.xpi) = 449036 +SHA256 (xpi/firefox-45.4.0/ar.xpi) = 6f9593b7f17d6917d4a3ef1d553675e8d2e7742068692228564b1fc8ea5f0afe +SIZE (xpi/firefox-45.4.0/ar.xpi) = 474961 +SHA256 (xpi/firefox-45.4.0/as.xpi) = 339bb60ab5d0621e4f26aeceae22ebb93ad7bc6d6870b3d9a21c47f36dd9ccb4 +SIZE (xpi/firefox-45.4.0/as.xpi) = 483096 +SHA256 (xpi/firefox-45.4.0/ast.xpi) = b991d439abe7795122711996c4626d784e51794abe8f2307f469296c407e6045 +SIZE (xpi/firefox-45.4.0/ast.xpi) = 419249 +SHA256 (xpi/firefox-45.4.0/az.xpi) = 2516100c734bb9efa1143b5043b7c3ba71a2bc8722ceb916fdf9a9485bc813d4 +SIZE (xpi/firefox-45.4.0/az.xpi) = 464018 +SHA256 (xpi/firefox-45.4.0/be.xpi) = 16bf04ab6b305a7431bb5e38d9b06e1525f3dd630154ba1eabf6e6ff1039c8cd +SIZE (xpi/firefox-45.4.0/be.xpi) = 442619 +SHA256 (xpi/firefox-45.4.0/bg.xpi) = 4b8b75bbada127bb585acf10164d0448dda66447895a5fd2fdda140498634b7e +SIZE (xpi/firefox-45.4.0/bg.xpi) = 460809 +SHA256 (xpi/firefox-45.4.0/bn-BD.xpi) = ccc725acfd3aa01010b98e94590e97ed6e45c6e8c3e83c1e255c09a660009003 +SIZE (xpi/firefox-45.4.0/bn-BD.xpi) = 515643 +SHA256 (xpi/firefox-45.4.0/bn-IN.xpi) = 486a3cd531c5999551fd3e0f21294130c03f02d6c20358bde7829bae8573e81a +SIZE (xpi/firefox-45.4.0/bn-IN.xpi) = 494076 +SHA256 (xpi/firefox-45.4.0/br.xpi) = c40dac8236f491df2a9d7cde5d3ebf7d9feb1b8b29c85963c7b3529607ab586c +SIZE (xpi/firefox-45.4.0/br.xpi) = 436390 +SHA256 (xpi/firefox-45.4.0/bs.xpi) = cfc6bc28e9a56fa58239365b5f1d2a60c562fec9d8d5b71c59617a9291833d41 +SIZE (xpi/firefox-45.4.0/bs.xpi) = 442998 +SHA256 (xpi/firefox-45.4.0/ca.xpi) = aa94f2b5a0d8519b9bf793cbb073ea6486cf4d3c692a87fcc6e7f0285b80e9ca +SIZE (xpi/firefox-45.4.0/ca.xpi) = 436832 +SHA256 (xpi/firefox-45.4.0/cs.xpi) = fb448ee61f89bf2d6ee79cb05c6c10dfd8ece18f1f61dea390bf4db43740d8ba +SIZE (xpi/firefox-45.4.0/cs.xpi) = 443482 +SHA256 (xpi/firefox-45.4.0/cy.xpi) = aa453a43538c32c36c21e49af9800fb814e79c0b64b31905fd29b4360ae9d4ba +SIZE (xpi/firefox-45.4.0/cy.xpi) = 438907 +SHA256 (xpi/firefox-45.4.0/da.xpi) = 087bc37a4d9004273c83ffe94195077e440b1de5213f83736f16bbd3c3300e9b +SIZE (xpi/firefox-45.4.0/da.xpi) = 430078 +SHA256 (xpi/firefox-45.4.0/de.xpi) = e5f3cceaeb70eea4e6b2a2c9c503598ce4a5f29dc422efedc117737171f5f3f0 +SIZE (xpi/firefox-45.4.0/de.xpi) = 445481 +SHA256 (xpi/firefox-45.4.0/dsb.xpi) = 90fd904662b4ca08d56533a11738c4e393b1262c0a3de7c9fd81da0ca54b43b8 +SIZE (xpi/firefox-45.4.0/dsb.xpi) = 463791 +SHA256 (xpi/firefox-45.4.0/el.xpi) = 982816ee82a4e5f1a7fca5416718965deec097d9c2f2a6a81ac489ff352912bf +SIZE (xpi/firefox-45.4.0/el.xpi) = 470866 +SHA256 (xpi/firefox-45.4.0/en-GB.xpi) = 76b26b33e7be5318e5ee4e5028d4ab8d9197887103bc2fbe690a78965f5f01c7 +SIZE (xpi/firefox-45.4.0/en-GB.xpi) = 423871 +SHA256 (xpi/firefox-45.4.0/en-US.xpi) = 6b38797c033d8126fe3ebeabac5dad69cc3589fc60c34f2b9a0b4ae75981b373 +SIZE (xpi/firefox-45.4.0/en-US.xpi) = 425461 +SHA256 (xpi/firefox-45.4.0/en-ZA.xpi) = 5b16e570c4a9172cad97906cd19f5a7b8a6d4ecd6ea03fdb90bbbac62e0f463e +SIZE (xpi/firefox-45.4.0/en-ZA.xpi) = 420776 +SHA256 (xpi/firefox-45.4.0/eo.xpi) = 1a6fcd26badc0d328bb2f895be2de6ea8e43dcb90a92dadf8f7d9a0ef5608c8a +SIZE (xpi/firefox-45.4.0/eo.xpi) = 440960 +SHA256 (xpi/firefox-45.4.0/es-AR.xpi) = aceb9e5f099da923ac01a2f6aa7e3a49289b3e537eb7be362ad0cec86bedcd35 +SIZE (xpi/firefox-45.4.0/es-AR.xpi) = 441481 +SHA256 (xpi/firefox-45.4.0/es-CL.xpi) = e3f6ad6caee0ad3efb22f6f9f7c2b2d96fa3991facc0a739f5dc699465151264 +SIZE (xpi/firefox-45.4.0/es-CL.xpi) = 368763 +SHA256 (xpi/firefox-45.4.0/es-ES.xpi) = e847c88605618aa4436b3c42ced29e9fa0d05a0a6ee27df77101a8522ee9030c +SIZE (xpi/firefox-45.4.0/es-ES.xpi) = 353716 +SHA256 (xpi/firefox-45.4.0/es-MX.xpi) = 6a87bd0106b3be8782f2d60748f21616c203259f9ce3254866cbe523ccf82986 +SIZE (xpi/firefox-45.4.0/es-MX.xpi) = 449395 +SHA256 (xpi/firefox-45.4.0/et.xpi) = 3ea5d48958000130616f9fb15bbbba977e976df0f4fa635652a7f187f39ed651 +SIZE (xpi/firefox-45.4.0/et.xpi) = 433352 +SHA256 (xpi/firefox-45.4.0/eu.xpi) = 674692d81505b16b461a81ef876f6fd6e908f9bcd372f98693e9a682669f624d +SIZE (xpi/firefox-45.4.0/eu.xpi) = 441357 +SHA256 (xpi/firefox-45.4.0/fa.xpi) = ae692c0ea519c3ac6c4113b5efd87c884c0ddf2e837a49d5b9edfa3b6577ba24 +SIZE (xpi/firefox-45.4.0/fa.xpi) = 491941 +SHA256 (xpi/firefox-45.4.0/ff.xpi) = 5c798100cf41e70d4da8a8c238da79e66c6cd30c085fee287f7dbf419e9ad488 +SIZE (xpi/firefox-45.4.0/ff.xpi) = 441499 +SHA256 (xpi/firefox-45.4.0/fi.xpi) = 6f29b281e0f4a21bebe17cb81b55c6ae2af360d1520bd28f206a47a2ebbbff61 +SIZE (xpi/firefox-45.4.0/fi.xpi) = 438347 +SHA256 (xpi/firefox-45.4.0/fr.xpi) = e93efa05d41f6fc283b8f5f5db03c1a0b40b9278ccfe83f5ae43038af4ce4b55 +SIZE (xpi/firefox-45.4.0/fr.xpi) = 450037 +SHA256 (xpi/firefox-45.4.0/fy-NL.xpi) = 3d1dd9e247b6926a3f6d0e7ce8fa9d30fd88ff3abfdfec0076126bafa54fd3d3 +SIZE (xpi/firefox-45.4.0/fy-NL.xpi) = 447777 +SHA256 (xpi/firefox-45.4.0/ga-IE.xpi) = cf9433091912c71acb7564ac021bdd094d07b490f110f7b8f4244c6eb35a09bf +SIZE (xpi/firefox-45.4.0/ga-IE.xpi) = 460055 +SHA256 (xpi/firefox-45.4.0/gd.xpi) = 58ff55ceb7e881854135c1d750b5dd8a903187e4a7c74febb2764a5fa00bd315 +SIZE (xpi/firefox-45.4.0/gd.xpi) = 449711 +SHA256 (xpi/firefox-45.4.0/gl.xpi) = ecdd8338c3b43f3dd00a62ea3039ad989ad11cac4c6555a7198a52531303f643 +SIZE (xpi/firefox-45.4.0/gl.xpi) = 434804 +SHA256 (xpi/firefox-45.4.0/gn.xpi) = b278fa7bc867396119412854e3ac14afb7b1d4f63ca2c38134124d29229843bc +SIZE (xpi/firefox-45.4.0/gn.xpi) = 460648 +SHA256 (xpi/firefox-45.4.0/gu-IN.xpi) = 9381b0464c16c878dc2f373d1164a7507cb8db7d9e1fc8b51e2045e4865be5ca +SIZE (xpi/firefox-45.4.0/gu-IN.xpi) = 472566 +SHA256 (xpi/firefox-45.4.0/he.xpi) = cd6b55c50638ef23bc0e2604be4429c333c9c5ec614df87b565fbd2c64e3d768 +SIZE (xpi/firefox-45.4.0/he.xpi) = 454785 +SHA256 (xpi/firefox-45.4.0/hi-IN.xpi) = 85f24ea43d8b8965613f140e1fd89c04f52df49e727f10da18ccd7c40ad61bc9 +SIZE (xpi/firefox-45.4.0/hi-IN.xpi) = 486991 +SHA256 (xpi/firefox-45.4.0/hr.xpi) = d669460b7f669c09bf114a66fd855c7bd68e0199e393a0767347b8d8d33e62e1 +SIZE (xpi/firefox-45.4.0/hr.xpi) = 449068 +SHA256 (xpi/firefox-45.4.0/hsb.xpi) = e75994fb29d63d8efbb23ede2d4672d43f0e6b981623f4e394179eb7099603e9 +SIZE (xpi/firefox-45.4.0/hsb.xpi) = 461454 +SHA256 (xpi/firefox-45.4.0/hu.xpi) = e5faf70dff5dce51eb5d0844493758bfa863e4c2fd22e56346fdf2bba3715285 +SIZE (xpi/firefox-45.4.0/hu.xpi) = 449777 +SHA256 (xpi/firefox-45.4.0/hy-AM.xpi) = 1506ca20942ba8176a3adc7a2f8f82c78fe8ca58a41c98d7043b9fa0be963ad0 +SIZE (xpi/firefox-45.4.0/hy-AM.xpi) = 500040 +SHA256 (xpi/firefox-45.4.0/id.xpi) = 4649c3fb879875aadc28d94ac585cb239aa267903fc3506bc84330f37073ca4b +SIZE (xpi/firefox-45.4.0/id.xpi) = 427175 +SHA256 (xpi/firefox-45.4.0/is.xpi) = 4238fdb1f60caa6e5d3cd05c6fbe6dd109bffc9981731ee1bc67f79fc33320a3 +SIZE (xpi/firefox-45.4.0/is.xpi) = 443209 +SHA256 (xpi/firefox-45.4.0/it.xpi) = 19681a2c4a29115c1c23d2eb533545ee5523df50e6154bb3e78079aaed3ce1fe +SIZE (xpi/firefox-45.4.0/it.xpi) = 343724 +SHA256 (xpi/firefox-45.4.0/ja.xpi) = bfb8f237438bfce780d08832437ca9f381d679d52f3d05329114881b790fb3e3 +SIZE (xpi/firefox-45.4.0/ja.xpi) = 486331 +SHA256 (xpi/firefox-45.4.0/kk.xpi) = dc9a2e668acbcf9ad7e3ea0fbd300578958c5ea809a32857d5d910ac937d398f +SIZE (xpi/firefox-45.4.0/kk.xpi) = 498895 +SHA256 (xpi/firefox-45.4.0/km.xpi) = 09690c3d240996b8250f39fa067bf94e085d0dc92b6a723dbbad43812b2030c1 +SIZE (xpi/firefox-45.4.0/km.xpi) = 504301 +SHA256 (xpi/firefox-45.4.0/kn.xpi) = 1caef936831ccdc2476338a82d242de38d8b95d01da045fd4e1c83a635bd4d1a +SIZE (xpi/firefox-45.4.0/kn.xpi) = 495880 +SHA256 (xpi/firefox-45.4.0/ko.xpi) = 6911af52b3158060b3c9d908a9b8644546860b201318c3eb9e8998b4225a467d +SIZE (xpi/firefox-45.4.0/ko.xpi) = 465289 +SHA256 (xpi/firefox-45.4.0/lij.xpi) = c32bac05237328047a1f96817d2b4196e320d91d620a150fe0769c4607654ed1 +SIZE (xpi/firefox-45.4.0/lij.xpi) = 381384 +SHA256 (xpi/firefox-45.4.0/lt.xpi) = 12425fdf610cfa47eacd57c46c052c3b47d70db690b9ab879827c799a339c558 +SIZE (xpi/firefox-45.4.0/lt.xpi) = 454678 +SHA256 (xpi/firefox-45.4.0/lv.xpi) = 215ae965deb8f9c0c48d9d6aa92410bd2248b603698607575a9f8609eb4804e1 +SIZE (xpi/firefox-45.4.0/lv.xpi) = 445720 +SHA256 (xpi/firefox-45.4.0/mai.xpi) = 94fb864c77fd9290dcc3bd04cb1eadbcf968670045eaa3eb9dcac05c3184acf6 +SIZE (xpi/firefox-45.4.0/mai.xpi) = 492650 +SHA256 (xpi/firefox-45.4.0/mk.xpi) = 86f3dfc67c95edc145edbd9c74d43d0ea851152efcbf9668e09815bb7bdcff08 +SIZE (xpi/firefox-45.4.0/mk.xpi) = 476391 +SHA256 (xpi/firefox-45.4.0/ml.xpi) = 58ef5156b28ceda053c1493eccbd752781418b78244e23e0c39d37d987988c2f +SIZE (xpi/firefox-45.4.0/ml.xpi) = 498681 +SHA256 (xpi/firefox-45.4.0/mr.xpi) = b8425659021b1c2f289c0bf5c55001ff3258f7196019ccc71cf4f813ca4a00e6 +SIZE (xpi/firefox-45.4.0/mr.xpi) = 503700 +SHA256 (xpi/firefox-45.4.0/ms.xpi) = 88d5757a8acc259751ff04e1f9a94c4f59cf4e280ba2134d64caca372ed0d58e +SIZE (xpi/firefox-45.4.0/ms.xpi) = 440064 +SHA256 (xpi/firefox-45.4.0/nb-NO.xpi) = 4a2003808403b49618c0ab33cd3def7382d0b97fdf56336c5d390cd8fcc65751 +SIZE (xpi/firefox-45.4.0/nb-NO.xpi) = 435470 +SHA256 (xpi/firefox-45.4.0/nl.xpi) = 771bbc2e649be9f9529fa745021ecd40edf8f89f688b1547eaf59d33c4ad22ed +SIZE (xpi/firefox-45.4.0/nl.xpi) = 435202 +SHA256 (xpi/firefox-45.4.0/nn-NO.xpi) = 81fffe653e75481c4cf580d95407f9a963df563ec3b489644aa7dd51a310d097 +SIZE (xpi/firefox-45.4.0/nn-NO.xpi) = 432934 +SHA256 (xpi/firefox-45.4.0/or.xpi) = 331de883dc3c17f986662f81472c39d156d2ac75c686857f65cb57e6d0d71e34 +SIZE (xpi/firefox-45.4.0/or.xpi) = 495922 +SHA256 (xpi/firefox-45.4.0/pa-IN.xpi) = 181b9e600cc89229060cf59c5d0a6c2bee24084c749dc57feb67278aa2d3d4c8 +SIZE (xpi/firefox-45.4.0/pa-IN.xpi) = 489550 +SHA256 (xpi/firefox-45.4.0/pl.xpi) = e5ffe9711bddc494c5d97388bfa2484e7da9f2fdc812d81ae65d461e9aac6061 +SIZE (xpi/firefox-45.4.0/pl.xpi) = 383929 +SHA256 (xpi/firefox-45.4.0/pt-BR.xpi) = db83433dbe974388999092ca49027730da198ce86042aacdaf33be58bfc52e60 +SIZE (xpi/firefox-45.4.0/pt-BR.xpi) = 450991 +SHA256 (xpi/firefox-45.4.0/pt-PT.xpi) = eb64e48eaff38c53aa75f1f742778ebb8c6e259bf86e24a1e573c513efc39712 +SIZE (xpi/firefox-45.4.0/pt-PT.xpi) = 437022 +SHA256 (xpi/firefox-45.4.0/rm.xpi) = 88ee595011b2f7f1031de96ffc384991b53d3a5ee3cae16231ec559c6722c47c +SIZE (xpi/firefox-45.4.0/rm.xpi) = 437717 +SHA256 (xpi/firefox-45.4.0/ro.xpi) = 3badd245dd69cb828e3fa5ba3d550152fc109ffa23f5ca6025828c25fd5def49 +SIZE (xpi/firefox-45.4.0/ro.xpi) = 444062 +SHA256 (xpi/firefox-45.4.0/ru.xpi) = 4c2a3a157e7f40c27e37864585a5b5c75cda15a722ee5891c6fa5ac5094f2a56 +SIZE (xpi/firefox-45.4.0/ru.xpi) = 392738 +SHA256 (xpi/firefox-45.4.0/si.xpi) = 85f65e476bf0a6e4fcbd08d73ce1dd6c6d82a3cbb2d3eb95c7dfaddcded21d19 +SIZE (xpi/firefox-45.4.0/si.xpi) = 482248 +SHA256 (xpi/firefox-45.4.0/sk.xpi) = 07dc2468781b2d26ccc5901527cd46fe22d4a65909180515b2776dcf93ca81db +SIZE (xpi/firefox-45.4.0/sk.xpi) = 453606 +SHA256 (xpi/firefox-45.4.0/sl.xpi) = 30301e0f05f988570f90a92894d9f4c782840f780a6c71278cbf495d4405ef44 +SIZE (xpi/firefox-45.4.0/sl.xpi) = 444963 +SHA256 (xpi/firefox-45.4.0/son.xpi) = bc5ef59a203170392f94de355b068a1bff197b9c0ea5e1e252c40b2170888762 +SIZE (xpi/firefox-45.4.0/son.xpi) = 433513 +SHA256 (xpi/firefox-45.4.0/sq.xpi) = ae880d4e2b5933f983b6f4ba0164626a8ed957d05e74213f2f9491bcf532731d +SIZE (xpi/firefox-45.4.0/sq.xpi) = 452186 +SHA256 (xpi/firefox-45.4.0/sr.xpi) = 1e8b42b0d978e6d69ad503b59d2aa5630989ae4ab6eb2f8fb7d8afe845c507d1 +SIZE (xpi/firefox-45.4.0/sr.xpi) = 464478 +SHA256 (xpi/firefox-45.4.0/sv-SE.xpi) = ce8b6213f798b1ab1de1be34246db564dea7a99f53cab8777d55f5fa66806abe +SIZE (xpi/firefox-45.4.0/sv-SE.xpi) = 444212 +SHA256 (xpi/firefox-45.4.0/ta.xpi) = a3b51c2b08d48cb66b74b048a2bbb8503ebb5770b5a6ebdf804ebc2d4d13ceb8 +SIZE (xpi/firefox-45.4.0/ta.xpi) = 483117 +SHA256 (xpi/firefox-45.4.0/te.xpi) = 8d328b269a82a2b6e4cd9d0908039b9b6ed12554b2a7840b535049e242f1fe37 +SIZE (xpi/firefox-45.4.0/te.xpi) = 492471 +SHA256 (xpi/firefox-45.4.0/th.xpi) = e9b1b10d61dc1e04339dc0a14c6f317211504f19ae74464d3549db602a3c8315 +SIZE (xpi/firefox-45.4.0/th.xpi) = 477650 +SHA256 (xpi/firefox-45.4.0/tr.xpi) = 051b39fa1bdb6bf56163486a5976441f01b9fa4f6552192ac35382570e4fa09d +SIZE (xpi/firefox-45.4.0/tr.xpi) = 451166 +SHA256 (xpi/firefox-45.4.0/uk.xpi) = 13b7f42b8a673ce9781fe036d897caf0489fdf0b3271949dbb2cd43099d2add0 +SIZE (xpi/firefox-45.4.0/uk.xpi) = 494780 +SHA256 (xpi/firefox-45.4.0/uz.xpi) = 8671bf3490a4f6c98687c595f3184c847c7f644311a51bcccfd8a042e7626aff +SIZE (xpi/firefox-45.4.0/uz.xpi) = 443803 +SHA256 (xpi/firefox-45.4.0/vi.xpi) = 9959b5849a55f2ab0648fbb6cddd156d1913c99d4e1689733ca1cec54d34a788 +SIZE (xpi/firefox-45.4.0/vi.xpi) = 450778 +SHA256 (xpi/firefox-45.4.0/xh.xpi) = 081483fa67eceecd0aec32b8ff4eeaa6f4121975d3dc30b8450fdc0fba17633a +SIZE (xpi/firefox-45.4.0/xh.xpi) = 432918 +SHA256 (xpi/firefox-45.4.0/zh-CN.xpi) = 89b3e8f69876246aaa7f52ea21a7fbecedd3845413ecd69ab28dd638d1b4c399 +SIZE (xpi/firefox-45.4.0/zh-CN.xpi) = 475797 +SHA256 (xpi/firefox-45.4.0/zh-TW.xpi) = c86a2cd29730ef4f780423ca7fc9a1eeaed447ed45b19493f6ef03a44b618b1f +SIZE (xpi/firefox-45.4.0/zh-TW.xpi) = 466529 Modified: branches/2016Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2016Q3/www/firefox-esr/Makefile Tue Sep 13 15:18:22 2016 (r422014) +++ branches/2016Q3/www/firefox-esr/Makefile Tue Sep 13 15:23:02 2016 (r422015) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 45.3.0 +DISTVERSION= 45.4.0 DISTVERSIONSUFFIX=esr.source PORTREVISION= 1 PORTEPOCH= 1 Modified: branches/2016Q3/www/firefox-esr/distinfo ============================================================================== --- branches/2016Q3/www/firefox-esr/distinfo Tue Sep 13 15:18:22 2016 (r422014) +++ branches/2016Q3/www/firefox-esr/distinfo Tue Sep 13 15:23:02 2016 (r422015) @@ -1,2 +1,3 @@ -SHA256 (firefox-45.3.0esr.source.tar.xz) = 922233c65c0aabd05371974c289495119c28d72fc7f8b06a22b58c5f70f8b8f7 -SIZE (firefox-45.3.0esr.source.tar.xz) = 185330580 +TIMESTAMP = 1473189353 +SHA256 (firefox-45.4.0esr.source.tar.xz) = cfd90096b9e1019b9de4fe061ece8c65f668b8a24bcbb657ce6b3c940ef83ad0 +SIZE (firefox-45.4.0esr.source.tar.xz) = 185182396 Modified: branches/2016Q3/www/libxul/Makefile ============================================================================== --- branches/2016Q3/www/libxul/Makefile Tue Sep 13 15:18:22 2016 (r422014) +++ branches/2016Q3/www/libxul/Makefile Tue Sep 13 15:23:02 2016 (r422015) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libxul -DISTVERSION= 45.3.0 +DISTVERSION= 45.4.0 PORTREVISION= 1 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ Modified: branches/2016Q3/www/libxul/distinfo ============================================================================== --- branches/2016Q3/www/libxul/distinfo Tue Sep 13 15:18:22 2016 (r422014) +++ branches/2016Q3/www/libxul/distinfo Tue Sep 13 15:23:02 2016 (r422015) @@ -1,2 +1,3 @@ -SHA256 (firefox-45.3.0esr.source.tar.xz) = 922233c65c0aabd05371974c289495119c28d72fc7f8b06a22b58c5f70f8b8f7 -SIZE (firefox-45.3.0esr.source.tar.xz) = 185330580 +TIMESTAMP = 1473189353 +SHA256 (firefox-45.4.0esr.source.tar.xz) = cfd90096b9e1019b9de4fe061ece8c65f668b8a24bcbb657ce6b3c940ef83ad0 +SIZE (firefox-45.4.0esr.source.tar.xz) = 185182396 Modified: branches/2016Q3/www/linux-firefox/Makefile ============================================================================== --- branches/2016Q3/www/linux-firefox/Makefile Tue Sep 13 15:18:22 2016 (r422014) +++ branches/2016Q3/www/linux-firefox/Makefile Tue Sep 13 15:23:02 2016 (r422015) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 45.3.0 +DISTVERSION= 45.4.0 DISTVERSIONSUFFIX=esr PORTEPOCH= 2 CATEGORIES= www ipv6 Modified: branches/2016Q3/www/linux-firefox/distinfo ============================================================================== --- branches/2016Q3/www/linux-firefox/distinfo Tue Sep 13 15:18:22 2016 (r422014) +++ branches/2016Q3/www/linux-firefox/distinfo Tue Sep 13 15:23:02 2016 (r422015) @@ -1,5 +1,6 @@ -SHA256 (firefox-45.3.0esr.tar.bz2) = 8a05335f58ff1be7225fb638ec37bff49a2285a742ea7e918ce1baa4ea2d0289 -SIZE (firefox-45.3.0esr.tar.bz2) = 52179585 +TIMESTAMP = 1473189353 +SHA256 (firefox-45.4.0esr.tar.bz2) = 7ac3e5890a094dc25b08ee437f059c43293eb7b249dbfa109c19182019c2b75a +SIZE (firefox-45.4.0esr.tar.bz2) = 52252098 SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99 SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908 SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b From owner-svn-ports-branches@freebsd.org Tue Sep 13 15:26:48 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88C77BD94B2; Tue, 13 Sep 2016 15:26:48 +0000 (UTC) (envelope-from freebsd@toco-domains.de) Received: from toco-domains.de (mail.toco-domains.de [IPv6:2a01:4f8:150:50a5::6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 55617382; Tue, 13 Sep 2016 15:26:48 +0000 (UTC) (envelope-from freebsd@toco-domains.de) Received: from [0.0.0.0] (mail.toco-domains.de [IPv6:2a01:4f8:150:50a5::6]) by toco-domains.de (Postfix) with ESMTPA id E39E81AAF046; Tue, 13 Sep 2016 17:26:45 +0200 (CEST) Subject: Re: svn commit: r422015 - in branches/2016Q3/www: firefox-esr firefox-esr-i18n firefox-esr/files libxul libxul/files linux-firefox To: Jan Beich , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org References: <201609131523.u8DFN23T022647@repo.freebsd.org> From: Torsten Zuehlsdorff Message-ID: <1a7ed520-08bd-e195-f88c-f7cb37723d74@toco-domains.de> Date: Tue, 13 Sep 2016 17:26:45 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609131523.u8DFN23T022647@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:26:48 -0000 > Modified: branches/2016Q3/www/libxul/Makefile > ============================================================================== > --- branches/2016Q3/www/libxul/Makefile Tue Sep 13 15:18:22 2016 (r422014) > +++ branches/2016Q3/www/libxul/Makefile Tue Sep 13 15:23:02 2016 (r422015) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= libxul > -DISTVERSION= 45.3.0 > +DISTVERSION= 45.4.0 > PORTREVISION= 1 Shouldn't the PORTREVISION set back to 0 or be removed? Greetings, Torsten From owner-svn-ports-branches@freebsd.org Tue Sep 13 16:35:31 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FFCDBD9C72; Tue, 13 Sep 2016 16:35:31 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B0A1AD5; Tue, 13 Sep 2016 16:35:31 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DGZUea051185; Tue, 13 Sep 2016 16:35:30 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DGZUDU051179; Tue, 13 Sep 2016 16:35:30 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201609131635.u8DGZUDU051179@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Tue, 13 Sep 2016 16:35:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422031 - in branches/2016Q3/mail/postfix: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 16:35:31 -0000 Author: ohauer Date: Tue Sep 13 16:35:29 2016 New Revision: 422031 URL: https://svnweb.freebsd.org/changeset/ports/422031 Log: - fix 2013Q3 build some previous bulk commits are missing, fix the manually PR: 212657 Reported by: fredrik.eriksson_at_loopia.se Approved by: portmgr (implicit) Added: branches/2016Q3/mail/postfix/files/patch-src_tls_tls.h - copied unchanged from r421972, head/mail/postfix/files/patch-src_tls_tls.h Modified: branches/2016Q3/mail/postfix/Makefile branches/2016Q3/mail/postfix/distinfo branches/2016Q3/mail/postfix/files/patch-makedefs branches/2016Q3/mail/postfix/files/patch-src__util__sys_defs.h branches/2016Q3/mail/postfix/files/patch-src_tls_tls__dane.c Modified: branches/2016Q3/mail/postfix/Makefile ============================================================================== --- branches/2016Q3/mail/postfix/Makefile Tue Sep 13 16:17:21 2016 (r422030) +++ branches/2016Q3/mail/postfix/Makefile Tue Sep 13 16:35:29 2016 (r422031) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= postfix -PORTVERSION= 3.1.1 +PORTVERSION= 3.1.2 PORTEPOCH= 1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \ http://de.postfix.org/ftpmirror/ \ @@ -48,7 +48,7 @@ OPTIONS_RADIO= RG1 OPTIONS_RADIO_RG1= SASLKRB5 SASLKMIT OPTIONS_DEFAULT= PCRE TLS -BDB_USE= BDB=yes +BDB_USES= bdb CDB_LIB_DEPENDS= libcdb.so:databases/tinycdb LDAP_USE= OPENLDAP=yes LMDB_LIB_DEPENDS= liblmdb.so:databases/lmdb @@ -58,7 +58,7 @@ PGSQL_USES= pgsql SASLKMIT_LIB_DEPENDS= libkrb5.so:security/krb5 SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 SQLITE_USES= sqlite -TLS_USE= OPENSSL=yes +TLS_USES= ssl CDB_DESC= CDB maps lookups INST_BASE_DESC= Install into /usr and /etc/postfix Modified: branches/2016Q3/mail/postfix/distinfo ============================================================================== --- branches/2016Q3/mail/postfix/distinfo Tue Sep 13 16:17:21 2016 (r422030) +++ branches/2016Q3/mail/postfix/distinfo Tue Sep 13 16:35:29 2016 (r422031) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463345893 -SHA256 (postfix/postfix-3.1.1.tar.gz) = 3deda4c34631970490b1b5fbb559905f93531bf1c7eb00e38b0d0deb1dba9982 -SIZE (postfix/postfix-3.1.1.tar.gz) = 4337295 +TIMESTAMP = 1472342160 +SHA256 (postfix/postfix-3.1.2.tar.gz) = 1ab9b4ee6bf9eb37d2467a63244132aab22ac23b91a72f327334e236b0d30f6b +SIZE (postfix/postfix-3.1.2.tar.gz) = 4337569 Modified: branches/2016Q3/mail/postfix/files/patch-makedefs ============================================================================== --- branches/2016Q3/mail/postfix/files/patch-makedefs Tue Sep 13 16:17:21 2016 (r422030) +++ branches/2016Q3/mail/postfix/files/patch-makedefs Tue Sep 13 16:35:29 2016 (r422031) @@ -1,6 +1,6 @@ ---- makedefs.orig 2015-01-18 00:10:28 UTC +--- makedefs.orig 2016-05-15 16:39:11 UTC +++ makedefs -@@ -235,6 +235,15 @@ case "$SYSTEM.$RELEASE" in +@@ -272,6 +272,24 @@ case "$SYSTEM.$RELEASE" in : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} : ${PLUGIN_LD="${CC} -shared"} ;; @@ -13,6 +13,15 @@ + : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} + : ${PLUGIN_LD="${CC} -shared"} + ;; ++ FreeBSD.12*) SYSTYPE=FREEBSD12 ++ : ${CC=cc} ++ : ${SHLIB_SUFFIX=.so} ++ : ${SHLIB_CFLAGS=-fPIC} ++ : ${SHLIB_LD="${CC} -shared"' -Wl,-soname,${LIB}'} ++ : ${SHLIB_RPATH='-Wl,-rpath,${SHLIB_DIR}'} ++ : ${SHLIB_ENV="LD_LIBRARY_PATH=`pwd`/lib"} ++ : ${PLUGIN_LD="${CC} -shared"} ++ ;; DragonFly.*) SYSTYPE=DRAGONFLY ;; OpenBSD.2*) SYSTYPE=OPENBSD2 Modified: branches/2016Q3/mail/postfix/files/patch-src__util__sys_defs.h ============================================================================== --- branches/2016Q3/mail/postfix/files/patch-src__util__sys_defs.h Tue Sep 13 16:17:21 2016 (r422030) +++ branches/2016Q3/mail/postfix/files/patch-src__util__sys_defs.h Tue Sep 13 16:35:29 2016 (r422031) @@ -1,10 +1,10 @@ ---- src/util/sys_defs.h.orig 2015-04-19 10:22:40 UTC +--- src/util/sys_defs.h.orig 2016-05-15 16:39:11 UTC +++ src/util/sys_defs.h @@ -26,6 +26,7 @@ #if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \ || defined(FREEBSD8) || defined(FREEBSD9) || defined(FREEBSD10) \ -+ || defined(FREEBSD11) \ ++ || defined(FREEBSD11) || defined(FREEBSD12) \ || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \ || defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \ - || defined(OPENBSD5) \ + || defined(OPENBSD5) || defined(OPENBSD6) \ Copied: branches/2016Q3/mail/postfix/files/patch-src_tls_tls.h (from r421972, head/mail/postfix/files/patch-src_tls_tls.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/mail/postfix/files/patch-src_tls_tls.h Tue Sep 13 16:35:29 2016 (r422031, copy of r421972, head/mail/postfix/files/patch-src_tls_tls.h) @@ -0,0 +1,14 @@ +# fix build against LibreSSL +# Obtained from: http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/mail/postfix/stable/patches/ +# +--- src/tls/tls.h.orig 2016-02-06 20:09:41 UTC ++++ src/tls/tls.h +@@ -89,7 +89,7 @@ extern const char *str_tls_level(int); + #endif + + /* Backwards compatibility with OpenSSL < 1.1.0 */ +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + #define OpenSSL_version_num SSLeay + #define OpenSSL_version SSLeay_version + #define OPENSSL_VERSION SSLEAY_VERSION Modified: branches/2016Q3/mail/postfix/files/patch-src_tls_tls__dane.c ============================================================================== --- branches/2016Q3/mail/postfix/files/patch-src_tls_tls__dane.c Tue Sep 13 16:17:21 2016 (r422030) +++ branches/2016Q3/mail/postfix/files/patch-src_tls_tls__dane.c Tue Sep 13 16:35:29 2016 (r422031) @@ -5,7 +5,7 @@ tls_check_version(); -#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESS_VERSION_NUMBER) ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) SSL_load_error_strings(); SSL_library_init(); #endif From owner-svn-ports-branches@freebsd.org Tue Sep 13 18:37:45 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F308ABD96F0; Tue, 13 Sep 2016 18:37:44 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C59FDD19; Tue, 13 Sep 2016 18:37:44 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DIbiwU099251; Tue, 13 Sep 2016 18:37:44 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DIbifH099250; Tue, 13 Sep 2016 18:37:44 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201609131837.u8DIbifH099250@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Tue, 13 Sep 2016 18:37:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422055 - branches/2016Q3/audio/clementine-player X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:37:45 -0000 Author: dim (src committer) Date: Tue Sep 13 18:37:43 2016 New Revision: 422055 URL: https://svnweb.freebsd.org/changeset/ports/422055 Log: MFH: r421953 Fix build of audio/clementine-player with clang 3.9.0 Clang 3.9.0 has a new warning about undefined template variables, which is triggered by including cryptopp headers in the spotify blob downloader: In file included from /wrkdirs/usr/ports/audio/clementine-player/work/Clementine-1.3.1/src/internet/spotify/spotifyblobdownloader.cpp:43: /usr/local/include/cryptopp/pkcspad.h:74:53: error: instantiation of variable 'CryptoPP::PKCS_DigestDecoration::decoration' required here, but no definition is available [-Werror,-Wundefined-var-template] return HashIdentifier(PKCS_DigestDecoration::decoration, PKCS_DigestDecoration::length); ^ This warning could be silenced by hacking on cryptopp, but just suppress it for now. Approved by: portmgr (feld) PR: 212343 Modified: branches/2016Q3/audio/clementine-player/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/audio/clementine-player/Makefile ============================================================================== --- branches/2016Q3/audio/clementine-player/Makefile Tue Sep 13 18:23:44 2016 (r422054) +++ branches/2016Q3/audio/clementine-player/Makefile Tue Sep 13 18:37:43 2016 (r422055) @@ -198,4 +198,10 @@ VISUALISATION_CMAKE_OFF=-DENABLE_VISUALI WIIMOTEDEV_CMAKE_ON= -DENABLE_WIIMOTEDEV=ON WIIMOTEDEV_CMAKE_OFF= -DENABLE_WIIMOTEDEV=OFF +.include + +.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 39 +CXXFLAGS+= -Wno-undefined-var-template +.endif + .include From owner-svn-ports-branches@freebsd.org Tue Sep 13 18:41:09 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52B1BBD97C0; Tue, 13 Sep 2016 18:41:09 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0983EBC; Tue, 13 Sep 2016 18:41:08 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DIf87h002347; Tue, 13 Sep 2016 18:41:08 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DIf8BP002346; Tue, 13 Sep 2016 18:41:08 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201609131841.u8DIf8BP002346@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Tue, 13 Sep 2016 18:41:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422057 - branches/2016Q3/lang/gcc49/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:41:09 -0000 Author: dim (src committer) Date: Tue Sep 13 18:41:08 2016 New Revision: 422057 URL: https://svnweb.freebsd.org/changeset/ports/422057 Log: MFH: r421625 Fix build of lang/gcc49 with libc++ 3.9.0 While testing the clang390-import branch, I ran into the following errors building lang/gcc49: In file included from /wrkdirs/usr/ports/lang/gcc49/work/gcc-4.9.4/gcc/c/c-objc-common.c:33: In file included from /usr/include/c++/v1/new:70: /usr/include/c++/v1/exception:267:5: error: no member named 'fancy_abort' in namespace 'std::__1'; did you mean simply 'fancy_abort'? _VSTD::abort(); ^~~~~~~ /usr/include/c++/v1/__config:451:15: note: expanded from macro '_VSTD' #define _VSTD std::_LIBCPP_NAMESPACE ^ /wrkdirs/usr/ports/lang/gcc49/work/gcc-4.9.4/gcc/system.h:685:13: note: 'fancy_abort' declared here extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN; ^ 1 error generated. What is happening here, is that the source file includes gcc/system.h, which defines abort to fancy_abort, and then the source file includes , which attempts to call _VSTD::abort() (the _VSTD is a libc++ alias for std::). The macro definition then causes the above breakage. Newer gcc ports, such as gcc5 and gcc6 don't show this issue, because upstream gcc first added an include of (which indirectly includes ) in r217348 [1], and later even add a direct include of in r232736 [2]. Fix it for this version, by adding the direct include of to gcc/system.h. This makes the 'second' includes of in some .c files superfluous, but at least they won't result in errors. [1] https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=217348 [2] https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=232736 Approved by: portmgr (feld) PR: 212465 Added: branches/2016Q3/lang/gcc49/files/patch-gcc_system.h - copied unchanged from r421625, head/lang/gcc49/files/patch-gcc_system.h Modified: Directory Properties: branches/2016Q3/ (props changed) Copied: branches/2016Q3/lang/gcc49/files/patch-gcc_system.h (from r421625, head/lang/gcc49/files/patch-gcc_system.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/lang/gcc49/files/patch-gcc_system.h Tue Sep 13 18:41:08 2016 (r422057, copy of r421625, head/lang/gcc49/files/patch-gcc_system.h) @@ -0,0 +1,10 @@ +--- gcc/system.h.orig 2014-01-02 22:23:26 UTC ++++ gcc/system.h +@@ -203,6 +203,7 @@ extern int errno; + + #ifdef __cplusplus + # include ++# include + #endif + + /* Some of glibc's string inlines cause warnings. Plus we'd rather From owner-svn-ports-branches@freebsd.org Tue Sep 13 19:11:40 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9207BD844F; Tue, 13 Sep 2016 19:11:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98791D3A; Tue, 13 Sep 2016 19:11:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DJBdEA014910; Tue, 13 Sep 2016 19:11:39 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DJBdCG014908; Tue, 13 Sep 2016 19:11:39 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131911.u8DJBdCG014908@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 19:11:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422066 - branches/2016Q3/editors/dkns X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 19:11:40 -0000 Author: amdmi3 Date: Tue Sep 13 19:11:39 2016 New Revision: 422066 URL: https://svnweb.freebsd.org/changeset/ports/422066 Log: MFH: r422060 - Update to 1.96 - Add LICENSE - Add NO_ARCH PR: 212526 Submitted by: jimmy@mammothcheese.ca (maintainer) Approved by: ports-secteam (feld) Modified: branches/2016Q3/editors/dkns/Makefile branches/2016Q3/editors/dkns/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/editors/dkns/Makefile ============================================================================== --- branches/2016Q3/editors/dkns/Makefile Tue Sep 13 19:10:33 2016 (r422065) +++ branches/2016Q3/editors/dkns/Makefile Tue Sep 13 19:11:39 2016 (r422066) @@ -2,16 +2,20 @@ # $FreeBSD$ PORTNAME= dkns -PORTVERSION= 1.95 +PORTVERSION= 1.96 CATEGORIES= editors MASTER_SITES= http://www.mammothcheese.ca/ MAINTAINER= jimmy@mammothcheese.ca COMMENT= Simple console text editor +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + RUN_DEPENDS= munger:lang/munger MAKE_ENV= INSTALL_MAN="${INSTALL_MAN}" INSTALL_SCRIPT="${INSTALL_SCRIPT}" +NO_ARCH= yes PLIST_FILES= bin/dkns \ man/man1/dkns.1.gz Modified: branches/2016Q3/editors/dkns/distinfo ============================================================================== --- branches/2016Q3/editors/dkns/distinfo Tue Sep 13 19:10:33 2016 (r422065) +++ branches/2016Q3/editors/dkns/distinfo Tue Sep 13 19:11:39 2016 (r422066) @@ -1,2 +1,3 @@ -SHA256 (dkns-1.95.tar.gz) = c6da8f43a2f4ad4e92bf24f719622ed46499d2e26b159b72df7081cbb327240e -SIZE (dkns-1.95.tar.gz) = 34261 +TIMESTAMP = 1473429476 +SHA256 (dkns-1.96.tar.gz) = e96187e044366a3b56736fdff7570756edb82e99c97ddbf65d1528db1ccc8918 +SIZE (dkns-1.96.tar.gz) = 35298 From owner-svn-ports-branches@freebsd.org Wed Sep 14 14:27:48 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24C87BDA925; Wed, 14 Sep 2016 14:27:48 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D180D1CD7; Wed, 14 Sep 2016 14:27:47 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EERl1A055193; Wed, 14 Sep 2016 14:27:47 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EERkgD055191; Wed, 14 Sep 2016 14:27:46 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609141427.u8EERkgD055191@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 14 Sep 2016 14:27:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422133 - branches/2016Q3/databases/mariadb55-server X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 14:27:48 -0000 Author: brnrd Date: Wed Sep 14 14:27:46 2016 New Revision: 422133 URL: https://svnweb.freebsd.org/changeset/ports/422133 Log: MFH: r420094 databases/mariadb55-server: Update to 5.5.51 - Update to latest version 5.5.51 - Move from USE_OPENSSL to USES= ssl Approved by: ports-secteam (feld) Security: 856b88bf-7984-11e6-81e7-d050996490d0 Modified: branches/2016Q3/databases/mariadb55-server/Makefile branches/2016Q3/databases/mariadb55-server/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/databases/mariadb55-server/Makefile ============================================================================== --- branches/2016Q3/databases/mariadb55-server/Makefile Wed Sep 14 13:49:43 2016 (r422132) +++ branches/2016Q3/databases/mariadb55-server/Makefile Wed Sep 14 14:27:46 2016 (r422133) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 5.5.50 +PORTVERSION= 5.5.51 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/mariadb/${PORTNAME}-${PORTVERSION}/source/ \ http://mirrors.supportex.net/mariadb/${PORTNAME}-${PORTVERSION}/source/ \ @@ -25,8 +25,7 @@ SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message SLAVEDIRS= databases/mariadb55-client -USES= cmake execinfo gmake shebangfix -USE_OPENSSL= yes +USES= cmake execinfo gmake shebangfix ssl SHEBANG_FILES= scripts/*.sh CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \ Modified: branches/2016Q3/databases/mariadb55-server/distinfo ============================================================================== --- branches/2016Q3/databases/mariadb55-server/distinfo Wed Sep 14 13:49:43 2016 (r422132) +++ branches/2016Q3/databases/mariadb55-server/distinfo Wed Sep 14 14:27:46 2016 (r422133) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466244329 -SHA256 (mariadb-5.5.50.tar.gz) = 030b60a787333bf20ec0ee02b02da52474772c069954dc914f894a7703989b76 -SIZE (mariadb-5.5.50.tar.gz) = 45731073 +TIMESTAMP = 1470908705 +SHA256 (mariadb-5.5.51.tar.gz) = 877268e7056067aff1dd365249b7a7c87f3fa80aadd7a4f118c9595d665967e9 +SIZE (mariadb-5.5.51.tar.gz) = 45747820 From owner-svn-ports-branches@freebsd.org Wed Sep 14 14:29:16 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E793EBDA9E3; Wed, 14 Sep 2016 14:29:16 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C5591DF6; Wed, 14 Sep 2016 14:29:16 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EETF04055399; Wed, 14 Sep 2016 14:29:15 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EETFp8055396; Wed, 14 Sep 2016 14:29:15 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609141429.u8EETFp8055396@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 14 Sep 2016 14:29:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422134 - branches/2016Q3/databases/mariadb100-server X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 14:29:17 -0000 Author: brnrd Date: Wed Sep 14 14:29:15 2016 New Revision: 422134 URL: https://svnweb.freebsd.org/changeset/ports/422134 Log: MFH: r421088 databases/mariadb100-server: Update to 10.0.27 - Update to 10.0.27 - Move from USE_OPENSSL to USES= ssl Approved by: ports-secteam (feld) Security: 856b88bf-7984-11e6-81e7-d050996490d0 Modified: branches/2016Q3/databases/mariadb100-server/Makefile branches/2016Q3/databases/mariadb100-server/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/databases/mariadb100-server/Makefile ============================================================================== --- branches/2016Q3/databases/mariadb100-server/Makefile Wed Sep 14 14:27:46 2016 (r422133) +++ branches/2016Q3/databases/mariadb100-server/Makefile Wed Sep 14 14:29:15 2016 (r422134) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 10.0.26 +PORTVERSION= 10.0.27 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \ http://mirrors.supportex.net/${SITESDIR}/ \ @@ -27,7 +27,7 @@ SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message SLAVEDIRS= databases/mariadb100-client -USES= bison:build cmake compiler:c++11-lib cpe execinfo gmake shebangfix +USES= bison:build cmake compiler:c++11-lib cpe execinfo gmake shebangfix ssl USE_LDCONFIG= ${PREFIX}/lib/mysql ${PREFIX}/lib/mysql/plugin SHEBANG_FILES= scripts/*.sh SITESDIR= mariadb/mariadb-${PORTVERSION}/source @@ -92,7 +92,6 @@ OPTIONS_SUB= yes .endif FASTMTX_CMAKE_ON= -DWITH_FAST_MUTEXES=1 -USE_OPENSSL= yes # See PR209419, MariaDB 10.0 fails to build with base SSL libs WITH_OPENSSL_PORT= yes Modified: branches/2016Q3/databases/mariadb100-server/distinfo ============================================================================== --- branches/2016Q3/databases/mariadb100-server/distinfo Wed Sep 14 14:27:46 2016 (r422133) +++ branches/2016Q3/databases/mariadb100-server/distinfo Wed Sep 14 14:29:15 2016 (r422134) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466794478 -SHA256 (mariadb-10.0.26.tar.gz) = 578538d9b51f455cbd0cb021f523284a45480b4bba853b4a79f3497c49ec40c0 -SIZE (mariadb-10.0.26.tar.gz) = 57621647 +TIMESTAMP = 1472465827 +SHA256 (mariadb-10.0.27.tar.gz) = bdf3a0c25aa2bc7a22a47e994eb7c8aa782624810eb3156038cc62bc9085c0cd +SIZE (mariadb-10.0.27.tar.gz) = 63258508 From owner-svn-ports-branches@freebsd.org Wed Sep 14 14:52:51 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97757BDA1D6; Wed, 14 Sep 2016 14:52:51 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4CCF11D93; Wed, 14 Sep 2016 14:52:51 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EEqoss066475; Wed, 14 Sep 2016 14:52:50 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EEqoNo066472; Wed, 14 Sep 2016 14:52:50 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609141452.u8EEqoNo066472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 14 Sep 2016 14:52:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422135 - in branches/2016Q3/databases: mariadb101-client mariadb101-server X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 14:52:51 -0000 Author: brnrd Date: Wed Sep 14 14:52:50 2016 New Revision: 422135 URL: https://svnweb.freebsd.org/changeset/ports/422135 Log: MFH: r421188 databases/mariadb101-server: Update to 10.1.17 - Update to 10.1.17 - Remove no-op cmake flag for -client Approved by: ports-secteam (feld) Security: 856b88bf-7984-11e6-81e7-d050996490d0 Modified: branches/2016Q3/databases/mariadb101-client/Makefile branches/2016Q3/databases/mariadb101-server/Makefile branches/2016Q3/databases/mariadb101-server/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/databases/mariadb101-client/Makefile ============================================================================== --- branches/2016Q3/databases/mariadb101-client/Makefile Wed Sep 14 14:29:15 2016 (r422134) +++ branches/2016Q3/databases/mariadb101-client/Makefile Wed Sep 14 14:52:50 2016 (r422135) @@ -11,7 +11,7 @@ FILESDIR= ${.CURDIR}/files PATCHDIR= ${.CURDIR}/files PLIST= ${.CURDIR}/pkg-plist -CMAKE_ARGS+= -DWITHOUT_SERVER=1 -DWITH_WSREP=0 +CMAKE_ARGS+= -DWITHOUT_SERVER=1 INSTALL_TARGET= install USE_LDCONFIG= ${PREFIX}/lib/mysql Modified: branches/2016Q3/databases/mariadb101-server/Makefile ============================================================================== --- branches/2016Q3/databases/mariadb101-server/Makefile Wed Sep 14 14:29:15 2016 (r422134) +++ branches/2016Q3/databases/mariadb101-server/Makefile Wed Sep 14 14:52:50 2016 (r422135) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 10.1.14 +PORTVERSION= 10.1.17 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \ http://mirrors.supportex.net/${SITESDIR}/ \ Modified: branches/2016Q3/databases/mariadb101-server/distinfo ============================================================================== --- branches/2016Q3/databases/mariadb101-server/distinfo Wed Sep 14 14:29:15 2016 (r422134) +++ branches/2016Q3/databases/mariadb101-server/distinfo Wed Sep 14 14:52:50 2016 (r422135) @@ -1,2 +1,3 @@ -SHA256 (mariadb-10.1.14.tar.gz) = 18e71974a059a268a3f28281599607344d548714ade823d575576121f76ada13 -SIZE (mariadb-10.1.14.tar.gz) = 55341017 +TIMESTAMP = 1472628631 +SHA256 (mariadb-10.1.17.tar.gz) = 4ca45ac5e34418761868115ebc8c068d511fed08e283b2cac52559d63ba4aab5 +SIZE (mariadb-10.1.17.tar.gz) = 61158134 From owner-svn-ports-branches@freebsd.org Wed Sep 14 14:54:42 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70AAEBDA25A; Wed, 14 Sep 2016 14:54:42 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40D2E1EB1; Wed, 14 Sep 2016 14:54:42 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EEsf4h066720; Wed, 14 Sep 2016 14:54:41 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EEsfsO066718; Wed, 14 Sep 2016 14:54:41 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609141454.u8EEsfsO066718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 14 Sep 2016 14:54:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422136 - branches/2016Q3/www/h2o X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 14:54:42 -0000 Author: brnrd Date: Wed Sep 14 14:54:41 2016 New Revision: 422136 URL: https://svnweb.freebsd.org/changeset/ports/422136 Log: MFH: r422122 www/h2o: Update to 2.0.4 (Fixes vulnerability) - Update to version 2.0.4 PR: 211892 Submitted by: Dave Cottlehuber (maintainer) Reviewed by: brnrd Security: 08664d42-7989-11e6-b7a8-74d02b9a84d5 Approved by: ports-secteam (feld) Modified: branches/2016Q3/www/h2o/Makefile branches/2016Q3/www/h2o/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/h2o/Makefile ============================================================================== --- branches/2016Q3/www/h2o/Makefile Wed Sep 14 14:52:50 2016 (r422135) +++ branches/2016Q3/www/h2o/Makefile Wed Sep 14 14:54:41 2016 (r422136) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= h2o -PORTVERSION= 2.0.0 +PORTVERSION= 2.0.4 DISTVERSIONPREFIX= v CATEGORIES= www Modified: branches/2016Q3/www/h2o/distinfo ============================================================================== --- branches/2016Q3/www/h2o/distinfo Wed Sep 14 14:52:50 2016 (r422135) +++ branches/2016Q3/www/h2o/distinfo Wed Sep 14 14:54:41 2016 (r422136) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464775587 -SHA256 (h2o-h2o-v2.0.0_GH0.tar.gz) = 068cc88fe7313ea3c637764abc296629f6c9250e12b714f5629065bdc49d28c8 -SIZE (h2o-h2o-v2.0.0_GH0.tar.gz) = 15007086 +TIMESTAMP = 1473753131 +SHA256 (h2o-h2o-v2.0.4_GH0.tar.gz) = c0efa18f0ffb0f68ee4b60a6ed1feb54c770458c59e48baa2d9d0906ef9c68c0 +SIZE (h2o-h2o-v2.0.4_GH0.tar.gz) = 15015392 From owner-svn-ports-branches@freebsd.org Wed Sep 14 17:31:35 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8DEB5AC4B50; Wed, 14 Sep 2016 17:31:35 +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 mx1.freebsd.org (Postfix) with ESMTPS id 5DC601D79; Wed, 14 Sep 2016 17:31:35 +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 u8EHVYuJ033672; Wed, 14 Sep 2016 17:31:34 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EHVYIG033670; Wed, 14 Sep 2016 17:31:34 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609141731.u8EHVYIG033670@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 14 Sep 2016 17:31:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422145 - branches/2016Q3/devel/py-gflags X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 17:31:35 -0000 Author: antoine Date: Wed Sep 14 17:31:34 2016 New Revision: 422145 URL: https://svnweb.freebsd.org/changeset/ports/422145 Log: MFH: r422144 - Unbreak by using CHEESESHOP, distfile differs from 1 line in SOURCES.txt - Remove dependency on the python2 metaport Modified: branches/2016Q3/devel/py-gflags/Makefile branches/2016Q3/devel/py-gflags/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/devel/py-gflags/Makefile ============================================================================== --- branches/2016Q3/devel/py-gflags/Makefile Wed Sep 14 17:26:45 2016 (r422144) +++ branches/2016Q3/devel/py-gflags/Makefile Wed Sep 14 17:31:34 2016 (r422145) @@ -3,9 +3,9 @@ PORTNAME= gflags PORTVERSION= 2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel python -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= python-gflags-${PORTVERSION} @@ -14,7 +14,7 @@ COMMENT= Commandline flags module for Py LICENSE= BSD3CLAUSE -USES= python:2 shebangfix +USES= python:2.7 shebangfix USE_PYTHON= autoplist distutils SHEBANG_FILES= gflags2man.py Modified: branches/2016Q3/devel/py-gflags/distinfo ============================================================================== --- branches/2016Q3/devel/py-gflags/distinfo Wed Sep 14 17:26:45 2016 (r422144) +++ branches/2016Q3/devel/py-gflags/distinfo Wed Sep 14 17:31:34 2016 (r422145) @@ -1,2 +1,3 @@ -SHA256 (python-gflags-2.0.tar.gz) = 311066217acb8cd8519a4c872cb3fe64f02bcf105802bb761ab0de55c2386cd6 -SIZE (python-gflags-2.0.tar.gz) = 64929 +TIMESTAMP = 1473873529 +SHA256 (python-gflags-2.0.tar.gz) = 0dff6360423f3ec08cbe3bfaf37b339461a54a21d13be0dd5d9c9999ce531078 +SIZE (python-gflags-2.0.tar.gz) = 65094 From owner-svn-ports-branches@freebsd.org Wed Sep 14 18:37:23 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A3EBBD5F08; Wed, 14 Sep 2016 18:37:23 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0CFFD1E9F; Wed, 14 Sep 2016 18:37:22 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EIbMba057997; Wed, 14 Sep 2016 18:37:22 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EIbMrt057996; Wed, 14 Sep 2016 18:37:22 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201609141837.u8EIbMrt057996@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Wed, 14 Sep 2016 18:37:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422148 - branches/2016Q3/textproc/ml1 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 18:37:23 -0000 Author: cpm Date: Wed Sep 14 18:37:22 2016 New Revision: 422148 URL: https://svnweb.freebsd.org/changeset/ports/422148 Log: MFH: r422089 - Update MASTER_SITES - Add LICENSE PR: 212598 Submitted by: bob@eager.cx (maintainer) Reviewed by: amdmi3 (mentor) Approved by: amdmi3 (mentor) Approved by: ports-secteam (feld) Modified: branches/2016Q3/textproc/ml1/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/textproc/ml1/Makefile ============================================================================== --- branches/2016Q3/textproc/ml1/Makefile Wed Sep 14 18:18:22 2016 (r422147) +++ branches/2016Q3/textproc/ml1/Makefile Wed Sep 14 18:37:22 2016 (r422148) @@ -4,12 +4,14 @@ PORTNAME= ml1 PORTVERSION= 4.11 CATEGORIES= textproc -MASTER_SITES= http://www.ml1.org.uk/tgz/ \ - http://www.ancientgeek.org.uk/tgz/ +MASTER_SITES= http://www.ml1.org.uk/distfiles/ \ + http://www.ancientgeek.org.uk/distfiles/ MAINTAINER= bob@eager.cx COMMENT= Original general purpose macro processor +LICENSE= BSD3CLAUSE + PLIST_FILES= bin/ml1 man/man1/ml1.1.gz do-install: From owner-svn-ports-branches@freebsd.org Thu Sep 15 05:12:41 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24D7CBDBC2D; Thu, 15 Sep 2016 05:12:41 +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 mx1.freebsd.org (Postfix) with ESMTPS id EB85318F7; Thu, 15 Sep 2016 05:12:40 +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 u8F5CecF004320; Thu, 15 Sep 2016 05:12:40 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F5Cevh004319; Thu, 15 Sep 2016 05:12:40 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609150512.u8F5Cevh004319@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 15 Sep 2016 05:12:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422179 - branches/2016Q3/audio/clementine-player X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 05:12:41 -0000 Author: antoine Date: Thu Sep 15 05:12:40 2016 New Revision: 422179 URL: https://svnweb.freebsd.org/changeset/ports/422179 Log: MFH: r422178 Do not include bsd.port.pre.mk twice Modified: branches/2016Q3/audio/clementine-player/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/audio/clementine-player/Makefile ============================================================================== --- branches/2016Q3/audio/clementine-player/Makefile Thu Sep 15 05:11:56 2016 (r422178) +++ branches/2016Q3/audio/clementine-player/Makefile Thu Sep 15 05:12:40 2016 (r422179) @@ -204,4 +204,4 @@ WIIMOTEDEV_CMAKE_OFF= -DENABLE_WIIMOTEDE CXXFLAGS+= -Wno-undefined-var-template .endif -.include +.include From owner-svn-ports-branches@freebsd.org Thu Sep 15 19:47:39 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD112BDBC38; Thu, 15 Sep 2016 19:47:39 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8EFA2D40; Thu, 15 Sep 2016 19:47:39 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FJlctT035087; Thu, 15 Sep 2016 19:47:38 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FJlc6T035084; Thu, 15 Sep 2016 19:47:38 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609151947.u8FJlc6T035084@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Thu, 15 Sep 2016 19:47:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422222 - in branches/2016Q3/databases/mariadb101-client: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 19:47:39 -0000 Author: brnrd Date: Thu Sep 15 19:47:38 2016 New Revision: 422222 URL: https://svnweb.freebsd.org/changeset/ports/422222 Log: MFH: r418997 databases/mariadb101-client: Update to 10.1.16 - -client was missig from the -server commit - post-install target to post-stage - Delete private headers - Add service_encryption.h patch - Fix scipts/CMakeLists.txt patch PR: 211328 Approved by: ports-secteam (feld) Added: branches/2016Q3/databases/mariadb101-client/files/patch-include_mysql_service__encryption.h - copied unchanged from r418997, head/databases/mariadb101-client/files/patch-include_mysql_service__encryption.h Modified: branches/2016Q3/databases/mariadb101-client/Makefile branches/2016Q3/databases/mariadb101-client/files/patch-scripts_CMakeLists.txt Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/databases/mariadb101-client/Makefile ============================================================================== --- branches/2016Q3/databases/mariadb101-client/Makefile Thu Sep 15 18:12:44 2016 (r422221) +++ branches/2016Q3/databases/mariadb101-client/Makefile Thu Sep 15 19:47:38 2016 (r422222) @@ -18,9 +18,10 @@ USE_LDCONFIG= ${PREFIX}/lib/mysql CLIENT_ONLY= yes -post-install: +post-stage: ${RM} ${STAGEDIR}${PREFIX}/share/aclocal/mysql.m4 ${RM} -r ${STAGEDIR}${PREFIX}/share/pkgconfig + ${RM} -r ${STAGEDIR}${PREFIX}/include/mysql/private . for b in mysql mysqladmin mysqlbinlog mysqlcheck mysqldump \ mysqlimport mysqlshow mysqlslap ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${b} @@ -32,7 +33,7 @@ post-install: # Fix https://mariadb.atlassian.net/browse/MDEV-9388 @${REINPLACE_CMD} 's/-l-pthread/-lpthread/' ${STAGEDIR}${PREFIX}/bin/mysql_config -post-install-GSSAPI_NONE: +post-stage-GSSAPI_NONE: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mysql/plugin/auth_gssapi_client.so .include "${MASTERDIR}/Makefile" Copied: branches/2016Q3/databases/mariadb101-client/files/patch-include_mysql_service__encryption.h (from r418997, head/databases/mariadb101-client/files/patch-include_mysql_service__encryption.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/databases/mariadb101-client/files/patch-include_mysql_service__encryption.h Thu Sep 15 19:47:38 2016 (r422222, copy of r418997, head/databases/mariadb101-client/files/patch-include_mysql_service__encryption.h) @@ -0,0 +1,14 @@ +--- include/mysql/service_encryption.h.orig 2015-12-23 15:33:29 UTC ++++ include/mysql/service_encryption.h +@@ -37,9 +37,11 @@ extern "C" { + #elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) + #include + #else ++#ifndef __FreeBSD__ + #include + #endif + #endif ++#endif + + /* returned from encryption_key_get_latest_version() */ + #define ENCRYPTION_KEY_VERSION_INVALID (~(unsigned int)0) Modified: branches/2016Q3/databases/mariadb101-client/files/patch-scripts_CMakeLists.txt ============================================================================== --- branches/2016Q3/databases/mariadb101-client/files/patch-scripts_CMakeLists.txt Thu Sep 15 18:12:44 2016 (r422221) +++ branches/2016Q3/databases/mariadb101-client/files/patch-scripts_CMakeLists.txt Thu Sep 15 19:47:38 2016 (r422222) @@ -1,4 +1,4 @@ ---- scripts/CMakeLists.txt.orig 2016-03-24 09:12:11 UTC +--- scripts/CMakeLists.txt.orig 2016-07-14 01:10:23 UTC +++ scripts/CMakeLists.txt @@ -73,6 +73,7 @@ IF(UNIX) ) @@ -8,7 +8,7 @@ INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables.sql ${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables_data.sql -@@ -82,6 +83,7 @@ INSTALL(FILES +@@ -83,6 +84,7 @@ INSTALL(FILES ${FIX_PRIVILEGES_SQL} DESTINATION ${INSTALL_MYSQLSHAREDIR} COMPONENT Server ) @@ -16,7 +16,7 @@ # TCMalloc hacks IF(MALLOC_LIB) -@@ -134,6 +136,7 @@ ENDIF() +@@ -135,6 +137,7 @@ ENDIF() SET(HOSTNAME "hostname") SET(MYSQLD_USER "mysql") @@ -24,7 +24,7 @@ # Required for mysqlbug until autotools are deprecated, once done remove these # and expand default cmake variables SET(CC ${CMAKE_C_COMPILER}) -@@ -168,6 +171,7 @@ INSTALL_SCRIPT(${CMAKE_CURRENT_BINARY_DI +@@ -169,6 +172,7 @@ INSTALL_SCRIPT(${CMAKE_CURRENT_BINARY_DI DESTINATION ${INSTALL_BINDIR} COMPONENT Server ) @@ -32,7 +32,7 @@ ENDIF(UNIX) -@@ -193,6 +197,7 @@ ELSE() +@@ -194,6 +198,7 @@ ELSE() SET(localstatedir ${MYSQL_DATADIR}) ENDIF() @@ -40,7 +40,7 @@ IF(UNIX) CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/mysql_install_db.sh ${CMAKE_CURRENT_BINARY_DIR}/mysql_install_db ESCAPE_QUOTES @ONLY) -@@ -206,6 +211,7 @@ INSTALL_SCRIPT( +@@ -207,6 +212,7 @@ INSTALL_SCRIPT( COMPONENT Server ) ENDIF() @@ -48,22 +48,17 @@ SET(prefix "${CMAKE_INSTALL_PREFIX}") IF(INSTALL_SYSCONFDIR) -@@ -284,18 +290,8 @@ ELSE() +@@ -294,13 +300,8 @@ ELSE() SET(BIN_SCRIPTS msql2mysql mysql_config -- mysql_fix_extensions - mysql_setpermission - mysql_secure_installation -- mysql_zap mysqlaccess - mysql_convert_table_format mysql_find_rows - mytop - mysqlhotcopy -- mysqldumpslow -- mysqld_multi -- mysqld_safe + ${SERVER_SCRIPTS} ${WSREP_BINARIES} ${SYSTEMD_SCRIPTS} - ) From owner-svn-ports-branches@freebsd.org Fri Sep 16 06:50:46 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 176EDBDBD91; Fri, 16 Sep 2016 06:50:46 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB11CFE1; Fri, 16 Sep 2016 06:50:45 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G6oiFV083771; Fri, 16 Sep 2016 06:50:44 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G6oimw083770; Fri, 16 Sep 2016 06:50:44 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609160650.u8G6oimw083770@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Fri, 16 Sep 2016 06:50:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422238 - branches/2016Q3/math/facile X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 06:50:46 -0000 Author: tcberner Date: Fri Sep 16 06:50:44 2016 New Revision: 422238 URL: https://svnweb.freebsd.org/changeset/ports/422238 Log: MFH: r421847 Update math/facile MASTER_SITES. Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7731 Approved by: ports-secteam (feld), rakuco (mentor) Modified: branches/2016Q3/math/facile/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/math/facile/Makefile ============================================================================== --- branches/2016Q3/math/facile/Makefile Fri Sep 16 05:42:59 2016 (r422237) +++ branches/2016Q3/math/facile/Makefile Fri Sep 16 06:50:44 2016 (r422238) @@ -4,7 +4,7 @@ PORTNAME= facile PORTVERSION= 1.1.1 CATEGORIES= math -MASTER_SITES= http://www.recherche.enac.fr/log/facile/distrib/ +MASTER_SITES= http://opti.recherche.enac.fr/facile/distrib/ MAINTAINER= kde@FreeBSD.org COMMENT= Functional Constraint Library From owner-svn-ports-branches@freebsd.org Fri Sep 16 18:23:06 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B510DBDDEC1; Fri, 16 Sep 2016 18:23:06 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 69B36334; Fri, 16 Sep 2016 18:23:06 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GIN5Fs049399; Fri, 16 Sep 2016 18:23:05 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GIN5Sl049395; Fri, 16 Sep 2016 18:23:05 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609161823.u8GIN5Sl049395@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 16 Sep 2016 18:23:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422261 - in branches/2016Q3/www: mediawiki123 mediawiki126 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 18:23:06 -0000 Author: swills Date: Fri Sep 16 18:23:05 2016 New Revision: 422261 URL: https://svnweb.freebsd.org/changeset/ports/422261 Log: MFH: r420677 - Update to MediaWiki 1.27.1, 1.26.4, 1.23.15 (security update) Approved by: ports-secteam@ Modified: branches/2016Q3/www/mediawiki123/Makefile branches/2016Q3/www/mediawiki123/distinfo branches/2016Q3/www/mediawiki126/Makefile branches/2016Q3/www/mediawiki126/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/mediawiki123/Makefile ============================================================================== --- branches/2016Q3/www/mediawiki123/Makefile Fri Sep 16 16:37:03 2016 (r422260) +++ branches/2016Q3/www/mediawiki123/Makefile Fri Sep 16 18:23:05 2016 (r422261) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.23.14 +PORTVERSION= 1.23.15 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 123 Modified: branches/2016Q3/www/mediawiki123/distinfo ============================================================================== --- branches/2016Q3/www/mediawiki123/distinfo Fri Sep 16 16:37:03 2016 (r422260) +++ branches/2016Q3/www/mediawiki123/distinfo Fri Sep 16 18:23:05 2016 (r422261) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463972720 -SHA256 (mediawiki-1.23.14.tar.gz) = 11c897859b635270238604afbf4329e159fe2cae5bf5220a1398fd62e952dfde -SIZE (mediawiki-1.23.14.tar.gz) = 20872251 +TIMESTAMP = 1471985603 +SHA256 (mediawiki-1.23.15.tar.gz) = 05e56839ef9df1229b1a4f66ff3309100e81366d551603530eff99827ae79de6 +SIZE (mediawiki-1.23.15.tar.gz) = 20872294 Modified: branches/2016Q3/www/mediawiki126/Makefile ============================================================================== --- branches/2016Q3/www/mediawiki126/Makefile Fri Sep 16 16:37:03 2016 (r422260) +++ branches/2016Q3/www/mediawiki126/Makefile Fri Sep 16 18:23:05 2016 (r422261) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.26.3 +PORTVERSION= 1.26.4 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 126 Modified: branches/2016Q3/www/mediawiki126/distinfo ============================================================================== --- branches/2016Q3/www/mediawiki126/distinfo Fri Sep 16 16:37:03 2016 (r422260) +++ branches/2016Q3/www/mediawiki126/distinfo Fri Sep 16 18:23:05 2016 (r422261) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463960353 -SHA256 (mediawiki-1.26.3.tar.gz) = 7284e2bb873dbac08157d8a9592dc2944724ffe0c49368017a78fb3390ef4676 -SIZE (mediawiki-1.26.3.tar.gz) = 25178780 +TIMESTAMP = 1471984681 +SHA256 (mediawiki-1.26.4.tar.gz) = b8a5d3ca13e74a98021fe9a3dc0d9ac8842b5282a736818b7006bee21a62f61a +SIZE (mediawiki-1.26.4.tar.gz) = 25178007 From owner-svn-ports-branches@freebsd.org Fri Sep 16 19:50:53 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7779BDD94B; Fri, 16 Sep 2016 19:50:53 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 787E8E5C; Fri, 16 Sep 2016 19:50:53 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GJoqX8081390; Fri, 16 Sep 2016 19:50:52 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GJopSO081380; Fri, 16 Sep 2016 19:50:51 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201609161950.u8GJopSO081380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Fri, 16 Sep 2016 19:50:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422268 - in branches/2016Q3: misc/e2fsprogs-libblkid sysutils/e2fsprogs sysutils/e2fsprogs/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 19:50:53 -0000 Author: mandree Date: Fri Sep 16 19:50:51 2016 New Revision: 422268 URL: https://svnweb.freebsd.org/changeset/ports/422268 Log: MFH: r418578 r418755 r418756 r418815 r418816 r418844 r418901 r419254 r421716 r421726 r421812 r421966 Since e2fsprogs 1.42.x and in fact anything before 1.43.3_3 in terms of FreeBSD's ports head/ trunk, and its full patch-lib_ext2fs_unix__io.c in particular, is deemed unsafe and can cause data corruption on FreeBSD 11 and newer (10.3 and older are deemed safe): Update to new upstream release 1.43.3, with a few additional fixes to the bounce-buffer I/O needed on FreeBSD 11 and newer where malloc() does not normally return page-aligned memory. Make set of self-tests configurable. Add Perl and GNU dd to build dependency list when needed so tests can pass in a poudriere build. Assorted other tweaks. Upstream's change log (please read all the way to and including 1.43): http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.43.3 While here, refresh patches, and time-limit programs in self-test suite to 60 s CPU time each, to avoid runaway processes from stalling the self-tests for too long. Ignore SIGINFO during self-tests: In the FreeBSD-specific patch, when the environment variable e2fsprogs_inhibit_SIGINFO exists (whatever its content, even if empty), do NOT install the SIGINFO handler. Leverage this when running the self-tests. This is to avoid false negatives during the self-tests due to interspersed SIGINFO output redirected from stderr to the log files. Insist (by setting BROKEN conditionally) on anything that is FreeBSD 11 or newer, or non-i386/non-amd64, that the user runs at least the small self-tests. Revise option descriptions a bit. Approved by: ports-secteam (feld) Added: branches/2016Q3/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c - copied, changed from r421812, head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c Deleted: branches/2016Q3/sysutils/e2fsprogs/files/patch-lib__ext2fs__ext2_fs.h branches/2016Q3/sysutils/e2fsprogs/files/patch-lib__ext2fs__tdb.c branches/2016Q3/sysutils/e2fsprogs/files/patch-lib_blkid_getsize.c branches/2016Q3/sysutils/e2fsprogs/files/patch-misc__tune2fs.c branches/2016Q3/sysutils/e2fsprogs/files/patch-zzz-f449486d Modified: branches/2016Q3/misc/e2fsprogs-libblkid/Makefile branches/2016Q3/sysutils/e2fsprogs/Makefile branches/2016Q3/sysutils/e2fsprogs/distinfo branches/2016Q3/sysutils/e2fsprogs/files/patch-e2fsck__unix.c branches/2016Q3/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c branches/2016Q3/sysutils/e2fsprogs/files/patch-lib__uuid__gen_uuid.c branches/2016Q3/sysutils/e2fsprogs/files/patch-misc__Makefile.in branches/2016Q3/sysutils/e2fsprogs/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/misc/e2fsprogs-libblkid/Makefile ============================================================================== --- branches/2016Q3/misc/e2fsprogs-libblkid/Makefile Fri Sep 16 19:47:10 2016 (r422267) +++ branches/2016Q3/misc/e2fsprogs-libblkid/Makefile Fri Sep 16 19:50:51 2016 (r422268) @@ -1,7 +1,7 @@ # Created by: Matthias Andree # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= misc devel PKGNAMESUFFIX= -libblkid @@ -12,7 +12,7 @@ LIB_DEPENDS= libuuid.so:misc/e2fsprogs-l CONFIGURE_ARGS= --enable-elf-shlibs MASTERDIR= ${.CURDIR}/../../sysutils/e2fsprogs -MAKE_ARGS= LIB_SUBDIRS=lib/blkid +MAKE_ARGS= LIB_SUBDIRS=lib/blkid LDFLAGS_SHLIB=-L${LOCALBASE}/lib USE_LDCONFIG= yes ALL_TARGET= libs INSTALL_TARGET= install install-shlibs Modified: branches/2016Q3/sysutils/e2fsprogs/Makefile ============================================================================== --- branches/2016Q3/sysutils/e2fsprogs/Makefile Fri Sep 16 19:47:10 2016 (r422267) +++ branches/2016Q3/sysutils/e2fsprogs/Makefile Fri Sep 16 19:50:51 2016 (r422268) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= e2fsprogs -PORTVERSION= 1.42.13 -PORTREVISION?= 0 +PORTVERSION= 1.43.3 +PORTREVISION?= 3 CATEGORIES?= sysutils MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} @@ -20,7 +20,6 @@ USE_CSTD= gnu99 USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+=--disable-fsck --disable-e2initrd-helper \ - --enable-quota \ --with-root-prefix='${PREFIX}' CPPFLAGS+= -I${WRKSRC}/lib -I${LOCALBASE}/include # -D_EXT2_USE_C_VERSIONS MAKE_ARGS+= LDFLAGS='${LDFLAGS} -L${LOCALBASE}/lib' pkgconfigdir='${PREFIX}/libdata/pkgconfig' @@ -30,7 +29,19 @@ MAKE_ENV+= CHECK_CMD=@true OPTIONS_DEFINE= DOCS NLS OPTIONS_EXCLUDE+= EXAMPLES -PORTDOCS= COPYING RELEASE-NOTES +BUILD_DEPENDS+= gdd:sysutils/coreutils + +PORTDOCS= NOTICE README RELEASE-NOTES SUBMITTING-PATCHES + +OPTIONS_DEFINE= PARALLELTESTS +OPTIONS_SINGLE= SELFTEST +OPTIONS_SINGLE_SELFTEST= NOTESTS SMALLTESTS ALLTESTS +OPTIONS_DEFAULT= SMALLTESTS +SELFTEST_DESC= Choose which set of self-tests to run +NOTESTS_DESC= Do not run any self-tests (only Tier-1 & DISCOURAGED) +SMALLTESTS_DESC=Run tests that fit into 500 MB disk space (DEFAULT) +ALLTESTS_DESC= Run most self-tests (requires more RAM & disk space) +PARALLELTESTS_DESC= Run self-tests in parallel (requires more disk space) post-extract: @${CHMOD} u+w ${WRKSRC}/po/*.po ${WRKSRC}/po/*.pot \ @@ -50,6 +61,11 @@ MAKE_ARGS+= V=1 USES+= gettext iconv:build .endif +.if empty(PORT_OPTIONS:MNOTESTS) && ${MASTERDIR} == ${.CURDIR} +USES+= perl5 +USE_PERL5= build +.endif + .include .if ${PORT_OPTIONS:MNLS} @@ -65,25 +81,84 @@ PLIST_SUB= NLS="@comment " libintl= .endif +# d_fallocate_blkmap appears to fail on some systems for unknown reasons. post-patch:: # don't build/install libext2fs.info @${REINPLACE_CMD} -e 's/ install-doc-libs$$//' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -E -e 's/md5sum ([^ ]*)/printf "%s %s\\n" $$(md5 -q \1) \1/' \ - -e "s/ == 0/ = 0/" ${WRKSRC}/tests/[a-t]_*/script + -e "s/ == 0/ = 0/" -e "s/tar x$$/tar xf -/" -e "s/\/gdd/" \ + ${WRKSRC}/tests/[a-z]_*/script @${REINPLACE_CMD} -e 's///' ${WRKSRC}/*/*.c -# disable f_mmp_garbage, fails on FreeBSD, and the resize*big_expand tests, -# which are too unwieldy to run automatically (need too much free space). -# f_extent_oobounds appears to have differences in screen output, reason -# unclear. -.for i in f_mmp_garbage m_bigjournal r_64bit_big_expand r_bigalloc_big_expand r_ext4_big_expand f_extent_oobounds +.if empty(PORT_OPTIONS:MALLTESTS) +.for i in \ + d_fallocate_blkmap \ + f_baddir \ + f_bbfile \ + f_convert_bmap \ + f_detect_junk \ + f_inode_ea_collision \ + f_lpffile \ + f_no_cache_corrupt_inode \ + f_opt_extent \ + j_corrupt_descr_csum \ + m_bigjournal \ + m_hugefile_slack \ + m_offset \ + m_raid_opt \ + r_32to64bit \ + r_32to64bit_expand_full \ + r_32to64bit_meta \ + r_32to64bit_move_itable \ + r_64to32bit \ + r_64to32bit_meta \ + r_expand_full \ + r_min_itable \ + t_change_uuid_mounted \ + t_dangerous \ + t_disable_changed_csum_seed_mounted \ + t_disable_mcsum \ + t_disable_mcsum_noinitbg \ + t_disable_mcsum_yesinitbg \ + t_enable_mcsum \ + t_enable_mcsum_initbg \ + t_iexpand_full \ + t_iexpand_mcsum \ + t_uninit_bg_rm \ + u_dryrun \ + u_mke2fs_opt_offset @${MV} ${WRKSRC}/tests/${i} ${WRKSRC}/tests/disabled_test-${i} .endfor +# m_rootdir behaves erratically on 9.x and fails randomly, +# but may succeed when run again. Disable for now. +.if ${OSVERSION} < 1000000 +.for i in m_rootdir + @${MV} ${WRKSRC}/tests/${i} ${WRKSRC}/tests/disabled_test-${i} +.endfor +.endif +.endif +# Master port stuff that is not to be seen by the slave ports. .if ${MASTERDIR} == ${.CURDIR} +# NOTE: The previous .if block goes all the way to the end of the file. + +.if !empty(PORT_OPTIONS:MNOTESTS) && (${OPSYS} == FreeBSD) && (${OSVERSION} >= 1100000 || ((${ARCH} != i386) && (${ARCH} != amd64))) +BROKEN=e2fsprogs has not been tested on your system by the maintainer. You must run self-tests. +.endif + pre-build: # fix up Makefile ordering for parallel builds cd ${WRKSRC}/lib/et && ${DO_MAKE_BUILD} compile_et - cd ${WRKSRC}/e2fsck && ${DO_MAKE_BUILD} prof_err.h + cd ${WRKSRC}/lib/support && ${DO_MAKE_BUILD} prof_err.h + +.if ${PORT_OPTIONS:MPARALLELTESTS} +_CHECK_JOBS=${_MAKE_JOBS} +.else +_CHECK_JOBS= +.endif + +.if !defined(TMPDIR) +_checkaddargs=TMPDIR=${WRKDIR}/tmp +.endif post-build: # Relink e2fsck statically - We need to make sure that tools for the root file @@ -94,16 +169,15 @@ post-build: && ${MAKE_CMD} e2fsck \ STATIC_LIBS="../lib/libext2fs.a ../lib/libcom_err.a \ ../lib/libblkid.a ../lib/libuuid.a" \ - LIBINTL=${libintl} + LIBINTL=${libintl} LIBMAGIC=/usr/lib/libmagic.a\ -lz # Regression check: avoid a port (not upstream!) regression from 1.40.5, # check that e2fsck isn't dynalinked against anything but libc.so: - @${ECHO_CMD} -n "===> checking that e2fsck depends on no shared objects beyond libc and libgcc: " + @${ECHO_CMD} -n "===> checking that e2fsck depends on no shared objects outside /lib: " @a="$$(ldd ${WRKSRC}/e2fsck/e2fsck 2>/dev/null \ | ${GREP} -v 'not a dynamic executable' \ | ${GREP} '=>' \ | ${AWK} '{print $$3;}' \ - | ${EGREP} -v '^/lib/libgcc(_s)?\.so\.' \ - | ${GREP} -v '^/lib/libc\.so\.' || :)"; \ + | ${EGREP} -v '^/lib/lib.*\.so\.' || :)"; \ if test "x$$a" = "x" ; then echo 'PASS' ; else \ echo 'FAIL' ; echo '===> e2fsck depends on:' ; echo "$$a" ; exit 1 ; fi # Update translation binary files @@ -120,11 +194,15 @@ post-build: # test on each and every system and not just package building hosts. # There have been subtle failures induced by Linux-isms in the past. # -- Matthias Andree, package maintainer, 2007-09-18 +.if empty(PORT_OPTIONS:MNOTESTS) @${ECHO_CMD} '===> Running e2fsprogs self-test suite' -# do not add -j options to ${MAKE_CMD} below, this might break +# do not add -j options unconditionally to ${MAKE_CMD} below, this might break # due to excessive disk space use. - cd ${WRKSRC}/tests && ${MKDIR} ${WRKDIR}/tmp && ${MAKE_CMD} check TMPDIR=${WRKDIR}/tmp \ + cd ${WRKSRC}/tests && ulimit -t 60 && ${MKDIR} ${WRKDIR}/tmp && ${SETENV} e2fsprogs_inhibit_SIGINFO=1 ${MAKE_CMD} check ${_CHECK_JOBS} ${_checkaddargs} \ || { head -n30000 ${WRKSRC}/tests/*.failed 2>/dev/null ; exit 1 ; } +.else + @${ECHO_CMD} '===> SKIPPING e2fsprogs self-test suite (DISCOURAGED!)' +.endif post-install: ${RM} -f ${STAGEDIR}${PREFIX}/sbin/uuidd @@ -136,6 +214,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif +# # the next line closes .if ${MASTERDIR} == ${.CURDIR} .endif Modified: branches/2016Q3/sysutils/e2fsprogs/distinfo ============================================================================== --- branches/2016Q3/sysutils/e2fsprogs/distinfo Fri Sep 16 19:47:10 2016 (r422267) +++ branches/2016Q3/sysutils/e2fsprogs/distinfo Fri Sep 16 19:50:51 2016 (r422268) @@ -1,2 +1,3 @@ -SHA256 (e2fsprogs-1.42.13.tar.xz) = e16474b5a3a30f9197160c4b91bd48d5a463583049c0fcc405b6f0f7075aa0c7 -SIZE (e2fsprogs-1.42.13.tar.xz) = 4802740 +TIMESTAMP = 1473526034 +SHA256 (e2fsprogs-1.43.3.tar.xz) = 744ca4e9a8e6c943601b2744d1ae658e5f37d35b5ea5b1dea86985320bd87f37 +SIZE (e2fsprogs-1.43.3.tar.xz) = 5220304 Modified: branches/2016Q3/sysutils/e2fsprogs/files/patch-e2fsck__unix.c ============================================================================== --- branches/2016Q3/sysutils/e2fsprogs/files/patch-e2fsck__unix.c Fri Sep 16 19:47:10 2016 (r422267) +++ branches/2016Q3/sysutils/e2fsprogs/files/patch-e2fsck__unix.c Fri Sep 16 19:50:51 2016 (r422268) @@ -1,4 +1,4 @@ ---- e2fsck/unix.c.orig 2014-08-12 18:19:37 UTC +--- e2fsck/unix.c.orig 2016-09-02 04:17:32 UTC +++ e2fsck/unix.c @@ -9,8 +9,6 @@ * %End-Header% @@ -9,7 +9,7 @@ #include "config.h" #include #ifdef HAVE_STDLIB_H -@@ -37,7 +35,7 @@ +@@ -37,7 +35,7 @@ extern int optind; #include #endif #ifdef HAVE_MALLOC_H @@ -18,7 +18,7 @@ #endif #ifdef HAVE_SYS_TYPES_H #include -@@ -590,6 +588,24 @@ +@@ -593,6 +591,24 @@ static int e2fsck_update_progress(e2fsck return 0; } @@ -43,7 +43,7 @@ #define PATH_SET "PATH=/sbin" /* -@@ -622,6 +638,17 @@ +@@ -625,6 +641,17 @@ static void signal_progress_on(int sig E ctx->progress = e2fsck_update_progress; } @@ -61,12 +61,14 @@ static void signal_progress_off(int sig EXT2FS_ATTR((unused))) { e2fsck_t ctx = e2fsck_global_ctx; -@@ -1001,6 +1028,8 @@ +@@ -1062,6 +1089,10 @@ static errcode_t PRS(int argc, char *arg sigaction(SIGUSR1, &sa, 0); sa.sa_handler = signal_progress_off; sigaction(SIGUSR2, &sa, 0); + sa.sa_handler = signal_progress_now; -+ sigaction(SIGINFO, &sa, 0); ++ if (!getenv("e2fsprogs_inhibit_SIGINFO")) { ++ sigaction(SIGINFO, &sa, 0); ++ } #endif /* Update our PATH to include /sbin if we need to run badblocks */ Modified: branches/2016Q3/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c ============================================================================== --- branches/2016Q3/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c Fri Sep 16 19:47:10 2016 (r422267) +++ branches/2016Q3/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c Fri Sep 16 19:50:51 2016 (r422268) @@ -1,6 +1,6 @@ ---- lib/ext2fs/tst_bitops.c.orig 2014-06-25 19:19:15 UTC +--- lib/ext2fs/tst_bitops.c.orig 2014-10-16 00:29:23 UTC +++ lib/ext2fs/tst_bitops.c -@@ -104,7 +104,7 @@ +@@ -104,7 +104,7 @@ int main(int argc, char **argv) bigarray = malloc(1 << 29); if (!bigarray) { fprintf(stderr, "Failed to allocate scratch memory!\n"); Modified: branches/2016Q3/sysutils/e2fsprogs/files/patch-lib__uuid__gen_uuid.c ============================================================================== --- branches/2016Q3/sysutils/e2fsprogs/files/patch-lib__uuid__gen_uuid.c Fri Sep 16 19:47:10 2016 (r422267) +++ branches/2016Q3/sysutils/e2fsprogs/files/patch-lib__uuid__gen_uuid.c Fri Sep 16 19:50:51 2016 (r422268) @@ -1,6 +1,6 @@ ---- lib/uuid/gen_uuid.c.orig 2014-07-03 14:33:48 UTC +--- lib/uuid/gen_uuid.c.orig 2016-09-02 04:17:32 UTC +++ lib/uuid/gen_uuid.c -@@ -91,6 +91,7 @@ +@@ -92,6 +92,7 @@ #ifdef HAVE_SYS_RESOURCE_H #include #endif @@ -8,7 +8,7 @@ #include "uuidP.h" #include "uuidd.h" -@@ -300,6 +301,28 @@ +@@ -301,6 +302,28 @@ static int get_node_id(unsigned char *no } } close(sd); Copied and modified: branches/2016Q3/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c (from r421812, head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c) ============================================================================== --- head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c Sun Sep 11 10:26:24 2016 (r421812, copy source) +++ branches/2016Q3/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c Fri Sep 16 19:50:51 2016 (r422268) @@ -1,19 +1,56 @@ -commit d6cad379eb6c86ca58bf5b83a586577de412a2e6 -Author: Theodore Ts'o -Date: Sun Sep 11 00:25:48 2016 -0400 - - libext2fs: fix unaligned, multiblock writes in the unix_io handler - - The read-modify-write code for the unaligned fallback code wasn't - working for multi-block writes. This was unmasked by FreeBSD 11-rc2, - since its malloc() is returning unaligned memory regions for large - memory regions. - - Signed-off-by: Theodore Ts'o - --- lib/ext2fs/unix_io.c.orig 2016-09-02 04:17:32 UTC +++ lib/ext2fs/unix_io.c -@@ -300,6 +300,7 @@ static errcode_t raw_write_blk(io_channe +@@ -188,16 +188,24 @@ static errcode_t raw_read_blk(io_channel + * The buffer or size which we're trying to read isn't aligned + * to the O_DIRECT rules, so we need to do this the hard way... + */ +- while (size > 0) { +- actual = read(data->dev, data->bounce, channel->block_size); +- if (actual != channel->block_size) +- goto short_read; +- actual = size; +- if (size > channel->block_size) +- actual = channel->block_size; +- memcpy(buf, data->bounce, actual); +- size -= actual; +- buf += actual; ++ { ++ ssize_t really_read = 0; ++ while (size > 0) { ++ actual = read(data->dev, data->bounce, channel->block_size); ++ if (actual != channel->block_size) { ++ actual = really_read; ++ buf -= really_read; ++ size += really_read; ++ goto short_read; ++ } ++ actual = size; ++ if (size > channel->block_size) ++ actual = channel->block_size; ++ memcpy(buf, data->bounce, actual); ++ really_read += actual; ++ size -= actual; ++ buf += actual; ++ } + } + return 0; + +@@ -283,8 +291,12 @@ static errcode_t raw_write_blk(io_channe + actual = read(data->dev, data->bounce, + channel->block_size); + if (actual != channel->block_size) { +- retval = EXT2_ET_SHORT_READ; +- goto error_out; ++ if (actual >= 0) { ++ memset(data->bounce + actual, 0, channel->block_size - actual); ++ } else { ++ retval = EXT2_ET_SHORT_READ; ++ goto error_out; ++ } + } + } + actual = size; +@@ -300,6 +312,7 @@ static errcode_t raw_write_blk(io_channe goto short_write; size -= actual; buf += actual; Modified: branches/2016Q3/sysutils/e2fsprogs/files/patch-misc__Makefile.in ============================================================================== --- branches/2016Q3/sysutils/e2fsprogs/files/patch-misc__Makefile.in Fri Sep 16 19:47:10 2016 (r422267) +++ branches/2016Q3/sysutils/e2fsprogs/files/patch-misc__Makefile.in Fri Sep 16 19:50:51 2016 (r422268) @@ -1,27 +1,28 @@ ---- misc/Makefile.in.orig 2014-08-02 23:41:18 UTC +--- misc/Makefile.in.orig 2016-09-02 04:52:46 UTC +++ misc/Makefile.in -@@ -28,15 +28,15 @@ +@@ -34,16 +34,16 @@ INSTALL = @INSTALL@ SPROGS= mke2fs badblocks tune2fs dumpe2fs $(BLKID_PROG) logsave \ $(E2IMAGE_PROG) @FSCK_PROG@ e2undo --USPROGS= mklost+found filefrag e2freefrag $(UUIDD_PROG) $(E4DEFRAG_PROG) -+USPROGS= mklost+found e2freefrag $(UUIDD_PROG) $(E4DEFRAG_PROG) +-USPROGS= mklost+found filefrag e2freefrag $(UUIDD_PROG) \ ++USPROGS= mklost+found e2freefrag $(UUIDD_PROG) \ + $(E4DEFRAG_PROG) $(E4CRYPT_PROG) $(FUSE_PROG) SMANPAGES= tune2fs.8 mklost+found.8 mke2fs.8 dumpe2fs.8 badblocks.8 \ e2label.8 $(FINDFS_MAN) $(BLKID_MAN) $(E2IMAGE_MAN) \ - logsave.8 filefrag.8 e2freefrag.8 e2undo.8 \ -- $(UUIDD_MAN) $(E4DEFRAG_MAN) @FSCK_MAN@ +- $(UUIDD_MAN) $(E4DEFRAG_MAN) $(E4CRYPT_MAN) @FSCK_MAN@ + logsave.8 e2freefrag.8 e2undo.8 \ -+ $(E4DEFRAG_MAN) @FSCK_MAN@ ++ $(E4DEFRAG_MAN) $(E4CRYPT_MAN) @FSCK_MAN@ FMANPAGES= mke2fs.conf.5 ext4.5 -UPROGS= chattr lsattr @UUID_CMT@ uuidgen -UMANPAGES= chattr.1 lsattr.1 @UUID_CMT@ uuidgen.1 +UPROGS= chattr lsattr +UMANPAGES= chattr.1 lsattr.1 + UMANPAGES+= @FUSE_CMT@ fuse2fs.1 LPROGS= @E2INITRD_PROG@ - -@@ -127,14 +127,14 @@ +@@ -144,14 +144,14 @@ profiled: mke2fs.conf: $(srcdir)/mke2fs.conf.in if test -f $(srcdir)/mke2fs.conf.custom.in ; then \ @@ -37,9 +38,9 @@ - $(Q) $(AWK) -f $(srcdir)/profile-to-c.awk < mke2fs.conf \ + $(Q) $(AWK) -f $(srcdir)/profile-to-c.awk < mke2fs.conf.dist \ > default_profile.c - profile.o: - $(E) " CC $<" -@@ -515,34 +515,9 @@ + findsuper: findsuper.o + $(E) " LD $@" +@@ -577,34 +577,9 @@ install: all $(SMANPAGES) $(UMANPAGES) i (cd $(DESTDIR)$(man5dir); \ $(LN) $(LINK_INSTALL_FLAGS) ext4.5 $$i.5); \ done Modified: branches/2016Q3/sysutils/e2fsprogs/pkg-plist ============================================================================== --- branches/2016Q3/sysutils/e2fsprogs/pkg-plist Fri Sep 16 19:47:10 2016 (r422267) +++ branches/2016Q3/sysutils/e2fsprogs/pkg-plist Fri Sep 16 19:50:51 2016 (r422268) @@ -63,10 +63,12 @@ sbin/tune2fs %%NLS%%share/locale/eo/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/es/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/fr/LC_MESSAGES/e2fsprogs.mo +%%NLS%%share/locale/hu/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/id/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/it/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/nl/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/pl/LC_MESSAGES/e2fsprogs.mo +%%NLS%%share/locale/sr/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/sv/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/tr/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/uk/LC_MESSAGES/e2fsprogs.mo From owner-svn-ports-branches@freebsd.org Sat Sep 17 01:06:13 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74640BDD2BA; Sat, 17 Sep 2016 01:06:13 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CADA1FCB; Sat, 17 Sep 2016 01:06:13 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H16C1C002934; Sat, 17 Sep 2016 01:06:12 GMT (envelope-from gordon@FreeBSD.org) Received: (from gordon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H16Cbn002931; Sat, 17 Sep 2016 01:06:12 GMT (envelope-from gordon@FreeBSD.org) Message-Id: <201609170106.u8H16Cbn002931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gordon set sender to gordon@FreeBSD.org using -f From: Gordon Tetlow Date: Sat, 17 Sep 2016 01:06:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422292 - branches/2016Q3/devel/p4d X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 01:06:13 -0000 Author: gordon Date: Sat Sep 17 01:06:11 2016 New Revision: 422292 URL: https://svnweb.freebsd.org/changeset/ports/422292 Log: MFH: r421754 Update devel/p4d to 2016.1/1437038 for micropatching. Approved by: mat (implicit, mentor) Approved by: ports-secteam (feld) Modified: branches/2016Q3/devel/p4d/Makefile branches/2016Q3/devel/p4d/distinfo.freebsd100x86 branches/2016Q3/devel/p4d/distinfo.freebsd100x86_64 Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/devel/p4d/Makefile ============================================================================== --- branches/2016Q3/devel/p4d/Makefile Sat Sep 17 00:13:38 2016 (r422291) +++ branches/2016Q3/devel/p4d/Makefile Sat Sep 17 01:06:11 2016 (r422292) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p4d -PORTVERSION= 2016.1.1429894 +PORTVERSION= 2016.1.1437038 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ \ http://filehost.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ Modified: branches/2016Q3/devel/p4d/distinfo.freebsd100x86 ============================================================================== --- branches/2016Q3/devel/p4d/distinfo.freebsd100x86 Sat Sep 17 00:13:38 2016 (r422291) +++ branches/2016Q3/devel/p4d/distinfo.freebsd100x86 Sat Sep 17 01:06:11 2016 (r422292) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472577805 -SHA256 (perforce/2016.1.1429894/bin.freebsd100x86/p4d) = 811660067685882d3bacc3562142a501f1ca7809b913b96bdcbfa0db8f277240 -SIZE (perforce/2016.1.1429894/bin.freebsd100x86/p4d) = 5765476 +TIMESTAMP = 1473547383 +SHA256 (perforce/2016.1.1437038/bin.freebsd100x86/p4d) = 5319a3b799dee14cf00b871200359013b33c0ede5483f77de375e54989dddac7 +SIZE (perforce/2016.1.1437038/bin.freebsd100x86/p4d) = 5766276 Modified: branches/2016Q3/devel/p4d/distinfo.freebsd100x86_64 ============================================================================== --- branches/2016Q3/devel/p4d/distinfo.freebsd100x86_64 Sat Sep 17 00:13:38 2016 (r422291) +++ branches/2016Q3/devel/p4d/distinfo.freebsd100x86_64 Sat Sep 17 01:06:11 2016 (r422292) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472577800 -SHA256 (perforce/2016.1.1429894/bin.freebsd100x86_64/p4d) = cdb78afc45ec1e3104ff7541a034c6eef221781c1b1100dee67eff010a440a83 -SIZE (perforce/2016.1.1429894/bin.freebsd100x86_64/p4d) = 5898872 +TIMESTAMP = 1473547376 +SHA256 (perforce/2016.1.1437038/bin.freebsd100x86_64/p4d) = 60b649cd87dcb11c19d7a7070ad134446efe463e65c4a7a978b13e7b6d571124 +SIZE (perforce/2016.1.1437038/bin.freebsd100x86_64/p4d) = 5899752 From owner-svn-ports-branches@freebsd.org Sat Sep 17 14:39:40 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38CB5BDED4A; Sat, 17 Sep 2016 14:39:40 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EDB335FB; Sat, 17 Sep 2016 14:39:39 +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 u8HEddcK012857; Sat, 17 Sep 2016 14:39:39 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HEddUE012855; Sat, 17 Sep 2016 14:39:39 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201609171439.u8HEddUE012855@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 17 Sep 2016 14:39:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422328 - in branches/2016Q3/lang/phantomjs: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 14:39:40 -0000 Author: feld Date: Sat Sep 17 14:39:38 2016 New Revision: 422328 URL: https://svnweb.freebsd.org/changeset/ports/422328 Log: MFH: r422327 lang/phantomjs: Fix build on 9.3 and 11.0 - Take maintainership (maintainer timeouts previously) - Remove no-op patch - Remove work related to GCC build profiles as we enforce clang - Add patch to fix building with clang in 11.0 - Add hack to enforce CC and CXX for 9.3 Partway through the build the compiler was switching from clang++ to c++ which is GCC in base system. This was causing build failures. Approved by: ports-secteam (with hat) Added: branches/2016Q3/lang/phantomjs/files/patch-src_qt_qtbase_src_tools_qlalr_lalr.cpp - copied unchanged from r422327, head/lang/phantomjs/files/patch-src_qt_qtbase_src_tools_qlalr_lalr.cpp Deleted: branches/2016Q3/lang/phantomjs/files/patch-mkspecs-freebsd-g++-qmake.conf Modified: branches/2016Q3/lang/phantomjs/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/lang/phantomjs/Makefile ============================================================================== --- branches/2016Q3/lang/phantomjs/Makefile Sat Sep 17 14:37:36 2016 (r422327) +++ branches/2016Q3/lang/phantomjs/Makefile Sat Sep 17 14:39:38 2016 (r422328) @@ -2,12 +2,12 @@ PORTNAME= phantomjs PORTVERSION= 2.0.0 -PORTREVISION= 1 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= https://bitbucket.org/ariya/phantomjs/downloads/ DISTNAME= ${PORTNAME}-${PORTVERSION}-source -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= feld@FreeBSD.org COMMENT= Minimalistic, headless, WebKit-based, JavaScript-driven tool LICENSE= BSD3CLAUSE @@ -29,16 +29,19 @@ PLIST_FILES= bin/phantomjs #PATCH_DEBUG= yes NO_CCACHE= yes +USE_XORG= x11 + +# Hack for FreeBSD 9. Without it mysteriously switches from +# clang++ to c++ which ends in build failure. +CC=clang +CXX=clang++ + # NOTE: # build.sh --qtwebkit=system requires Qt 5.3.x. We cannot use it. # qmake.conf detection is in src/qt/qtbase/configure script. SPEC= ${WRKSRC}/src/qt/qtbase/mkspecs post-extract: - cd ${SPEC} && ${CP} -r freebsd-g++46 freebsd-g++48 - cd ${SPEC} && ${CP} -r freebsd-g++46 freebsd-g++49 - cd ${SPEC} && ${REINPLACE_CMD} -e 's|46|48|' freebsd-g++48/qmake.conf - cd ${SPEC} && ${REINPLACE_CMD} -e 's|46|49|' freebsd-g++49/qmake.conf ${MKDIR} ${SPEC}/freebsd-clang cd ${SPEC} && ${SED} -e 's|\.\./\.\./|../|g' unsupported/freebsd-clang/qmake.conf > freebsd-clang/qmake.conf cd ${SPEC} && ${SED} -e 's|\.\./\.\./|../|g' unsupported/freebsd-clang/qplatformdefs.h > freebsd-clang/qplatformdefs.h Copied: branches/2016Q3/lang/phantomjs/files/patch-src_qt_qtbase_src_tools_qlalr_lalr.cpp (from r422327, head/lang/phantomjs/files/patch-src_qt_qtbase_src_tools_qlalr_lalr.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/lang/phantomjs/files/patch-src_qt_qtbase_src_tools_qlalr_lalr.cpp Sat Sep 17 14:39:38 2016 (r422328, copy of r422327, head/lang/phantomjs/files/patch-src_qt_qtbase_src_tools_qlalr_lalr.cpp) @@ -0,0 +1,34 @@ +--- src/qt/qtbase/src/tools/qlalr/lalr.cpp.orig 2015-01-24 02:19:52 UTC ++++ src/qt/qtbase/src/tools/qlalr/lalr.cpp +@@ -246,11 +246,11 @@ void Grammar::buildExtendedGrammar () + non_terminals.insert (accept_symbol); + } + +-struct _Nullable: public std::unary_function ++struct Nullable: public std::unary_function + { + Automaton *_M_automaton; + +- _Nullable (Automaton *aut): ++ Nullable (Automaton *aut): + _M_automaton (aut) {} + + bool operator () (Name name) const +@@ -308,7 +308,7 @@ void Automaton::buildNullables () + + for (RulePointer rule = _M_grammar->rules.begin (); rule != _M_grammar->rules.end (); ++rule) + { +- NameList::iterator nn = std::find_if (rule->rhs.begin (), rule->rhs.end (), std::not1 (_Nullable (this))); ++ NameList::iterator nn = std::find_if (rule->rhs.begin (), rule->rhs.end (), std::not1 (Nullable (this))); + + if (nn == rule->rhs.end ()) + changed |= nullables.insert (rule->lhs).second; +@@ -643,7 +643,7 @@ void Automaton::buildIncludesDigraph () + if (! _M_grammar->isNonTerminal (*A)) + continue; + +- NameList::iterator first_not_nullable = std::find_if (dot, rule->rhs.end (), std::not1 (_Nullable (this))); ++ NameList::iterator first_not_nullable = std::find_if (dot, rule->rhs.end (), std::not1 (Nullable (this))); + if (first_not_nullable != rule->rhs.end ()) + continue; +