From owner-svn-ports-branches@freebsd.org Sun Jan 22 08:14:17 2017 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 1A06ACBCE7E; Sun, 22 Jan 2017 08:14:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C53DDEB2; Sun, 22 Jan 2017 08:14:16 +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 v0M8EFKU006208; Sun, 22 Jan 2017 08:14:15 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0M8EFZm006205; Sun, 22 Jan 2017 08:14:15 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701220814.v0M8EFZm006205@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 22 Jan 2017 08:14:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432097 - in branches/2017Q1/devel/ptlib: . 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, 22 Jan 2017 08:14:17 -0000 Author: jbeich Date: Sun Jan 22 08:14:15 2017 New Revision: 432097 URL: https://svnweb.freebsd.org/changeset/ports/432097 Log: MFH: r432013 devel/ptlib: properly detect mmap(2) failure PR: 216019 Approved by: ports-secteam (junovitch) Added: branches/2017Q1/devel/ptlib/files/patch-plugins_vidinput__bsd_vidinput__bsd.cxx - copied unchanged from r432013, head/devel/ptlib/files/patch-plugins_vidinput__bsd_vidinput__bsd.cxx branches/2017Q1/devel/ptlib/files/patch-plugins_vidinput__v4l_vidinput__v4l.cxx - copied unchanged from r432013, head/devel/ptlib/files/patch-plugins_vidinput__v4l_vidinput__v4l.cxx Modified: branches/2017Q1/devel/ptlib/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/devel/ptlib/Makefile ============================================================================== --- branches/2017Q1/devel/ptlib/Makefile Sun Jan 22 07:50:39 2017 (r432096) +++ branches/2017Q1/devel/ptlib/Makefile Sun Jan 22 08:14:15 2017 (r432097) @@ -3,6 +3,7 @@ PORTNAME= ptlib PORTVERSION= 2.10.11 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GNOME Copied: branches/2017Q1/devel/ptlib/files/patch-plugins_vidinput__bsd_vidinput__bsd.cxx (from r432013, head/devel/ptlib/files/patch-plugins_vidinput__bsd_vidinput__bsd.cxx) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/devel/ptlib/files/patch-plugins_vidinput__bsd_vidinput__bsd.cxx Sun Jan 22 08:14:15 2017 (r432097, copy of r432013, head/devel/ptlib/files/patch-plugins_vidinput__bsd_vidinput__bsd.cxx) @@ -0,0 +1,11 @@ +--- plugins/vidinput_bsd/vidinput_bsd.cxx.orig 2013-08-14 23:20:28 UTC ++++ plugins/vidinput_bsd/vidinput_bsd.cxx +@@ -308,7 +308,7 @@ PBoolean PVideoInputDevice_BSDCAPTURE::G + + mmap_size = frameBytes; + videoBuffer = (BYTE *)::mmap(0, mmap_size, PROT_READ, 0, videoFd, 0); +- if (videoBuffer < 0) { ++ if (videoBuffer == MAP_FAILED) { + return PFalse; + } else { + canMap = 1; Copied: branches/2017Q1/devel/ptlib/files/patch-plugins_vidinput__v4l_vidinput__v4l.cxx (from r432013, head/devel/ptlib/files/patch-plugins_vidinput__v4l_vidinput__v4l.cxx) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/devel/ptlib/files/patch-plugins_vidinput__v4l_vidinput__v4l.cxx Sun Jan 22 08:14:15 2017 (r432097, copy of r432013, head/devel/ptlib/files/patch-plugins_vidinput__v4l_vidinput__v4l.cxx) @@ -0,0 +1,11 @@ +--- plugins/vidinput_v4l/vidinput_v4l.cxx.orig 2013-08-14 23:20:28 UTC ++++ plugins/vidinput_v4l/vidinput_v4l.cxx +@@ -978,7 +978,7 @@ PBoolean PVideoInputDevice_V4L::GetFrame + } else { + videoBuffer = (BYTE *)::mmap(0, frame.size, PROT_READ|PROT_WRITE, MAP_SHARED, videoFd, 0); + +- if (videoBuffer < 0) { ++ if (videoBuffer == MAP_FAILED) { + canMap = 0; + PTRACE(3, "VideoGrabber " << deviceName << " cannot do memory mapping - ::mmap failed."); + //This video device cannot do memory mapping. From owner-svn-ports-branches@freebsd.org Sun Jan 22 08:38:14 2017 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 3CC86CBA322; Sun, 22 Jan 2017 08:38:14 +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 179659C4; Sun, 22 Jan 2017 08:38:14 +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 v0M8cDUS014454; Sun, 22 Jan 2017 08:38:13 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0M8cDQ9014452; Sun, 22 Jan 2017 08:38:13 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701220838.v0M8cDQ9014452@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 22 Jan 2017 08:38:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432099 - in branches/2017Q1/editors: openoffice-4/files openoffice-devel/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, 22 Jan 2017 08:38:14 -0000 Author: jbeich Date: Sun Jan 22 08:38:12 2017 New Revision: 432099 URL: https://svnweb.freebsd.org/changeset/ports/432099 Log: MFH: r432098 editors/openoffice-devel: unbreak with clang 4.0 main/desktop/source/app/officeipcthread.cxx:228:14: error: ordered comparison between pointer and zero ('rtlDigest' (aka 'void *') and 'int') if ( handle > 0 ) ~~~~~~ ^ ~ main/desktop/source/deployment/misc/dp_misc.cxx:106:16: error: ordered comparison between pointer and zero ('rtlDigest' (aka 'void *') and 'int') if (digest <= 0) { ~~~~~~ ^ ~ main/sd/source/ui/view/viewshe3.cxx:229:48: error: ordered comparison between pointer and zero ('SdPage *' and 'int') if (pDocument->GetSdPage(0, ePageKind) > 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ PR: 216206 Submitted by: pfg Obtained from: upstream Approved by: ports-secteam blanket Added: branches/2017Q1/editors/openoffice-4/files/patch-clang40 - copied unchanged from r432098, head/editors/openoffice-4/files/patch-clang40 branches/2017Q1/editors/openoffice-devel/files/patch-clang40 - copied unchanged from r432098, head/editors/openoffice-devel/files/patch-clang40 Modified: Directory Properties: branches/2017Q1/ (props changed) Copied: branches/2017Q1/editors/openoffice-4/files/patch-clang40 (from r432098, head/editors/openoffice-4/files/patch-clang40) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/editors/openoffice-4/files/patch-clang40 Sun Jan 22 08:38:12 2017 (r432099, copy of r432098, head/editors/openoffice-4/files/patch-clang40) @@ -0,0 +1,39 @@ +Index: desktop/source/app/officeipcthread.cxx +=================================================================== +--- desktop/source/app/officeipcthread.cxx (revision 1779757) ++++ desktop/source/app/officeipcthread.cxx (revision 1779758) +@@ -225,7 +225,7 @@ String CreateMD5FromString( const OUString& aMsg ) + // BACK: Str "ababab....0f" Hexcode String + + rtlDigest handle = rtl_digest_create( rtl_Digest_AlgorithmMD5 ); +- if ( handle > 0 ) ++ if ( handle != NULL ) + { + const sal_uInt8* pData = (const sal_uInt8*)aMsg.getStr(); + sal_uInt32 nSize = ( aMsg.getLength() * sizeof( sal_Unicode )); +Index: desktop/source/deployment/misc/dp_misc.cxx +=================================================================== +--- desktop/source/deployment/misc/dp_misc.cxx (revision 1779671) ++++ desktop/source/deployment/misc/dp_misc.cxx (revision 1779695) +@@ -103,7 +103,7 @@ const OUString OfficePipeId::operator () () + } + + rtlDigest digest = rtl_digest_create( rtl_Digest_AlgorithmMD5 ); +- if (digest <= 0) { ++ if (digest == NULL) { + throw RuntimeException( + OUSTR("cannot get digest rtl_Digest_AlgorithmMD5!"), 0 ); + } +Index: sd/source/ui/view/viewshe3.cxx +=================================================================== +--- sd/source/ui/view/viewshe3.cxx (revision 1779671) ++++ sd/source/ui/view/viewshe3.cxx (revision 1779695) +@@ -226,7 +226,7 @@ SdPage* ViewShell::CreateOrDuplicatePage ( + // When the given page is NULL then use the first page of the document. + SdPage* pTemplatePage = pPage; + if (pTemplatePage == NULL) +- if (pDocument->GetSdPage(0, ePageKind) > 0) ++ if (pDocument->GetSdPage(0, ePageKind) != NULL) + pTemplatePage = pDocument->GetSdPage(0, ePageKind); + if (pTemplatePage != NULL && pTemplatePage->TRG_HasMasterPage()) + aVisibleLayers = pTemplatePage->TRG_GetMasterPageVisibleLayers(); Copied: branches/2017Q1/editors/openoffice-devel/files/patch-clang40 (from r432098, head/editors/openoffice-devel/files/patch-clang40) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/editors/openoffice-devel/files/patch-clang40 Sun Jan 22 08:38:12 2017 (r432099, copy of r432098, head/editors/openoffice-devel/files/patch-clang40) @@ -0,0 +1,39 @@ +Index: desktop/source/app/officeipcthread.cxx +=================================================================== +--- desktop/source/app/officeipcthread.cxx (revision 1779757) ++++ desktop/source/app/officeipcthread.cxx (revision 1779758) +@@ -225,7 +225,7 @@ String CreateMD5FromString( const OUString& aMsg ) + // BACK: Str "ababab....0f" Hexcode String + + rtlDigest handle = rtl_digest_create( rtl_Digest_AlgorithmMD5 ); +- if ( handle > 0 ) ++ if ( handle != NULL ) + { + const sal_uInt8* pData = (const sal_uInt8*)aMsg.getStr(); + sal_uInt32 nSize = ( aMsg.getLength() * sizeof( sal_Unicode )); +Index: desktop/source/deployment/misc/dp_misc.cxx +=================================================================== +--- desktop/source/deployment/misc/dp_misc.cxx (revision 1779671) ++++ desktop/source/deployment/misc/dp_misc.cxx (revision 1779695) +@@ -103,7 +103,7 @@ const OUString OfficePipeId::operator () () + } + + rtlDigest digest = rtl_digest_create( rtl_Digest_AlgorithmMD5 ); +- if (digest <= 0) { ++ if (digest == NULL) { + throw RuntimeException( + OUSTR("cannot get digest rtl_Digest_AlgorithmMD5!"), 0 ); + } +Index: sd/source/ui/view/viewshe3.cxx +=================================================================== +--- sd/source/ui/view/viewshe3.cxx (revision 1779671) ++++ sd/source/ui/view/viewshe3.cxx (revision 1779695) +@@ -226,7 +226,7 @@ SdPage* ViewShell::CreateOrDuplicatePage ( + // When the given page is NULL then use the first page of the document. + SdPage* pTemplatePage = pPage; + if (pTemplatePage == NULL) +- if (pDocument->GetSdPage(0, ePageKind) > 0) ++ if (pDocument->GetSdPage(0, ePageKind) != NULL) + pTemplatePage = pDocument->GetSdPage(0, ePageKind); + if (pTemplatePage != NULL && pTemplatePage->TRG_HasMasterPage()) + aVisibleLayers = pTemplatePage->TRG_GetMasterPageVisibleLayers(); From owner-svn-ports-branches@freebsd.org Sun Jan 22 09:07:05 2017 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 8BFE3CBAF8F; Sun, 22 Jan 2017 09:07:05 +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 38D52A74; Sun, 22 Jan 2017 09:07:05 +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 v0M974Xj026930; Sun, 22 Jan 2017 09:07:04 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0M974oO026929; Sun, 22 Jan 2017 09:07:04 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701220907.v0M974oO026929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 22 Jan 2017 09:07:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432102 - in branches/2017Q1/multimedia/libvpx: . 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, 22 Jan 2017 09:07:05 -0000 Author: jbeich Date: Sun Jan 22 09:07:04 2017 New Revision: 432102 URL: https://svnweb.freebsd.org/changeset/ports/432102 Log: MFH: r432101 multimedia/libvpx: grab and drop architecture whitelist PR: 216191 Approved by: ashish (previous maintainer) Approved by: ports-secteam blanket (unbreaks armv6 after r431741) Deleted: branches/2017Q1/multimedia/libvpx/files/extra-patch-build_make_Makefile branches/2017Q1/multimedia/libvpx/files/patch-configure Modified: branches/2017Q1/multimedia/libvpx/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/multimedia/libvpx/Makefile ============================================================================== --- branches/2017Q1/multimedia/libvpx/Makefile Sun Jan 22 09:03:55 2017 (r432101) +++ branches/2017Q1/multimedia/libvpx/Makefile Sun Jan 22 09:07:04 2017 (r432102) @@ -6,7 +6,7 @@ DISTVERSIONPREFIX= v DISTVERSION= 1.6.1 CATEGORIES= multimedia -MAINTAINER= ashish@FreeBSD.org +MAINTAINER= jbeich@FreeBSD.org COMMENT= VP8/VP9 Codec SDK LICENSE= BSD3CLAUSE @@ -34,7 +34,17 @@ SHARED_DESC= Enable shared-library suppo SIZE_LIMIT_DESC=Maximum size allowed by decoder: ${SIZE_LIMIT} ALL_TARGET= -CONFIGURE_ARGS+=--prefix=${PREFIX} \ +CONFIGURE_ENV= ASFLAGS="${ASFLAGS}" +# Only explicitly list ARCHs with SIMD optimizations +CONFIGURE_ARGS_aarch64= --target=arm64-linux-gcc +CONFIGURE_ARGS_amd64= --target=x86_64-linux-gcc +CONFIGURE_ARGS_i386= --target=x86-linux-gcc +.if ${CFLAGS:M-march=armv[78]*} +CONFIGURE_ARGS+= --target=armv7-linux-gcc +ASFLAGS+= -meabi=5 +.endif +CONFIGURE_ARGS+=${CONFIGURE_ARGS_${ARCH}} \ + --prefix=${PREFIX} \ --disable-install-docs \ --disable-install-srcs \ --enable-pic \ @@ -58,29 +68,6 @@ THREADS_CONFIGURE_OFF= --disable-multith SHEBANG_FILES= build/make/ads2gas.pl -.include - -.if ${ARCH} == "amd64" -CONFIGURE_ARGS+= --target=x86_64-linux-gcc -.elif ${ARCH} == "i386" -CONFIGURE_ARGS+= --target=x86-linux-gcc -.elif ${ARCH} == "ia64" -CONFIGURE_ARGS+= --target=ia64-linux-gcc -.elif ${ARCH} == "powerpc" -CONFIGURE_ARGS+= --target=ppc32-linux-gcc -.elif ${ARCH} == "powerpc64" -CONFIGURE_ARGS+= --target=ppc64-linux-gcc -.elif ${ARCH} == "sparc64" -CONFIGURE_ARGS+= --target=sparc64-linux-gcc -.elif ${ARCH} == "aarch64" -CONFIGURE_ARGS+= --target=arm64-linux-gcc -.elif ${ARCH} == "armv6" -CONFIGURE_ARGS+= --target=armv6-linux-gcc --cpu=armv6 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-build_make_Makefile -.else -IGNORE= no support for ${ARCH} the moment. testing/patches are welcome -.endif - post-patch: @${REINPLACE_CMD} 's|\(link_with_cc\)=gcc|\1=$${CC}|' \ ${WRKSRC}/build/make/configure.sh From owner-svn-ports-branches@freebsd.org Sun Jan 22 12:02:21 2017 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 4EAB0CBC0BD; Sun, 22 Jan 2017 12:02:21 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2935EB1F; Sun, 22 Jan 2017 12:02:21 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0MC2Knt001097; Sun, 22 Jan 2017 12:02:20 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0MC2Jg8001087; Sun, 22 Jan 2017 12:02:19 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201701221202.v0MC2Jg8001087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sun, 22 Jan 2017 12:02:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432114 - in branches/2017Q1: emulators/aqemu emulators/kcemu emulators/virtualbox-ose net/guacamole-server net/krdc net/libvncserver net/libvncserver/files net/remmina-plugin-vnc 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, 22 Jan 2017 12:02:21 -0000 Author: matthew Date: Sun Jan 22 12:02:19 2017 New Revision: 432114 URL: https://svnweb.freebsd.org/changeset/ports/432114 Log: MFH: r432083 r432088 Update to 0.9.11 This includes a security fix for CVE-2016-9941 and CVE-2016-9942 * Drop files/patch-libvncclient_h264.c -- upstream has dropped h264 support * Switch from USE_OPENSSL to USES+=ssl * PORTREVISION bump in ports that link against libvncserver.so (with their default OPTIONS settings) due to change in ABI version of libvncserver.so PR: 215802 Submitted by: vlad-fbsd@acheronmedia.com Security: 64be967a-d379-11e6-a071-001e67f15f5a Bump PORTREVISION chasing ABI version increment in libvncserver -- this port was missed from r432083, and this change should be MFH'd as well. Approved by: ports-secteam (junovitch) Deleted: branches/2017Q1/net/libvncserver/files/ Modified: branches/2017Q1/emulators/aqemu/Makefile branches/2017Q1/emulators/kcemu/Makefile branches/2017Q1/emulators/virtualbox-ose/Makefile branches/2017Q1/net/guacamole-server/Makefile branches/2017Q1/net/krdc/Makefile branches/2017Q1/net/libvncserver/Makefile branches/2017Q1/net/libvncserver/distinfo branches/2017Q1/net/libvncserver/pkg-plist branches/2017Q1/net/remmina-plugin-vnc/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/emulators/aqemu/Makefile ============================================================================== --- branches/2017Q1/emulators/aqemu/Makefile Sun Jan 22 11:08:48 2017 (r432113) +++ branches/2017Q1/emulators/aqemu/Makefile Sun Jan 22 12:02:19 2017 (r432114) @@ -2,7 +2,7 @@ PORTNAME= aqemu PORTVERSION= 0.8.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:S,.0$,,}/ Modified: branches/2017Q1/emulators/kcemu/Makefile ============================================================================== --- branches/2017Q1/emulators/kcemu/Makefile Sun Jan 22 11:08:48 2017 (r432113) +++ branches/2017Q1/emulators/kcemu/Makefile Sun Jan 22 12:02:19 2017 (r432114) @@ -3,7 +3,7 @@ PORTNAME= kcemu PORTVERSION= 0.5.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/KCemu/KCemu-${PORTVERSION} DISTNAME= KCemu-${PORTVERSION} Modified: branches/2017Q1/emulators/virtualbox-ose/Makefile ============================================================================== --- branches/2017Q1/emulators/virtualbox-ose/Makefile Sun Jan 22 11:08:48 2017 (r432113) +++ branches/2017Q1/emulators/virtualbox-ose/Makefile Sun Jan 22 12:02:19 2017 (r432114) @@ -3,6 +3,7 @@ PORTNAME= virtualbox-ose PORTVERSION= 5.1.12 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/ DISTFILES= VirtualBox-${PORTVERSION}${EXTRACT_SUFX} ${GUESTADDITIONS} Modified: branches/2017Q1/net/guacamole-server/Makefile ============================================================================== --- branches/2017Q1/net/guacamole-server/Makefile Sun Jan 22 11:08:48 2017 (r432113) +++ branches/2017Q1/net/guacamole-server/Makefile Sun Jan 22 12:02:19 2017 (r432114) @@ -3,7 +3,7 @@ PORTNAME= guacamole-server PORTVERSION= 0.9.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MAINTAINER= ultima1252@gmail.com Modified: branches/2017Q1/net/krdc/Makefile ============================================================================== --- branches/2017Q1/net/krdc/Makefile Sun Jan 22 11:08:48 2017 (r432113) +++ branches/2017Q1/net/krdc/Makefile Sun Jan 22 12:02:19 2017 (r432114) @@ -2,7 +2,7 @@ PORTNAME= krdc PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: branches/2017Q1/net/libvncserver/Makefile ============================================================================== --- branches/2017Q1/net/libvncserver/Makefile Sun Jan 22 11:08:48 2017 (r432113) +++ branches/2017Q1/net/libvncserver/Makefile Sun Jan 22 12:02:19 2017 (r432114) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= libvncserver -PORTVERSION= 0.9.10 +PORTVERSION= 0.9.11 DISTVERSIONPREFIX= LibVNCServer- -PORTREVISION= 1 CATEGORIES= net devel MAINTAINER= ports@FreeBSD.org @@ -35,7 +34,7 @@ GNUTLS_LIB_DEPENDS= libgnutls.so:securit GNUTLS_CONFIGURE_WITH= gnutls OPENSSL_CONFIGURE_WITH= crypto ssl -OPENSSL_USE= OPENSSL=yes +OPENSSL_USES= ssl GCRYPT_LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error Modified: branches/2017Q1/net/libvncserver/distinfo ============================================================================== --- branches/2017Q1/net/libvncserver/distinfo Sun Jan 22 11:08:48 2017 (r432113) +++ branches/2017Q1/net/libvncserver/distinfo Sun Jan 22 12:02:19 2017 (r432114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466709748 -SHA256 (LibVNC-libvncserver-LibVNCServer-0.9.10_GH0.tar.gz) = ed10819a5bfbf269969f97f075939cc38273cc1b6d28bccfb0999fba489411f7 -SIZE (LibVNC-libvncserver-LibVNCServer-0.9.10_GH0.tar.gz) = 1415191 +TIMESTAMP = 1483637975 +SHA256 (LibVNC-libvncserver-LibVNCServer-0.9.11_GH0.tar.gz) = 193d630372722a532136fd25c5326b2ca1a636cbb8bf9bb115ef869c804d2894 +SIZE (LibVNC-libvncserver-LibVNCServer-0.9.11_GH0.tar.gz) = 1413739 Modified: branches/2017Q1/net/libvncserver/pkg-plist ============================================================================== --- branches/2017Q1/net/libvncserver/pkg-plist Sun Jan 22 11:08:48 2017 (r432113) +++ branches/2017Q1/net/libvncserver/pkg-plist Sun Jan 22 12:02:19 2017 (r432114) @@ -4,16 +4,15 @@ include/rfb/keysym.h include/rfb/rfb.h include/rfb/rfbclient.h include/rfb/rfbconfig.h -include/rfb/rfbint.h include/rfb/rfbproto.h include/rfb/rfbregion.h lib/libvncclient.a lib/libvncclient.so -lib/libvncclient.so.0 -lib/libvncclient.so.0.0.0 +lib/libvncclient.so.1 +lib/libvncclient.so.1.0.0 lib/libvncserver.a lib/libvncserver.so -lib/libvncserver.so.0 -lib/libvncserver.so.0.0.0 +lib/libvncserver.so.1 +lib/libvncserver.so.1.0.0 libdata/pkgconfig/libvncclient.pc libdata/pkgconfig/libvncserver.pc Modified: branches/2017Q1/net/remmina-plugin-vnc/Makefile ============================================================================== --- branches/2017Q1/net/remmina-plugin-vnc/Makefile Sun Jan 22 11:08:48 2017 (r432113) +++ branches/2017Q1/net/remmina-plugin-vnc/Makefile Sun Jan 22 12:02:19 2017 (r432114) @@ -2,6 +2,7 @@ # $FreeBSD$ PKGNAMESUFFIX= -vnc +PORTREVISION= 1 COMMENT= Remmina plugin for VNC protocol From owner-svn-ports-branches@freebsd.org Sun Jan 22 12:57:05 2017 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 571C3CB0CE5; Sun, 22 Jan 2017 12:57:05 +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 0C4E8E2C; Sun, 22 Jan 2017 12:57:04 +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 v0MCv4mT023114; Sun, 22 Jan 2017 12:57:04 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0MCv4nl023113; Sun, 22 Jan 2017 12:57:04 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201701221257.v0MCv4nl023113@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 22 Jan 2017 12:57:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432129 - branches/2017Q1/x11-wm/fluxbox/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, 22 Jan 2017 12:57:05 -0000 Author: tcberner Date: Sun Jan 22 12:57:03 2017 New Revision: 432129 URL: https://svnweb.freebsd.org/changeset/ports/432129 Log: MFH: r432090 Fix x11-wm/fluxbox: fails to build with clang 4.0 Import upstream commit http://git.fluxbox.org/fluxbox.git/commit/util/fluxbox-remote.cc?id=22866c4d30f5b289c429c5ca88d800200db4fc4f for issue https://sourceforge.net/p/fluxbox/bugs/1138/ PR: 216176 Approved by: portmgr blanket, rakuco (mentor) Approved by: ports-secteam (junovitch), rakuco (mentor) Added: branches/2017Q1/x11-wm/fluxbox/files/patch-util_fluxbox-remote.cc - copied unchanged from r432090, head/x11-wm/fluxbox/files/patch-util_fluxbox-remote.cc Modified: Directory Properties: branches/2017Q1/ (props changed) Copied: branches/2017Q1/x11-wm/fluxbox/files/patch-util_fluxbox-remote.cc (from r432090, head/x11-wm/fluxbox/files/patch-util_fluxbox-remote.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/x11-wm/fluxbox/files/patch-util_fluxbox-remote.cc Sun Jan 22 12:57:03 2017 (r432129, copy of r432090, head/x11-wm/fluxbox/files/patch-util_fluxbox-remote.cc) @@ -0,0 +1,15 @@ +Upstream fix for bogus pointer comparison: +Issue: https://sourceforge.net/p/fluxbox/bugs/1138/ +Commit: http://git.fluxbox.org/fluxbox.git/commit/util/fluxbox-remote.cc?id=22866c4d30f5b289c429c5ca88d800200db4fc4f + +--- util/fluxbox-remote.cc.orig 2015-02-08 10:44:45 UTC ++++ util/fluxbox-remote.cc +@@ -73,7 +73,7 @@ int main(int argc, char **argv) { + if (strcmp(cmd, "result") == 0) { + XTextProperty text_prop; + if (XGetTextProperty(disp, root, &text_prop, atom_result) != 0 +- && text_prop.value > 0 ++ && text_prop.value != 0 + && text_prop.nitems > 0) { + + printf("%s", text_prop.value); From owner-svn-ports-branches@freebsd.org Sun Jan 22 17:15:43 2017 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 46DAECBB2C8; Sun, 22 Jan 2017 17:15:43 +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 F06E8381; Sun, 22 Jan 2017 17:15:42 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0MHFgVb031858; Sun, 22 Jan 2017 17:15:42 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0MHFgTO031857; Sun, 22 Jan 2017 17:15:42 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701221715.v0MHFgTO031857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 22 Jan 2017 17:15:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432156 - branches/2017Q1/print/ghostscript9-agpl-base 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, 22 Jan 2017 17:15:43 -0000 Author: jbeich Date: Sun Jan 22 17:15:41 2017 New Revision: 432156 URL: https://svnweb.freebsd.org/changeset/ports/432156 Log: MFH: r432155 print/ghostscript9-agpl-base: unbreak on 11.0 aarch64 via -O0 fatal error: error in backend: Cannot select: 0x431dcbe0: i32 = AArch64ISD::FCCMP 0x431f3d10, 0x431e1980, Constant:i32<0>, Constant:i32<13>, 0x43415e40 0x431f3d10: f128,ch = CopyFromReg 0x42c42930, Register:f128 %vreg170 0x431e2ab0: f128 = Register %vreg170 0x431e1980: f128,ch = CopyFromReg 0x42c42930, Register:f128 %vreg88 0x431f34c0: f128 = Register %vreg88 0x431dc390: i32 = Constant<0> 0x42df45f0: i32 = Constant<13> 0x43415e40: f128 = AArch64ISD::FCMP 0x431e2e40, 0x431e1980 0x431e2e40: f128,ch = CopyFromReg 0x42c42930, Register:f128 %vreg171 0x431e2980: f128 = Register %vreg171 0x431e1980: f128,ch = CopyFromReg 0x42c42930, Register:f128 %vreg88 0x431f34c0: f128 = Register %vreg88 In function: TrioFormat cc: error: clang frontend command failed with exit code 70 (use -v to see invocation) FreeBSD clang version 3.8.0 (tags/RELEASE_380/final 262564) (based on LLVM 3.8.0) Target: aarch64-unknown-freebsd11.0 Reported by: pkg-fallout Approved by: portmgr blanket (unblocking 420 ports) Approved by: ports-secteam blanket Modified: branches/2017Q1/print/ghostscript9-agpl-base/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/print/ghostscript9-agpl-base/Makefile ============================================================================== --- branches/2017Q1/print/ghostscript9-agpl-base/Makefile Sun Jan 22 17:13:32 2017 (r432155) +++ branches/2017Q1/print/ghostscript9-agpl-base/Makefile Sun Jan 22 17:15:41 2017 (r432156) @@ -35,7 +35,7 @@ CONFLICTS_INSTALL= \ ghostscript9-agpl-[0-9]* \ ghostscript9-agpl-nox11-[0-9]* -USES= autoreconf gmake iconv jpeg pkgconfig:build tar:bzip2 +USES= autoreconf compiler gmake iconv jpeg pkgconfig:build tar:bzip2 USE_LDCONFIG= yes EXTRACT_AFTER_ARGS= ${EXCLUDE_DIRS:S/^/--exclude /} DATADIR= ${PREFIX}/share/${PORTNAME}/${PORTVERSION} @@ -103,6 +103,10 @@ PORTDOC_FILES= japanese/Gdevlips.htm jap post-patch: ${REINPLACE_CMD} -e 's,%%DATADIR%%,${DATADIR},' \ ${WRKSRC}/contrib/japanese/dmp_site.ps +# XXX CHOSEN_COMPILER_VERSION isn't supported, so check CC hasn't changed + @if [ '${ARCH}:${CC}:${COMPILER_TYPE}:${COMPILER_VERSION}' = 'aarch64:cc:clang:38' ]; then \ + ${REINPLACE_CMD} '/CC.*trio\./s/$$/ -O0/' ${WRKSRC}/base/trio.mak; \ + fi pre-build-drivers.mak: @${ECHO_CMD} '# automatically generated' > ${WRKSRC}/base/drivers.mak From owner-svn-ports-branches@freebsd.org Sun Jan 22 20:59:35 2017 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 1E5B0CBDE51; Sun, 22 Jan 2017 20:59:35 +0000 (UTC) (envelope-from ehaupt@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 C810ACDC; Sun, 22 Jan 2017 20:59:34 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0MKxXCW021954; Sun, 22 Jan 2017 20:59:33 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0MKxXFl021952; Sun, 22 Jan 2017 20:59:33 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201701222059.v0MKxXFl021952@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Sun, 22 Jan 2017 20:59:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432160 - branches/2017Q1/shells/bash 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, 22 Jan 2017 20:59:35 -0000 Author: ehaupt Date: Sun Jan 22 20:59:33 2017 New Revision: 432160 URL: https://svnweb.freebsd.org/changeset/ports/432160 Log: MFH: r431931 Update to 4.4.7 Changelog: - Out-of-range negative offsets to popd can cause the shell to crash attempting to free an invalid memory block. - When performing filename completion, bash dequotes the directory name being completed, which can result in match failures and potential unwanted expansion. Approved by: ports-secteam (junovitch) Modified: branches/2017Q1/shells/bash/Makefile branches/2017Q1/shells/bash/distinfo Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/shells/bash/Makefile ============================================================================== --- branches/2017Q1/shells/bash/Makefile Sun Jan 22 20:35:34 2017 (r432159) +++ branches/2017Q1/shells/bash/Makefile Sun Jan 22 20:59:33 2017 (r432160) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bash -PATCHLEVEL= 5 +PATCHLEVEL= 7 PORTVERSION= 4.4.${PATCHLEVEL:S/^0//g} PORTREVISION?= 0 CATEGORIES= shells Modified: branches/2017Q1/shells/bash/distinfo ============================================================================== --- branches/2017Q1/shells/bash/distinfo Sun Jan 22 20:35:34 2017 (r432159) +++ branches/2017Q1/shells/bash/distinfo Sun Jan 22 20:59:33 2017 (r432160) @@ -1,4 +1,4 @@ -TIMESTAMP = 1479623345 +TIMESTAMP = 1484893303 SHA256 (bash/bash-4.4.tar.gz) = d86b3392c1202e8ff5a423b302e6284db7f8f435ea9f39b5b1b20fd3ac36dfcb SIZE (bash/bash-4.4.tar.gz) = 9377313 SHA256 (bash/bash44-001) = 3e28d91531752df9a8cb167ad07cc542abaf944de9353fe8c6a535c9f1f17f0f @@ -11,3 +11,7 @@ SHA256 (bash/bash44-004) = ad080a30a4ac6 SIZE (bash/bash44-004) = 2350 SHA256 (bash/bash44-005) = 221e4b725b770ad0bb6924df3f8d04f89eeca4558f6e4c777dfa93e967090529 SIZE (bash/bash44-005) = 1439 +SHA256 (bash/bash44-006) = 6a8e2e2a6180d0f1ce39dcd651622fb6d2fd05db7c459f64ae42d667f1e344b8 +SIZE (bash/bash44-006) = 1805 +SHA256 (bash/bash44-007) = de1ccc07b7bfc9e25243ad854f3bbb5d3ebf9155b0477df16aaf00a7b0d5edaf +SIZE (bash/bash44-007) = 4640 From owner-svn-ports-branches@freebsd.org Mon Jan 23 06:03:42 2017 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 F3D4ACBD416; Mon, 23 Jan 2017 06:03:41 +0000 (UTC) (envelope-from ehaupt@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 A7C211D64; Mon, 23 Jan 2017 06:03:41 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0N63eYl049681; Mon, 23 Jan 2017 06:03:40 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0N63e50049679; Mon, 23 Jan 2017 06:03:40 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201701230603.v0N63e50049679@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Mon, 23 Jan 2017 06:03:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432197 - branches/2017Q1/shells/bash 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, 23 Jan 2017 06:03:42 -0000 Author: ehaupt Date: Mon Jan 23 06:03:40 2017 New Revision: 432197 URL: https://svnweb.freebsd.org/changeset/ports/432197 Log: MFH: r432161 Update to 4.4.11 Changelog: Under certain circumstances, bash will evaluate arithmetic expressions as part of reading an expression token even when evaluation is suppressed. This happens while evaluating a conditional expression and skipping over the failed branch of the expression. There is a race condition in add_history() that can be triggered by a fatal signal arriving between the time the history length is updated and the time the history list update is completed. A later attempt to reference an invalid history entry can cause a crash. Depending on compiler optimizations and behavior, the `read' builtin may not save partial input when a timeout occurs. Subshells begun to run command and process substitutions may attempt to set the terminal's process group to an incorrect value if they receive a fatal signal. This depends on the behavior of the process that starts the shell. Approved by: ports-secteam (junovitch) Modified: branches/2017Q1/shells/bash/Makefile branches/2017Q1/shells/bash/distinfo Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/shells/bash/Makefile ============================================================================== --- branches/2017Q1/shells/bash/Makefile Mon Jan 23 03:27:38 2017 (r432196) +++ branches/2017Q1/shells/bash/Makefile Mon Jan 23 06:03:40 2017 (r432197) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bash -PATCHLEVEL= 7 +PATCHLEVEL= 11 PORTVERSION= 4.4.${PATCHLEVEL:S/^0//g} PORTREVISION?= 0 CATEGORIES= shells Modified: branches/2017Q1/shells/bash/distinfo ============================================================================== --- branches/2017Q1/shells/bash/distinfo Mon Jan 23 03:27:38 2017 (r432196) +++ branches/2017Q1/shells/bash/distinfo Mon Jan 23 06:03:40 2017 (r432197) @@ -1,4 +1,4 @@ -TIMESTAMP = 1484893303 +TIMESTAMP = 1485118817 SHA256 (bash/bash-4.4.tar.gz) = d86b3392c1202e8ff5a423b302e6284db7f8f435ea9f39b5b1b20fd3ac36dfcb SIZE (bash/bash-4.4.tar.gz) = 9377313 SHA256 (bash/bash44-001) = 3e28d91531752df9a8cb167ad07cc542abaf944de9353fe8c6a535c9f1f17f0f @@ -15,3 +15,11 @@ SHA256 (bash/bash44-006) = 6a8e2e2a6180d SIZE (bash/bash44-006) = 1805 SHA256 (bash/bash44-007) = de1ccc07b7bfc9e25243ad854f3bbb5d3ebf9155b0477df16aaf00a7b0d5edaf SIZE (bash/bash44-007) = 4640 +SHA256 (bash/bash44-008) = 86144700465933636d7b945e89b77df95d3620034725be161ca0ca5a42e239ba +SIZE (bash/bash44-008) = 2223 +SHA256 (bash/bash44-009) = 0b6bdd1a18a0d20e330cc3bc71e048864e4a13652e29dc0ebf3918bea729343c +SIZE (bash/bash44-009) = 3117 +SHA256 (bash/bash44-010) = 8465c6f2c56afe559402265b39d9e94368954930f9aa7f3dfa6d36dd66868e06 +SIZE (bash/bash44-010) = 1670 +SHA256 (bash/bash44-011) = dd56426ef7d7295e1107c0b3d06c192eb9298f4023c202ca2ba6266c613d170d +SIZE (bash/bash44-011) = 1603 From owner-svn-ports-branches@freebsd.org Mon Jan 23 06:33:41 2017 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 5CD42CBD9CE; Mon, 23 Jan 2017 06:33:41 +0000 (UTC) (envelope-from lme@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 2C5C3C64; Mon, 23 Jan 2017 06:33:41 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0N6XeXR062050; Mon, 23 Jan 2017 06:33:40 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0N6Xerd062048; Mon, 23 Jan 2017 06:33:40 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201701230633.v0N6Xerd062048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Mon, 23 Jan 2017 06:33:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432199 - branches/2017Q1/net-mgmt/icingaweb2 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, 23 Jan 2017 06:33:41 -0000 Author: lme Date: Mon Jan 23 06:33:39 2017 New Revision: 432199 URL: https://svnweb.freebsd.org/changeset/ports/432199 Log: MFH: r432166 net-mgmt/icingaweb2: - Update to 2.4.1 - Changelog: https://github.com/Icinga/icingaweb2/blob/v2.4.1/ChangeLog Approved by: ports-secteam (junovich) Modified: branches/2017Q1/net-mgmt/icingaweb2/Makefile branches/2017Q1/net-mgmt/icingaweb2/distinfo Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/net-mgmt/icingaweb2/Makefile ============================================================================== --- branches/2017Q1/net-mgmt/icingaweb2/Makefile Mon Jan 23 06:33:34 2017 (r432198) +++ branches/2017Q1/net-mgmt/icingaweb2/Makefile Mon Jan 23 06:33:39 2017 (r432199) @@ -2,7 +2,7 @@ PORTNAME= icingaweb2 DISTVERSIONPREFIX= v -DISTVERSION= 2.4.0 +DISTVERSION= 2.4.1 CATEGORIES= net-mgmt www MAINTAINER= lme@FreeBSD.org Modified: branches/2017Q1/net-mgmt/icingaweb2/distinfo ============================================================================== --- branches/2017Q1/net-mgmt/icingaweb2/distinfo Mon Jan 23 06:33:34 2017 (r432198) +++ branches/2017Q1/net-mgmt/icingaweb2/distinfo Mon Jan 23 06:33:39 2017 (r432199) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481667215 -SHA256 (icinga-icingaweb2-v2.4.0_GH0.tar.gz) = aa8c1b2a0e655aa646045cb39c9db054fcb59bd0cac6751934f5b246aa067696 -SIZE (icinga-icingaweb2-v2.4.0_GH0.tar.gz) = 7177228 +TIMESTAMP = 1485119945 +SHA256 (icinga-icingaweb2-v2.4.1_GH0.tar.gz) = 27150d96a2172d0fa0c77389970052a1bf7aa6553494e80837f6699e96e24bc6 +SIZE (icinga-icingaweb2-v2.4.1_GH0.tar.gz) = 7176640 From owner-svn-ports-branches@freebsd.org Mon Jan 23 13:21:24 2017 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 DDAB7CBC7C8; Mon, 23 Jan 2017 13:21:24 +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 ACFBCEE9; Mon, 23 Jan 2017 13:21:24 +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 v0NDLNpM024502; Mon, 23 Jan 2017 13:21:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0NDLNPb024500; Mon, 23 Jan 2017 13:21:23 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201701231321.v0NDLNPb024500@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 23 Jan 2017 13:21:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432215 - in branches/2017Q1/devel/py-flake8: . 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: Mon, 23 Jan 2017 13:21:25 -0000 Author: amdmi3 Date: Mon Jan 23 13:21:23 2017 New Revision: 432215 URL: https://svnweb.freebsd.org/changeset/ports/432215 Log: MFH: r431942 - Relax dependency version requirement for pyflakes, fixing the runtime failure: The 'pyflakes<1.1,>=0.8.1' distribution was not found and is required by flake8 - Update WWW PR: 213960 Submitted by: pete@nomadlogic.org Approved by: maintainer timeout (wg, 5 weeks) Approved by: ports-secteam (with hat) Added: branches/2017Q1/devel/py-flake8/files/ - copied from r431942, head/devel/py-flake8/files/ Modified: branches/2017Q1/devel/py-flake8/Makefile branches/2017Q1/devel/py-flake8/pkg-descr Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/devel/py-flake8/Makefile ============================================================================== --- branches/2017Q1/devel/py-flake8/Makefile Mon Jan 23 13:19:17 2017 (r432214) +++ branches/2017Q1/devel/py-flake8/Makefile Mon Jan 23 13:21:23 2017 (r432215) @@ -3,6 +3,7 @@ PORTNAME= flake8 PORTVERSION= 2.5.4 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: branches/2017Q1/devel/py-flake8/pkg-descr ============================================================================== --- branches/2017Q1/devel/py-flake8/pkg-descr Mon Jan 23 13:19:17 2017 (r432214) +++ branches/2017Q1/devel/py-flake8/pkg-descr Mon Jan 23 13:21:23 2017 (r432215) @@ -8,4 +8,4 @@ Flake8 runs all tools by launching the s and PyFlakes extended options and just uses defaults. It displays the warnings in a per-file, merged output. -WWW: https://bitbucket.org/tarek/flake8 +WWW: https://gitlab.com/pycqa/flake8 From owner-svn-ports-branches@freebsd.org Mon Jan 23 16:02:40 2017 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 EA94DCBE54A; Mon, 23 Jan 2017 16:02:40 +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 A012C1B9; Mon, 23 Jan 2017 16:02:40 +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 v0NG2d5Y094949; Mon, 23 Jan 2017 16:02:39 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0NG2dKd094946; Mon, 23 Jan 2017 16:02:39 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201701231602.v0NG2dKd094946@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Mon, 23 Jan 2017 16:02:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432241 - branches/2017Q1/security/libgcrypt 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, 23 Jan 2017 16:02:41 -0000 Author: cpm Date: Mon Jan 23 16:02:39 2017 New Revision: 432241 URL: https://svnweb.freebsd.org/changeset/ports/432241 Log: MFH: r432213 security/libgcrypt: update to 1.7.6 Noteworthy changes in version 1.7.6 * Bug fixes: - Fix AES CTR self-check detected failure in the SSSE3 based implementation. - Remove gratuitous select before the getrandom syscall. PR: 216305 Exp-run by: antoine Approved by: ports-secteam (feld) Modified: branches/2017Q1/security/libgcrypt/Makefile branches/2017Q1/security/libgcrypt/distinfo branches/2017Q1/security/libgcrypt/pkg-plist Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/security/libgcrypt/Makefile ============================================================================== --- branches/2017Q1/security/libgcrypt/Makefile Mon Jan 23 15:52:00 2017 (r432240) +++ branches/2017Q1/security/libgcrypt/Makefile Mon Jan 23 16:02:39 2017 (r432241) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libgcrypt -PORTVERSION= 1.7.5 +PORTVERSION= 1.7.6 CATEGORIES= security MASTER_SITES= GNUPG Modified: branches/2017Q1/security/libgcrypt/distinfo ============================================================================== --- branches/2017Q1/security/libgcrypt/distinfo Mon Jan 23 15:52:00 2017 (r432240) +++ branches/2017Q1/security/libgcrypt/distinfo Mon Jan 23 16:02:39 2017 (r432241) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481866213 -SHA256 (libgcrypt-1.7.5.tar.bz2) = d1fea4128beef2bb30a470af6bafabccc503ced350534fb9dd8f5a53ffbae800 -SIZE (libgcrypt-1.7.5.tar.bz2) = 2883968 +TIMESTAMP = 1485172752 +SHA256 (libgcrypt-1.7.6.tar.bz2) = 626aafee84af9d2ce253d2c143dc1c0902dda045780cc241f39970fc60be05bc +SIZE (libgcrypt-1.7.6.tar.bz2) = 2897695 Modified: branches/2017Q1/security/libgcrypt/pkg-plist ============================================================================== --- branches/2017Q1/security/libgcrypt/pkg-plist Mon Jan 23 15:52:00 2017 (r432240) +++ branches/2017Q1/security/libgcrypt/pkg-plist Mon Jan 23 16:02:39 2017 (r432241) @@ -6,6 +6,6 @@ include/gcrypt.h lib/libgcrypt.a lib/libgcrypt.so lib/libgcrypt.so.20 -lib/libgcrypt.so.20.1.5 +lib/libgcrypt.so.20.1.6 man/man1/hmac256.1.gz share/aclocal/libgcrypt.m4 From owner-svn-ports-branches@freebsd.org Mon Jan 23 16:14:18 2017 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 3765BCBEC25; Mon, 23 Jan 2017 16:14:18 +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 EFFE9D41; Mon, 23 Jan 2017 16:14:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0NGEH6C099323; Mon, 23 Jan 2017 16:14:17 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0NGEGA7099321; Mon, 23 Jan 2017 16:14:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701231614.v0NGEGA7099321@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 23 Jan 2017 16:14:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432242 - in branches/2017Q1/multimedia: mencoder mplayer 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, 23 Jan 2017 16:14:18 -0000 Author: jbeich Date: Mon Jan 23 16:14:16 2017 New Revision: 432242 URL: https://svnweb.freebsd.org/changeset/ports/432242 Log: MFH: r432240 multimedia/mplayer: lift BROKEN after r429960 Approved by: ports-secteam blanket Modified: branches/2017Q1/multimedia/mencoder/Makefile branches/2017Q1/multimedia/mplayer/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/multimedia/mencoder/Makefile ============================================================================== --- branches/2017Q1/multimedia/mencoder/Makefile Mon Jan 23 16:02:39 2017 (r432241) +++ branches/2017Q1/multimedia/mencoder/Makefile Mon Jan 23 16:14:16 2017 (r432242) @@ -80,8 +80,6 @@ ALL_TARGET= mencoder .include "${.CURDIR}/../mplayer/Makefile.options" -BROKEN_aarch64= Fails to compile: error: invalid operand for instruction - pre-everything:: @${ECHO_MSG} "N - O - T - E" @${ECHO_MSG} "" Modified: branches/2017Q1/multimedia/mplayer/Makefile ============================================================================== --- branches/2017Q1/multimedia/mplayer/Makefile Mon Jan 23 16:02:39 2017 (r432241) +++ branches/2017Q1/multimedia/mplayer/Makefile Mon Jan 23 16:14:16 2017 (r432242) @@ -67,9 +67,6 @@ CONFIGURE_ARGS+= --disable-arts \ .include "${.CURDIR}/../../multimedia/mplayer/Makefile.options" -BROKEN_armv6= Fails to compile: Error: garbage following instruction -- vmov s16,SCALE -BROKEN_aarch64= Fails to compile: error: invalid operand for instruction - pre-everything:: @${ECHO_MSG} "N - O - T - E" @${ECHO_MSG} "" From owner-svn-ports-branches@freebsd.org Mon Jan 23 16:48:24 2017 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 E4C7BCBD59C; Mon, 23 Jan 2017 16:48:24 +0000 (UTC) (envelope-from tz@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 9B9D6907; Mon, 23 Jan 2017 16:48:24 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0NGmNOM012480; Mon, 23 Jan 2017 16:48:23 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0NGmNtM012477; Mon, 23 Jan 2017 16:48:23 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201701231648.v0NGmNtM012477@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Mon, 23 Jan 2017 16:48:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432250 - in branches/2017Q1: databases/php70-interbase lang/php70 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, 23 Jan 2017 16:48:25 -0000 Author: tz Date: Mon Jan 23 16:48:23 2017 New Revision: 432250 URL: https://svnweb.freebsd.org/changeset/ports/432250 Log: MFH: r431941 Update PHP 7 from 7.0.14 to 7.0.15 Changelog: http://www.php.net/ChangeLog-7.php#7.0.15 PR: 216210 Submitted by: Jochen Neumeister Security: https://vuxml.freebsd.org/freebsd/709e025a-de8b-11e6-a9a5-b499baebfeaf.html Approved by: ports-secteam (junovitch) Modified: branches/2017Q1/databases/php70-interbase/Makefile branches/2017Q1/lang/php70/Makefile branches/2017Q1/lang/php70/distinfo Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/databases/php70-interbase/Makefile ============================================================================== --- branches/2017Q1/databases/php70-interbase/Makefile Mon Jan 23 16:40:43 2017 (r432249) +++ branches/2017Q1/databases/php70-interbase/Makefile Mon Jan 23 16:48:23 2017 (r432250) @@ -5,8 +5,6 @@ CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php70 -PORTREVISION= 1 - PKGNAMESUFFIX= -interbase .include "${MASTERDIR}/Makefile" Modified: branches/2017Q1/lang/php70/Makefile ============================================================================== --- branches/2017Q1/lang/php70/Makefile Mon Jan 23 16:40:43 2017 (r432249) +++ branches/2017Q1/lang/php70/Makefile Mon Jan 23 16:48:23 2017 (r432250) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php70 -PORTVERSION= 7.0.14 +PORTVERSION= 7.0.15 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: branches/2017Q1/lang/php70/distinfo ============================================================================== --- branches/2017Q1/lang/php70/distinfo Mon Jan 23 16:40:43 2017 (r432249) +++ branches/2017Q1/lang/php70/distinfo Mon Jan 23 16:48:23 2017 (r432250) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481099651 -SHA256 (php-7.0.14.tar.xz) = 0f1dff6392a1cc2ed126b9695f580a2ed77eb09d2c23b41cabfb41e6f27a8c89 -SIZE (php-7.0.14.tar.xz) = 12534712 +TIMESTAMP = 1484838674 +SHA256 (php-7.0.15.tar.xz) = 300364d57fc4a6176ff7d52d390ee870ab6e30df121026649f8e7e0b9657fe93 +SIZE (php-7.0.15.tar.xz) = 12575116 From owner-svn-ports-branches@freebsd.org Mon Jan 23 17:54:31 2017 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 DDC9CCBEEEC; Mon, 23 Jan 2017 17:54:31 +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 B8840D4E; Mon, 23 Jan 2017 17:54:31 +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 v0NHsUHK042081; Mon, 23 Jan 2017 17:54:30 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0NHsULD042078; Mon, 23 Jan 2017 17:54:30 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201701231754.v0NHsULD042078@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 23 Jan 2017 17:54:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432262 - branches/2017Q1/sysutils/intel-nvmupdate 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, 23 Jan 2017 17:54:32 -0000 Author: swills Date: Mon Jan 23 17:54:30 2017 New Revision: 432262 URL: https://svnweb.freebsd.org/changeset/ports/432262 Log: MFH: r432261 sysutils/intel-nvmupdate: Update to 5.05, fix security bug Submitted by: kozlov.sergey.404@gmail.com (maintainer) Reviewed by: sbruno Security: a4b7def1-e165-11e6-9d84-90e2ba9881c8 Sponsored by: Intel Differential Revision: https://reviews.freebsd.org/D9121 Approved by: ports-secteam(swills,implicit) Modified: branches/2017Q1/sysutils/intel-nvmupdate/Makefile branches/2017Q1/sysutils/intel-nvmupdate/distinfo branches/2017Q1/sysutils/intel-nvmupdate/pkg-plist Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/sysutils/intel-nvmupdate/Makefile ============================================================================== --- branches/2017Q1/sysutils/intel-nvmupdate/Makefile Mon Jan 23 17:53:23 2017 (r432261) +++ branches/2017Q1/sysutils/intel-nvmupdate/Makefile Mon Jan 23 17:54:30 2017 (r432262) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nvmupdate -DISTVERSION= 5_04 +DISTVERSION= 5_05 CATEGORIES= sysutils MASTER_SITES= https://downloadmirror.intel.com/${MASTER_SITE_SUBDIR}/ \ http://downloadmirror.intel.com/${MASTER_SITE_SUBDIR}/ Modified: branches/2017Q1/sysutils/intel-nvmupdate/distinfo ============================================================================== --- branches/2017Q1/sysutils/intel-nvmupdate/distinfo Mon Jan 23 17:53:23 2017 (r432261) +++ branches/2017Q1/sysutils/intel-nvmupdate/distinfo Mon Jan 23 17:54:30 2017 (r432262) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464607520 -SHA256 (XL710_NVMUpdatePackage_v5_04_FreeBSD.tar.gz) = 72df3027dd6663f007c5e428e84ca476450c4e65bc9ae8bcc099cf21dfa042d9 -SIZE (XL710_NVMUpdatePackage_v5_04_FreeBSD.tar.gz) = 25316740 +TIMESTAMP = 1484048368 +SHA256 (XL710_NVMUpdatePackage_v5_05_FreeBSD.tar.gz) = 19b7df9cb7f1470d88cbc2564fb51ae312749382845a3b608d9341ab18814b93 +SIZE (XL710_NVMUpdatePackage_v5_05_FreeBSD.tar.gz) = 25312539 Modified: branches/2017Q1/sysutils/intel-nvmupdate/pkg-plist ============================================================================== --- branches/2017Q1/sysutils/intel-nvmupdate/pkg-plist Mon Jan 23 17:53:23 2017 (r432261) +++ branches/2017Q1/sysutils/intel-nvmupdate/pkg-plist Mon Jan 23 17:54:30 2017 (r432262) @@ -1,8 +1,8 @@ intel-nvmupdate/AXX1P40FRTIOM_4p42_CFGID4p0_80001934.bin -intel-nvmupdate/AXX1P40FRTIOM_5p04_CFGID4p0.bin +intel-nvmupdate/AXX1P40FRTIOM_5p05_CFGID4p0.bin intel-nvmupdate/AXX1P40FRTIOM_gpio.txt intel-nvmupdate/AXX2P40FRTIOM_4p42_CFGID4p5_80001935.bin -intel-nvmupdate/AXX2P40FRTIOM_5p04_CFGID4p5.bin +intel-nvmupdate/AXX2P40FRTIOM_5p05_CFGID4p5.bin intel-nvmupdate/AXX2P40FRTIOM_gpio.txt intel-nvmupdate/Intel_Proprietary_License.pdf intel-nvmupdate/Intel_firmware_license.txt @@ -11,16 +11,16 @@ intel-nvmupdate/PF_Alloc_1589.txt intel-nvmupdate/PF_Alloc_LR4.txt intel-nvmupdate/PF_Alloc_WOL_DIS.txt intel-nvmupdate/X710DA2_4p42_CFGID7p2_OEMGEN.bin -intel-nvmupdate/X710DA2_5p04_CFGID7p2_OEMGEN.bin +intel-nvmupdate/X710DA2_5p05_CFGID7p2_OEMGEN.bin intel-nvmupdate/X710DA4FH_4p42_CFGID7p2_OEMGEN.bin -intel-nvmupdate/X710DA4FH_5p04_CFGID7p2_OEMGEN.bin +intel-nvmupdate/X710DA4FH_5p05_CFGID7p2_OEMGEN.bin intel-nvmupdate/X710DA4_4p42_CFGID7p2_OEMGEN.bin -intel-nvmupdate/X710DA4_5p04_CFGID7p2_OEMGEN.bin +intel-nvmupdate/X710DA4_5p05_CFGID7p2_OEMGEN.bin intel-nvmupdate/XL710QDA1_4p42_CFGID4p0_OEMGEN.bin -intel-nvmupdate/XL710QDA1_5p04_CFGID4p0_OEMGEN.bin +intel-nvmupdate/XL710QDA1_5p05_CFGID4p0_OEMGEN.bin intel-nvmupdate/XL710QDA1_gpio.txt intel-nvmupdate/XL710QDA2_4p42_CFGID4p5_OEMGEN.bin -intel-nvmupdate/XL710QDA2_5p04_CFGID4p5_OEMGEN.bin +intel-nvmupdate/XL710QDA2_5p05_CFGID4p5_OEMGEN.bin intel-nvmupdate/XL710QDA2_gpio.txt intel-nvmupdate/XL710_4p42_KR_KR4_NCSI_CFGID2p0_Single.bin intel-nvmupdate/XL710_4p42_KR_KR4_NCSI_CFGID2p4_Dual.bin @@ -32,33 +32,33 @@ intel-nvmupdate/XL710_4p42_QSFP_NCSI_CFG intel-nvmupdate/XL710_4p42_QSFP_NCSI_CFGID4p5_Dual.bin intel-nvmupdate/XL710_4p42_SFI_MCTP_CFGID7p2_Quad.bin intel-nvmupdate/XL710_4p42_SFI_NCSI_CFGID7p2_Quad.bin -intel-nvmupdate/XL710_5p04_BASET_X557_NCSI_CFGID10p01_Quad.bin -intel-nvmupdate/XL710_5p04_KR_KR4_NCSI_CFGID2p0_Single.bin -intel-nvmupdate/XL710_5p04_KR_KR4_NCSI_CFGID2p4_Dual.bin -intel-nvmupdate/XL710_5p04_KR_KX_NCSI_CFGID3p0_Quad.bin -intel-nvmupdate/XL710_5p04_KR_KX_NCSI_CFGID3p2_Quad.bin -intel-nvmupdate/XL710_5p04_KR_KX_NCSI_CFGID3p8_Quad.bin -intel-nvmupdate/XL710_5p04_KX_KX4_NCSI_CFGID1p0_Dual.bin -intel-nvmupdate/XL710_5p04_QSFP_Breakout_MCTP_CFGID6p0_Quad.bin -intel-nvmupdate/XL710_5p04_QSFP_Breakout_MCTP_CFGID6p4_Quad.bin -intel-nvmupdate/XL710_5p04_QSFP_Breakout_NCSI_CFGID6p0_Quad.bin -intel-nvmupdate/XL710_5p04_QSFP_MCTP_CFGID4p0_Single.bin -intel-nvmupdate/XL710_5p04_QSFP_MCTP_CFGID4p5_Dual.bin -intel-nvmupdate/XL710_5p04_QSFP_NCSI_CFGID4p0_Single.bin -intel-nvmupdate/XL710_5p04_QSFP_NCSI_CFGID4p5_Dual.bin -intel-nvmupdate/XL710_5p04_SFI_MCTP_CFGID7p2_Quad.bin -intel-nvmupdate/XL710_5p04_SFI_NCSI_CFGID7p2_Quad.bin -intel-nvmupdate/XL710_5p04_XLAUI_NCSI_CFGID2p61_Dual.bin +intel-nvmupdate/XL710_5p05_BASET_X557_NCSI_CFGID10p01_Quad.bin +intel-nvmupdate/XL710_5p05_KR_KR4_NCSI_CFGID2p0_Single.bin +intel-nvmupdate/XL710_5p05_KR_KR4_NCSI_CFGID2p4_Dual.bin +intel-nvmupdate/XL710_5p05_KR_KX_NCSI_CFGID3p0_Quad.bin +intel-nvmupdate/XL710_5p05_KR_KX_NCSI_CFGID3p2_Quad.bin +intel-nvmupdate/XL710_5p05_KR_KX_NCSI_CFGID3p8_Quad.bin +intel-nvmupdate/XL710_5p05_KX_KX4_NCSI_CFGID1p0_Dual.bin +intel-nvmupdate/XL710_5p05_QSFP_Breakout_MCTP_CFGID6p0_Quad.bin +intel-nvmupdate/XL710_5p05_QSFP_Breakout_MCTP_CFGID6p4_Quad.bin +intel-nvmupdate/XL710_5p05_QSFP_Breakout_NCSI_CFGID6p0_Quad.bin +intel-nvmupdate/XL710_5p05_QSFP_MCTP_CFGID4p0_Single.bin +intel-nvmupdate/XL710_5p05_QSFP_MCTP_CFGID4p5_Dual.bin +intel-nvmupdate/XL710_5p05_QSFP_NCSI_CFGID4p0_Single.bin +intel-nvmupdate/XL710_5p05_QSFP_NCSI_CFGID4p5_Dual.bin +intel-nvmupdate/XL710_5p05_SFI_MCTP_CFGID7p2_Quad.bin +intel-nvmupdate/XL710_5p05_SFI_NCSI_CFGID7p2_Quad.bin +intel-nvmupdate/XL710_5p05_XLAUI_NCSI_CFGID2p61_Dual.bin intel-nvmupdate/XL710_X710_4p42_KR_KX_NCSI_CFGID0p5_Dual.bin intel-nvmupdate/XL710_X710_4p42_SFI_Backplane_MCTP_CFGID7p2_Dual.bin intel-nvmupdate/XL710_X710_4p42_SFI_MCTP_CFGID7p2_Dual.bin intel-nvmupdate/XL710_X710_4p42_SFI_NCSI_CFGID7p2_Dual.bin -intel-nvmupdate/XL710_X710_5p04_KR_KX_NCSI_CFGID0p5_Dual.bin -intel-nvmupdate/XL710_X710_5p04_SFI_Backplane_MCTP_CFGID7p0_Quad.bin -intel-nvmupdate/XL710_X710_5p04_SFI_Backplane_MCTP_CFGID7p2_Dual.bin -intel-nvmupdate/XL710_X710_5p04_SFI_Backplane_MCTP_CFGID7p2_Quad.bin -intel-nvmupdate/XL710_X710_5p04_SFI_MCTP_CFGID7p2_Dual.bin -intel-nvmupdate/XL710_X710_5p04_SFI_NCSI_CFGID7p2_Dual.bin +intel-nvmupdate/XL710_X710_5p05_KR_KX_NCSI_CFGID0p5_Dual.bin +intel-nvmupdate/XL710_X710_5p05_SFI_Backplane_MCTP_CFGID7p0_Quad.bin +intel-nvmupdate/XL710_X710_5p05_SFI_Backplane_MCTP_CFGID7p2_Dual.bin +intel-nvmupdate/XL710_X710_5p05_SFI_Backplane_MCTP_CFGID7p2_Quad.bin +intel-nvmupdate/XL710_X710_5p05_SFI_MCTP_CFGID7p2_Dual.bin +intel-nvmupdate/XL710_X710_5p05_SFI_NCSI_CFGID7p2_Dual.bin intel-nvmupdate/file_license.txt intel-nvmupdate/license.pdf intel-nvmupdate/license.txt From owner-svn-ports-branches@freebsd.org Mon Jan 23 20:40:09 2017 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 69DDACBE12B; Mon, 23 Jan 2017 20:40:09 +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 34A52F4E; Mon, 23 Jan 2017 20:40:09 +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 v0NKe8d8010784; Mon, 23 Jan 2017 20:40:08 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0NKe89A010783; Mon, 23 Jan 2017 20:40:08 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201701232040.v0NKe89A010783@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Mon, 23 Jan 2017 20:40:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432289 - in branches/2017Q1/graphics/py-poppler-qt4: . 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: Mon, 23 Jan 2017 20:40:09 -0000 Author: tcberner Date: Mon Jan 23 20:40:08 2017 New Revision: 432289 URL: https://svnweb.freebsd.org/changeset/ports/432289 Log: MFH: r432089 Fix graphics/py-poppler-qt4: fails to build with clang 4.0 PyList_SET_ITEM() is supposed to be void, but as a macro it's an expression and has a pointer value. Clang 4.0 trips on the bogus pointer comparison; given the comparison, it should be PyList_SetItem() which returns -1 on failure. PR: 216228 Approved by: portmgr blanket, rakuco (mentor) Approved by: ports-secteam (junovitch), rakuco (mentor) Added: branches/2017Q1/graphics/py-poppler-qt4/files/ - copied from r432089, head/graphics/py-poppler-qt4/files/ Modified: branches/2017Q1/graphics/py-poppler-qt4/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/graphics/py-poppler-qt4/Makefile ============================================================================== --- branches/2017Q1/graphics/py-poppler-qt4/Makefile Mon Jan 23 20:27:07 2017 (r432288) +++ branches/2017Q1/graphics/py-poppler-qt4/Makefile Mon Jan 23 20:40:08 2017 (r432289) @@ -2,7 +2,7 @@ PORTNAME= poppler-qt4 PORTVERSION= 0.18.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} From owner-svn-ports-branches@freebsd.org Mon Jan 23 20:41:49 2017 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 87366CBE1E8; Mon, 23 Jan 2017 20:41:49 +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 5655632B; Mon, 23 Jan 2017 20:41:49 +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 v0NKfmwQ013832; Mon, 23 Jan 2017 20:41:48 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0NKfmIO013831; Mon, 23 Jan 2017 20:41:48 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201701232041.v0NKfmIO013831@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Mon, 23 Jan 2017 20:41:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432290 - in branches/2017Q1/mail/pear-Mail_Queue: . 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: Mon, 23 Jan 2017 20:41:49 -0000 Author: tcberner Date: Mon Jan 23 20:41:48 2017 New Revision: 432290 URL: https://svnweb.freebsd.org/changeset/ports/432290 Log: MFH: r432211 mail/pear-Mail_Queue: overloading isError static mismatch Since devel/pear was upgraded to 1.10.1, mail/pear-Mail_Queue was broken and could not be used, giving the following error: PHP Fatal error: Cannot make static method PEAR::isError() non static in class Mail_Queue in /usr/local/share/pear/Mail/Queue.php on line 126 Upstream bug report: http://pear.php.net/bugs/bug.php?id=20976 PR: 215325 Submitted by: ml@netfence.it Reported by: ml@netfence.it Approved by: Jochen Neumeister (maintainer), rakuco (mentor) Approved by: ports-secteam (feld), rakuco (mentor) Added: branches/2017Q1/mail/pear-Mail_Queue/files/ - copied from r432211, head/mail/pear-Mail_Queue/files/ Modified: branches/2017Q1/mail/pear-Mail_Queue/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/mail/pear-Mail_Queue/Makefile ============================================================================== --- branches/2017Q1/mail/pear-Mail_Queue/Makefile Mon Jan 23 20:40:08 2017 (r432289) +++ branches/2017Q1/mail/pear-Mail_Queue/Makefile Mon Jan 23 20:41:48 2017 (r432290) @@ -3,6 +3,7 @@ PORTNAME= Mail_Queue PORTVERSION= 1.2.7 +PORTREVISION= 1 CATEGORIES= mail www pear MAINTAINER= joneum@bsdproject.de From owner-svn-ports-branches@freebsd.org Tue Jan 24 05:27:03 2017 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 19899CBF2DE; Tue, 24 Jan 2017 05:27:03 +0000 (UTC) (envelope-from olivierd@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 CF2A7F24; Tue, 24 Jan 2017 05:27:02 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0O5R1rN028777; Tue, 24 Jan 2017 05:27:01 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0O5R1nj028773; Tue, 24 Jan 2017 05:27:01 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201701240527.v0O5R1nj028773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Tue, 24 Jan 2017 05:27:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432312 - in branches/2017Q1/textproc/extract_url: . 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, 24 Jan 2017 05:27:03 -0000 Author: olivierd Date: Tue Jan 24 05:27:01 2017 New Revision: 432312 URL: https://svnweb.freebsd.org/changeset/ports/432312 Log: MFH: r432249 - Update to 1.6.1 - Switch to GitHub host - Remove GETOPT_LONG option - Pass maintainership to submitter PR: 216180 Submitted by: Danilo G. Baio Approved by: portmgr (feld@) Added: branches/2017Q1/textproc/extract_url/files/patch-extract__url.pl - copied unchanged from r432249, head/textproc/extract_url/files/patch-extract__url.pl Deleted: branches/2017Q1/textproc/extract_url/files/extract_urlview Modified: branches/2017Q1/textproc/extract_url/Makefile branches/2017Q1/textproc/extract_url/distinfo branches/2017Q1/textproc/extract_url/files/pkg-message.in Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/textproc/extract_url/Makefile ============================================================================== --- branches/2017Q1/textproc/extract_url/Makefile Tue Jan 24 03:12:09 2017 (r432311) +++ branches/2017Q1/textproc/extract_url/Makefile Tue Jan 24 05:27:01 2017 (r432312) @@ -2,20 +2,16 @@ # $FreeBSD$ PORTNAME= extract_url -PORTVERSION= 1.5.8 -PORTREVISION= 1 +PORTVERSION= 1.6.1 +DISTVERSIONPREFIX= v CATEGORIES= textproc -MASTER_SITES= GOOGLE_CODE -PROJECTHOST= extracturl -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dbaio@bsd.com.br COMMENT= Perl script that extracts URLs from email in MIME or plain text format LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= Unfetchable (google code has gone away) - BUILD_DEPENDS= p5-MIME-Tools>=0:mail/p5-MIME-Tools \ p5-HTML-Parser>=0:www/p5-HTML-Parser RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -25,26 +21,26 @@ MAKE_ARGS= all prefix=${PREFIX} man_pref SUB_FILES= pkg-message NO_ARCH= yes -WRKSRC= ${WRKDIR}/${PORTNAME} +USE_GITHUB= yes +GH_ACCOUNT= m3m0ryh0l3 +GH_PROJECT= extracturl PLIST_FILES= bin/extract_url \ - etc/extract_urlview.sample \ + share/extract_url/extract_urlview.sample \ man/man1/extract_url.1.gz PORTDOCS= AUTHORS NEWS README -OPTIONS_DEFINE= DOCS GETOPT_LONG URI_FIND +OPTIONS_DEFINE= DOCS URI_FIND OPTIONS_RADIO= URL_SELECTOR OPTIONS_RADIO_URL_SELECTOR= CURSES_UI URLVIEW -OPTIONS_DEFAULT= CURSES_UI GETOPT_LONG URI_FIND +OPTIONS_DEFAULT= CURSES_UI URI_FIND OPTIONS_SUB= yes CURSES_UI_DESC= Allows it to fully replace urlview -GETOPT_LONG_DESC= Recognizes long options --version and --list URI_FIND_DESC= Recognizes more exotic URL variations in plain text URLVIEW_DESC= Uses urlview for the URL selector menu CURSES_UI_RUN_DEPENDS= p5-Curses-UI>=0:devel/p5-Curses-UI -GETOPT_LONG_RUN_DEPENDS=p5-Getopt-Long>=0:devel/p5-Getopt-Long URLVIEW_RUN_DEPENDS= urlview>=0:textproc/urlview URI_FIND_RUN_DEPENDS= p5-URI-Find>=0:textproc/p5-URI-Find @@ -53,8 +49,9 @@ post-patch: ${WRKSRC}/${MAKEFILE} post-install: - ${INSTALL_DATA} ${FILESDIR}/${PORTNAME}view \ - ${STAGEDIR}${PREFIX}/etc/${PORTNAME}view.sample + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}view.sample \ + ${STAGEDIR}${DATADIR}/ post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: branches/2017Q1/textproc/extract_url/distinfo ============================================================================== --- branches/2017Q1/textproc/extract_url/distinfo Tue Jan 24 03:12:09 2017 (r432311) +++ branches/2017Q1/textproc/extract_url/distinfo Tue Jan 24 05:27:01 2017 (r432312) @@ -1,2 +1,3 @@ -SHA256 (extract_url-1.5.8.tar.gz) = 58eac907cb926deba74ab81e7503a1055fd3cbe20952f011d8e6b75da12d6bcc -SIZE (extract_url-1.5.8.tar.gz) = 13861 +TIMESTAMP = 1485089324 +SHA256 (m3m0ryh0l3-extracturl-v1.6.1_GH0.tar.gz) = 6ce3a977477cce6c7c8355500db4ef660d5b22118df6534d3ab022124c62a393 +SIZE (m3m0ryh0l3-extracturl-v1.6.1_GH0.tar.gz) = 16192 Copied: branches/2017Q1/textproc/extract_url/files/patch-extract__url.pl (from r432249, head/textproc/extract_url/files/patch-extract__url.pl) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/textproc/extract_url/files/patch-extract__url.pl Tue Jan 24 05:27:01 2017 (r432312, copy of r432249, head/textproc/extract_url/files/patch-extract__url.pl) @@ -0,0 +1,22 @@ +--- extract_url.pl.orig 2017-01-18 14:59:52 UTC ++++ extract_url.pl +@@ -54,18 +54,7 @@ sub VERSION_MESSAGE { + + my $term_cols = 80; + my ($term_rows, $term_wpix, $term_hpix); +-if (eval "use Term::Readkey") { +- ($term_cols, $term_rows, $term_wpix, $term_hpix) = GetTerminalSize(); +-} else { +- require 'sys/ioctl.ph'; +- if (defined &TIOCGWINSZ and open(TTY, "+ 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 CA9D6CBF919; Tue, 24 Jan 2017 11:48:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A3028F3; Tue, 24 Jan 2017 11:48:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0OBm785081901; Tue, 24 Jan 2017 11:48:07 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0OBm7Pw081900; Tue, 24 Jan 2017 11:48:07 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701241148.v0OBm7Pw081900@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 24 Jan 2017 11:48:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432323 - branches/2017Q1/print/texlive-texmf 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, 24 Jan 2017 11:48:08 -0000 Author: jbeich Date: Tue Jan 24 11:48:07 2017 New Revision: 432323 URL: https://svnweb.freebsd.org/changeset/ports/432323 Log: MFH: r432322 print/texlive-texmf: unbreak on aarch64 on real hardware =================================================== ===> Building package for texlive-texmf-20150523_3 pkg-static: Warning: @exec is deprecated, please use @[pre|post][un]exec ====>> Killing timed out build after 3600 seconds ====>> Cleaning up wrkdir ===> Cleaning for texlive-texmf-20150523_3 pkg-static: lstat(/wrkdirs/usr/ports/print/texlive-texmf/work/stage/usr/local/share/texmf-dist/fonts/type1/public/pl/plti7.pfm): No such file or directory pkg-static: lstat(/wrkdirs/usr/ports/print/texlive-texmf/work/stage/usr/local/share/texmf-dist/fonts/type1/public/pl/plti8.pfb): No such file or directory pkg-static: lstat(/wrkdirs/usr/ports/print/texlive-texmf/work/stage/usr/local/share/texmf-dist/fonts/type1/public/[...] Reported by: pkg-fallout (runaway_proces) Approved by: portmgr blanket (unblocking 172 ports) Approved by: ports-secteam blanket Modified: branches/2017Q1/print/texlive-texmf/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/print/texlive-texmf/Makefile ============================================================================== --- branches/2017Q1/print/texlive-texmf/Makefile Tue Jan 24 11:44:51 2017 (r432322) +++ branches/2017Q1/print/texlive-texmf/Makefile Tue Jan 24 11:48:07 2017 (r432323) @@ -24,6 +24,7 @@ TEXHASHDIRS= ${TEXMFDIR} ${TEXMFDISTDIR} NO_BUILD= yes NO_WRKSUBDIR= yes NO_ARCH= yes +PKG_CREATE_VERBOSE= yes EXCLUDE_FILES= \*/doc/man \ texmf-dist/ls-R \ From owner-svn-ports-branches@freebsd.org Tue Jan 24 15:33:03 2017 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 A33D9CC0189; Tue, 24 Jan 2017 15:33:03 +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 63D2D137A; Tue, 24 Jan 2017 15:33: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 v0OFX2Rc079745; Tue, 24 Jan 2017 15:33:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0OFX2US079740; Tue, 24 Jan 2017 15:33:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701241533.v0OFX2US079740@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 24 Jan 2017 15:33:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432349 - in branches/2017Q1/audio: pulseaudio pulseaudio-module-sndio pulseaudio/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, 24 Jan 2017 15:33:03 -0000 Author: jbeich Date: Tue Jan 24 15:33:01 2017 New Revision: 432349 URL: https://svnweb.freebsd.org/changeset/ports/432349 Log: MFH: r431892 r431893 audio/pulseaudio: update to 10.0 Changes: https://www.freedesktop.org/wiki/Software/PulseAudio/Notes/10.0/ ABI: https://abi-laboratory.pro/tracker/timeline/pulseaudio/ PR: 216255 Submitted by: lightside Approved by: ports-secteam (feld) Modified: branches/2017Q1/audio/pulseaudio-module-sndio/Makefile branches/2017Q1/audio/pulseaudio/Makefile branches/2017Q1/audio/pulseaudio/distinfo branches/2017Q1/audio/pulseaudio/files/patch-src_pulsecore_atomic.h branches/2017Q1/audio/pulseaudio/pkg-plist Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/audio/pulseaudio-module-sndio/Makefile ============================================================================== --- branches/2017Q1/audio/pulseaudio-module-sndio/Makefile Tue Jan 24 15:27:06 2017 (r432348) +++ branches/2017Q1/audio/pulseaudio-module-sndio/Makefile Tue Jan 24 15:33:01 2017 (r432349) @@ -3,6 +3,7 @@ PORTNAME= pulseaudio-module-sndio PORTVERSION= 9.0 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= t@tobik.me Modified: branches/2017Q1/audio/pulseaudio/Makefile ============================================================================== --- branches/2017Q1/audio/pulseaudio/Makefile Tue Jan 24 15:27:06 2017 (r432348) +++ branches/2017Q1/audio/pulseaudio/Makefile Tue Jan 24 15:33:01 2017 (r432349) @@ -5,8 +5,7 @@ # PORTREVISION bumps of depending ports. PORTNAME= pulseaudio -PORTVERSION= 9.0 -PORTREVISION= 3 +PORTVERSION= 10.0 CATEGORIES= audio MASTER_SITES= http://freedesktop.org/software/pulseaudio/releases/ @@ -19,7 +18,6 @@ LICENSE_FILE= ${WRKSRC}/LGPL LIB_DEPENDS= libsndfile.so:audio/libsndfile \ libfftw3.so:math/fftw3 \ libfftw3f.so:math/fftw3-float \ - libjson-c.so:devel/json-c \ libdbus-1.so:devel/dbus \ libltdl.so:devel/libltdl \ libck-connector.so:sysutils/consolekit Modified: branches/2017Q1/audio/pulseaudio/distinfo ============================================================================== --- branches/2017Q1/audio/pulseaudio/distinfo Tue Jan 24 15:27:06 2017 (r432348) +++ branches/2017Q1/audio/pulseaudio/distinfo Tue Jan 24 15:33:01 2017 (r432349) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466578411 -SHA256 (pulseaudio-9.0.tar.xz) = c3d3d66b827f18fbe903fe3df647013f09fc1e2191c035be1ee2d82a9e404686 -SIZE (pulseaudio-9.0.tar.xz) = 1537568 +TIMESTAMP = 1484711815 +SHA256 (pulseaudio-10.0.tar.xz) = a3186824de9f0d2095ded5d0d0db0405dc73133983c2fbb37291547e37462f57 +SIZE (pulseaudio-10.0.tar.xz) = 1608040 Modified: branches/2017Q1/audio/pulseaudio/files/patch-src_pulsecore_atomic.h ============================================================================== --- branches/2017Q1/audio/pulseaudio/files/patch-src_pulsecore_atomic.h Tue Jan 24 15:27:06 2017 (r432348) +++ branches/2017Q1/audio/pulseaudio/files/patch-src_pulsecore_atomic.h Tue Jan 24 15:33:01 2017 (r432349) @@ -1,4 +1,4 @@ ---- src/pulsecore/atomic.h.orig 2015-09-10 04:51:41 UTC +--- src/pulsecore/atomic.h.orig 2016-08-23 12:50:11 UTC +++ src/pulsecore/atomic.h @@ -185,39 +185,6 @@ static inline bool pa_atomic_ptr_cmpxchg #include @@ -20,7 +20,7 @@ - - return (v); -} --#elif defined(__sparc64__) +-#elif defined(__sparc__) && defined(__arch64__) -#define atomic_load_acq_64 atomic_load_acq_long -#define atomic_fetchadd_int atomic_add_int -#elif defined(__ia64__) Modified: branches/2017Q1/audio/pulseaudio/pkg-plist ============================================================================== --- branches/2017Q1/audio/pulseaudio/pkg-plist Tue Jan 24 15:27:06 2017 (r432348) +++ branches/2017Q1/audio/pulseaudio/pkg-plist Tue Jan 24 15:33:01 2017 (r432349) @@ -69,8 +69,9 @@ lib/libpulse-simple.so.0 lib/libpulse-simple.so.0.1.0 lib/libpulse.so lib/libpulse.so.0 -lib/libpulse.so.0.20.0 +lib/libpulse.so.0.20.1 %%AVAHI%%lib/pulse-%%PULSE_VERSION%%/modules/libavahi-wrap.so +lib/pulse-%%PULSE_VERSION%%/modules/module-allow-passthrough.so lib/pulse-%%PULSE_VERSION%%/modules/module-device-manager.so %%ALSA%%lib/pulse-%%PULSE_VERSION%%/modules/libalsa-util.so lib/pulse-%%PULSE_VERSION%%/modules/libcli.so @@ -231,6 +232,7 @@ man/man5/pulse-daemon.conf.5.gz %%ALSA%%share/pulseaudio/alsa-mixer/profile-sets/sb-omni-surround-5.1.conf %%ZSH%%share/zsh/site-functions/_pulseaudio share/locale/as/LC_MESSAGES/pulseaudio.mo +share/locale/be/LC_MESSAGES/pulseaudio.mo share/locale/bn_IN/LC_MESSAGES/pulseaudio.mo share/locale/ca/LC_MESSAGES/pulseaudio.mo share/locale/cs/LC_MESSAGES/pulseaudio.mo @@ -241,6 +243,7 @@ share/locale/es/LC_MESSAGES/pulseaudio.m share/locale/fi/LC_MESSAGES/pulseaudio.mo share/locale/fr/LC_MESSAGES/pulseaudio.mo share/locale/gu/LC_MESSAGES/pulseaudio.mo +share/locale/gl/LC_MESSAGES/pulseaudio.mo share/locale/he/LC_MESSAGES/pulseaudio.mo share/locale/hi/LC_MESSAGES/pulseaudio.mo share/locale/hu/LC_MESSAGES/pulseaudio.mo @@ -249,6 +252,7 @@ share/locale/it/LC_MESSAGES/pulseaudio.m share/locale/ja/LC_MESSAGES/pulseaudio.mo share/locale/kn/LC_MESSAGES/pulseaudio.mo share/locale/ko/LC_MESSAGES/pulseaudio.mo +share/locale/lt/LC_MESSAGES/pulseaudio.mo share/locale/ml/LC_MESSAGES/pulseaudio.mo share/locale/mr/LC_MESSAGES/pulseaudio.mo share/locale/nl/LC_MESSAGES/pulseaudio.mo From owner-svn-ports-branches@freebsd.org Tue Jan 24 16:42:44 2017 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 583D9CC0AD8; Tue, 24 Jan 2017 16:42:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D391C96; Tue, 24 Jan 2017 16:42:43 +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 v0OGgh5p009596; Tue, 24 Jan 2017 16:42:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0OGghDn009595; Tue, 24 Jan 2017 16:42:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701241642.v0OGghDn009595@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 24 Jan 2017 16:42:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432359 - branches/2017Q1/astro/gpsbabel/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, 24 Jan 2017 16:42:44 -0000 Author: jbeich Date: Tue Jan 24 16:42:42 2017 New Revision: 432359 URL: https://svnweb.freebsd.org/changeset/ports/432359 Log: MFH: r432358 astro/gpsbabel: unbreak with clang 4.0 bushnell.cc:138:36: error: ordered comparison between pointer and zero ('const char *' and 'int') for (t = bushnell_icons; t->icon > 0; t++) { ~~~~~~~ ^ ~ bushnell.cc:150:36: error: ordered comparison between pointer and zero ('const char *' and 'int') for (t = bushnell_icons; t->icon > 0; t++) { ~~~~~~~ ^ ~ PR: 216215 Submitted by: Oliver Heesakkers (maintainer) Approved by: ports-secteam blanket Added: branches/2017Q1/astro/gpsbabel/files/patch-bushnell.cc - copied unchanged from r432358, head/astro/gpsbabel/files/patch-bushnell.cc Modified: Directory Properties: branches/2017Q1/ (props changed) Copied: branches/2017Q1/astro/gpsbabel/files/patch-bushnell.cc (from r432358, head/astro/gpsbabel/files/patch-bushnell.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/astro/gpsbabel/files/patch-bushnell.cc Tue Jan 24 16:42:42 2017 (r432359, copy of r432358, head/astro/gpsbabel/files/patch-bushnell.cc) @@ -0,0 +1,22 @@ +https://github.com/gpsbabel/gpsbabel/issues/62 + +--- bushnell.cc.orig 2017-01-24 13:08:41 UTC ++++ bushnell.cc +@@ -135,7 +135,7 @@ bushnell_get_icon_from_name(QString name + name = "Waypoint"; + } + +- for (t = bushnell_icons; t->icon > 0; t++) { ++ for (t = bushnell_icons; t->icon != NULL; t++) { + if (0 == name.compare(t->icon, Qt::CaseInsensitive)) { + return t->symbol; + } +@@ -147,7 +147,7 @@ static const char* + bushnell_get_name_from_symbol(signed int s) + { + icon_mapping_t* t; +- for (t = bushnell_icons; t->icon > 0; t++) { ++ for (t = bushnell_icons; t->icon != NULL; t++) { + if (s == t->symbol) { + return t->icon; + } From owner-svn-ports-branches@freebsd.org Tue Jan 24 18:53:08 2017 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 98A55CC0D15; Tue, 24 Jan 2017 18:53:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67AD68BC; Tue, 24 Jan 2017 18:53:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0OIr7xg063705; Tue, 24 Jan 2017 18:53:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0OIr7Tw063704; Tue, 24 Jan 2017 18:53:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201701241853.v0OIr7Tw063704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 24 Jan 2017 18:53:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432374 - branches/2017Q1/lang/python36 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, 24 Jan 2017 18:53:08 -0000 Author: sunpoet Date: Tue Jan 24 18:53:07 2017 New Revision: 432374 URL: https://svnweb.freebsd.org/changeset/ports/432374 Log: MFH: r432373 Fix PLIST - While I'm here, sort PLIST PR: 216444 Reported by: Randy Approved by: ports-secteam (blanket) Modified: branches/2017Q1/lang/python36/pkg-plist Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/lang/python36/pkg-plist ============================================================================== --- branches/2017Q1/lang/python36/pkg-plist Tue Jan 24 18:42:57 2017 (r432373) +++ branches/2017Q1/lang/python36/pkg-plist Tue Jan 24 18:53:07 2017 (r432374) @@ -2,8 +2,8 @@ bin/2to3-%%XYDOT%% bin/idle%%XYDOT%% bin/pydoc%%XYDOT%% bin/python%%XYDOT%% -bin/pyvenv-%%XYDOT%% bin/python%%XYDOT%%-config +bin/pyvenv-%%XYDOT%% include/python%%XYDOT%%%%ABI%%/Python-ast.h include/python%%XYDOT%%%%ABI%%/Python.h include/python%%XYDOT%%%%ABI%%/abstract.h @@ -2693,7 +2693,7 @@ lib/python%%XYDOT%%/lib-dynload/select.s lib/python%%XYDOT%%/lib-dynload/syslog.so lib/python%%XYDOT%%/lib-dynload/termios.so lib/python%%XYDOT%%/lib-dynload/unicodedata.so -lib/python%%XYDOT%%/lib-dynload/xxlimited.so +%%NO_DEBUG%%lib/python%%XYDOT%%/lib-dynload/xxlimited.so lib/python%%XYDOT%%/lib-dynload/zlib.so lib/python%%XYDOT%%/lib2to3/Grammar.txt lib/python%%XYDOT%%/lib2to3/Grammar%%XYZDOT%%.final.0.pickle @@ -6659,5 +6659,5 @@ lib/python%%XYDOT%%/xmlrpc/client.py lib/python%%XYDOT%%/xmlrpc/server.py lib/python%%XYDOT%%/zipapp.py lib/python%%XYDOT%%/zipfile.py -man/man1/python%%XYDOT%%.1.gz libdata/pkgconfig/python-%%XYDOT%%.pc +man/man1/python%%XYDOT%%.1.gz From owner-svn-ports-branches@freebsd.org Tue Jan 24 22:33:00 2017 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 8CF82CBFE2A; Tue, 24 Jan 2017 22:33:00 +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 549273FA; Tue, 24 Jan 2017 22:33:00 +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 v0OMWxbI058507; Tue, 24 Jan 2017 22:32:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0OMWw68058499; Tue, 24 Jan 2017 22:32:58 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701242232.v0OMWw68058499@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 24 Jan 2017 22:32:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432401 - in branches/2017Q1/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, 24 Jan 2017 22:33:00 -0000 Author: jbeich Date: Tue Jan 24 22:32:58 2017 New Revision: 432401 URL: https://svnweb.freebsd.org/changeset/ports/432401 Log: MFH: r431859 r432351 r432400 www/firefox-esr: update to 45.7.0 (rc1) Changes: https://www.mozilla.org/firefox/45.7.0/releasenotes/ Changes: https://hg.mozilla.org/releases/mozilla-esr45/shortlog Security: e60169c4-aa86-46b0-8ae2-0d81f683df09 Approved by: ports-secteam (feld) Deleted: branches/2017Q1/www/firefox-esr/files/patch-bug1290037 branches/2017Q1/www/libxul/files/patch-bug1290037 Modified: branches/2017Q1/www/firefox-esr-i18n/Makefile branches/2017Q1/www/firefox-esr-i18n/distinfo branches/2017Q1/www/firefox-esr/Makefile branches/2017Q1/www/firefox-esr/distinfo branches/2017Q1/www/libxul/Makefile branches/2017Q1/www/libxul/distinfo branches/2017Q1/www/linux-firefox/Makefile branches/2017Q1/www/linux-firefox/distinfo Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/www/firefox-esr-i18n/Makefile ============================================================================== --- branches/2017Q1/www/firefox-esr-i18n/Makefile Tue Jan 24 22:31:03 2017 (r432400) +++ branches/2017Q1/www/firefox-esr-i18n/Makefile Tue Jan 24 22:32:58 2017 (r432401) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 45.6.0 +PORTVERSION= 45.7.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build1/linux-i686/xpi Modified: branches/2017Q1/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2017Q1/www/firefox-esr-i18n/distinfo Tue Jan 24 22:31:03 2017 (r432400) +++ branches/2017Q1/www/firefox-esr-i18n/distinfo Tue Jan 24 22:32:58 2017 (r432401) @@ -1,181 +1,181 @@ -TIMESTAMP = 1481330255 -SHA256 (xpi/firefox-45.6.0/ach.xpi) = a26ca317025b57f8465fee3052c97d013755f8a1096ae1258adaeb7aa44a3e8f -SIZE (xpi/firefox-45.6.0/ach.xpi) = 426530 -SHA256 (xpi/firefox-45.6.0/af.xpi) = 38726e81586b9e76dcc0e363ce7ff8a0f8499ac75d7111bb46d32672f792041c -SIZE (xpi/firefox-45.6.0/af.xpi) = 439354 -SHA256 (xpi/firefox-45.6.0/an.xpi) = 59550c5311cbd4ae6947f772062573519dff438588ec418ae93c3f129f1ea287 -SIZE (xpi/firefox-45.6.0/an.xpi) = 449036 -SHA256 (xpi/firefox-45.6.0/ar.xpi) = 942f7d98417b5887efebab011ef559b1f5a745d1a13aae8819cb95c1821e8a9b -SIZE (xpi/firefox-45.6.0/ar.xpi) = 474961 -SHA256 (xpi/firefox-45.6.0/as.xpi) = 5004a06d292ec48b7d09f95396d89c7d45a9307f102b9cbcefbd08b7b296ff80 -SIZE (xpi/firefox-45.6.0/as.xpi) = 483096 -SHA256 (xpi/firefox-45.6.0/ast.xpi) = edce42f12992dd7fc01f01581a88bfb72eec67deff85efeb82bdd7be553262a7 -SIZE (xpi/firefox-45.6.0/ast.xpi) = 419250 -SHA256 (xpi/firefox-45.6.0/az.xpi) = b8ae594bf9948275818e2f15b1ad657602961391f498110512a19ffd2941549b -SIZE (xpi/firefox-45.6.0/az.xpi) = 464018 -SHA256 (xpi/firefox-45.6.0/be.xpi) = 8e86cfe3765e09fc5d236e369d3888e9336417fa8bdffe3343fc142f897aab6e -SIZE (xpi/firefox-45.6.0/be.xpi) = 442619 -SHA256 (xpi/firefox-45.6.0/bg.xpi) = 72ccd390f9ea546953771275b105fd4170f7e4318ef4806a083c81ee356c1df6 -SIZE (xpi/firefox-45.6.0/bg.xpi) = 460809 -SHA256 (xpi/firefox-45.6.0/bn-BD.xpi) = a19113d4d31a1914b1634d7db52e05e321af294605eeadd6af4abb62001dbee7 -SIZE (xpi/firefox-45.6.0/bn-BD.xpi) = 515643 -SHA256 (xpi/firefox-45.6.0/bn-IN.xpi) = 51207ccd5b8e7d57efbf2e18041d37e7c04bcfa72f325b72bff3ffc7f71496e3 -SIZE (xpi/firefox-45.6.0/bn-IN.xpi) = 494076 -SHA256 (xpi/firefox-45.6.0/br.xpi) = 5b9674c896f5a433b201c4bf57fda780f7c931c027706fede3547b33ef212a52 -SIZE (xpi/firefox-45.6.0/br.xpi) = 436390 -SHA256 (xpi/firefox-45.6.0/bs.xpi) = f85df2b22ac201dfe5779b86c751a182a260cd233159a75bd6118a600fc4472f -SIZE (xpi/firefox-45.6.0/bs.xpi) = 442998 -SHA256 (xpi/firefox-45.6.0/ca.xpi) = 0a0144e5cea1ca0aada35f163b4827008e8af394c3d2a93adc43adc269d6c13c -SIZE (xpi/firefox-45.6.0/ca.xpi) = 436832 -SHA256 (xpi/firefox-45.6.0/cs.xpi) = 194c74a13ae82696e39b6034c94db1b04bd308382b2edd72dc256e0ca94460a0 -SIZE (xpi/firefox-45.6.0/cs.xpi) = 443482 -SHA256 (xpi/firefox-45.6.0/cy.xpi) = 034e5b66421dfd7f918fb2a47d6f3ec5ba33be82d546247c793ecd9d30218097 -SIZE (xpi/firefox-45.6.0/cy.xpi) = 438908 -SHA256 (xpi/firefox-45.6.0/da.xpi) = 217d08088073beb852e8ad93bc1c34ba0ee59d4e1dfee92d04a97360fa0666c5 -SIZE (xpi/firefox-45.6.0/da.xpi) = 430078 -SHA256 (xpi/firefox-45.6.0/de.xpi) = 8b7fa38d503b146f8536b216c9088ee84d6877ab29c0507e6d4247fd2ebf1631 -SIZE (xpi/firefox-45.6.0/de.xpi) = 445482 -SHA256 (xpi/firefox-45.6.0/dsb.xpi) = 3e75a7a03bb794f84ff83bffd0729a0c966b620323f1850b6e19d909a6b8cb88 -SIZE (xpi/firefox-45.6.0/dsb.xpi) = 463791 -SHA256 (xpi/firefox-45.6.0/el.xpi) = f498644ec1cb0eb653f009391b9a33405ba8acc8e54abbda7848f712e70138d7 -SIZE (xpi/firefox-45.6.0/el.xpi) = 470867 -SHA256 (xpi/firefox-45.6.0/en-GB.xpi) = 76263a88c5f1e919cf6a865d37637a2409d7775dd11f823e45922ae594f5e040 -SIZE (xpi/firefox-45.6.0/en-GB.xpi) = 423871 -SHA256 (xpi/firefox-45.6.0/en-US.xpi) = 0fb6cb0ac97d02c107bed06120fb7b2ca395b5fe06e9e09f67129ce0890ad100 -SIZE (xpi/firefox-45.6.0/en-US.xpi) = 425462 -SHA256 (xpi/firefox-45.6.0/en-ZA.xpi) = a94fe56de96737ffd6d945bf287c48b602ea2f117be17480f1143727e56625e3 -SIZE (xpi/firefox-45.6.0/en-ZA.xpi) = 420776 -SHA256 (xpi/firefox-45.6.0/eo.xpi) = 28912cacd69ed38d8b87505690b8e34cde467661ce71276bdead3c4d63dc3d42 -SIZE (xpi/firefox-45.6.0/eo.xpi) = 440960 -SHA256 (xpi/firefox-45.6.0/es-AR.xpi) = 6100f5ade04cf30db44cb175fad1777f0340c73d57ee0d9b90d6ce8993ae4831 -SIZE (xpi/firefox-45.6.0/es-AR.xpi) = 441482 -SHA256 (xpi/firefox-45.6.0/es-CL.xpi) = f72f2fe882022dffe962065dde8795562e6ced4237460f62eb628af4bf19dc3f -SIZE (xpi/firefox-45.6.0/es-CL.xpi) = 368763 -SHA256 (xpi/firefox-45.6.0/es-ES.xpi) = 2f29901396a62f2c294a115246ce76267854a2e7b6e0c9f805966518f23e9346 -SIZE (xpi/firefox-45.6.0/es-ES.xpi) = 353716 -SHA256 (xpi/firefox-45.6.0/es-MX.xpi) = 0551d4f51ca86d3ead5f899bc15cc133260b38f94eaa936e893e29a801531dc2 -SIZE (xpi/firefox-45.6.0/es-MX.xpi) = 449395 -SHA256 (xpi/firefox-45.6.0/et.xpi) = e367f3c203878066a133a507d01e16bce926734eaceefcd9c9be2421f7491781 -SIZE (xpi/firefox-45.6.0/et.xpi) = 433352 -SHA256 (xpi/firefox-45.6.0/eu.xpi) = 71a47516d6b618c50674d15e3b4e6dbd41a2bdef8d69fcd167af6b3fe544cbc2 -SIZE (xpi/firefox-45.6.0/eu.xpi) = 441357 -SHA256 (xpi/firefox-45.6.0/fa.xpi) = 82c1559a88593516a357b366d21d41946f2f521946e9e00101d0b13bca1b3f02 -SIZE (xpi/firefox-45.6.0/fa.xpi) = 491941 -SHA256 (xpi/firefox-45.6.0/ff.xpi) = ff9ce14401f460ecc47c8b60ba131b41a5e50b19fc3abc5cc8553c339bd2ca20 -SIZE (xpi/firefox-45.6.0/ff.xpi) = 441500 -SHA256 (xpi/firefox-45.6.0/fi.xpi) = cc9d95a297c309bb34fa7356cacef58daf913b5357c7c4661b51e64bd989f798 -SIZE (xpi/firefox-45.6.0/fi.xpi) = 438347 -SHA256 (xpi/firefox-45.6.0/fr.xpi) = c58eab87d4adb52b54c1295852253f92ff5afff666a63c1eada1178aa638c4b9 -SIZE (xpi/firefox-45.6.0/fr.xpi) = 450037 -SHA256 (xpi/firefox-45.6.0/fy-NL.xpi) = d65c3b8d8796e3bc3383879da80bfad4d3133c61efc4191f50de1cfabb6022d1 -SIZE (xpi/firefox-45.6.0/fy-NL.xpi) = 447779 -SHA256 (xpi/firefox-45.6.0/ga-IE.xpi) = e6d46c50a5dd6e866866fd9461a2442438695547cad6dd650579905b585d4209 -SIZE (xpi/firefox-45.6.0/ga-IE.xpi) = 460056 -SHA256 (xpi/firefox-45.6.0/gd.xpi) = 860e3b0627aff036012a0752d6dabd9c8608d276f01a8c1b771a15976ed3eb64 -SIZE (xpi/firefox-45.6.0/gd.xpi) = 449711 -SHA256 (xpi/firefox-45.6.0/gl.xpi) = 6dc28b0b1167a02cd563b00db2fb20af8dac08e7865efeda05755c3ae29de2a0 -SIZE (xpi/firefox-45.6.0/gl.xpi) = 434804 -SHA256 (xpi/firefox-45.6.0/gn.xpi) = 5fb792f76fd0d222f80c028b44ff1e005c369323b95123c4e052b80a238795af -SIZE (xpi/firefox-45.6.0/gn.xpi) = 460648 -SHA256 (xpi/firefox-45.6.0/gu-IN.xpi) = c0146a7e562a98366f3cd6831f5573c5d30f8967f208b752900922f6522dd623 -SIZE (xpi/firefox-45.6.0/gu-IN.xpi) = 472567 -SHA256 (xpi/firefox-45.6.0/he.xpi) = ae02bc7b8bcc4d5bb9cd56562d1b0329d78c7fdb96bbfb86e35bedf4e2dd332b -SIZE (xpi/firefox-45.6.0/he.xpi) = 454786 -SHA256 (xpi/firefox-45.6.0/hi-IN.xpi) = a9b05aed46cd06a7338703322c168699aba8093300ceb8be9a4d90753bf38f3d -SIZE (xpi/firefox-45.6.0/hi-IN.xpi) = 486991 -SHA256 (xpi/firefox-45.6.0/hr.xpi) = dfeb7ef5786b400232b1672a359a2c12d6d9fabafa421b9f16c92b01da14670c -SIZE (xpi/firefox-45.6.0/hr.xpi) = 449069 -SHA256 (xpi/firefox-45.6.0/hsb.xpi) = 7014e996175ed59c0fc020c8b9471eb188261e8d8788fa3cd36a74ace2e9ce11 -SIZE (xpi/firefox-45.6.0/hsb.xpi) = 461454 -SHA256 (xpi/firefox-45.6.0/hu.xpi) = bb659f779b6e220c3d285ea70f9a067a731b3d8e2e2bd480d1746cd4c898f29b -SIZE (xpi/firefox-45.6.0/hu.xpi) = 449777 -SHA256 (xpi/firefox-45.6.0/hy-AM.xpi) = 167346fa2c0259fb4aa5931b9e6ad7e9db8248053ee94e573ed8b1a9eef3614f -SIZE (xpi/firefox-45.6.0/hy-AM.xpi) = 500040 -SHA256 (xpi/firefox-45.6.0/id.xpi) = 8460beaadd76ca321cab90a19c62a08ff8fe3f4e0d7686af8a1da491b654195f -SIZE (xpi/firefox-45.6.0/id.xpi) = 427176 -SHA256 (xpi/firefox-45.6.0/is.xpi) = f1756dd05eead22b7bb07a970a12db53800fdd3032de4ceec94f830f3d095aa3 -SIZE (xpi/firefox-45.6.0/is.xpi) = 443210 -SHA256 (xpi/firefox-45.6.0/it.xpi) = bb4a9037e63926ce2ed002c87f84eb3f39aab425f6bed61a06c81953cf6a1f66 -SIZE (xpi/firefox-45.6.0/it.xpi) = 343724 -SHA256 (xpi/firefox-45.6.0/ja.xpi) = 41d2318c0c5960f715a6b414d7a510e626bc712843d8202806d77e44b8610e56 -SIZE (xpi/firefox-45.6.0/ja.xpi) = 486331 -SHA256 (xpi/firefox-45.6.0/kk.xpi) = 71f683c2c290095517fb014dec274bce06edcbd1ed184ace151341a5a6cc7dbb -SIZE (xpi/firefox-45.6.0/kk.xpi) = 498896 -SHA256 (xpi/firefox-45.6.0/km.xpi) = 00ce78af19868767ab7e09f1b77bf765b7d9935424a77b6858e149163d3b495f -SIZE (xpi/firefox-45.6.0/km.xpi) = 504302 -SHA256 (xpi/firefox-45.6.0/kn.xpi) = 8b6e911efe4ed07b67af05f6e457d44711fb09b5fc0030d339fc24290accbb9b -SIZE (xpi/firefox-45.6.0/kn.xpi) = 495881 -SHA256 (xpi/firefox-45.6.0/ko.xpi) = 22176eb8bb6fbde1efb8d67f1dd7563c575215d813fd7100c946ed4220e1ffee -SIZE (xpi/firefox-45.6.0/ko.xpi) = 465289 -SHA256 (xpi/firefox-45.6.0/lij.xpi) = 33eea4f409d500598b3c0ea08568091d539cbf8c0ed38398827ec477b2e3b80b -SIZE (xpi/firefox-45.6.0/lij.xpi) = 381385 -SHA256 (xpi/firefox-45.6.0/lt.xpi) = 66d4a337278df1a72f14abcca57be904cb9b53ef36076e9f62f724913f995ae3 -SIZE (xpi/firefox-45.6.0/lt.xpi) = 454678 -SHA256 (xpi/firefox-45.6.0/lv.xpi) = 231d1ead106e11a9eaa1b9915df98d5a8734d6db3ab6e563303de44511350c63 -SIZE (xpi/firefox-45.6.0/lv.xpi) = 445720 -SHA256 (xpi/firefox-45.6.0/mai.xpi) = bf0529141003ab3deb80cad52a05cd9a51146af9203e8ed0ece569fa221a7670 -SIZE (xpi/firefox-45.6.0/mai.xpi) = 492650 -SHA256 (xpi/firefox-45.6.0/mk.xpi) = 4edf68595d772794d3654d1cd12096076b073d9da9792cc971e5489f80d1d136 -SIZE (xpi/firefox-45.6.0/mk.xpi) = 476392 -SHA256 (xpi/firefox-45.6.0/ml.xpi) = 3287e490dfe0ae1bb59a61dfa37b3599e4279445523f60ae7db8d0c6cab85f77 -SIZE (xpi/firefox-45.6.0/ml.xpi) = 498681 -SHA256 (xpi/firefox-45.6.0/mr.xpi) = 280aa77f29befd555c10681a9ca8b7c869e8a12b4e2319bae2e97dcf5d88d617 -SIZE (xpi/firefox-45.6.0/mr.xpi) = 503700 -SHA256 (xpi/firefox-45.6.0/ms.xpi) = 1cd26312aea78e9a346443e137a02d455cf844f81bd3b4881c53cb099ba791f3 -SIZE (xpi/firefox-45.6.0/ms.xpi) = 440065 -SHA256 (xpi/firefox-45.6.0/nb-NO.xpi) = e550c89cc083420cfac125e6d9674e472a8581c127610ea439cbf5c44df73662 -SIZE (xpi/firefox-45.6.0/nb-NO.xpi) = 435471 -SHA256 (xpi/firefox-45.6.0/nl.xpi) = d5451bbb75b9be00fadf76a6b7ab5b48899d87729da2473e17929b83a5f76714 -SIZE (xpi/firefox-45.6.0/nl.xpi) = 435202 -SHA256 (xpi/firefox-45.6.0/nn-NO.xpi) = e5901ff82a8845623ba8aeea5750f034aceed59b9e152ca3561bc005c0fd7e08 -SIZE (xpi/firefox-45.6.0/nn-NO.xpi) = 432934 -SHA256 (xpi/firefox-45.6.0/or.xpi) = 99998ee8edbf815796cbe6709bf8d313ae88719ce98d3663e95ed954488ad332 -SIZE (xpi/firefox-45.6.0/or.xpi) = 495922 -SHA256 (xpi/firefox-45.6.0/pa-IN.xpi) = 62954f7ef1d85b9a5b8e0a1c9feab3cf722c75a522948180877f4162bd274f24 -SIZE (xpi/firefox-45.6.0/pa-IN.xpi) = 489551 -SHA256 (xpi/firefox-45.6.0/pl.xpi) = da9b0b1f9ab8a49ce64a0b912b7d30f1cfd746a33ee0fe3391660fec1c792f55 -SIZE (xpi/firefox-45.6.0/pl.xpi) = 383929 -SHA256 (xpi/firefox-45.6.0/pt-BR.xpi) = acbc237c0efc7e5a65069799661030527db13efbaa996c26ab4eebc4eb067ff1 -SIZE (xpi/firefox-45.6.0/pt-BR.xpi) = 450991 -SHA256 (xpi/firefox-45.6.0/pt-PT.xpi) = 8e9ac6965d6508d2d9c88f8ff86360bc192aff55757f4c10e767b7337be4a901 -SIZE (xpi/firefox-45.6.0/pt-PT.xpi) = 437022 -SHA256 (xpi/firefox-45.6.0/rm.xpi) = 156b1133adebd0fabc47a7b398cb0ddee3b4a46e843356c3e8255b5000d54564 -SIZE (xpi/firefox-45.6.0/rm.xpi) = 437718 -SHA256 (xpi/firefox-45.6.0/ro.xpi) = 735f430dcf7e9283b2541ab8f9b65c9ab504e1185e828461a9cd35a911ed092e -SIZE (xpi/firefox-45.6.0/ro.xpi) = 444062 -SHA256 (xpi/firefox-45.6.0/ru.xpi) = c3157ddf5bbdb1527f1aaec459a5f16d10383ad077e2b1ee64f5f1cee6b9367e -SIZE (xpi/firefox-45.6.0/ru.xpi) = 392738 -SHA256 (xpi/firefox-45.6.0/si.xpi) = f9a125661bcea85258fcfd99ea01fb2438477156f8cb285d1da5f46374eb7ae9 -SIZE (xpi/firefox-45.6.0/si.xpi) = 482248 -SHA256 (xpi/firefox-45.6.0/sk.xpi) = 97bc8abb6ef48a1a48bdccfc74ea330e6baaaef45bf062916f918018d28e360f -SIZE (xpi/firefox-45.6.0/sk.xpi) = 453606 -SHA256 (xpi/firefox-45.6.0/sl.xpi) = 878360c5b569183c794b241bd9bd3ccb79f9bb5d739795ac9b0c46960b6ebe18 -SIZE (xpi/firefox-45.6.0/sl.xpi) = 444964 -SHA256 (xpi/firefox-45.6.0/son.xpi) = da8d54259390da5d28f8ceead2727c6fb685effd7cbad08a868d2321edd0ae48 -SIZE (xpi/firefox-45.6.0/son.xpi) = 433513 -SHA256 (xpi/firefox-45.6.0/sq.xpi) = 1f18a2036fea7121e7e4e0ff9900b9eac4fecfa7b6afd56ce086a01f4b8d08e8 -SIZE (xpi/firefox-45.6.0/sq.xpi) = 452186 -SHA256 (xpi/firefox-45.6.0/sr.xpi) = 3b590326481cc5455f8566087afdaeb44e398e15e86f1cf9d023c67070b921de -SIZE (xpi/firefox-45.6.0/sr.xpi) = 464478 -SHA256 (xpi/firefox-45.6.0/sv-SE.xpi) = 5d7dd6098f7ea9dd0c83f9e57a4841ab6112ce9930367ed768614b6de9d3da5e -SIZE (xpi/firefox-45.6.0/sv-SE.xpi) = 444213 -SHA256 (xpi/firefox-45.6.0/ta.xpi) = bf6c7077b91a8b030091d0d7841619df74b9b82b8a248ccb3dc665a7413088cb -SIZE (xpi/firefox-45.6.0/ta.xpi) = 483118 -SHA256 (xpi/firefox-45.6.0/te.xpi) = bb043c63242f7d0c6c14e900c3aeba3c43238058fe838116c7706f2058b01bc8 -SIZE (xpi/firefox-45.6.0/te.xpi) = 492471 -SHA256 (xpi/firefox-45.6.0/th.xpi) = b98df316512b85fe33bf3d928852253f6892151da29df968cf79e2765255ece3 -SIZE (xpi/firefox-45.6.0/th.xpi) = 477650 -SHA256 (xpi/firefox-45.6.0/tr.xpi) = d7f0c4e82b6d4b2ede6082430189c0571d03ecb2cf0e8b9b089754b4f1b112b9 -SIZE (xpi/firefox-45.6.0/tr.xpi) = 451166 -SHA256 (xpi/firefox-45.6.0/uk.xpi) = 5127771f5b665e0cf38a111a8cbaed71cfd223a238ed72e075c6d271d7a65222 -SIZE (xpi/firefox-45.6.0/uk.xpi) = 494781 -SHA256 (xpi/firefox-45.6.0/uz.xpi) = b1fc4b5bfcef5f016170ca4f5e1cc1585364175a0f4becb0f582183a5cbd611b -SIZE (xpi/firefox-45.6.0/uz.xpi) = 443803 -SHA256 (xpi/firefox-45.6.0/vi.xpi) = 330804510ccf84a95393858b9ad242b623b5340b0045dbd7874adaa84f3aa602 -SIZE (xpi/firefox-45.6.0/vi.xpi) = 450778 -SHA256 (xpi/firefox-45.6.0/xh.xpi) = bc0c472e5aea467a22f4db2216f9c25b11c904214df2380c49283ce6bfba3bea -SIZE (xpi/firefox-45.6.0/xh.xpi) = 432919 -SHA256 (xpi/firefox-45.6.0/zh-CN.xpi) = b92849fc289e03139a075cb916efcc1363ed82e2d13a97519c8523efe66244dd -SIZE (xpi/firefox-45.6.0/zh-CN.xpi) = 475797 -SHA256 (xpi/firefox-45.6.0/zh-TW.xpi) = 80f55f03daa55e6b081f46a5badde962da433c54de5e4eb1a39c203a4a3b7dee -SIZE (xpi/firefox-45.6.0/zh-TW.xpi) = 466529 +TIMESTAMP = 1484786354 +SHA256 (xpi/firefox-45.7.0/ach.xpi) = bfd345d02ad1a1658c1f630b9e024c4a1bd00630037e89ebb2e6f0ccebf258e6 +SIZE (xpi/firefox-45.7.0/ach.xpi) = 426530 +SHA256 (xpi/firefox-45.7.0/af.xpi) = 3374b98fa0bab8cfec13b301585ae886fdc93e33c340ad33230d0e2eb42954d0 +SIZE (xpi/firefox-45.7.0/af.xpi) = 439353 +SHA256 (xpi/firefox-45.7.0/an.xpi) = 072154ea6b1c04c90d88e4a81f13b247e2c608171a51860077d20b3d16a0e50b +SIZE (xpi/firefox-45.7.0/an.xpi) = 449036 +SHA256 (xpi/firefox-45.7.0/ar.xpi) = 2c3319d3d30d5a7b0aad445b7f8c512a74c2239b4e12e46704ad7bde76b5e18b +SIZE (xpi/firefox-45.7.0/ar.xpi) = 474960 +SHA256 (xpi/firefox-45.7.0/as.xpi) = 418c549444f69923eb4ffd873443b96aabc9882526c778c87cbaa4155c279376 +SIZE (xpi/firefox-45.7.0/as.xpi) = 483096 +SHA256 (xpi/firefox-45.7.0/ast.xpi) = ee8fa58ab61a410be1cf52aa24bce42216f99864c2e444817bdbeba7e3f7cabb +SIZE (xpi/firefox-45.7.0/ast.xpi) = 419250 +SHA256 (xpi/firefox-45.7.0/az.xpi) = b0ea59eb1da833f769d71f4fd3b42e1bf306c1f48bee14000d9737bd58474a80 +SIZE (xpi/firefox-45.7.0/az.xpi) = 464018 +SHA256 (xpi/firefox-45.7.0/be.xpi) = 3bdc075612cb3a93b5dc42b6b806e0875dc65b1f8babe7027d73b9e90a6c4696 +SIZE (xpi/firefox-45.7.0/be.xpi) = 442619 +SHA256 (xpi/firefox-45.7.0/bg.xpi) = 3820b9fe21976180d8fb8e7c781969c85006192907e8600e1d33d5479e6d833c +SIZE (xpi/firefox-45.7.0/bg.xpi) = 460808 +SHA256 (xpi/firefox-45.7.0/bn-BD.xpi) = 24d8ce85cd78a8e85136037edfc5f896e1f44798eea902c66efdc6641c33fd9b +SIZE (xpi/firefox-45.7.0/bn-BD.xpi) = 515643 +SHA256 (xpi/firefox-45.7.0/bn-IN.xpi) = f77c86f7d876cab202e479b02daec731b1ec1960732258a5c543d8c9484c1296 +SIZE (xpi/firefox-45.7.0/bn-IN.xpi) = 494076 +SHA256 (xpi/firefox-45.7.0/br.xpi) = ea94533503448404989a698944df3770e96e30d761e7ead6b7112977b8d15a3e +SIZE (xpi/firefox-45.7.0/br.xpi) = 436390 +SHA256 (xpi/firefox-45.7.0/bs.xpi) = 8422f330f4e4fdf59fc2e3973883cadfa129577af073ef3fe42fc08e25fc67ff +SIZE (xpi/firefox-45.7.0/bs.xpi) = 442998 +SHA256 (xpi/firefox-45.7.0/ca.xpi) = 4960f79f223ff357ac82c44b29a44d10b0f5bcc60747d7ac03d90d166657d6ce +SIZE (xpi/firefox-45.7.0/ca.xpi) = 436832 +SHA256 (xpi/firefox-45.7.0/cs.xpi) = a0ff18348b81b78d5979274c871997db063fc53987c150a6df8c9a41d5f9c806 +SIZE (xpi/firefox-45.7.0/cs.xpi) = 443482 +SHA256 (xpi/firefox-45.7.0/cy.xpi) = ae825fe3d1af179cecd060e317691ddc06c31b7596561e5a60c45e1a23d23745 +SIZE (xpi/firefox-45.7.0/cy.xpi) = 438907 +SHA256 (xpi/firefox-45.7.0/da.xpi) = 7684b51a3664113db6152c391e5be4f02d842d3bcb08f7a9691d5e3df9d0ac6d +SIZE (xpi/firefox-45.7.0/da.xpi) = 430078 +SHA256 (xpi/firefox-45.7.0/de.xpi) = 58c72e5f82a7e2a51f53faa462a4ba221714d685287f574d31e63e1ab0b1cedd +SIZE (xpi/firefox-45.7.0/de.xpi) = 445481 +SHA256 (xpi/firefox-45.7.0/dsb.xpi) = 47577219d099e1443c45a11c98d4a93f167b683f1555f2e02b6591e2bf640e1a +SIZE (xpi/firefox-45.7.0/dsb.xpi) = 463791 +SHA256 (xpi/firefox-45.7.0/el.xpi) = 0cac6f9ed43f8e81e193910a0fe1efa9b85ced1c669d0ec8a24c5a411cdbf44b +SIZE (xpi/firefox-45.7.0/el.xpi) = 470867 +SHA256 (xpi/firefox-45.7.0/en-GB.xpi) = 25a6cd776acb4fa635ed89434bee65a1aa432c66532a57edfb3b8e840fbf8091 +SIZE (xpi/firefox-45.7.0/en-GB.xpi) = 423871 +SHA256 (xpi/firefox-45.7.0/en-US.xpi) = ac0109f62a9aa51282769e47de62d856af44d9c24588056786959a73ad6f5a04 +SIZE (xpi/firefox-45.7.0/en-US.xpi) = 425461 +SHA256 (xpi/firefox-45.7.0/en-ZA.xpi) = 613a9574b44e463abd481e19682ce05359c72661160e39b493ef934b75ab41d8 +SIZE (xpi/firefox-45.7.0/en-ZA.xpi) = 420776 +SHA256 (xpi/firefox-45.7.0/eo.xpi) = 15e9ea3019176c0bf4f0de59fd045763d304fc8af10e9e36476c15501bb22481 +SIZE (xpi/firefox-45.7.0/eo.xpi) = 440960 +SHA256 (xpi/firefox-45.7.0/es-AR.xpi) = 14d466c32ea086a30d530826b7fcbcad57c0b7c8f6a694eab7f9a447bbf2649c +SIZE (xpi/firefox-45.7.0/es-AR.xpi) = 441482 +SHA256 (xpi/firefox-45.7.0/es-CL.xpi) = 284533fdd9771d1b6358a4fade8e94e44b405109ea1e4cfd43f653c7dc329f7e +SIZE (xpi/firefox-45.7.0/es-CL.xpi) = 368763 +SHA256 (xpi/firefox-45.7.0/es-ES.xpi) = 2369e1943d7a81ee497fca779034605a33b32886756709b4f30a199ced89b143 +SIZE (xpi/firefox-45.7.0/es-ES.xpi) = 353716 +SHA256 (xpi/firefox-45.7.0/es-MX.xpi) = 97a7e22fe01b2aad8b97f3012c8f2dd1353c9fb76cb08b5959597be7db4bbbc8 +SIZE (xpi/firefox-45.7.0/es-MX.xpi) = 449395 +SHA256 (xpi/firefox-45.7.0/et.xpi) = f348180672bde33da1fcafa84c11516b73416c1615054da3256b4216558cdd12 +SIZE (xpi/firefox-45.7.0/et.xpi) = 433352 +SHA256 (xpi/firefox-45.7.0/eu.xpi) = 50ba6def386e9612f6fbd1518a1754678b9114d63ad08aa9094e5bb19125ee15 +SIZE (xpi/firefox-45.7.0/eu.xpi) = 441357 +SHA256 (xpi/firefox-45.7.0/fa.xpi) = 8cad09df466e89e04ab40a08fadbb8f45f518614fa466587ddda1f3932ac92e5 +SIZE (xpi/firefox-45.7.0/fa.xpi) = 491940 +SHA256 (xpi/firefox-45.7.0/ff.xpi) = 92d9b697e8fb42446dfec221c0a8c061861dc0214ddbaf9d1433899c0b99cd94 +SIZE (xpi/firefox-45.7.0/ff.xpi) = 441499 +SHA256 (xpi/firefox-45.7.0/fi.xpi) = 4974ea7fa1aa972151be8cc5674bd90607a23537d41a887bb46ba2d6e4cc2544 +SIZE (xpi/firefox-45.7.0/fi.xpi) = 438347 +SHA256 (xpi/firefox-45.7.0/fr.xpi) = 16280c56e26024a72a1a3f1610693ac0a2b67b63c250a402c534e35c0f2aab16 +SIZE (xpi/firefox-45.7.0/fr.xpi) = 450037 +SHA256 (xpi/firefox-45.7.0/fy-NL.xpi) = 2962b5188f2883d8954df39a5af2cf685f2dd515fe4330314e956c6ddc80cf33 +SIZE (xpi/firefox-45.7.0/fy-NL.xpi) = 447779 +SHA256 (xpi/firefox-45.7.0/ga-IE.xpi) = 31718d383250eb23d4113df47aeb671c9fd06a719612789b7aa47a2bd9520f2d +SIZE (xpi/firefox-45.7.0/ga-IE.xpi) = 460056 +SHA256 (xpi/firefox-45.7.0/gd.xpi) = 7b45ca2bea8bcf4ccb24c5de7b64cbcf4580048a16260a347b7be717fd0a33da +SIZE (xpi/firefox-45.7.0/gd.xpi) = 449711 +SHA256 (xpi/firefox-45.7.0/gl.xpi) = 332251b174bcabcf269aab3e169045055576eaabc43fd0a7df015463a8666f56 +SIZE (xpi/firefox-45.7.0/gl.xpi) = 434804 +SHA256 (xpi/firefox-45.7.0/gn.xpi) = b44eb9bac78e841566df80d8bed7af53e41ea3eb1e541118410226c82b487c84 +SIZE (xpi/firefox-45.7.0/gn.xpi) = 460648 +SHA256 (xpi/firefox-45.7.0/gu-IN.xpi) = 587b95db01f7087d99b05f77330aba47e67eb1b91d8bbfcf5be2e53791650b6c +SIZE (xpi/firefox-45.7.0/gu-IN.xpi) = 472567 +SHA256 (xpi/firefox-45.7.0/he.xpi) = 59b1caee7ac0db29d63f2ae1be4b0324f2e8c2fbfa2011d9a251ca53daa1f803 +SIZE (xpi/firefox-45.7.0/he.xpi) = 454786 +SHA256 (xpi/firefox-45.7.0/hi-IN.xpi) = a070a7fc241a84ccb3f5d1b1490a785f1becdfba3054e6b360882158d2ee4181 +SIZE (xpi/firefox-45.7.0/hi-IN.xpi) = 486991 +SHA256 (xpi/firefox-45.7.0/hr.xpi) = 1533e6e17868a7facb207a996cf9808f97a97db47064e30d168e1cb16d6bd036 +SIZE (xpi/firefox-45.7.0/hr.xpi) = 449069 +SHA256 (xpi/firefox-45.7.0/hsb.xpi) = db2998ee9423406aaee1e1fbff0451224660248968bf1932b9537b793f863574 +SIZE (xpi/firefox-45.7.0/hsb.xpi) = 461454 +SHA256 (xpi/firefox-45.7.0/hu.xpi) = 5428addd92e9dde3ebee0a45f4c00deea4a0806543d9b53c2120065ca4d7ac69 +SIZE (xpi/firefox-45.7.0/hu.xpi) = 449777 +SHA256 (xpi/firefox-45.7.0/hy-AM.xpi) = dbb883029fac0d2c15d426ee2bb3df9de13c97b4af64871922ea4de53cc9f506 +SIZE (xpi/firefox-45.7.0/hy-AM.xpi) = 500040 +SHA256 (xpi/firefox-45.7.0/id.xpi) = 3c6701f5de7db0a91ef2b9a03986194efcbd41353868569226b5aca4e452ee53 +SIZE (xpi/firefox-45.7.0/id.xpi) = 427175 +SHA256 (xpi/firefox-45.7.0/is.xpi) = c1e839002d454ba67e47cfaa8a174c9430816c9fd3b6fda8c6a6309fc24404b7 +SIZE (xpi/firefox-45.7.0/is.xpi) = 443213 +SHA256 (xpi/firefox-45.7.0/it.xpi) = 91d9605e95562eb86e1ab500ea0994b4786d79d78a26cbdc836bea51c863851a +SIZE (xpi/firefox-45.7.0/it.xpi) = 343724 +SHA256 (xpi/firefox-45.7.0/ja.xpi) = 853c1943833af495e4c60805814d0a086dcf85bb3f06caa9cfee5a5c8434fb0b +SIZE (xpi/firefox-45.7.0/ja.xpi) = 486331 +SHA256 (xpi/firefox-45.7.0/kk.xpi) = 77176f4ada25b45bbab5c39ea3ad68ea0e3b3b5a9a338ed8d7e6c340aee22502 +SIZE (xpi/firefox-45.7.0/kk.xpi) = 498895 +SHA256 (xpi/firefox-45.7.0/km.xpi) = a88745ed3e774e2d81d0fa7985ddf201e785bad08a6b51627b0fdb26643aece9 +SIZE (xpi/firefox-45.7.0/km.xpi) = 504302 +SHA256 (xpi/firefox-45.7.0/kn.xpi) = a283f614bf984aff145b5d5869ae5685aa169b1398e71111d2a7e8c544872956 +SIZE (xpi/firefox-45.7.0/kn.xpi) = 495881 +SHA256 (xpi/firefox-45.7.0/ko.xpi) = a61bafd47a1a1caf6de1eb5a9b4c137132acdb9e5a2a9a257eafbc414ae0ab0f +SIZE (xpi/firefox-45.7.0/ko.xpi) = 465289 +SHA256 (xpi/firefox-45.7.0/lij.xpi) = 0a2b8e0826948e253ad6e74764d7ec574bc4a75e9aba43489c894f9639f00763 +SIZE (xpi/firefox-45.7.0/lij.xpi) = 381388 +SHA256 (xpi/firefox-45.7.0/lt.xpi) = ff7c2fcbb15a030344e7b46b34dc01c05fcd12f1b9c81df09cf4e53593dc6dc9 +SIZE (xpi/firefox-45.7.0/lt.xpi) = 454678 +SHA256 (xpi/firefox-45.7.0/lv.xpi) = 28b2152bf9e88aaed39863ebe0e65f203f3755769a2786a05185fe2243022f76 +SIZE (xpi/firefox-45.7.0/lv.xpi) = 445720 +SHA256 (xpi/firefox-45.7.0/mai.xpi) = 54423f003cf914c445ae88608212fcd154d599a9c612c3200b98f59b9c09a144 +SIZE (xpi/firefox-45.7.0/mai.xpi) = 492650 +SHA256 (xpi/firefox-45.7.0/mk.xpi) = 70203a8fcebd05b5e0004ec1af98e67565fb65f2ae12d80586bd92300072d354 +SIZE (xpi/firefox-45.7.0/mk.xpi) = 476392 +SHA256 (xpi/firefox-45.7.0/ml.xpi) = 6b08026ebda6051e1f3277cf8cc8b660e6c47b2905977536811df429c65d4410 +SIZE (xpi/firefox-45.7.0/ml.xpi) = 498681 +SHA256 (xpi/firefox-45.7.0/mr.xpi) = 8acee4277726315d2ad2c84642d18288cc86ae5aa587d933be89d532a19384ac +SIZE (xpi/firefox-45.7.0/mr.xpi) = 503700 +SHA256 (xpi/firefox-45.7.0/ms.xpi) = 75facd74a697d4541386d1e613d446410072b2d1ceb6621e0b230c80f675d8e2 +SIZE (xpi/firefox-45.7.0/ms.xpi) = 440064 +SHA256 (xpi/firefox-45.7.0/nb-NO.xpi) = 013ba44c6356df10ff8b1c6382191be88d78991183f3c78eb959fad99284a6e1 +SIZE (xpi/firefox-45.7.0/nb-NO.xpi) = 435470 +SHA256 (xpi/firefox-45.7.0/nl.xpi) = 5e801fb3ab4466de757b7ae17ceeecc51dbe7f33ff5b25d504209b097d83d7c2 +SIZE (xpi/firefox-45.7.0/nl.xpi) = 435202 +SHA256 (xpi/firefox-45.7.0/nn-NO.xpi) = 050179e683b752a3df7a6b6e9f2142654e7cd3a57252531b8637bb097ce50c1a +SIZE (xpi/firefox-45.7.0/nn-NO.xpi) = 432934 +SHA256 (xpi/firefox-45.7.0/or.xpi) = 956b26a855b8f599e29816a9fae851ccb90f107a6b0986e15cc31d09ab77b7f9 +SIZE (xpi/firefox-45.7.0/or.xpi) = 495922 +SHA256 (xpi/firefox-45.7.0/pa-IN.xpi) = d37c0976537513219707799c35d737d5680acd17e2066a76608020b21bbec6da +SIZE (xpi/firefox-45.7.0/pa-IN.xpi) = 489551 +SHA256 (xpi/firefox-45.7.0/pl.xpi) = bcea1c85159688a9f97fd90c53b931ac4adf158de9a56275f8e40c79b3c15f30 +SIZE (xpi/firefox-45.7.0/pl.xpi) = 383929 +SHA256 (xpi/firefox-45.7.0/pt-BR.xpi) = 7a360b124c7885ec078b55604f9555a4b10328ecfb523a3fc2de682baca0f38e +SIZE (xpi/firefox-45.7.0/pt-BR.xpi) = 450991 +SHA256 (xpi/firefox-45.7.0/pt-PT.xpi) = 31b3f1b0454721343f9f78aee71aeb5b806191cb37d394ed390f0e5465c847ab +SIZE (xpi/firefox-45.7.0/pt-PT.xpi) = 437022 +SHA256 (xpi/firefox-45.7.0/rm.xpi) = 3ad942bdcf67d2e414315c489bf4afe1c8f4108e3f3070abcf99a0853153564d +SIZE (xpi/firefox-45.7.0/rm.xpi) = 437718 +SHA256 (xpi/firefox-45.7.0/ro.xpi) = dddccd6894459025392401b8534b6e32955552a1295e1deda4852a65c5b6655d +SIZE (xpi/firefox-45.7.0/ro.xpi) = 444062 +SHA256 (xpi/firefox-45.7.0/ru.xpi) = 000ee8410f4ee3d40a25ff9892133674b04c6bafcab11d0a66852d817fe6c719 +SIZE (xpi/firefox-45.7.0/ru.xpi) = 392738 +SHA256 (xpi/firefox-45.7.0/si.xpi) = 20b22bf3c39eebe3d73ef00359db4569bdb704d980194fced95668368b3b159a +SIZE (xpi/firefox-45.7.0/si.xpi) = 482248 +SHA256 (xpi/firefox-45.7.0/sk.xpi) = 5870dd8aa90ad058173a353109e1e6a73c0c70b8206c2869b2e21cb103b9c40d +SIZE (xpi/firefox-45.7.0/sk.xpi) = 453606 +SHA256 (xpi/firefox-45.7.0/sl.xpi) = 2911704bbe741968190470ec903f2e2feb8ce611303721549d0e495302e5f516 +SIZE (xpi/firefox-45.7.0/sl.xpi) = 444963 +SHA256 (xpi/firefox-45.7.0/son.xpi) = 65899e51bb63fadaffbdb1bc2a06129e12f5409808f40c1582479784425477e4 +SIZE (xpi/firefox-45.7.0/son.xpi) = 433513 +SHA256 (xpi/firefox-45.7.0/sq.xpi) = 7e6a17d9a98368b67823efa187abe9921d9dfaa60cfe21cbc5424a57f916c8d9 +SIZE (xpi/firefox-45.7.0/sq.xpi) = 452186 +SHA256 (xpi/firefox-45.7.0/sr.xpi) = 8dc9c2b0300fbda0db8975846345a84a0620a376aa7d04a71c5abf7f4b76c832 +SIZE (xpi/firefox-45.7.0/sr.xpi) = 464479 +SHA256 (xpi/firefox-45.7.0/sv-SE.xpi) = d534c7e0aef786b8f70eb248cdbc3cca19fab1e91e041d7330c1f43a97429024 +SIZE (xpi/firefox-45.7.0/sv-SE.xpi) = 444214 +SHA256 (xpi/firefox-45.7.0/ta.xpi) = f7ea928f7be8a1bb47fd83c8f0d2616b05e082adf9e1fb6bdf186dc63c79107a +SIZE (xpi/firefox-45.7.0/ta.xpi) = 483117 +SHA256 (xpi/firefox-45.7.0/te.xpi) = 649a6769d5dc50891d9f230c0e9eff9946ee83dbff19870d1fd6a95d22f03dea +SIZE (xpi/firefox-45.7.0/te.xpi) = 492471 +SHA256 (xpi/firefox-45.7.0/th.xpi) = 39d7b557630de0a958d8fca33c742e3f8f17550c8fd8239da2dd8690db45dbcf +SIZE (xpi/firefox-45.7.0/th.xpi) = 477650 +SHA256 (xpi/firefox-45.7.0/tr.xpi) = 0291cab30fe06c2ca5201adc4e66ac55689110bf589db802c63b991881a3d6f9 +SIZE (xpi/firefox-45.7.0/tr.xpi) = 451166 +SHA256 (xpi/firefox-45.7.0/uk.xpi) = b52c6056655d6c74b4563456eafe1412747800cf278260c151639ff16c086566 +SIZE (xpi/firefox-45.7.0/uk.xpi) = 494780 +SHA256 (xpi/firefox-45.7.0/uz.xpi) = e7f5ab1d966b731b4af2e276d8709e9ba4a358279dbd9de0e5fdf4278ef0e9b9 +SIZE (xpi/firefox-45.7.0/uz.xpi) = 443803 +SHA256 (xpi/firefox-45.7.0/vi.xpi) = e4476d413539fa08e9007bd9a7dd4f402ccdc4260a2fcdf3bd7ce66c91bc1769 +SIZE (xpi/firefox-45.7.0/vi.xpi) = 450778 +SHA256 (xpi/firefox-45.7.0/xh.xpi) = 58b25333677594d8666f7fd9b459623059b03d3ec1776f27059f1b4334559e9a +SIZE (xpi/firefox-45.7.0/xh.xpi) = 432918 +SHA256 (xpi/firefox-45.7.0/zh-CN.xpi) = 0e8eb9173e890e5ec2726c60706548f8b554ec532a75022a743fb23fbcb78fd8 +SIZE (xpi/firefox-45.7.0/zh-CN.xpi) = 475797 +SHA256 (xpi/firefox-45.7.0/zh-TW.xpi) = 8c2ce7bf8a2c95eb065ae9491e3b557d1775be578f7c523080eb204de68c3b49 +SIZE (xpi/firefox-45.7.0/zh-TW.xpi) = 466529 Modified: branches/2017Q1/www/firefox-esr/Makefile ============================================================================== --- branches/2017Q1/www/firefox-esr/Makefile Tue Jan 24 22:31:03 2017 (r432400) +++ branches/2017Q1/www/firefox-esr/Makefile Tue Jan 24 22:32:58 2017 (r432401) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 45.6.0 +DISTVERSION= 45.7.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ @@ -15,7 +14,7 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.12:devel/nspr \ - nss>=3.21.1:security/nss \ + nss>=3.21.3:security/nss \ libevent2>=2.0.21_2:devel/libevent2 \ soundtouch>=1.9.0:audio/soundtouch \ harfbuzz>=1.1.0:print/harfbuzz \ Modified: branches/2017Q1/www/firefox-esr/distinfo ============================================================================== --- branches/2017Q1/www/firefox-esr/distinfo Tue Jan 24 22:31:03 2017 (r432400) +++ branches/2017Q1/www/firefox-esr/distinfo Tue Jan 24 22:32:58 2017 (r432401) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481330255 -SHA256 (firefox-45.6.0esr.source.tar.xz) = c1e7ddf6efb0f54c8071131b6395f4942a422c2ab70f2e9a81b588373d6fbf5b -SIZE (firefox-45.6.0esr.source.tar.xz) = 183076768 +TIMESTAMP = 1484786354 +SHA256 (firefox-45.7.0esr.source.tar.xz) = 4b5610691d32b77dd0dec25902f0d19e530c184cedc11babb530621cbdd33143 +SIZE (firefox-45.7.0esr.source.tar.xz) = 184131284 Modified: branches/2017Q1/www/libxul/Makefile ============================================================================== --- branches/2017Q1/www/libxul/Makefile Tue Jan 24 22:31:03 2017 (r432400) +++ branches/2017Q1/www/libxul/Makefile Tue Jan 24 22:32:58 2017 (r432401) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libxul -DISTVERSION= 45.6.0 -PORTREVISION= 5 +DISTVERSION= 45.7.0 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build1/source @@ -13,7 +12,7 @@ MAINTAINER?= gecko@FreeBSD.org COMMENT?= Mozilla runtime package that can be used to bootstrap XUL+XPCOM apps BUILD_DEPENDS= nspr>=4.12:devel/nspr \ - nss>=3.21.1:security/nss \ + nss>=3.21.3:security/nss \ libevent2>=2.0.21_2:devel/libevent2 \ soundtouch>=1.9.0:audio/soundtouch \ harfbuzz>=1.1.0:print/harfbuzz \ Modified: branches/2017Q1/www/libxul/distinfo ============================================================================== --- branches/2017Q1/www/libxul/distinfo Tue Jan 24 22:31:03 2017 (r432400) +++ branches/2017Q1/www/libxul/distinfo Tue Jan 24 22:32:58 2017 (r432401) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481330255 -SHA256 (firefox-45.6.0esr.source.tar.xz) = c1e7ddf6efb0f54c8071131b6395f4942a422c2ab70f2e9a81b588373d6fbf5b -SIZE (firefox-45.6.0esr.source.tar.xz) = 183076768 +TIMESTAMP = 1484786354 +SHA256 (firefox-45.7.0esr.source.tar.xz) = 4b5610691d32b77dd0dec25902f0d19e530c184cedc11babb530621cbdd33143 +SIZE (firefox-45.7.0esr.source.tar.xz) = 184131284 Modified: branches/2017Q1/www/linux-firefox/Makefile ============================================================================== --- branches/2017Q1/www/linux-firefox/Makefile Tue Jan 24 22:31:03 2017 (r432400) +++ branches/2017Q1/www/linux-firefox/Makefile Tue Jan 24 22:32:58 2017 (r432401) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 45.6.0 +DISTVERSION= 45.7.0 DISTVERSIONSUFFIX=esr PORTEPOCH= 2 CATEGORIES= www ipv6 Modified: branches/2017Q1/www/linux-firefox/distinfo ============================================================================== --- branches/2017Q1/www/linux-firefox/distinfo Tue Jan 24 22:31:03 2017 (r432400) +++ branches/2017Q1/www/linux-firefox/distinfo Tue Jan 24 22:32:58 2017 (r432401) @@ -1,6 +1,6 @@ -TIMESTAMP = 1481330255 -SHA256 (firefox-45.6.0esr.tar.bz2) = dcee8c2fdd0b55395c18bb75ec06bad95b6665f45ef33123f679a68f0a732d82 -SIZE (firefox-45.6.0esr.tar.bz2) = 52341247 +TIMESTAMP = 1484786354 +SHA256 (firefox-45.7.0esr.tar.bz2) = 6096f2c2e9fc3d611ae2629f3f71f9465eb80b03d89fa5cc28ef9c668214e569 +SIZE (firefox-45.7.0esr.tar.bz2) = 52355533 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 Jan 24 22:38:10 2017 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 427C0CBFED1; Tue, 24 Jan 2017 22:38:10 +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 000217AA; Tue, 24 Jan 2017 22:38:09 +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 v0OMc9FU059144; Tue, 24 Jan 2017 22:38:09 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0OMc8H6059132; Tue, 24 Jan 2017 22:38:08 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701242238.v0OMc8H6059132@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 24 Jan 2017 22:38:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432402 - in branches/2017Q1: Mk Mk/Uses www/firefox www/firefox-i18n 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: Tue, 24 Jan 2017 22:38:10 -0000 Author: jbeich Date: Tue Jan 24 22:38:07 2017 New Revision: 432402 URL: https://svnweb.freebsd.org/changeset/ports/432402 Log: MFH: r431737 r431781 r431858 r432352 www/firefox: update to 51.0 (rc2) Changes: https://www.mozilla.org/firefox/51.0/releasenotes/ Security: e60169c4-aa86-46b0-8ae2-0d81f683df09 Approved by: ports-secteam (feld) Added: branches/2017Q1/www/firefox/files/patch-bug1316879 - copied unchanged from r431737, head/www/firefox/files/patch-bug1316879 branches/2017Q1/www/firefox/files/patch-bug1329895 - copied unchanged from r431737, head/www/firefox/files/patch-bug1329895 Deleted: branches/2017Q1/www/firefox/files/patch-bug1256136 branches/2017Q1/www/firefox/files/patch-bug1290037 branches/2017Q1/www/firefox/files/patch-bug1320621 Modified: branches/2017Q1/Mk/Uses/gecko.mk branches/2017Q1/Mk/bsd.gecko.mk branches/2017Q1/www/firefox-i18n/Makefile branches/2017Q1/www/firefox-i18n/Makefile.lang branches/2017Q1/www/firefox-i18n/Makefile.option branches/2017Q1/www/firefox-i18n/distinfo branches/2017Q1/www/firefox/Makefile branches/2017Q1/www/firefox/distinfo branches/2017Q1/www/firefox/files/patch-bug847568 Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/Mk/Uses/gecko.mk ============================================================================== --- branches/2017Q1/Mk/Uses/gecko.mk Tue Jan 24 22:32:58 2017 (r432401) +++ branches/2017Q1/Mk/Uses/gecko.mk Tue Jan 24 22:38:07 2017 (r432402) @@ -37,12 +37,12 @@ RUN_DEPENDS+= libxul>=45:www/libxul .elif ${gecko_ARGS:Mfirefox} _GECKO_DEFAULT_VERSION= 45 -_GECKO_VERSIONS= 45 50 +_GECKO_VERSIONS= 45 51 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions 45_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr -50_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox +51_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null Modified: branches/2017Q1/Mk/bsd.gecko.mk ============================================================================== --- branches/2017Q1/Mk/bsd.gecko.mk Tue Jan 24 22:32:58 2017 (r432401) +++ branches/2017Q1/Mk/bsd.gecko.mk Tue Jan 24 22:38:07 2017 (r432402) @@ -387,6 +387,9 @@ post-patch-SNDIO-on: .if ${PORT_OPTIONS:MRUST} BUILD_DEPENDS+= rustc:${RUST_PORT} +. if ${MOZILLA_VER:R:R} >= 51 +BUILD_DEPENDS+= cargo:devel/cargo +. endif RUST_PORT?= lang/rust MOZ_OPTIONS+= --enable-rust .else Modified: branches/2017Q1/www/firefox-i18n/Makefile ============================================================================== --- branches/2017Q1/www/firefox-i18n/Makefile Tue Jan 24 22:32:58 2017 (r432401) +++ branches/2017Q1/www/firefox-i18n/Makefile Tue Jan 24 22:38:07 2017 (r432402) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 50.1.0 +PORTVERSION= 51.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build2/linux-i686/xpi @@ -15,7 +15,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:archivers/zip -USES= zip:infozip gecko:firefox,50,build +USES= zip:infozip gecko:firefox,51,build USE_XPI= firefox NO_ARCH= yes Modified: branches/2017Q1/www/firefox-i18n/Makefile.lang ============================================================================== --- branches/2017Q1/www/firefox-i18n/Makefile.lang Tue Jan 24 22:32:58 2017 (r432401) +++ branches/2017Q1/www/firefox-i18n/Makefile.lang Tue Jan 24 22:38:07 2017 (r432402) @@ -1,7 +1,7 @@ # Created by: Koji Yokota # $FreeBSD$ -FIREFOX_I18N_ALL_= ach af an ar as ast az be bg bn-BD bn-IN br bs ca cs \ +FIREFOX_I18N_ALL_= ach af an ar as ast az bg bn-BD bn-IN br bs ca cs \ cy da de dsb el en-GB en-US en-ZA eo es-AR es-CL \ es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl gn \ gu-IN he hi-IN hr hsb hu hy-AM id is it ja kk km \ @@ -33,9 +33,6 @@ FIREFOX_I18N+= ast .if ${PORT_OPTIONS:MLANG_AZ} FIREFOX_I18N+= az .endif -.if ${PORT_OPTIONS:MLANG_BE} -FIREFOX_I18N+= be -.endif .if ${PORT_OPTIONS:MLANG_BG} FIREFOX_I18N+= bg .endif Modified: branches/2017Q1/www/firefox-i18n/Makefile.option ============================================================================== --- branches/2017Q1/www/firefox-i18n/Makefile.option Tue Jan 24 22:32:58 2017 (r432401) +++ branches/2017Q1/www/firefox-i18n/Makefile.option Tue Jan 24 22:38:07 2017 (r432402) @@ -9,7 +9,6 @@ OPTIONS_DEFINE= LANG_ACH \ LANG_AS \ LANG_AST \ LANG_AZ \ - LANG_BE \ LANG_BG \ LANG_BB \ LANG_BN \ Modified: branches/2017Q1/www/firefox-i18n/distinfo ============================================================================== --- branches/2017Q1/www/firefox-i18n/distinfo Tue Jan 24 22:32:58 2017 (r432401) +++ branches/2017Q1/www/firefox-i18n/distinfo Tue Jan 24 22:38:07 2017 (r432402) @@ -1,181 +1,179 @@ -TIMESTAMP = 1481172756 -SHA256 (xpi/firefox-i18n-50.1.0/ach.xpi) = db54b84c0c15fcaba27e2e124049c3f24efa4367fb6ed97daf34a62ad567ce73 -SIZE (xpi/firefox-i18n-50.1.0/ach.xpi) = 425410 -SHA256 (xpi/firefox-i18n-50.1.0/af.xpi) = 1f90832b46c293e69e798a67895b9aba430b869c0e3184a0d611cb06bcb415da -SIZE (xpi/firefox-i18n-50.1.0/af.xpi) = 433950 -SHA256 (xpi/firefox-i18n-50.1.0/an.xpi) = 84a0200f752ae65e0bc08d0cc4a351c69e20d2a513199eb32ace260f078b0266 -SIZE (xpi/firefox-i18n-50.1.0/an.xpi) = 442206 -SHA256 (xpi/firefox-i18n-50.1.0/ar.xpi) = 6d3f8fff35b26a9b5dd86607ab3e504b2796ae5af6e07b6d327901803c1cb94b -SIZE (xpi/firefox-i18n-50.1.0/ar.xpi) = 470436 -SHA256 (xpi/firefox-i18n-50.1.0/as.xpi) = 4f81c6948c19a3c0c0278d0ee0604b84382e013c84cbd729b8bb534ef8d885a9 -SIZE (xpi/firefox-i18n-50.1.0/as.xpi) = 484771 -SHA256 (xpi/firefox-i18n-50.1.0/ast.xpi) = 81918465211a3d0ce575e7d7ef10735a8b7c45738bdf1e2478720c0e5d633709 -SIZE (xpi/firefox-i18n-50.1.0/ast.xpi) = 433850 -SHA256 (xpi/firefox-i18n-50.1.0/az.xpi) = 0c21e6def5113289295652f67f95ea4a3f5be885d781eaac94a0f0ac05111fd2 -SIZE (xpi/firefox-i18n-50.1.0/az.xpi) = 451404 -SHA256 (xpi/firefox-i18n-50.1.0/be.xpi) = 65d6fe396efc6b95dd90bc7fff7061d8643c64fa20180796cc98840ecbf07e4d -SIZE (xpi/firefox-i18n-50.1.0/be.xpi) = 458492 -SHA256 (xpi/firefox-i18n-50.1.0/bg.xpi) = 53623d2bfd9907697b5d7b0e747fb0eecbbea714967c9d36571ac62514a7c6b4 -SIZE (xpi/firefox-i18n-50.1.0/bg.xpi) = 484622 -SHA256 (xpi/firefox-i18n-50.1.0/bn-BD.xpi) = 5768972ee398ed19f3eb254d26598ebd327a340d26ac4cb329e2a990f99edab8 -SIZE (xpi/firefox-i18n-50.1.0/bn-BD.xpi) = 509168 -SHA256 (xpi/firefox-i18n-50.1.0/bn-IN.xpi) = 18ccacde99791e10583c15976b29feb8520cec616896ec2cef3c667a17819def -SIZE (xpi/firefox-i18n-50.1.0/bn-IN.xpi) = 503132 -SHA256 (xpi/firefox-i18n-50.1.0/br.xpi) = 166d2077653f00163accb1d56ad56f76528c874dac47f0b6ed9f2df27300eb0c -SIZE (xpi/firefox-i18n-50.1.0/br.xpi) = 432449 -SHA256 (xpi/firefox-i18n-50.1.0/bs.xpi) = 5d9823adc07551066d342a3652a8861d5194a4f6cf3d5c19aff25e095cbcbf71 -SIZE (xpi/firefox-i18n-50.1.0/bs.xpi) = 439556 -SHA256 (xpi/firefox-i18n-50.1.0/ca.xpi) = bde4ce518973aa378f806f425da45b14fa916e19c9246a53c3655c1b6d7f55c8 -SIZE (xpi/firefox-i18n-50.1.0/ca.xpi) = 440361 -SHA256 (xpi/firefox-i18n-50.1.0/cs.xpi) = 72dfa15075f3a37114a143f0b2bb02e0f0f70a35a119776713d673bee92881da -SIZE (xpi/firefox-i18n-50.1.0/cs.xpi) = 439542 -SHA256 (xpi/firefox-i18n-50.1.0/cy.xpi) = a78071188fa1f9f561c52f970cb0412826db62e67bbcb827ba64aaa23d1c94c0 -SIZE (xpi/firefox-i18n-50.1.0/cy.xpi) = 433665 -SHA256 (xpi/firefox-i18n-50.1.0/da.xpi) = 76dc2bca941cb71e4f2233f91632feeb438cdc82c2c23d06c08e28d300f53552 -SIZE (xpi/firefox-i18n-50.1.0/da.xpi) = 421325 -SHA256 (xpi/firefox-i18n-50.1.0/de.xpi) = bcd98186dc9e9f19c56ae926f4177d52bb70f0510b0eeddb518fa217a98ac630 -SIZE (xpi/firefox-i18n-50.1.0/de.xpi) = 438195 -SHA256 (xpi/firefox-i18n-50.1.0/dsb.xpi) = bfb9285909e173591750d69ccbe7249b4daa252c6f28462ab04ccdfc8fe2bcc6 -SIZE (xpi/firefox-i18n-50.1.0/dsb.xpi) = 456086 -SHA256 (xpi/firefox-i18n-50.1.0/el.xpi) = 146fc2a2bb1a990aeb794fc81a7e952b0d83a8ac15aeb8b508688264b221b751 -SIZE (xpi/firefox-i18n-50.1.0/el.xpi) = 502227 -SHA256 (xpi/firefox-i18n-50.1.0/en-GB.xpi) = 3187df8d2c923979e9c67ce7658111094a9f3f1eb15aa8f270b0f76cdbf9d2ba -SIZE (xpi/firefox-i18n-50.1.0/en-GB.xpi) = 415255 -SHA256 (xpi/firefox-i18n-50.1.0/en-US.xpi) = fae6dd8f778c10cc0a0b6dc4805153cf16a273948794c98dfb8a35dd05ebf1ea -SIZE (xpi/firefox-i18n-50.1.0/en-US.xpi) = 425321 -SHA256 (xpi/firefox-i18n-50.1.0/en-ZA.xpi) = 9ab6b4f4fe4df033a95ebb597f97a6ef99517aea895b7df8411a34d72cf9c472 -SIZE (xpi/firefox-i18n-50.1.0/en-ZA.xpi) = 408747 -SHA256 (xpi/firefox-i18n-50.1.0/eo.xpi) = 2435e4cb414f2c24cafbf3304530696282bce48cc05e394d60053c0d5277a630 -SIZE (xpi/firefox-i18n-50.1.0/eo.xpi) = 434338 -SHA256 (xpi/firefox-i18n-50.1.0/es-AR.xpi) = cb71ab12ca44e1bb37d12cc5823068e9ffcf8235e746f72938bd49afd141fc36 -SIZE (xpi/firefox-i18n-50.1.0/es-AR.xpi) = 439533 -SHA256 (xpi/firefox-i18n-50.1.0/es-CL.xpi) = 8ab50e87e703c5bbc6b8e67a44e660d87cca1227198bb8beb8fd02460eade51a -SIZE (xpi/firefox-i18n-50.1.0/es-CL.xpi) = 440866 -SHA256 (xpi/firefox-i18n-50.1.0/es-ES.xpi) = 029956fbed461784de92ec1a0d3fc6ceff52e5ab46158b20369c74f52b254d80 -SIZE (xpi/firefox-i18n-50.1.0/es-ES.xpi) = 342208 -SHA256 (xpi/firefox-i18n-50.1.0/es-MX.xpi) = 93b072b9658b9dc6c4d88d8b2b9328ee83f9857d29b578531a94bdbfaff8338f -SIZE (xpi/firefox-i18n-50.1.0/es-MX.xpi) = 445100 -SHA256 (xpi/firefox-i18n-50.1.0/et.xpi) = dc5ca066b594e206f0afc598e87129deafcb559363736b7d71f6aa10ad00bd45 -SIZE (xpi/firefox-i18n-50.1.0/et.xpi) = 422048 -SHA256 (xpi/firefox-i18n-50.1.0/eu.xpi) = eaa622437e55deda535ffe4974a8a09b9567c6a14fc648f1f04e60e9694c0c71 -SIZE (xpi/firefox-i18n-50.1.0/eu.xpi) = 435622 -SHA256 (xpi/firefox-i18n-50.1.0/fa.xpi) = ff8f7077f5eda083624a95405890dc569ea0a9eee12f36b144bfc639715229d4 -SIZE (xpi/firefox-i18n-50.1.0/fa.xpi) = 487592 -SHA256 (xpi/firefox-i18n-50.1.0/ff.xpi) = 202821f043547fc43a75ed60de9068b285cb93461e18ec6265829e92a17886cf -SIZE (xpi/firefox-i18n-50.1.0/ff.xpi) = 438310 -SHA256 (xpi/firefox-i18n-50.1.0/fi.xpi) = 9f9c4ea0b9de6a7ae0db1c426d56e3c79c1bfc4087eed78c05db9b083344c7ed -SIZE (xpi/firefox-i18n-50.1.0/fi.xpi) = 426490 -SHA256 (xpi/firefox-i18n-50.1.0/fr.xpi) = 5cd3e02bfae67736c9232c7755c61dd0c6b89824f7b1fa83e5af802e6e87c775 -SIZE (xpi/firefox-i18n-50.1.0/fr.xpi) = 447065 -SHA256 (xpi/firefox-i18n-50.1.0/fy-NL.xpi) = 44ddd7d338d386e4adfdf4894d081b3854684280afeb76846f78d5f183e2d505 -SIZE (xpi/firefox-i18n-50.1.0/fy-NL.xpi) = 441788 -SHA256 (xpi/firefox-i18n-50.1.0/ga-IE.xpi) = fddb1d88ed94575c80f8a7bbe9f21dc0fb49e409cc08fbb2ee32bef78e21ae86 -SIZE (xpi/firefox-i18n-50.1.0/ga-IE.xpi) = 455097 -SHA256 (xpi/firefox-i18n-50.1.0/gd.xpi) = 33a7c184e2877da1bdf45d5a92b950a4bbc753471f88ea90e7c3585cb2043c32 -SIZE (xpi/firefox-i18n-50.1.0/gd.xpi) = 444265 -SHA256 (xpi/firefox-i18n-50.1.0/gl.xpi) = 18c9b30f1de7d04c4675145f05b6e96b18ac0c8f4a26fa7c0ce37f912bc9acb7 -SIZE (xpi/firefox-i18n-50.1.0/gl.xpi) = 451916 -SHA256 (xpi/firefox-i18n-50.1.0/gn.xpi) = 2eb03c758f4ade230d611a4f1a965209642429f82d233381bde0a5e2cf43aadb -SIZE (xpi/firefox-i18n-50.1.0/gn.xpi) = 453225 -SHA256 (xpi/firefox-i18n-50.1.0/gu-IN.xpi) = c1c647eb01b7a7fa71e9fc99750f8a3b23bd5b7d7623d05a175f7eebedb2b5d6 -SIZE (xpi/firefox-i18n-50.1.0/gu-IN.xpi) = 487095 -SHA256 (xpi/firefox-i18n-50.1.0/he.xpi) = f3734156473a998d51f421b206179a4e78b3fb589e1591a3f85600721bf72876 -SIZE (xpi/firefox-i18n-50.1.0/he.xpi) = 455648 -SHA256 (xpi/firefox-i18n-50.1.0/hi-IN.xpi) = 16e8f425db1d3d08293cc6e92c845c05990e8a89607609362d6371360971a837 -SIZE (xpi/firefox-i18n-50.1.0/hi-IN.xpi) = 499704 -SHA256 (xpi/firefox-i18n-50.1.0/hr.xpi) = b16d41138602b16dc38f669312d04e95b90c249dc6eb7066a421c5bffe43bc28 -SIZE (xpi/firefox-i18n-50.1.0/hr.xpi) = 444277 -SHA256 (xpi/firefox-i18n-50.1.0/hsb.xpi) = 91e3b5846538e39bbcc314e72adc338297decfa25aeffde8d53eb0c6cbf251a5 -SIZE (xpi/firefox-i18n-50.1.0/hsb.xpi) = 453907 -SHA256 (xpi/firefox-i18n-50.1.0/hu.xpi) = 6978364271143ab41996efc78f520f3bb687af52267fe01cfb48ec23febb3c26 -SIZE (xpi/firefox-i18n-50.1.0/hu.xpi) = 448352 -SHA256 (xpi/firefox-i18n-50.1.0/hy-AM.xpi) = 6a94b0973613dfca2c230713312221d92a3627c7f2128cee4ec81d71b24b416e -SIZE (xpi/firefox-i18n-50.1.0/hy-AM.xpi) = 492715 -SHA256 (xpi/firefox-i18n-50.1.0/id.xpi) = d90e4b4ede96c33671e283eb1192038f9dbd7bb2d71d53a2353a3add338e3ea0 -SIZE (xpi/firefox-i18n-50.1.0/id.xpi) = 423000 -SHA256 (xpi/firefox-i18n-50.1.0/is.xpi) = 3e85b0206e8538b45d4d6548e053e367524d23b336b0be214971531be5cd3c29 -SIZE (xpi/firefox-i18n-50.1.0/is.xpi) = 435393 -SHA256 (xpi/firefox-i18n-50.1.0/it.xpi) = 37ebf392af8f59e8fd2e241c10d01b61976c52af6909c8a012a40813f2a23647 -SIZE (xpi/firefox-i18n-50.1.0/it.xpi) = 336080 -SHA256 (xpi/firefox-i18n-50.1.0/ja.xpi) = a1675efea45733c61418a943d8b19db9d5c780a29d81c905618ee06993a87394 -SIZE (xpi/firefox-i18n-50.1.0/ja.xpi) = 484310 -SHA256 (xpi/firefox-i18n-50.1.0/kk.xpi) = 020411b4f57db00413cdc648378bf48e6f28b0ff783888b47b9801b31f360363 -SIZE (xpi/firefox-i18n-50.1.0/kk.xpi) = 493718 -SHA256 (xpi/firefox-i18n-50.1.0/km.xpi) = 5f75fba1b2b1094de89b0d050300abbdd8c425718840cab353e01b7515f4cf3a -SIZE (xpi/firefox-i18n-50.1.0/km.xpi) = 518205 -SHA256 (xpi/firefox-i18n-50.1.0/kn.xpi) = 70ab37759463b4fc11bc78db7c6f1208ddcb711bbefdf1bfae6f1d53c4538b9f -SIZE (xpi/firefox-i18n-50.1.0/kn.xpi) = 517625 -SHA256 (xpi/firefox-i18n-50.1.0/ko.xpi) = 5e5e6631db6d3115578c240016dddb884543ef196647b04d62b0ce1c27c0a38a -SIZE (xpi/firefox-i18n-50.1.0/ko.xpi) = 460199 -SHA256 (xpi/firefox-i18n-50.1.0/lij.xpi) = 8857040d7ad2b7b31bfe1262939e238467fbe0e7fdb9fae3077991b10e847d5d -SIZE (xpi/firefox-i18n-50.1.0/lij.xpi) = 394009 -SHA256 (xpi/firefox-i18n-50.1.0/lt.xpi) = cd7f0dd21c9316ef4cd028ad213f006b8b065416dac7c25fcf3f70ebf783b96e -SIZE (xpi/firefox-i18n-50.1.0/lt.xpi) = 449250 -SHA256 (xpi/firefox-i18n-50.1.0/lv.xpi) = 499f7870b5436d4d676c5b0237a8e5f3a36dcc7e33e1202e0f756353cf147d64 -SIZE (xpi/firefox-i18n-50.1.0/lv.xpi) = 444936 -SHA256 (xpi/firefox-i18n-50.1.0/mai.xpi) = 81b3e68c6b540fdf337fdbcd7a92e813d5d2de67b70696c188b7367dd897eced -SIZE (xpi/firefox-i18n-50.1.0/mai.xpi) = 497919 -SHA256 (xpi/firefox-i18n-50.1.0/mk.xpi) = ef03c0ce5005e6973e7c6ae52431c9af8493f809999a76d49df21a8844e56608 -SIZE (xpi/firefox-i18n-50.1.0/mk.xpi) = 494591 -SHA256 (xpi/firefox-i18n-50.1.0/ml.xpi) = 8ca7aad3bfe7247108b6fefd3eb498e9d20e45bcec74d546cbd77ceee04a9d9d -SIZE (xpi/firefox-i18n-50.1.0/ml.xpi) = 514614 -SHA256 (xpi/firefox-i18n-50.1.0/mr.xpi) = b349d5ce15844c4a0081396f439f3df9864220c53c89780c94f6ace62c432cce -SIZE (xpi/firefox-i18n-50.1.0/mr.xpi) = 498731 -SHA256 (xpi/firefox-i18n-50.1.0/ms.xpi) = 2150f76796e717f1c5205f75f0486d7b35c318b1d5a5145777286e4631098257 -SIZE (xpi/firefox-i18n-50.1.0/ms.xpi) = 433891 -SHA256 (xpi/firefox-i18n-50.1.0/nb-NO.xpi) = e01046e7f9f3be466e51314faedf31e4f0132f66568f3a1c4017b2b827c91070 -SIZE (xpi/firefox-i18n-50.1.0/nb-NO.xpi) = 431341 -SHA256 (xpi/firefox-i18n-50.1.0/nl.xpi) = e29c868af5d5d218dcf36969e118fc6d8d9889f6562e1fab493b3a0e79b896db -SIZE (xpi/firefox-i18n-50.1.0/nl.xpi) = 429142 -SHA256 (xpi/firefox-i18n-50.1.0/nn-NO.xpi) = 0e62ebc13749cda45cb7c69d5eb68ea5a8e5691559e4d427fc7dc0c949f44be4 -SIZE (xpi/firefox-i18n-50.1.0/nn-NO.xpi) = 425413 -SHA256 (xpi/firefox-i18n-50.1.0/or.xpi) = 3e81619b1ddaa43d21d6cc971965fa675a26181e8f62ed21b18b1791894757d6 -SIZE (xpi/firefox-i18n-50.1.0/or.xpi) = 495202 -SHA256 (xpi/firefox-i18n-50.1.0/pa-IN.xpi) = 085dddc431a6b510e7dc409217e9958adc148c1e19adb47d42fc5579e7b9f120 -SIZE (xpi/firefox-i18n-50.1.0/pa-IN.xpi) = 474241 -SHA256 (xpi/firefox-i18n-50.1.0/pl.xpi) = 42dd3339773d32c95a03e9fc5b3816f5433c1c1c3e63aac5e345376f86abaef2 -SIZE (xpi/firefox-i18n-50.1.0/pl.xpi) = 353777 -SHA256 (xpi/firefox-i18n-50.1.0/pt-BR.xpi) = a33ef5db5f8b0cd4d601929d91e8c88b1c6397e9afa155b08eaf20ab78f3953e -SIZE (xpi/firefox-i18n-50.1.0/pt-BR.xpi) = 438615 -SHA256 (xpi/firefox-i18n-50.1.0/pt-PT.xpi) = c2ddec6e2ed7a1e74fcefa5d0887e99a3015888d54b783d9ed1577cac98b8a4d -SIZE (xpi/firefox-i18n-50.1.0/pt-PT.xpi) = 433532 -SHA256 (xpi/firefox-i18n-50.1.0/rm.xpi) = 0bfd6923f26daed995bf6484a9174add457851177c55b7cc7890df1ab6639084 -SIZE (xpi/firefox-i18n-50.1.0/rm.xpi) = 431604 -SHA256 (xpi/firefox-i18n-50.1.0/ro.xpi) = 273e122349d4b003de3de2d0fafbb22e1cf498717f368ffddf1d0993b7b73a87 -SIZE (xpi/firefox-i18n-50.1.0/ro.xpi) = 445556 -SHA256 (xpi/firefox-i18n-50.1.0/ru.xpi) = 789e045aec63b3be715b3405369676661c1f3b61aca4089e34d31aa8b659755c -SIZE (xpi/firefox-i18n-50.1.0/ru.xpi) = 390433 -SHA256 (xpi/firefox-i18n-50.1.0/si.xpi) = b1e1f3571b16b6094d227bc2ddc55788effbc274918da915f4a17962c97788af -SIZE (xpi/firefox-i18n-50.1.0/si.xpi) = 486232 -SHA256 (xpi/firefox-i18n-50.1.0/sk.xpi) = f2c93b899bbfce32102f2eddc35744ee98528384ef1f1a269577e44e0a644c98 -SIZE (xpi/firefox-i18n-50.1.0/sk.xpi) = 452174 -SHA256 (xpi/firefox-i18n-50.1.0/sl.xpi) = 19dc731ddd193e207b022607381e68004abc886464d849c50755ea4d31e61df0 -SIZE (xpi/firefox-i18n-50.1.0/sl.xpi) = 430207 -SHA256 (xpi/firefox-i18n-50.1.0/son.xpi) = 1da8f877c0d00333dfdcb21a9115c04f233986ca987ba5739b91ad7877b33d59 -SIZE (xpi/firefox-i18n-50.1.0/son.xpi) = 433273 -SHA256 (xpi/firefox-i18n-50.1.0/sq.xpi) = 041e88f2d34a715225ebc6ec78ae75cbca3c8a97221c1f6a64e3f06fbdc8dde1 -SIZE (xpi/firefox-i18n-50.1.0/sq.xpi) = 449092 -SHA256 (xpi/firefox-i18n-50.1.0/sr.xpi) = 7b1ef7b953890ba61c58e57e6149fafea873e39167961831a61599d7be4d39cf -SIZE (xpi/firefox-i18n-50.1.0/sr.xpi) = 459593 -SHA256 (xpi/firefox-i18n-50.1.0/sv-SE.xpi) = f50f74e78b3d1424aec6396747c66413713bbb82aa26eed37abdfa7b228ca6ec -SIZE (xpi/firefox-i18n-50.1.0/sv-SE.xpi) = 438327 -SHA256 (xpi/firefox-i18n-50.1.0/ta.xpi) = 434425518bba81a965e0771b7c379e32fb0688eb0aeb1302d74823ee5515d9f5 -SIZE (xpi/firefox-i18n-50.1.0/ta.xpi) = 489664 -SHA256 (xpi/firefox-i18n-50.1.0/te.xpi) = 5ede0cec24269fad84f1c8eec17f3da5be59e452f470e13926ddf351fcc5e11b -SIZE (xpi/firefox-i18n-50.1.0/te.xpi) = 515622 -SHA256 (xpi/firefox-i18n-50.1.0/th.xpi) = d6918d086f2e461b50d56f4dec9e98de9f8cd8bb75b84d108eee8020406c2893 -SIZE (xpi/firefox-i18n-50.1.0/th.xpi) = 484869 -SHA256 (xpi/firefox-i18n-50.1.0/tr.xpi) = f667b82e5893c63a893aa1daede1bbab3468c0cebc35dd64f7f689c85f235b35 -SIZE (xpi/firefox-i18n-50.1.0/tr.xpi) = 440603 -SHA256 (xpi/firefox-i18n-50.1.0/uk.xpi) = ef2a937b6c9015b7b46dc8837aaa4011c83dbeacdfa2a11820d7efe2301e7d5c -SIZE (xpi/firefox-i18n-50.1.0/uk.xpi) = 490968 -SHA256 (xpi/firefox-i18n-50.1.0/uz.xpi) = 22da17f8404fe6a98d58812e85eb70a5c7de898ab0f3f3598b3fc6a0adecc8ed -SIZE (xpi/firefox-i18n-50.1.0/uz.xpi) = 444775 -SHA256 (xpi/firefox-i18n-50.1.0/vi.xpi) = 5fb86b8039a3ec5f5d29887dbbcf6ddd843c6818ea28ce422ac839ac82098b82 -SIZE (xpi/firefox-i18n-50.1.0/vi.xpi) = 447653 -SHA256 (xpi/firefox-i18n-50.1.0/xh.xpi) = 5dee657d054ec57f480523ce6ee6b02e63b4173edda319cafc0ed246d9368a52 -SIZE (xpi/firefox-i18n-50.1.0/xh.xpi) = 437879 -SHA256 (xpi/firefox-i18n-50.1.0/zh-CN.xpi) = 258db702f1ada9105bcd6b11e8ddf8197246dff9bc18ee2ab0eb9e4b5ea3f6b2 -SIZE (xpi/firefox-i18n-50.1.0/zh-CN.xpi) = 457904 -SHA256 (xpi/firefox-i18n-50.1.0/zh-TW.xpi) = ce6729051516187b63af735a0470a4904183499f03dddd849b314a94d4629bcb -SIZE (xpi/firefox-i18n-50.1.0/zh-TW.xpi) = 469091 +TIMESTAMP = 1484620411 +SHA256 (xpi/firefox-i18n-51.0/ach.xpi) = 2db50aa5fe8866e0835316817a8f605dd517711fc59ac87eb1c27d259e1dcdb7 +SIZE (xpi/firefox-i18n-51.0/ach.xpi) = 422477 +SHA256 (xpi/firefox-i18n-51.0/af.xpi) = b4ee7ec17f3b9334630ff35e01c1aad47a0f493306eefd21b7dceccb274053d5 +SIZE (xpi/firefox-i18n-51.0/af.xpi) = 430607 +SHA256 (xpi/firefox-i18n-51.0/an.xpi) = 3d3a2396ab5083853e20b2cd3fa519642e6f4cd2b66cf446e80c7a794987c64a +SIZE (xpi/firefox-i18n-51.0/an.xpi) = 439498 +SHA256 (xpi/firefox-i18n-51.0/ar.xpi) = 3d93c078f8f89dd4993069fa673ceba70b3cc5be7c452afd37063b11e8f5dcbe +SIZE (xpi/firefox-i18n-51.0/ar.xpi) = 467364 +SHA256 (xpi/firefox-i18n-51.0/as.xpi) = 2ba58525cc4f1393015ddcecc286df6c1c1fbab69fc38e697a694625dc325e71 +SIZE (xpi/firefox-i18n-51.0/as.xpi) = 481205 +SHA256 (xpi/firefox-i18n-51.0/ast.xpi) = 267db3935e315e28c8fcfd3971b7885f7901294b90172e808fbcd28c2c26ae55 +SIZE (xpi/firefox-i18n-51.0/ast.xpi) = 433413 +SHA256 (xpi/firefox-i18n-51.0/az.xpi) = 7fc38d646f814b286c0ef2c8bbfd1a7b17c88d3c628c22c559cce018ab1ca461 +SIZE (xpi/firefox-i18n-51.0/az.xpi) = 448402 +SHA256 (xpi/firefox-i18n-51.0/bg.xpi) = ced3d6568e3421dafe0b8cda07f7d29c5421e038d42bcac759458133a1f3b272 +SIZE (xpi/firefox-i18n-51.0/bg.xpi) = 481419 +SHA256 (xpi/firefox-i18n-51.0/bn-BD.xpi) = 94f1f7a8decc0cb8c4accd1826b8f335b16abbb259359566be5e25529998d349 +SIZE (xpi/firefox-i18n-51.0/bn-BD.xpi) = 506131 +SHA256 (xpi/firefox-i18n-51.0/bn-IN.xpi) = c02c9b776479800c2815811921d5c334d3079fad1b10b5668f1cad2883d40951 +SIZE (xpi/firefox-i18n-51.0/bn-IN.xpi) = 503270 +SHA256 (xpi/firefox-i18n-51.0/br.xpi) = ad0f3653a2f98487de066e7f2bfc5a3cb164e5a813863c0fda921ec496fa0363 +SIZE (xpi/firefox-i18n-51.0/br.xpi) = 429716 +SHA256 (xpi/firefox-i18n-51.0/bs.xpi) = cfdcf39092ef00377d7beab3859b7de11174bf7c3654cca7b9734ac4b255e6c3 +SIZE (xpi/firefox-i18n-51.0/bs.xpi) = 435977 +SHA256 (xpi/firefox-i18n-51.0/ca.xpi) = 1115b657c3899829009f4c8e553d2cba22fba271c5750a596920d81065d6dd77 +SIZE (xpi/firefox-i18n-51.0/ca.xpi) = 437596 +SHA256 (xpi/firefox-i18n-51.0/cs.xpi) = bb4b595d981bbbc56058d41ce73e9f6666ab410d43b8bd49f899fcc941a2af80 +SIZE (xpi/firefox-i18n-51.0/cs.xpi) = 437009 +SHA256 (xpi/firefox-i18n-51.0/cy.xpi) = 96b50da1eb50b38a83dd6e0065a79c069dce2c762ea4dbb87a47282bab68ebda +SIZE (xpi/firefox-i18n-51.0/cy.xpi) = 430766 +SHA256 (xpi/firefox-i18n-51.0/da.xpi) = 7206aa12af4f69d70f598438fb4c8ee528517f7595db5d1d1b51055e851f3a88 +SIZE (xpi/firefox-i18n-51.0/da.xpi) = 418405 +SHA256 (xpi/firefox-i18n-51.0/de.xpi) = 4e10974ed2d4e260c9eb1205d131cdb1fdf9672584d330396e5f53a28b977cf0 +SIZE (xpi/firefox-i18n-51.0/de.xpi) = 435628 +SHA256 (xpi/firefox-i18n-51.0/dsb.xpi) = 53a4d8c6175091a724a5c5d94d552ad761ae6aad2643d8f3a2d068a3661dc117 +SIZE (xpi/firefox-i18n-51.0/dsb.xpi) = 453122 +SHA256 (xpi/firefox-i18n-51.0/el.xpi) = 011e683dfca482754bcf7a722ad46ec17a920aa012d8f238012c42f05687e5a9 +SIZE (xpi/firefox-i18n-51.0/el.xpi) = 498855 +SHA256 (xpi/firefox-i18n-51.0/en-GB.xpi) = 7f7a3fbb98c0b0411c81d8fb04f300f0548ddbdeb99a225a775c35742b372134 +SIZE (xpi/firefox-i18n-51.0/en-GB.xpi) = 412807 +SHA256 (xpi/firefox-i18n-51.0/en-US.xpi) = 91c8fdb94a50aaf34cbed5e319850ee6df09c9d2c1bb7d98ec3fbc575527938f +SIZE (xpi/firefox-i18n-51.0/en-US.xpi) = 422546 +SHA256 (xpi/firefox-i18n-51.0/en-ZA.xpi) = eb92618d4ce84735671bec8c9e7d8a1a310d1ce0648e259d8b547cb73ed31c5d +SIZE (xpi/firefox-i18n-51.0/en-ZA.xpi) = 406317 +SHA256 (xpi/firefox-i18n-51.0/eo.xpi) = 0f38d937e8d6e6560b1907ac8fc21e72c1daef9d87b244d9dfaf7e3ccdf1dc19 +SIZE (xpi/firefox-i18n-51.0/eo.xpi) = 431475 +SHA256 (xpi/firefox-i18n-51.0/es-AR.xpi) = bd828cdeed17fe2a606ed6bda40852b46537ea320741619dcfefc0c29878d40c +SIZE (xpi/firefox-i18n-51.0/es-AR.xpi) = 436849 +SHA256 (xpi/firefox-i18n-51.0/es-CL.xpi) = a14285e925cfcf01cde25cec6dd6fd2f7d90c78abc0f0734949a02a48f981e76 +SIZE (xpi/firefox-i18n-51.0/es-CL.xpi) = 439570 +SHA256 (xpi/firefox-i18n-51.0/es-ES.xpi) = dc3a1b1a50dae2885b24e8bdd58e17c67a108dfad4712f291007af4ddc5fe8cb +SIZE (xpi/firefox-i18n-51.0/es-ES.xpi) = 340415 +SHA256 (xpi/firefox-i18n-51.0/es-MX.xpi) = 77f11998e4e5dae7b1e42a3d4601bd32c720df72496bb5b526ff05cd90a65301 +SIZE (xpi/firefox-i18n-51.0/es-MX.xpi) = 442425 +SHA256 (xpi/firefox-i18n-51.0/et.xpi) = 24b4d7ab975f624618ec524e0fee5a64b943d90cc339ab37af671efd9448f0c6 +SIZE (xpi/firefox-i18n-51.0/et.xpi) = 419370 +SHA256 (xpi/firefox-i18n-51.0/eu.xpi) = 5cf55b5a15eb77b13557646cb7db1963ebfe717e9ce291fea868005dac7d7174 +SIZE (xpi/firefox-i18n-51.0/eu.xpi) = 432700 +SHA256 (xpi/firefox-i18n-51.0/fa.xpi) = f461c631c33b90a738b7e158556408966f1a429f4bac27d01f14e6b823385f75 +SIZE (xpi/firefox-i18n-51.0/fa.xpi) = 484366 +SHA256 (xpi/firefox-i18n-51.0/ff.xpi) = eecfff13c273289228c20fb710847f74236e60088afbfd62368b9cb66f3b2b7c +SIZE (xpi/firefox-i18n-51.0/ff.xpi) = 435444 +SHA256 (xpi/firefox-i18n-51.0/fi.xpi) = 1a43ec5bdc3355486d2db56ce77c21d8361a4745ddaaab82e3a13349d4f801aa +SIZE (xpi/firefox-i18n-51.0/fi.xpi) = 424025 +SHA256 (xpi/firefox-i18n-51.0/fr.xpi) = 2fe646ccaa1cf4e5e2601459452e364f9bfccc0bb8ff37d5105505576d338e0a +SIZE (xpi/firefox-i18n-51.0/fr.xpi) = 444127 +SHA256 (xpi/firefox-i18n-51.0/fy-NL.xpi) = b03faae59547ccea4b55a12ed67874eb86af4d9b6aa3c7b9a2f2c6a74194b6e7 +SIZE (xpi/firefox-i18n-51.0/fy-NL.xpi) = 439354 +SHA256 (xpi/firefox-i18n-51.0/ga-IE.xpi) = 8be3e3530480fb9fa2b892dc027a78048d947b655c0b6db0e45b83de1288a068 +SIZE (xpi/firefox-i18n-51.0/ga-IE.xpi) = 452112 +SHA256 (xpi/firefox-i18n-51.0/gd.xpi) = 26b53d668cab518e1d350b875a0221148ce09c1fa7c0e5cd106b058532df925c +SIZE (xpi/firefox-i18n-51.0/gd.xpi) = 441391 +SHA256 (xpi/firefox-i18n-51.0/gl.xpi) = e1295088a34bc6d0c569c79cd2c7beb8f3f0574ff6f315b8825c060ba1bba3cb +SIZE (xpi/firefox-i18n-51.0/gl.xpi) = 444050 +SHA256 (xpi/firefox-i18n-51.0/gn.xpi) = 92c52452dbcfbf1b5f65ab0f837441bc44c1170aca1bc686e5e64bbd6c5c8d36 +SIZE (xpi/firefox-i18n-51.0/gn.xpi) = 450227 +SHA256 (xpi/firefox-i18n-51.0/gu-IN.xpi) = d50f96985e4a81f85ddc876359d1afc2dd1038ceffd95c2eddf3ffd704586951 +SIZE (xpi/firefox-i18n-51.0/gu-IN.xpi) = 483510 +SHA256 (xpi/firefox-i18n-51.0/he.xpi) = 6a3db03de54e4e10bbf980081bac1e980327c8dcd43b2bb40f0bb38d20418b03 +SIZE (xpi/firefox-i18n-51.0/he.xpi) = 452767 +SHA256 (xpi/firefox-i18n-51.0/hi-IN.xpi) = 97376eef6cfa37909206f3eec1546b61757762a6c3f9c8a1e936cb7e3654ec0c +SIZE (xpi/firefox-i18n-51.0/hi-IN.xpi) = 499946 +SHA256 (xpi/firefox-i18n-51.0/hr.xpi) = 3b4da4a9088352c30772d7dff4e4b723279b56883f43f046de9419574edf4b39 +SIZE (xpi/firefox-i18n-51.0/hr.xpi) = 441580 +SHA256 (xpi/firefox-i18n-51.0/hsb.xpi) = bfd26d94fba685df3df36ec2e729cf9e24f4c4ff7d12731fc98a4aea48bcc944 +SIZE (xpi/firefox-i18n-51.0/hsb.xpi) = 451002 +SHA256 (xpi/firefox-i18n-51.0/hu.xpi) = 7373e4aa1bdc2a39518266db0b117c71b5438a0a72ef60eb50c84942942b2160 +SIZE (xpi/firefox-i18n-51.0/hu.xpi) = 445379 +SHA256 (xpi/firefox-i18n-51.0/hy-AM.xpi) = 5b4f91353db0c74e9af94ba74d0d31b0317b4af55c44a7d33ccc3ffea17e49ad +SIZE (xpi/firefox-i18n-51.0/hy-AM.xpi) = 489193 +SHA256 (xpi/firefox-i18n-51.0/id.xpi) = 3a0f000fac7f542811b24b34d2aee0ed4749f1f7337afcd4fa2a9fd57b1e2660 +SIZE (xpi/firefox-i18n-51.0/id.xpi) = 420114 +SHA256 (xpi/firefox-i18n-51.0/is.xpi) = a9a4fdb1b2e153773d9bbef9fce05947d2313caaa608561b73932257704d953b +SIZE (xpi/firefox-i18n-51.0/is.xpi) = 432632 +SHA256 (xpi/firefox-i18n-51.0/it.xpi) = 8da1fec9e5f5db030c17590c875aff0a100afd77db1aad7067fa3d931ed03b68 +SIZE (xpi/firefox-i18n-51.0/it.xpi) = 334920 +SHA256 (xpi/firefox-i18n-51.0/ja.xpi) = b4ff63d51449460b758948bd8e73bc932d24b2e14501ee076bcae5b70892be3e +SIZE (xpi/firefox-i18n-51.0/ja.xpi) = 481874 +SHA256 (xpi/firefox-i18n-51.0/kk.xpi) = 000ed1c4d96b3a8807ece3f502a900bcf3d8ba3889200d6d922e37bba8e135c4 +SIZE (xpi/firefox-i18n-51.0/kk.xpi) = 490747 +SHA256 (xpi/firefox-i18n-51.0/km.xpi) = bf312dccb93b24038cbdff0941276c2704f54ea4588a80b9d7a337ed894cf5b7 +SIZE (xpi/firefox-i18n-51.0/km.xpi) = 514270 +SHA256 (xpi/firefox-i18n-51.0/kn.xpi) = a8b4024791d910285dc9d763b3d6ec3cdf5289683beacd000fde122d79af3810 +SIZE (xpi/firefox-i18n-51.0/kn.xpi) = 514060 +SHA256 (xpi/firefox-i18n-51.0/ko.xpi) = 2aa83c07862474156bee35da55ad1eefac9ff63624b65ef7543276a8d3f568f3 +SIZE (xpi/firefox-i18n-51.0/ko.xpi) = 457535 +SHA256 (xpi/firefox-i18n-51.0/lij.xpi) = 34cc82b5ea5a5b16e87f70716dc32a37cac72cbb163e804b6c574035f299d67f +SIZE (xpi/firefox-i18n-51.0/lij.xpi) = 410712 +SHA256 (xpi/firefox-i18n-51.0/lt.xpi) = c1cbcebf3954409cab56825a020ad23c53f8814674d94e4b12dca6f361c13ac4 +SIZE (xpi/firefox-i18n-51.0/lt.xpi) = 446152 +SHA256 (xpi/firefox-i18n-51.0/lv.xpi) = ded68e952783c8048ba3d190fc97ef49675828b2de0ffbb92bd7e450c2e82ee3 +SIZE (xpi/firefox-i18n-51.0/lv.xpi) = 442269 +SHA256 (xpi/firefox-i18n-51.0/mai.xpi) = 58466c629a402d0e5f050fceaa7a806605dabca3604f8cf8c0e335022370ebe4 +SIZE (xpi/firefox-i18n-51.0/mai.xpi) = 494292 +SHA256 (xpi/firefox-i18n-51.0/mk.xpi) = 8558a01bbcd28a679b8808b579a73aeb95f27403b9aa19bcdd4f7d0188d077d8 +SIZE (xpi/firefox-i18n-51.0/mk.xpi) = 490960 +SHA256 (xpi/firefox-i18n-51.0/ml.xpi) = db1b8d37d3d77fc3ca0317b10db8e74255567b6c8f9026ab34cd866ce523489d +SIZE (xpi/firefox-i18n-51.0/ml.xpi) = 510895 +SHA256 (xpi/firefox-i18n-51.0/mr.xpi) = 4915727a4314058a96d6ebb229112dceee9ddeea2968aacbe6420b905b2be1d6 +SIZE (xpi/firefox-i18n-51.0/mr.xpi) = 495859 +SHA256 (xpi/firefox-i18n-51.0/ms.xpi) = 312cf883fa61415601ae510df828aad123db1f8d227f0f4612ecea4582d87ee3 +SIZE (xpi/firefox-i18n-51.0/ms.xpi) = 430330 +SHA256 (xpi/firefox-i18n-51.0/nb-NO.xpi) = 07b5f1fb9cdeaa232d00dfa37700b5553b18ed1d6a03d28fc91b188e5f350c66 +SIZE (xpi/firefox-i18n-51.0/nb-NO.xpi) = 428672 +SHA256 (xpi/firefox-i18n-51.0/nl.xpi) = 11c844e878c0ab1ccd7f7b8ba317702beb75bca7b64041d8a3694ba66ad92368 +SIZE (xpi/firefox-i18n-51.0/nl.xpi) = 426235 +SHA256 (xpi/firefox-i18n-51.0/nn-NO.xpi) = 7cc499b354635a0413bed4709530383c0f63529ad3e078dda11b4d550d186ceb +SIZE (xpi/firefox-i18n-51.0/nn-NO.xpi) = 422802 +SHA256 (xpi/firefox-i18n-51.0/or.xpi) = c7b5f436bafff1e062194f04036baff0737731775ec27fb1b7498ed69a8490bd +SIZE (xpi/firefox-i18n-51.0/or.xpi) = 491270 +SHA256 (xpi/firefox-i18n-51.0/pa-IN.xpi) = 15e2743d9b401b119eb8f082be18e6b29f7002ab21f7e316d0738731917d556a +SIZE (xpi/firefox-i18n-51.0/pa-IN.xpi) = 471452 +SHA256 (xpi/firefox-i18n-51.0/pl.xpi) = ab72ad3b2bbfa2303058cb889130141ab7c8c08aeb9a5b3fe1252d7426037452 +SIZE (xpi/firefox-i18n-51.0/pl.xpi) = 349710 +SHA256 (xpi/firefox-i18n-51.0/pt-BR.xpi) = a6f5c484cb225ea7020f7480415b1f72853a971ba8c49c211b0678126b55ac61 +SIZE (xpi/firefox-i18n-51.0/pt-BR.xpi) = 431874 +SHA256 (xpi/firefox-i18n-51.0/pt-PT.xpi) = 6cdf475cc23904f2c24de602c58a0f9bfdd08961b8b5dd6f1f9de91f83eb0190 +SIZE (xpi/firefox-i18n-51.0/pt-PT.xpi) = 430721 +SHA256 (xpi/firefox-i18n-51.0/rm.xpi) = 74792c022c5cbdeeb99d0588de585573c303acdab7d99837138ffaf588d234f5 +SIZE (xpi/firefox-i18n-51.0/rm.xpi) = 428935 +SHA256 (xpi/firefox-i18n-51.0/ro.xpi) = 9c2516ef38104fbf62279bae439cdbbc15f79f8071f39dd1f59d5c67e949eaeb +SIZE (xpi/firefox-i18n-51.0/ro.xpi) = 442675 +SHA256 (xpi/firefox-i18n-51.0/ru.xpi) = 6d0e717fed5f2d17ee75922d38b1f743b4618427e9eb157e0237972abc69b244 +SIZE (xpi/firefox-i18n-51.0/ru.xpi) = 390302 +SHA256 (xpi/firefox-i18n-51.0/si.xpi) = 8bdab7ebe72e9c03d740c1b8769f06e9cec48a6071c8af2588ccb52b59a280de +SIZE (xpi/firefox-i18n-51.0/si.xpi) = 486606 +SHA256 (xpi/firefox-i18n-51.0/sk.xpi) = b6290e686bbe6680dea580fb13e2f49f05bd99a5f86c3ec23075a570684c7811 +SIZE (xpi/firefox-i18n-51.0/sk.xpi) = 449705 +SHA256 (xpi/firefox-i18n-51.0/sl.xpi) = 7eb86699ca252c33cd8b0480e9430272b30496074b6d1ad85cb69dfb0aa3a4e4 +SIZE (xpi/firefox-i18n-51.0/sl.xpi) = 427695 +SHA256 (xpi/firefox-i18n-51.0/son.xpi) = 882c537350f8b715616619f016c9b83dce584e447e81841259153613791587d1 +SIZE (xpi/firefox-i18n-51.0/son.xpi) = 430449 +SHA256 (xpi/firefox-i18n-51.0/sq.xpi) = 56d8da862d4d06045b80a6922c53b7a65045ff01cb550a7ebd9a7d744b407808 +SIZE (xpi/firefox-i18n-51.0/sq.xpi) = 441708 +SHA256 (xpi/firefox-i18n-51.0/sr.xpi) = c165029f40839c68caa2d28f21991033e198ab83829383127a37aeacfd190aca +SIZE (xpi/firefox-i18n-51.0/sr.xpi) = 457265 +SHA256 (xpi/firefox-i18n-51.0/sv-SE.xpi) = 24774105439f44489ca6b474237958e0854b1990ea39b281c963e6f3931e7c3a +SIZE (xpi/firefox-i18n-51.0/sv-SE.xpi) = 435423 +SHA256 (xpi/firefox-i18n-51.0/ta.xpi) = 34a51884ba2a8dc8873cb92a79f9337ed4c689f7aafe9d5de759ca401f358091 +SIZE (xpi/firefox-i18n-51.0/ta.xpi) = 487835 +SHA256 (xpi/firefox-i18n-51.0/te.xpi) = 2b5a18643ce387ee7c5b9e94eb34a842c7c94f247109e2206dbbddd3fee92d9e +SIZE (xpi/firefox-i18n-51.0/te.xpi) = 509507 +SHA256 (xpi/firefox-i18n-51.0/th.xpi) = 485d05b53d78f0d9cdab9ab85f008e64e03ee95744b233527d813fb233f9feaa +SIZE (xpi/firefox-i18n-51.0/th.xpi) = 483236 +SHA256 (xpi/firefox-i18n-51.0/tr.xpi) = 44a2655b3967c7806f490e98516102568b46f209e97c8598949e2ac37c10f39c +SIZE (xpi/firefox-i18n-51.0/tr.xpi) = 437679 +SHA256 (xpi/firefox-i18n-51.0/uk.xpi) = 745c07248cd06abb4e5b991359e4709752116ecae312dd2f20e74abfe78a721d +SIZE (xpi/firefox-i18n-51.0/uk.xpi) = 488159 +SHA256 (xpi/firefox-i18n-51.0/uz.xpi) = bb08a8d7dc74ac27410023b64a68e4ca278f6c5e08a921d6fde03e83349992d6 +SIZE (xpi/firefox-i18n-51.0/uz.xpi) = 441919 +SHA256 (xpi/firefox-i18n-51.0/vi.xpi) = f8115f22024219571e56dfd14eb750b6f95cb7e9703cf4c2cacd0d179b78c966 +SIZE (xpi/firefox-i18n-51.0/vi.xpi) = 444515 +SHA256 (xpi/firefox-i18n-51.0/xh.xpi) = a27521d0f47d58cf075f75e24a63e1db7c7e26064a8f3a89549c504137210503 +SIZE (xpi/firefox-i18n-51.0/xh.xpi) = 435393 +SHA256 (xpi/firefox-i18n-51.0/zh-CN.xpi) = 4a520e048ae526c7728590d0babd73d63fc6948b5577325222454491e57b4ffd +SIZE (xpi/firefox-i18n-51.0/zh-CN.xpi) = 455758 +SHA256 (xpi/firefox-i18n-51.0/zh-TW.xpi) = 9ec030d762c6d574a34ac141006e3a124e7b9b20005f5e9c08eda25e3864406a +SIZE (xpi/firefox-i18n-51.0/zh-TW.xpi) = 466460 Modified: branches/2017Q1/www/firefox/Makefile ============================================================================== --- branches/2017Q1/www/firefox/Makefile Tue Jan 24 22:32:58 2017 (r432401) +++ branches/2017Q1/www/firefox/Makefile Tue Jan 24 22:38:07 2017 (r432402) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 50.1.0 +DISTVERSION= 51.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 6 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ @@ -13,15 +13,15 @@ MASTER_SITES= MOZILLA/${PORTNAME}/releas MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla -BUILD_DEPENDS= nspr>=4.12:devel/nspr \ - nss>=3.26.2:security/nss \ +BUILD_DEPENDS= nspr>=4.13.1:devel/nspr \ + nss>=3.28.1:security/nss \ libevent2>=2.0.21_2:devel/libevent2 \ - harfbuzz>=1.2.6:print/harfbuzz \ + harfbuzz>=1.3.3:print/harfbuzz \ graphite2>=1.3.8:graphics/graphite2 \ - png>=1.6.23:graphics/png \ + png>=1.6.25:graphics/png \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ - sqlite3>=3.13:databases/sqlite3 \ + sqlite3>=3.14.1:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ @@ -48,9 +48,8 @@ MOZ_OPTIONS= --enable-application=browse OPTIONS_DEFINE= RUST OPTIONS_DEFAULT= BUNDLED_CAIRO GTK3 OPTIONS_EXCLUDE_FreeBSD_9= RUST -# XXX lang/rust currently builds only on these platforms +# XXX lang/rust and devel/cargo currently build only on these platforms OPTIONS_DEFAULT_amd64= RUST -OPTIONS_DEFAULT_i386= RUST OPTIONS_SINGLE+= TOOLKIT OPTIONS_SINGLE_TOOLKIT= GTK2 GTK3 Modified: branches/2017Q1/www/firefox/distinfo ============================================================================== --- branches/2017Q1/www/firefox/distinfo Tue Jan 24 22:32:58 2017 (r432401) +++ branches/2017Q1/www/firefox/distinfo Tue Jan 24 22:38:07 2017 (r432402) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481320836 -SHA256 (firefox-50.1.0.source.tar.xz) = 54bb9bccbf9eed0c7715ae7f45330bf41ce24b756f5fdecb380e06709a6ac5a4 -SIZE (firefox-50.1.0.source.tar.xz) = 195823768 +TIMESTAMP = 1484786354 +SHA256 (firefox-51.0.source.tar.xz) = 6535b7a69c28e3613a815801aa2d9416d133dd92e17e7c8eb68d9776ce9eebea +SIZE (firefox-51.0.source.tar.xz) = 202517224 Copied: branches/2017Q1/www/firefox/files/patch-bug1316879 (from r431737, head/www/firefox/files/patch-bug1316879) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/www/firefox/files/patch-bug1316879 Tue Jan 24 22:38:07 2017 (r432402, copy of r431737, head/www/firefox/files/patch-bug1316879) @@ -0,0 +1,103 @@ +Revert bug 1299919 due to a failure building with CPP in environemnt. + +diff --git build/autoconf/toolchain.m4 build/autoconf/toolchain.m4 +index 8353967a180c..c8503e5d63f5 100644 +--- build/autoconf/toolchain.m4 ++++ build/autoconf/toolchain.m4 +@@ -2,14 +2,6 @@ + dnl License, v. 2.0. If a copy of the MPL was not distributed with this + dnl file, You can obtain one at http://mozilla.org/MPL/2.0/. + +-dnl Several autoconf functions AC_REQUIRE AC_PROG_CPP/AC_PROG_CXXCPP, +-dnl meaning they are called even when we don't call them explicitly. +-dnl However, theses checks are not necessary and python configure sets +-dnl the corresponding variables already, so just skip those tests +-dnl entirely. +-define([AC_PROG_CPP],[]) +-define([AC_PROG_CXXCPP],[]) +- + AC_DEFUN([MOZ_TOOL_VARIABLES], + [ + GNU_AS= +diff --git build/moz.configure/toolchain.configure build/moz.configure/toolchain.configure +index c69b5d12daf4..bba62023c836 100644 +--- build/moz.configure/toolchain.configure ++++ build/moz.configure/toolchain.configure +@@ -754,23 +754,6 @@ + valid_compiler.try_compile(check_msg='%s works' % what, + onerror=compiler_error) + +- +- # Set CPP/CXXCPP for both the build system and old-configure. We don't +- # need to check this works for preprocessing, because we already relied +- # on $CC -E/$CXX -E doing preprocessing work to validate the compiler +- # in the first place. +- if host_or_target == target: +- pp_var = { +- 'C': 'CPP', +- 'C++': 'CXXCPP', +- }[language] +- +- preprocessor = depends_if(valid_compiler)( +- lambda x: list(x.wrapper) + [x.compiler, '-E'] + list(x.flags)) +- +- set_config(pp_var, preprocessor) +- add_old_configure_assignment(pp_var, preprocessor) +- + return valid_compiler + + +diff --git dom/bindings/GenerateCSS2PropertiesWebIDL.py dom/bindings/GenerateCSS2PropertiesWebIDL.py +index 73e1541c13b0..58ec60c29b10 100644 +--- dom/bindings/GenerateCSS2PropertiesWebIDL.py ++++ dom/bindings/GenerateCSS2PropertiesWebIDL.py +@@ -16,7 +16,7 @@ + return " [%s] attribute DOMString %s;\n" % (", ".join(extendedAttrs), + propName) + def generate(output, idlFilename, preprocessorHeader): +- cpp = list(buildconfig.substs['CPP']) ++ cpp = shellutil.split(buildconfig.substs['CPP']) + cpp += shellutil.split(buildconfig.substs['ACDEFINES']) + cpp.append(preprocessorHeader) + preprocessed = subprocess.check_output(cpp) +diff --git js/src/old-configure.in js/src/old-configure.in +index 79541bdeb986..1cb4204aeeb3 100644 +--- js/src/old-configure.in ++++ js/src/old-configure.in +@@ -140,6 +140,9 @@ + + MOZ_TOOL_VARIABLES + ++AC_PROG_CPP ++AC_PROG_CXXCPP ++ + dnl Special win32 checks + dnl ======================================================== + +diff --git layout/style/GenerateCSSPropsGenerated.py layout/style/GenerateCSSPropsGenerated.py +index 4dc2a253a811..5038e9afe726 100644 +--- layout/style/GenerateCSSPropsGenerated.py ++++ layout/style/GenerateCSSPropsGenerated.py +@@ -10,7 +10,7 @@ + from mozbuild import shellutil + + def get_properties(preprocessorHeader): +- cpp = list(buildconfig.substs['CPP']) ++ cpp = shellutil.split(buildconfig.substs['CPP']) + cpp += shellutil.split(buildconfig.substs['ACDEFINES']) + cpp.append(preprocessorHeader) + preprocessed = subprocess.check_output(cpp) +diff --git old-configure.in old-configure.in +index 863235e13176..545e82f83d56 100644 +--- old-configure.in ++++ old-configure.in +@@ -241,6 +241,9 @@ + + MOZ_TOOL_VARIABLES + ++AC_PROG_CPP ++AC_PROG_CXXCPP ++ + dnl ======================================================== + dnl Special win32 checks + dnl ======================================================== Copied: branches/2017Q1/www/firefox/files/patch-bug1329895 (from r431737, head/www/firefox/files/patch-bug1329895) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/www/firefox/files/patch-bug1329895 Tue Jan 24 22:38:07 2017 (r432402, copy of r431737, head/www/firefox/files/patch-bug1329895) @@ -0,0 +1,13 @@ +Apply Linux fieldtext opacity for all GTK platforms. r=dao + +--- browser/themes/shared/icon-colors.inc.svg ++++ browser/themes/shared/icon-colors.inc.svg +@@ -2,7 +2,7 @@ + + .fieldtext { + fill: -moz-fieldtext; +-#ifdef XP_LINUX ++#ifdef MOZ_WIDGET_GTK + /* The fill-opacity needs to be sufficient for high-contrast settings, and + pathological Gtk themes where -moz-fieldtext provides low contrast by + default. */ Modified: branches/2017Q1/www/firefox/files/patch-bug847568 ============================================================================== --- branches/2017Q1/www/firefox/files/patch-bug847568 Tue Jan 24 22:32:58 2017 (r432401) +++ branches/2017Q1/www/firefox/files/patch-bug847568 Tue Jan 24 22:38:07 2017 (r432402) @@ -199,7 +199,7 @@ index e762576..196dafd 100644 +def check_for_harfbuzz(value, compile_env): + return value and compile_env + -+system_harfbuzz = pkg_check_modules('MOZ_HARFBUZZ', 'harfbuzz >= 1.2.6', ++system_harfbuzz = pkg_check_modules('MOZ_HARFBUZZ', 'harfbuzz >= 1.3.3', + check_for_harfbuzz) + +set_config('MOZ_SYSTEM_HARFBUZZ', system_harfbuzz) From owner-svn-ports-branches@freebsd.org Wed Jan 25 16:16:54 2017 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 26CA5CC1436; Wed, 25 Jan 2017 16:16:54 +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 EA46EF41; Wed, 25 Jan 2017 16:16:53 +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 v0PGGr3I089916; Wed, 25 Jan 2017 16:16:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0PGGrKk089915; Wed, 25 Jan 2017 16:16:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201701251616.v0PGGrKk089915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 25 Jan 2017 16:16:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432432 - branches/2017Q1/multimedia/pitivi 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, 25 Jan 2017 16:16:54 -0000 Author: amdmi3 Date: Wed Jan 25 16:16:52 2017 New Revision: 432432 URL: https://svnweb.freebsd.org/changeset/ports/432432 Log: MFH: r432431 - Fix invalid shebang - Switch to USES=localbase - Add NO_ARCH - Add LICENSE Approved by: kwm@FreeBSD.org (maintainer) Approved by: ports-secteam (with hat) Modified: branches/2017Q1/multimedia/pitivi/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/multimedia/pitivi/Makefile ============================================================================== --- branches/2017Q1/multimedia/pitivi/Makefile Wed Jan 25 16:15:49 2017 (r432431) +++ branches/2017Q1/multimedia/pitivi/Makefile Wed Jan 25 16:16:52 2017 (r432432) @@ -1,31 +1,28 @@ # Created by: Koop Mast # $FreeBSD$ -# $MCom: ports/multimedia/pitivi/Makefile,v 1.8 2006/04/26 19:31:01 ahze Exp $ PORTNAME= pitivi PORTVERSION= 0.13.4.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MASTER_SITES= GNOME MAINTAINER= kwm@FreeBSD.org COMMENT= Gstreamer based non-linear audio/video editor +LICENSE= LGPL21+ + RUN_DEPENDS= py*-zope.interface>=0:devel/py-zope.interface \ ${PYTHON_SITELIBDIR}/goocanvasmodule.so:graphics/py-goocanvas -USES= gettext gmake pkgconfig python tar:bzip2 +USES= gettext gmake localbase pkgconfig python shebangfix tar:bzip2 +SHEBANG_FILES= bin/pitivi.in USE_GNOME= intltool pygtk2 USE_GSTREAMER= gnonlin python good INSTALLS_ICONS= yes GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --localstatedir=/var USE_LDCONFIG= yes - -post-patch: - @${REINPLACE_CMD} -e 's|/usr/bin/python|${LOCALBASE}/bin/python|g' \ - ${WRKSRC}/bin/pitivi.in +NO_ARCH= yes .include From owner-svn-ports-branches@freebsd.org Thu Jan 26 06:31:32 2017 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 8309DCC2030; Thu, 26 Jan 2017 06:31:32 +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 422B6C67; Thu, 26 Jan 2017 06:31:32 +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 v0Q6VVDo037532; Thu, 26 Jan 2017 06:31:31 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0Q6VVnH037530; Thu, 26 Jan 2017 06:31:31 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201701260631.v0Q6VVnH037530@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Thu, 26 Jan 2017 06:31:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432470 - branches/2017Q1/devel/viewvc 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, 26 Jan 2017 06:31:32 -0000 Author: ohauer Date: Thu Jan 26 06:31:30 2017 New Revision: 432470 URL: https://svnweb.freebsd.org/changeset/ports/432470 Log: MFH: r432469 - update to 1.1.26 - change MASTER_SITE to GH Changelog: - security fix: escape nav_data name to avoid XSS attack Approved by: ports-secteam (implicit) Modified: branches/2017Q1/devel/viewvc/Makefile branches/2017Q1/devel/viewvc/distinfo Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/devel/viewvc/Makefile ============================================================================== --- branches/2017Q1/devel/viewvc/Makefile Thu Jan 26 06:30:18 2017 (r432469) +++ branches/2017Q1/devel/viewvc/Makefile Thu Jan 26 06:31:30 2017 (r432470) @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= viewvc -PORTVERSION= 1.1.25 +DISTVERSION= 1.1.26 CATEGORIES= devel python -MASTER_SITES= http://www.viewvc.org/ \ - LOCAL/ohauer MAINTAINER= ohauer@FreeBSD.org COMMENT= Web-based Version Control Repository Browsing LICENSE= BSD2CLAUSE +USE_GITHUB= yes + NO_OPTIONS_SORT= yes OPTIONS_DEFINE= WEBSRV APMOD SVN MYSQL OPTIONS_DEFAULT= WEBSRV APACHE SVN Modified: branches/2017Q1/devel/viewvc/distinfo ============================================================================== --- branches/2017Q1/devel/viewvc/distinfo Thu Jan 26 06:30:18 2017 (r432469) +++ branches/2017Q1/devel/viewvc/distinfo Thu Jan 26 06:31:30 2017 (r432470) @@ -1,3 +1,3 @@ -TIMESTAMP = 1474019899 -SHA256 (viewvc-1.1.25.tar.gz) = b7de005df2325419ecd788eabede5f40e081f0300f3ce962f13692b93484a37c -SIZE (viewvc-1.1.25.tar.gz) = 616072 +TIMESTAMP = 1485348428 +SHA256 (viewvc-viewvc-1.1.26_GH0.tar.gz) = aa5b911a91d597b211a3c826c2d6eb7f7b7b7d09f27ecb64e22a75e1faf42713 +SIZE (viewvc-viewvc-1.1.26_GH0.tar.gz) = 666278 From owner-svn-ports-branches@freebsd.org Thu Jan 26 14:25:41 2017 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 8E9B5CC24C8; Thu, 26 Jan 2017 14:25:41 +0000 (UTC) (envelope-from robak@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 5D97817FE; Thu, 26 Jan 2017 14:25:41 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0QEPece035971; Thu, 26 Jan 2017 14:25:40 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QEPeKv035969; Thu, 26 Jan 2017 14:25:40 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201701261425.v0QEPeKv035969@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Thu, 26 Jan 2017 14:25:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432492 - branches/2017Q1/sysutils/iocell 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, 26 Jan 2017 14:25:41 -0000 Author: robak Date: Thu Jan 26 14:25:40 2017 New Revision: 432492 URL: https://svnweb.freebsd.org/changeset/ports/432492 Log: MFH: r432342 sysutils/iocell: update 2.0.0 -> 2.1.0 Bugfix release. Approved by: ports-secteam Modified: branches/2017Q1/sysutils/iocell/Makefile branches/2017Q1/sysutils/iocell/distinfo Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/sysutils/iocell/Makefile ============================================================================== --- branches/2017Q1/sysutils/iocell/Makefile Thu Jan 26 14:23:02 2017 (r432491) +++ branches/2017Q1/sysutils/iocell/Makefile Thu Jan 26 14:25:40 2017 (r432492) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= iocell -PORTVERSION= 2.0.0 +PORTVERSION= 2.1.0 DISTVERSIONPREFIX=v CATEGORIES= sysutils Modified: branches/2017Q1/sysutils/iocell/distinfo ============================================================================== --- branches/2017Q1/sysutils/iocell/distinfo Thu Jan 26 14:23:02 2017 (r432491) +++ branches/2017Q1/sysutils/iocell/distinfo Thu Jan 26 14:25:40 2017 (r432492) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481915244 -SHA256 (bartekrutkowski-iocell-v2.0.0_GH0.tar.gz) = a175e6e5177a8ea8771d4443b766384b1c9db65093fe56d6d9e1cb942dea1a3f -SIZE (bartekrutkowski-iocell-v2.0.0_GH0.tar.gz) = 371045 +TIMESTAMP = 1485262233 +SHA256 (bartekrutkowski-iocell-v2.1.0_GH0.tar.gz) = 2842845e7de6d86173e86b83133b06680840d1d85ee71c28766d41cf9ab28c1a +SIZE (bartekrutkowski-iocell-v2.1.0_GH0.tar.gz) = 372693 From owner-svn-ports-branches@freebsd.org Thu Jan 26 14:35:01 2017 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 2B93DCC2864; Thu, 26 Jan 2017 14:35:01 +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 EE93C22C; Thu, 26 Jan 2017 14:35:00 +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 v0QEZ05O040637; Thu, 26 Jan 2017 14:35:00 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QEZ0Tw040636; Thu, 26 Jan 2017 14:35:00 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701261435.v0QEZ0Tw040636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 26 Jan 2017 14:35:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432496 - branches/2017Q1/multimedia/x265 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, 26 Jan 2017 14:35:01 -0000 Author: jbeich Date: Thu Jan 26 14:34:59 2017 New Revision: 432496 URL: https://svnweb.freebsd.org/changeset/ports/432496 Log: MFH: r432495 multimedia/x265: unbreak on aarch64[1] and mips /usr/bin/ld: common/CMakeFiles/common.dir/common.cpp.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against external symbol `__stderrp@@FBSD_1.0' can not be used when making a shared object; recompile with -fPIC /usr/bin/ld: common/CMakeFiles/common.dir/common.cpp.o(.text+0x1e0): unresolvable R_AARCH64_ADR_PREL_PG_HI21 relocation against symbol `__stderrp@@FBSD_1.0' /usr/bin/ld: final link failed: Bad value /usr/bin/ld: x265: hidden symbol `__sync_fetch_and_add_4' in /usr/lib/libgcc.a(stdatomic.o) is referenced by DSO /usr/bin/ld: final link failed: Nonrepresentable section on output PR: 216473 [1] Reported by: pkg-fallout Submitted by: mikael.urankar@gmail.com [1] Approved by: portmgr blanket Approved by: ports-secteam blanket Modified: branches/2017Q1/multimedia/x265/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/multimedia/x265/Makefile ============================================================================== --- branches/2017Q1/multimedia/x265/Makefile Thu Jan 26 14:31:02 2017 (r432495) +++ branches/2017Q1/multimedia/x265/Makefile Thu Jan 26 14:34:59 2017 (r432496) @@ -19,12 +19,13 @@ BUILD_DEPENDS= yasm:devel/yasm USES= cmake pathfix tar:bz2 USE_LDCONFIG= yes CMAKE_ARGS= -DENABLE_TESTS=on -DPLATFORM_LIBS=md +CFLAGS_aarch64= -fPIC +CFLAGS_mips= -DNO_ATOMICS # cannot use lang/gcc +CFLAGS_mips64= -DNO_ATOMICS # cannot use lang/gcc EXTRACT_AFTER_ARGS+= --exclude "md5*" WRKSRC= ${WRKDIR}/multicoreware-${PORTNAME}-1d3b6e448e01/source -BROKEN_mips64= Fails to link: Nonrepresentable section on output - do-test: ${WRKSRC}/test/TestBench From owner-svn-ports-branches@freebsd.org Thu Jan 26 14:51:33 2017 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 8913DCC150A; Thu, 26 Jan 2017 14:51:33 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 585C1F18; Thu, 26 Jan 2017 14:51:33 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0QEpWvn050363; Thu, 26 Jan 2017 14:51:32 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QEpWTU050360; Thu, 26 Jan 2017 14:51:32 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201701261451.v0QEpWTU050360@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 26 Jan 2017 14:51:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432512 - branches/2017Q1/databases/phpmyadmin 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, 26 Jan 2017 14:51:33 -0000 Author: matthew Date: Thu Jan 26 14:51:32 2017 New Revision: 432512 URL: https://svnweb.freebsd.org/changeset/ports/432512 Log: MFH: r432325 Update to 4.6.6 This includes a number of security fixes Security: 7721562b-e20a-11e6-b2e2-6805ca0b3d42 Approved by: ports-secteam (feld) Modified: branches/2017Q1/databases/phpmyadmin/Makefile branches/2017Q1/databases/phpmyadmin/distinfo Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/databases/phpmyadmin/Makefile ============================================================================== --- branches/2017Q1/databases/phpmyadmin/Makefile Thu Jan 26 14:44:18 2017 (r432511) +++ branches/2017Q1/databases/phpmyadmin/Makefile Thu Jan 26 14:51:32 2017 (r432512) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phpMyAdmin -DISTVERSION= 4.6.5.2 +DISTVERSION= 4.6.6 CATEGORIES= databases www MASTER_SITES= https://files.phpmyadmin.net/${PORTNAME}/${DISTVERSION}/ DISTNAME= ${PORTNAME}-${DISTVERSION}-all-languages Modified: branches/2017Q1/databases/phpmyadmin/distinfo ============================================================================== --- branches/2017Q1/databases/phpmyadmin/distinfo Thu Jan 26 14:44:18 2017 (r432511) +++ branches/2017Q1/databases/phpmyadmin/distinfo Thu Jan 26 14:51:32 2017 (r432512) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481008881 -SHA256 (phpMyAdmin-4.6.5.2-all-languages.tar.xz) = 8cb549c0cd04ecaa3b2a8d9315e7c88528603fa6fe91057b13173f6afba80894 -SIZE (phpMyAdmin-4.6.5.2-all-languages.tar.xz) = 6136880 +TIMESTAMP = 1485244457 +SHA256 (phpMyAdmin-4.6.6-all-languages.tar.xz) = b7b9e0f88ca740fcba249e7e3e7d51d1923b038b7742cde72de193a2b0a2654f +SIZE (phpMyAdmin-4.6.6-all-languages.tar.xz) = 6147904 From owner-svn-ports-branches@freebsd.org Thu Jan 26 15:04:47 2017 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 29030CC19C0; Thu, 26 Jan 2017 15:04:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC5AB970; Thu, 26 Jan 2017 15:04:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0QF4kuE054598; Thu, 26 Jan 2017 15:04:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QF4kWx054597; Thu, 26 Jan 2017 15:04:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201701261504.v0QF4kWx054597@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 26 Jan 2017 15:04:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432514 - branches/2017Q1/Mk/Uses 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, 26 Jan 2017 15:04:47 -0000 Author: sunpoet Date: Thu Jan 26 15:04:45 2017 New Revision: 432514 URL: https://svnweb.freebsd.org/changeset/ports/432514 Log: MFH: r432453 Fix memcache_DEPENDS Approved by: ports-secteam (blanket, feld) Modified: branches/2017Q1/Mk/Uses/php.mk Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/Mk/Uses/php.mk ============================================================================== --- branches/2017Q1/Mk/Uses/php.mk Thu Jan 26 15:00:18 2017 (r432513) +++ branches/2017Q1/Mk/Uses/php.mk Thu Jan 26 15:04:45 2017 (r432514) @@ -334,7 +334,11 @@ json_DEPENDS= devel/php${PHP_VER}-json ldap_DEPENDS= net/php${PHP_VER}-ldap mbstring_DEPENDS= converters/php${PHP_VER}-mbstring mcrypt_DEPENDS= security/php${PHP_VER}-mcrypt +. if ${PHP_VER} >= 70 +memcache_DEPENDS= databases/php${PHP_VER}-memcache +. else memcache_DEPENDS= databases/pecl-memcache +. endif mssql_DEPENDS= databases/php${PHP_VER}-mssql mysql_DEPENDS= databases/php${PHP_VER}-mysql mysqli_DEPENDS= databases/php${PHP_VER}-mysqli From owner-svn-ports-branches@freebsd.org Thu Jan 26 15:50:43 2017 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 36910CC23E4; Thu, 26 Jan 2017 15:50:43 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 05DD41C2; Thu, 26 Jan 2017 15:50:42 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0QFog0x071500; Thu, 26 Jan 2017 15:50:42 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QFofwB071498; Thu, 26 Jan 2017 15:50:41 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201701261550.v0QFofwB071498@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 26 Jan 2017 15:50:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432517 - in branches/2017Q1/net/rabbitmq: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.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, 26 Jan 2017 15:50:43 -0000 Author: olgeni Date: Thu Jan 26 15:50:41 2017 New Revision: 432517 URL: https://svnweb.freebsd.org/changeset/ports/432517 Log: MFH: r432478 net/rabbitmq: add full path to the daemon(8) call in rc script. This allows the script to work in crontab, where /usr/sbin is not in PATH. Submitted by: Dmitriy Simakov Approved by: ports-secteam (feld) Modified: branches/2017Q1/net/rabbitmq/Makefile branches/2017Q1/net/rabbitmq/files/rabbitmq.in Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/net/rabbitmq/Makefile ============================================================================== --- branches/2017Q1/net/rabbitmq/Makefile Thu Jan 26 15:37:28 2017 (r432516) +++ branches/2017Q1/net/rabbitmq/Makefile Thu Jan 26 15:50:41 2017 (r432517) @@ -3,6 +3,7 @@ PORTNAME= rabbitmq PORTVERSION= 3.6.6 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-server-${PORTVERSION} Modified: branches/2017Q1/net/rabbitmq/files/rabbitmq.in ============================================================================== --- branches/2017Q1/net/rabbitmq/files/rabbitmq.in Thu Jan 26 15:37:28 2017 (r432516) +++ branches/2017Q1/net/rabbitmq/files/rabbitmq.in Thu Jan 26 15:50:41 2017 (r432517) @@ -62,7 +62,7 @@ rabbitmq_start() chmod 600 ${RABBITMQ_HOME}/.erlang.cookie fi - env HOME=${RABBITMQ_HOME} daemon -c -f -u ${rabbitmq_user} -p ${pidfile} -P ${daemon_pidfile} ${rabbitmq_server} + env HOME=${RABBITMQ_HOME} /usr/sbin/daemon -c -f -u ${rabbitmq_user} -p ${pidfile} -P ${daemon_pidfile} ${rabbitmq_server} debug "Running: rabbitmqctl wait ${pidfile}" ${rabbitmq_ctl} wait ${pidfile} >/dev/null 2>&1 } From owner-svn-ports-branches@freebsd.org Thu Jan 26 19:34:48 2017 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 4AF5FCC3879; Thu, 26 Jan 2017 19:34: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 2301213B9; Thu, 26 Jan 2017 19:34:48 +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 v0QJYlBg068117; Thu, 26 Jan 2017 19:34:47 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QJYlIe068115; Thu, 26 Jan 2017 19:34:47 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201701261934.v0QJYlIe068115@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Thu, 26 Jan 2017 19:34:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432534 - branches/2017Q1/security/openssl X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.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, 26 Jan 2017 19:34:48 -0000 Author: brnrd Date: Thu Jan 26 19:34:46 2017 New Revision: 432534 URL: https://svnweb.freebsd.org/changeset/ports/432534 Log: MFH: r432493 security/openssl: Update to 1.0.2k Security: CVE-2016-7055 Security: CVE-2017-3731 Security: CVE-2017-3732 Approved by: ports-secteam (feld) Modified: branches/2017Q1/security/openssl/Makefile branches/2017Q1/security/openssl/distinfo Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/security/openssl/Makefile ============================================================================== --- branches/2017Q1/security/openssl/Makefile Thu Jan 26 19:27:00 2017 (r432533) +++ branches/2017Q1/security/openssl/Makefile Thu Jan 26 19:34:46 2017 (r432534) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= openssl -PORTVERSION= 1.0.2j -PORTREVISION= 1 +PORTVERSION= 1.0.2k PORTEPOCH= 1 CATEGORIES= security devel MASTER_SITES= http://www.openssl.org/source/ \ Modified: branches/2017Q1/security/openssl/distinfo ============================================================================== --- branches/2017Q1/security/openssl/distinfo Thu Jan 26 19:27:00 2017 (r432533) +++ branches/2017Q1/security/openssl/distinfo Thu Jan 26 19:34:46 2017 (r432534) @@ -1,11 +1,11 @@ -TIMESTAMP = 1474893748 -SHA256 (openssl-1.0.2j/openssl-1.0.2j.tar.gz) = e7aff292be21c259c6af26469c7a9b3ba26e9abaaffd325e3dccc9785256c431 -SIZE (openssl-1.0.2j/openssl-1.0.2j.tar.gz) = 5307912 -SHA256 (openssl-1.0.2j/1001-crypto-hmac-support-EVP_MD_CTX_FLAG_ONESHOT-and-set-.patch) = 2eddcb7ab342285cb637ce6b6be143cca835f449f35dd9bb8c7b9167ba2117a7 -SIZE (openssl-1.0.2j/1001-crypto-hmac-support-EVP_MD_CTX_FLAG_ONESHOT-and-set-.patch) = 3717 -SHA256 (openssl-1.0.2j/1002-backport-changes-from-upstream-padlock-module.patch) = aee88a24622ce9d71e38deeb874e58435dcf8ff5690f56194f0e4a00fb09b260 -SIZE (openssl-1.0.2j/1002-backport-changes-from-upstream-padlock-module.patch) = 5770 -SHA256 (openssl-1.0.2j/1003-engines-e_padlock-implement-sha1-sha224-sha256-accel.patch) = c10b8aaf56a4f4f79ca195fc587e0bb533f643e777d7a3e6fb0350399a6060ea -SIZE (openssl-1.0.2j/1003-engines-e_padlock-implement-sha1-sha224-sha256-accel.patch) = 20935 -SHA256 (openssl-1.0.2j/1004-crypto-engine-autoload-padlock-dynamic-engine.patch) = 97eb4411d0fc0890e94bc7c2d682f68b71135da782af769ca73914b37da2b1fd -SIZE (openssl-1.0.2j/1004-crypto-engine-autoload-padlock-dynamic-engine.patch) = 832 +TIMESTAMP = 1485440434 +SHA256 (openssl-1.0.2k/openssl-1.0.2k.tar.gz) = 6b3977c61f2aedf0f96367dcfb5c6e578cf37e7b8d913b4ecb6643c3cb88d8c0 +SIZE (openssl-1.0.2k/openssl-1.0.2k.tar.gz) = 5309236 +SHA256 (openssl-1.0.2k/1001-crypto-hmac-support-EVP_MD_CTX_FLAG_ONESHOT-and-set-.patch) = 2eddcb7ab342285cb637ce6b6be143cca835f449f35dd9bb8c7b9167ba2117a7 +SIZE (openssl-1.0.2k/1001-crypto-hmac-support-EVP_MD_CTX_FLAG_ONESHOT-and-set-.patch) = 3717 +SHA256 (openssl-1.0.2k/1002-backport-changes-from-upstream-padlock-module.patch) = aee88a24622ce9d71e38deeb874e58435dcf8ff5690f56194f0e4a00fb09b260 +SIZE (openssl-1.0.2k/1002-backport-changes-from-upstream-padlock-module.patch) = 5770 +SHA256 (openssl-1.0.2k/1003-engines-e_padlock-implement-sha1-sha224-sha256-accel.patch) = c10b8aaf56a4f4f79ca195fc587e0bb533f643e777d7a3e6fb0350399a6060ea +SIZE (openssl-1.0.2k/1003-engines-e_padlock-implement-sha1-sha224-sha256-accel.patch) = 20935 +SHA256 (openssl-1.0.2k/1004-crypto-engine-autoload-padlock-dynamic-engine.patch) = 97eb4411d0fc0890e94bc7c2d682f68b71135da782af769ca73914b37da2b1fd +SIZE (openssl-1.0.2k/1004-crypto-engine-autoload-padlock-dynamic-engine.patch) = 832 From owner-svn-ports-branches@freebsd.org Thu Jan 26 19:58:07 2017 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 A958ACC3CC2; Thu, 26 Jan 2017 19:58:07 +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 3A9971DF4; Thu, 26 Jan 2017 19:58:07 +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 v0QJw6Eb076968; Thu, 26 Jan 2017 19:58:06 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QJw4pZ076952; Thu, 26 Jan 2017 19:58:04 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201701261958.v0QJw4pZ076952@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Thu, 26 Jan 2017 19:58:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432535 - in branches/2017Q1/databases: mysql56-client mysql56-client/files mysql56-server mysql56-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: Thu, 26 Jan 2017 19:58:07 -0000 Author: brnrd Date: Thu Jan 26 19:58:04 2017 New Revision: 432535 URL: https://svnweb.freebsd.org/changeset/ports/432535 Log: MFH: r431919 r431968 r431975 r432035 r432066 r432458 databases/mysql56: Update to 5.6.35 - Port improvements from MySQL 5.7 port - Use system libs instead of bundled - Fix many open PRs - Change MAINTAINER PR: 216244 192657 198812 199751 205093 PR: 209618 211248 205983 209338 databases/mysql56-server: Rollback rc script changes databases/mysql56-server: Do not install my.cnf sample An issue was discovered where users of mysql did not have a my.cnf and the recent update was causing mysqld to find a sample my.cnf and load its parameters. This was causing errors on startup for users of innodb as the parameters used to init the database did not match the ones in the sample config file it was now reading. databases/mysql56-server: Fix build with LibreSSL - Fix CMake SSL detection - Always set WITH_SSL=${OPENSSLBASE} PR: 216311 Approved by: Mahdi Moktari (maintainer) Differential Revision: D9272 Revert r432035 part 2, it breaks build with openssl from base With hat: portmgr databases/mysql56-server: Fix OpenSSL linking - Force dynamic linking with OpenSSL Approved by: ports-secteam (feld) Added: branches/2017Q1/databases/mysql56-client/files/patch-cmake_ssl.cmake - copied unchanged from r432035, head/databases/mysql56-client/files/patch-cmake_ssl.cmake branches/2017Q1/databases/mysql56-server/files/my.cnf.sample.in - copied unchanged from r431919, head/databases/mysql56-server/files/my.cnf.sample.in branches/2017Q1/databases/mysql56-server/files/patch-cmake_ssl.cmake - copied unchanged from r432458, head/databases/mysql56-server/files/patch-cmake_ssl.cmake Modified: branches/2017Q1/databases/mysql56-client/Makefile branches/2017Q1/databases/mysql56-client/files/patch-CMakeLists.txt branches/2017Q1/databases/mysql56-client/files/patch-extra_CMakeLists.txt branches/2017Q1/databases/mysql56-client/files/patch-man_CMakeLists.txt branches/2017Q1/databases/mysql56-client/files/patch-mysys_ssl_my_default.cc branches/2017Q1/databases/mysql56-client/files/patch-scripts_CMakeLists.txt branches/2017Q1/databases/mysql56-client/files/patch-support-files_CMakeLists.txt branches/2017Q1/databases/mysql56-client/pkg-message branches/2017Q1/databases/mysql56-server/Makefile branches/2017Q1/databases/mysql56-server/distinfo branches/2017Q1/databases/mysql56-server/files/patch-mysys_ssl_my_default.cc branches/2017Q1/databases/mysql56-server/pkg-message branches/2017Q1/databases/mysql56-server/pkg-plist Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/databases/mysql56-client/Makefile ============================================================================== --- branches/2017Q1/databases/mysql56-client/Makefile Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-client/Makefile Thu Jan 26 19:58:04 2017 (r432535) @@ -2,10 +2,16 @@ # $FreeBSD$ PORTNAME= mysql +PORTREVISION?= 1 PKGNAMESUFFIX= 56-client COMMENT= Multithreaded SQL database (client) +LICENSE+= LGPL21 + +BROKEN_powerpc64= Does not build +BROKEN_sparc64= Does not build: reports unsupported compiler + MASTERDIR= ${.CURDIR}/../mysql56-server PKGMESSAGE= ${.CURDIR}/pkg-message @@ -13,12 +19,13 @@ PATCHDIR= ${.CURDIR}/files PLIST= ${.CURDIR}/pkg-plist CONFLICTS_INSTALL= mysql5[0-57-9]-client-* \ - mariadb*-client-* \ - percona*-client-* + mysql[0-46-9][0-9]-client-* \ + mariadb[0-9][0-9]-client-* \ + percona[0-9][0-9]-client-* CMAKE_ARGS+= -DWITHOUT_SERVER=1 -USE_LDCONFIG= ${PREFIX}/lib/mysql +USE_LDCONFIG+= ${PREFIX}/lib/mysql MMAN1= comp_err.1 msql2mysql.1 mysql.1 mysql_config.1 mysql_config_editor.1 mysql_find_rows.1 \ mysql_waitpid.1 mysqlaccess.1 mysqladmin.1 mysqlbinlog.1 \ Modified: branches/2017Q1/databases/mysql56-client/files/patch-CMakeLists.txt ============================================================================== --- branches/2017Q1/databases/mysql56-client/files/patch-CMakeLists.txt Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-client/files/patch-CMakeLists.txt Thu Jan 26 19:58:04 2017 (r432535) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2016-03-03 16:35:33.000000000 +0100 -+++ CMakeLists.txt 2016-04-19 17:30:13.343558770 +0200 -@@ -475,8 +475,8 @@ ENDIF() +--- CMakeLists.txt.orig 2016-11-28 13:36:22 UTC ++++ CMakeLists.txt +@@ -481,8 +481,8 @@ ENDIF() ADD_SUBDIRECTORY(extra) ADD_SUBDIRECTORY(client) @@ -10,7 +10,7 @@ IF(UNIX) ADD_SUBDIRECTORY(man) -@@ -546,18 +546,17 @@ ELSE() +@@ -552,18 +552,17 @@ ELSE() SET(CPACK_GENERATOR "TGZ") ENDIF() ADD_SUBDIRECTORY(packaging/WiX) @@ -30,7 +30,7 @@ IF(NOT INSTALL_LAYOUT MATCHES "RPM") INSTALL(FILES COPYING LICENSE.mysql DESTINATION ${INSTALL_DOCREADMEDIR} -@@ -579,6 +578,7 @@ IF(NOT INSTALL_LAYOUT MATCHES "RPM") +@@ -585,6 +584,7 @@ IF(NOT INSTALL_LAYOUT MATCHES "RPM") PATTERN "sp-imp-spec.txt" EXCLUDE ) ENDIF() Copied: branches/2017Q1/databases/mysql56-client/files/patch-cmake_ssl.cmake (from r432035, head/databases/mysql56-client/files/patch-cmake_ssl.cmake) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/databases/mysql56-client/files/patch-cmake_ssl.cmake Thu Jan 26 19:58:04 2017 (r432535, copy of r432035, head/databases/mysql56-client/files/patch-cmake_ssl.cmake) @@ -0,0 +1,11 @@ +--- cmake/ssl.cmake.orig 2016-11-28 13:36:22 UTC ++++ cmake/ssl.cmake +@@ -176,7 +176,7 @@ MACRO (MYSQL_CHECK_SSL) + IF(OPENSSL_INCLUDE_DIR AND + OPENSSL_LIBRARY AND + CRYPTO_LIBRARY AND +- OPENSSL_MAJOR_VERSION STREQUAL "1" ++ OPENSSL_MAJOR_VERSION VERSION_GREATER_EQUAL "1" + ) + SET(OPENSSL_FOUND TRUE) + ELSE() Modified: branches/2017Q1/databases/mysql56-client/files/patch-extra_CMakeLists.txt ============================================================================== --- branches/2017Q1/databases/mysql56-client/files/patch-extra_CMakeLists.txt Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-client/files/patch-extra_CMakeLists.txt Thu Jan 26 19:58:04 2017 (r432535) @@ -1,6 +1,14 @@ ---- extra/CMakeLists.txt.orig 2016-03-03 16:35:33.000000000 +0100 -+++ extra/CMakeLists.txt 2016-04-19 17:37:34.634528313 +0200 -@@ -60,6 +60,7 @@ IF (WIN32 AND WITH_SSL_PATH AND HAVE_CRY +--- extra/CMakeLists.txt.orig 2016-11-28 13:36:22 UTC ++++ extra/CMakeLists.txt +@@ -35,6 +35,7 @@ ENDIF() + + ADD_CUSTOM_COMMAND(OUTPUT ${PROJECT_BINARY_DIR}/include/mysqld_error.h + ${PROJECT_BINARY_DIR}/sql/share/english/errmsg.sys ++ COMMAND mkdir -p ${PROJECT_BINARY_DIR}/sql/share/ + COMMAND comp_err + --charset=${PROJECT_SOURCE_DIR}/sql/share/charsets + --out-dir=${PROJECT_BINARY_DIR}/sql/share/ +@@ -60,6 +61,7 @@ IF (WIN32 AND WITH_SSL_PATH AND HAVE_CRY ENDIF() @@ -8,7 +16,7 @@ MYSQL_ADD_EXECUTABLE(my_print_defaults my_print_defaults.c) TARGET_LINK_LIBRARIES(my_print_defaults mysys mysys_ssl) SET_TARGET_PROPERTIES(my_print_defaults PROPERTIES LINKER_LANGUAGE CXX) -@@ -96,10 +97,13 @@ IF(WITH_INNOBASE_STORAGE_ENGINE) +@@ -96,10 +98,13 @@ IF(WITH_INNOBASE_STORAGE_ENGINE) MYSQL_ADD_EXECUTABLE(innochecksum innochecksum.cc ${INNOBASE_SOURCES}) TARGET_LINK_LIBRARIES(innochecksum mysys mysys_ssl) ENDIF() Modified: branches/2017Q1/databases/mysql56-client/files/patch-man_CMakeLists.txt ============================================================================== --- branches/2017Q1/databases/mysql56-client/files/patch-man_CMakeLists.txt Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-client/files/patch-man_CMakeLists.txt Thu Jan 26 19:58:04 2017 (r432535) @@ -1,13 +1,15 @@ ---- man/CMakeLists.txt.orig 2011-10-22 14:08:32.000000000 +0200 -+++ man/CMakeLists.txt 2011-10-22 14:22:42.000000000 +0200 -@@ -15,10 +15,6 @@ +--- man/CMakeLists.txt.orig 2016-11-28 13:36:22 UTC ++++ man/CMakeLists.txt +@@ -14,11 +14,7 @@ + # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # Copy man pages - FILE(GLOB MAN1_FILES *.1) +-FILE(GLOB MAN1_FILES *.1) -FILE(GLOB MAN1_EXCLUDE make_win_bin_dist.1) -FILE(GLOB MAN1_NDB ndb*.1) -FILE(GLOB MAN8_FILES *.8) -FILE(GLOB MAN8_NDB ndb*.8) ++FILE(GLOB MAN1_FILES comp_err.1 msql2mysql.1 mysql.1 mysql_config.1 mysql_config_editor.1 mysql_find_rows.1 mysql_waitpid.1 mysqlaccess.1 mysqladmin.1 mysqlbinlog.1 mysqlcheck.1 mysqldump.1 mysqlimport.1 mysqlshow.1 mysqlslap.1) IF(MAN1_FILES) IF(MAN1_EXCLUDE) LIST(REMOVE_ITEM MAN1_FILES ${MAN1_EXCLUDE}) Modified: branches/2017Q1/databases/mysql56-client/files/patch-mysys_ssl_my_default.cc ============================================================================== --- branches/2017Q1/databases/mysql56-client/files/patch-mysys_ssl_my_default.cc Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-client/files/patch-mysys_ssl_my_default.cc Thu Jan 26 19:58:04 2017 (r432535) @@ -1,6 +1,6 @@ ---- mysys_ssl/my_default.cc.orig 2013-01-22 17:54:49.000000000 +0100 -+++ mysys_ssl/my_default.cc 2013-02-13 11:08:15.000000000 +0100 -@@ -119,7 +119,7 @@ +--- mysys_ssl/my_default.cc.orig 2016-11-28 13:36:22 UTC ++++ mysys_ssl/my_default.cc +@@ -110,7 +110,7 @@ static my_bool defaults_already_read= FA /* Which directories are searched for options (and in which order) */ @@ -9,18 +9,48 @@ #define DEFAULT_DIRS_SIZE (MAX_DEFAULT_DIRS + 1) /* Terminate with NULL */ static const char **default_directories = NULL; -@@ -1395,7 +1395,10 @@ +@@ -903,6 +903,14 @@ static int search_default_file_with_ext( + return 1; /* Ignore wrong files */ + } - #if defined(DEFAULT_SYSCONFDIR) - if (DEFAULT_SYSCONFDIR[0]) ++ if (strstr(name, "/etc") == name) + { - errors += add_directory(alloc, DEFAULT_SYSCONFDIR, dirs); -+ errors += add_directory(alloc, DEFAULT_SYSCONFDIR "/mysql", dirs); ++ fprintf(stderr, ++ "error: Config file %s in invalid location, please move to or merge with /usr/local%s\n", ++ name,name); ++ goto err; + } - #endif /* DEFAULT_SYSCONFDIR */ ++ + while (mysql_file_getline(buff, sizeof(buff) - 1, fp, is_login_file)) + { + line++; +@@ -1241,7 +1249,8 @@ void my_print_default_files(const char * + end[(strlen(end)-1)] = ' '; + else + strxmov(end, conf_file, *ext , " ", NullS); +- fputs(name, stdout); ++ if (strstr(name, "/etc") != name) ++ fputs(name, stdout); + } + } + } +@@ -1400,13 +1409,8 @@ static const char **init_default_directo + + #else + +- errors += add_directory(alloc, "/etc/", dirs); +- errors += add_directory(alloc, "/etc/mysql/", dirs); +- +-#if defined(DEFAULT_SYSCONFDIR) +- if (DEFAULT_SYSCONFDIR[0]) +- errors += add_directory(alloc, DEFAULT_SYSCONFDIR, dirs); +-#endif /* DEFAULT_SYSCONFDIR */ ++ errors += add_directory(alloc, "/usr/local/etc/", dirs); ++ errors += add_directory(alloc, "/usr/local/etc/mysql/", dirs); #endif -@@ -1466,7 +1469,7 @@ + +@@ -1477,7 +1481,7 @@ int check_file_permissions(const char *f MY_STAT stat_info; if (!my_stat(file_name,&stat_info,MYF(0))) Modified: branches/2017Q1/databases/mysql56-client/files/patch-scripts_CMakeLists.txt ============================================================================== --- branches/2017Q1/databases/mysql56-client/files/patch-scripts_CMakeLists.txt Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-client/files/patch-scripts_CMakeLists.txt Thu Jan 26 19:58:04 2017 (r432535) @@ -1,6 +1,6 @@ ---- scripts/CMakeLists.txt.orig 2013-01-22 17:54:49.000000000 +0100 -+++ scripts/CMakeLists.txt 2013-02-13 14:14:11.000000000 +0100 -@@ -71,6 +71,7 @@ +--- scripts/CMakeLists.txt.orig 2016-11-28 13:36:22 UTC ++++ scripts/CMakeLists.txt +@@ -71,6 +71,7 @@ IF(UNIX) ) ENDIF() @@ -8,7 +8,7 @@ INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables.sql ${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables_data.sql -@@ -80,6 +81,7 @@ +@@ -80,6 +81,7 @@ INSTALL(FILES ${FIX_PRIVILEGES_SQL} DESTINATION ${INSTALL_MYSQLSHAREDIR} COMPONENT Server ) @@ -16,7 +16,7 @@ # TCMalloc hacks IF(MALLOC_LIB) -@@ -139,6 +141,7 @@ +@@ -168,6 +170,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}) -@@ -175,6 +178,7 @@ +@@ -204,6 +207,7 @@ INSTALL_SCRIPT(${CMAKE_CURRENT_BINARY_DI DESTINATION ${INSTALL_BINDIR} COMPONENT Server ) @@ -32,7 +32,7 @@ ENDIF(UNIX) -@@ -199,6 +203,7 @@ +@@ -228,6 +232,7 @@ ELSE() SET(localstatedir ${MYSQL_DATADIR}) ENDIF() @@ -40,15 +40,15 @@ IF(UNIX) SET(EXT) ELSE() -@@ -213,6 +218,7 @@ +@@ -242,6 +247,7 @@ INSTALL_SCRIPT( DESTINATION ${DEST} COMPONENT Server ) +ENDIF() - SET(prefix "${CMAKE_INSTALL_PREFIX}") -@@ -264,6 +270,8 @@ + SET(sysconfdir ${prefix}) +@@ -298,6 +304,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var) GET_FILENAME_COMPONENT(lib "${lib}" NAME_WE) STRING(REGEX REPLACE "^lib" "" lib "${lib}") SET(${var} "${${var}}-l${lib} " ) @@ -57,7 +57,7 @@ ELSE() SET(${var} "${${var}}-l${lib} " ) ENDIF() -@@ -316,17 +324,9 @@ +@@ -353,17 +361,9 @@ ELSE() SET(BIN_SCRIPTS msql2mysql mysql_config @@ -75,7 +75,7 @@ ) FOREACH(file ${BIN_SCRIPTS}) IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${file}.sh) -@@ -350,6 +350,7 @@ +@@ -387,6 +387,7 @@ ELSE() ) ENDFOREACH() @@ -83,7 +83,7 @@ # Input files with pl.in extension - drop the extension completely SET(PLIN_FILES mysql_secure_installation) FOREACH(file ${PLIN_FILES}) -@@ -362,6 +363,7 @@ +@@ -399,6 +400,7 @@ ELSE() INSTALL_SCRIPT(${CMAKE_CURRENT_BINARY_DIR}/${file} COMPONENT ${${file}_COMPONENT}) ENDFOREACH() ENDIF() Modified: branches/2017Q1/databases/mysql56-client/files/patch-support-files_CMakeLists.txt ============================================================================== --- branches/2017Q1/databases/mysql56-client/files/patch-support-files_CMakeLists.txt Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-client/files/patch-support-files_CMakeLists.txt Thu Jan 26 19:58:04 2017 (r432535) @@ -1,6 +1,6 @@ ---- support-files/CMakeLists.txt.orig 2013-01-22 17:54:50.000000000 +0100 -+++ support-files/CMakeLists.txt 2013-02-13 11:13:32.000000000 +0100 -@@ -44,14 +44,17 @@ +--- support-files/CMakeLists.txt.orig 2016-11-28 13:36:22 UTC ++++ support-files/CMakeLists.txt +@@ -44,14 +44,17 @@ ELSE() SET(inst_location ${INSTALL_SUPPORTFILESDIR}) ENDIF() @@ -18,7 +18,7 @@ FOREACH(script mysqld_multi.server mysql-log-rotate binary-configure) CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${script}.sh ${CMAKE_CURRENT_BINARY_DIR}/${script} @ONLY ) -@@ -68,8 +71,10 @@ +@@ -68,8 +71,10 @@ IF(UNIX) IF(INSTALL_SUPPORTFILESDIR) INSTALL(FILES magic DESTINATION ${inst_location} COMPONENT SupportFiles) ENDIF() @@ -29,7 +29,7 @@ CONFIGURE_FILE(MySQL-shared-compat.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/MySQL-shared-compat.spec @ONLY) CONFIGURE_FILE(mysql.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/mysql.spec @ONLY) -@@ -94,3 +99,4 @@ +@@ -94,3 +99,4 @@ IF(UNIX) PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) ENDIF() Modified: branches/2017Q1/databases/mysql56-client/pkg-message ============================================================================== --- branches/2017Q1/databases/mysql56-client/pkg-message Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-client/pkg-message Thu Jan 26 19:58:04 2017 (r432535) @@ -12,4 +12,3 @@ receiving a patch. Please take note of t deploying this software. * * * * * * * * * * * * * * * * * * * * * * * * - Modified: branches/2017Q1/databases/mysql56-server/Makefile ============================================================================== --- branches/2017Q1/databases/mysql56-server/Makefile Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-server/Makefile Thu Jan 26 19:58:04 2017 (r432535) @@ -2,37 +2,62 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.6.34 -PORTREVISION?= 0 +PORTVERSION= 5.6.35 +PORTREVISION?= 3 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.6 PKGNAMESUFFIX?= 56-server -MAINTAINER= ale@FreeBSD.org +MAINTAINER= mokhi64@gmail.com COMMENT?= Multithreaded SQL database (server) -BROKEN_powerpc64= Does not build +LICENSE= GPLv2 SLAVEDIRS= databases/mysql56-client -USES= cmake shebangfix +USES= bison:build cmake:outsource compiler:c11 compiler:c++11-lib \ + cpe libedit localbase perl5 shebangfix ssl -CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \ +USE_PERL5= run + +MY_DBDIR= /var/db/mysql +MY_SECDIR= /var/db/mysql_secure +MY_TMPDIR= /var/db/mysql_tmpdir + +LIB_DEPENDS+= libevent.so:devel/libevent2 \ + liblz4.so:archivers/liblz4 + +CMAKE_BUILD_TYPE= Release + +CMAKE_ARGS+= -DINSTALL_LAYOUT=FREEBSD \ + -DINSTALL_LDCONFIGDIR="${LOCALBASE}/libdata/ldconfig" \ + -DINSTALL_PKGCONFIGDIR="${LOCALBASE}/libdata/pkgconfig" \ + -DINSTALL_DOCDIR="share/doc/mysql" \ -DINSTALL_DOCREADMEDIR="share/doc/mysql" \ -DINSTALL_INCLUDEDIR="include/mysql" \ -DINSTALL_INFODIR="info" \ -DINSTALL_LIBDIR="lib/mysql" \ -DINSTALL_MANDIR="man" \ - -DINSTALL_MYSQLDATADIR="/var/db/mysql" \ + -DINSTALL_MYSQLDATADIR="${MY_DBDIR}" \ + -DINSTALL_MYSQLKEYRINGDIR="etc/mysql/keyring" \ -DINSTALL_MYSQLSHAREDIR="share/mysql" \ -DINSTALL_MYSQLTESTDIR="share/mysql/tests" \ -DINSTALL_PLUGINDIR="lib/mysql/plugin" \ -DINSTALL_SBINDIR="libexec" \ -DINSTALL_SCRIPTDIR="bin" \ + -DINSTALL_SECURE_FILE_PRIVDIR="${MY_SECDIR}" \ -DINSTALL_SHAREDIR="share" \ -DINSTALL_SQLBENCHDIR="share/mysql" \ -DINSTALL_SUPPORTFILESDIR="share/mysql" \ + -DMYSQL_KEYRINGDIR="${ETCDIR}/keyring" \ + -DWITH_BOOST="${WRKSRC}/boost" \ -DWITH_EDITLINE=system \ - -DWITH_LIBWRAP=1 + -DWITH_LIBEVENT=system \ + -DWITH_LZ4=system \ + -DWITH_ZLIB=system \ + -DWITH_SSL=${OPENSSLBASE} \ + -DCRYPTO_LIBRARY=${OPENSSLLIB}/libcrypto.so \ + -DOPENSSL_LIBRARY=${OPENSSLLIB}/libssl.so \ + -DINSTALL_MYSQLTESTDIR=0 SHEBANG_FILES= scripts/*.pl* scripts/*.sh @@ -40,23 +65,32 @@ 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 +SUB_LIST= MY_DBDIR=${MY_DBDIR} \ + MY_SECDIR=${MY_SECDIR} \ + MY_TMPDIR=${MY_TMPDIR} + +PLIST_SUB= MY_DBDIR=${MY_DBDIR} \ + MY_SECDIR=${MY_SECDIR} \ + MY_TMPDIR=${MY_TMPDIR} + # MySQL-Server part .if !defined(CLIENT_ONLY) -USE_MYSQL= yes -WANT_MYSQL_VER= 56 - -USES+= perl5 -USE_PERL5= run +USES+= mysql:56 CONFLICTS_INSTALL= mysql5[0-57-9]-server-* \ - mariadb*-server-* \ - percona*-server-* + mysql[0-46-9][0-9]-server-* \ + mariadb[0-9][0-9]-server-* \ + percona[0-9][0-9]-server-* USE_RC_SUBR= mysql-server +SUB_FILES= my.cnf.sample + USERS= mysql GROUPS= mysql +USE_LDCONFIG+= ${PREFIX}/lib/mysql/plugin + MMAN1= my_print_defaults.1 myisam_ftdump.1 myisamchk.1 myisamlog.1 myisampack.1 \ mysql.server.1 mysql_convert_table_format.1 mysql_fix_extensions.1 \ mysql_install_db.1 mysql_plugin.1 mysql_secure_installation.1 mysql_setpermission.1 \ @@ -65,14 +99,51 @@ MMAN1= my_print_defaults.1 myisam_ftdum mysqltest.1 perror.1 replace.1 resolve_stack_dump.1 resolveip.1 CMAKE_ARGS+= -DWITH_EMBEDDED_SERVER="ON" -.else -USES+= libedit + +OPTIONS_GROUP= STORAGE +OPTIONS_GROUP_STORAGE= ARCHIVE BLACKHOLE EXAMPLE FEDERATED INNOBASE PARTITION PERFSCHEMA +OPTIONS_SUB= YES +STORAGE_DESC= Permissible "Storage Engines" (to compile statically into the server) +ARCHIVE_DESC= Compile "Archive Storage" statically in server +BLACKHOLE_DESC= Compile "Blackhole Storage" statically in server +EXAMPLE_DESC= Compile "Example Storage" statically in server +FEDERATED_DESC= Compile "Federated Storage" statically in server +INNOBASE_DESC= Compile "InnoDB Storage" statically in server +PARTITION_DESC= Compile "Partitioning support Storage" statically in server +PERFSCHEMA_DESC= Compile "Performance Schema Storage" statically in server + +ARCHIVE_CMAKE_ON= -DWITH_ARCHIVE_STORAGE_ENGINE=1 +BLACKHOLE_CMAKE_ON= -DWITH_BLACKHOLE_STORAGE_ENGINE=1 +EXAMPLE_CMAKE_ON= -DWITH_EXAMPLE_STORAGE_ENGINE=1 +FEDERATED_CMAKE_ON= -DWITH_FEDERATED_STORAGE_ENGINE=1 +INNOBASE_CMAKE_ON= -DWITH_INNOBASE_STORAGE_ENGINE=1 +PARTITION_CMAKE_ON= -DWITH_PARTITION_STORAGE_ENGINE=1 +PERFSCHEMA_CMAKE_ON= -DWITH_PERFSCHEMA_STORAGE_ENGINE=1 + +OPTIONS_GROUP+= FEATURES +OPTIONS_GROUP_FEATURES= PERFSCHM +FEATURES_DESC= Default features knobs +PERFSCHM_DESC= Enable "Performance Schema" by default (High RAM usage) +OPTIONS_DEFAULT+= PERFSCHM + +PERFSCHM_SUB_LIST+= PERFSCHEMRC="" +PERFSCHM_SUB_LIST_OFF+= PERFSCHEMRC="--skip-performance-schema" .endif +.include + post-patch: @${REINPLACE_CMD} 's/*.1/${MMAN1}/' ${WRKSRC}/man/CMakeLists.txt -.include +.if !defined(CLIENT_ONLY) +post-install: + ${MKDIR} ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKDIR}/my.cnf.sample ${STAGEDIR}${ETCDIR}/my.cnf.sample + + ${MKDIR} ${STAGEDIR}${ETCDIR}/keyring + ${MKDIR} ${STAGEDIR}${MY_SECDIR} + ${MKDIR} ${STAGEDIR}${MY_TMPDIR} +.endif .if ${ARCH} == "armv6" EXTRA_PATCHES+= ${FILESDIR}/extra-patch-config.h.cmake Modified: branches/2017Q1/databases/mysql56-server/distinfo ============================================================================== --- branches/2017Q1/databases/mysql56-server/distinfo Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-server/distinfo Thu Jan 26 19:58:04 2017 (r432535) @@ -1,3 +1,3 @@ -TIMESTAMP = 1477038469 -SHA256 (mysql-5.6.34.tar.gz) = ee90bafec6af3abe2715ccb0b3cc9345ed8d1cce025d41e6ec2b2b7a7d820823 -SIZE (mysql-5.6.34.tar.gz) = 32094762 +TIMESTAMP = 1484753208 +SHA256 (mysql-5.6.35.tar.gz) = dddcba169b98844d7c65346cbd791c853edf942d78440381685087b84aa35020 +SIZE (mysql-5.6.35.tar.gz) = 32167628 Copied: branches/2017Q1/databases/mysql56-server/files/my.cnf.sample.in (from r431919, head/databases/mysql56-server/files/my.cnf.sample.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/databases/mysql56-server/files/my.cnf.sample.in Thu Jan 26 19:58:04 2017 (r432535, copy of r431919, head/databases/mysql56-server/files/my.cnf.sample.in) @@ -0,0 +1,63 @@ +# $FreeBSD$ + +[client] +port = 3306 +socket = /tmp/mysql.sock + +[mysql] +prompt = \u@\h [\d]>\_ +no_auto_rehash + +[mysqld] +user = mysql +port = 3306 +socket = /tmp/mysql.sock +bind-address = 127.0.0.1 +basedir = %%PREFIX%% +datadir = %%MY_DBDIR%% +tmpdir = %%MY_TMPDIR%% +slave-load-tmpdir = %%MY_TMPDIR%% +secure-file-priv = %%MY_SECDIR%% +log-bin = mysql-bin +log-output = TABLE +master-info-repository = TABLE +relay-log-info-repository = TABLE +relay-log-recovery = 1 +slow-query-log = 1 +server-id = 1 +sync_binlog = 1 +sync_relay_log = 1 +binlog_cache_size = 16M +expire_logs_days = 30 +log-slave-updates = 1 +enforce-gtid-consistency = 1 +gtid-mode = ON +safe-user-create = 1 +lower_case_table_names = 1 +explicit-defaults-for-timestamp = 1 +myisam-recover-options = BACKUP,FORCE +open_files_limit = 32768 +table_open_cache = 16384 +table_definition_cache = 8192 +net_retry_count = 16384 +key_buffer_size = 256M +max_allowed_packet = 64M +query_cache_type = 0 +query_cache_size = 0 +long_query_time = 0.5 +innodb_buffer_pool_size = 1G +innodb_data_home_dir = %%MY_DBDIR%% +innodb_log_group_home_dir = %%MY_DBDIR%% +innodb_data_file_path = ibdata1:128M:autoextend +innodb_flush_method = O_DIRECT +innodb_log_file_size = 256M +innodb_log_buffer_size = 16M +innodb_write_io_threads = 8 +innodb_read_io_threads = 8 +innodb_autoinc_lock_mode = 2 +skip-symbolic-links + +[mysqldump] +max_allowed_packet = 256M +quote_names +quick Copied: branches/2017Q1/databases/mysql56-server/files/patch-cmake_ssl.cmake (from r432458, head/databases/mysql56-server/files/patch-cmake_ssl.cmake) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/databases/mysql56-server/files/patch-cmake_ssl.cmake Thu Jan 26 19:58:04 2017 (r432535, copy of r432458, head/databases/mysql56-server/files/patch-cmake_ssl.cmake) @@ -0,0 +1,11 @@ +--- cmake/ssl.cmake.orig 2016-11-28 13:36:22 UTC ++++ cmake/ssl.cmake +@@ -176,7 +176,7 @@ MACRO (MYSQL_CHECK_SSL) + IF(OPENSSL_INCLUDE_DIR AND + OPENSSL_LIBRARY AND + CRYPTO_LIBRARY AND +- OPENSSL_MAJOR_VERSION STREQUAL "1" ++ OPENSSL_MAJOR_VERSION VERSION_GREATER_EQUAL "1" + ) + SET(OPENSSL_FOUND TRUE) + ELSE() Modified: branches/2017Q1/databases/mysql56-server/files/patch-mysys_ssl_my_default.cc ============================================================================== --- branches/2017Q1/databases/mysql56-server/files/patch-mysys_ssl_my_default.cc Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-server/files/patch-mysys_ssl_my_default.cc Thu Jan 26 19:58:04 2017 (r432535) @@ -1,6 +1,6 @@ ---- mysys_ssl/my_default.cc.orig 2013-01-22 17:54:49.000000000 +0100 -+++ mysys_ssl/my_default.cc 2013-02-13 11:08:15.000000000 +0100 -@@ -119,7 +119,7 @@ +--- mysys_ssl/my_default.cc.orig 2016-11-28 13:36:22 UTC ++++ mysys_ssl/my_default.cc +@@ -110,7 +110,7 @@ static my_bool defaults_already_read= FA /* Which directories are searched for options (and in which order) */ @@ -9,18 +9,48 @@ #define DEFAULT_DIRS_SIZE (MAX_DEFAULT_DIRS + 1) /* Terminate with NULL */ static const char **default_directories = NULL; -@@ -1395,7 +1395,10 @@ +@@ -903,6 +903,14 @@ static int search_default_file_with_ext( + return 1; /* Ignore wrong files */ + } - #if defined(DEFAULT_SYSCONFDIR) - if (DEFAULT_SYSCONFDIR[0]) ++ if (strstr(name, "/etc") == name) + { - errors += add_directory(alloc, DEFAULT_SYSCONFDIR, dirs); -+ errors += add_directory(alloc, DEFAULT_SYSCONFDIR "/mysql", dirs); ++ fprintf(stderr, ++ "error: Config file %s in invalid location, please move to or merge with /usr/local%s\n", ++ name,name); ++ goto err; + } - #endif /* DEFAULT_SYSCONFDIR */ ++ + while (mysql_file_getline(buff, sizeof(buff) - 1, fp, is_login_file)) + { + line++; +@@ -1241,7 +1249,8 @@ void my_print_default_files(const char * + end[(strlen(end)-1)] = ' '; + else + strxmov(end, conf_file, *ext , " ", NullS); +- fputs(name, stdout); ++ if (strstr(name, "/etc") != name) ++ fputs(name, stdout); + } + } + } +@@ -1400,13 +1409,8 @@ static const char **init_default_directo + + #else + +- errors += add_directory(alloc, "/etc/", dirs); +- errors += add_directory(alloc, "/etc/mysql/", dirs); +- +-#if defined(DEFAULT_SYSCONFDIR) +- if (DEFAULT_SYSCONFDIR[0]) +- errors += add_directory(alloc, DEFAULT_SYSCONFDIR, dirs); +-#endif /* DEFAULT_SYSCONFDIR */ ++ errors += add_directory(alloc, "/usr/local/etc/", dirs); ++ errors += add_directory(alloc, "/usr/local/etc/mysql/", dirs); #endif -@@ -1466,7 +1469,7 @@ + +@@ -1477,7 +1481,7 @@ int check_file_permissions(const char *f MY_STAT stat_info; if (!my_stat(file_name,&stat_info,MYF(0))) Modified: branches/2017Q1/databases/mysql56-server/pkg-message ============================================================================== --- branches/2017Q1/databases/mysql56-server/pkg-message Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-server/pkg-message Thu Jan 26 19:58:04 2017 (r432535) @@ -1,6 +1,19 @@ -************************************************************************ +***************************************************************************** Remember to run mysql_upgrade the first time you start the MySQL server after an upgrade from an earlier version. -************************************************************************ +Initial password for first time use of MySQL is saved in $HOME/.mysql_secret +ie. when you want to use "mysql -u root -p" first you should see password +in /root/.mysql_secret + +***************************************************************************** + +***************************************************************************** + +Please keep in mind that the default location for my.cnf will be changed +from "/var/db/mysql/my.cnf" to "/usr/local/etc/mysql/my.cnf" in the near +future. If you do not want to move your my.cnf to the new location then +you must set "mysql_optfile" in /etc/rc.conf to "/var/db/mysql/my.cnf". + +***************************************************************************** Modified: branches/2017Q1/databases/mysql56-server/pkg-plist ============================================================================== --- branches/2017Q1/databases/mysql56-server/pkg-plist Thu Jan 26 19:34:46 2017 (r432534) +++ branches/2017Q1/databases/mysql56-server/pkg-plist Thu Jan 26 19:58:04 2017 (r432535) @@ -27,8 +27,10 @@ lib/mysql/libmysqld.a lib/mysql/plugin/adt_null.so lib/mysql/plugin/auth.so lib/mysql/plugin/auth_test_plugin.so +lib/mysql/plugin/connection_control.so lib/mysql/plugin/daemon_example.ini lib/mysql/plugin/libdaemon_example.so +%%EXAMPLE%%lib/mysql/plugin/ha_example.so lib/mysql/plugin/mypluglib.so lib/mysql/plugin/mysql_no_login.so lib/mysql/plugin/qa_auth_client.so @@ -130,3 +132,7 @@ man/man8/mysqld.8.gz %%DATADIR%%/spanish/errmsg.sys %%DATADIR%%/swedish/errmsg.sys %%DATADIR%%/ukrainian/errmsg.sys +%%ETCDIR%%/my.cnf.sample +@dir(mysql,mysql,0750) %%ETCDIR%%/keyring +@dir(mysql,mysql,0750) %%MY_SECDIR%% +@dir(mysql,mysql,0750) %%MY_TMPDIR%% From owner-svn-ports-branches@freebsd.org Thu Jan 26 19:59:47 2017 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 278E3CC3DBA; Thu, 26 Jan 2017 19:59:47 +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 F3EC66B; Thu, 26 Jan 2017 19:59:46 +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 v0QJxkTA077309; Thu, 26 Jan 2017 19:59:46 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QJxjdl077306; Thu, 26 Jan 2017 19:59:45 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201701261959.v0QJxjdl077306@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Thu, 26 Jan 2017 19:59:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432536 - branches/2017Q1/security/openssl-devel 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, 26 Jan 2017 19:59:47 -0000 Author: brnrd Date: Thu Jan 26 19:59:45 2017 New Revision: 432536 URL: https://svnweb.freebsd.org/changeset/ports/432536 Log: MFH: r432533 security/openssl-devel: Update to 1.1.0d - Update to 1.1.0d - Adjust pkg-plist Security: d455708a-e3d3-11e6-9940-b499baebfeaf Approved by: ports-secteam (feld) Modified: branches/2017Q1/security/openssl-devel/Makefile branches/2017Q1/security/openssl-devel/distinfo branches/2017Q1/security/openssl-devel/pkg-plist Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/security/openssl-devel/Makefile ============================================================================== --- branches/2017Q1/security/openssl-devel/Makefile Thu Jan 26 19:58:04 2017 (r432535) +++ branches/2017Q1/security/openssl-devel/Makefile Thu Jan 26 19:59:45 2017 (r432536) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openssl -PORTVERSION= 1.1.0c +PORTVERSION= 1.1.0d CATEGORIES= security devel MASTER_SITES= https://www.openssl.org/source/ \ ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/ Modified: branches/2017Q1/security/openssl-devel/distinfo ============================================================================== --- branches/2017Q1/security/openssl-devel/distinfo Thu Jan 26 19:58:04 2017 (r432535) +++ branches/2017Q1/security/openssl-devel/distinfo Thu Jan 26 19:59:45 2017 (r432536) @@ -1,3 +1,3 @@ -TIMESTAMP = 1478791341 -SHA256 (openssl-1.1.0c.tar.gz) = fc436441a2e05752d31b4e46115eb89709a28aef96d4fe786abe92409b2fd6f5 -SIZE (openssl-1.1.0c.tar.gz) = 5179668 +TIMESTAMP = 1485441942 +SHA256 (openssl-1.1.0d.tar.gz) = 7d5ebb9e89756545c156ff9c13cf2aa6214193b010a468a3bc789c3c28fe60df +SIZE (openssl-1.1.0d.tar.gz) = 5201626 Modified: branches/2017Q1/security/openssl-devel/pkg-plist ============================================================================== --- branches/2017Q1/security/openssl-devel/pkg-plist Thu Jan 26 19:58:04 2017 (r432535) +++ branches/2017Q1/security/openssl-devel/pkg-plist Thu Jan 26 19:59:45 2017 (r432536) @@ -249,6 +249,8 @@ man/man1/x509.1.gz %%MAN3%%man/man3/BIO_accept_ex.3.gz %%MAN3%%man/man3/BIO_append_filename.3.gz %%MAN3%%man/man3/BIO_callback_ctrl.3.gz +%%MAN3%%man/man3/BIO_callback_fn.3.gz +%%MAN3%%man/man3/BIO_callback_fn_ex.3.gz %%MAN3%%man/man3/BIO_closesocket.3.gz %%MAN3%%man/man3/BIO_connect.3.gz %%MAN3%%man/man3/BIO_ctrl.3.gz @@ -279,6 +281,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/BIO_get_buffer_num_lines.3.gz %%MAN3%%man/man3/BIO_get_callback.3.gz %%MAN3%%man/man3/BIO_get_callback_arg.3.gz +%%MAN3%%man/man3/BIO_get_callback_ex.3.gz %%MAN3%%man/man3/BIO_get_cipher_ctx.3.gz %%MAN3%%man/man3/BIO_get_cipher_status.3.gz %%MAN3%%man/man3/BIO_get_close.3.gz @@ -373,6 +376,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/BIO_set_buffer_size.3.gz %%MAN3%%man/man3/BIO_set_callback.3.gz %%MAN3%%man/man3/BIO_set_callback_arg.3.gz +%%MAN3%%man/man3/BIO_set_callback_ex.3.gz %%MAN3%%man/man3/BIO_set_cipher.3.gz %%MAN3%%man/man3/BIO_set_close.3.gz %%MAN3%%man/man3/BIO_set_conn_address.3.gz @@ -634,6 +638,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/CRYPTO_secure_malloc_done.3.gz %%MAN3%%man/man3/CRYPTO_secure_malloc_init.3.gz %%MAN3%%man/man3/CRYPTO_secure_malloc_initialized.3.gz +%%MAN3%%man/man3/CRYPTO_secure_used.3.gz %%MAN3%%man/man3/CRYPTO_secure_zalloc.3.gz %%MAN3%%man/man3/CRYPTO_set_ex_data.3.gz %%MAN3%%man/man3/CRYPTO_set_mem_debug.3.gz @@ -660,7 +665,6 @@ man/man1/x509.1.gz %%MAN3%%man/man3/CT_POLICY_EVAL_CTX_set1_cert.3.gz %%MAN3%%man/man3/CT_POLICY_EVAL_CTX_set1_issuer.3.gz %%MAN3%%man/man3/CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE.3.gz -%%MAN3%%man/man3/CYRPTO_secure_used.3.gz %%MAN3%%man/man3/DECLARE_ASN1_FUNCTIONS.3.gz %%MAN3%%man/man3/DECLARE_LHASH_OF.3.gz %%MAN3%%man/man3/DECLARE_PEM_rw.3.gz @@ -700,6 +704,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/DH_OpenSSL.3.gz %%MAN3%%man/man3/DH_bits.3.gz %%MAN3%%man/man3/DH_check.3.gz +%%MAN3%%man/man3/DH_check_params.3.gz %%MAN3%%man/man3/DH_clear_flags.3.gz %%MAN3%%man/man3/DH_compute_key.3.gz %%MAN3%%man/man3/DH_free.3.gz @@ -1081,6 +1086,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/ENGINE_unregister_ciphers.3.gz %%MAN3%%man/man3/ENGINE_unregister_digests.3.gz %%MAN3%%man/man3/ENGINE_up_ref.3.gz +%%MAN3%%man/man3/ERR_FATAL_ERROR.3.gz %%MAN3%%man/man3/ERR_GET_FUNC.3.gz %%MAN3%%man/man3/ERR_GET_LIB.3.gz %%MAN3%%man/man3/ERR_GET_REASON.3.gz @@ -1290,6 +1296,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/EVP_PKEY_encrypt.3.gz %%MAN3%%man/man3/EVP_PKEY_encrypt_init.3.gz %%MAN3%%man/man3/EVP_PKEY_free.3.gz +%%MAN3%%man/man3/EVP_PKEY_gen_cb.3.gz %%MAN3%%man/man3/EVP_PKEY_get0_DH.3.gz %%MAN3%%man/man3/EVP_PKEY_get0_DSA.3.gz %%MAN3%%man/man3/EVP_PKEY_get0_EC_KEY.3.gz @@ -1356,12 +1363,14 @@ man/man1/x509.1.gz %%MAN3%%man/man3/EVP_bf_cfb.3.gz %%MAN3%%man/man3/EVP_bf_ecb.3.gz %%MAN3%%man/man3/EVP_bf_ofb.3.gz -%%MAN3%%man/man3/EVP_blake2b_512.3.gz -%%MAN3%%man/man3/EVP_blake2s_256.3.gz +%%MAN3%%man/man3/EVP_blake2b512.3.gz +%%MAN3%%man/man3/EVP_blake2s256.3.gz %%MAN3%%man/man3/EVP_cast5_cbc.3.gz %%MAN3%%man/man3/EVP_cast5_cfb.3.gz %%MAN3%%man/man3/EVP_cast5_ecb.3.gz %%MAN3%%man/man3/EVP_cast5_ofb.3.gz +%%MAN3%%man/man3/EVP_chacha20.3.gz +%%MAN3%%man/man3/EVP_chacha20_poly1305.3.gz %%MAN3%%man/man3/EVP_cleanup.3.gz %%MAN3%%man/man3/EVP_des_cbc.3.gz %%MAN3%%man/man3/EVP_des_cfb.3.gz @@ -1418,6 +1427,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/GENERAL_NAME_new.3.gz %%MAN3%%man/man3/GENERAL_SUBTREE_free.3.gz %%MAN3%%man/man3/GENERAL_SUBTREE_new.3.gz +%%MAN3%%man/man3/GEN_SESSION_CB.3.gz %%MAN3%%man/man3/HMAC.3.gz %%MAN3%%man/man3/HMAC_CTX_copy.3.gz %%MAN3%%man/man3/HMAC_CTX_free.3.gz @@ -1760,6 +1770,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/PKCS7_ENC_CONTENT_new.3.gz %%MAN3%%man/man3/PKCS7_ENVELOPE_free.3.gz %%MAN3%%man/man3/PKCS7_ENVELOPE_new.3.gz +%%MAN3%%man/man3/PKCS7_ISSUER_AND_SERIAL_digest.3.gz %%MAN3%%man/man3/PKCS7_ISSUER_AND_SERIAL_free.3.gz %%MAN3%%man/man3/PKCS7_ISSUER_AND_SERIAL_new.3.gz %%MAN3%%man/man3/PKCS7_RECIP_INFO_free.3.gz @@ -1971,6 +1982,9 @@ man/man1/x509.1.gz %%MAN3%%man/man3/SSL_CIPHER_is_aead.3.gz %%MAN3%%man/man3/SSL_COMP_add_compression_method.3.gz %%MAN3%%man/man3/SSL_COMP_free_compression_methods.3.gz +%%MAN3%%man/man3/SSL_COMP_get0_name.3.gz +%%MAN3%%man/man3/SSL_COMP_get_compression_methods.3.gz +%%MAN3%%man/man3/SSL_COMP_get_id.3.gz %%MAN3%%man/man3/SSL_CONF_CTX_clear_flags.3.gz %%MAN3%%man/man3/SSL_CONF_CTX_free.3.gz %%MAN3%%man/man3/SSL_CONF_CTX_new.3.gz @@ -2338,6 +2352,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/SSL_use_certificate_chain_file.3.gz %%MAN3%%man/man3/SSL_use_certificate_file.3.gz %%MAN3%%man/man3/SSL_use_psk_identity_hint.3.gz +%%MAN3%%man/man3/SSL_verify_cb.3.gz %%MAN3%%man/man3/SSL_waiting_for_async.3.gz %%MAN3%%man/man3/SSL_want.3.gz %%MAN3%%man/man3/SSL_want_async.3.gz @@ -2444,6 +2459,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_CRL_add1_ext_i2d.3.gz %%MAN3%%man/man3/X509_CRL_add_ext.3.gz %%MAN3%%man/man3/X509_CRL_delete_ext.3.gz +%%MAN3%%man/man3/X509_CRL_digest.3.gz %%MAN3%%man/man3/X509_CRL_dup.3.gz %%MAN3%%man/man3/X509_CRL_free.3.gz %%MAN3%%man/man3/X509_CRL_get0_by_cert.3.gz @@ -2499,6 +2515,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_NAME_add_entry_by_OBJ.3.gz %%MAN3%%man/man3/X509_NAME_add_entry_by_txt.3.gz %%MAN3%%man/man3/X509_NAME_delete_entry.3.gz +%%MAN3%%man/man3/X509_NAME_digest.3.gz %%MAN3%%man/man3/X509_NAME_dup.3.gz %%MAN3%%man/man3/X509_NAME_entry_count.3.gz %%MAN3%%man/man3/X509_NAME_free.3.gz @@ -2522,6 +2539,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_PUBKEY_set0_param.3.gz %%MAN3%%man/man3/X509_REQ_INFO_free.3.gz %%MAN3%%man/man3/X509_REQ_INFO_new.3.gz +%%MAN3%%man/man3/X509_REQ_digest.3.gz %%MAN3%%man/man3/X509_REQ_dup.3.gz %%MAN3%%man/man3/X509_REQ_free.3.gz %%MAN3%%man/man3/X509_REQ_get0_pubkey.3.gz @@ -2559,7 +2577,13 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_SIG_get0.3.gz %%MAN3%%man/man3/X509_SIG_getm.3.gz %%MAN3%%man/man3/X509_SIG_new.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_cert_crl_fn.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_check_crl_fn.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_check_issued_fn.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_check_policy_fn.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_check_revocation_fn.3.gz %%MAN3%%man/man3/X509_STORE_CTX_cleanup.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_cleanup_fn.3.gz %%MAN3%%man/man3/X509_STORE_CTX_free.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get0_cert.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get0_chain.3.gz @@ -2572,6 +2596,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_STORE_CTX_get_check_policy.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_check_revocation.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_cleanup.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_get_crl_fn.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_current_cert.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_error.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_error_depth.3.gz @@ -2579,12 +2604,15 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_STORE_CTX_get_ex_new_index.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_get_crl.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_get_issuer.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_get_issuer_fn.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_lookup_certs.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_lookup_crls.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_num_untrusted.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_verify.3.gz %%MAN3%%man/man3/X509_STORE_CTX_get_verify_cb.3.gz %%MAN3%%man/man3/X509_STORE_CTX_init.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_lookup_certs_fn.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_lookup_crls_fn.3.gz %%MAN3%%man/man3/X509_STORE_CTX_new.3.gz %%MAN3%%man/man3/X509_STORE_CTX_set0_crls.3.gz %%MAN3%%man/man3/X509_STORE_CTX_set0_param.3.gz @@ -2599,6 +2627,8 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_STORE_CTX_set_ex_data.3.gz %%MAN3%%man/man3/X509_STORE_CTX_set_verify.3.gz %%MAN3%%man/man3/X509_STORE_CTX_set_verify_cb.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_verify_cb.3.gz +%%MAN3%%man/man3/X509_STORE_CTX_verify_fn.3.gz %%MAN3%%man/man3/X509_STORE_free.3.gz %%MAN3%%man/man3/X509_STORE_get0_objects.3.gz %%MAN3%%man/man3/X509_STORE_get0_param.3.gz @@ -2645,6 +2675,8 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_get_auth_level.3.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_get_depth.3.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_get_flags.3.gz +%%MAN3%%man/man3/X509_VERIFY_PARAM_get_inh_flags.3.gz +%%MAN3%%man/man3/X509_VERIFY_PARAM_get_time.3.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_set1_email.3.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_set1_host.3.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_set1_ip.3.gz @@ -2654,6 +2686,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_set_depth.3.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_set_flags.3.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_set_hostflags.3.gz +%%MAN3%%man/man3/X509_VERIFY_PARAM_set_inh_flags.3.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_set_purpose.3.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_set_time.3.gz %%MAN3%%man/man3/X509_VERIFY_PARAM_set_trust.3.gz @@ -2667,6 +2700,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_check_ip_asc.3.gz %%MAN3%%man/man3/X509_check_issued.3.gz %%MAN3%%man/man3/X509_delete_ext.3.gz +%%MAN3%%man/man3/X509_digest.3.gz %%MAN3%%man/man3/X509_dup.3.gz %%MAN3%%man/man3/X509_free.3.gz %%MAN3%%man/man3/X509_get0_extensions.3.gz @@ -2705,6 +2739,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_load_cert_file.3.gz %%MAN3%%man/man3/X509_load_crl_file.3.gz %%MAN3%%man/man3/X509_new.3.gz +%%MAN3%%man/man3/X509_pubkey_digest.3.gz %%MAN3%%man/man3/X509_set1_notAfter.3.gz %%MAN3%%man/man3/X509_set1_notBefore.3.gz %%MAN3%%man/man3/X509_set_ex_data.3.gz @@ -2729,6 +2764,10 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509v3_get_ext_by_critical.3.gz %%MAN3%%man/man3/X509v3_get_ext_count.3.gz %%MAN3%%man/man3/bio.3.gz +%%MAN3%%man/man3/bio_info_cb.3.gz +%%MAN3%%man/man3/custom_ext_add_cb.3.gz +%%MAN3%%man/man3/custom_ext_free_cb.3.gz +%%MAN3%%man/man3/custom_ext_parse_cb.3.gz %%MAN3%%man/man3/d2i_ACCESS_DESCRIPTION.3.gz %%MAN3%%man/man3/d2i_ASIdOrRange.3.gz %%MAN3%%man/man3/d2i_ASIdentifierChoice.3.gz From owner-svn-ports-branches@freebsd.org Thu Jan 26 20:01:10 2017 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 0F274CC3F58; Thu, 26 Jan 2017 20:01:10 +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 BBBE227E; Thu, 26 Jan 2017 20:01:09 +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 v0QK186Y077669; Thu, 26 Jan 2017 20:01:08 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0QK18CF077661; Thu, 26 Jan 2017 20:01:08 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201701262001.v0QK18CF077661@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Thu, 26 Jan 2017 20:01:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432537 - in branches/2017Q1/databases: mariadb101-client mariadb101-client/files mariadb101-server mariadb101-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: Thu, 26 Jan 2017 20:01:10 -0000 Author: brnrd Date: Thu Jan 26 20:01:07 2017 New Revision: 432537 URL: https://svnweb.freebsd.org/changeset/ports/432537 Log: MFH: r431824 databases/mariadb101-server: Update to 10.1.21 - Update to 10.1.21 - Fix patches that no longer cleanly apply - Rename patches to new naming scheme Security: 4d2f9d09-ddb7-11e6-a9a5-b499baebfeaf Approved by: ports-secteam (feld) Added: branches/2017Q1/databases/mariadb101-server/files/patch-mysys__ssl_my__crypt.cc - copied unchanged from r431824, head/databases/mariadb101-server/files/patch-mysys__ssl_my__crypt.cc Deleted: branches/2017Q1/databases/mariadb101-server/files/patch-mysys_ssl-my_crypt.cc Modified: branches/2017Q1/databases/mariadb101-client/Makefile branches/2017Q1/databases/mariadb101-client/files/patch-mysys_my__default.c branches/2017Q1/databases/mariadb101-server/Makefile branches/2017Q1/databases/mariadb101-server/distinfo branches/2017Q1/databases/mariadb101-server/files/patch-mysys_my__default.c branches/2017Q1/databases/mariadb101-server/files/patch-scripts_mysqld__safe.sh branches/2017Q1/databases/mariadb101-server/pkg-plist Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/databases/mariadb101-client/Makefile ============================================================================== --- branches/2017Q1/databases/mariadb101-client/Makefile Thu Jan 26 19:59:45 2017 (r432536) +++ branches/2017Q1/databases/mariadb101-client/Makefile Thu Jan 26 20:01:07 2017 (r432537) @@ -20,6 +20,7 @@ CLIENT_ONLY= yes post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/wsrep* + ${RM} ${STAGEDIR}${PREFIX}/bin/mysqld_safe_helper ${RM} ${STAGEDIR}${PREFIX}/share/aclocal/mysql.m4 ${RM} -r ${STAGEDIR}${PREFIX}/share/pkgconfig ${RM} -r ${STAGEDIR}${PREFIX}/include/mysql/private Modified: branches/2017Q1/databases/mariadb101-client/files/patch-mysys_my__default.c ============================================================================== --- branches/2017Q1/databases/mariadb101-client/files/patch-mysys_my__default.c Thu Jan 26 19:59:45 2017 (r432536) +++ branches/2017Q1/databases/mariadb101-client/files/patch-mysys_my__default.c Thu Jan 26 20:01:07 2017 (r432537) @@ -1,14 +1,5 @@ ---- mysys/my_default.c.orig 2016-03-24 09:12:11 UTC +--- mysys/my_default.c.orig 2017-01-17 19:38:25 UTC +++ mysys/my_default.c -@@ -90,7 +90,7 @@ static my_bool defaults_already_read= FA - - /* Which directories are searched for options (and in which order) */ - --#define MAX_DEFAULT_DIRS 6 -+#define MAX_DEFAULT_DIRS 7 - #define DEFAULT_DIRS_SIZE (MAX_DEFAULT_DIRS + 1) /* Terminate with NULL */ - static const char **default_directories = NULL; - @@ -785,7 +785,7 @@ static int search_default_file_with_ext( { MY_STAT stat_info; @@ -18,32 +9,40 @@ /* Ignore world-writable regular files. This is mainly done to protect us to not read a file created by -@@ -803,6 +803,14 @@ static int search_default_file_with_ext( +@@ -803,6 +803,22 @@ static int search_default_file_with_ext( if (!(fp= mysql_file_fopen(key_file_cnf, name, O_RDONLY, MYF(0)))) return 1; /* Ignore wrong files */ + if (strstr(name, "/etc") == name) + { + fprintf(stderr, -+ "error: Config file %s in invalid location, please move to or merge with /usr/local%s\n", -+ name,name); ++ "error: Config file %s in invalid location, please move to or merge with /usr/local%s\n", ++ name,name); ++ goto err; ++ } ++ ++ if (strstr(name, "/etc") == name) ++ { ++ fprintf(stderr, ++ "error: Config file %s in invalid location, please move to or merge with /usr/local%s\n", ++ name,name); + goto err; + } + while (mysql_file_fgets(buff, sizeof(buff) - 1, fp)) { line++; -@@ -1067,7 +1075,8 @@ void my_print_default_files(const char * +@@ -1067,7 +1083,8 @@ void my_print_default_files(const char * if (name[0] == FN_HOMELIB) /* Add . to filenames in home */ *end++= '.'; strxmov(end, conf_file, *ext, " ", NullS); - fputs(name, stdout); + if (strstr(name, "/etc") != name) -+ fputs(name, stdout); ++ fputs(name, stdout); } } } -@@ -1223,13 +1232,10 @@ static const char **init_default_directo +@@ -1228,13 +1245,10 @@ static const char **init_default_directo #else Modified: branches/2017Q1/databases/mariadb101-server/Makefile ============================================================================== --- branches/2017Q1/databases/mariadb101-server/Makefile Thu Jan 26 19:59:45 2017 (r432536) +++ branches/2017Q1/databases/mariadb101-server/Makefile Thu Jan 26 20:01:07 2017 (r432537) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 10.1.20 -PORTREVISION= 1 +PORTVERSION= 10.1.21 +PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \ http://mirrors.supportex.net/${SITESDIR}/ \ Modified: branches/2017Q1/databases/mariadb101-server/distinfo ============================================================================== --- branches/2017Q1/databases/mariadb101-server/distinfo Thu Jan 26 19:59:45 2017 (r432536) +++ branches/2017Q1/databases/mariadb101-server/distinfo Thu Jan 26 20:01:07 2017 (r432537) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481835914 -SHA256 (mariadb-10.1.20.tar.gz) = c24e83f24d674d9912319f9e9422f093c8ca6be1721a4380cbd74792b89ba0b9 -SIZE (mariadb-10.1.20.tar.gz) = 61312731 +TIMESTAMP = 1484755161 +SHA256 (mariadb-10.1.21.tar.gz) = 5a816355781ea22a6c65a436d8162f19bd292ec90e2b7d9499c031ae4a659490 +SIZE (mariadb-10.1.21.tar.gz) = 61406584 Copied: branches/2017Q1/databases/mariadb101-server/files/patch-mysys__ssl_my__crypt.cc (from r431824, head/databases/mariadb101-server/files/patch-mysys__ssl_my__crypt.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/databases/mariadb101-server/files/patch-mysys__ssl_my__crypt.cc Thu Jan 26 20:01:07 2017 (r432537, copy of r431824, head/databases/mariadb101-server/files/patch-mysys__ssl_my__crypt.cc) @@ -0,0 +1,25 @@ +--- mysys_ssl/my_crypt.cc.orig 2017-01-17 19:38:25 UTC ++++ mysys_ssl/my_crypt.cc +@@ -275,10 +275,14 @@ int my_random_bytes(uchar* buf, int num) + return MY_AES_OK; + } + #else ++#include + #include + + int my_random_bytes(uchar *buf, int num) + { ++#if defined(LIBRESSL_VERSION_NUMBER) ++ arc4random_buf(buf, num); ++#else + /* + Unfortunately RAND_bytes manual page does not provide any guarantees + in relation to blocking behavior. Here we explicitly use SSLeay random +@@ -288,6 +292,7 @@ int my_random_bytes(uchar *buf, int num) + RAND_METHOD *rand = RAND_SSLeay(); + if (rand == NULL || rand->bytes(buf, num) != 1) + return MY_AES_OPENSSL_ERROR; ++#endif + return MY_AES_OK; + } + #endif Modified: branches/2017Q1/databases/mariadb101-server/files/patch-mysys_my__default.c ============================================================================== --- branches/2017Q1/databases/mariadb101-server/files/patch-mysys_my__default.c Thu Jan 26 19:59:45 2017 (r432536) +++ branches/2017Q1/databases/mariadb101-server/files/patch-mysys_my__default.c Thu Jan 26 20:01:07 2017 (r432537) @@ -1,16 +1,5 @@ -Obey hier(7) - ---- mysys/my_default.c.orig 2016-03-24 09:12:11 UTC +--- mysys/my_default.c.orig 2017-01-17 19:38:25 UTC +++ mysys/my_default.c -@@ -90,7 +90,7 @@ static my_bool defaults_already_read= FA - - /* Which directories are searched for options (and in which order) */ - --#define MAX_DEFAULT_DIRS 6 -+#define MAX_DEFAULT_DIRS 7 - #define DEFAULT_DIRS_SIZE (MAX_DEFAULT_DIRS + 1) /* Terminate with NULL */ - static const char **default_directories = NULL; - @@ -785,7 +785,7 @@ static int search_default_file_with_ext( { MY_STAT stat_info; @@ -20,32 +9,40 @@ Obey hier(7) /* Ignore world-writable regular files. This is mainly done to protect us to not read a file created by -@@ -803,6 +803,14 @@ static int search_default_file_with_ext( +@@ -803,6 +803,22 @@ static int search_default_file_with_ext( if (!(fp= mysql_file_fopen(key_file_cnf, name, O_RDONLY, MYF(0)))) return 1; /* Ignore wrong files */ + if (strstr(name, "/etc") == name) + { + fprintf(stderr, -+ "error: Config file %s in invalid location, please move to or merge with /usr/local%s\n", -+ name,name); ++ "error: Config file %s in invalid location, please move to or merge with /usr/local%s\n", ++ name,name); ++ goto err; ++ } ++ ++ if (strstr(name, "/etc") == name) ++ { ++ fprintf(stderr, ++ "error: Config file %s in invalid location, please move to or merge with /usr/local%s\n", ++ name,name); + goto err; + } + while (mysql_file_fgets(buff, sizeof(buff) - 1, fp)) { line++; -@@ -1067,7 +1075,8 @@ void my_print_default_files(const char * +@@ -1067,7 +1083,8 @@ void my_print_default_files(const char * if (name[0] == FN_HOMELIB) /* Add . to filenames in home */ *end++= '.'; strxmov(end, conf_file, *ext, " ", NullS); - fputs(name, stdout); + if (strstr(name, "/etc") != name) -+ fputs(name, stdout); ++ fputs(name, stdout); } } } -@@ -1223,13 +1232,10 @@ static const char **init_default_directo +@@ -1228,13 +1245,10 @@ static const char **init_default_directo #else Modified: branches/2017Q1/databases/mariadb101-server/files/patch-scripts_mysqld__safe.sh ============================================================================== --- branches/2017Q1/databases/mariadb101-server/files/patch-scripts_mysqld__safe.sh Thu Jan 26 19:59:45 2017 (r432536) +++ branches/2017Q1/databases/mariadb101-server/files/patch-scripts_mysqld__safe.sh Thu Jan 26 20:01:07 2017 (r432537) @@ -1,8 +1,6 @@ -Obey hier(7) - ---- scripts/mysqld_safe.sh.orig 2015-10-15 15:43:45 UTC +--- scripts/mysqld_safe.sh.orig 2017-01-18 20:11:42 UTC +++ scripts/mysqld_safe.sh -@@ -558,10 +558,10 @@ fi +@@ -581,10 +581,10 @@ fi if test -z "$MYSQL_HOME" then @@ -15,12 +13,12 @@ Obey hier(7) $DATADIR/my.cnf IGNORING $DATADIR/my.cnf" -@@ -570,7 +570,7 @@ IGNORING $DATADIR/my.cnf" +@@ -593,7 +593,7 @@ IGNORING $DATADIR/my.cnf" then log_error "WARNING: Found $DATADIR/my.cnf The data directory is a deprecated location for my.cnf, please move it to -$MY_BASEDIR_VERSION/my.cnf" +$MY_BASEDIR_VERSION/etc/my.cnf" + unsafe_my_cnf=1 MYSQL_HOME=$DATADIR else - MYSQL_HOME=$MY_BASEDIR_VERSION Modified: branches/2017Q1/databases/mariadb101-server/pkg-plist ============================================================================== --- branches/2017Q1/databases/mariadb101-server/pkg-plist Thu Jan 26 19:59:45 2017 (r432536) +++ branches/2017Q1/databases/mariadb101-server/pkg-plist Thu Jan 26 20:01:07 2017 (r432537) @@ -24,6 +24,7 @@ bin/mysql_zap bin/mysqlbug bin/mysqld_multi bin/mysqld_safe +bin/mysqld_safe_helper bin/mysqldumpslow bin/mysqlhotcopy bin/mysqltest From owner-svn-ports-branches@freebsd.org Fri Jan 27 20:57:57 2017 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 6A0D6CC4E5E; Fri, 27 Jan 2017 20:57:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 392EA8E1; Fri, 27 Jan 2017 20:57:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0RKvul1087589; Fri, 27 Jan 2017 20:57:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0RKvulG087588; Fri, 27 Jan 2017 20:57:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201701272057.v0RKvulG087588@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 27 Jan 2017 20:57:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432593 - branches/2017Q1/www/zend-framework 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, 27 Jan 2017 20:57:57 -0000 Author: sunpoet Date: Fri Jan 27 20:57:56 2017 New Revision: 432593 URL: https://svnweb.freebsd.org/changeset/ports/432593 Log: MFH: r432454 Fix MEMCACHE option - Add LICENSE_FILE - Add NO_ARCH - Use USE_PHP=memcache instead of hard-coded databases/pecl-memcache Approved by: portmgr (blanket) Approved by: ports-secteam (feld) Modified: branches/2017Q1/www/zend-framework/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/www/zend-framework/Makefile ============================================================================== --- branches/2017Q1/www/zend-framework/Makefile Fri Jan 27 20:54:52 2017 (r432592) +++ branches/2017Q1/www/zend-framework/Makefile Fri Jan 27 20:57:56 2017 (r432593) @@ -11,9 +11,11 @@ MAINTAINER= wg@FreeBSD.org COMMENT= Framework for developing PHP web applications LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt CONFLICTS= ZendFramework-1.* +NO_ARCH= yes NO_BUILD= yes USE_PHP= spl WANT_PHP_WEB= yes @@ -32,7 +34,7 @@ ODBC_DESC= Enable ODBC PDO support SQLITE_DESC= Enable SQLite v3 PDO support REQPHP_DESC= Install required PHP dependencies OPTPHP_DESC= Install optional PHP dependencies -MEMCACHE_DESC= Enable memcache support +MEMCACHE_DESC= Enable memcache support PORTDOCS= CHANGELOG.md INSTALL.md README-GIT.md CONTRIBUTING.md README.md @@ -49,9 +51,9 @@ USE_PHP+= ctype curl dom gd hash iconv m USE_PHP+= bcmath bitset json posix .endif -.if ${PORT_OPTIONS:MMCACHE} -RUN_DEPENDS+= pecl-memcache>=0:databases/pecl-memcache \ - pecl-memcached>=0:databases/pecl-memcached +.if ${PORT_OPTIONS:MMEMCACHE} +USE_PHP+= memcache +RUN_DEPENDS+= pecl-memcached>=0:databases/pecl-memcached .endif .if ${PORT_OPTIONS:MMYSQL} From owner-svn-ports-branches@freebsd.org Fri Jan 27 23:01:06 2017 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 E327ECC4594; Fri, 27 Jan 2017 23:01:06 +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 A19A6E77; Fri, 27 Jan 2017 23:01:06 +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 v0RN15eL039888; Fri, 27 Jan 2017 23:01:05 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0RN15Vi039885; Fri, 27 Jan 2017 23:01:05 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201701272301.v0RN15Vi039885@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 27 Jan 2017 23:01:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432601 - in branches/2017Q1/net-mgmt/nfsen: . 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, 27 Jan 2017 23:01:07 -0000 Author: feld Date: Fri Jan 27 23:01:05 2017 New Revision: 432601 URL: https://svnweb.freebsd.org/changeset/ports/432601 Log: MFH: r432600 net-mgmt/nfsen: Update to 1.3.7 This release fixes a remote command execution vulnerability Pet portlint Announcement: https://sourceforge.net/p/nfsen/mailman/message/35623845/ Security: 6e83b2f3-e4e3-11e6-9ac1-a4badb2f4699 Approved by: ports-secteam (with hat) Modified: branches/2017Q1/net-mgmt/nfsen/Makefile branches/2017Q1/net-mgmt/nfsen/distinfo branches/2017Q1/net-mgmt/nfsen/files/patch-libexec_NfSenRRD.pm Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/net-mgmt/nfsen/Makefile ============================================================================== --- branches/2017Q1/net-mgmt/nfsen/Makefile Fri Jan 27 23:00:36 2017 (r432600) +++ branches/2017Q1/net-mgmt/nfsen/Makefile Fri Jan 27 23:01:05 2017 (r432601) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= nfsen -PORTVERSION= 1.3.7 -PORTREVISION= 3 +PORTVERSION= 1.3.8 +PORTREVISION= 0 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} \ http://nfsen.sourceforge.net/ @@ -19,7 +19,7 @@ RUN_DEPENDS= rrdtool>=0:databases/rrdtoo p5-Socket6>=0:net/p5-Socket6 \ nfdump>=0:net-mgmt/nfdump -USES= cpe iconv shebangfix perl5 +USES= cpe iconv shebangfix perl5 php CPE_VENDOR= nfsen CPE_PRODUCT= nfsen USE_PHP= session pcre sockets Modified: branches/2017Q1/net-mgmt/nfsen/distinfo ============================================================================== --- branches/2017Q1/net-mgmt/nfsen/distinfo Fri Jan 27 23:00:36 2017 (r432600) +++ branches/2017Q1/net-mgmt/nfsen/distinfo Fri Jan 27 23:01:05 2017 (r432601) @@ -1,2 +1,3 @@ -SHA256 (nfsen-1.3.7.tar.gz) = 635ba97564fe81cbeee0a3950735b9651677b69e1f53a67c654ddd5b00db469d -SIZE (nfsen-1.3.7.tar.gz) = 226463 +TIMESTAMP = 1485556082 +SHA256 (nfsen-1.3.8.tar.gz) = a7612e430357e683af81dbc07335b770b4ada115a6a88591e086ff5b6ed593a9 +SIZE (nfsen-1.3.8.tar.gz) = 221769 Modified: branches/2017Q1/net-mgmt/nfsen/files/patch-libexec_NfSenRRD.pm ============================================================================== --- branches/2017Q1/net-mgmt/nfsen/files/patch-libexec_NfSenRRD.pm Fri Jan 27 23:00:36 2017 (r432600) +++ branches/2017Q1/net-mgmt/nfsen/files/patch-libexec_NfSenRRD.pm Fri Jan 27 23:01:05 2017 (r432601) @@ -1,11 +1,11 @@ ---- libexec/NfSenRRD.pm.orig 2016-03-07 15:51:47 UTC +--- libexec/NfSenRRD.pm.orig 2017-01-27 22:36:32 UTC +++ libexec/NfSenRRD.pm @@ -73,7 +73,7 @@ sub GetRRDoffset { if ( $rrd_version < 1.1 ) { # it's RRD 1.0.x $RRDoffset = 77; } -- if ( $rrd_version >= 1.2 && $rrd_version < 1.5 ) { -+ if ( $rrd_version >= 1.2 ) { +- if ( $rrd_version >= 1.2 && $rrd_version < 1.6 ) { ++ if ( $rrd_version >= 1.2 { $RRDoffset = 67; } From owner-svn-ports-branches@freebsd.org Fri Jan 27 23:21:59 2017 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 EA72CCC4D1B; Fri, 27 Jan 2017 23:21:59 +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 A18E61C9; Fri, 27 Jan 2017 23:21:59 +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 v0RNLwp0048276; Fri, 27 Jan 2017 23:21:58 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0RNLwaT048274; Fri, 27 Jan 2017 23:21:58 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201701272321.v0RNLwaT048274@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 27 Jan 2017 23:21:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432603 - in branches/2017Q1/www/uwsgi: . 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, 27 Jan 2017 23:22:00 -0000 Author: feld Date: Fri Jan 27 23:21:58 2017 New Revision: 432603 URL: https://svnweb.freebsd.org/changeset/ports/432603 Log: MFH: r432602 www/uwsgi: Change default socket mode to 600 for security This change may be a disruptive for some users, but the default mode of 777 is a disaster waiting to happen. Approved by: ports-secteam (with hat) Modified: branches/2017Q1/www/uwsgi/Makefile branches/2017Q1/www/uwsgi/files/uwsgi.in Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/www/uwsgi/Makefile ============================================================================== --- branches/2017Q1/www/uwsgi/Makefile Fri Jan 27 23:21:22 2017 (r432602) +++ branches/2017Q1/www/uwsgi/Makefile Fri Jan 27 23:21:58 2017 (r432603) @@ -3,6 +3,7 @@ PORTNAME= uwsgi PORTVERSION= 2.0.14 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= http://projects.unbit.it/downloads/ Modified: branches/2017Q1/www/uwsgi/files/uwsgi.in ============================================================================== --- branches/2017Q1/www/uwsgi/files/uwsgi.in Fri Jan 27 23:21:22 2017 (r432602) +++ branches/2017Q1/www/uwsgi/files/uwsgi.in Fri Jan 27 23:21:58 2017 (r432603) @@ -12,6 +12,8 @@ # Default is "NO". # uwsgi_socket (path/str): Set the path to the uwsgi unix socket # Default is /tmp/uwsgi.sock. +# uwsgi_socket_mode (int): Set the mode of the socket. +# Default is 600. # uwsgi_logfile (path): Set the path to the uwsgi log file # Default is /var/log/uwsgi.log. # uwsgi_pidfile (path): Set the path to the uwsgi pid file @@ -45,6 +47,7 @@ command=%%PREFIX%%/bin/uwsgi : ${uwsgi_enable="NO"} : ${uwsgi_profiles=""} : ${uwsgi_socket="/tmp/${name}.sock"} +: ${uwsgi_socket_mode="600"} : ${uwsgi_logfile="/var/log/${name}.log"} : ${uwsgi_pidfile="/var/run/${name}.pid"} : ${uwsgi_uid="80"} @@ -72,6 +75,7 @@ if [ -n "${uwsgi_profiles}" ]; then exit 1 fi eval uwsgi_socket=\${uwsgi_${profile}_socket:-"/tmp/${name}-${profile}.sock"} + eval uwsgi_socket_mode=\${uwsgi_${profile}_socket_mode:-"600"} eval uwsgi_logfile=\${uwsgi_${profile}_logfile:-"/var/log/${name}-${profile}.log"} eval uwsgi_pidfile=\${uwsgi_${profile}_pidfile:-"/var/run/${name}-${profile}.pid"} eval uwsgi_uid=\${uwsgi_${profile}_uid:-"${uwsgi_uid}"} @@ -88,7 +92,7 @@ if [ -n "${uwsgi_profiles}" ]; then fi command=%%PREFIX%%/bin/uwsgi -command_args="--pidfile ${uwsgi_pidfile} -s ${uwsgi_socket} -d ${uwsgi_logfile} --uid ${uwsgi_uid} --gid ${uwsgi_gid}" +command_args="--pidfile ${uwsgi_pidfile} -s ${uwsgi_socket} --chmod-socket=${uwsgi_socket_mode} -d ${uwsgi_logfile} --uid ${uwsgi_uid} --gid ${uwsgi_gid}" pidfile=${uwsgi_pidfile} stop_postcmd=stop_postcmd reload_precmd=reload_precmd From owner-svn-ports-branches@freebsd.org Sat Jan 28 01:07:05 2017 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 CA420CC39D0; Sat, 28 Jan 2017 01:07:05 +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 92A81C1E; Sat, 28 Jan 2017 01:07:05 +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 v0S1748n090610; Sat, 28 Jan 2017 01:07:04 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0S1740h090606; Sat, 28 Jan 2017 01:07:04 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701280107.v0S1740h090606@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 28 Jan 2017 01:07:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432610 - in branches/2017Q1/www: firefox firefox-i18n 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, 28 Jan 2017 01:07:05 -0000 Author: jbeich Date: Sat Jan 28 01:07:04 2017 New Revision: 432610 URL: https://svnweb.freebsd.org/changeset/ports/432610 Log: MFH: r432605 r432606 www/firefox: update to 51.0.1 Changes: https://www.mozilla.org/firefox/51.0.1/releasenotes/ Approved by: ports-secteam (feld) Modified: branches/2017Q1/www/firefox-i18n/Makefile branches/2017Q1/www/firefox-i18n/distinfo branches/2017Q1/www/firefox/Makefile branches/2017Q1/www/firefox/distinfo Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/www/firefox-i18n/Makefile ============================================================================== --- branches/2017Q1/www/firefox-i18n/Makefile Sat Jan 28 01:04:17 2017 (r432609) +++ branches/2017Q1/www/firefox-i18n/Makefile Sat Jan 28 01:07:04 2017 (r432610) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 51.0 +PORTVERSION= 51.0.1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build2/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build3/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: branches/2017Q1/www/firefox-i18n/distinfo ============================================================================== --- branches/2017Q1/www/firefox-i18n/distinfo Sat Jan 28 01:04:17 2017 (r432609) +++ branches/2017Q1/www/firefox-i18n/distinfo Sat Jan 28 01:07:04 2017 (r432610) @@ -1,179 +1,179 @@ -TIMESTAMP = 1484620411 -SHA256 (xpi/firefox-i18n-51.0/ach.xpi) = 2db50aa5fe8866e0835316817a8f605dd517711fc59ac87eb1c27d259e1dcdb7 -SIZE (xpi/firefox-i18n-51.0/ach.xpi) = 422477 -SHA256 (xpi/firefox-i18n-51.0/af.xpi) = b4ee7ec17f3b9334630ff35e01c1aad47a0f493306eefd21b7dceccb274053d5 -SIZE (xpi/firefox-i18n-51.0/af.xpi) = 430607 -SHA256 (xpi/firefox-i18n-51.0/an.xpi) = 3d3a2396ab5083853e20b2cd3fa519642e6f4cd2b66cf446e80c7a794987c64a -SIZE (xpi/firefox-i18n-51.0/an.xpi) = 439498 -SHA256 (xpi/firefox-i18n-51.0/ar.xpi) = 3d93c078f8f89dd4993069fa673ceba70b3cc5be7c452afd37063b11e8f5dcbe -SIZE (xpi/firefox-i18n-51.0/ar.xpi) = 467364 -SHA256 (xpi/firefox-i18n-51.0/as.xpi) = 2ba58525cc4f1393015ddcecc286df6c1c1fbab69fc38e697a694625dc325e71 -SIZE (xpi/firefox-i18n-51.0/as.xpi) = 481205 -SHA256 (xpi/firefox-i18n-51.0/ast.xpi) = 267db3935e315e28c8fcfd3971b7885f7901294b90172e808fbcd28c2c26ae55 -SIZE (xpi/firefox-i18n-51.0/ast.xpi) = 433413 -SHA256 (xpi/firefox-i18n-51.0/az.xpi) = 7fc38d646f814b286c0ef2c8bbfd1a7b17c88d3c628c22c559cce018ab1ca461 -SIZE (xpi/firefox-i18n-51.0/az.xpi) = 448402 -SHA256 (xpi/firefox-i18n-51.0/bg.xpi) = ced3d6568e3421dafe0b8cda07f7d29c5421e038d42bcac759458133a1f3b272 -SIZE (xpi/firefox-i18n-51.0/bg.xpi) = 481419 -SHA256 (xpi/firefox-i18n-51.0/bn-BD.xpi) = 94f1f7a8decc0cb8c4accd1826b8f335b16abbb259359566be5e25529998d349 -SIZE (xpi/firefox-i18n-51.0/bn-BD.xpi) = 506131 -SHA256 (xpi/firefox-i18n-51.0/bn-IN.xpi) = c02c9b776479800c2815811921d5c334d3079fad1b10b5668f1cad2883d40951 -SIZE (xpi/firefox-i18n-51.0/bn-IN.xpi) = 503270 -SHA256 (xpi/firefox-i18n-51.0/br.xpi) = ad0f3653a2f98487de066e7f2bfc5a3cb164e5a813863c0fda921ec496fa0363 -SIZE (xpi/firefox-i18n-51.0/br.xpi) = 429716 -SHA256 (xpi/firefox-i18n-51.0/bs.xpi) = cfdcf39092ef00377d7beab3859b7de11174bf7c3654cca7b9734ac4b255e6c3 -SIZE (xpi/firefox-i18n-51.0/bs.xpi) = 435977 -SHA256 (xpi/firefox-i18n-51.0/ca.xpi) = 1115b657c3899829009f4c8e553d2cba22fba271c5750a596920d81065d6dd77 -SIZE (xpi/firefox-i18n-51.0/ca.xpi) = 437596 -SHA256 (xpi/firefox-i18n-51.0/cs.xpi) = bb4b595d981bbbc56058d41ce73e9f6666ab410d43b8bd49f899fcc941a2af80 -SIZE (xpi/firefox-i18n-51.0/cs.xpi) = 437009 -SHA256 (xpi/firefox-i18n-51.0/cy.xpi) = 96b50da1eb50b38a83dd6e0065a79c069dce2c762ea4dbb87a47282bab68ebda -SIZE (xpi/firefox-i18n-51.0/cy.xpi) = 430766 -SHA256 (xpi/firefox-i18n-51.0/da.xpi) = 7206aa12af4f69d70f598438fb4c8ee528517f7595db5d1d1b51055e851f3a88 -SIZE (xpi/firefox-i18n-51.0/da.xpi) = 418405 -SHA256 (xpi/firefox-i18n-51.0/de.xpi) = 4e10974ed2d4e260c9eb1205d131cdb1fdf9672584d330396e5f53a28b977cf0 -SIZE (xpi/firefox-i18n-51.0/de.xpi) = 435628 -SHA256 (xpi/firefox-i18n-51.0/dsb.xpi) = 53a4d8c6175091a724a5c5d94d552ad761ae6aad2643d8f3a2d068a3661dc117 -SIZE (xpi/firefox-i18n-51.0/dsb.xpi) = 453122 -SHA256 (xpi/firefox-i18n-51.0/el.xpi) = 011e683dfca482754bcf7a722ad46ec17a920aa012d8f238012c42f05687e5a9 -SIZE (xpi/firefox-i18n-51.0/el.xpi) = 498855 -SHA256 (xpi/firefox-i18n-51.0/en-GB.xpi) = 7f7a3fbb98c0b0411c81d8fb04f300f0548ddbdeb99a225a775c35742b372134 -SIZE (xpi/firefox-i18n-51.0/en-GB.xpi) = 412807 -SHA256 (xpi/firefox-i18n-51.0/en-US.xpi) = 91c8fdb94a50aaf34cbed5e319850ee6df09c9d2c1bb7d98ec3fbc575527938f -SIZE (xpi/firefox-i18n-51.0/en-US.xpi) = 422546 -SHA256 (xpi/firefox-i18n-51.0/en-ZA.xpi) = eb92618d4ce84735671bec8c9e7d8a1a310d1ce0648e259d8b547cb73ed31c5d -SIZE (xpi/firefox-i18n-51.0/en-ZA.xpi) = 406317 -SHA256 (xpi/firefox-i18n-51.0/eo.xpi) = 0f38d937e8d6e6560b1907ac8fc21e72c1daef9d87b244d9dfaf7e3ccdf1dc19 -SIZE (xpi/firefox-i18n-51.0/eo.xpi) = 431475 -SHA256 (xpi/firefox-i18n-51.0/es-AR.xpi) = bd828cdeed17fe2a606ed6bda40852b46537ea320741619dcfefc0c29878d40c -SIZE (xpi/firefox-i18n-51.0/es-AR.xpi) = 436849 -SHA256 (xpi/firefox-i18n-51.0/es-CL.xpi) = a14285e925cfcf01cde25cec6dd6fd2f7d90c78abc0f0734949a02a48f981e76 -SIZE (xpi/firefox-i18n-51.0/es-CL.xpi) = 439570 -SHA256 (xpi/firefox-i18n-51.0/es-ES.xpi) = dc3a1b1a50dae2885b24e8bdd58e17c67a108dfad4712f291007af4ddc5fe8cb -SIZE (xpi/firefox-i18n-51.0/es-ES.xpi) = 340415 -SHA256 (xpi/firefox-i18n-51.0/es-MX.xpi) = 77f11998e4e5dae7b1e42a3d4601bd32c720df72496bb5b526ff05cd90a65301 -SIZE (xpi/firefox-i18n-51.0/es-MX.xpi) = 442425 -SHA256 (xpi/firefox-i18n-51.0/et.xpi) = 24b4d7ab975f624618ec524e0fee5a64b943d90cc339ab37af671efd9448f0c6 -SIZE (xpi/firefox-i18n-51.0/et.xpi) = 419370 -SHA256 (xpi/firefox-i18n-51.0/eu.xpi) = 5cf55b5a15eb77b13557646cb7db1963ebfe717e9ce291fea868005dac7d7174 -SIZE (xpi/firefox-i18n-51.0/eu.xpi) = 432700 -SHA256 (xpi/firefox-i18n-51.0/fa.xpi) = f461c631c33b90a738b7e158556408966f1a429f4bac27d01f14e6b823385f75 -SIZE (xpi/firefox-i18n-51.0/fa.xpi) = 484366 -SHA256 (xpi/firefox-i18n-51.0/ff.xpi) = eecfff13c273289228c20fb710847f74236e60088afbfd62368b9cb66f3b2b7c -SIZE (xpi/firefox-i18n-51.0/ff.xpi) = 435444 -SHA256 (xpi/firefox-i18n-51.0/fi.xpi) = 1a43ec5bdc3355486d2db56ce77c21d8361a4745ddaaab82e3a13349d4f801aa -SIZE (xpi/firefox-i18n-51.0/fi.xpi) = 424025 -SHA256 (xpi/firefox-i18n-51.0/fr.xpi) = 2fe646ccaa1cf4e5e2601459452e364f9bfccc0bb8ff37d5105505576d338e0a -SIZE (xpi/firefox-i18n-51.0/fr.xpi) = 444127 -SHA256 (xpi/firefox-i18n-51.0/fy-NL.xpi) = b03faae59547ccea4b55a12ed67874eb86af4d9b6aa3c7b9a2f2c6a74194b6e7 -SIZE (xpi/firefox-i18n-51.0/fy-NL.xpi) = 439354 -SHA256 (xpi/firefox-i18n-51.0/ga-IE.xpi) = 8be3e3530480fb9fa2b892dc027a78048d947b655c0b6db0e45b83de1288a068 -SIZE (xpi/firefox-i18n-51.0/ga-IE.xpi) = 452112 -SHA256 (xpi/firefox-i18n-51.0/gd.xpi) = 26b53d668cab518e1d350b875a0221148ce09c1fa7c0e5cd106b058532df925c -SIZE (xpi/firefox-i18n-51.0/gd.xpi) = 441391 -SHA256 (xpi/firefox-i18n-51.0/gl.xpi) = e1295088a34bc6d0c569c79cd2c7beb8f3f0574ff6f315b8825c060ba1bba3cb -SIZE (xpi/firefox-i18n-51.0/gl.xpi) = 444050 -SHA256 (xpi/firefox-i18n-51.0/gn.xpi) = 92c52452dbcfbf1b5f65ab0f837441bc44c1170aca1bc686e5e64bbd6c5c8d36 -SIZE (xpi/firefox-i18n-51.0/gn.xpi) = 450227 -SHA256 (xpi/firefox-i18n-51.0/gu-IN.xpi) = d50f96985e4a81f85ddc876359d1afc2dd1038ceffd95c2eddf3ffd704586951 -SIZE (xpi/firefox-i18n-51.0/gu-IN.xpi) = 483510 -SHA256 (xpi/firefox-i18n-51.0/he.xpi) = 6a3db03de54e4e10bbf980081bac1e980327c8dcd43b2bb40f0bb38d20418b03 -SIZE (xpi/firefox-i18n-51.0/he.xpi) = 452767 -SHA256 (xpi/firefox-i18n-51.0/hi-IN.xpi) = 97376eef6cfa37909206f3eec1546b61757762a6c3f9c8a1e936cb7e3654ec0c -SIZE (xpi/firefox-i18n-51.0/hi-IN.xpi) = 499946 -SHA256 (xpi/firefox-i18n-51.0/hr.xpi) = 3b4da4a9088352c30772d7dff4e4b723279b56883f43f046de9419574edf4b39 -SIZE (xpi/firefox-i18n-51.0/hr.xpi) = 441580 -SHA256 (xpi/firefox-i18n-51.0/hsb.xpi) = bfd26d94fba685df3df36ec2e729cf9e24f4c4ff7d12731fc98a4aea48bcc944 -SIZE (xpi/firefox-i18n-51.0/hsb.xpi) = 451002 -SHA256 (xpi/firefox-i18n-51.0/hu.xpi) = 7373e4aa1bdc2a39518266db0b117c71b5438a0a72ef60eb50c84942942b2160 -SIZE (xpi/firefox-i18n-51.0/hu.xpi) = 445379 -SHA256 (xpi/firefox-i18n-51.0/hy-AM.xpi) = 5b4f91353db0c74e9af94ba74d0d31b0317b4af55c44a7d33ccc3ffea17e49ad -SIZE (xpi/firefox-i18n-51.0/hy-AM.xpi) = 489193 -SHA256 (xpi/firefox-i18n-51.0/id.xpi) = 3a0f000fac7f542811b24b34d2aee0ed4749f1f7337afcd4fa2a9fd57b1e2660 -SIZE (xpi/firefox-i18n-51.0/id.xpi) = 420114 -SHA256 (xpi/firefox-i18n-51.0/is.xpi) = a9a4fdb1b2e153773d9bbef9fce05947d2313caaa608561b73932257704d953b -SIZE (xpi/firefox-i18n-51.0/is.xpi) = 432632 -SHA256 (xpi/firefox-i18n-51.0/it.xpi) = 8da1fec9e5f5db030c17590c875aff0a100afd77db1aad7067fa3d931ed03b68 -SIZE (xpi/firefox-i18n-51.0/it.xpi) = 334920 -SHA256 (xpi/firefox-i18n-51.0/ja.xpi) = b4ff63d51449460b758948bd8e73bc932d24b2e14501ee076bcae5b70892be3e -SIZE (xpi/firefox-i18n-51.0/ja.xpi) = 481874 -SHA256 (xpi/firefox-i18n-51.0/kk.xpi) = 000ed1c4d96b3a8807ece3f502a900bcf3d8ba3889200d6d922e37bba8e135c4 -SIZE (xpi/firefox-i18n-51.0/kk.xpi) = 490747 -SHA256 (xpi/firefox-i18n-51.0/km.xpi) = bf312dccb93b24038cbdff0941276c2704f54ea4588a80b9d7a337ed894cf5b7 -SIZE (xpi/firefox-i18n-51.0/km.xpi) = 514270 -SHA256 (xpi/firefox-i18n-51.0/kn.xpi) = a8b4024791d910285dc9d763b3d6ec3cdf5289683beacd000fde122d79af3810 -SIZE (xpi/firefox-i18n-51.0/kn.xpi) = 514060 -SHA256 (xpi/firefox-i18n-51.0/ko.xpi) = 2aa83c07862474156bee35da55ad1eefac9ff63624b65ef7543276a8d3f568f3 -SIZE (xpi/firefox-i18n-51.0/ko.xpi) = 457535 -SHA256 (xpi/firefox-i18n-51.0/lij.xpi) = 34cc82b5ea5a5b16e87f70716dc32a37cac72cbb163e804b6c574035f299d67f -SIZE (xpi/firefox-i18n-51.0/lij.xpi) = 410712 -SHA256 (xpi/firefox-i18n-51.0/lt.xpi) = c1cbcebf3954409cab56825a020ad23c53f8814674d94e4b12dca6f361c13ac4 -SIZE (xpi/firefox-i18n-51.0/lt.xpi) = 446152 -SHA256 (xpi/firefox-i18n-51.0/lv.xpi) = ded68e952783c8048ba3d190fc97ef49675828b2de0ffbb92bd7e450c2e82ee3 -SIZE (xpi/firefox-i18n-51.0/lv.xpi) = 442269 -SHA256 (xpi/firefox-i18n-51.0/mai.xpi) = 58466c629a402d0e5f050fceaa7a806605dabca3604f8cf8c0e335022370ebe4 -SIZE (xpi/firefox-i18n-51.0/mai.xpi) = 494292 -SHA256 (xpi/firefox-i18n-51.0/mk.xpi) = 8558a01bbcd28a679b8808b579a73aeb95f27403b9aa19bcdd4f7d0188d077d8 -SIZE (xpi/firefox-i18n-51.0/mk.xpi) = 490960 -SHA256 (xpi/firefox-i18n-51.0/ml.xpi) = db1b8d37d3d77fc3ca0317b10db8e74255567b6c8f9026ab34cd866ce523489d -SIZE (xpi/firefox-i18n-51.0/ml.xpi) = 510895 -SHA256 (xpi/firefox-i18n-51.0/mr.xpi) = 4915727a4314058a96d6ebb229112dceee9ddeea2968aacbe6420b905b2be1d6 -SIZE (xpi/firefox-i18n-51.0/mr.xpi) = 495859 -SHA256 (xpi/firefox-i18n-51.0/ms.xpi) = 312cf883fa61415601ae510df828aad123db1f8d227f0f4612ecea4582d87ee3 -SIZE (xpi/firefox-i18n-51.0/ms.xpi) = 430330 -SHA256 (xpi/firefox-i18n-51.0/nb-NO.xpi) = 07b5f1fb9cdeaa232d00dfa37700b5553b18ed1d6a03d28fc91b188e5f350c66 -SIZE (xpi/firefox-i18n-51.0/nb-NO.xpi) = 428672 -SHA256 (xpi/firefox-i18n-51.0/nl.xpi) = 11c844e878c0ab1ccd7f7b8ba317702beb75bca7b64041d8a3694ba66ad92368 -SIZE (xpi/firefox-i18n-51.0/nl.xpi) = 426235 -SHA256 (xpi/firefox-i18n-51.0/nn-NO.xpi) = 7cc499b354635a0413bed4709530383c0f63529ad3e078dda11b4d550d186ceb -SIZE (xpi/firefox-i18n-51.0/nn-NO.xpi) = 422802 -SHA256 (xpi/firefox-i18n-51.0/or.xpi) = c7b5f436bafff1e062194f04036baff0737731775ec27fb1b7498ed69a8490bd -SIZE (xpi/firefox-i18n-51.0/or.xpi) = 491270 -SHA256 (xpi/firefox-i18n-51.0/pa-IN.xpi) = 15e2743d9b401b119eb8f082be18e6b29f7002ab21f7e316d0738731917d556a -SIZE (xpi/firefox-i18n-51.0/pa-IN.xpi) = 471452 -SHA256 (xpi/firefox-i18n-51.0/pl.xpi) = ab72ad3b2bbfa2303058cb889130141ab7c8c08aeb9a5b3fe1252d7426037452 -SIZE (xpi/firefox-i18n-51.0/pl.xpi) = 349710 -SHA256 (xpi/firefox-i18n-51.0/pt-BR.xpi) = a6f5c484cb225ea7020f7480415b1f72853a971ba8c49c211b0678126b55ac61 -SIZE (xpi/firefox-i18n-51.0/pt-BR.xpi) = 431874 -SHA256 (xpi/firefox-i18n-51.0/pt-PT.xpi) = 6cdf475cc23904f2c24de602c58a0f9bfdd08961b8b5dd6f1f9de91f83eb0190 -SIZE (xpi/firefox-i18n-51.0/pt-PT.xpi) = 430721 -SHA256 (xpi/firefox-i18n-51.0/rm.xpi) = 74792c022c5cbdeeb99d0588de585573c303acdab7d99837138ffaf588d234f5 -SIZE (xpi/firefox-i18n-51.0/rm.xpi) = 428935 -SHA256 (xpi/firefox-i18n-51.0/ro.xpi) = 9c2516ef38104fbf62279bae439cdbbc15f79f8071f39dd1f59d5c67e949eaeb -SIZE (xpi/firefox-i18n-51.0/ro.xpi) = 442675 -SHA256 (xpi/firefox-i18n-51.0/ru.xpi) = 6d0e717fed5f2d17ee75922d38b1f743b4618427e9eb157e0237972abc69b244 -SIZE (xpi/firefox-i18n-51.0/ru.xpi) = 390302 -SHA256 (xpi/firefox-i18n-51.0/si.xpi) = 8bdab7ebe72e9c03d740c1b8769f06e9cec48a6071c8af2588ccb52b59a280de -SIZE (xpi/firefox-i18n-51.0/si.xpi) = 486606 -SHA256 (xpi/firefox-i18n-51.0/sk.xpi) = b6290e686bbe6680dea580fb13e2f49f05bd99a5f86c3ec23075a570684c7811 -SIZE (xpi/firefox-i18n-51.0/sk.xpi) = 449705 -SHA256 (xpi/firefox-i18n-51.0/sl.xpi) = 7eb86699ca252c33cd8b0480e9430272b30496074b6d1ad85cb69dfb0aa3a4e4 -SIZE (xpi/firefox-i18n-51.0/sl.xpi) = 427695 -SHA256 (xpi/firefox-i18n-51.0/son.xpi) = 882c537350f8b715616619f016c9b83dce584e447e81841259153613791587d1 -SIZE (xpi/firefox-i18n-51.0/son.xpi) = 430449 -SHA256 (xpi/firefox-i18n-51.0/sq.xpi) = 56d8da862d4d06045b80a6922c53b7a65045ff01cb550a7ebd9a7d744b407808 -SIZE (xpi/firefox-i18n-51.0/sq.xpi) = 441708 -SHA256 (xpi/firefox-i18n-51.0/sr.xpi) = c165029f40839c68caa2d28f21991033e198ab83829383127a37aeacfd190aca -SIZE (xpi/firefox-i18n-51.0/sr.xpi) = 457265 -SHA256 (xpi/firefox-i18n-51.0/sv-SE.xpi) = 24774105439f44489ca6b474237958e0854b1990ea39b281c963e6f3931e7c3a -SIZE (xpi/firefox-i18n-51.0/sv-SE.xpi) = 435423 -SHA256 (xpi/firefox-i18n-51.0/ta.xpi) = 34a51884ba2a8dc8873cb92a79f9337ed4c689f7aafe9d5de759ca401f358091 -SIZE (xpi/firefox-i18n-51.0/ta.xpi) = 487835 -SHA256 (xpi/firefox-i18n-51.0/te.xpi) = 2b5a18643ce387ee7c5b9e94eb34a842c7c94f247109e2206dbbddd3fee92d9e -SIZE (xpi/firefox-i18n-51.0/te.xpi) = 509507 -SHA256 (xpi/firefox-i18n-51.0/th.xpi) = 485d05b53d78f0d9cdab9ab85f008e64e03ee95744b233527d813fb233f9feaa -SIZE (xpi/firefox-i18n-51.0/th.xpi) = 483236 -SHA256 (xpi/firefox-i18n-51.0/tr.xpi) = 44a2655b3967c7806f490e98516102568b46f209e97c8598949e2ac37c10f39c -SIZE (xpi/firefox-i18n-51.0/tr.xpi) = 437679 -SHA256 (xpi/firefox-i18n-51.0/uk.xpi) = 745c07248cd06abb4e5b991359e4709752116ecae312dd2f20e74abfe78a721d -SIZE (xpi/firefox-i18n-51.0/uk.xpi) = 488159 -SHA256 (xpi/firefox-i18n-51.0/uz.xpi) = bb08a8d7dc74ac27410023b64a68e4ca278f6c5e08a921d6fde03e83349992d6 -SIZE (xpi/firefox-i18n-51.0/uz.xpi) = 441919 -SHA256 (xpi/firefox-i18n-51.0/vi.xpi) = f8115f22024219571e56dfd14eb750b6f95cb7e9703cf4c2cacd0d179b78c966 -SIZE (xpi/firefox-i18n-51.0/vi.xpi) = 444515 -SHA256 (xpi/firefox-i18n-51.0/xh.xpi) = a27521d0f47d58cf075f75e24a63e1db7c7e26064a8f3a89549c504137210503 -SIZE (xpi/firefox-i18n-51.0/xh.xpi) = 435393 -SHA256 (xpi/firefox-i18n-51.0/zh-CN.xpi) = 4a520e048ae526c7728590d0babd73d63fc6948b5577325222454491e57b4ffd -SIZE (xpi/firefox-i18n-51.0/zh-CN.xpi) = 455758 -SHA256 (xpi/firefox-i18n-51.0/zh-TW.xpi) = 9ec030d762c6d574a34ac141006e3a124e7b9b20005f5e9c08eda25e3864406a -SIZE (xpi/firefox-i18n-51.0/zh-TW.xpi) = 466460 +TIMESTAMP = 1485379956 +SHA256 (xpi/firefox-i18n-51.0.1/ach.xpi) = 2d0f554d524dfbd552f513a59eca728f87f2dc63871ea05d45e50dc62f98d0f4 +SIZE (xpi/firefox-i18n-51.0.1/ach.xpi) = 422479 +SHA256 (xpi/firefox-i18n-51.0.1/af.xpi) = 1bea00a4beb2c08eeff01386f119954d166cfe108e6b9053ff84923071cc70c1 +SIZE (xpi/firefox-i18n-51.0.1/af.xpi) = 430609 +SHA256 (xpi/firefox-i18n-51.0.1/an.xpi) = 4f05a2800d1eb7c65d7f4fc731c90a798e55a414e425938ed9f2a4aab2574bb8 +SIZE (xpi/firefox-i18n-51.0.1/an.xpi) = 439499 +SHA256 (xpi/firefox-i18n-51.0.1/ar.xpi) = ba9f424d03b292b7428c37104c9f367d1cfeb4c1cb70f01a3a3468ab8261a5a5 +SIZE (xpi/firefox-i18n-51.0.1/ar.xpi) = 467366 +SHA256 (xpi/firefox-i18n-51.0.1/as.xpi) = 525a14db543a0f80840e399d579ffbd8703f0b7ef75d4e3fc6c2ad7ce783d1f9 +SIZE (xpi/firefox-i18n-51.0.1/as.xpi) = 481206 +SHA256 (xpi/firefox-i18n-51.0.1/ast.xpi) = 4465abc44e515d39ead8cc7e072b225d5bec080e370129d5861eece6b348b2a9 +SIZE (xpi/firefox-i18n-51.0.1/ast.xpi) = 433415 +SHA256 (xpi/firefox-i18n-51.0.1/az.xpi) = 86beaf681270b0465b3a06d381866ed951f80d5d78f98217cb7e859f8dbb2705 +SIZE (xpi/firefox-i18n-51.0.1/az.xpi) = 448403 +SHA256 (xpi/firefox-i18n-51.0.1/bg.xpi) = c4824b49257cff76ed34b0cb1a0f6747dc24b500f40d464b8696a5cc18f6ff0d +SIZE (xpi/firefox-i18n-51.0.1/bg.xpi) = 481421 +SHA256 (xpi/firefox-i18n-51.0.1/bn-BD.xpi) = 9284871e91d84b39567b803ca75eb89d77d2a9dd0a3b25960ace88d5f13947ff +SIZE (xpi/firefox-i18n-51.0.1/bn-BD.xpi) = 506133 +SHA256 (xpi/firefox-i18n-51.0.1/bn-IN.xpi) = 642e8676e25ae1cd933f77be1d1ec30e80e8561be8856b8cd92e78866cd49870 +SIZE (xpi/firefox-i18n-51.0.1/bn-IN.xpi) = 503272 +SHA256 (xpi/firefox-i18n-51.0.1/br.xpi) = 09b4cb3d86fcd3e3f6eb1a38b366c9fe6412deeb67d01479f43a87543e137af1 +SIZE (xpi/firefox-i18n-51.0.1/br.xpi) = 429718 +SHA256 (xpi/firefox-i18n-51.0.1/bs.xpi) = 4022af94e170fc94d80250389b2e7b61a4a0f046b70ba2d3d51efb842b9e4834 +SIZE (xpi/firefox-i18n-51.0.1/bs.xpi) = 435979 +SHA256 (xpi/firefox-i18n-51.0.1/ca.xpi) = 26e5c545322ccfe6b923445daba906ed66671387a899c96c902e5bcc705c0ca3 +SIZE (xpi/firefox-i18n-51.0.1/ca.xpi) = 437597 +SHA256 (xpi/firefox-i18n-51.0.1/cs.xpi) = be37d732ad896c548523efcd097f45a8d16b3a0f1f1d086d0ed07c772e2969cb +SIZE (xpi/firefox-i18n-51.0.1/cs.xpi) = 437011 +SHA256 (xpi/firefox-i18n-51.0.1/cy.xpi) = 3e38992a09904b134d53c3bc27924ce7a10273ef47c0e8773960ac6937577fd3 +SIZE (xpi/firefox-i18n-51.0.1/cy.xpi) = 430768 +SHA256 (xpi/firefox-i18n-51.0.1/da.xpi) = d8c21c45cac8ef9ecf891ae400151a2a8b65e0b1828049dc4094dc43269ad687 +SIZE (xpi/firefox-i18n-51.0.1/da.xpi) = 418407 +SHA256 (xpi/firefox-i18n-51.0.1/de.xpi) = c10becdcbedda89442a7e2783e2622ae154e467d7b3a6573dce0a8d156f39605 +SIZE (xpi/firefox-i18n-51.0.1/de.xpi) = 435630 +SHA256 (xpi/firefox-i18n-51.0.1/dsb.xpi) = 51f535695c5cf6a5ac8672b4bc56b62e1fd8d8f85c4142da7db5e61d2b951222 +SIZE (xpi/firefox-i18n-51.0.1/dsb.xpi) = 453124 +SHA256 (xpi/firefox-i18n-51.0.1/el.xpi) = af4998b5514bf808c86bb0aa9e11a342e43c785e7d408c202a99ccc89cabc483 +SIZE (xpi/firefox-i18n-51.0.1/el.xpi) = 498857 +SHA256 (xpi/firefox-i18n-51.0.1/en-GB.xpi) = 91004f483701c7a830cf08edde0e2afabff57238f6b90d0391c8ec0e113e3f6e +SIZE (xpi/firefox-i18n-51.0.1/en-GB.xpi) = 412809 +SHA256 (xpi/firefox-i18n-51.0.1/en-US.xpi) = 11eb16fe5c971ca539d378bbb3a40322c26758495c97acdfc4f626326a465b18 +SIZE (xpi/firefox-i18n-51.0.1/en-US.xpi) = 422548 +SHA256 (xpi/firefox-i18n-51.0.1/en-ZA.xpi) = 37d7ae2f16415195c65d50bb1baa527fd9636aab1d3e105fd6a435af0fa38070 +SIZE (xpi/firefox-i18n-51.0.1/en-ZA.xpi) = 406318 +SHA256 (xpi/firefox-i18n-51.0.1/eo.xpi) = 0be96d097d93caedf404cc719c5938ea6f7937d57094a5018c4890fa13fbe2c1 +SIZE (xpi/firefox-i18n-51.0.1/eo.xpi) = 431477 +SHA256 (xpi/firefox-i18n-51.0.1/es-AR.xpi) = 5c366f99807bf1c419f7bf78db6da27c2ec472c8e739849ce410d26ab0a34c3d +SIZE (xpi/firefox-i18n-51.0.1/es-AR.xpi) = 436851 +SHA256 (xpi/firefox-i18n-51.0.1/es-CL.xpi) = 62c0b31c29ed61620c80125b8e65281b1ad09e453189d05b53a196a202df0092 +SIZE (xpi/firefox-i18n-51.0.1/es-CL.xpi) = 439571 +SHA256 (xpi/firefox-i18n-51.0.1/es-ES.xpi) = a03558ac33f3d28b9ed7a1a131f982bab4f1b7bae1bb1305d80670ef5387e520 +SIZE (xpi/firefox-i18n-51.0.1/es-ES.xpi) = 340417 +SHA256 (xpi/firefox-i18n-51.0.1/es-MX.xpi) = c07d399f058d3f02bb7b69ebe10f4ffbb44247d3559328359c1d87895f15d28d +SIZE (xpi/firefox-i18n-51.0.1/es-MX.xpi) = 442427 +SHA256 (xpi/firefox-i18n-51.0.1/et.xpi) = fb31e7547ce748abf8181604a35db93885719dd6fddc8fde7b7e56d8b83a35fc +SIZE (xpi/firefox-i18n-51.0.1/et.xpi) = 419372 +SHA256 (xpi/firefox-i18n-51.0.1/eu.xpi) = 9ed3f4aab20cd9e3d7efd53394efb7a5d097d05e659a8af3d37422fbea5c6f7f +SIZE (xpi/firefox-i18n-51.0.1/eu.xpi) = 432702 +SHA256 (xpi/firefox-i18n-51.0.1/fa.xpi) = 8f0c4430424e1e3f20f35f012d690860aeb68379b77309db93d30ff4d1e2ed6d +SIZE (xpi/firefox-i18n-51.0.1/fa.xpi) = 484368 +SHA256 (xpi/firefox-i18n-51.0.1/ff.xpi) = 8075823f986dd63c624566c32524154791c2e8288562dad20e873e968537002c +SIZE (xpi/firefox-i18n-51.0.1/ff.xpi) = 435445 +SHA256 (xpi/firefox-i18n-51.0.1/fi.xpi) = 54f70d1122cc3a391dc41e180cae223c8d1bad3f788b6722f552b968e7c4ae2a +SIZE (xpi/firefox-i18n-51.0.1/fi.xpi) = 424026 +SHA256 (xpi/firefox-i18n-51.0.1/fr.xpi) = e5feac2a5aba883defdd74a07c5644d61b262df822d5168f79a451f76696e5d5 +SIZE (xpi/firefox-i18n-51.0.1/fr.xpi) = 444128 +SHA256 (xpi/firefox-i18n-51.0.1/fy-NL.xpi) = 6b381e3bcb6b989605f4f5d94dd0d22aecfcee65b415a61be6cb32edd953a525 +SIZE (xpi/firefox-i18n-51.0.1/fy-NL.xpi) = 439356 +SHA256 (xpi/firefox-i18n-51.0.1/ga-IE.xpi) = 30ad7e4fb9d8c8b4b3445ffc1ed744f2b9d5dd03bc5909d4e69685ff4b8cc89e +SIZE (xpi/firefox-i18n-51.0.1/ga-IE.xpi) = 452113 +SHA256 (xpi/firefox-i18n-51.0.1/gd.xpi) = fcc9251174c1b1cee14277e7fcfa0abdeaa993e9c2fcb46c9ca9bebb64a2bb04 +SIZE (xpi/firefox-i18n-51.0.1/gd.xpi) = 441392 +SHA256 (xpi/firefox-i18n-51.0.1/gl.xpi) = 537bd4735417db61f2198cebb27ed55d813f4c1bb2fc7046978a51218eff6647 +SIZE (xpi/firefox-i18n-51.0.1/gl.xpi) = 444052 +SHA256 (xpi/firefox-i18n-51.0.1/gn.xpi) = bc356b73e51d63255afb1bcafa880bf44ecf40a7be494edc1c1aff2c55c479a9 +SIZE (xpi/firefox-i18n-51.0.1/gn.xpi) = 450228 +SHA256 (xpi/firefox-i18n-51.0.1/gu-IN.xpi) = a9c15003d2c1252631be89ac1b3c722ea330b7e898934a73464371e3d91295e1 +SIZE (xpi/firefox-i18n-51.0.1/gu-IN.xpi) = 483516 +SHA256 (xpi/firefox-i18n-51.0.1/he.xpi) = 9c429782701846b294751ea0f0786370ae7870cedff75a6f08a618301eb0f9ff +SIZE (xpi/firefox-i18n-51.0.1/he.xpi) = 452770 +SHA256 (xpi/firefox-i18n-51.0.1/hi-IN.xpi) = 9978df7459b5d46592bf135acbe3577900b395e67914e4b00a08dacebaf4da7d +SIZE (xpi/firefox-i18n-51.0.1/hi-IN.xpi) = 499949 +SHA256 (xpi/firefox-i18n-51.0.1/hr.xpi) = d674d2355f82cd552d7944a3128331305524ec3fa3a9ea089cad014848bbb1aa +SIZE (xpi/firefox-i18n-51.0.1/hr.xpi) = 441582 +SHA256 (xpi/firefox-i18n-51.0.1/hsb.xpi) = e26772b5472bd981bad41408dcf9ea18d6e43fdfb26eed411395b1d24c300b81 +SIZE (xpi/firefox-i18n-51.0.1/hsb.xpi) = 451004 +SHA256 (xpi/firefox-i18n-51.0.1/hu.xpi) = e664b47e69ad12bf1a2284e1ae0ec5dbad5c79551df2eb4c9954455d1232cf1c +SIZE (xpi/firefox-i18n-51.0.1/hu.xpi) = 445380 +SHA256 (xpi/firefox-i18n-51.0.1/hy-AM.xpi) = 74903ef5dc36292073e05552df15a5fd17dbab09520bdd3102f77bbdf65eb220 +SIZE (xpi/firefox-i18n-51.0.1/hy-AM.xpi) = 489195 +SHA256 (xpi/firefox-i18n-51.0.1/id.xpi) = 5e240651a6f0d0ecb7ceaf099872c0996da5b7e6dee8293184ae0a200a72caae +SIZE (xpi/firefox-i18n-51.0.1/id.xpi) = 420115 +SHA256 (xpi/firefox-i18n-51.0.1/is.xpi) = aed5cb9a82cf11fe4520a1889bc3ed587aa9976e3e62ac63060db7042ac1ee29 +SIZE (xpi/firefox-i18n-51.0.1/is.xpi) = 432634 +SHA256 (xpi/firefox-i18n-51.0.1/it.xpi) = d3c7f1bee0fc3d12d77af3282685250e26761f260998fe68ebb2540f6b07f950 +SIZE (xpi/firefox-i18n-51.0.1/it.xpi) = 334922 +SHA256 (xpi/firefox-i18n-51.0.1/ja.xpi) = 02ad8db63da2a4dcf50a15f4d32496fffdccfad53509553c97f256454f31d589 +SIZE (xpi/firefox-i18n-51.0.1/ja.xpi) = 481876 +SHA256 (xpi/firefox-i18n-51.0.1/kk.xpi) = bb9e27875466a9c3bc86b51ac5e2676156a7b22c689826c1ae460712b20d1eba +SIZE (xpi/firefox-i18n-51.0.1/kk.xpi) = 490749 +SHA256 (xpi/firefox-i18n-51.0.1/km.xpi) = e6fc90fc9656a8f9f440e657e63f1e6977391d4a1410f82d9fff58cc536b0e4a +SIZE (xpi/firefox-i18n-51.0.1/km.xpi) = 514272 +SHA256 (xpi/firefox-i18n-51.0.1/kn.xpi) = 244ee834654706623bbd3e014c2445223eecbd0ada0e24cb0d424417cab93769 +SIZE (xpi/firefox-i18n-51.0.1/kn.xpi) = 514063 +SHA256 (xpi/firefox-i18n-51.0.1/ko.xpi) = d277aa5c16362193f791ce6205b52da8b26a7c377fe6abbec081e7543a909733 +SIZE (xpi/firefox-i18n-51.0.1/ko.xpi) = 457537 +SHA256 (xpi/firefox-i18n-51.0.1/lij.xpi) = c39631927409e9b2941df66a98083ab89b553e6500c7a3ad74c9b614ef9b3f66 +SIZE (xpi/firefox-i18n-51.0.1/lij.xpi) = 410714 +SHA256 (xpi/firefox-i18n-51.0.1/lt.xpi) = 92c23c54580787cc7f67fc85845f4a205f02522414d248342782d4b3258876e8 +SIZE (xpi/firefox-i18n-51.0.1/lt.xpi) = 446154 +SHA256 (xpi/firefox-i18n-51.0.1/lv.xpi) = d7c019a96ec31f925c95520e59329448a39e661d9ba89716cb7b4f484293a8cc +SIZE (xpi/firefox-i18n-51.0.1/lv.xpi) = 442271 +SHA256 (xpi/firefox-i18n-51.0.1/mai.xpi) = cd434a775f7ed822a683ba3aa45f5f3773eaf615d7d6b1aec855ec9bcd9528e2 +SIZE (xpi/firefox-i18n-51.0.1/mai.xpi) = 494294 +SHA256 (xpi/firefox-i18n-51.0.1/mk.xpi) = ece6e3bd27ede475f944b297626913919f2d3ab150e3ab28e036fc7e14a7f4cb +SIZE (xpi/firefox-i18n-51.0.1/mk.xpi) = 490961 +SHA256 (xpi/firefox-i18n-51.0.1/ml.xpi) = 865c224ad0f42cfde172207a939b25068db5da7ae0399ccb4d78376bb215e22c +SIZE (xpi/firefox-i18n-51.0.1/ml.xpi) = 510897 +SHA256 (xpi/firefox-i18n-51.0.1/mr.xpi) = 3afd8693af84ee9e2fcc7b23e80b5488a1e0a9d454d4a53a6da76a76ccfffb7f +SIZE (xpi/firefox-i18n-51.0.1/mr.xpi) = 495860 +SHA256 (xpi/firefox-i18n-51.0.1/ms.xpi) = 5d8e25bbe48fe65212b7b6c699d1568a407ce6a2f686bf07465200958be45b14 +SIZE (xpi/firefox-i18n-51.0.1/ms.xpi) = 430332 +SHA256 (xpi/firefox-i18n-51.0.1/nb-NO.xpi) = c9024d64f9cc6bbc9e3c82b2ef755a1e70f70a2875ba2f6538b31c8cdc2a54de +SIZE (xpi/firefox-i18n-51.0.1/nb-NO.xpi) = 428674 +SHA256 (xpi/firefox-i18n-51.0.1/nl.xpi) = d958f7dba5974eb759754d41c7576e43f955434b06bd446b8879ffb1587b291f +SIZE (xpi/firefox-i18n-51.0.1/nl.xpi) = 426237 +SHA256 (xpi/firefox-i18n-51.0.1/nn-NO.xpi) = f5ab46bfdaf504d7d49acd76ed046664eb975997aa40adff4002eb4d49346112 +SIZE (xpi/firefox-i18n-51.0.1/nn-NO.xpi) = 422803 +SHA256 (xpi/firefox-i18n-51.0.1/or.xpi) = 3b326f65c0e804c43048a78051caa9bbf6f790baaf25194a2a92a9a9d5c3eaab +SIZE (xpi/firefox-i18n-51.0.1/or.xpi) = 491272 +SHA256 (xpi/firefox-i18n-51.0.1/pa-IN.xpi) = bfd3eebdb10fb8923bcad9b519f3eff5a23b413dd493a23b07c493b3649e5974 +SIZE (xpi/firefox-i18n-51.0.1/pa-IN.xpi) = 471454 +SHA256 (xpi/firefox-i18n-51.0.1/pl.xpi) = d74bdfa2707a663d7a1ed3f02fe0f9a3e529becea7463cc24b6e198be07522d9 +SIZE (xpi/firefox-i18n-51.0.1/pl.xpi) = 349711 +SHA256 (xpi/firefox-i18n-51.0.1/pt-BR.xpi) = afac5c77a0e98178206fa111c3bba50f665f551aed07e9f66b500c069c0a9926 +SIZE (xpi/firefox-i18n-51.0.1/pt-BR.xpi) = 431875 +SHA256 (xpi/firefox-i18n-51.0.1/pt-PT.xpi) = 5a3ee9b1fb44852c12e19a4b0129d9f02103796b256a8d5e0b2b80fd47520002 +SIZE (xpi/firefox-i18n-51.0.1/pt-PT.xpi) = 430722 +SHA256 (xpi/firefox-i18n-51.0.1/rm.xpi) = 63c6446866f65e768c181217b89c184a86e164b0432265b06ac800d039eb82ad +SIZE (xpi/firefox-i18n-51.0.1/rm.xpi) = 428938 +SHA256 (xpi/firefox-i18n-51.0.1/ro.xpi) = 23fa86a9f896d2d83fd3892ffbe5a6d7a4edeb47faf7e450d7f46ece0854ca72 +SIZE (xpi/firefox-i18n-51.0.1/ro.xpi) = 442676 +SHA256 (xpi/firefox-i18n-51.0.1/ru.xpi) = bd2ca4ce51a824fb4f5d8804df9405565f9af7fffcb74ece1149c759f70a6558 +SIZE (xpi/firefox-i18n-51.0.1/ru.xpi) = 390303 +SHA256 (xpi/firefox-i18n-51.0.1/si.xpi) = d8c67ba6af47d46eb2a6da306ee93e3125f863251da6f9f96c44fc3742cfa45d +SIZE (xpi/firefox-i18n-51.0.1/si.xpi) = 486608 +SHA256 (xpi/firefox-i18n-51.0.1/sk.xpi) = 6584f6c3c5f085981d4c902b03411638ba85c69388f84b71fdfa238d4876e0bf +SIZE (xpi/firefox-i18n-51.0.1/sk.xpi) = 449706 +SHA256 (xpi/firefox-i18n-51.0.1/sl.xpi) = ac5985b8ec241f18443e568b96771b838870a0818c1d1cdced9b9a6fd72a33c1 +SIZE (xpi/firefox-i18n-51.0.1/sl.xpi) = 427697 +SHA256 (xpi/firefox-i18n-51.0.1/son.xpi) = 2751e3e600e6a59a7c52ccb7351dc6ffbd3ca04c91b3142af02e8fb8adebb16e +SIZE (xpi/firefox-i18n-51.0.1/son.xpi) = 430450 +SHA256 (xpi/firefox-i18n-51.0.1/sq.xpi) = 3e1a06e2285a0193326657bbd24511bf303963ae62b22a50e22a762e721f249e +SIZE (xpi/firefox-i18n-51.0.1/sq.xpi) = 441710 +SHA256 (xpi/firefox-i18n-51.0.1/sr.xpi) = 6e63165b89eecb7eb3028304221d4e0837caa6f7f5a6e2c9677e89897a475b35 +SIZE (xpi/firefox-i18n-51.0.1/sr.xpi) = 457267 +SHA256 (xpi/firefox-i18n-51.0.1/sv-SE.xpi) = 35a146434984c428813547643980eaa7b0410c99dc4b762fb547b87eff4e705f +SIZE (xpi/firefox-i18n-51.0.1/sv-SE.xpi) = 435422 +SHA256 (xpi/firefox-i18n-51.0.1/ta.xpi) = 628813583a138c7b8de289f9b149e7450aa1724b20879aa550796996a8ebf470 +SIZE (xpi/firefox-i18n-51.0.1/ta.xpi) = 487837 +SHA256 (xpi/firefox-i18n-51.0.1/te.xpi) = 6bbbf58d2c33ab5ace35f5814b18527fbe08ad21215d3ea11fd2e7243852e988 +SIZE (xpi/firefox-i18n-51.0.1/te.xpi) = 509509 +SHA256 (xpi/firefox-i18n-51.0.1/th.xpi) = 3b73d2293a895aab282e7bf38604f78dec1f0354f3e276ef5c7156bc872f8159 +SIZE (xpi/firefox-i18n-51.0.1/th.xpi) = 483237 +SHA256 (xpi/firefox-i18n-51.0.1/tr.xpi) = f9c9b53310b64c629079c4c29fe9854f824e81b631c9bb402ab4fbd612648738 +SIZE (xpi/firefox-i18n-51.0.1/tr.xpi) = 437681 +SHA256 (xpi/firefox-i18n-51.0.1/uk.xpi) = f0eb25000bea0bb2497f30f234b57ef54300b56f94248685dbfe4be26a060535 +SIZE (xpi/firefox-i18n-51.0.1/uk.xpi) = 488161 +SHA256 (xpi/firefox-i18n-51.0.1/uz.xpi) = a42b58f2f1c3adaf00f5ba3b426c31bda6349b99b06a7a57cb337f38c12ddf13 +SIZE (xpi/firefox-i18n-51.0.1/uz.xpi) = 441921 +SHA256 (xpi/firefox-i18n-51.0.1/vi.xpi) = 4fbc9625c635e5ed714977d16278fc1633f541edda6293328c7b27f16b771216 +SIZE (xpi/firefox-i18n-51.0.1/vi.xpi) = 444517 +SHA256 (xpi/firefox-i18n-51.0.1/xh.xpi) = e69cda2b59bd4f28e3a2d0379d867b7d8511ca50df167e7821e2d1e9409b586e +SIZE (xpi/firefox-i18n-51.0.1/xh.xpi) = 435395 +SHA256 (xpi/firefox-i18n-51.0.1/zh-CN.xpi) = e518d6f191ba77e358139875e1a06d17ff673dad4b30cd7c794659606ed5a89a +SIZE (xpi/firefox-i18n-51.0.1/zh-CN.xpi) = 455760 +SHA256 (xpi/firefox-i18n-51.0.1/zh-TW.xpi) = 623dfce59eacbc8d58b4899fa95d5539360f45783f6a6f438048f44778ffe34e +SIZE (xpi/firefox-i18n-51.0.1/zh-TW.xpi) = 466461 Modified: branches/2017Q1/www/firefox/Makefile ============================================================================== --- branches/2017Q1/www/firefox/Makefile Sat Jan 28 01:04:17 2017 (r432609) +++ branches/2017Q1/www/firefox/Makefile Sat Jan 28 01:07:04 2017 (r432610) @@ -2,13 +2,12 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 51.0 +DISTVERSION= 51.0.1 DISTVERSIONSUFFIX=.source -PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build3/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla Modified: branches/2017Q1/www/firefox/distinfo ============================================================================== --- branches/2017Q1/www/firefox/distinfo Sat Jan 28 01:04:17 2017 (r432609) +++ branches/2017Q1/www/firefox/distinfo Sat Jan 28 01:07:04 2017 (r432610) @@ -1,3 +1,3 @@ -TIMESTAMP = 1484786354 -SHA256 (firefox-51.0.source.tar.xz) = 6535b7a69c28e3613a815801aa2d9416d133dd92e17e7c8eb68d9776ce9eebea -SIZE (firefox-51.0.source.tar.xz) = 202517224 +TIMESTAMP = 1485379956 +SHA256 (firefox-51.0.1.source.tar.xz) = 30ba00ba716ea1eeda526e2ccc8642f8d18a836793fde50e87a4fcb9d9fccca9 +SIZE (firefox-51.0.1.source.tar.xz) = 202142716 From owner-svn-ports-branches@freebsd.org Sat Jan 28 18:02:09 2017 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 CEBA9CC5857; Sat, 28 Jan 2017 18:02:09 +0000 (UTC) (envelope-from naddy@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 859F4DE2; Sat, 28 Jan 2017 18:02:09 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0SI28Oq006070; Sat, 28 Jan 2017 18:02:08 GMT (envelope-from naddy@FreeBSD.org) Received: (from naddy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0SI28pN006067; Sat, 28 Jan 2017 18:02:08 GMT (envelope-from naddy@FreeBSD.org) Message-Id: <201701281802.v0SI28pN006067@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: naddy set sender to naddy@FreeBSD.org using -f From: Christian Weisgerber Date: Sat, 28 Jan 2017 18:02:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432638 - branches/2017Q1/audio/opus 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, 28 Jan 2017 18:02:09 -0000 Author: naddy Date: Sat Jan 28 18:02:08 2017 New Revision: 432638 URL: https://svnweb.freebsd.org/changeset/ports/432638 Log: MFH: r432084 Update to 1.1.4: A specially-crafted Opus packet could cause an integer wrap-around in the SILK LSF stabilization code. Reported as CVE-2017-0381, but upstream does not believe that any remote code execution is possible. https://git.xiph.org/?p=opus.git;a=commit;h=70a3d641b760b3d313b6025f82aed93a4607 Requested by: jbeich Approved by: ports-secteam (feld) Modified: branches/2017Q1/audio/opus/Makefile branches/2017Q1/audio/opus/distinfo branches/2017Q1/audio/opus/pkg-plist Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/audio/opus/Makefile ============================================================================== --- branches/2017Q1/audio/opus/Makefile Sat Jan 28 17:58:10 2017 (r432637) +++ branches/2017Q1/audio/opus/Makefile Sat Jan 28 18:02:08 2017 (r432638) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= opus -PORTVERSION= 1.1.3 +PORTVERSION= 1.1.4 CATEGORIES= audio MASTER_SITES= http://downloads.xiph.org/releases/opus/ \ MOZILLA/opus Modified: branches/2017Q1/audio/opus/distinfo ============================================================================== --- branches/2017Q1/audio/opus/distinfo Sat Jan 28 17:58:10 2017 (r432637) +++ branches/2017Q1/audio/opus/distinfo Sat Jan 28 18:02:08 2017 (r432638) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470324014 -SHA256 (opus-1.1.3.tar.gz) = 58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633 -SIZE (opus-1.1.3.tar.gz) = 978848 +TIMESTAMP = 1485035185 +SHA256 (opus-1.1.4.tar.gz) = 9122b6b380081dd2665189f97bfd777f04f92dc3ab6698eea1dbb27ad59d8692 +SIZE (opus-1.1.4.tar.gz) = 978830 Modified: branches/2017Q1/audio/opus/pkg-plist ============================================================================== --- branches/2017Q1/audio/opus/pkg-plist Sat Jan 28 17:58:10 2017 (r432637) +++ branches/2017Q1/audio/opus/pkg-plist Sat Jan 28 18:02:08 2017 (r432638) @@ -6,6 +6,6 @@ include/opus/opus_types.h lib/libopus.a lib/libopus.so lib/libopus.so.0 -lib/libopus.so.0.5.3 +lib/libopus.so.0.5.4 libdata/pkgconfig/opus.pc share/aclocal/opus.m4 From owner-svn-ports-branches@freebsd.org Sat Jan 28 22:07:58 2017 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 39F67CC67F8; Sat, 28 Jan 2017 22:07:58 +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 083D418B2; Sat, 28 Jan 2017 22:07:57 +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 v0SM7vOd010442; Sat, 28 Jan 2017 22:07:57 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0SM7ulf010433; Sat, 28 Jan 2017 22:07:56 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201701282207.v0SM7ulf010433@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Sat, 28 Jan 2017 22:07:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r432687 - in branches/2017Q1/graphics/rawtherapee-devel: . 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, 28 Jan 2017 22:07:58 -0000 Author: mandree Date: Sat Jan 28 22:07:56 2017 New Revision: 432687 URL: https://svnweb.freebsd.org/changeset/ports/432687 Log: MFH: r430465 r430466 r430467 r430475 r430615 r432608 r432640 Move forward to 5.0-gtk3 release. Changes: Fix compilation on FreeBSD 11+, and enable OpenMP. Use devel/openmp for libomp. Code generation improvements: On i386, use SSE2 instead of only SSE [1] when compiler optimizations are requested (which they are by default) RT code uses mostly SSE2 for SIMD). Fix i386 SSE2 crashes with GCC(*) (use clang there), and clean up a bit. (*) GCC does not get the stack properly aligned in i386 for SSE2 and causes SIGBUS on startup when trying to access an 8-byte aligned double[8] array with SIMD instructions. One workaround is -mstackrealign (which RT does on Win32), the other is to use clang - we don't get OpenMP on i386 anyhow, so clang 3.4 in 10.3 is sufficient. Drop -fexpensive-optimizations, clang does not support it, and gcc 5.4 includes it in -O2 and -O3. Note that the upstream discourages the use of 32-bit architectures for rawtherapee. Approved by: ports-secteam@ (junovitch) Added: branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtengine_dcraw.cc - copied unchanged from r430466, head/graphics/rawtherapee-devel/files/patch-rtengine_dcraw.cc branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtengine_imagedata.cc - copied unchanged from r432608, head/graphics/rawtherapee-devel/files/patch-rtengine_imagedata.cc branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtengine_opthelper.h - copied, changed from r430615, head/graphics/rawtherapee-devel/files/patch-rtengine_opthelper.h branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtgui_cachemanager.cc - copied unchanged from r432608, head/graphics/rawtherapee-devel/files/patch-rtgui_cachemanager.cc branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtgui_soundman.cc - copied unchanged from r432608, head/graphics/rawtherapee-devel/files/patch-rtgui_soundman.cc Deleted: branches/2017Q1/graphics/rawtherapee-devel/files/ReleaseInfo.cmake branches/2017Q1/graphics/rawtherapee-devel/files/patch-CMakeLists.txt branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtengine_improcfun.h branches/2017Q1/graphics/rawtherapee-devel/files/rawtherapee.in Modified: branches/2017Q1/graphics/rawtherapee-devel/Makefile branches/2017Q1/graphics/rawtherapee-devel/distinfo branches/2017Q1/graphics/rawtherapee-devel/pkg-message branches/2017Q1/graphics/rawtherapee-devel/pkg-plist Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/graphics/rawtherapee-devel/Makefile ============================================================================== --- branches/2017Q1/graphics/rawtherapee-devel/Makefile Sat Jan 28 22:00:49 2017 (r432686) +++ branches/2017Q1/graphics/rawtherapee-devel/Makefile Sat Jan 28 22:07:56 2017 (r432687) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= rawtherapee -PORTVERSION= 4.2.99.git000 +PORTVERSION= 5.0 +DISTVERSIONSUFFIX= -gtk3 PORTREVISION= 0 CATEGORIES= graphics MASTER_SITES= http://rawtherapee.com/shared/source/ @@ -13,101 +14,113 @@ COMMENT= Powerful RAW image processing a LICENSE= GPLv3 -LIB_DEPENDS= \ - libcanberra.so:audio/libcanberra \ +LIB_DEPENDS= libcanberra-gtk.so:audio/libcanberra \ libcanberra-gtk3.so:audio/libcanberra-gtk3 \ libexpat.so:textproc/expat2 \ libfftw3.so:math/fftw3 \ libfftw3f.so:math/fftw3-float \ - libgtkmm-3.0.so:x11-toolkits/gtkmm30 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ libiptcdata.so:graphics/libiptcdata \ liblcms2.so:graphics/lcms2 \ libpng.so:graphics/png \ libsigc-2.0.so:devel/libsigc++20 \ libtiff.so:graphics/tiff -USE_GITHUB= yes -GH_TUPLE= Beep6581:RawTherapee:70a79772 - -USES= cmake:outsource compiler:c++11-lib desktop-file-utils dos2unix gettext-runtime jpeg pkgconfig tar:xz +USES= cmake:outsource desktop-file-utils dos2unix \ + jpeg localbase:ldflags pkgconfig tar:xz DOS2UNIX_REGEX= .*\.(cc|h) -USE_GNOME= atkmm cairo cairomm glibmm pangomm gtk30 -USE_XORG+= x11 +LDFLAGS+= -Wl,--as-needed # fontconfig, freetype, gettext, libX11 +USE_GNOME= gtkmm30 USE_LDCONFIG= yes -USE_BINUTILS= yes -CFLAGS+= -I${LOCALBASE}/include -fPIC -CXXFLAGS+= -I${LOCALBASE}/include -fPIC -LDFLAGS+= -lpthread -L${LOCALBASE}/lib -CONFIGURE_ENV= CFLAGS="${CFLAGS}" -# LDFLAGS="${LDFLAGS:C|-Wl,-rpath=${_GCC_RUNTIME}||:C|-L${_GCC_RUNTIME}||}" +# The -D_GLIBCXX_USE_C99 works around stoi not being defined +# by default because the GCC headers believe FreeBSD insufficiently C99 +# compliant. +CFLAGS+= -I${LOCALBASE}/include -fPIC -D_GLIBCXX_USE_C99 -Wno-deprecated-declarations -Wno-unused-result +LDFLAGS+= -lpthread +CONFIGURE_ENV+= CFLAGS="${CFLAGS}" CMAKE_ARGS+= -DDOCDIR="${DOCSDIR}" \ -DCREDITSDIR="${DOCSDIR}" \ -DLICENCEDIR="${DOCSDIR}" \ -DDESKTOPDIR="${DESKTOPDIR}" \ -DDATADIR="${DATADIR}" \ - -DCACHE_NAME_SUFFIX="" -#-DCMAKE_C_FLAGS="${CFLAGS:C|-Wl,-rpath=${_GCC_RUNTIME}||:C|-L${_GCC_RUNTIME}||}" -#-DCMAKE_CXX_FLAGS="${CXXFLAGS:C|-Wl,-rpath=${_GCC_RUNTIME}||:C|-L${_GCC_RUNTIME}||}" -SUB_FILES= rawtherapee -SUB_LIST= RTDIR="${RTDIR}" + -DCACHE_NAME_SUFFIX="" \ + -Wno-dev \ + -DCMAKE_POLICY_DEFAULT_CMP0056:STRING=NEW +# 3.4.x: CMAKE_EXE_LINKER_FLAGS is not passed to TRY_COMPILE by default +# any more. The CMP0056 policy must be explicitly set to NEW to ensure +# linker flags are passed. Else -lomp is not found with clang. +# See: https://cmake.org/cmake/help/v3.4/policy/CMP0056.html + INSTALLS_ICONS= yes +.if defined(PACKAGE_BUILDING) && empty(CFLAGS:M-march*) +CMAKE_ARGS+= -DPROC_TARGET_NUMBER="1" +.endif + RTDIR= ${PREFIX}/libdata/${PORTNAME} OPTIONS_DEFINE= OPTIMIZED_CFLAGS OPENMP NATIVE OPTIONS_DEFAULT= OPTIMIZED_CFLAGS OPENMP -OPENMP_DESC= Enable multicore processing using OpenMP -OPTIMIZED_CFLAGS_DESC= Use extra compiler optimizations (requires SSE support) +OPENMP_DESC= Enable multicore processing using OpenMP (amd64) +OPTIMIZED_CFLAGS_DESC= Use extra compiler optimizations (requires SSE2 support) NATIVE_DESC= Use -march=native for compilation (do not use for generic packages!) OPENMP_CMAKE_BOOL= OPTION_OMP -.if defined(PACKAGE_BUILDING) -CMAKE_ARGS+= -DPROC_TARGET_NUMBER="1" -.endif +OPTIMIZED_CFLAGS_CFLAGS= -O3 -funroll-loops -msse2 +# GCC 5.4 includes -fexpensive-optimizations in -O2 already -.include +.include -.if ${ARCH} == "amd64" || ${ARCH} == "i386" -.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} -CFLAGS+= -O3 -funroll-loops -msse -CXXFLAGS+= -O3 -funroll-loops -msse -.endif -.endif +# ------------------------------------------------------------------- +# .if ${PORT_OPTIONS:MNATIVE} CMAKE_ARGS+= -DPROC_TARGET_NUMBER="2" .endif -.if ${ARCH} == amd64 && ${COMPILER_TYPE} == clang -# Enable OpenMP support with Clang 3.7. -BUILD_DEPENDS+= clang37:devel/llvm37 -RUN_DEPENDS+= clang37:devel/llvm37 - -CPP= clang-cpp37 -CC= clang37 -CXX= clang++37 - -# FIXME: At least in 3.7.0 and 3.7.1, Clang doesn't find libomp.so -# itself. Furthermore, there may be a regression in 3.7.1 because we now -# need to explicitely link to libm.so as well. -OPENMP_FLAGS= -L${LOCALBASE}/llvm37/lib -lm -lomp +.if !empty(PORT_OPTIONS:MOPENMP) && ${ARCH} == "amd64" +LIB_DEPENDS+= libomp.so.0:devel/openmp +OPENMP_FLAGS= -lm -lomp LDFLAGS+= ${OPENMP_FLAGS} .endif +.if defined(WITH_DEBUG) +CMAKE_BUILD_TYPE= RelWithDebInfo +STRIP= +.endif + +.if ${ARCH} == i386 +USES+= compiler:c++11-lib +# FIXME: if we were to use GCC on i386, we'd need to use -mstackrealign +# or similar options, else we get SIGBUS when SSE2 is enabled due to +# improper alignment. Base clang is good enough though, i386 does not +# support OpenMP, and those seeking ultimate performance need to use +# amd64. +.else +USES+= compiler:gcc-c++11-lib +.endif + +# ------------------------------------------------------------------- + +.include + +.if ${CHOSEN_COMPILER_TYPE} == gcc +# Workaround: this needs to be late because Mk/Uses/compiler.mk tramples +# over previously set values with gcc-libc++-configure as of r432539. +# GCC 4.9 doesn't generate usable code on FreeBSD 11.0. +USE_GCC= 5+ +.endif + post-patch: - @${REINPLACE_CMD} -e 's###g' \ - ${WRKSRC}/rtgui/darkframe.h \ - ${WRKSRC}/rtgui/flatfield.h \ - ${WRKSRC}/rtgui/icmpanel.h @${REINPLACE_CMD} -e 's#DESTINATION "$${CMAKE_INSTALL_PREFIX}/share/man/man1"#DESTINATION "${MANPREFIX}/man/man1/"#' \ ${WRKSRC}/CMakeLists.txt - ${RM} ${WRKSRC}/rtengine/dcraw.patch \ - ${WRKSRC}/rtengine/dcraw.c -.ifdef(USE_GITHUB) -pre-configure: - ${CP} ${FILESDIR}/ReleaseInfo.cmake ${WRKSRC}/ -.endif +# paranoia: run rawtherapee --help to be sure it finds all its +# shared libraries (this hinges on proper RPATH setting and propagation) +post-install: + ${SETENV} LANG= LC_ALL=C LANGUAGE= DISPLAY= HOME=/dev/null ${STAGEDIR}${PREFIX}/bin/rawtherapee --help 2>&1 \ + | ${EGREP} -q "RawTherapee, version ${PKGVERSION:C/_.*//:C/,.*//}|cannot open display:" .include Modified: branches/2017Q1/graphics/rawtherapee-devel/distinfo ============================================================================== --- branches/2017Q1/graphics/rawtherapee-devel/distinfo Sat Jan 28 22:00:49 2017 (r432686) +++ branches/2017Q1/graphics/rawtherapee-devel/distinfo Sat Jan 28 22:07:56 2017 (r432687) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483122272 -SHA256 (Beep6581-RawTherapee-4.2.99.git000-70a79772_GH0.tar.gz) = da065b11ad1e48bd6cb545a7b936f2d4640290d93f456cab5b2380ef9fa51f9b -SIZE (Beep6581-RawTherapee-4.2.99.git000-70a79772_GH0.tar.gz) = 25829053 +TIMESTAMP = 1485205646 +SHA256 (rawtherapee-5.0-gtk3.tar.xz) = 25c6bb738535d1efa905bd21fb732bdea352d589d9740a730ec409a49e7eacd8 +SIZE (rawtherapee-5.0-gtk3.tar.xz) = 10442940 Copied: branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtengine_dcraw.cc (from r430466, head/graphics/rawtherapee-devel/files/patch-rtengine_dcraw.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtengine_dcraw.cc Sat Jan 28 22:07:56 2017 (r432687, copy of r430466, head/graphics/rawtherapee-devel/files/patch-rtengine_dcraw.cc) @@ -0,0 +1,11 @@ +--- rtengine/dcraw.cc.orig 2016-12-30 15:28:53 UTC ++++ rtengine/dcraw.cc +@@ -2011,7 +2011,7 @@ void CLASS hasselblad_correct() + {bhu-1,0},{bhu-1,bwu/2},{bhu-1,bwu-1}}; + for (col = 0; col < bw; col++) { + for (i = 0; i < 9; i++) { +- ushort dist = (ushort)sqrt(abs(corners[i][0] - row) * abs(corners[i][0] - row) + abs(corners[i][1] - col) * abs(corners[i][1] - col)); ++ ushort dist = (ushort)sqrt(std::fabs(corners[i][0] - row) * std::fabs(corners[i][0] - row) + std::fabs(corners[i][1] - col) * std::fabs(corners[i][1] - col)); + ushort weight = dist > maxdist ? 0 : maxdist - dist; + corners_weight[9*(row*bw+col)+i] = weight; + } Copied: branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtengine_imagedata.cc (from r432608, head/graphics/rawtherapee-devel/files/patch-rtengine_imagedata.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtengine_imagedata.cc Sat Jan 28 22:07:56 2017 (r432687, copy of r432608, head/graphics/rawtherapee-devel/files/patch-rtengine_imagedata.cc) @@ -0,0 +1,11 @@ +--- rtengine/imagedata.cc.orig 2017-01-26 22:12:23 UTC ++++ rtengine/imagedata.cc +@@ -444,7 +444,7 @@ void ImageData::extractInfo () + if (baseIsoTag) { + std::string isoData = baseIsoTag->valueToString(); + if (isoData.size() > 1) { +- iso_speed = stoi(isoData); ++ iso_speed = std::stoi(isoData); + } + } + } Copied and modified: branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtengine_opthelper.h (from r430615, head/graphics/rawtherapee-devel/files/patch-rtengine_opthelper.h) ============================================================================== --- head/graphics/rawtherapee-devel/files/patch-rtengine_opthelper.h Thu Jan 5 04:23:04 2017 (r430615, copy source) +++ branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtengine_opthelper.h Sat Jan 28 22:07:56 2017 (r432687) @@ -1,4 +1,4 @@ ---- rtengine/opthelper.h.orig 2017-01-05 02:25:57 UTC +--- rtengine/opthelper.h.orig 2017-01-26 22:12:23 UTC +++ rtengine/opthelper.h @@ -69,7 +69,7 @@ #define ALIGNED64 Copied: branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtgui_cachemanager.cc (from r432608, head/graphics/rawtherapee-devel/files/patch-rtgui_cachemanager.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtgui_cachemanager.cc Sat Jan 28 22:07:56 2017 (r432687, copy of r432608, head/graphics/rawtherapee-devel/files/patch-rtgui_cachemanager.cc) @@ -0,0 +1,11 @@ +--- rtgui/cachemanager.cc.orig 2017-01-26 22:12:22 UTC ++++ rtgui/cachemanager.cc +@@ -36,7 +36,7 @@ namespace + { + + constexpr auto cacheDirMode = 511; +-constexpr auto cacheDirs = { "profiles", "images", "aehistograms", "embprofiles", "data" }; ++constexpr const char *cacheDirs[] = { "profiles", "images", "aehistograms", "embprofiles", "data" }; + + } + Copied: branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtgui_soundman.cc (from r432608, head/graphics/rawtherapee-devel/files/patch-rtgui_soundman.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/graphics/rawtherapee-devel/files/patch-rtgui_soundman.cc Sat Jan 28 22:07:56 2017 (r432687, copy of r432608, head/graphics/rawtherapee-devel/files/patch-rtgui_soundman.cc) @@ -0,0 +1,22 @@ +--- rtgui/soundman.cc.orig 2017-01-26 22:12:22 UTC ++++ rtgui/soundman.cc +@@ -24,9 +24,7 @@ + #ifdef WIN32 + #include + #include +-#endif +- +-#ifdef __linux__ ++#elif !defined(__APPLE__) + #include + #endif + +@@ -67,7 +65,7 @@ void SoundManager::playSoundAsync(const + wchar_t *wfilename = (wchar_t*)g_utf8_to_utf16 (sound.c_str(), -1, NULL, NULL, NULL); + PlaySoundW(wfilename, NULL, sndParam); + g_free( wfilename ); +-#elif defined(__linux__) ++#elif !defined(__APPLE__) + ca_context_play(ca_gtk_context_get(), 0, CA_PROP_EVENT_ID, sound.c_str(), CA_PROP_MEDIA_FILENAME, sound.c_str(), NULL); + #endif + } Modified: branches/2017Q1/graphics/rawtherapee-devel/pkg-message ============================================================================== --- branches/2017Q1/graphics/rawtherapee-devel/pkg-message Sat Jan 28 22:00:49 2017 (r432686) +++ branches/2017Q1/graphics/rawtherapee-devel/pkg-message Sat Jan 28 22:07:56 2017 (r432687) @@ -10,4 +10,3 @@ remove older cache directories. Also, after configurations have been moved to the new version's directory, older $HOME/.config/RawTherapee* directories may be removed. ====================================================================== - Modified: branches/2017Q1/graphics/rawtherapee-devel/pkg-plist ============================================================================== --- branches/2017Q1/graphics/rawtherapee-devel/pkg-plist Sat Jan 28 22:00:49 2017 (r432686) +++ branches/2017Q1/graphics/rawtherapee-devel/pkg-plist Sat Jan 28 22:07:56 2017 (r432687) @@ -18,10 +18,12 @@ share/icons/hicolor/48x48/apps/rawtherap %%DATADIR%%/dcpprofiles/Canon EOS 400D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 40D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 450D.dcp +%%DATADIR%%/dcpprofiles/Canon EOS 50D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 550D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 5D Mark III.dcp %%DATADIR%%/dcpprofiles/Canon EOS 5D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 6D.dcp +%%DATADIR%%/dcpprofiles/Canon EOS 7D Mark II.dcp %%DATADIR%%/dcpprofiles/Canon EOS 7D.dcp %%DATADIR%%/dcpprofiles/Canon EOS D60.dcp %%DATADIR%%/dcpprofiles/Canon EOS Digital Rebel XSi.dcp @@ -37,9 +39,10 @@ share/icons/hicolor/48x48/apps/rawtherap %%DATADIR%%/dcpprofiles/Fujifilm FinePix S9500.dcp %%DATADIR%%/dcpprofiles/Fujifilm X-E1.dcp %%DATADIR%%/dcpprofiles/Fujifilm X-E2.dcp -%%DATADIR%%/dcpprofiles/Fujifilm X-T1.dcp +%%DATADIR%%/dcpprofiles/FUJIFILM X-Pro2.dcp +%%DATADIR%%/dcpprofiles/FUJIFILM X-T1.dcp %%DATADIR%%/dcpprofiles/Fujifilm X-T10.dcp -%%DATADIR%%/dcpprofiles/Fujifilm X100T.dcp +%%DATADIR%%/dcpprofiles/FUJIFILM X100T.dcp %%DATADIR%%/dcpprofiles/Leaf Aptus 75.dcp %%DATADIR%%/dcpprofiles/Nikon D200.dcp %%DATADIR%%/dcpprofiles/Nikon D300.dcp @@ -48,14 +51,17 @@ share/icons/hicolor/48x48/apps/rawtherap %%DATADIR%%/dcpprofiles/Nikon D3S.dcp %%DATADIR%%/dcpprofiles/Nikon D50.dcp %%DATADIR%%/dcpprofiles/Nikon D5100.dcp +%%DATADIR%%/dcpprofiles/NIKON D600.dcp %%DATADIR%%/dcpprofiles/Nikon D700.dcp %%DATADIR%%/dcpprofiles/Nikon D7000.dcp -%%DATADIR%%/dcpprofiles/Nikon D7200.dcp -%%DATADIR%%/dcpprofiles/Nikon D750.dcp +%%DATADIR%%/dcpprofiles/NIKON D7200.dcp +%%DATADIR%%/dcpprofiles/NIKON D750.dcp %%DATADIR%%/dcpprofiles/Nikon D800.dcp +%%DATADIR%%/dcpprofiles/NIKON D810.dcp %%DATADIR%%/dcpprofiles/Olympus E-1.dcp %%DATADIR%%/dcpprofiles/Olympus E-510.dcp %%DATADIR%%/dcpprofiles/Olympus E-520.dcp +%%DATADIR%%/dcpprofiles/OLYMPUS E-M10.dcp %%DATADIR%%/dcpprofiles/Olympus E-M5.dcp %%DATADIR%%/dcpprofiles/Olympus E-P2.dcp %%DATADIR%%/dcpprofiles/Olympus XZ-1.dcp @@ -67,18 +73,21 @@ share/icons/hicolor/48x48/apps/rawtherap %%DATADIR%%/dcpprofiles/Panasonic DMC-G5.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-GH1.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-GH2.dcp -%%DATADIR%%/dcpprofiles/Pentax K-5 II.dcp -%%DATADIR%%/dcpprofiles/Pentax K-5.dcp +%%DATADIR%%/dcpprofiles/PENTAX K-5 II.dcp +%%DATADIR%%/dcpprofiles/PENTAX K-5.dcp %%DATADIR%%/dcpprofiles/Pentax K-r.dcp -%%DATADIR%%/dcpprofiles/Pentax K10D.dcp +%%DATADIR%%/dcpprofiles/PENTAX K10D.dcp %%DATADIR%%/dcpprofiles/Pentax K200D.dcp -%%DATADIR%%/dcpprofiles/Ricoh Pentax K-3.dcp +%%DATADIR%%/dcpprofiles/RICOH PENTAX K-1.dcp +%%DATADIR%%/dcpprofiles/RICOH PENTAX K-3.dcp %%DATADIR%%/dcpprofiles/Sony DSLR-A700.dcp %%DATADIR%%/dcpprofiles/Sony DSLR-A900.dcp -%%DATADIR%%/dcpprofiles/Sony ILCE-6000.dcp -%%DATADIR%%/dcpprofiles/Sony ILCE-7M2.dcp +%%DATADIR%%/dcpprofiles/SONY ILCE-6000.dcp +%%DATADIR%%/dcpprofiles/SONY ILCE-7M2.dcp %%DATADIR%%/dcpprofiles/Sony NEX-5N.dcp %%DATADIR%%/dcpprofiles/Sony SLT-A55V.dcp +%%DATADIR%%/dcpprofiles/SONY SLT-A99V.dcp +%%DATADIR%%/dcpprofiles/YI TECHNOLOGY M1.dcp %%DATADIR%%/iccprofiles/input/Canon EOS 20D.icc %%DATADIR%%/iccprofiles/input/Canon EOS 40D.icc %%DATADIR%%/iccprofiles/input/Canon EOS 450D.icc @@ -867,28 +876,4 @@ share/icons/hicolor/48x48/apps/rawtherap %%DATADIR%%/themes/RawTherapee-GTK3-_19.css %%DATADIR%%/themes/TooWaBlue-Dark-GTK3-20_.css %%DATADIR%%/themes/TooWaBlue-GTK3-20_.css -%%DATADIR%%/themes/images/svg/twb/checkbox-checked-disabled.svg -%%DATADIR%%/themes/images/svg/twb/checkbox-checked.svg -%%DATADIR%%/themes/images/svg/twb/checkbox-inconsistent-disabled.svg -%%DATADIR%%/themes/images/svg/twb/checkbox-inconsistent.svg -%%DATADIR%%/themes/images/svg/twb/checkbox-unchecked-disabled.svg -%%DATADIR%%/themes/images/svg/twb/checkbox-unchecked.svg -%%DATADIR%%/themes/images/svg/twb/radio-checked-disabled.svg -%%DATADIR%%/themes/images/svg/twb/radio-checked.svg -%%DATADIR%%/themes/images/svg/twb/radio-inconsistent-disabled.svg -%%DATADIR%%/themes/images/svg/twb/radio-inconsistent.svg -%%DATADIR%%/themes/images/svg/twb/radio-unchecked-disabled.svg -%%DATADIR%%/themes/images/svg/twb/radio-unchecked.svg -%%DATADIR%%/themes/images/twb/checkbox-checked-disabled.png -%%DATADIR%%/themes/images/twb/checkbox-checked.png -%%DATADIR%%/themes/images/twb/checkbox-inconsistent-disabled.png -%%DATADIR%%/themes/images/twb/checkbox-inconsistent.png -%%DATADIR%%/themes/images/twb/checkbox-unchecked-disabled.png -%%DATADIR%%/themes/images/twb/checkbox-unchecked.png -%%DATADIR%%/themes/images/twb/radio-checked-disabled.png -%%DATADIR%%/themes/images/twb/radio-checked.png -%%DATADIR%%/themes/images/twb/radio-inconsistent-disabled.png -%%DATADIR%%/themes/images/twb/radio-inconsistent.png -%%DATADIR%%/themes/images/twb/radio-unchecked-disabled.png -%%DATADIR%%/themes/images/twb/radio-unchecked.png %%DATADIR%%/themes/system.iconset