From owner-svn-ports-branches@freebsd.org Sun Aug 23 20:29:14 2015 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 441379C1C69; Sun, 23 Aug 2015 20:29:14 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 3326A853; Sun, 23 Aug 2015 20:29:14 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7NKTEFx098129; Sun, 23 Aug 2015 20:29:14 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7NKTCBI098121; Sun, 23 Aug 2015 20:29:12 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201508232029.t7NKTCBI098121@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sun, 23 Aug 2015 20:29:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395128 - in branches/2015Q3/www/apache22: . 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.20 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, 23 Aug 2015 20:29:14 -0000 Author: ohauer Date: Sun Aug 23 20:29:11 2015 New Revision: 395128 URL: https://svnweb.freebsd.org/changeset/ports/395128 Log: MFH: r393440 - update to 2.2.31 - remove backports - minor cleanups - always rebuild configure script - add patch for acinclude.m4 [1] Changes with Apache 2.2.31 [2] *) Correct win32 build issues for mod_proxy exports, OpenSSL 1.0.x headers. [Yann Ylavic, Gregg Smith] Changes with Apache 2.2.30 (not released) *) SECURITY: CVE-2015-3183 (cve.mitre.org) core: Fix chunk header parsing defect. Remove apr_brigade_flatten(), buffering and duplicated code from the HTTP_IN filter, parse chunks in a single pass with zero copy. Limit accepted chunk-size to 2^63-1 and be strict about chunk-ext authorized characters. [Graham Leggett, Yann Ylavic] *) http: Fix LimitRequestBody checks when there is no more bytes to read. [Michael Kaufmann ] *) core: Allow spaces after chunk-size for compatibility with implementations using a pre-filled buffer. [Yann Ylavic, Jeff Trawick] *) mod_ssl: bring SNI behavior into better conformance with RFC 6066: no longer send warning-level unrecognized_name(112) alerts. PR 56241. [Kaspar Brand] *) http: Make ap_die() robust against any HTTP error code and not modify response status (finally logged) when nothing is to be done. PR 56035. [Yann Ylavic] *) core, modules: Avoid error response/document handling by the core if some handler or input filter already did it while reading the request (causing a double response body). [Yann Ylavic] *) FreeBSD: Disable IPv4-mapped listening sockets by default for versions 5+ instead of just for FreeBSD 5. PR 53824. [Jeff Trawick, Olli Hauer ] *) mod_proxy: use the original (non absolute) form of the request-line's URI for requests embedded in CONNECT payloads used to connect SSL backends via a ProxyRemote forward-proxy. PR 55892. [Hendrik Harms , William Rowe, Yann Ylavic] *) mpm_winnt: Accept utf-8 (Unicode) service names and descriptions for internationalization. [William Rowe] *) mod_log_config: Implement logging for sub second timestamps and request end time. [Rainer Jung] *) mod_log_config: Ensure that time data is consistent if multiple duration patterns are used in combination, e.g. %D and %{ms}T. [Rainer Jung] *) mod_log_config: Add "%{UNIT}T" format to output request duration in seconds, milliseconds or microseconds depending on UNIT ("s", "ms", "us"). [Ben Reser, Rainer Jung] *) In alignment with RFC 7525, the default recommended SSLCipherSuite and SSLProxyCipherSuite now exclude RC4 as well as MD5. Also, the default recommended SSLProtocol and SSLProxyProtocol directives now exclude SSLv3. Existing configurations must be adjusted by the administrator. [William Rowe] *) core: Avoid potential use of uninitialized (NULL) request data in request line error path. [Yann Ylavic] *) mod_proxy_http: Use the "Connection: close" header for requests to backends not recycling connections (disablereuse), including the default reverse and forward proxies. [Yann Ylavic] *) mod_proxy: Add ap_connection_reusable() for checking if a connection is reusable as of this point in processing. [Jeff Trawick] *) mod_proxy: Reuse proxy/balancer workers' parameters and scores across graceful restarts, even if new workers are added, old ones removed, or the order changes. [Jan Kaluza, Yann Ylavic] *) mod_ssl: 'SSLProtocol ALL' was being ignored in virtual host context. PR 57100. [Michael Kaufmann , Yann Ylavic] *) mod_ssl: Improve handling of ephemeral DH and ECDH keys by allowing custom parameters to be configured via SSLCertificateFile, and by adding standardized DH parameters for 1024/2048/3072/4096 bits. Unless custom parameters are configured, the standardized parameters are applied based on the certificate's RSA/DSA key size. [Kaspar Brand] *) mod_ssl: drop support for export-grade ciphers with ephemeral RSA keys, and unconditionally disable aNULL, eNULL and EXP ciphers (not overridable via SSLCipherSuite). [Kaspar Brand] *) mod_ssl: Add support for configuring persistent TLS session ticket encryption/decryption keys (useful for clustered environments). [Paul Querna, Kaspar Brand] *) SSLProtocol and SSLCipherSuite recommendations in the example/default conf/extra/httpd-ssl.conf file are now global in scope, affecting all VirtualHosts (matching 2.4 default configuration). [William Rowe] *) mod_authn_dbd: Fix lifetime of DB lookup entries independently of the selected DB engine. PR 46421. [Jan Kaluza]. *) Turn static function get_server_name_for_url() into public ap_get_server_name_for_url() and use it where appropriate. This fixes mod_rewrite generating invalid URLs for redirects to IPv6 literal addresses. PR 52831 [Stefan Fritsch] *) dav_validate_request: avoid validating locks and ETags when there are no If headers providing them on a resource we aren't modifying. [Ben Reser] *) mod_ssl: New directive SSLSessionTickets (On|Off). The directive controls the use of TLS session tickets (RFC 5077), default value is "On" (unchanged behavior). Session ticket creation uses a random key created during web server startup and recreated during restarts. No other key recreation mechanism is available currently. Therefore using session tickets without restarting the web server with an appropriate frequency (e.g. daily) compromises perfect forward secrecy. [Rainer Jung] *) mod_deflate: Define APR_INT32_MAX when it is missing so to be able to compile against APR-1.2.x (minimum required version). [Yann Ylavic] *) mod_reqtimeout: Don't let pipelining checks interfere with the timeouts computed for subsequent requests. PR 56729. [Eric Covener] [1] https://issues.apache.org/bugzilla/show_bug.cgi?id=58126 [2] http://www.apache.org/dist/httpd/CHANGES_2.2.31 With Head apache@ Approved by: ports-secteam (delphij@) Deleted: branches/2015Q3/www/apache22/files/patch-CVE-2015-3183 branches/2015Q3/www/apache22/files/patch-configure branches/2015Q3/www/apache22/files/patch-modules_ssl_ssl__engine__dh.c Modified: branches/2015Q3/www/apache22/Makefile branches/2015Q3/www/apache22/Makefile.modules branches/2015Q3/www/apache22/distinfo branches/2015Q3/www/apache22/files/patch-acinclude.m4 branches/2015Q3/www/apache22/files/patch-configure.in branches/2015Q3/www/apache22/files/patch-docs__conf__extra__httpd-ssl.conf.in Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/apache22/Makefile ============================================================================== --- branches/2015Q3/www/apache22/Makefile Sun Aug 23 20:27:29 2015 (r395127) +++ branches/2015Q3/www/apache22/Makefile Sun Aug 23 20:29:11 2015 (r395128) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= apache22 -PORTVERSION= 2.2.29 -PORTREVISION?= 6 +PORTVERSION= 2.2.31 +PORTREVISION?= 0 CATEGORIES= www ipv6 MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} @@ -20,10 +20,10 @@ CONFLICTS_INSTALL= caudium14-1.* \ apache-*-2.4.* apache24-*-2.4.* USE_APACHE= common22 -USES= tar:bzip2 iconv perl5 libtool cpe autoreconf +USES= autoreconf cpe iconv libtool perl5 tar:bzip2 USE_PERL5= run -GNU_CONFIGURE= yes USE_RC_SUBR= apache22 htcacheclean +GNU_CONFIGURE= yes CPE_VENDOR= apache CPE_PRODUCT= http_server @@ -33,6 +33,10 @@ PORTDOCS= * USERS= www GROUPS= www +# XXX: before running makepatch please run the command +# `$SED -e 's/PATCH_PATH_SEPARATOR=/PATCH_PATH_SEPARATOR?=/' Mk/bsd.port.mk +PATCH_PATH_SEPARATOR= __ + # for slave ports .if !defined(MASTERDIR) APACHEDIR= ${.CURDIR} @@ -130,27 +134,30 @@ pre-everything:: post-extract: # remove possible leftover .svn directories in the sources - @${FIND} ${WRKSRC} -type d -name .svn -print | ${XARGS} ${RM} -rf + @${FIND} ${WRKSRC} -type d -name .svn -print | ${XARGS} ${RM} -r # limit grep results ... ${FIND} ${WRKSRC} -type f \( -name 'NWGNU*' -o -name '*.ds?' -o -name '*.dep' -o -name '*.mak' -o -name '*.win' -o -name '*.vbs' -o -name '*.wsf' \) -delete +# make sure the configure script contains our patches, +# preserve the original script for comparsion + -${MV} ${WRKSRC}/configure ${WRKSRC}/configure.upstream -# make qa script happy, it complains on empty dirs even 'PORTDOCS=*' is set -# use RMDIR in case upstream ever place some files into this dirs +# make stage-qa script happy, it complains on empty dirs even 'PORTDOCS=*' is set +# use RMDIR in case upstream ever place some files into this directories .for d in xsl/util xsl lang -${RMDIR} ${WRKSRC}/docs/manual/style/${d} .endfor post-patch: - @${REINPLACE_CMD} -e 's," PLATFORM ",FreeBSD,' ${WRKSRC}/server/core.c -# IPv4_mapping fix: https://issues.apache.org/bugzilla/show_bug.cgi?id=53824 - @${REINPLACE_CMD} -e 's|freebsd5|freebsd|' \ - -e 's|^perlbin=.*|perlbin=${PERL}|' \ - ${WRKSRC}/configure.in ${WRKSRC}/configure - @${RM} -f ${WRKSRC}/docs/docroot/*.bak + ${REINPLACE_CMD} -e 's," PLATFORM ",FreeBSD,' ${WRKSRC}/server/core.c + ${REINPLACE_CMD} -e 's|logs/error_log|/var/log/httpd-error.log|' \ + ${WRKSRC}/include/httpd.h + ${REINPLACE_CMD} -e 's|perlbin=.*|perlbin=${PERL}|' \ + ${WRKSRC}/configure.in + ${RM} ${WRKSRC}/docs/docroot/*.bak ${INSTALL_DATA} ${WRKSRC}/NOTICE ${WRKSRC}/docs/manual # we use devel/apr and devel/pcre - @${RM} -rf ${WRKSRC}/srclib - @${REINPLACE_CMD} -e 's/srclib//' ${WRKSRC}/Makefile.in + ${RM} -r ${WRKSRC}/srclib + ${REINPLACE_CMD} -e 's/srclib//' ${WRKSRC}/Makefile.in pre-configure:: @${ECHO_MSG} "" @@ -171,14 +178,8 @@ pre-configure:: post-configure: @FTPUSERS=`${EGREP} -v '^#' /etc/ftpusers| ${TR} -s "\n" " "` ;\ ${REINPLACE_CMD} -e "s,%%FTPUSERS%%,$${FTPUSERS}," ${WRKSRC}/docs/conf/extra/httpd-userdir.conf - @${REINPLACE_CMD} -e "s,%%WWWOWN%%,${WWWOWN}," -e "s,%%WWWGRP%%,${WWWGRP}," ${WRKSRC}/docs/conf/httpd.conf - @${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," ${WRKSRC}/support/envvars-std - -pre-build: -.if ${PORT_OPTIONS:MSSL} - @${ECHO_MSG} "===> Generating unique DH group to mitigate Logjam attack (this will take a while)" - (cd ${WRKSRC}/modules/ssl && ${SETENV} HOME=${WRKDIR} ${PERL} ssl_engine_dh.c) -.endif + ${REINPLACE_CMD} -e "s,%%WWWOWN%%,${WWWOWN}," -e "s,%%WWWGRP%%,${WWWGRP}," ${WRKSRC}/docs/conf/httpd.conf + ${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," ${WRKSRC}/support/envvars-std post-install: @${MKDIR} ${ETC_SUBDIRS:S|^|${STAGEDIR}${ETCDIR}/|} Modified: branches/2015Q3/www/apache22/Makefile.modules ============================================================================== --- branches/2015Q3/www/apache22/Makefile.modules Sun Aug 23 20:27:29 2015 (r395127) +++ branches/2015Q3/www/apache22/Makefile.modules Sun Aug 23 20:29:11 2015 (r395128) @@ -9,7 +9,7 @@ # Maintainer note for OPTION handling: # To set additional option use # PORT_OPTIONS+= -# To unset an OPTION, even the OPTION is set in OPTIONSFILE use +# To unset an OPTION, even the OPTION is set in OPTIONS_FILE use # WITHOUT_MODULES+= # Using OPTIONS_EXCLUDE and OPTIONS_OVERRIDE do not work as expected # if the OPTION is enabled by the user, therefore we calculate Modified: branches/2015Q3/www/apache22/distinfo ============================================================================== --- branches/2015Q3/www/apache22/distinfo Sun Aug 23 20:27:29 2015 (r395127) +++ branches/2015Q3/www/apache22/distinfo Sun Aug 23 20:29:11 2015 (r395128) @@ -1,2 +1,2 @@ -SHA256 (apache22/httpd-2.2.29.tar.bz2) = 574b4f994b99178dfd5160bcb14025402e2ce381be9889b83e4be0ffbf5839a4 -SIZE (apache22/httpd-2.2.29.tar.bz2) = 5625498 +SHA256 (apache22/httpd-2.2.31.tar.bz2) = f32f9d19f535dac63b06cb55dfc023b40dcd28196b785f79f9346779e22f26ac +SIZE (apache22/httpd-2.2.31.tar.bz2) = 5610489 Modified: branches/2015Q3/www/apache22/files/patch-acinclude.m4 ============================================================================== --- branches/2015Q3/www/apache22/files/patch-acinclude.m4 Sun Aug 23 20:27:29 2015 (r395127) +++ branches/2015Q3/www/apache22/files/patch-acinclude.m4 Sun Aug 23 20:29:11 2015 (r395128) @@ -1,12 +1,140 @@ ---- acinclude.m4.orig 2012-07-06 15:23:21 UTC +https://issues.apache.org/bugzilla/show_bug.cgi?id=58126 +============================================================== +--- acinclude.m4.orig 2015-07-11 23:38:52 UTC +++ acinclude.m4 -@@ -455,6 +455,9 @@ if test "x$ap_ssltk_configured" = "x"; t - AC_CHECK_HEADERS([openssl/engine.h]) - AC_CHECK_FUNCS([SSLeay_version SSL_CTX_new], [], [liberrors="yes"]) - AC_CHECK_FUNCS([ENGINE_init ENGINE_load_builtin_engines]) -+ dnl PR 196256, https://issues.apache.org/bugzilla/show_bug.cgi?id=57395 -+ AC_CHECK_FUNCS([SSL_CTX_use_certificate_chain]) -+ AC_CHECK_LIB(crypto, RAND_egd, AC_DEFINE(HAVE_SSL_RAND_EGD, 1, [Define if the libcrypto has RAND_egd])) +@@ -4,25 +4,25 @@ dnl Autoconf 2.50 can not handle substr + dnl AC_HELP_STRING, so let's try to call it if we can. + dnl Note: this define must be on one line so that it can be properly returned + dnl as the help string. +-AC_DEFUN(APACHE_HELP_STRING,[ifelse(regexp(AC_ACVERSION, 2\.1), -1, AC_HELP_STRING($1,$2),[ ]$1 substr([ ],len($1))$2)])dnl ++AC_DEFUN([APACHE_HELP_STRING],[ifelse(regexp(AC_ACVERSION, 2\.1), -1, AC_HELP_STRING($1,$2),[ ]$1 substr([ ],len($1))$2)])dnl + + dnl APACHE_SUBST(VARIABLE) + dnl Makes VARIABLE available in generated files + dnl (do not use @variable@ in Makefiles, but $(variable)) +-AC_DEFUN(APACHE_SUBST,[ ++AC_DEFUN([APACHE_SUBST],[ + APACHE_VAR_SUBST="$APACHE_VAR_SUBST $1" + AC_SUBST($1) + ]) + + dnl APACHE_FAST_OUTPUT(FILENAME) + dnl Perform substitutions on FILENAME (Makefiles only) +-AC_DEFUN(APACHE_FAST_OUTPUT,[ ++AC_DEFUN([APACHE_FAST_OUTPUT],[ + APACHE_FAST_OUTPUT_FILES="$APACHE_FAST_OUTPUT_FILES $1" + ]) + + dnl APACHE_GEN_CONFIG_VARS + dnl Creates config_vars.mk +-AC_DEFUN(APACHE_GEN_CONFIG_VARS,[ ++AC_DEFUN([APACHE_GEN_CONFIG_VARS],[ + APACHE_SUBST(abs_srcdir) + APACHE_SUBST(bindir) + APACHE_SUBST(sbindir) +@@ -111,14 +111,14 @@ AC_DEFUN(APACHE_GEN_CONFIG_VARS,[ + + dnl APACHE_GEN_MAKEFILES + dnl Creates Makefiles +-AC_DEFUN(APACHE_GEN_MAKEFILES,[ ++AC_DEFUN([APACHE_GEN_MAKEFILES],[ + $SHELL $srcdir/build/fastgen.sh $srcdir $ac_cv_mkdir_p $BSD_MAKEFILE $APACHE_FAST_OUTPUT_FILES + ]) + + dnl ## APACHE_OUTPUT(file) + dnl ## adds "file" to the list of files generated by AC_OUTPUT + dnl ## This macro can be used several times. +-AC_DEFUN(APACHE_OUTPUT, [ ++AC_DEFUN([APACHE_OUTPUT], [ + APACHE_OUTPUT_FILES="$APACHE_OUTPUT_FILES $1" + ]) + +@@ -127,7 +127,7 @@ dnl APACHE_TYPE_RLIM_T + dnl + dnl If rlim_t is not defined, define it to int + dnl +-AC_DEFUN(APACHE_TYPE_RLIM_T, [ ++AC_DEFUN([APACHE_TYPE_RLIM_T], [ + AC_CACHE_CHECK([for rlim_t], ac_cv_type_rlim_t, [ + AC_TRY_COMPILE([ + #include +@@ -145,7 +145,7 @@ AC_DEFUN(APACHE_TYPE_RLIM_T, [ + ]) + + dnl APACHE_MODPATH_INIT(modpath) +-AC_DEFUN(APACHE_MODPATH_INIT,[ ++AC_DEFUN([APACHE_MODPATH_INIT],[ + current_dir=$1 + modpath_current=modules/$1 + modpath_static= +@@ -154,7 +154,7 @@ AC_DEFUN(APACHE_MODPATH_INIT,[ + > $modpath_current/modules.mk + ])dnl + dnl +-AC_DEFUN(APACHE_MODPATH_FINISH,[ ++AC_DEFUN([APACHE_MODPATH_FINISH],[ + echo "DISTCLEAN_TARGETS = modules.mk" >> $modpath_current/modules.mk + echo "static = $modpath_static" >> $modpath_current/modules.mk + echo "shared = $modpath_shared" >> $modpath_current/modules.mk +@@ -167,7 +167,7 @@ AC_DEFUN(APACHE_MODPATH_FINISH,[ + ])dnl + dnl + dnl APACHE_MODPATH_ADD(name[, shared[, objects [, ldflags[, libs]]]]) +-AC_DEFUN(APACHE_MODPATH_ADD,[ ++AC_DEFUN([APACHE_MODPATH_ADD],[ + if test -z "$3"; then + objects="mod_$1.lo" else - AC_CHECK_FUNCS([SSLC_library_version SSL_CTX_new], [], [liberrors="yes"]) - AC_CHECK_FUNCS(SSL_set_state) +@@ -211,7 +211,7 @@ dnl basically: yes/no is a hard setting. + dnl setting. otherwise, fall under the "all" setting. + dnl explicit yes/no always overrides. + dnl +-AC_DEFUN(APACHE_MODULE,[ ++AC_DEFUN([APACHE_MODULE],[ + AC_MSG_CHECKING(whether to enable mod_$1) + define([optname],[--]ifelse($5,yes,disable,enable)[-]translit($1,_,-))dnl + AC_ARG_ENABLE(translit($1,_,-),APACHE_HELP_STRING(optname(),$2),,enable_$1=ifelse($5,,maybe-all,$5)) +@@ -284,7 +284,7 @@ AC_DEFUN(APACHE_MODULE,[ + dnl + dnl APACHE_ENABLE_MODULES + dnl +-AC_DEFUN(APACHE_ENABLE_MODULES,[ ++AC_DEFUN([APACHE_ENABLE_MODULES],[ + module_selection=default + module_default=yes + +@@ -314,7 +314,7 @@ AC_DEFUN(APACHE_ENABLE_MODULES,[ + ]) + ]) + +-AC_DEFUN(APACHE_REQUIRE_CXX,[ ++AC_DEFUN([APACHE_REQUIRE_CXX],[ + if test -z "$apache_cxx_done"; then + AC_PROG_CXX + AC_PROG_CXXCPP +@@ -328,7 +328,7 @@ dnl + dnl Configure for the detected openssl/ssl-c toolkit installation, giving + dnl preference to "--with-ssl=" if it was specified. + dnl +-AC_DEFUN(APACHE_CHECK_SSL_TOOLKIT,[ ++AC_DEFUN([APACHE_CHECK_SSL_TOOLKIT],[ + if test "x$ap_ssltk_configured" = "x"; then + dnl initialise the variables we use + ap_ssltk_base="" +@@ -486,14 +486,14 @@ dnl Export (via APACHE_SUBST) the variou + dnl apache will use while generating scripts like autoconf and apxs and + dnl the default config file. + +-AC_DEFUN(APACHE_SUBST_EXPANDED_ARG,[ ++AC_DEFUN([APACHE_SUBST_EXPANDED_ARG],[ + APR_EXPAND_VAR(exp_$1, [$]$1) + APACHE_SUBST(exp_$1) + APR_PATH_RELATIVE(rel_$1, [$]exp_$1, ${prefix}) + APACHE_SUBST(rel_$1) + ]) + +-AC_DEFUN(APACHE_EXPORT_ARGUMENTS,[ ++AC_DEFUN([APACHE_EXPORT_ARGUMENTS],[ + APACHE_SUBST_EXPANDED_ARG(exec_prefix) + APACHE_SUBST_EXPANDED_ARG(bindir) + APACHE_SUBST_EXPANDED_ARG(sbindir) Modified: branches/2015Q3/www/apache22/files/patch-configure.in ============================================================================== --- branches/2015Q3/www/apache22/files/patch-configure.in Sun Aug 23 20:27:29 2015 (r395127) +++ branches/2015Q3/www/apache22/files/patch-configure.in Sun Aug 23 20:29:11 2015 (r395128) @@ -37,18 +37,6 @@ [--enable-layout=*|\'--enable-layout=*]) dnl We must be the last to build and the first to be cleaned AP_BUILD_SRCLIB_DIRS="$AP_BUILD_SRCLIB_DIRS apr-util" -@@ -480,7 +490,10 @@ AC_ARG_ENABLE(v4-mapped,APACHE_HELP_STRI - ], - [ - case $host in -- *freebsd5*|*netbsd*|*openbsd*) -+ *freebsd[[1234]].*) -+ v4mapped=yes -+ ;; -+ *freebsd*|*netbsd*|*openbsd*) - v4mapped=no - ;; - *mingw*) @@ -678,8 +691,14 @@ AC_DEFINE_UNQUOTED(HTTPD_ROOT, "${ap_pre [Root directory of the Apache install area]) AC_DEFINE_UNQUOTED(SERVER_CONFIG_FILE, "${rel_sysconfdir}/${progname}.conf", Modified: branches/2015Q3/www/apache22/files/patch-docs__conf__extra__httpd-ssl.conf.in ============================================================================== --- branches/2015Q3/www/apache22/files/patch-docs__conf__extra__httpd-ssl.conf.in Sun Aug 23 20:27:29 2015 (r395127) +++ branches/2015Q3/www/apache22/files/patch-docs__conf__extra__httpd-ssl.conf.in Sun Aug 23 20:29:11 2015 (r395128) @@ -1,50 +1,6 @@ ---- docs/conf/extra/httpd-ssl.conf.in.orig 2013-11-11 14:00:57 UTC +--- docs/conf/extra/httpd-ssl.conf.in.orig 2015-05-27 18:59:59 UTC +++ docs/conf/extra/httpd-ssl.conf.in -@@ -49,6 +49,43 @@ Listen @@SSLPort@@ - AddType application/x-x509-ca-cert .crt - AddType application/x-pkcs7-crl .crl - -+# SSL Cipher Suite: -+# List the ciphers that the client is permitted to negotiate, -+# and that httpd will negotiate as the client of a proxied server. -+# See the OpenSSL documentation for a complete list of ciphers, and -+# ensure these follow appropriate best practices for this deployment. -+# httpd 2.2.30, 2.4.13 and later force-disable aNULL, eNULL and EXP ciphers, -+# while OpenSSL disabled these by default in 0.9.8zf/1.0.0r/1.0.1m/1.0.2a. -+SSLCipherSuite HIGH:MEDIUM:!MD5:!RC4 -+SSLProxyCipherSuite HIGH:MEDIUM:!MD5:!RC4 -+ -+# By the end of 2016, only TLSv1.2 ciphers should remain in use. -+# Older ciphers should be disallowed as soon as possible, while the -+# kRSA ciphers do not offer forward secrecy. These changes inhibit -+# older clients (such as IE6 SP2 or IE8 on Windows XP, or other legacy -+# non-browser tooling) from successfully connecting. -+# -+# To restrict mod_ssl to use only TLSv1.2 ciphers, and disable -+# those protocols which do not support forward secrecy, replace -+# the SSLCipherSuite and SSLProxyCipherSuite directives above with -+# the following two directives, as soon as practical. -+# SSLCipherSuite HIGH:MEDIUM:!SSLv3:!kRSA -+# SSLProxyCipherSuite HIGH:MEDIUM:!SSLv3:!kRSA -+ -+# User agents such as web browsers are not configured for the user's -+# own preference of either security or performance, therefore this -+# must be the prerogative of the web server administrator who manages -+# cpu load versus confidentiality, so enforce the server's cipher order. -+SSLHonorCipherOrder on -+ -+# SSL Protocol support: -+# List the protocol versions which clients are allowed to connect with. -+# Disable SSLv2 and SSLv3 by default (cf. RFC 7525 3.1.1). TLSv1 (1.0) -+# should be disabled as quickly as practical. By the end of 2016, only -+# the TLSv1.2 protocol or later should remain in use. -+SSLProtocol all -SSLv2 -SSLv3 -+SSLProxyProtocol all -SSLv2 -SSLv3 -+ - # Pass Phrase Dialog: - # Configure the pass phrase gathering process. - # The filtering dialog program (`builtin' is a internal -@@ -77,36 +114,13 @@ SSLMutex "file:@exp_runtimedir@/ssl_mut +@@ -114,8 +114,8 @@ SSLMutex "file:@exp_runtimedir@/ssl_mut DocumentRoot "@exp_htdocsdir@" ServerName www.example.com:@@SSLPort@@ ServerAdmin you@example.com @@ -55,35 +11,7 @@ # SSL Engine Switch: # Enable/Disable SSL for this virtual host. - SSLEngine on - --# SSL Protocol support: --# List the protocol versions which clients are allowed to --# connect with. Disable SSLv2 by default (cf. RFC 6176). --SSLProtocol all -SSLv2 -- --# SSL Cipher Suite: --# List the ciphers that the client is permitted to negotiate. --# See the mod_ssl documentation for a complete list. --SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5 -- --# Speed-optimized SSL Cipher configuration: --# If speed is your main concern (on busy HTTPS servers e.g.), --# you might want to force clients to specific, performance --# optimized ciphers. In this case, prepend those ciphers --# to the SSLCipherSuite list, and enable SSLHonorCipherOrder. --# Caveat: by giving precedence to RC4-SHA and AES128-SHA --# (as in the example below), most connections will no longer --# have perfect forward secrecy - if the server's key is --# compromised, captures of past or future traffic must be --# considered compromised, too. --#SSLCipherSuite RC4-SHA:AES128-SHA:HIGH:MEDIUM:!aNULL:!MD5 --#SSLHonorCipherOrder on -- - # Server Certificate: - # Point SSLCertificateFile at a PEM encoded certificate. If - # the certificate is encrypted, then you will be prompted for a -@@ -249,7 +263,7 @@ BrowserMatch "MSIE [2-5]" \ +@@ -263,7 +263,7 @@ BrowserMatch "MSIE [2-5]" \ # Per-Server Logging: # The home of a custom SSL log file. Use this when you want a # compact non-error SSL logfile on a virtual host basis. From owner-svn-ports-branches@freebsd.org Sun Aug 23 20:48:02 2015 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 E016B9C039C; Sun, 23 Aug 2015 20:48:02 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 CC1B712C0; Sun, 23 Aug 2015 20:48:02 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7NKm2Fn007275; Sun, 23 Aug 2015 20:48:02 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7NKm1gw007269; Sun, 23 Aug 2015 20:48:01 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201508232048.t7NKm1gw007269@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sun, 23 Aug 2015 20:48:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395130 - in branches/2015Q3/devel/subversion17: . 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.20 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, 23 Aug 2015 20:48:03 -0000 Author: ohauer Date: Sun Aug 23 20:48:00 2015 New Revision: 395130 URL: https://svnweb.freebsd.org/changeset/ports/395130 Log: MFH: r393672 - upgrade to 1.7.21 - fix py-subversion (convert BDB_CONFIGURE_OFF back to !${PORT_OPTIONS:MBDB}) - fix sample apache module config ('s/dav_module/dav_svn_module/') - add tuning example for dav_svn_module MFH: r395129 - update to 1.7.22 Developer-visible changes: - General: * fix the regression test suite which was broken in 1.7.21 (r1694012) Approved by: ports-secteam (delphij@) Modified: branches/2015Q3/devel/subversion17/Makefile branches/2015Q3/devel/subversion17/Makefile.common branches/2015Q3/devel/subversion17/distinfo branches/2015Q3/devel/subversion17/files/220_subversion.conf.sample.in branches/2015Q3/devel/subversion17/files/build-outputs.mk.addons Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/devel/subversion17/Makefile ============================================================================== --- branches/2015Q3/devel/subversion17/Makefile Sun Aug 23 20:37:30 2015 (r395129) +++ branches/2015Q3/devel/subversion17/Makefile Sun Aug 23 20:48:00 2015 (r395130) @@ -216,7 +216,7 @@ post-install: ${MKREPOS_TARGET} .if ${PORT_OPTIONS:MMOD_DAV_SVN} ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${APACHEMODDIR}/*.so ${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d - ${CP} ${WRKDIR}/220_subversion.conf.sample ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d + ${INSTALL_DATA} ${WRKDIR}/220_subversion.conf.sample ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d .endif .if !${PORT_OPTIONS:MSTATIC} Modified: branches/2015Q3/devel/subversion17/Makefile.common ============================================================================== --- branches/2015Q3/devel/subversion17/Makefile.common Sun Aug 23 20:37:30 2015 (r395129) +++ branches/2015Q3/devel/subversion17/Makefile.common Sun Aug 23 20:48:00 2015 (r395130) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= subversion -PORTVERSION= 1.7.20 +PORTVERSION= 1.7.22 PORTREVISION?= 0 CATEGORIES+= devel MASTER_SITES= APACHE/subversion @@ -38,7 +38,7 @@ OPTIONS_NAME= devel_subversion17 # =============================================================== OPTIONS_SUB= yes -BDB_CONFIGURE_OFF= --without-berkeley-db +#BDB_CONFIGURE_OFF= --with-berkeley-db=no BDB_USE= BDB=42+ GNOME_KEYRING_CONFIGURE_OFF= --without-gnome-keyring @@ -93,6 +93,11 @@ CFLAGS+= -fpic -DPIC CFLAGS+= -DHAS_ORGANIZATION_NAME .endif +# unbreak py-subversion +.if !${PORT_OPTIONS:MBDB} +CONFIGURE_ARGS+= --with-berkeley-db=no +.endif + .include pre-everything:: Modified: branches/2015Q3/devel/subversion17/distinfo ============================================================================== --- branches/2015Q3/devel/subversion17/distinfo Sun Aug 23 20:37:30 2015 (r395129) +++ branches/2015Q3/devel/subversion17/distinfo Sun Aug 23 20:48:00 2015 (r395130) @@ -1,2 +1,2 @@ -SHA256 (subversion17/subversion-1.7.20.tar.bz2) = 0d16f62d2ed1a152e26f8194ac3eb889ef9f1a1716959a43115266e8baa50068 -SIZE (subversion17/subversion-1.7.20.tar.bz2) = 6014383 +SHA256 (subversion17/subversion-1.7.22.tar.bz2) = 0790a923a536ea5459e747fb02de645f6e7da68a6b439e55160f65b81bcab3ee +SIZE (subversion17/subversion-1.7.22.tar.bz2) = 6043524 Modified: branches/2015Q3/devel/subversion17/files/220_subversion.conf.sample.in ============================================================================== --- branches/2015Q3/devel/subversion17/files/220_subversion.conf.sample.in Sun Aug 23 20:37:30 2015 (r395129) +++ branches/2015Q3/devel/subversion17/files/220_subversion.conf.sample.in Sun Aug 23 20:48:00 2015 (r395130) @@ -39,6 +39,15 @@ ## KeepAlive on ## MaxKeepAliveRequests 1000 ## +## # http://subversion.apache.org/docs/release-notes/1.7.html#server-performance-tuning +## # Calculate your own values! +## # For mod_dav_svn, a 1GB cache configuration with maximum data coverage looks like this +## +## SVNInMemoryCacheSize 1048576 +## SVNCacheFullTexts on +## SVNCacheTextDeltas on +## +## ## Multiple Repos with Digest auth: ## - AuthName is an arbitrary name that you choose for the authentication ## domain. Most browsers display this name in the dialog box when prompting @@ -46,7 +55,7 @@ ## - AuthType specifies the type of authentication to use. ## - AuthUserFile specifies the location of the password file to use. ## -## +## ## ## # Enable Subversion ## DAV svn Modified: branches/2015Q3/devel/subversion17/files/build-outputs.mk.addons ============================================================================== --- branches/2015Q3/devel/subversion17/files/build-outputs.mk.addons Sun Aug 23 20:37:30 2015 (r395129) +++ branches/2015Q3/devel/subversion17/files/build-outputs.mk.addons Sun Aug 23 20:48:00 2015 (r395130) @@ -28,13 +28,13 @@ BDB_TEST_DEPS = subversion/tests/libsvn_ BDB_TEST_PROGRAMS = subversion/tests/libsvn_fs_base/changes-test$(EXEEXT) subversion/tests/libsvn_fs_base/fs-base-test$(EXEEXT) subversion/tests/libsvn_fs_base/strings-reps-test$(EXEEXT) -TEST_DEPS = subversion/tests/cmdline/atomic-ra-revprop-change$(EXEEXT) subversion/tests/libsvn_subr/auth-test$(EXEEXT) subversion/tests/libsvn_subr/cache-test$(EXEEXT) subversion/tests/libsvn_subr/checksum-test$(EXEEXT) subversion/tests/libsvn_client/client-test$(EXEEXT) subversion/tests/libsvn_subr/compat-test$(EXEEXT) subversion/tests/libsvn_subr/config-test$(EXEEXT) subversion/tests/libsvn_wc/db-test$(EXEEXT) subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) subversion/tests/libsvn_subr/dirent_uri-test$(EXEEXT) subversion/tests/libsvn_wc/entries-compat-test$(EXEEXT) subversion/tests/cmdline/entries-dump$(EXEEXT) subversion/tests/libsvn_subr/error-test$(EXEEXT) subversion/tests/libsvn_fs_fs/fs-pack-test$(EXEEXT) subversion/tests/libsvn_fs/fs-test$(EXEEXT) subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) subversion/tests/libsvn_fs/locks-test$(EXEEXT) subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) subversion/tests/libsvn_wc/op-depth-test$(EXEEXT) subversion/tests/libsvn _subr/opt-test$(EXEEXT) subversion/tests/libsvn_diff/parse-diff-test$(EXEEXT) subversion/tests/libsvn_subr/path-test$(EXEEXT) subversion/tests/libsvn_wc/pristine-store-test$(EXEEXT) subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) subversion/tests/libsvn_delta/random-test$(EXEEXT) subversion/tests/libsvn_repos/repos-test$(EXEEXT) subversion/tests/libsvn_subr/revision-test$(EXEEXT) subversion/tests/libsvn_subr/skel-test$(EXEEXT) subversion/tests/libsvn_subr/stream-test$(EXEEXT) subversion/tests/libsvn_subr/string-test$(EXEEXT) subversion/tests/libsvn_subr/subst_translate-test$(EXEEXT) subversion/tests/libsvn_delta/svndiff-test$(EXEEXT) subversion/tests/libsvn_subr/target-test$(EXEEXT) subversion/tests/libsvn_subr/time-test$(EXEEXT) subversion/tests/libsvn_subr/translate-test$(EXEEXT) subversion/tests/libsvn_wc/tree-conflict-data-test$(EXEEXT) subversion/tests/libsvn_subr/utf-test$(EXEEXT) subversion/tests/libsvn_delta/vdelta-test$(EXEEXT) subversion/tests/libsvn_wc/wc-incomple te-tester$(EXEEXT) subversion/tests/libsvn_w! c/wc-lock-tester$(EXEEXT) subversion/tests/libsvn_delta/window-test$(EXEEXT) subversion/tests/cmdline/authz_tests.py subversion/tests/cmdline/autoprop_tests.py subversion/tests/cmdline/basic_tests.py subversion/tests/cmdline/blame_tests.py subversion/tests/cmdline/cat_tests.py subversion/tests/cmdline/changelist_tests.py subversion/tests/cmdline/checkout_tests.py subversion/tests/cmdline/commit_tests.py subversion/tests/cmdline/copy_tests.py subversion/tests/cmdline/depth_tests.py subversion/tests/cmdline/diff_tests.py subversion/tests/cmdline/entries_tests.py subversion/tests/cmdline/export_tests.py subversion/tests/cmdline/externals_tests.py subversion/tests/cmdline/getopt_tests.py subversion/tests/cmdline/history_tests.py subversion/tests/cmdline/import_tests.py subversion/tests/cmdline/info_tests.py subversion/tests/cmdline/input_validation_tests.py subversion/tests/cmdline/lock_tests.py subversion/tests/cmdline/log_tests.py subversion/tests/cmdline/merge_authz_tests.py subversi on/tests/cmdline/merge_reintegrate_tests.py subversion/tests/cmdline/merge_tests.py subversion/tests/cmdline/merge_tree_conflict_tests.py subversion/tests/cmdline/mergeinfo_tests.py subversion/tests/cmdline/patch_tests.py subversion/tests/cmdline/prop_tests.py subversion/tests/cmdline/redirect_tests.py subversion/tests/cmdline/relocate_tests.py subversion/tests/cmdline/resolve_tests.py subversion/tests/cmdline/resolved_tests.py subversion/tests/cmdline/revert_tests.py subversion/tests/cmdline/schedule_tests.py subversion/tests/cmdline/special_tests.py subversion/tests/cmdline/stat_tests.py subversion/tests/cmdline/svnadmin_tests.py subversion/tests/cmdline/svndumpfilter_tests.py subversion/tests/cmdline/svnlook_tests.py subversion/tests/cmdline/svnmucc_tests.py subversion/tests/cmdline/svnrdump_tests.py subversion/tests/cmdline/svnsync_tests.py subversion/tests/cmdline/svnversion_tests.py subversion/tests/cmdline/switch_tests.py subversion/tests/cmdline/trans_tests.py subversion/tes ts/cmdline/tree_conflict_tests.py subversion! /tests/cm! dline/update_tests.py subversion/tests/cmdline/upgrade_tests.py subversion/tests/cmdline/utf8_tests.py +TEST_DEPS = subversion/tests/cmdline/atomic-ra-revprop-change$(EXEEXT) subversion/tests/libsvn_subr/auth-test$(EXEEXT) subversion/tests/libsvn_subr/cache-test$(EXEEXT) subversion/tests/libsvn_subr/checksum-test$(EXEEXT) subversion/tests/libsvn_client/client-test$(EXEEXT) subversion/tests/libsvn_subr/compat-test$(EXEEXT) subversion/tests/libsvn_subr/config-test$(EXEEXT) subversion/tests/libsvn_wc/db-test$(EXEEXT) subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) subversion/tests/libsvn_subr/dirent_uri-test$(EXEEXT) subversion/tests/libsvn_wc/entries-compat-test$(EXEEXT) subversion/tests/cmdline/entries-dump$(EXEEXT) subversion/tests/libsvn_subr/error-test$(EXEEXT) subversion/tests/libsvn_fs_fs/fs-pack-test$(EXEEXT) subversion/tests/libsvn_fs/fs-test$(EXEEXT) subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) subversion/tests/libsvn_fs/locks-test$(EXEEXT) subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) subversion/tests/libsvn_wc/op-depth-test$(EXEEXT) subversion/tests/libsvn _subr/opt-test$(EXEEXT) subversion/tests/libsvn_diff/parse-diff-test$(EXEEXT) subversion/tests/libsvn_subr/path-test$(EXEEXT) subversion/tests/libsvn_wc/pristine-store-test$(EXEEXT) subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) subversion/tests/libsvn_delta/random-test$(EXEEXT) subversion/tests/libsvn_repos/repos-test$(EXEEXT) subversion/tests/libsvn_subr/revision-test$(EXEEXT) subversion/tests/libsvn_subr/skel-test$(EXEEXT) subversion/tests/libsvn_subr/stream-test$(EXEEXT) subversion/tests/libsvn_subr/string-test$(EXEEXT) subversion/tests/libsvn_subr/subst_translate-test$(EXEEXT) subversion/tests/libsvn_delta/svndiff-test$(EXEEXT) subversion/tests/libsvn_subr/target-test$(EXEEXT) subversion/tests/libsvn_subr/time-test$(EXEEXT) subversion/tests/libsvn_subr/translate-test$(EXEEXT) subversion/tests/libsvn_wc/tree-conflict-data-test$(EXEEXT) subversion/tests/libsvn_subr/utf-test$(EXEEXT) subversion/tests/libsvn_delta/vdelta-test$(EXEEXT) subversion/tests/libsvn_wc/wc-incomple te-tester$(EXEEXT) subversion/tests/libsvn_w! c/wc-lock-tester$(EXEEXT) subversion/tests/libsvn_delta/window-test$(EXEEXT) subversion/tests/cmdline/authz_tests.py subversion/tests/cmdline/autoprop_tests.py subversion/tests/cmdline/basic_tests.py subversion/tests/cmdline/blame_tests.py subversion/tests/cmdline/cat_tests.py subversion/tests/cmdline/changelist_tests.py subversion/tests/cmdline/checkout_tests.py subversion/tests/cmdline/commit_tests.py subversion/tests/cmdline/copy_tests.py subversion/tests/cmdline/depth_tests.py subversion/tests/cmdline/diff_tests.py subversion/tests/cmdline/entries_tests.py subversion/tests/cmdline/export_tests.py subversion/tests/cmdline/externals_tests.py subversion/tests/cmdline/getopt_tests.py subversion/tests/cmdline/history_tests.py subversion/tests/cmdline/import_tests.py subversion/tests/cmdline/info_tests.py subversion/tests/cmdline/input_validation_tests.py subversion/tests/cmdline/lock_tests.py subversion/tests/cmdline/log_tests.py subversion/tests/cmdline/merge_authz_tests.py subversi on/tests/cmdline/merge_reintegrate_tests.py subversion/tests/cmdline/merge_tests.py subversion/tests/cmdline/merge_tree_conflict_tests.py subversion/tests/cmdline/mergeinfo_tests.py subversion/tests/cmdline/mod_authz_svn_tests.py subversion/tests/cmdline/patch_tests.py subversion/tests/cmdline/prop_tests.py subversion/tests/cmdline/redirect_tests.py subversion/tests/cmdline/relocate_tests.py subversion/tests/cmdline/resolve_tests.py subversion/tests/cmdline/resolved_tests.py subversion/tests/cmdline/revert_tests.py subversion/tests/cmdline/schedule_tests.py subversion/tests/cmdline/special_tests.py subversion/tests/cmdline/stat_tests.py subversion/tests/cmdline/svnadmin_tests.py subversion/tests/cmdline/svndumpfilter_tests.py subversion/tests/cmdline/svnlook_tests.py subversion/tests/cmdline/svnmucc_tests.py subversion/tests/cmdline/svnrdump_tests.py subversion/tests/cmdline/svnsync_tests.py subversion/tests/cmdline/svnversion_tests.py subversion/tests/cmdline/switch_tests.py subver sion/tests/cmdline/trans_tests.py subversion! /tests/cm! dline/tree_conflict_tests.py subversion/tests/cmdline/update_tests.py subversion/tests/cmdline/upgrade_tests.py subversion/tests/cmdline/utf8_tests.py -TEST_PROGRAMS = subversion/tests/libsvn_subr/auth-test$(EXEEXT) subversion/tests/libsvn_subr/cache-test$(EXEEXT) subversion/tests/libsvn_subr/checksum-test$(EXEEXT) subversion/tests/libsvn_client/client-test$(EXEEXT) subversion/tests/libsvn_subr/compat-test$(EXEEXT) subversion/tests/libsvn_subr/config-test$(EXEEXT) subversion/tests/libsvn_wc/db-test$(EXEEXT) subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) subversion/tests/libsvn_subr/dirent_uri-test$(EXEEXT) subversion/tests/libsvn_wc/entries-compat-test$(EXEEXT) subversion/tests/libsvn_subr/error-test$(EXEEXT) subversion/tests/libsvn_fs_fs/fs-pack-test$(EXEEXT) subversion/tests/libsvn_fs/fs-test$(EXEEXT) subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) subversion/tests/libsvn_fs/locks-test$(EXEEXT) subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) subversion/tests/libsvn_wc/op-depth-test$(EXEEXT) subversion/tests/libsvn_subr/opt-test$(EXEEXT) subversion/tests/libsvn_diff/parse-diff-test$(EXEEXT) subversion/tests/libsvn_ subr/path-test$(EXEEXT) subversion/tests/libsvn_wc/pristine-store-test$(EXEEXT) subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) subversion/tests/libsvn_delta/random-test$(EXEEXT) subversion/tests/libsvn_repos/repos-test$(EXEEXT) subversion/tests/libsvn_subr/revision-test$(EXEEXT) subversion/tests/libsvn_subr/skel-test$(EXEEXT) subversion/tests/libsvn_subr/stream-test$(EXEEXT) subversion/tests/libsvn_subr/string-test$(EXEEXT) subversion/tests/libsvn_subr/subst_translate-test$(EXEEXT) subversion/tests/libsvn_subr/target-test$(EXEEXT) subversion/tests/libsvn_subr/time-test$(EXEEXT) subversion/tests/libsvn_subr/translate-test$(EXEEXT) subversion/tests/libsvn_wc/tree-conflict-data-test$(EXEEXT) subversion/tests/libsvn_subr/utf-test$(EXEEXT) subversion/tests/libsvn_delta/window-test$(EXEEXT) subversion/tests/cmdline/authz_tests.py subversion/tests/cmdline/autoprop_tests.py subversion/tests/cmdline/basic_tests.py subversion/tests/cmdline/blame_tests.py subversion/tests/cmdline/cat_ tests.py subversion/tests/cmdline/changelist! _tests.py subversion/tests/cmdline/checkout_tests.py subversion/tests/cmdline/commit_tests.py subversion/tests/cmdline/copy_tests.py subversion/tests/cmdline/depth_tests.py subversion/tests/cmdline/diff_tests.py subversion/tests/cmdline/entries_tests.py subversion/tests/cmdline/export_tests.py subversion/tests/cmdline/externals_tests.py subversion/tests/cmdline/getopt_tests.py subversion/tests/cmdline/history_tests.py subversion/tests/cmdline/import_tests.py subversion/tests/cmdline/info_tests.py subversion/tests/cmdline/input_validation_tests.py subversion/tests/cmdline/lock_tests.py subversion/tests/cmdline/log_tests.py subversion/tests/cmdline/merge_authz_tests.py subversion/tests/cmdline/merge_reintegrate_tests.py subversion/tests/cmdline/merge_tests.py subversion/tests/cmdline/merge_tree_conflict_tests.py subversion/tests/cmdline/mergeinfo_tests.py subversion/tests/cmdline/patch_tests.py subversion/tests/cmdline/prop_tests.py subversion/tests/cmdline/redirect_tests.py subversio n/tests/cmdline/relocate_tests.py subversion/tests/cmdline/resolve_tests.py subversion/tests/cmdline/resolved_tests.py subversion/tests/cmdline/revert_tests.py subversion/tests/cmdline/schedule_tests.py subversion/tests/cmdline/special_tests.py subversion/tests/cmdline/stat_tests.py subversion/tests/cmdline/svnadmin_tests.py subversion/tests/cmdline/svndumpfilter_tests.py subversion/tests/cmdline/svnlook_tests.py subversion/tests/cmdline/svnmucc_tests.py subversion/tests/cmdline/svnrdump_tests.py subversion/tests/cmdline/svnsync_tests.py subversion/tests/cmdline/svnversion_tests.py subversion/tests/cmdline/switch_tests.py subversion/tests/cmdline/trans_tests.py subversion/tests/cmdline/tree_conflict_tests.py subversion/tests/cmdline/update_tests.py subversion/tests/cmdline/upgrade_tests.py subversion/tests/cmdline/utf8_tests.py +TEST_PROGRAMS = subversion/tests/libsvn_subr/auth-test$(EXEEXT) subversion/tests/libsvn_subr/cache-test$(EXEEXT) subversion/tests/libsvn_subr/checksum-test$(EXEEXT) subversion/tests/libsvn_client/client-test$(EXEEXT) subversion/tests/libsvn_subr/compat-test$(EXEEXT) subversion/tests/libsvn_subr/config-test$(EXEEXT) subversion/tests/libsvn_wc/db-test$(EXEEXT) subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) subversion/tests/libsvn_subr/dirent_uri-test$(EXEEXT) subversion/tests/libsvn_wc/entries-compat-test$(EXEEXT) subversion/tests/libsvn_subr/error-test$(EXEEXT) subversion/tests/libsvn_fs_fs/fs-pack-test$(EXEEXT) subversion/tests/libsvn_fs/fs-test$(EXEEXT) subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) subversion/tests/libsvn_fs/locks-test$(EXEEXT) subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) subversion/tests/libsvn_wc/op-depth-test$(EXEEXT) subversion/tests/libsvn_subr/opt-test$(EXEEXT) subversion/tests/libsvn_diff/parse-diff-test$(EXEEXT) subversion/tests/libsvn_ subr/path-test$(EXEEXT) subversion/tests/libsvn_wc/pristine-store-test$(EXEEXT) subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) subversion/tests/libsvn_delta/random-test$(EXEEXT) subversion/tests/libsvn_repos/repos-test$(EXEEXT) subversion/tests/libsvn_subr/revision-test$(EXEEXT) subversion/tests/libsvn_subr/skel-test$(EXEEXT) subversion/tests/libsvn_subr/stream-test$(EXEEXT) subversion/tests/libsvn_subr/string-test$(EXEEXT) subversion/tests/libsvn_subr/subst_translate-test$(EXEEXT) subversion/tests/libsvn_subr/target-test$(EXEEXT) subversion/tests/libsvn_subr/time-test$(EXEEXT) subversion/tests/libsvn_subr/translate-test$(EXEEXT) subversion/tests/libsvn_wc/tree-conflict-data-test$(EXEEXT) subversion/tests/libsvn_subr/utf-test$(EXEEXT) subversion/tests/libsvn_delta/window-test$(EXEEXT) subversion/tests/cmdline/authz_tests.py subversion/tests/cmdline/autoprop_tests.py subversion/tests/cmdline/basic_tests.py subversion/tests/cmdline/blame_tests.py subversion/tests/cmdline/cat_ tests.py subversion/tests/cmdline/changelist! _tests.py subversion/tests/cmdline/checkout_tests.py subversion/tests/cmdline/commit_tests.py subversion/tests/cmdline/copy_tests.py subversion/tests/cmdline/depth_tests.py subversion/tests/cmdline/diff_tests.py subversion/tests/cmdline/entries_tests.py subversion/tests/cmdline/export_tests.py subversion/tests/cmdline/externals_tests.py subversion/tests/cmdline/getopt_tests.py subversion/tests/cmdline/history_tests.py subversion/tests/cmdline/import_tests.py subversion/tests/cmdline/info_tests.py subversion/tests/cmdline/input_validation_tests.py subversion/tests/cmdline/lock_tests.py subversion/tests/cmdline/log_tests.py subversion/tests/cmdline/merge_authz_tests.py subversion/tests/cmdline/merge_reintegrate_tests.py subversion/tests/cmdline/merge_tests.py subversion/tests/cmdline/merge_tree_conflict_tests.py subversion/tests/cmdline/mergeinfo_tests.py subversion/tests/cmdline/mod_authz_svn_tests.py subversion/tests/cmdline/patch_tests.py subversion/tests/cmdline/prop_tests.py subv ersion/tests/cmdline/redirect_tests.py subversion/tests/cmdline/relocate_tests.py subversion/tests/cmdline/resolve_tests.py subversion/tests/cmdline/resolved_tests.py subversion/tests/cmdline/revert_tests.py subversion/tests/cmdline/schedule_tests.py subversion/tests/cmdline/special_tests.py subversion/tests/cmdline/stat_tests.py subversion/tests/cmdline/svnadmin_tests.py subversion/tests/cmdline/svndumpfilter_tests.py subversion/tests/cmdline/svnlook_tests.py subversion/tests/cmdline/svnmucc_tests.py subversion/tests/cmdline/svnrdump_tests.py subversion/tests/cmdline/svnsync_tests.py subversion/tests/cmdline/svnversion_tests.py subversion/tests/cmdline/switch_tests.py subversion/tests/cmdline/trans_tests.py subversion/tests/cmdline/tree_conflict_tests.py subversion/tests/cmdline/update_tests.py subversion/tests/cmdline/upgrade_tests.py subversion/tests/cmdline/utf8_tests.py MANPAGES = subversion/svn/svn.1 subversion/svnadmin/svnadmin.1 subversion/svndumpfilter/svndumpfilter.1 subversion/svnlook/svnlook.1 subversion/svnrdump/svnrdump.1 subversion/svnserve/svnserve.8 subversion/svnserve/svnserve.conf.5 subversion/svnsync/svnsync.1 subversion/svnversion/svnversion.1 -CLEAN_FILES = subversion/svn/svn$(EXEEXT) subversion/svnadmin/svnadmin$(EXEEXT) subversion/svndumpfilter/svndumpfilter$(EXEEXT) subversion/svnlook/svnlook$(EXEEXT) subversion/svnrdump/svnrdump$(EXEEXT) subversion/svnserve/svnserve$(EXEEXT) subversion/svnsync/svnsync$(EXEEXT) subversion/svnversion/svnversion$(EXEEXT) subversion/tests/cmdline/atomic-ra-revprop-change$(EXEEXT) subversion/tests/cmdline/authz_tests.pyc subversion/tests/cmdline/autoprop_tests.pyc subversion/tests/cmdline/basic_tests.pyc subversion/tests/cmdline/blame_tests.pyc subversion/tests/cmdline/cat_tests.pyc subversion/tests/cmdline/changelist_tests.pyc subversion/tests/cmdline/checkout_tests.pyc subversion/tests/cmdline/commit_tests.pyc subversion/tests/cmdline/copy_tests.pyc subversion/tests/cmdline/depth_tests.pyc subversion/tests/cmdline/diff_tests.pyc subversion/tests/cmdline/entries-dump$(EXEEXT) subversion/tests/cmdline/entries_tests.pyc subversion/tests/cmdline/export_tests.pyc subversion/tests/cmdline/exte rnals_tests.pyc subversion/tests/cmdline/getopt_tests.pyc subversion/tests/cmdline/history_tests.pyc subversion/tests/cmdline/import_tests.pyc subversion/tests/cmdline/info_tests.pyc subversion/tests/cmdline/input_validation_tests.pyc subversion/tests/cmdline/lock_tests.pyc subversion/tests/cmdline/log_tests.pyc subversion/tests/cmdline/merge_authz_tests.pyc subversion/tests/cmdline/merge_reintegrate_tests.pyc subversion/tests/cmdline/merge_tests.pyc subversion/tests/cmdline/merge_tree_conflict_tests.pyc subversion/tests/cmdline/mergeinfo_tests.pyc subversion/tests/cmdline/patch_tests.pyc subversion/tests/cmdline/prop_tests.pyc subversion/tests/cmdline/redirect_tests.pyc subversion/tests/cmdline/relocate_tests.pyc subversion/tests/cmdline/resolve_tests.pyc subversion/tests/cmdline/resolved_tests.pyc subversion/tests/cmdline/revert_tests.pyc subversion/tests/cmdline/schedule_tests.pyc subversion/tests/cmdline/special_tests.pyc subversion/tests/cmdline/stat_tests.pyc subversion/tests/ cmdline/svnadmin_tests.pyc subversion/tests/! cmdline/svndumpfilter_tests.pyc subversion/tests/cmdline/svnlook_tests.pyc subversion/tests/cmdline/svnmucc_tests.pyc subversion/tests/cmdline/svnrdump_tests.pyc subversion/tests/cmdline/svnsync_tests.pyc subversion/tests/cmdline/svnversion_tests.pyc subversion/tests/cmdline/switch_tests.pyc subversion/tests/cmdline/trans_tests.pyc subversion/tests/cmdline/tree_conflict_tests.pyc subversion/tests/cmdline/update_tests.pyc subversion/tests/cmdline/upgrade_tests.pyc subversion/tests/cmdline/utf8_tests.pyc subversion/tests/libsvn_client/client-test$(EXEEXT) subversion/tests/libsvn_delta/random-test$(EXEEXT) subversion/tests/libsvn_delta/svndiff-test$(EXEEXT) subversion/tests/libsvn_delta/vdelta-test$(EXEEXT) subversion/tests/libsvn_delta/window-test$(EXEEXT) subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) subversion/tests/libsvn_diff/parse-diff-test$(EXEEXT) subversion/tests/libsvn_fs/fs-test$(EXEEXT) subversion/tests/libsvn_fs/locks-test$(EXEEXT) subversion/tests/libsvn_fs_base/c hanges-test$(EXEEXT) subversion/tests/libsvn_fs_base/fs-base-test$(EXEEXT) subversion/tests/libsvn_fs_base/strings-reps-test$(EXEEXT) subversion/tests/libsvn_fs_fs/fs-pack-test$(EXEEXT) subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) subversion/tests/libsvn_repos/repos-test$(EXEEXT) subversion/tests/libsvn_subr/auth-test$(EXEEXT) subversion/tests/libsvn_subr/cache-test$(EXEEXT) subversion/tests/libsvn_subr/checksum-test$(EXEEXT) subversion/tests/libsvn_subr/compat-test$(EXEEXT) subversion/tests/libsvn_subr/config-test$(EXEEXT) subversion/tests/libsvn_subr/dirent_uri-test$(EXEEXT) subversion/tests/libsvn_subr/error-test$(EXEEXT) subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) subversion/tests/libsvn_subr/opt-test$(EXEEXT) subversion/tests/libsvn_subr/path-test$(EXEEXT) subversion/tests/libsvn_subr/revision-test$(EXEEXT) subversion/tests/libsvn_subr/skel-test$(EXEEXT) subversion/tests/libsvn_subr/stream-test$(EXEEXT) sub version/tests/libsvn_subr/string-test$(EXEEX! T) subver! sion/tests/libsvn_subr/subst_translate-test$(EXEEXT) subversion/tests/libsvn_subr/target-test$(EXEEXT) subversion/tests/libsvn_subr/time-test$(EXEEXT) subversion/tests/libsvn_subr/translate-test$(EXEEXT) subversion/tests/libsvn_subr/utf-test$(EXEEXT) subversion/tests/libsvn_wc/db-test$(EXEEXT) subversion/tests/libsvn_wc/entries-compat-test$(EXEEXT) subversion/tests/libsvn_wc/op-depth-test$(EXEEXT) subversion/tests/libsvn_wc/pristine-store-test$(EXEEXT) subversion/tests/libsvn_wc/tree-conflict-data-test$(EXEEXT) subversion/tests/libsvn_wc/wc-incomplete-tester$(EXEEXT) subversion/tests/libsvn_wc/wc-lock-tester$(EXEEXT) tools/client-side/svnmucc/svnmucc$(EXEEXT) tools/dev/svnraisetreeconflict/svnraisetreeconflict$(EXEEXT) tools/diff/diff$(EXEEXT) tools/diff/diff3$(EXEEXT) tools/diff/diff4$(EXEEXT) tools/server-side/svn-populate-node-origins-index$(EXEEXT) tools/server-side/svn-rep-sharing-stats$(EXEEXT) tools/server-side/svnauthz-validate$(EXEEXT) +CLEAN_FILES = subversion/svn/svn$(EXEEXT) subversion/svnadmin/svnadmin$(EXEEXT) subversion/svndumpfilter/svndumpfilter$(EXEEXT) subversion/svnlook/svnlook$(EXEEXT) subversion/svnrdump/svnrdump$(EXEEXT) subversion/svnserve/svnserve$(EXEEXT) subversion/svnsync/svnsync$(EXEEXT) subversion/svnversion/svnversion$(EXEEXT) subversion/tests/cmdline/atomic-ra-revprop-change$(EXEEXT) subversion/tests/cmdline/authz_tests.pyc subversion/tests/cmdline/autoprop_tests.pyc subversion/tests/cmdline/basic_tests.pyc subversion/tests/cmdline/blame_tests.pyc subversion/tests/cmdline/cat_tests.pyc subversion/tests/cmdline/changelist_tests.pyc subversion/tests/cmdline/checkout_tests.pyc subversion/tests/cmdline/commit_tests.pyc subversion/tests/cmdline/copy_tests.pyc subversion/tests/cmdline/depth_tests.pyc subversion/tests/cmdline/diff_tests.pyc subversion/tests/cmdline/entries-dump$(EXEEXT) subversion/tests/cmdline/entries_tests.pyc subversion/tests/cmdline/export_tests.pyc subversion/tests/cmdline/exte rnals_tests.pyc subversion/tests/cmdline/getopt_tests.pyc subversion/tests/cmdline/history_tests.pyc subversion/tests/cmdline/import_tests.pyc subversion/tests/cmdline/info_tests.pyc subversion/tests/cmdline/input_validation_tests.pyc subversion/tests/cmdline/lock_tests.pyc subversion/tests/cmdline/log_tests.pyc subversion/tests/cmdline/merge_authz_tests.pyc subversion/tests/cmdline/merge_reintegrate_tests.pyc subversion/tests/cmdline/merge_tests.pyc subversion/tests/cmdline/merge_tree_conflict_tests.pyc subversion/tests/cmdline/mergeinfo_tests.pyc subversion/tests/cmdline/mod_authz_svn_tests.pyc subversion/tests/cmdline/patch_tests.pyc subversion/tests/cmdline/prop_tests.pyc subversion/tests/cmdline/redirect_tests.pyc subversion/tests/cmdline/relocate_tests.pyc subversion/tests/cmdline/resolve_tests.pyc subversion/tests/cmdline/resolved_tests.pyc subversion/tests/cmdline/revert_tests.pyc subversion/tests/cmdline/schedule_tests.pyc subversion/tests/cmdline/special_tests.pyc subversi on/tests/cmdline/stat_tests.pyc subversion/t! ests/cmdline/svnadmin_tests.pyc subversion/tests/cmdline/svndumpfilter_tests.pyc subversion/tests/cmdline/svnlook_tests.pyc subversion/tests/cmdline/svnmucc_tests.pyc subversion/tests/cmdline/svnrdump_tests.pyc subversion/tests/cmdline/svnsync_tests.pyc subversion/tests/cmdline/svnversion_tests.pyc subversion/tests/cmdline/switch_tests.pyc subversion/tests/cmdline/trans_tests.pyc subversion/tests/cmdline/tree_conflict_tests.pyc subversion/tests/cmdline/update_tests.pyc subversion/tests/cmdline/upgrade_tests.pyc subversion/tests/cmdline/utf8_tests.pyc subversion/tests/libsvn_client/client-test$(EXEEXT) subversion/tests/libsvn_delta/random-test$(EXEEXT) subversion/tests/libsvn_delta/svndiff-test$(EXEEXT) subversion/tests/libsvn_delta/vdelta-test$(EXEEXT) subversion/tests/libsvn_delta/window-test$(EXEEXT) subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) subversion/tests/libsvn_diff/parse-diff-test$(EXEEXT) subversion/tests/libsvn_fs/fs-test$(EXEEXT) subversion/tests/libsvn_fs/lock s-test$(EXEEXT) subversion/tests/libsvn_fs_base/changes-test$(EXEEXT) subversion/tests/libsvn_fs_base/fs-base-test$(EXEEXT) subversion/tests/libsvn_fs_base/strings-reps-test$(EXEEXT) subversion/tests/libsvn_fs_fs/fs-pack-test$(EXEEXT) subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) subversion/tests/libsvn_repos/repos-test$(EXEEXT) subversion/tests/libsvn_subr/auth-test$(EXEEXT) subversion/tests/libsvn_subr/cache-test$(EXEEXT) subversion/tests/libsvn_subr/checksum-test$(EXEEXT) subversion/tests/libsvn_subr/compat-test$(EXEEXT) subversion/tests/libsvn_subr/config-test$(EXEEXT) subversion/tests/libsvn_subr/dirent_uri-test$(EXEEXT) subversion/tests/libsvn_subr/error-test$(EXEEXT) subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) subversion/tests/libsvn_subr/opt-test$(EXEEXT) subversion/tests/libsvn_subr/path-test$(EXEEXT) subversion/tests/libsvn_subr/revision-test$(EXEEXT) subversion/tests/libsvn_subr/skel-test$(EXEEXT) subv ersion/tests/libsvn_subr/stream-test$(EXEEXT! ) subvers! ion/tests/libsvn_subr/string-test$(EXEEXT) subversion/tests/libsvn_subr/subst_translate-test$(EXEEXT) subversion/tests/libsvn_subr/target-test$(EXEEXT) subversion/tests/libsvn_subr/time-test$(EXEEXT) subversion/tests/libsvn_subr/translate-test$(EXEEXT) subversion/tests/libsvn_subr/utf-test$(EXEEXT) subversion/tests/libsvn_wc/db-test$(EXEEXT) subversion/tests/libsvn_wc/entries-compat-test$(EXEEXT) subversion/tests/libsvn_wc/op-depth-test$(EXEEXT) subversion/tests/libsvn_wc/pristine-store-test$(EXEEXT) subversion/tests/libsvn_wc/tree-conflict-data-test$(EXEEXT) subversion/tests/libsvn_wc/wc-incomplete-tester$(EXEEXT) subversion/tests/libsvn_wc/wc-lock-tester$(EXEEXT) tools/client-side/svnmucc/svnmucc$(EXEEXT) tools/dev/svnraisetreeconflict/svnraisetreeconflict$(EXEEXT) tools/diff/diff$(EXEEXT) tools/diff/diff3$(EXEEXT) tools/diff/diff4$(EXEEXT) tools/server-side/svn-populate-node-origins-index$(EXEEXT) tools/server-side/svn-rep-sharing-stats$(EXEEXT) tools/server-side/svnauthz-validat e$(EXEEXT) EXTRACLEAN_FILES = subversion/libsvn_fs_fs/rep-cache-db.h subversion/libsvn_subr/internal_statements.h subversion/libsvn_wc/wc-queries.h SWIG_INCLUDES = -I$(abs_builddir)/subversion \ @@ -2338,7 +2338,7 @@ subversion/libsvn_wc/wc_db_wcroot.lo: su subversion/libsvn_wc/workqueue.lo: subversion/libsvn_wc/workqueue.c subversion/include/private/svn_debug.h subversion/include/private/svn_skel.h subversion/include/private/svn_sqlite.h subversion/include/private/svn_token.h subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_wc.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/props.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/libsvn_wc/wc_db.h subversion/lib svn_wc/workqueue.h subversion/svn_private_config.h -subversion/mod_authz_svn/mod_authz_svn.lo: subversion/mod_authz_svn/mod_authz_svn.c subversion/include/mod_authz_svn.h subversion/include/mod_dav_svn.h subversion/include/private/svn_debug.h subversion/include/private/svn_fspath.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h +subversion/mod_authz_svn/mod_authz_svn.lo: subversion/mod_authz_svn/mod_authz_svn.c subversion/include/mod_authz_svn.h subversion/include/mod_dav_svn.h subversion/include/private/svn_debug.h subversion/include/private/svn_fspath.h subversion/include/svn_checksum.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/svn_private_config.h $(COMPILE_APACHE_MOD) $(canonicalized_srcdir)subversion/mod_authz_svn/mod_authz_svn.c subversion/mod_dav_svn/activity.lo: subversion/mod_dav_svn/activity.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/private/svn_debug.h subversion/include/private/svn_fs_private.h subversion/include/private/svn_skel.h subversion/include/svn_checksum.h subversion/include/svn_delta.h subversion/include/svn_dirent_uri.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h From owner-svn-ports-branches@freebsd.org Sun Aug 23 23:02:41 2015 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 E466C9BFFDF; Sun, 23 Aug 2015 23:02:41 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 C98FF1A94; Sun, 23 Aug 2015 23:02:41 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7NN2fMP069043; Sun, 23 Aug 2015 23:02:41 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7NN2f6x069040; Sun, 23 Aug 2015 23:02:41 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508232302.t7NN2f6x069040@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 23 Aug 2015 23:02:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395142 - branches/2015Q3/www/mediawiki125 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.20 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, 23 Aug 2015 23:02:42 -0000 Author: junovitch Date: Sun Aug 23 23:02:40 2015 New Revision: 395142 URL: https://svnweb.freebsd.org/changeset/ports/395142 Log: MFH: r394006 - Update to 1.25.2 - Update options PR: 202328 Security: 6241b5df-42a1-11e5-93ad-002590263bf5 Approved by: ports-secteam (delphij), delphij (mentor) Modified: branches/2015Q3/www/mediawiki125/Makefile branches/2015Q3/www/mediawiki125/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/mediawiki125/Makefile ============================================================================== --- branches/2015Q3/www/mediawiki125/Makefile Sun Aug 23 22:57:56 2015 (r395141) +++ branches/2015Q3/www/mediawiki125/Makefile Sun Aug 23 23:02:40 2015 (r395142) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.25.1 +PORTVERSION= 1.25.2 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 125 @@ -18,6 +18,7 @@ USES= shebangfix SHEBANG_FILES= maintenance/dev/*.sh \ maintenance/hiphop/run-server \ vendor/leafo/lessphp/lessify \ + vendor/ruflin/elastica/test/bin/*.sh \ maintenance/postgres/*.pl \ maintenance/storage/make-blobs \ includes/limit.sh @@ -34,54 +35,31 @@ PLIST= ${WRKDIR}/plist SUB_FILES= pkg-message SUB_LIST= MEDIAWIKIDIR=${PREFIX}/${MEDIAWIKIDIR} -OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC EACCEL XCACHE IMAGICK -OPTIONS_DEFAULT=MYSQL +OPTIONS_DEFINE= LDAP MEMCACHED IMAGICK +OPTIONS_SINGLE= DB +OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE +OPTIONS_RADIO= ACCEL +OPTIONS_RADIO_ACCEL= APC XCACHE +OPTIONS_DEFAULT= MYSQL MEMCACHED_DESC= Use memcached APC_DESC= Use pecl-APC (Mediawiki recommended) -EACCEL_DESC= Use eAccelerator (instead of pecl-APC) XCACHE_DESC= Use xCache (instead of pecl-APC) IMAGICK_DESC= Use ImageMagick -.include - -.if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL= client -USE_PHP+= mysql -.endif - -.if ${PORT_OPTIONS:MPGSQL} -USE_PHP+= pgsql -.endif - -.if ${PORT_OPTIONS:MSQLITE} -USE_PHP+= sqlite3 -.endif - -.if ${PORT_OPTIONS:MLDAP} -USE_PHP+= ldap -.endif - -.if ${PORT_OPTIONS:MMEMCACHED} -RUN_DEPENDS= memcached:${PORTSDIR}/databases/memcached -.endif - -.if ${PORT_OPTIONS:MIMAGICK} -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/graphics/pecl-imagick -.endif - -.if ${PORT_OPTIONS:MAPC} -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC -.elif ${PORT_OPTIONS:MEACCEL} -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/eaccelerator.so:${PORTSDIR}/www/eaccelerator -.elif ${PORT_OPTIONS:MXCACHE} -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xcache.so:${PORTSDIR}/www/xcache -.endif +MYSQL_USE= mysql=client php=mysql +PGSQL_USE= php=pgsql +SQLITE_USE= php=sqlite3 +LDAP_USE= php=ldap + +MEMCACHED_RUN_DEPENDS= memcached:${PORTSDIR}/databases/memcached +IMAGICK_RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/graphics/pecl-imagick +APC_RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC +XCACHE_RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xcache.so:${PORTSDIR}/www/xcache pre-install: @${FIND} -s -d ${WRKSRC} -not -type d | ${SED} "s?${WRKSRC}?${MEDIAWIKIDIR}?g" >>${PLIST} - @${ECHO} "@dir %%WWWDIR%%/vendor/zordius/lightncandy/specs/handlebars" >> ${PLIST} - @${ECHO} "@dir %%WWWDIR%%/vendor/zordius/lightncandy/specs/mustache" >> ${PLIST} + @${ECHO} "@dir %%WWWDIR%%/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures" >> ${PLIST} @${ECHO} @dir ${MEDIAWIKIDIR} >> ${PLIST} do-install: Modified: branches/2015Q3/www/mediawiki125/distinfo ============================================================================== --- branches/2015Q3/www/mediawiki125/distinfo Sun Aug 23 22:57:56 2015 (r395141) +++ branches/2015Q3/www/mediawiki125/distinfo Sun Aug 23 23:02:40 2015 (r395142) @@ -1,2 +1,2 @@ -SHA256 (mediawiki-1.25.1.tar.gz) = b3a7d672d12bd329d9ca64ae2428a19fbf5e10b234568114fa17df84d2428731 -SIZE (mediawiki-1.25.1.tar.gz) = 23661450 +SHA256 (mediawiki-1.25.2.tar.gz) = 539fecfe3d0c7de8130b0c3b548fe1f862f60df76396dc54ee0548c87e5f2482 +SIZE (mediawiki-1.25.2.tar.gz) = 24018158 From owner-svn-ports-branches@freebsd.org Sun Aug 23 23:03:51 2015 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 B55369C106A; Sun, 23 Aug 2015 23:03:51 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 9A07D1D30; Sun, 23 Aug 2015 23:03:51 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7NN3pVE069285; Sun, 23 Aug 2015 23:03:51 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7NN3pT1069283; Sun, 23 Aug 2015 23:03:51 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508232303.t7NN3pT1069283@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 23 Aug 2015 23:03:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395143 - branches/2015Q3/www/mediawiki124 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.20 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, 23 Aug 2015 23:03:51 -0000 Author: junovitch Date: Sun Aug 23 23:03:50 2015 New Revision: 395143 URL: https://svnweb.freebsd.org/changeset/ports/395143 Log: MFH: r394009 - Update to 1.24.3 - Update options - Fix file permissions PR: 202328 Security: 6241b5df-42a1-11e5-93ad-002590263bf5 Approved by: ports-secteam (delphij), delphij (mentor) Modified: branches/2015Q3/www/mediawiki124/Makefile branches/2015Q3/www/mediawiki124/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/mediawiki124/Makefile ============================================================================== --- branches/2015Q3/www/mediawiki124/Makefile Sun Aug 23 23:02:40 2015 (r395142) +++ branches/2015Q3/www/mediawiki124/Makefile Sun Aug 23 23:03:50 2015 (r395143) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.24.2 -PORTREVISION= 1 +PORTVERSION= 1.24.3 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 124 @@ -31,12 +30,11 @@ PLIST= ${WRKDIR}/plist SUB_FILES= pkg-message SUB_LIST= MEDIAWIKIDIR=${PREFIX}/${MEDIAWIKIDIR} -OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC EACCEL XCACHE IMAGICK +OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC XCACHE IMAGICK OPTIONS_DEFAULT=MYSQL MEMCACHED_DESC= Use memcached APC_DESC= Use pecl-APC (Mediawiki recommended) -EACCEL_DESC= Use eAccelerator (instead of pecl-APC) XCACHE_DESC= Use xCache (instead of pecl-APC) IMAGICK_DESC= Use ImageMagick @@ -69,19 +67,13 @@ RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP .if ${PORT_OPTIONS:MAPC} RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC -.elif ${PORT_OPTIONS:MEACCEL} -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/eaccelerator.so:${PORTSDIR}/www/eaccelerator .elif ${PORT_OPTIONS:MXCACHE} RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xcache.so:${PORTSDIR}/www/xcache .endif pre-install: - @${ECHO_CMD} "@owner ${WWWOWN}" >> ${PLIST} - @${ECHO_CMD} "@group ${WWWGRP}" >> ${PLIST} @${FIND} -s -d ${WRKSRC} -not -type d | ${SED} "s?${WRKSRC}?${MEDIAWIKIDIR}?g" >>${PLIST} @${ECHO} @dir ${MEDIAWIKIDIR} >> ${PLIST} - @${ECHO_CMD} "@group" >> ${PLIST} - @${ECHO_CMD} "@owner" >> ${PLIST} do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${MEDIAWIKIDIR} Modified: branches/2015Q3/www/mediawiki124/distinfo ============================================================================== --- branches/2015Q3/www/mediawiki124/distinfo Sun Aug 23 23:02:40 2015 (r395142) +++ branches/2015Q3/www/mediawiki124/distinfo Sun Aug 23 23:03:50 2015 (r395143) @@ -1,2 +1,2 @@ -SHA256 (mediawiki-1.24.2.tar.gz) = 01ceb6b6e1df9d6ee99a0221424bd1554e10770993a18df98153c7a298cad3bb -SIZE (mediawiki-1.24.2.tar.gz) = 21874196 +SHA256 (mediawiki-1.24.3.tar.gz) = 15f1d4a245b5d9912b4501e6eaf525cd6225ede37665e2b014a0f6b59f782fb5 +SIZE (mediawiki-1.24.3.tar.gz) = 21931304 From owner-svn-ports-branches@freebsd.org Sun Aug 23 23:05:02 2015 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 E64FA9C10E2; Sun, 23 Aug 2015 23:05:02 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 BC9AC1E48; Sun, 23 Aug 2015 23:05:02 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7NN52xt069543; Sun, 23 Aug 2015 23:05:02 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7NN52vB069540; Sun, 23 Aug 2015 23:05:02 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508232305.t7NN52vB069540@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sun, 23 Aug 2015 23:05:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395144 - branches/2015Q3/www/mediawiki123 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.20 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, 23 Aug 2015 23:05:03 -0000 Author: junovitch Date: Sun Aug 23 23:05:01 2015 New Revision: 395144 URL: https://svnweb.freebsd.org/changeset/ports/395144 Log: MFH: r394265 - Update to 1.23.10 - Fix file permission - Update options PR: 202328 Security: 6241b5df-42a1-11e5-93ad-002590263bf5 Approved by: ports-secteam (delphij), delphij (mentor) Modified: branches/2015Q3/www/mediawiki123/Makefile branches/2015Q3/www/mediawiki123/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/mediawiki123/Makefile ============================================================================== --- branches/2015Q3/www/mediawiki123/Makefile Sun Aug 23 23:03:50 2015 (r395143) +++ branches/2015Q3/www/mediawiki123/Makefile Sun Aug 23 23:05:01 2015 (r395144) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.23.9 -PORTREVISION= 1 +PORTVERSION= 1.23.10 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 123 @@ -31,12 +30,11 @@ PLIST= ${WRKDIR}/plist SUB_FILES= pkg-message SUB_LIST= MEDIAWIKIDIR=${PREFIX}/${MEDIAWIKIDIR} -OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC EACCEL XCACHE IMAGICK +OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC XCACHE IMAGICK OPTIONS_DEFAULT=MYSQL MEMCACHED_DESC= Use memcached APC_DESC= Use pecl-APC (Mediawiki recommended) -EACCEL_DESC= Use eAccelerator (instead of pecl-APC) XCACHE_DESC= Use xCache (instead of pecl-APC) IMAGICK_DESC= Use ImageMagick @@ -76,12 +74,8 @@ RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP .endif pre-install: - @${ECHO_CMD} "@owner ${WWWOWN}" >> ${PLIST} - @${ECHO_CMD} "@group ${WWWGRP}" >> ${PLIST} @${FIND} -s -d ${WRKSRC} -not -type d | ${SED} "s?${WRKSRC}?${MEDIAWIKIDIR}?g" >>${PLIST} @${ECHO} @dir ${MEDIAWIKIDIR} >> ${PLIST} - @${ECHO_CMD} "@group" >> ${PLIST} - @${ECHO_CMD} "@owner" >> ${PLIST} do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${MEDIAWIKIDIR} Modified: branches/2015Q3/www/mediawiki123/distinfo ============================================================================== --- branches/2015Q3/www/mediawiki123/distinfo Sun Aug 23 23:03:50 2015 (r395143) +++ branches/2015Q3/www/mediawiki123/distinfo Sun Aug 23 23:05:01 2015 (r395144) @@ -1,2 +1,2 @@ -SHA256 (mediawiki-1.23.9.tar.gz) = 14af72b5b01b8c08e62d893db08519440372ba115c94ecf2f622fd77c123f3d0 -SIZE (mediawiki-1.23.9.tar.gz) = 20979505 +SHA256 (mediawiki-1.23.10.tar.gz) = d25a5cfaeb78abe2b86c10404d321f18cfd573754e1e3eaeeea4fa2b41fefda0 +SIZE (mediawiki-1.23.10.tar.gz) = 21044267 From owner-svn-ports-branches@freebsd.org Mon Aug 24 16:30:17 2015 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 CC8D89C229D; Mon, 24 Aug 2015 16:30:17 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 A2CAB14AC; Mon, 24 Aug 2015 16:30:17 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7OGUH92018054; Mon, 24 Aug 2015 16:30:17 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7OGUH0I018051; Mon, 24 Aug 2015 16:30:17 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508241630.t7OGUH0I018051@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 24 Aug 2015 16:30:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395179 - in branches/2015Q3/devel/pcre: . 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.20 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, 24 Aug 2015 16:30:17 -0000 Author: feld Date: Mon Aug 24 16:30:16 2015 New Revision: 395179 URL: https://svnweb.freebsd.org/changeset/ports/395179 Log: MFH: r395178 devel/pcre: Add patch to resolve heap overflow vulnerability Obtained from: http://vcs.pcre.org/pcre?view=revision&revision=1594 Security: 6900e6f1-4a79-11e5-9ad8-14dae9d210b8 Approved by: ports-secteam (with hat) Added: branches/2015Q3/devel/pcre/files/patch-r1594-heap-overflow - copied unchanged from r395178, head/devel/pcre/files/patch-r1594-heap-overflow Modified: branches/2015Q3/devel/pcre/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/devel/pcre/Makefile ============================================================================== --- branches/2015Q3/devel/pcre/Makefile Mon Aug 24 16:25:22 2015 (r395178) +++ branches/2015Q3/devel/pcre/Makefile Mon Aug 24 16:30:16 2015 (r395179) @@ -3,7 +3,7 @@ PORTNAME= pcre PORTVERSION= 8.37 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ ftp://ftp.csx.cam.ac.uk/pub/software/programming/${PORTNAME}/ \ Copied: branches/2015Q3/devel/pcre/files/patch-r1594-heap-overflow (from r395178, head/devel/pcre/files/patch-r1594-heap-overflow) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q3/devel/pcre/files/patch-r1594-heap-overflow Mon Aug 24 16:30:16 2015 (r395179, copy of r395178, head/devel/pcre/files/patch-r1594-heap-overflow) @@ -0,0 +1,20 @@ +--- pcre_compile.c 2015/08/14 09:34:32 1593 ++++ pcre_compile.c 2015/08/21 16:08:33 1594 +@@ -7238,7 +7238,7 @@ + encountered. In that case, we allow yet more memory, just in case. + (Again, this is fixed "properly" in PCRE2. */ + +- if (cd->dupgroups) *lengthptr += 2 + 2*LINK_SIZE; ++ if (cd->dupgroups) *lengthptr += 4 + 4*LINK_SIZE; + + /* Otherwise, check for recursion here. The name table does not exist + in the first pass; instead we must scan the list of names encountered +@@ -9474,7 +9474,7 @@ + "const" attribute if the cast (pcre_uchar *)codestart is used directly in the + function call. */ + +-if ((options & PCRE_NO_AUTO_POSSESS) == 0) ++if (errorcode == 0 && (options & PCRE_NO_AUTO_POSSESS) == 0) + { + pcre_uchar *temp = (pcre_uchar *)codestart; + auto_possessify(temp, utf, cd); From owner-svn-ports-branches@freebsd.org Tue Aug 25 11:19:58 2015 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 6703B99ADF1; Tue, 25 Aug 2015 11:19:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 57A05B69; Tue, 25 Aug 2015 11:19:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7PBJwvh088197; Tue, 25 Aug 2015 11:19:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7PBJwH6088196; Tue, 25 Aug 2015 11:19:58 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508251119.t7PBJwH6088196@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 25 Aug 2015 11:19:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395239 - branches/2015Q3/sysutils/dirdiff 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.20 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, 25 Aug 2015 11:19:58 -0000 Author: amdmi3 Date: Tue Aug 25 11:19:57 2015 New Revision: 395239 URL: https://svnweb.freebsd.org/changeset/ports/395239 Log: MFH: r395238 - Fix library installation - Fix library name to match what script expects, fixing -r option Approved by: portmgr blanket Approved by: ports-secteam blanket Modified: branches/2015Q3/sysutils/dirdiff/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/sysutils/dirdiff/Makefile ============================================================================== --- branches/2015Q3/sysutils/dirdiff/Makefile Tue Aug 25 11:15:43 2015 (r395238) +++ branches/2015Q3/sysutils/dirdiff/Makefile Tue Aug 25 11:19:57 2015 (r395239) @@ -3,7 +3,7 @@ PORTNAME= dirdiff PORTVERSION= 2.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils tcl tk MASTER_SITES= ftp://ftp.samba.org/pub/paulus/ @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES+= tk USE_LDCONFIG= yes -PLIST_FILES= bin/dirdiff lib/libfilecmp.so.0 +PLIST_FILES= bin/dirdiff lib/libfilecmp.so.0.0 CFLAGS+= -fPIC -I${TCL_INCLUDEDIR} @@ -34,6 +34,6 @@ post-patch: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/dirdiff ${STAGEDIR}${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/libfilecmp.so.0 ${STAGEDIR}${PREFIX}/lib + ${INSTALL_LIB} ${WRKSRC}/libfilecmp.so.0 ${STAGEDIR}${PREFIX}/lib/libfilecmp.so.0.0 .include From owner-svn-ports-branches@freebsd.org Tue Aug 25 11:22:17 2015 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 350F499AF27; Tue, 25 Aug 2015 11:22:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 1946CE5F; Tue, 25 Aug 2015 11:22:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7PBMGis092078; Tue, 25 Aug 2015 11:22:16 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7PBMGa5092075; Tue, 25 Aug 2015 11:22:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508251122.t7PBMGa5092075@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 25 Aug 2015 11:22:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395240 - branches/2015Q3/audio/libtremor 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.20 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, 25 Aug 2015 11:22:17 -0000 Author: jbeich Date: Tue Aug 25 11:22:15 2015 New Revision: 395240 URL: https://svnweb.freebsd.org/changeset/ports/395240 Log: MFH: r395232 audio/libtremor: update to 1.2.1.s20150105 Changes: https://git.xiph.org/?p=tremor.git;a=shortlog;h=b56ffc Security: http://www.vuxml.org/freebsd/3dac84c9-bce1-4199-9784-d68af1eb7b2e.html Security: http://www.vuxml.org/freebsd/40497e81-fee3-4e54-9d5f-175a5c633b73.html Approved by: portmgr (erwin) Modified: branches/2015Q3/audio/libtremor/Makefile branches/2015Q3/audio/libtremor/distinfo branches/2015Q3/audio/libtremor/pkg-plist Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/audio/libtremor/Makefile ============================================================================== --- branches/2015Q3/audio/libtremor/Makefile Tue Aug 25 11:19:57 2015 (r395239) +++ branches/2015Q3/audio/libtremor/Makefile Tue Aug 25 11:22:15 2015 (r395240) @@ -2,18 +2,21 @@ # $FreeBSD$ PORTNAME= libtremor -PORTVERSION= 1.2.0.s20040213 -PORTREVISION= 2 +PORTVERSION= 1.2.1.s20150105 CATEGORIES= audio -MASTER_SITES= http://members.chello.nl/~g.mast/distfiles/ -DISTNAME= tremor_snapshot_${SNAP_DATE} +MASTER_SITES= http://git.xiph.org/?p=tremor.git;a=snapshot;sf=tgz;h=${GIT_COMMIT};/ +DISTNAME= ${PORTNAME:S/lib//}-${GIT_COMMIT} MAINTAINER= ports@FreeBSD.org COMMENT= Integer-only fully Ogg Vorbis compliant decoder library -SNAP_DATE= 02132004 -WRKSRC= ${WRKDIR}/Tremor -USES= autoreconf libtool tar:tgz +LICENSE= BSD3CLAUSE + +LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg + +GIT_COMMIT= b56ffc +USES= autoreconf libtool pathfix pkgconfig +PATHFIX_MAKEFILEIN= Makefile.am GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip Modified: branches/2015Q3/audio/libtremor/distinfo ============================================================================== --- branches/2015Q3/audio/libtremor/distinfo Tue Aug 25 11:19:57 2015 (r395239) +++ branches/2015Q3/audio/libtremor/distinfo Tue Aug 25 11:22:15 2015 (r395240) @@ -1,2 +1,2 @@ -SHA256 (tremor_snapshot_02132004.tgz) = 142e015b684ef9774f2b57d06c3730ba3d6dcbd90c3c11325039c2722f2460cc -SIZE (tremor_snapshot_02132004.tgz) = 151996 +SHA256 (tremor-b56ffc.tar.gz) = 50040fc477eaa592aebc1e4edba201f70b89fa42199a4d73826bd690219e6fd2 +SIZE (tremor-b56ffc.tar.gz) = 148838 Modified: branches/2015Q3/audio/libtremor/pkg-plist ============================================================================== --- branches/2015Q3/audio/libtremor/pkg-plist Tue Aug 25 11:19:57 2015 (r395239) +++ branches/2015Q3/audio/libtremor/pkg-plist Tue Aug 25 11:22:15 2015 (r395240) @@ -1,9 +1,8 @@ include/tremor/config_types.h include/tremor/ivorbiscodec.h include/tremor/ivorbisfile.h -include/tremor/ogg.h -include/tremor/os_types.h lib/libvorbisidec.a lib/libvorbisidec.so lib/libvorbisidec.so.1 -lib/libvorbisidec.so.1.0.2 +lib/libvorbisidec.so.1.0.3 +libdata/pkgconfig/vorbisidec.pc From owner-svn-ports-branches@freebsd.org Tue Aug 25 14:51:17 2015 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 0780599D898; Tue, 25 Aug 2015 14:51:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 EC7BAB29; Tue, 25 Aug 2015 14:51:16 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7PEpG8f078552; Tue, 25 Aug 2015 14:51:16 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7PEpGXX078551; Tue, 25 Aug 2015 14:51:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508251451.t7PEpGXX078551@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 25 Aug 2015 14:51:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395260 - branches/2015Q3/games/openbor 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.20 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, 25 Aug 2015 14:51:17 -0000 Author: jbeich Date: Tue Aug 25 14:51:16 2015 New Revision: 395260 URL: https://svnweb.freebsd.org/changeset/ports/395260 Log: MFH: r395219 games/openbor: unbreak on non-x86 architectures ib/2xSaI.c -o source/gfxlib/2xSaI.o source/gfxlib/2xSaI.c:50:11: error: invalid output constraint '=d' in asm : "=d"(retval) ^ 1 error generated. Reported by: pkg-fallout (armv6) Approved by: ports-secteam (build fix blanket) Modified: branches/2015Q3/games/openbor/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/games/openbor/Makefile ============================================================================== --- branches/2015Q3/games/openbor/Makefile Tue Aug 25 14:39:08 2015 (r395259) +++ branches/2015Q3/games/openbor/Makefile Tue Aug 25 14:51:16 2015 (r395260) @@ -40,6 +40,8 @@ DESKTOP_ENTRIES="OpenBOR" \ .if ${ARCH} == i386 BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm +.else +MAKE_ARGS+= BUILD_MMX="" .endif # From owner-svn-ports-branches@freebsd.org Tue Aug 25 23:58:20 2015 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 0D2E09C3737; Tue, 25 Aug 2015 23:58:20 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 EF4AD68F; Tue, 25 Aug 2015 23:58:19 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7PNwJBw029595; Tue, 25 Aug 2015 23:58:19 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7PNwJ4D029593; Tue, 25 Aug 2015 23:58:19 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508252358.t7PNwJ4D029593@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 25 Aug 2015 23:58:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395326 - branches/2015Q3/multimedia/ffmpeg0 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.20 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, 25 Aug 2015 23:58:20 -0000 Author: junovitch Date: Tue Aug 25 23:58:18 2015 New Revision: 395326 URL: https://svnweb.freebsd.org/changeset/ports/395326 Log: MFH: r391234 multimedia/ffmpeg0: Use OPTIONS helpers, Honour CFLAGS - Use OPTIONS helpers for as many as conditional blocks as possible. Blocks with FFMPEG_* and other variables not supported by the helper framework are not modified. - Honour CFLAGS for armv6 (= -> ?=) While I'm here: - Sort and group common or related Makefile sections where it made sense to do so and improved readability. Put global things up the top and conditional blocks below. - Improve whitespace alignment for readability. Approved by: wg (maintainer) Differential Revision: https://reviews.freebsd.org/D2981 MFH: r391234 multimedia/ffmpeg0: Fix X11GRAB dependency typo Fix a typo (s/xent/xext) in the X11GRAB USE_XORG dependency assignment that was introduced in r391234. PR: 201321 Submitted by: Andrey Fesenko Approved by: pointyhat (koobs) MFH: r395164 multimedia/ffmpeg0: security update 0.7.16 -> 0.7.17 PR: 200852 Security: 65b14d39-d01f-419c-b0b8-5df60b929973 Submitted by: John Hein Approved by: wg (maintainer), delphij (mentor) Approved by: ports-secteam (delphij) Modified: branches/2015Q3/multimedia/ffmpeg0/Makefile branches/2015Q3/multimedia/ffmpeg0/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/multimedia/ffmpeg0/Makefile ============================================================================== --- branches/2015Q3/multimedia/ffmpeg0/Makefile Tue Aug 25 23:08:51 2015 (r395325) +++ branches/2015Q3/multimedia/ffmpeg0/Makefile Tue Aug 25 23:58:18 2015 (r395326) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ffmpeg -PORTVERSION= 0.7.16 -PORTREVISION= 8 +PORTVERSION= 0.7.17 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://ffmpeg.org/releases/ @@ -23,33 +22,115 @@ BUILD_DEPENDS= yasm:${PORTSDIR}/devel/ya PORTSCOUT= limit:^0\.7.* -HAS_CONFIGURE= yes -CONFIGURE_LOG= config.err USES= cpe gmake perl5 pkgconfig tar:bzip2 -WANT_SDL= yes USE_LDCONFIG= ${PREFIX}/lib/ffmpeg${FFMPEG_SUFFIX} USE_PERL5= build +WANT_SDL= yes FFMPEG_SUFFIX= 0 -PLIST_SUB+= SUFF="${FFMPEG_SUFFIX}" - +HAS_CONFIGURE= yes +CONFIGURE_LOG= config.err CONFIGURE_ENV+= EXESUF="${FFMPEG_SUFFIX}" MAKE_ARGS+= EXESUF="${FFMPEG_SUFFIX}" +PLIST_SUB+= SUFF="${FFMPEG_SUFFIX}" PROGS= ffmpeg ffprobe +CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin +MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin + +CONFIGURE_ARGS+=--prefix="${PREFIX}" \ + --mandir="${PREFIX}/man" \ + --incdir="${PREFIX}/include/ffmpeg${FFMPEG_SUFFIX}" \ + --libdir="${PREFIX}/lib/ffmpeg${FFMPEG_SUFFIX}" \ + --shlibdir="${PREFIX}/lib/ffmpeg${FFMPEG_SUFFIX}" \ + --datadir="${DATADIR}" \ + --build-suffix="${FFMPEG_SUFFIX}" \ + --enable-shared \ + --enable-gpl \ + --enable-postproc \ + --enable-avfilter \ + --enable-pthreads \ + --enable-runtime-cpudetect \ + --cc="${CC}" \ + --extra-cflags="${FFMPEG_CFLAGS} -I${LOCALBASE}/include" \ + --extra-ldflags="-L${LOCALBASE}/lib ${FFMPEG_LDFLAGS}" \ + --extra-libs="-lpthread" + +SHLIB_VER= 1 +PLIST_SUB+= SHLIB_VER=${SHLIB_VER} + DATADIR= ${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} -OPTIONS_DEFINE= AACPLUS ALSA AMR_NB AMR_WB CELT DEBUG DIRAC FAAC \ - FFSERVER FREETYPE FREI0R GSM LAME OPENCV OPENJPEG \ - OPTIMIZED_CFLAGS RTMP SCHROEDINGER SDL SPEEX THEORA VAAPI \ - VDPAU VO_AACENC VO_AMRWBENC VORBIS VPX X11GRAB X264 XVID DOCS - +OPTIONS_DEFINE= AACPLUS ALSA AMR_NB AMR_WB CELT DEBUG DIRAC FAAC \ + FFSERVER FREETYPE FREI0R GSM LAME OPENCV OPENJPEG \ + OPTIMIZED_CFLAGS RTMP SCHROEDINGER SDL SPEEX THEORA VAAPI \ + VDPAU VO_AACENC VO_AMRWBENC VORBIS VPX X11GRAB X264 XVID DOCS OPTIONS_DEFAULT= FFSERVER FREETYPE FREI0R OPENCV SCHROEDINGER \ THEORA VORBIS VPX X264 XVID +OPTIONS_SUB= yes -FFSERVER_DESC= Build and install ffserver -X11GRAB_DESC= Enable x11 grabbing +FFSERVER_DESC= Build and install ffserver +X11GRAB_DESC= Enable x11 grabbing + +ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib +ALSA_CONFIGURE_OFF= --disable-indev=alsa \ + --disable-outdev=alsa + +CELT_LIB_DEPENDS= libcelt0.so:${PORTSDIR}/audio/celt +CELT_CONFIGURE_ENABLE= libcelt + +DIRAC_LIB_DEPENDS= libdirac_encoder.so:${PORTSDIR}/multimedia/dirac +DIRAC_CONFIGURE_ENABLE= libdirac + +DEBUG_CONFIGURE_ON= --disable-stripping +DEBUG_CONFIGURE_OFF= --disable-debug + +FFSERVER_CONFIGURE_OFF= --disable-ffserver + +FREETYPE_LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 +FREETYPE_CONFIGURE_ENABLE= libfreetype + +FREI0R_BUILD_DEPENDS= ${LOCALBASE}/include/frei0r.h:${PORTSDIR}/graphics/frei0r +FREI0R_CONFIGURE_ENABLE= frei0r + +GSM_LIB_DEPENDS= libgsm.so:${PORTSDIR}/audio/gsm +GSM_CONFIGURE_ENABLE= libgsm + +LAME_LIB_DEPENDS= libmp3lame.so:${PORTSDIR}/audio/lame +LAME_CONFIGURE_ENABLE= libmp3lame + +OPENCV_LIB_DEPENDS= libopencv_imgproc.so:${PORTSDIR}/graphics/opencv-core +OPENCV_CONFIGURE_ENABLE= libopencv + +OPENJPEG_LIB_DEPENDS= libopenjpeg.so:${PORTSDIR}/graphics/openjpeg15 +OPENJPEG_CONFIGURE_ENABLE= libopenjpeg + +RTMP_USE= OPENSSL=yes + +SCHROEDINGER_LIB_DEPENDS= libschroedinger-1.0.so:${PORTSDIR}/multimedia/schroedinger +SCHROEDINGER_CONFIGURE_ENABLE= libschroedinger + +SPEEX_LIB_DEPENDS= libspeex.so:${PORTSDIR}/audio/speex +SPEEX_CONFIGURE_ENABLE= libspeex + +THEORA_LIB_DEPENDS= libtheora.so:${PORTSDIR}/multimedia/libtheora +THEORA_CONFIGURE_ENABLE= libtheora + +X11GRAB_USE= XORG=x11,xext,xfixes +X11GRAB_CONFIGURE_ON= --enable-x11grab + +X264_LIB_DEPENDS= libx264.so:${PORTSDIR}/multimedia/libx264 +X264_CONFIGURE_ENABLE= libx264 + +XVID_LIB_DEPENDS= libxvidcore.so:${PORTSDIR}/multimedia/xvid +XVID_CONFIGURE_ENABLE= libxvid + +VDPAU_BUILD_DEPENDS= ${LOCALBASE}/include/vdpau/vdpau.h:${PORTSDIR}/multimedia/libvdpau +VDPAU_CONFIGURE_ENABLE= vdpau + +VPX_LIB_DEPENDS= libvpx.so:${PORTSDIR}/multimedia/libvpx +VPX_CONFIGURE_ENABLE= libvpx COMPAT_HEADERS=libavcodec/avcodec.h \ libavcodec/opt.h \ @@ -78,19 +159,6 @@ COMPAT_HEADERS=libavcodec/avcodec.h \ libpostproc/postprocess.h \ libswscale/swscale.h -.include - -# rtmp -.if ${PORT_OPTIONS:MRTMP} -USE_OPENSSL= yes -.endif - -# x11grab -.if ${PORT_OPTIONS:MX11GRAB} -USE_XORG= x11 xext xfixes -CONFIGURE_ARGS+= --enable-x11grab -.endif - .include .if ${OPSYS} == "FreeBSD" && ${OSVERSION} < 1000000 @@ -99,42 +167,13 @@ CONFIGURE_ARGS+= --enable-memalign-hack .if ${ARCH} == armv6 CONFIGURE_ENV+= ASFLAGS=-no-integrated-as -CFLAGS= -no-integrated-as +CFLAGS+= -no-integrated-as .endif -CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin -MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin - -CONFIGURE_ARGS+=--prefix="${PREFIX}" \ - --mandir="${PREFIX}/man" \ - --incdir="${PREFIX}/include/ffmpeg${FFMPEG_SUFFIX}" \ - --libdir="${PREFIX}/lib/ffmpeg${FFMPEG_SUFFIX}" \ - --shlibdir="${PREFIX}/lib/ffmpeg${FFMPEG_SUFFIX}" \ - --datadir="${DATADIR}" \ - --build-suffix="${FFMPEG_SUFFIX}" \ - --enable-shared \ - --enable-gpl \ - --enable-postproc \ - --enable-avfilter \ - --enable-pthreads \ - --enable-runtime-cpudetect \ - --cc="${CC}" \ - --extra-cflags="${FFMPEG_CFLAGS} -I${LOCALBASE}/include" \ - --extra-ldflags="-L${LOCALBASE}/lib ${FFMPEG_LDFLAGS}" \ - --extra-libs="-lpthread" -SHLIB_VER= 1 -PLIST_SUB+= SHLIB_VER=${SHLIB_VER} - DOC_FILES= CREDITS INSTALL LICENSE MAINTAINERS README RELEASE # under doc subdirectory DOC_DOCFILES= APIchanges RELEASE_NOTES TODO *.txt *.html -.if ${PORT_OPTIONS:MDEBUG} -CONFIGURE_ARGS+= --disable-stripping -.else -CONFIGURE_ARGS+= --disable-debug -.endif - .if ${PORT_OPTIONS:MFFSERVER} USE_RC_SUBR= ffserver${FFMPEG_SUFFIX} PROGS+= ffserver @@ -172,14 +211,6 @@ CONFIGURE_ARGS+= --enable-libaacplus CONFIGURE_ARGS+= --disable-libaacplus .endif -#alsa -.if ${PORT_OPTIONS:MALSA} -LIB_DEPENDS+= libasound.so:${PORTSDIR}/audio/alsa-lib -.else -CONFIGURE_ARGS+= --disable-indev=alsa \ - --disable-outdev=alsa -.endif - # Opencore AMR NB .if ${PORT_OPTIONS:MAMR_NB} FFMPEG_LICENSE_GPL3= yes @@ -198,22 +229,6 @@ CONFIGURE_ARGS+= --enable-libopencore-am CONFIGURE_ARGS+= --disable-libopencore-amrwb .endif -# celt -.if ${PORT_OPTIONS:MCELT} -LIB_DEPENDS+= libcelt0.so:${PORTSDIR}/audio/celt -CONFIGURE_ARGS+= --enable-libcelt -.else -CONFIGURE_ARGS+= --disable-libcelt -.endif - -# dirac -.if ${PORT_OPTIONS:MDIRAC} -LIB_DEPENDS+= libdirac_encoder.so:${PORTSDIR}/multimedia/dirac -CONFIGURE_ARGS+= --enable-libdirac -.else -CONFIGURE_ARGS+= --disable-libdirac -.endif - # faac .if ${PORT_OPTIONS:MFAAC} FFMPEG_NONFREE= yes @@ -223,62 +238,6 @@ CONFIGURE_ARGS+= --enable-libfaac CONFIGURE_ARGS+= --disable-libfaac .endif -# ffserver -.if ${PORT_OPTIONS:MFFSERVER} -PLIST_SUB+= FFSERVER="" -.else -PLIST_SUB+= FFSERVER="@comment " -CONFIGURE_ARGS+= --disable-ffserver -.endif - -# freetype -.if ${PORT_OPTIONS:MFREETYPE} -LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 -CONFIGURE_ARGS+= --enable-libfreetype -.else -CONFIGURE_ARGS+= --disable-libfreetype -.endif - -# frei0r -.if ${PORT_OPTIONS:MFREI0R} -BUILD_DEPENDS+= ${LOCALBASE}/include/frei0r.h:${PORTSDIR}/graphics/frei0r -CONFIGURE_ARGS+= --enable-frei0r -.else -CONFIGURE_ARGS+= --disable-frei0r -.endif - -# gsm -.if ${PORT_OPTIONS:MGSM} -LIB_DEPENDS+= libgsm.so:${PORTSDIR}/audio/gsm -CONFIGURE_ARGS+= --enable-libgsm -.else -CONFIGURE_ARGS+= --disable-libgsm -.endif - -# mp3 -.if ${PORT_OPTIONS:MLAME} -LIB_DEPENDS+= libmp3lame.so:${PORTSDIR}/audio/lame -CONFIGURE_ARGS+= --enable-libmp3lame -.else -CONFIGURE_ARGS+= --disable-libmp3lame -.endif - -# opencv -.if ${PORT_OPTIONS:MOPENCV} -LIB_DEPENDS+= libopencv_imgproc.so:${PORTSDIR}/graphics/opencv-core -CONFIGURE_ARGS+= --enable-libopencv -.else -CONFIGURE_ARGS+= --disable-libopencv -.endif - -# openjpeg -.if ${PORT_OPTIONS:MOPENJPEG} -LIB_DEPENDS+= libopenjpeg.so:${PORTSDIR}/graphics/openjpeg15 -CONFIGURE_ARGS+= --enable-libopenjpeg -.else -CONFIGURE_ARGS+= --disable-libopenjpeg -.endif - # rtmp .if ${PORT_OPTIONS:MRTMP} LIB_DEPENDS+= librtmp.so:${PORTSDIR}/multimedia/librtmp @@ -291,14 +250,6 @@ FFMPEG_LDFLAGS+= -L${OPENSSLLIB} CONFIGURE_ARGS+= --disable-librtmp .endif -# schroedinger -.if ${PORT_OPTIONS:MSCHROEDINGER} -LIB_DEPENDS+= libschroedinger-1.0.so:${PORTSDIR}/multimedia/schroedinger -CONFIGURE_ARGS+= --enable-libschroedinger -.else -CONFIGURE_ARGS+= --disable-libschroedinger -.endif - # sdl .if ${PORT_OPTIONS:MSDL} USE_SDL+= sdl @@ -308,22 +259,6 @@ PROGS+= ffplay CONFIGURE_ARGS+= --disable-ffplay .endif -# speex -.if ${PORT_OPTIONS:MSPEEX} -LIB_DEPENDS+= libspeex.so:${PORTSDIR}/audio/speex -CONFIGURE_ARGS+= --enable-libspeex -.else -CONFIGURE_ARGS+= --disable-libspeex -.endif - -# theora -.if ${PORT_OPTIONS:MTHEORA} -LIB_DEPENDS+= libtheora.so:${PORTSDIR}/multimedia/libtheora -CONFIGURE_ARGS+= --enable-libtheora -.else -CONFIGURE_ARGS+= --disable-libtheora -.endif - # vaapi .if ${PORT_OPTIONS:MVAAPI} FFMPEG_LICENSE_GPL3= yes @@ -333,14 +268,6 @@ CONFIGURE_ARGS+= --enable-vaapi CONFIGURE_ARGS+= --disable-vaapi .endif -# vdpau -.if ${PORT_OPTIONS:MVDPAU} -BUILD_DEPENDS+= ${LOCALBASE}/include/vdpau/vdpau.h:${PORTSDIR}/multimedia/libvdpau -CONFIGURE_ARGS+= --enable-vdpau -.else -CONFIGURE_ARGS+= --disable-vdpau -.endif - # vo-aacenc .if ${PORT_OPTIONS:MVO_AACENC} FFMPEG_LICENSE_GPL3= yes @@ -368,30 +295,6 @@ FFMPEG_CFLAGS+= -I${LOCALBASE}/include/ CONFIGURE_ARGS+= --disable-libvorbis .endif -# vp8 -.if ${PORT_OPTIONS:MVPX} -LIB_DEPENDS+= libvpx.so:${PORTSDIR}/multimedia/libvpx -CONFIGURE_ARGS+= --enable-libvpx -.else -CONFIGURE_ARGS+= --disable-libvpx -.endif - -# x264 -.if ${PORT_OPTIONS:MX264} -LIB_DEPENDS+= libx264.so:${PORTSDIR}/multimedia/libx264 -CONFIGURE_ARGS+= --enable-libx264 -.else -CONFIGURE_ARGS+= --disable-libx264 -.endif - -# xvid -.if ${PORT_OPTIONS:MXVID} -LIB_DEPENDS+= libxvidcore.so:${PORTSDIR}/multimedia/xvid -CONFIGURE_ARGS+= --enable-libxvid -.else -CONFIGURE_ARGS+= --disable-libxvid -.endif - # License knobs .if defined(FFMPEG_NONFREE) RESTRICTED= linking to libfaac or libaacplus restricts redistribution Modified: branches/2015Q3/multimedia/ffmpeg0/distinfo ============================================================================== --- branches/2015Q3/multimedia/ffmpeg0/distinfo Tue Aug 25 23:08:51 2015 (r395325) +++ branches/2015Q3/multimedia/ffmpeg0/distinfo Tue Aug 25 23:58:18 2015 (r395326) @@ -1,2 +1,2 @@ -SHA256 (ffmpeg-0.7.16.tar.bz2) = 118de39c5aed3c3f5696bde69d6a5c4524f2d5d8ec81bc3a7ffee080b82d3ea5 -SIZE (ffmpeg-0.7.16.tar.bz2) = 4529370 +SHA256 (ffmpeg-0.7.17.tar.bz2) = 5ec57caa1bff7a528b8e58643dd550cdc69156f7b44c31a10920f1be68e2036a +SIZE (ffmpeg-0.7.17.tar.bz2) = 4529540 From owner-svn-ports-branches@freebsd.org Wed Aug 26 02:47:10 2015 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 ECE9499AB24; Wed, 26 Aug 2015 02:47:10 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 DD677C16; Wed, 26 Aug 2015 02:47:10 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7Q2lAai000120; Wed, 26 Aug 2015 02:47:10 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7Q2lAQr000119; Wed, 26 Aug 2015 02:47:10 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508260247.t7Q2lAQr000119@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 26 Aug 2015 02:47:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395341 - branches/2015Q3/dns/ldapdns 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.20 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, 26 Aug 2015 02:47:11 -0000 Author: amdmi3 Date: Wed Aug 26 02:47:10 2015 New Revision: 395341 URL: https://svnweb.freebsd.org/changeset/ports/395341 Log: MFH: r395335 - Add LICENSE_FILE - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/dns/ldapdns/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/dns/ldapdns/Makefile ============================================================================== --- branches/2015Q3/dns/ldapdns/Makefile Wed Aug 26 02:45:51 2015 (r395340) +++ branches/2015Q3/dns/ldapdns/Makefile Wed Aug 26 02:47:10 2015 (r395341) @@ -3,7 +3,7 @@ PORTNAME= ldapdns PORTVERSION= 2.07 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= dns MASTER_SITES= http://bsdforge.com/projects/source/dns/ldapdns/ @@ -11,6 +11,7 @@ MAINTAINER= portmaster@bsdforge.com COMMENT= LDAP-backed DNS server LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= setuidgid:${PORTSDIR}/sysutils/daemontools \ tcpserver:${PORTSDIR}/sysutils/ucspi-tcp @@ -23,7 +24,8 @@ CONFIGURE_ARGS= --prefix=${PREFIX} CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USE_CSTD= gnu89 -USES= tar:xz +USES= shebangfix tar:xz +SHEBANG_FILES= admin/* ALL_TARGET= default From owner-svn-ports-branches@freebsd.org Thu Aug 27 12:18:55 2015 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 86F069C4F4B; Thu, 27 Aug 2015 12:18:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 778D282A; Thu, 27 Aug 2015 12:18:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7RCItFU028930; Thu, 27 Aug 2015 12:18:55 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7RCItP2028929; Thu, 27 Aug 2015 12:18:55 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508271218.t7RCItP2028929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 27 Aug 2015 12:18:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395416 - branches/2015Q3/sysutils/cfengine36 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.20 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, 27 Aug 2015 12:18:55 -0000 Author: amdmi3 Date: Thu Aug 27 12:18:54 2015 New Revision: 395416 URL: https://svnweb.freebsd.org/changeset/ports/395416 Log: MFH: r395415 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/sysutils/cfengine36/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/sysutils/cfengine36/Makefile ============================================================================== --- branches/2015Q3/sysutils/cfengine36/Makefile Thu Aug 27 12:17:16 2015 (r395415) +++ branches/2015Q3/sysutils/cfengine36/Makefile Thu Aug 27 12:18:54 2015 (r395416) @@ -3,7 +3,7 @@ PORTNAME= cfengine PORTVERSION= 3.6.5 -PORTEPOCH= 1 +PORTEPOCH= 2 CATEGORIES= sysutils MASTER_SITES= https://s3.amazonaws.com/cfengine.package-repos/tarballs/ @@ -30,7 +30,8 @@ MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes USE_OPENSSL= yes GNU_CONFIGURE= yes -USES= autoreconf cpe gmake libtool +USES= autoreconf cpe gmake libtool shebangfix +SHEBANG_FILES= examples/remake_outputs.pl CFLAGS+= -Wno-return-type CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-branches@freebsd.org Thu Aug 27 12:56:47 2015 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 F170F9C40B1; Thu, 27 Aug 2015 12:56:47 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 E23C4D4; Thu, 27 Aug 2015 12:56:47 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7RCulWV045411; Thu, 27 Aug 2015 12:56:47 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7RCulwn045410; Thu, 27 Aug 2015 12:56:47 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508271256.t7RCulwn045410@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 27 Aug 2015 12:56:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395420 - branches/2015Q3/net/yate 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.20 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, 27 Aug 2015 12:56:48 -0000 Author: amdmi3 Date: Thu Aug 27 12:56:47 2015 New Revision: 395420 URL: https://svnweb.freebsd.org/changeset/ports/395420 Log: MFH: r395419 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/net/yate/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/net/yate/Makefile ============================================================================== --- branches/2015Q3/net/yate/Makefile Thu Aug 27 12:49:22 2015 (r395419) +++ branches/2015Q3/net/yate/Makefile Thu Aug 27 12:56:47 2015 (r395420) @@ -3,7 +3,7 @@ PORTNAME= yate DISTVERSION= 5.4.0p1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net MASTER_SITES= http://yate.null.ro/tarballs/yate5/ DISTNAME= ${PORTNAME}-5.4.0-1 @@ -20,7 +20,13 @@ LIB_DEPENDS= libasound.so:${PORTSDIR}/au ONLY_FOR_ARCHS= i386 amd64 sparc64 armv6 USE_AUTOTOOLS= autoconf -USES= bison gmake +USES= bison gmake shebangfix +SHEBANG_FILES= share/scripts/banbrutes.php \ + share/scripts/leavemail.php \ + share/scripts/queue_in.php \ + share/scripts/queue_out.php \ + share/scripts/route.php \ + share/scripts/voicemail.php USE_LDCONFIG= yes WANT_GNOME= yes From owner-svn-ports-branches@freebsd.org Fri Aug 28 04:24:13 2015 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 1094E9C209A; Fri, 28 Aug 2015 04:24:13 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 011CEC6D; Fri, 28 Aug 2015 04:24:13 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7S4OC7a029630; Fri, 28 Aug 2015 04:24:12 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7S4OCF0029627; Fri, 28 Aug 2015 04:24:12 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201508280424.t7S4OCF0029627@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Fri, 28 Aug 2015 04:24:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395451 - branches/2015Q3/www/speedtest-mini 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.20 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, 28 Aug 2015 04:24:13 -0000 Author: delphij Date: Fri Aug 28 04:24:11 2015 New Revision: 395451 URL: https://svnweb.freebsd.org/changeset/ports/395451 Log: MFH: r394408 Update to version 2.1.8.20150727 PR: 202157 Submitted by: Koichiro IWAO (maintainer) Approved by: ports-secteam Modified: branches/2015Q3/www/speedtest-mini/Makefile branches/2015Q3/www/speedtest-mini/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/speedtest-mini/Makefile ============================================================================== --- branches/2015Q3/www/speedtest-mini/Makefile Fri Aug 28 03:36:32 2015 (r395450) +++ branches/2015Q3/www/speedtest-mini/Makefile Fri Aug 28 04:24:11 2015 (r395451) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= speedtest-mini -PORTVERSION= 2.1.8.20150114 +PORTVERSION= 2.1.8.20150727 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= http://c.speedtest.net/mini/ Modified: branches/2015Q3/www/speedtest-mini/distinfo ============================================================================== --- branches/2015Q3/www/speedtest-mini/distinfo Fri Aug 28 03:36:32 2015 (r395450) +++ branches/2015Q3/www/speedtest-mini/distinfo Fri Aug 28 04:24:11 2015 (r395451) @@ -1,2 +1,2 @@ -SHA256 (mini.zip) = b774f5e200a757f2c9fb2c2c0f4140e351ebda7e798bd24af2a692f57e3205fd -SIZE (mini.zip) = 99006538 +SHA256 (mini.zip) = 7d2ec09cf8ff0216e492d9b5235005c7ff0c937c27074d125318bfa62adec4e4 +SIZE (mini.zip) = 99006468 From owner-svn-ports-branches@freebsd.org Fri Aug 28 13:30:31 2015 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 3E4049C34B6; Fri, 28 Aug 2015 13:30:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 2C31D19FE; Fri, 28 Aug 2015 13:30:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7SDUVUI085091; Fri, 28 Aug 2015 13:30:31 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7SDUVll085090; Fri, 28 Aug 2015 13:30:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508281330.t7SDUVll085090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 28 Aug 2015 13:30:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395478 - branches/2015Q3/devel/rubygem-ruby2ruby 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.20 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, 28 Aug 2015 13:30:31 -0000 Author: amdmi3 Date: Fri Aug 28 13:30:30 2015 New Revision: 395478 URL: https://svnweb.freebsd.org/changeset/ports/395478 Log: MFH: r395477 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/devel/rubygem-ruby2ruby/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/devel/rubygem-ruby2ruby/Makefile ============================================================================== --- branches/2015Q3/devel/rubygem-ruby2ruby/Makefile Fri Aug 28 13:28:11 2015 (r395477) +++ branches/2015Q3/devel/rubygem-ruby2ruby/Makefile Fri Aug 28 13:30:30 2015 (r395478) @@ -3,6 +3,7 @@ PORTNAME= ruby2ruby PORTVERSION= 2.2.0 +PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -17,6 +18,8 @@ RUN_DEPENDS= rubygem-ruby_parser>=3.1:${ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes +USES= shebangfix +SHEBANG_FILES= bin/r2r_show PLIST_FILES= bin/r2r_show From owner-svn-ports-branches@freebsd.org Fri Aug 28 13:31:50 2015 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 F32139C366D; Fri, 28 Aug 2015 13:31:50 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 E38101D93; Fri, 28 Aug 2015 13:31:50 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7SDVoZS088282; Fri, 28 Aug 2015 13:31:50 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7SDVosW088281; Fri, 28 Aug 2015 13:31:50 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508281331.t7SDVosW088281@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 28 Aug 2015 13:31:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395480 - branches/2015Q3/security/rubygem-origami 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.20 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, 28 Aug 2015 13:31:51 -0000 Author: amdmi3 Date: Fri Aug 28 13:31:50 2015 New Revision: 395480 URL: https://svnweb.freebsd.org/changeset/ports/395480 Log: MFH: r395479 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/security/rubygem-origami/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/security/rubygem-origami/Makefile ============================================================================== --- branches/2015Q3/security/rubygem-origami/Makefile Fri Aug 28 13:30:47 2015 (r395479) +++ branches/2015Q3/security/rubygem-origami/Makefile Fri Aug 28 13:31:50 2015 (r395480) @@ -2,6 +2,7 @@ PORTNAME= origami PORTVERSION= 1.2.7 +PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG @@ -13,5 +14,15 @@ LICENSE= LGPL3 USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST=yes +USES= shebangfix +SHEBANG_FILES= samples/actions/launch/calc.rb \ + samples/actions/launch/winparams.rb \ + samples/actions/named/named.rb \ + samples/actions/samba/smbrelay.rb \ + samples/actions/triggerevents/trigger.rb \ + samples/actions/webbug/webbug-browser.rb \ + samples/actions/webbug/webbug-js.rb \ + samples/actions/webbug/webbug-reader.rb \ + samples/digsig/signed.rb .include From owner-svn-ports-branches@freebsd.org Fri Aug 28 14:51:28 2015 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 0AAEA9C58E2; Fri, 28 Aug 2015 14:51:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 EC2A41DBF; Fri, 28 Aug 2015 14:51:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7SEpRjA023441; Fri, 28 Aug 2015 14:51:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7SEpRGT023439; Fri, 28 Aug 2015 14:51:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508281451.t7SEpRGT023439@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 28 Aug 2015 14:51:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395489 - branches/2015Q3/databases/gnatsweb4 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.20 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, 28 Aug 2015 14:51:28 -0000 Author: amdmi3 Date: Fri Aug 28 14:51:26 2015 New Revision: 395489 URL: https://svnweb.freebsd.org/changeset/ports/395489 Log: MFH: r395488 - Switch to @sample; also fixes config removal on deinstall due to incorrect @unexec command Approved by: ports-secteam blanket Modified: branches/2015Q3/databases/gnatsweb4/Makefile branches/2015Q3/databases/gnatsweb4/pkg-plist Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/databases/gnatsweb4/Makefile ============================================================================== --- branches/2015Q3/databases/gnatsweb4/Makefile Fri Aug 28 14:35:25 2015 (r395488) +++ branches/2015Q3/databases/gnatsweb4/Makefile Fri Aug 28 14:51:26 2015 (r395489) @@ -3,7 +3,7 @@ PORTNAME= gnatsweb PORTVERSION= 4.00 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= databases devel www MASTER_SITES= GNU Modified: branches/2015Q3/databases/gnatsweb4/pkg-plist ============================================================================== --- branches/2015Q3/databases/gnatsweb4/pkg-plist Fri Aug 28 14:35:25 2015 (r395488) +++ branches/2015Q3/databases/gnatsweb4/pkg-plist Fri Aug 28 14:51:26 2015 (r395489) @@ -1,6 +1,4 @@ -@unexec if cmp -s %D/%%ETCDIR%%/gnatsweb-site.pl.sample %D/%%ETCDIR%%/gnatsweb-site.pl.sample; then rm -f %D/%%ETCDIR%%/gnatsweb-site.pl; fi -%%ETCDIR%%/gnatsweb-site.pl.sample -@exec [ -f %B/gnatsweb-site.pl ] || cp %B/%f %B/gnatsweb-site.pl +@sample %%ETCDIR%%/gnatsweb-site.pl.sample %%CGI_DIR%%/gnatsweb.pl %%CGI_DIR%%/gnatsweb-site.pl %%CGI_DIR%%/gnatsweb.html From owner-svn-ports-branches@freebsd.org Fri Aug 28 15:26:53 2015 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 A93E19C4A58; Fri, 28 Aug 2015 15:26:53 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 96B651B9D; Fri, 28 Aug 2015 15:26:53 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7SFQre9036895; Fri, 28 Aug 2015 15:26:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7SFQrJK036894; Fri, 28 Aug 2015 15:26:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508281526.t7SFQrJK036894@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 28 Aug 2015 15:26:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395497 - branches/2015Q3/lang/harbour 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.20 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, 28 Aug 2015 15:26:53 -0000 Author: amdmi3 Date: Fri Aug 28 15:26:52 2015 New Revision: 395497 URL: https://svnweb.freebsd.org/changeset/ports/395497 Log: MFH: r395495 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/lang/harbour/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/lang/harbour/Makefile ============================================================================== --- branches/2015Q3/lang/harbour/Makefile Fri Aug 28 15:22:34 2015 (r395496) +++ branches/2015Q3/lang/harbour/Makefile Fri Aug 28 15:26:52 2015 (r395497) @@ -3,7 +3,7 @@ PORTNAME= harbour PORTVERSION= 3.0.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}-project/source/${PORTVERSION} @@ -22,7 +22,11 @@ NOT_FOR_ARCHS_REASON= does not compile o PORTDOCS= *.txt *.hbd NEWS INSTALL TODO COPYING ChangeLog -USES= bison gmake +USES= bison gmake shebangfix +SHEBANG_FILES= bin/hb3rdpat.hbs +SHEBANG_LANG= hbrun +hbrun_OLD_CMD= /usr/bin/hbrun +hbrun_CMD= ${PREFIX}/bin/hbrun USE_OPENSSL= yes USE_LDCONFIG= ${LOCALBASE}/lib/harbour From owner-svn-ports-branches@freebsd.org Fri Aug 28 16:21:28 2015 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 A01C89C5657; Fri, 28 Aug 2015 16:21:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 8AED214D6; Fri, 28 Aug 2015 16:21:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7SGLSVO060643; Fri, 28 Aug 2015 16:21:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7SGLPgq060628; Fri, 28 Aug 2015 16:21:25 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508281621.t7SGLPgq060628@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 28 Aug 2015 16:21:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395508 - in branches/2015Q3/www: firefox firefox-esr firefox-esr-i18n firefox-i18n libxul 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.20 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, 28 Aug 2015 16:21:28 -0000 Author: jbeich Date: Fri Aug 28 16:21:24 2015 New Revision: 395508 URL: https://svnweb.freebsd.org/changeset/ports/395508 Log: MFH: r395470 www/firefox{,-esr}: update to 40.0.3/38.2.1 Security: 237a201c-888b-487f-84d3-7d92266381d6 Approved by: ports-secteam (feld) Modified: branches/2015Q3/www/firefox-esr-i18n/Makefile branches/2015Q3/www/firefox-esr-i18n/distinfo branches/2015Q3/www/firefox-esr/Makefile branches/2015Q3/www/firefox-esr/distinfo branches/2015Q3/www/firefox-i18n/Makefile branches/2015Q3/www/firefox-i18n/distinfo branches/2015Q3/www/firefox/Makefile branches/2015Q3/www/firefox/distinfo branches/2015Q3/www/libxul/Makefile branches/2015Q3/www/libxul/distinfo branches/2015Q3/www/linux-firefox/Makefile branches/2015Q3/www/linux-firefox/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/firefox-esr-i18n/Makefile ============================================================================== --- branches/2015Q3/www/firefox-esr-i18n/Makefile Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/firefox-esr-i18n/Makefile Fri Aug 28 16:21:24 2015 (r395508) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 38.2.0 +PORTVERSION= 38.2.1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build2/linux-i686/xpi Modified: branches/2015Q3/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2015Q3/www/firefox-esr-i18n/distinfo Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/firefox-esr-i18n/distinfo Fri Aug 28 16:21:24 2015 (r395508) @@ -1,176 +1,176 @@ -SHA256 (xpi/firefox-38.2.0/ach.xpi) = 80f2d65db6ba7c1079e36d4540c5364dadf50ee5cc00cdd1f4fe505915b12ef9 -SIZE (xpi/firefox-38.2.0/ach.xpi) = 477970 -SHA256 (xpi/firefox-38.2.0/af.xpi) = 4d822352bd0dbaa73dd547602e20ccdccb62b3ef9bdeccc03f172511e18b41ed -SIZE (xpi/firefox-38.2.0/af.xpi) = 483326 -SHA256 (xpi/firefox-38.2.0/an.xpi) = c58525c2b8bca44c5242e15a3597d3c5af89cbd227a2f37dec0cc64b777eaa2c -SIZE (xpi/firefox-38.2.0/an.xpi) = 461423 -SHA256 (xpi/firefox-38.2.0/ar.xpi) = 5e5e573f9cf9bb050ac9e94311887b83684c9933c8ba36021010b093b69c667b -SIZE (xpi/firefox-38.2.0/ar.xpi) = 516496 -SHA256 (xpi/firefox-38.2.0/as.xpi) = 690987405cf31ba44a2bc52a040f79e07bdca5e1a68bccb65a94f608dd32a168 -SIZE (xpi/firefox-38.2.0/as.xpi) = 509574 -SHA256 (xpi/firefox-38.2.0/ast.xpi) = 81ad42dce9d9525aa2d4339e928d5675d4f069b46deffed0c1afa7c29f7b4586 -SIZE (xpi/firefox-38.2.0/ast.xpi) = 397203 -SHA256 (xpi/firefox-38.2.0/az.xpi) = bb1b9b3e7ee14cf447780807ecda9789d696e83a6ceaa83a3f455025462976b0 -SIZE (xpi/firefox-38.2.0/az.xpi) = 489154 -SHA256 (xpi/firefox-38.2.0/be.xpi) = f025e13585be2126f1f805f431a2aab6f92064970a5d3ecf8e458fb35fcf1b04 -SIZE (xpi/firefox-38.2.0/be.xpi) = 441058 -SHA256 (xpi/firefox-38.2.0/bg.xpi) = d566656889a8922a88bab1a06fcf6e49f1131cc7ebc53aa19ea9b177314a7003 -SIZE (xpi/firefox-38.2.0/bg.xpi) = 487819 -SHA256 (xpi/firefox-38.2.0/bn-BD.xpi) = 1d8a734901cfc8f4a3372ae7586e6615a044757faaa43d0102d687465a7d8646 -SIZE (xpi/firefox-38.2.0/bn-BD.xpi) = 528690 -SHA256 (xpi/firefox-38.2.0/bn-IN.xpi) = 7a6e05c0eab890318718b014402168f30e2593a63cbd639b1dec9bbf88e74b30 -SIZE (xpi/firefox-38.2.0/bn-IN.xpi) = 527927 -SHA256 (xpi/firefox-38.2.0/br.xpi) = e5bc879e345784c9b4d9228a3e8900b4ffa4e643f01546db80cb4d9e11049a34 -SIZE (xpi/firefox-38.2.0/br.xpi) = 441961 -SHA256 (xpi/firefox-38.2.0/bs.xpi) = 0bf5d0e162a33a5ef6ac3059a5b713d88fff367f7384ad56a594ec07aafce358 -SIZE (xpi/firefox-38.2.0/bs.xpi) = 485305 -SHA256 (xpi/firefox-38.2.0/ca.xpi) = d2aaebad9dd838e9cb6aa4d5fcc45cfb2105cd655671455fd5a360ca43302842 -SIZE (xpi/firefox-38.2.0/ca.xpi) = 458091 -SHA256 (xpi/firefox-38.2.0/cs.xpi) = d3f1fe4b368d1f30cf93f6dba98af57491f2f23df1754edfc896aa7aef7bab8d -SIZE (xpi/firefox-38.2.0/cs.xpi) = 446725 -SHA256 (xpi/firefox-38.2.0/cy.xpi) = 7ab25f18ca0e267fcbc30503f47162319a5c1c08e1bc03518bab04c2c8fe59c2 -SIZE (xpi/firefox-38.2.0/cy.xpi) = 444385 -SHA256 (xpi/firefox-38.2.0/da.xpi) = 23147921fc13063f39818bc2d563d4b07b0a5ab466000d9405fd9b9249e67663 -SIZE (xpi/firefox-38.2.0/da.xpi) = 450762 -SHA256 (xpi/firefox-38.2.0/de.xpi) = 6d4cdaa88f41cc5feaae869db51684d85b1b1d6026ba9309c0572261828f8c1b -SIZE (xpi/firefox-38.2.0/de.xpi) = 451628 -SHA256 (xpi/firefox-38.2.0/dsb.xpi) = ff71942cac9c2548caa8f12df7005b5b9f91264f5b7da7360a99a088c4528440 -SIZE (xpi/firefox-38.2.0/dsb.xpi) = 470924 -SHA256 (xpi/firefox-38.2.0/el.xpi) = 24226e706875c0f1c1b18c4f2f55fb83e5963c3e22061a2af436d92e8b66ae29 -SIZE (xpi/firefox-38.2.0/el.xpi) = 498370 -SHA256 (xpi/firefox-38.2.0/en-GB.xpi) = 2824d85c15ff1a0ee6bd69228dec418481c9a7c4565beb5b45d0428e0b6f127b -SIZE (xpi/firefox-38.2.0/en-GB.xpi) = 437846 -SHA256 (xpi/firefox-38.2.0/en-US.xpi) = 92f20a9f6190d284201b5aff848d5bc111eda558f44c17b957eb45df9e787def -SIZE (xpi/firefox-38.2.0/en-US.xpi) = 469718 -SHA256 (xpi/firefox-38.2.0/en-ZA.xpi) = 7b103f2e7472388b6fea50c602a5950404e9d297a8ede752e04e93fecce4cc1a -SIZE (xpi/firefox-38.2.0/en-ZA.xpi) = 439926 -SHA256 (xpi/firefox-38.2.0/eo.xpi) = 7c41dc63256b9ae615206cecd5bf008879443791b03269e1d4dfcbb0b6e73fb9 -SIZE (xpi/firefox-38.2.0/eo.xpi) = 488370 -SHA256 (xpi/firefox-38.2.0/es-AR.xpi) = fede8e15d08da232349fd180b17d208d556de12fcb37a98a59362773e67ceca1 -SIZE (xpi/firefox-38.2.0/es-AR.xpi) = 453983 -SHA256 (xpi/firefox-38.2.0/es-CL.xpi) = 5957a2f6db01d593b6d82149f1ecd6b129e5322f74a254ac46d07503719e61c9 -SIZE (xpi/firefox-38.2.0/es-CL.xpi) = 384680 -SHA256 (xpi/firefox-38.2.0/es-ES.xpi) = 2da47c5401a9e60c84859bd28635cac8bd03d07cfc0d25ffd2fed66819d060bb -SIZE (xpi/firefox-38.2.0/es-ES.xpi) = 374073 -SHA256 (xpi/firefox-38.2.0/es-MX.xpi) = 0d396f5f5ea77920d7273fe4dd3662b08997657c321fb7ae62c9406abd9135e1 -SIZE (xpi/firefox-38.2.0/es-MX.xpi) = 457050 -SHA256 (xpi/firefox-38.2.0/et.xpi) = fac02f932ee8c93c660daf2b36ca6a8246724dfa5ac040809e6d88eb219b7a03 -SIZE (xpi/firefox-38.2.0/et.xpi) = 443228 -SHA256 (xpi/firefox-38.2.0/eu.xpi) = 492ac55eceaff28188516c154e738d4189615135e4434cde7d4108c6c92200a2 -SIZE (xpi/firefox-38.2.0/eu.xpi) = 466555 -SHA256 (xpi/firefox-38.2.0/fa.xpi) = 125f97265b11efa49886c6ca9611b6cdedfbaf40ac59fa7ba2f5d86308dbe4e9 -SIZE (xpi/firefox-38.2.0/fa.xpi) = 518281 -SHA256 (xpi/firefox-38.2.0/ff.xpi) = 36e58433af2939b69d461a4d21f8576c2773ab926f95e9742fcfa28c4b8155a9 -SIZE (xpi/firefox-38.2.0/ff.xpi) = 454587 -SHA256 (xpi/firefox-38.2.0/fi.xpi) = e56a3252d800bdc5ad2c18badf8a1a6743e7aa4fd29f459a339ef05a26614272 -SIZE (xpi/firefox-38.2.0/fi.xpi) = 444852 -SHA256 (xpi/firefox-38.2.0/fr.xpi) = 959138dcce85fd35da81fc9a1ddc28bfb06435f9a71fa1f2a2cf0b44978cdf70 -SIZE (xpi/firefox-38.2.0/fr.xpi) = 461402 -SHA256 (xpi/firefox-38.2.0/fy-NL.xpi) = 3f86674161098d9446ea0736969c0d030eca100688880921daa8e615a9410e38 -SIZE (xpi/firefox-38.2.0/fy-NL.xpi) = 455537 -SHA256 (xpi/firefox-38.2.0/ga-IE.xpi) = bfb2eeb0c787ff5ca2afec939f4da875eb854bc5baafcd61021b2d0a4db4456b -SIZE (xpi/firefox-38.2.0/ga-IE.xpi) = 469624 -SHA256 (xpi/firefox-38.2.0/gd.xpi) = 8acb2f0a4416f8ef182abcf6450e9169852524c0fbf37dbf15cb5156273eec8c -SIZE (xpi/firefox-38.2.0/gd.xpi) = 454616 -SHA256 (xpi/firefox-38.2.0/gl.xpi) = 53ecc5c4d83346d327cfea3ed8554b468f9ecb17daba0ee655268a3d1a23d276 -SIZE (xpi/firefox-38.2.0/gl.xpi) = 448924 -SHA256 (xpi/firefox-38.2.0/gu-IN.xpi) = 33799f5f28c4b6fd80f5ecb5b4ac1ff9ebe34461e50c59151d029053f1f73d53 -SIZE (xpi/firefox-38.2.0/gu-IN.xpi) = 477977 -SHA256 (xpi/firefox-38.2.0/he.xpi) = 98f05fde9c1341b7d32e196660884fa24c266575374aa8fb26859f5fa75b7b46 -SIZE (xpi/firefox-38.2.0/he.xpi) = 486785 -SHA256 (xpi/firefox-38.2.0/hi-IN.xpi) = 3a9480cd2345f00507ae719c33185acf5e9f66a9c996607dfac0ec95d0d32d89 -SIZE (xpi/firefox-38.2.0/hi-IN.xpi) = 508167 -SHA256 (xpi/firefox-38.2.0/hr.xpi) = 125abeb8f4a881fd68bb8f8bd31d7b89c98d35f3d04e18ade625a74e45723466 -SIZE (xpi/firefox-38.2.0/hr.xpi) = 478271 -SHA256 (xpi/firefox-38.2.0/hsb.xpi) = a88449a67fdb85b21e031b894fc060e328c42a3ac1a39d13fff8446cc4df00d1 -SIZE (xpi/firefox-38.2.0/hsb.xpi) = 468720 -SHA256 (xpi/firefox-38.2.0/hu.xpi) = d37fc8e422a2421829665a13c7b39bc18af76afc22639395fe346a3540a360e1 -SIZE (xpi/firefox-38.2.0/hu.xpi) = 453554 -SHA256 (xpi/firefox-38.2.0/hy-AM.xpi) = ebdf5d14d7b97eddafe6fedc3b7b58b4823e2ba7e9f019facc65c469a1c0538b -SIZE (xpi/firefox-38.2.0/hy-AM.xpi) = 534264 -SHA256 (xpi/firefox-38.2.0/id.xpi) = 861b0ee5cd7130606f8db16d16855a932f62d18ea279aeb425d13043b88afecf -SIZE (xpi/firefox-38.2.0/id.xpi) = 431488 -SHA256 (xpi/firefox-38.2.0/is.xpi) = 17f205a9d775e3a97ea3d7b63ee931f4cf5bb24089978fc979dc4d1b5d057311 -SIZE (xpi/firefox-38.2.0/is.xpi) = 485129 -SHA256 (xpi/firefox-38.2.0/it.xpi) = 1da955c3cb53ee2fdbf03454840f2588ec3731b88d5ea31e450c4473eb7c0c8b -SIZE (xpi/firefox-38.2.0/it.xpi) = 368409 -SHA256 (xpi/firefox-38.2.0/ja.xpi) = 1b51688caa1e55b2117fe510d31485a3219c3f4446e3475c87699abd460e84b0 -SIZE (xpi/firefox-38.2.0/ja.xpi) = 479113 -SHA256 (xpi/firefox-38.2.0/kk.xpi) = 9a445773926e5abf3df7ed1e4ace90e52c17ffcfc65e76bc81b14ce3f9a47910 -SIZE (xpi/firefox-38.2.0/kk.xpi) = 503568 -SHA256 (xpi/firefox-38.2.0/km.xpi) = fbff5ab8dae477e73725de8f1ee346287aede8c00b6891dbb11d4500b7e6620e -SIZE (xpi/firefox-38.2.0/km.xpi) = 565673 -SHA256 (xpi/firefox-38.2.0/kn.xpi) = d8756e4efe30cf21178d51ea7186d0bac4980a10fbfb29534d0e3988859d2997 -SIZE (xpi/firefox-38.2.0/kn.xpi) = 533464 -SHA256 (xpi/firefox-38.2.0/ko.xpi) = 19f3413cf7c9e0deaa025d254c8e787f2e2d3dbe0c800841d69f87dd02249b30 -SIZE (xpi/firefox-38.2.0/ko.xpi) = 460854 -SHA256 (xpi/firefox-38.2.0/lij.xpi) = 769ad5652416a94c038f1df689532c35cf00804e7971f7d0bfa7157ebc24e95d -SIZE (xpi/firefox-38.2.0/lij.xpi) = 444239 -SHA256 (xpi/firefox-38.2.0/lt.xpi) = 692e7fb76eba7b2926300e2ae12dd1215c4010722cd95ece2893556ce1729ff5 -SIZE (xpi/firefox-38.2.0/lt.xpi) = 486452 -SHA256 (xpi/firefox-38.2.0/lv.xpi) = 0e7a1903ee292b3bacf00a876bce9618a869a708820bb04cc4487536b7a09590 -SIZE (xpi/firefox-38.2.0/lv.xpi) = 467198 -SHA256 (xpi/firefox-38.2.0/mai.xpi) = c51b1627c24c48721cf799e9438d097d2b815e576042813a15d7631285385499 -SIZE (xpi/firefox-38.2.0/mai.xpi) = 514666 -SHA256 (xpi/firefox-38.2.0/mk.xpi) = e4be6327448665795bc83a5de98826bfbc78118d188e7687546b5b5d170a1e3a -SIZE (xpi/firefox-38.2.0/mk.xpi) = 529205 -SHA256 (xpi/firefox-38.2.0/ml.xpi) = 6aa7b005affd7cdc10d9c42454e841d94ecc94bec273755ef9754e033a3e62be -SIZE (xpi/firefox-38.2.0/ml.xpi) = 528919 -SHA256 (xpi/firefox-38.2.0/mr.xpi) = 73bb6c2101dfa7876814c68b3b02467608c72e0e8bc3517aa0fec61673069bba -SIZE (xpi/firefox-38.2.0/mr.xpi) = 505961 -SHA256 (xpi/firefox-38.2.0/ms.xpi) = f4f68fd8871ab409f9d3d0540873167e693314278a16508450a359d9cafdfdc3 -SIZE (xpi/firefox-38.2.0/ms.xpi) = 489872 -SHA256 (xpi/firefox-38.2.0/nb-NO.xpi) = 8056a9169fd52a12f8f806f1e2870a2578591df8a2c711786bee7ce84436dbfa -SIZE (xpi/firefox-38.2.0/nb-NO.xpi) = 444177 -SHA256 (xpi/firefox-38.2.0/nl.xpi) = 5dd497dbddcc664facae77de25b8b3f4e3c87a1747bc44595dd91b716ba82748 -SIZE (xpi/firefox-38.2.0/nl.xpi) = 443995 -SHA256 (xpi/firefox-38.2.0/nn-NO.xpi) = a7371d8b484cb686965b3769f0bedf6c8803bbbc05021c8b3e24d99dfe66348d -SIZE (xpi/firefox-38.2.0/nn-NO.xpi) = 438452 -SHA256 (xpi/firefox-38.2.0/or.xpi) = 79db2dab58df83d308c614469a7050d3228898fcb2edfbdb9eaf66d37d541719 -SIZE (xpi/firefox-38.2.0/or.xpi) = 527050 -SHA256 (xpi/firefox-38.2.0/pa-IN.xpi) = cbfc04c1b6dd2de9f87bca693b4de8275ab4860cc538c0d7a60fecb58b88c6dd -SIZE (xpi/firefox-38.2.0/pa-IN.xpi) = 493723 -SHA256 (xpi/firefox-38.2.0/pl.xpi) = f7f312ed6907c15004e75cfb95a0e254087932cf8203b1d0419dc1eea055a9c7 -SIZE (xpi/firefox-38.2.0/pl.xpi) = 406567 -SHA256 (xpi/firefox-38.2.0/pt-BR.xpi) = d13fcef16af096732c430b699a53b1d0d76eb3829bff5166d876ffcc94e123e7 -SIZE (xpi/firefox-38.2.0/pt-BR.xpi) = 459814 -SHA256 (xpi/firefox-38.2.0/pt-PT.xpi) = 9cd4c26a521f2e0550ea62ddc27ca751a2b3f2fdc6d55af861936abcdd6c1efd -SIZE (xpi/firefox-38.2.0/pt-PT.xpi) = 439976 -SHA256 (xpi/firefox-38.2.0/rm.xpi) = cf88953513fc4b20a5318b3d4e8f771edc7dc3ef3b3b09a8858ad1b9261c0866 -SIZE (xpi/firefox-38.2.0/rm.xpi) = 446287 -SHA256 (xpi/firefox-38.2.0/ro.xpi) = d5151574b477c6964461ae75563397ebc8f11dfb9331e2ffeb046a4bd046ea97 -SIZE (xpi/firefox-38.2.0/ro.xpi) = 494080 -SHA256 (xpi/firefox-38.2.0/ru.xpi) = 0289531702f0e2ad68984a9dd939e67dafed98eed7c1a6552d136d759ed74684 -SIZE (xpi/firefox-38.2.0/ru.xpi) = 414418 -SHA256 (xpi/firefox-38.2.0/si.xpi) = 314d1635548bbfd7f41927cf327c781d03d99b8ed1a2c8775a34ba6cd3b12a85 -SIZE (xpi/firefox-38.2.0/si.xpi) = 537394 -SHA256 (xpi/firefox-38.2.0/sk.xpi) = d40e11bda881fa9703e51065bab7204bc5dad8d4affedd4638cfe96f907ddf07 -SIZE (xpi/firefox-38.2.0/sk.xpi) = 469436 -SHA256 (xpi/firefox-38.2.0/sl.xpi) = 8ba7277af23a615970cc1384d3b54e8d88a3305da9fe03790819e7b1aeb41a15 -SIZE (xpi/firefox-38.2.0/sl.xpi) = 441594 -SHA256 (xpi/firefox-38.2.0/son.xpi) = 3709b10419d813e3255ef9022e276344ca90788c33858aec111c541b455bb79a -SIZE (xpi/firefox-38.2.0/son.xpi) = 449268 -SHA256 (xpi/firefox-38.2.0/sq.xpi) = fdc0e581d870726728aad45980c6f10d4141a0b9fa39424e51335c8751063e30 -SIZE (xpi/firefox-38.2.0/sq.xpi) = 486075 -SHA256 (xpi/firefox-38.2.0/sr.xpi) = 6007a48742b675c34bd8a331c201f79a19cb52fe7dd7907cd73e76ff9d0c090c -SIZE (xpi/firefox-38.2.0/sr.xpi) = 479420 -SHA256 (xpi/firefox-38.2.0/sv-SE.xpi) = 21158bf5a1286bc55dda4e34ef00fecf5490c55da61dfbb8de8a8f15f6c3fb95 -SIZE (xpi/firefox-38.2.0/sv-SE.xpi) = 452632 -SHA256 (xpi/firefox-38.2.0/ta.xpi) = ec13ec46f071219815b200ab46f103ebdca82308187562d57ae9ae01a9c234e8 -SIZE (xpi/firefox-38.2.0/ta.xpi) = 506606 -SHA256 (xpi/firefox-38.2.0/te.xpi) = b1ffd8fa3534f51d3ec9294288223898d8c41285c4fa400e096fc7ec1aff8b0b -SIZE (xpi/firefox-38.2.0/te.xpi) = 526253 -SHA256 (xpi/firefox-38.2.0/th.xpi) = 0e15637fcefb0e16c4722c242466d2f67b18eb0fbe79097cc29e5358cf7aa19d -SIZE (xpi/firefox-38.2.0/th.xpi) = 534271 -SHA256 (xpi/firefox-38.2.0/tr.xpi) = fae94efd727ddd145146d2df759e02e060e8302c666ea6cb2d09558bdff76abe -SIZE (xpi/firefox-38.2.0/tr.xpi) = 481076 -SHA256 (xpi/firefox-38.2.0/uk.xpi) = d9871bbdffe5f9cf5275894c05a7934a21af421c3343844fb5efa78efa06aaa8 -SIZE (xpi/firefox-38.2.0/uk.xpi) = 493314 -SHA256 (xpi/firefox-38.2.0/vi.xpi) = 9e7dc043c3aa7890255241bdd0292a01d957fcb77434ed236df07401e3f7a9b2 -SIZE (xpi/firefox-38.2.0/vi.xpi) = 467505 -SHA256 (xpi/firefox-38.2.0/xh.xpi) = d41ee639470dce1ff3a103987c16ad5dc32c3b1f468760855d9c840dfbc0a39d -SIZE (xpi/firefox-38.2.0/xh.xpi) = 450242 -SHA256 (xpi/firefox-38.2.0/zh-CN.xpi) = 6b58c8a6fd5e62933d8ec42758a6fc7dd4794b7f659855331debc876e8b80bec -SIZE (xpi/firefox-38.2.0/zh-CN.xpi) = 488277 -SHA256 (xpi/firefox-38.2.0/zh-TW.xpi) = bb22672b52104fd11c28d5609d2c039dd0b3636445b091523dfb90538cf84e94 -SIZE (xpi/firefox-38.2.0/zh-TW.xpi) = 467844 +SHA256 (xpi/firefox-38.2.1/ach.xpi) = 285a30026c108ad7775fde79bcf5e84c6f0af5bb6dce747bd8d4be308d83c3bd +SIZE (xpi/firefox-38.2.1/ach.xpi) = 477969 +SHA256 (xpi/firefox-38.2.1/af.xpi) = 2939af5389d2d480ad9b0b5fd4e13d725a07b47f1e025d7abe232e25bd6f93f3 +SIZE (xpi/firefox-38.2.1/af.xpi) = 483326 +SHA256 (xpi/firefox-38.2.1/an.xpi) = 61c2b5e3037fca2759313b6a21c6abc056e8bd9f31f9781f5c6ef1289af5cf61 +SIZE (xpi/firefox-38.2.1/an.xpi) = 461422 +SHA256 (xpi/firefox-38.2.1/ar.xpi) = 840e732a96c8478d0815888c79496d1c62dcbd6133d2304b0920f93d0f6eb3db +SIZE (xpi/firefox-38.2.1/ar.xpi) = 516495 +SHA256 (xpi/firefox-38.2.1/as.xpi) = 3aad4f54d6b17a1e50ecff8f88d43723fa7d423ef5523a01e80b2eedd4d40ca4 +SIZE (xpi/firefox-38.2.1/as.xpi) = 509574 +SHA256 (xpi/firefox-38.2.1/ast.xpi) = 9a3dad64dd09a11293936ad421d9cf54a112363497fcf2263e56fe4dc059b648 +SIZE (xpi/firefox-38.2.1/ast.xpi) = 397202 +SHA256 (xpi/firefox-38.2.1/az.xpi) = 17a2771c37d08b1635de6bfbffb125191c046c21cf159b33fb596d9cd5ebfda0 +SIZE (xpi/firefox-38.2.1/az.xpi) = 489154 +SHA256 (xpi/firefox-38.2.1/be.xpi) = fd6d9e058da409985c1f9e04b608c897e3ccf81cff733029c4c6571e7d128022 +SIZE (xpi/firefox-38.2.1/be.xpi) = 441057 +SHA256 (xpi/firefox-38.2.1/bg.xpi) = 389edc15450db4664667237ce42a7f207278777bf13fb7531ebba54a09df460d +SIZE (xpi/firefox-38.2.1/bg.xpi) = 487819 +SHA256 (xpi/firefox-38.2.1/bn-BD.xpi) = 8acb41f8dce61a494f04e2d3f43eb0a23e7f21179928b803d6f0fac42ee1b4a3 +SIZE (xpi/firefox-38.2.1/bn-BD.xpi) = 528690 +SHA256 (xpi/firefox-38.2.1/bn-IN.xpi) = bab25d7ce5747110b39b2b99685853a5931f340daa2cb88a4d53b01b0534f211 +SIZE (xpi/firefox-38.2.1/bn-IN.xpi) = 527927 +SHA256 (xpi/firefox-38.2.1/br.xpi) = a5cbd1cbacdd7d17c7f0d5d62583a0174e69e0905ffb22d0b7a4e936729862c7 +SIZE (xpi/firefox-38.2.1/br.xpi) = 441961 +SHA256 (xpi/firefox-38.2.1/bs.xpi) = 0b2752ae75b2306d5b01731cf470cc02da75b759ac7fd4b0bfbad76e85214b50 +SIZE (xpi/firefox-38.2.1/bs.xpi) = 485305 +SHA256 (xpi/firefox-38.2.1/ca.xpi) = 9a7838b932bf3c356da9af568718ab058c86076e435f5d0be4a082bbaff190bf +SIZE (xpi/firefox-38.2.1/ca.xpi) = 458091 +SHA256 (xpi/firefox-38.2.1/cs.xpi) = d8c4ba79e4725029dc4073e065c65a8ba1d97fca9e2ab53f7147184211801178 +SIZE (xpi/firefox-38.2.1/cs.xpi) = 446725 +SHA256 (xpi/firefox-38.2.1/cy.xpi) = 8916066abc92d6ddff59b248ffe79bc09e42ae2e553abee68cd96f81f7c9881f +SIZE (xpi/firefox-38.2.1/cy.xpi) = 444384 +SHA256 (xpi/firefox-38.2.1/da.xpi) = 269107b93e0f7df8b9860672ae5cddeb816bc184d8b083dbb0c12af4723da666 +SIZE (xpi/firefox-38.2.1/da.xpi) = 450762 +SHA256 (xpi/firefox-38.2.1/de.xpi) = 3875513fb280bf215f37062078f3dee9e19b49cf43db4a1722975d086700fb9e +SIZE (xpi/firefox-38.2.1/de.xpi) = 451628 +SHA256 (xpi/firefox-38.2.1/dsb.xpi) = f925101d6416e20725e7f20632d4e3c3c22131b2becfb393e7811d5dd8e849fe +SIZE (xpi/firefox-38.2.1/dsb.xpi) = 470923 +SHA256 (xpi/firefox-38.2.1/el.xpi) = b0bece2e1762b042044e676b13ab33b5d8dc6397c84974ba485e656bfa859fed +SIZE (xpi/firefox-38.2.1/el.xpi) = 498370 +SHA256 (xpi/firefox-38.2.1/en-GB.xpi) = 8f5dbb40d08afd368f74204ace917bc13e384fa305b5a588f87aabd7da741177 +SIZE (xpi/firefox-38.2.1/en-GB.xpi) = 437846 +SHA256 (xpi/firefox-38.2.1/en-US.xpi) = 44e81da1c90cf56e4190145e981c7bab9d6cdc559366c7b707c01e0df84db7a2 +SIZE (xpi/firefox-38.2.1/en-US.xpi) = 469718 +SHA256 (xpi/firefox-38.2.1/en-ZA.xpi) = d4d06c2c80202f06a837dcea7e0431f8556a58e7a97e5e1bdd41ef8cd575f8db +SIZE (xpi/firefox-38.2.1/en-ZA.xpi) = 439926 +SHA256 (xpi/firefox-38.2.1/eo.xpi) = 34d5455052f0f7e43561795998b9a9f20683bbdac54d740e2ccc952dbe35840a +SIZE (xpi/firefox-38.2.1/eo.xpi) = 488370 +SHA256 (xpi/firefox-38.2.1/es-AR.xpi) = 1539d6b82a8a475fab958de03819b9ab866531d826248882f70dbedb52caa095 +SIZE (xpi/firefox-38.2.1/es-AR.xpi) = 453983 +SHA256 (xpi/firefox-38.2.1/es-CL.xpi) = 987c370767ef39c784977f15768a79833052cfccf53b90ab0ade524270fc299a +SIZE (xpi/firefox-38.2.1/es-CL.xpi) = 384679 +SHA256 (xpi/firefox-38.2.1/es-ES.xpi) = db861b6fb4eb4b46cf21e3fc56ec3ba98303cf0aa8c2d5c1fa4efacc93342400 +SIZE (xpi/firefox-38.2.1/es-ES.xpi) = 374073 +SHA256 (xpi/firefox-38.2.1/es-MX.xpi) = b78492a8826850ef2a3f7d7c192c15af573b59c64871a2b849c98277eea28234 +SIZE (xpi/firefox-38.2.1/es-MX.xpi) = 457049 +SHA256 (xpi/firefox-38.2.1/et.xpi) = fe133da93e7c1e88f1c39321de56f679db228e7a0b7c6cd08ccbec09579cb9ac +SIZE (xpi/firefox-38.2.1/et.xpi) = 443228 +SHA256 (xpi/firefox-38.2.1/eu.xpi) = 4b34e8fcc664fc47de1ee7fe1b8c4054a8416288a89198f1e772d37bdb0d6dad +SIZE (xpi/firefox-38.2.1/eu.xpi) = 466555 +SHA256 (xpi/firefox-38.2.1/fa.xpi) = 6525afff18f0e5e76ba8daa67ee86121998ba3fa199215aa207b83759a7ca616 +SIZE (xpi/firefox-38.2.1/fa.xpi) = 518282 +SHA256 (xpi/firefox-38.2.1/ff.xpi) = bf57f779d89cf4e72ed1d4c7b6100facf28ed829dc96f60dd5de52d4289bed04 +SIZE (xpi/firefox-38.2.1/ff.xpi) = 454586 +SHA256 (xpi/firefox-38.2.1/fi.xpi) = 0930c3a33eb29d31789e7a880a018912da6ca4e9a51013e08bc311d775f4021a +SIZE (xpi/firefox-38.2.1/fi.xpi) = 444852 +SHA256 (xpi/firefox-38.2.1/fr.xpi) = 459b100943ac236091e5945aa84047c7a0b540769c8d63cf2f527cbbf645b401 +SIZE (xpi/firefox-38.2.1/fr.xpi) = 461401 +SHA256 (xpi/firefox-38.2.1/fy-NL.xpi) = 23cc544e74606aa72e9ad2d9c3bc2ae835c82a2bec5787a531e5913dce110d18 +SIZE (xpi/firefox-38.2.1/fy-NL.xpi) = 455538 +SHA256 (xpi/firefox-38.2.1/ga-IE.xpi) = 0e45539bd39deb9315070726b44c01a8c12c9edb0d1773dc62bc606c45263500 +SIZE (xpi/firefox-38.2.1/ga-IE.xpi) = 469623 +SHA256 (xpi/firefox-38.2.1/gd.xpi) = 7d0af6433a55c2b066f136de7cb2e19182f2357d7e48ac7711dc0dea17c27f8e +SIZE (xpi/firefox-38.2.1/gd.xpi) = 454616 +SHA256 (xpi/firefox-38.2.1/gl.xpi) = 9253cb864e13ad8f86350e3560a08705e3b411f5afb69b66fcc739571a5a9697 +SIZE (xpi/firefox-38.2.1/gl.xpi) = 448923 +SHA256 (xpi/firefox-38.2.1/gu-IN.xpi) = e926a61de3fbc8f7120bb07fb0450cce81d9da6842bcd5fa7a8df1499fa11013 +SIZE (xpi/firefox-38.2.1/gu-IN.xpi) = 477979 +SHA256 (xpi/firefox-38.2.1/he.xpi) = b14462221fde67c0fffd2fa0469e6c5a476540111088456842a59809e1e6812d +SIZE (xpi/firefox-38.2.1/he.xpi) = 486784 +SHA256 (xpi/firefox-38.2.1/hi-IN.xpi) = df8683b412ccb2d4142099354b0759e59306eb96be12760c7c0f58b7b48d9411 +SIZE (xpi/firefox-38.2.1/hi-IN.xpi) = 508166 +SHA256 (xpi/firefox-38.2.1/hr.xpi) = 2405e5459c45abbf455845eee66bef90460f4c5c34aa1abede38737d2d8bbbd1 +SIZE (xpi/firefox-38.2.1/hr.xpi) = 478270 +SHA256 (xpi/firefox-38.2.1/hsb.xpi) = a6852cdcecddcdc36ddcb33513bf6df0f39734f8ee174c52c3b46c0e4284d06a +SIZE (xpi/firefox-38.2.1/hsb.xpi) = 468719 +SHA256 (xpi/firefox-38.2.1/hu.xpi) = 7dbbebe69ff4ae414909e02eadefd1db7b7585ebbf450c6906e515cd55ef5144 +SIZE (xpi/firefox-38.2.1/hu.xpi) = 453554 +SHA256 (xpi/firefox-38.2.1/hy-AM.xpi) = 20a4c0b5abad43617850551aeb00c303fb74a11cb0ffc88a5f6a21500e0c707f +SIZE (xpi/firefox-38.2.1/hy-AM.xpi) = 534264 +SHA256 (xpi/firefox-38.2.1/id.xpi) = bfc5fe681d846d57ff34b69916a2a67182a020652d7c4949f6835e84ea296f22 +SIZE (xpi/firefox-38.2.1/id.xpi) = 431488 +SHA256 (xpi/firefox-38.2.1/is.xpi) = 7db45517845cb2c10240e8bc208aa98eb59ca9f7e4ac63458ff73b01c6f81feb +SIZE (xpi/firefox-38.2.1/is.xpi) = 485129 +SHA256 (xpi/firefox-38.2.1/it.xpi) = 0b34622317c71e5d4ef73a2c91103c81bb93e00ec6745d815f5b5c5e0a4a80a4 +SIZE (xpi/firefox-38.2.1/it.xpi) = 368409 +SHA256 (xpi/firefox-38.2.1/ja.xpi) = 7df70432dfaf748eea5edfad608a3fcce377f1c3d06d1012f2fb28042f872ae8 +SIZE (xpi/firefox-38.2.1/ja.xpi) = 479113 +SHA256 (xpi/firefox-38.2.1/kk.xpi) = 07131063fc5caa3a3f20d9f6140d3e0640c81e842389cd77c26ed722ddb195b0 +SIZE (xpi/firefox-38.2.1/kk.xpi) = 503568 +SHA256 (xpi/firefox-38.2.1/km.xpi) = 35c67ac083036edbc00351f3c75b6bd59a57f49b8f49326b966e49ed1c440769 +SIZE (xpi/firefox-38.2.1/km.xpi) = 565673 +SHA256 (xpi/firefox-38.2.1/kn.xpi) = b88e298f2e884a027a993b1e08bed8d4b693cc86d0cd9593570cc83561e9ebc1 +SIZE (xpi/firefox-38.2.1/kn.xpi) = 533464 +SHA256 (xpi/firefox-38.2.1/ko.xpi) = bb7f4562361941f1f6cb5f157b52a0c8584e52eb8b1e0d643b00dd7bb0b5c51e +SIZE (xpi/firefox-38.2.1/ko.xpi) = 460853 +SHA256 (xpi/firefox-38.2.1/lij.xpi) = c5ee43e5a4a14d8476dfc7299a6f87ccb91aca8c954b85168a9248d91b3e3fde +SIZE (xpi/firefox-38.2.1/lij.xpi) = 444242 +SHA256 (xpi/firefox-38.2.1/lt.xpi) = 285abdd84d600b7aef0eb17371879573772e357d147178d02cbb9004cfd01d70 +SIZE (xpi/firefox-38.2.1/lt.xpi) = 486452 +SHA256 (xpi/firefox-38.2.1/lv.xpi) = b5b427806e1b7172110b0570fe381bd40486790c415dfe8720343c2a34c41a64 +SIZE (xpi/firefox-38.2.1/lv.xpi) = 467197 +SHA256 (xpi/firefox-38.2.1/mai.xpi) = 443c2edd6fec5e81d19552ba514b2dfc8330285fb0f984fc735f4a1b5de6a4f5 +SIZE (xpi/firefox-38.2.1/mai.xpi) = 514666 +SHA256 (xpi/firefox-38.2.1/mk.xpi) = b57c5314d1b3824396a0cf6a4bc7d8cb70bc01730443dfa791bb393969841daa +SIZE (xpi/firefox-38.2.1/mk.xpi) = 529205 +SHA256 (xpi/firefox-38.2.1/ml.xpi) = f55fecbcb7a2624dfdb557584c962b04e0b54bede3bb007cfdbb28333022fadb +SIZE (xpi/firefox-38.2.1/ml.xpi) = 528919 +SHA256 (xpi/firefox-38.2.1/mr.xpi) = 16d656c2094e2ef767d4d6a3b6e290d10db4902f71dc8c2e9b1410358bddcac8 +SIZE (xpi/firefox-38.2.1/mr.xpi) = 505961 +SHA256 (xpi/firefox-38.2.1/ms.xpi) = d57d83cb9ea23ab30eada256ad77648a8a922bff52016ddd0956c223011d99a2 +SIZE (xpi/firefox-38.2.1/ms.xpi) = 489872 +SHA256 (xpi/firefox-38.2.1/nb-NO.xpi) = ff22df16587ed823ddbd422ef92492737e5a995a776413017c688f7b2f5cfb6b +SIZE (xpi/firefox-38.2.1/nb-NO.xpi) = 444177 +SHA256 (xpi/firefox-38.2.1/nl.xpi) = 294d298024e333812504bbd269f104ac362e32f5b71b4bcc21591acd05cb52a1 +SIZE (xpi/firefox-38.2.1/nl.xpi) = 443995 +SHA256 (xpi/firefox-38.2.1/nn-NO.xpi) = c445a5f538cec05c69d2a7838f22e18123f34d7217454984ff9c02a7072364f6 +SIZE (xpi/firefox-38.2.1/nn-NO.xpi) = 438452 +SHA256 (xpi/firefox-38.2.1/or.xpi) = af6d63813c6870ac5993860940f06c91611fed21cab87da34f7dc58d566fc751 +SIZE (xpi/firefox-38.2.1/or.xpi) = 527050 +SHA256 (xpi/firefox-38.2.1/pa-IN.xpi) = adfea7204e49f629aa1432364cbe876b2a40b339e4279fa9801d650d17920aaf +SIZE (xpi/firefox-38.2.1/pa-IN.xpi) = 493723 +SHA256 (xpi/firefox-38.2.1/pl.xpi) = 651bdae9f95b09fa28db0dc6c47aec3271d628d2ba508797750a5dfbfdb6af8a +SIZE (xpi/firefox-38.2.1/pl.xpi) = 406567 +SHA256 (xpi/firefox-38.2.1/pt-BR.xpi) = c4c0744d55113c5cf6ecf9c4ca2a283f7b63a4d6ebd952b0c271f5932cb50120 +SIZE (xpi/firefox-38.2.1/pt-BR.xpi) = 459811 +SHA256 (xpi/firefox-38.2.1/pt-PT.xpi) = 6f950c7eea881dbcd2f4ae4cce41f6ece38add5e511c741a6192c1431b6dc49f +SIZE (xpi/firefox-38.2.1/pt-PT.xpi) = 439976 +SHA256 (xpi/firefox-38.2.1/rm.xpi) = 5beeafba0a7a1cf2bb14de27cac8284ac713712c3584e2d056bda5fa10d754ae +SIZE (xpi/firefox-38.2.1/rm.xpi) = 446286 +SHA256 (xpi/firefox-38.2.1/ro.xpi) = d086f67dc27bb06c194e12bc0f47e52b58584637916da61c42da977204d6739f +SIZE (xpi/firefox-38.2.1/ro.xpi) = 494080 +SHA256 (xpi/firefox-38.2.1/ru.xpi) = d61806e7f8080d3fe3b57baf9448ccbf74fb9a668365518322b0fd2fe67a75e2 +SIZE (xpi/firefox-38.2.1/ru.xpi) = 414418 +SHA256 (xpi/firefox-38.2.1/si.xpi) = 4d48d93f3a97a0b2853c1aacffb726bf49c32822069904fe419ff3fb9f04bcbd +SIZE (xpi/firefox-38.2.1/si.xpi) = 537394 +SHA256 (xpi/firefox-38.2.1/sk.xpi) = f1b47a7c848a1d25f5bb3744497a94807e550c96e2ce34f06a07055e0eb5879b +SIZE (xpi/firefox-38.2.1/sk.xpi) = 469436 +SHA256 (xpi/firefox-38.2.1/sl.xpi) = c663bf7ec450a45c3c1ee7a46e89facfc43717831e014f077e4fb994bbcfbd1b +SIZE (xpi/firefox-38.2.1/sl.xpi) = 441594 +SHA256 (xpi/firefox-38.2.1/son.xpi) = 305df206828887322e4f3d4c689224e1187e2a13b16dbcad898b2a3aeff5f25e +SIZE (xpi/firefox-38.2.1/son.xpi) = 449268 +SHA256 (xpi/firefox-38.2.1/sq.xpi) = 2674faca4612734588e56946796c58725016082689e026ca8b805249447c97c2 +SIZE (xpi/firefox-38.2.1/sq.xpi) = 486075 +SHA256 (xpi/firefox-38.2.1/sr.xpi) = 499f11c6a5f8dad76dda59bab9007daddae5a878e16e2a6fc4da46319dc66644 +SIZE (xpi/firefox-38.2.1/sr.xpi) = 479420 +SHA256 (xpi/firefox-38.2.1/sv-SE.xpi) = 536084e596a969fc8d26c497b1155a3a41f393cd86fb8c962e75b142247dbe11 +SIZE (xpi/firefox-38.2.1/sv-SE.xpi) = 452632 +SHA256 (xpi/firefox-38.2.1/ta.xpi) = 639fb75e4d13ac50db0e70d35a92571353339c004a8bcf2ebb5e348896f57d67 +SIZE (xpi/firefox-38.2.1/ta.xpi) = 506607 +SHA256 (xpi/firefox-38.2.1/te.xpi) = 3b73a6b26d29260599d2d2b24a7bc0809a644de1e8347e60ffd4c5014109d0dc +SIZE (xpi/firefox-38.2.1/te.xpi) = 526250 +SHA256 (xpi/firefox-38.2.1/th.xpi) = a5975df8f977fcfc7e36a2ea53db17d15d1a409f1757922cf02e08895564a054 +SIZE (xpi/firefox-38.2.1/th.xpi) = 534271 +SHA256 (xpi/firefox-38.2.1/tr.xpi) = 9f508923bdcd00b802bb9fb6d20cbd69ca87ba441e9119ffb76b243d7ebb78b4 +SIZE (xpi/firefox-38.2.1/tr.xpi) = 481076 +SHA256 (xpi/firefox-38.2.1/uk.xpi) = 7b7b1216c9a5633ff4b4cb2eabbc3b36c01e81e7a46d3261e9251fef330a8311 +SIZE (xpi/firefox-38.2.1/uk.xpi) = 493314 +SHA256 (xpi/firefox-38.2.1/vi.xpi) = 99abed00052cce52ddcd65a2edaa95b0311c75d3522b4784760d947ec7c2e41f +SIZE (xpi/firefox-38.2.1/vi.xpi) = 467505 +SHA256 (xpi/firefox-38.2.1/xh.xpi) = 625db0cf3bc1b23a1fb1b49c21bfbb1671c4fea84db64ca6d0582d817efda419 +SIZE (xpi/firefox-38.2.1/xh.xpi) = 450242 +SHA256 (xpi/firefox-38.2.1/zh-CN.xpi) = 02ac98674f658a239c264b0631d1339e8c454f444fa9261db64f250033eccfac +SIZE (xpi/firefox-38.2.1/zh-CN.xpi) = 488276 +SHA256 (xpi/firefox-38.2.1/zh-TW.xpi) = 3fe5c8582898d0b7a030028700a58f0d7313a0c9edf88568d176175dd7c3f40c +SIZE (xpi/firefox-38.2.1/zh-TW.xpi) = 467845 Modified: branches/2015Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2015Q3/www/firefox-esr/Makefile Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/firefox-esr/Makefile Fri Aug 28 16:21:24 2015 (r395508) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 38.2.0 +DISTVERSION= 38.2.1 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2015Q3/www/firefox-esr/distinfo ============================================================================== --- branches/2015Q3/www/firefox-esr/distinfo Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/firefox-esr/distinfo Fri Aug 28 16:21:24 2015 (r395508) @@ -1,2 +1,2 @@ -SHA256 (firefox-38.2.0esr.source.tar.bz2) = 55867254f21cfc610aa63c8aa0d7156df6eb4c0cb37ebac30259e4890170aacb -SIZE (firefox-38.2.0esr.source.tar.bz2) = 180722192 +SHA256 (firefox-38.2.1esr.source.tar.bz2) = 0143b3f99ccb390949d7f3847215f6f9b4bb7cd692f4f802921d2f9961bf270a +SIZE (firefox-38.2.1esr.source.tar.bz2) = 180722074 Modified: branches/2015Q3/www/firefox-i18n/Makefile ============================================================================== --- branches/2015Q3/www/firefox-i18n/Makefile Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/firefox-i18n/Makefile Fri Aug 28 16:21:24 2015 (r395508) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 40.0 +PORTVERSION= 40.0.3 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build5/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: branches/2015Q3/www/firefox-i18n/distinfo ============================================================================== --- branches/2015Q3/www/firefox-i18n/distinfo Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/firefox-i18n/distinfo Fri Aug 28 16:21:24 2015 (r395508) @@ -1,176 +1,176 @@ -SHA256 (xpi/firefox-i18n-40.0/ach.xpi) = ca02f5f99d39d1e8a0e213d38306ac51ec289fcb0487d057f54d09d1923cd0d1 -SIZE (xpi/firefox-i18n-40.0/ach.xpi) = 494118 -SHA256 (xpi/firefox-i18n-40.0/af.xpi) = f45aa959ace5e985d629558ae108349032dad513b6a2b5883e9e4a5a35053b60 -SIZE (xpi/firefox-i18n-40.0/af.xpi) = 498499 -SHA256 (xpi/firefox-i18n-40.0/an.xpi) = 091b85264dfe2331e62de8c5ea051bbc018e00ada06be4a15d6809573858504d -SIZE (xpi/firefox-i18n-40.0/an.xpi) = 476724 -SHA256 (xpi/firefox-i18n-40.0/ar.xpi) = 2a3e4125730d215d7090b8a6b7bf0b3e06d991d8f2c26132f2c777a90633e021 -SIZE (xpi/firefox-i18n-40.0/ar.xpi) = 532105 -SHA256 (xpi/firefox-i18n-40.0/as.xpi) = 07f9a6864edfd55807f961639862ff7a46d4b550a976fa3f978a1dcfee8b195c -SIZE (xpi/firefox-i18n-40.0/as.xpi) = 522245 -SHA256 (xpi/firefox-i18n-40.0/ast.xpi) = e53e3481dfda6235b8af3cba577b73a9ebab85a6a13e4cfc7a9630d39c14948e -SIZE (xpi/firefox-i18n-40.0/ast.xpi) = 408919 -SHA256 (xpi/firefox-i18n-40.0/az.xpi) = bdb6b617e20f02166e19f36eba02e18d5de2276bff3f0d45c12ebb9eb0df1845 -SIZE (xpi/firefox-i18n-40.0/az.xpi) = 505059 -SHA256 (xpi/firefox-i18n-40.0/be.xpi) = 65067347acf063f110ad8ade3254a7701db9fd5d73aea1d68497455f4fa43cf2 -SIZE (xpi/firefox-i18n-40.0/be.xpi) = 464200 -SHA256 (xpi/firefox-i18n-40.0/bg.xpi) = f51d9dc47627b2c9683220909174e31d293b4aa9088bcf753fbd895b84e92923 -SIZE (xpi/firefox-i18n-40.0/bg.xpi) = 503493 -SHA256 (xpi/firefox-i18n-40.0/bn-BD.xpi) = 4da27685170fedcc6d35e10bd214032956c098abea3fe9e78fc8c67c021b6403 -SIZE (xpi/firefox-i18n-40.0/bn-BD.xpi) = 538759 -SHA256 (xpi/firefox-i18n-40.0/bn-IN.xpi) = 0560547c67d500b634ce635d51a153ebbf3b9129e8ac450af2806e99cccf0ba5 -SIZE (xpi/firefox-i18n-40.0/bn-IN.xpi) = 541269 -SHA256 (xpi/firefox-i18n-40.0/br.xpi) = fbde4d5e57f4a750e313efe2d9cf72ec0a2ab3beb31816af76f30578a921ed9a -SIZE (xpi/firefox-i18n-40.0/br.xpi) = 456848 -SHA256 (xpi/firefox-i18n-40.0/bs.xpi) = df3e7c6d6598e8aed886769ddf93321d102e05a2c05610e95fa8d8bcc6a80835 -SIZE (xpi/firefox-i18n-40.0/bs.xpi) = 497331 -SHA256 (xpi/firefox-i18n-40.0/ca.xpi) = 9873d8a1ad290d5b5e53811498bb8e8cfc6133efffa34756195fd8c0b3e2d255 -SIZE (xpi/firefox-i18n-40.0/ca.xpi) = 474109 -SHA256 (xpi/firefox-i18n-40.0/cs.xpi) = eec694b24562c1157007b117e4fd9156145d72f1f9eccb09781facaa8a4d3533 -SIZE (xpi/firefox-i18n-40.0/cs.xpi) = 462357 -SHA256 (xpi/firefox-i18n-40.0/cy.xpi) = a523735be0880b194449884deb3c7fee16df67831668d0138daac651255e94a8 -SIZE (xpi/firefox-i18n-40.0/cy.xpi) = 459245 -SHA256 (xpi/firefox-i18n-40.0/da.xpi) = 7fffd2ac1cb1784268912d66cd4fd020c11a57ab2320c2e33cd2194e209cba40 -SIZE (xpi/firefox-i18n-40.0/da.xpi) = 465571 -SHA256 (xpi/firefox-i18n-40.0/de.xpi) = 473bfcd2abefb2bf4d016b9b7fa84affc1d1f337fc7e2f35e7a6e737e766037c -SIZE (xpi/firefox-i18n-40.0/de.xpi) = 467231 -SHA256 (xpi/firefox-i18n-40.0/dsb.xpi) = 2b929dac317a6eae1c11e56dc81359b7dfcee6904997af2ce2109348e0cd199c -SIZE (xpi/firefox-i18n-40.0/dsb.xpi) = 486586 -SHA256 (xpi/firefox-i18n-40.0/el.xpi) = 68eacf8bf2dfcc4ba1ba6b8c19300354a245d3d55ceb34c17a6694fe46762154 -SIZE (xpi/firefox-i18n-40.0/el.xpi) = 513115 -SHA256 (xpi/firefox-i18n-40.0/en-GB.xpi) = f7cee042d9c58291855ee601f6ccb441e31f06f6daa553867a83d1baba35ce82 -SIZE (xpi/firefox-i18n-40.0/en-GB.xpi) = 451899 -SHA256 (xpi/firefox-i18n-40.0/en-US.xpi) = efd835b830e5e42f900cb802a1f9affe9d3548db409271442b24dffb38da1ca0 -SIZE (xpi/firefox-i18n-40.0/en-US.xpi) = 483748 -SHA256 (xpi/firefox-i18n-40.0/en-ZA.xpi) = 4e9b6fb1470f999e454c0dbd1b3373c7f5851499f199ec6c3080ffcc18018ab5 -SIZE (xpi/firefox-i18n-40.0/en-ZA.xpi) = 455369 -SHA256 (xpi/firefox-i18n-40.0/eo.xpi) = 93b95ec661112188316f418a87c2a7866fa5d41fe2181fc77a011091dd099641 -SIZE (xpi/firefox-i18n-40.0/eo.xpi) = 500201 -SHA256 (xpi/firefox-i18n-40.0/es-AR.xpi) = e83df51c03b27623ee95451ce534fec89581b71ab2beeb9455226d46e2ddda33 -SIZE (xpi/firefox-i18n-40.0/es-AR.xpi) = 468597 -SHA256 (xpi/firefox-i18n-40.0/es-CL.xpi) = 58fd971bbc3eecc374905009eac0b057732a31960dc25559be2ae3931b4d5bc3 -SIZE (xpi/firefox-i18n-40.0/es-CL.xpi) = 394971 -SHA256 (xpi/firefox-i18n-40.0/es-ES.xpi) = a54c2857874d920be18341dede5edfe58b504ea58df608a6942892f27f038de7 -SIZE (xpi/firefox-i18n-40.0/es-ES.xpi) = 383893 -SHA256 (xpi/firefox-i18n-40.0/es-MX.xpi) = d2095ad86bfe5c75f4ece9f13f2bed9fc7c96552abb491268052091a5389162e -SIZE (xpi/firefox-i18n-40.0/es-MX.xpi) = 472916 -SHA256 (xpi/firefox-i18n-40.0/et.xpi) = 999d7f07b8883aa80b086a1c1e143c619898e9aa7bda4c633de99c028355d9b9 -SIZE (xpi/firefox-i18n-40.0/et.xpi) = 457407 -SHA256 (xpi/firefox-i18n-40.0/eu.xpi) = 63a5014e8fed8f45cfbad4f665fc476b8cca3110a096be990bef44e4d5c8ea49 -SIZE (xpi/firefox-i18n-40.0/eu.xpi) = 481823 -SHA256 (xpi/firefox-i18n-40.0/fa.xpi) = dff526ad97b4f49503d483782e052c8c8bc9dd76efbce9da1e56a179ac64da6d -SIZE (xpi/firefox-i18n-40.0/fa.xpi) = 526970 -SHA256 (xpi/firefox-i18n-40.0/ff.xpi) = 046651c1b1c7260d6f03795cc91d980904e3e0bce3c300010c32530e4088c5f4 -SIZE (xpi/firefox-i18n-40.0/ff.xpi) = 465792 -SHA256 (xpi/firefox-i18n-40.0/fi.xpi) = 1582bfdd5a88f8eba421c998ef91fada9ab9f7f4dea24dd557fd533404b3928a -SIZE (xpi/firefox-i18n-40.0/fi.xpi) = 459381 -SHA256 (xpi/firefox-i18n-40.0/fr.xpi) = ced2befd0e942378086fc42384eae7ba414e71d26d0b1ed18bc6b76737817006 -SIZE (xpi/firefox-i18n-40.0/fr.xpi) = 477147 -SHA256 (xpi/firefox-i18n-40.0/fy-NL.xpi) = 5614cb671ddf8bf4693dc0b56ce5ec66db097b2e0939731fead2c9834773806d -SIZE (xpi/firefox-i18n-40.0/fy-NL.xpi) = 471144 -SHA256 (xpi/firefox-i18n-40.0/ga-IE.xpi) = 2ecaa8311ab75575e7e5c3c2862f4fd92b463ba500b5cf04aa8c194967fe9e2f -SIZE (xpi/firefox-i18n-40.0/ga-IE.xpi) = 485534 -SHA256 (xpi/firefox-i18n-40.0/gd.xpi) = e0197a0970e00bc7c4743ba6c3cb1e51fea7c3bbc748ab0fae69a98024b3f0c1 -SIZE (xpi/firefox-i18n-40.0/gd.xpi) = 469749 -SHA256 (xpi/firefox-i18n-40.0/gl.xpi) = 982b7920f2a4fe99a675c85a53c19641bc87d3e604857c0c3b0627f2a6047b81 -SIZE (xpi/firefox-i18n-40.0/gl.xpi) = 463633 -SHA256 (xpi/firefox-i18n-40.0/gu-IN.xpi) = ee29696c663fdb9c7ee1840af3936e1c066b6bd6d0cb0c75c971313f2ae6ce41 -SIZE (xpi/firefox-i18n-40.0/gu-IN.xpi) = 498590 -SHA256 (xpi/firefox-i18n-40.0/he.xpi) = c0ac7563f99548086e167e17555929dc82e00962aae8b3693d2b38b5c5a9c780 -SIZE (xpi/firefox-i18n-40.0/he.xpi) = 497109 -SHA256 (xpi/firefox-i18n-40.0/hi-IN.xpi) = 7d80c3d7ca89e046649e99d7fe61f6d2d9d7e72980224132312220e62c42d8aa -SIZE (xpi/firefox-i18n-40.0/hi-IN.xpi) = 519928 -SHA256 (xpi/firefox-i18n-40.0/hr.xpi) = a687e6d6d960311ed82e37d030a6d91148b40adde2ca905ee4204702e23b9c49 -SIZE (xpi/firefox-i18n-40.0/hr.xpi) = 494491 -SHA256 (xpi/firefox-i18n-40.0/hsb.xpi) = 903b39eb11f9332df348026e3f58d4290ff1678b44d5f11a1df85c7377619d25 -SIZE (xpi/firefox-i18n-40.0/hsb.xpi) = 484248 -SHA256 (xpi/firefox-i18n-40.0/hu.xpi) = 7c927e48952f2611cba8b96effdb82e78c5e8ed60c812f952a3a974f01c2fbe7 -SIZE (xpi/firefox-i18n-40.0/hu.xpi) = 469053 -SHA256 (xpi/firefox-i18n-40.0/hy-AM.xpi) = 54f6aa6be8b097babce7a1bbce2755ff6ebc6cbfdfb1d2ec43b511dcca38a1bf -SIZE (xpi/firefox-i18n-40.0/hy-AM.xpi) = 550065 -SHA256 (xpi/firefox-i18n-40.0/id.xpi) = cbcf54dfbe363063324665ff95aad2999aefccc6bce46fce8d1c25d069eddabc -SIZE (xpi/firefox-i18n-40.0/id.xpi) = 446091 -SHA256 (xpi/firefox-i18n-40.0/is.xpi) = 8c43f3bdf8c19d08dd86b4e8ac6b7bd9372016eff975b0f5ff08c8afaaebf12a -SIZE (xpi/firefox-i18n-40.0/is.xpi) = 499892 -SHA256 (xpi/firefox-i18n-40.0/it.xpi) = 871a41fcc795d10190d20569679dc3de83017575e2154a52c42cdaca14b2a482 -SIZE (xpi/firefox-i18n-40.0/it.xpi) = 377832 -SHA256 (xpi/firefox-i18n-40.0/ja.xpi) = fc99e2a54727214f93dd0d76bfb86d5513ea05f6de99938a465c9d0c69a783ce -SIZE (xpi/firefox-i18n-40.0/ja.xpi) = 495438 -SHA256 (xpi/firefox-i18n-40.0/kk.xpi) = 0c5bcd8def91e4786c5a92e3b48426bcc5abb3c33531a82f2e1fa6333ac00d72 -SIZE (xpi/firefox-i18n-40.0/kk.xpi) = 520130 -SHA256 (xpi/firefox-i18n-40.0/km.xpi) = 114fd9a9dfd62b24ba8757ce6a5961902e9303052a7416310959c0b4bb3b2abb -SIZE (xpi/firefox-i18n-40.0/km.xpi) = 578732 -SHA256 (xpi/firefox-i18n-40.0/kn.xpi) = e781b59532705bbfc56bb3ffdd5af7cebaea04f29ab2debf12eae81d618c5ea1 -SIZE (xpi/firefox-i18n-40.0/kn.xpi) = 550863 -SHA256 (xpi/firefox-i18n-40.0/ko.xpi) = 876efa04637fb512567aa26a3fe29a49595381a54014dc96ba5da08b9f18c766 -SIZE (xpi/firefox-i18n-40.0/ko.xpi) = 476891 -SHA256 (xpi/firefox-i18n-40.0/lij.xpi) = 86d35b1e7c9e786c96e80848702271dbaf686c5096208e922bf62cc92a75211f -SIZE (xpi/firefox-i18n-40.0/lij.xpi) = 462237 -SHA256 (xpi/firefox-i18n-40.0/lt.xpi) = 90fc8ae12a9e138c362ce2f24c4ec4f92cd74531fcb1608c314b681a158858bd -SIZE (xpi/firefox-i18n-40.0/lt.xpi) = 502209 -SHA256 (xpi/firefox-i18n-40.0/lv.xpi) = c94d29e49ff3db5cc0d135947188209f8177a5191e387fb98011241416d4ab2f -SIZE (xpi/firefox-i18n-40.0/lv.xpi) = 482485 -SHA256 (xpi/firefox-i18n-40.0/mai.xpi) = 3ecfc494299261ff0794282741a56ba78ae3a5b2c35eb42bcccd1780852e9574 -SIZE (xpi/firefox-i18n-40.0/mai.xpi) = 527989 -SHA256 (xpi/firefox-i18n-40.0/mk.xpi) = a6c5228127d89c1bc17ef440a094177a8d7ba58950681edf46dfda5017b6e697 -SIZE (xpi/firefox-i18n-40.0/mk.xpi) = 542561 -SHA256 (xpi/firefox-i18n-40.0/ml.xpi) = 3766a54605edaf8eaa00fa21a5119d703edd2d5f9cc415a17684590c0ba9c210 -SIZE (xpi/firefox-i18n-40.0/ml.xpi) = 540382 -SHA256 (xpi/firefox-i18n-40.0/mr.xpi) = 1cfc49d575c6219b85ee6a1dc6745bd82941d7465c8c9e7c03d0f403427d0c29 -SIZE (xpi/firefox-i18n-40.0/mr.xpi) = 522284 -SHA256 (xpi/firefox-i18n-40.0/ms.xpi) = 4a670b3001e0d4027668b682d61db471f1674c5b73948f3b3e629f48b557f011 -SIZE (xpi/firefox-i18n-40.0/ms.xpi) = 504518 -SHA256 (xpi/firefox-i18n-40.0/nb-NO.xpi) = 2d5c92898d146f21557f8e7795a440ad62ebfc23c76318636fb7ff9daac955a8 -SIZE (xpi/firefox-i18n-40.0/nb-NO.xpi) = 458940 -SHA256 (xpi/firefox-i18n-40.0/nl.xpi) = 3d3d38700686e0827e68dccb2356156e2bac994b65c5535532a7737db197b467 -SIZE (xpi/firefox-i18n-40.0/nl.xpi) = 458630 -SHA256 (xpi/firefox-i18n-40.0/nn-NO.xpi) = 2b465866f5ed4b75c74916bfdb941625bfc87f3de91a456b93822c6c51eba76c -SIZE (xpi/firefox-i18n-40.0/nn-NO.xpi) = 453067 -SHA256 (xpi/firefox-i18n-40.0/or.xpi) = e35a70b4ae54805897ba1d9610ddfde53a32bf7d8d5e1d594f96e149088460c9 -SIZE (xpi/firefox-i18n-40.0/or.xpi) = 539206 -SHA256 (xpi/firefox-i18n-40.0/pa-IN.xpi) = 95946af6a91299e16db59860a27e2e0268ed3d275eea891e2c1765564938eb7d -SIZE (xpi/firefox-i18n-40.0/pa-IN.xpi) = 509121 -SHA256 (xpi/firefox-i18n-40.0/pl.xpi) = 282e248cdbcba9e0084bbda672ec05f719cd8dd268c556afe7dd2fb595ad5237 -SIZE (xpi/firefox-i18n-40.0/pl.xpi) = 415190 -SHA256 (xpi/firefox-i18n-40.0/pt-BR.xpi) = 03ea49f1805f8e92e9e412a4985b42cc2a6e7fffc8c49b9d5bac6e7a00e08530 -SIZE (xpi/firefox-i18n-40.0/pt-BR.xpi) = 475444 -SHA256 (xpi/firefox-i18n-40.0/pt-PT.xpi) = c3baa331322028ce9a4fe05ba9650b671e0499db407361c6e01c6b724e5a55ba -SIZE (xpi/firefox-i18n-40.0/pt-PT.xpi) = 456034 -SHA256 (xpi/firefox-i18n-40.0/rm.xpi) = f6c2a17f69d620d8fd1372a535ee13b233a6fdce599937e05b973c8bddb82fd0 -SIZE (xpi/firefox-i18n-40.0/rm.xpi) = 461465 -SHA256 (xpi/firefox-i18n-40.0/ro.xpi) = 44cda9cf2069951525d2dbe31246f89988e24edc7dcc348722e451c50afd0df3 -SIZE (xpi/firefox-i18n-40.0/ro.xpi) = 509715 -SHA256 (xpi/firefox-i18n-40.0/ru.xpi) = f18934cd55f93e507785c9e4aa80595030155367d69f1cf8d4a1b01ab88083ba -SIZE (xpi/firefox-i18n-40.0/ru.xpi) = 425656 -SHA256 (xpi/firefox-i18n-40.0/si.xpi) = a21bfb4257bfbaf9a1980469841db7512209528e1ae6316ad7d668e3f53d2ec3 -SIZE (xpi/firefox-i18n-40.0/si.xpi) = 548767 -SHA256 (xpi/firefox-i18n-40.0/sk.xpi) = 6fe43380ee3bce96815afa1ebd624ed5c69b8faa5857624805f48427ef16e2c7 -SIZE (xpi/firefox-i18n-40.0/sk.xpi) = 485119 -SHA256 (xpi/firefox-i18n-40.0/sl.xpi) = 894af87db630be047f0810dde97e335f4c232eeb5fc13be25e670dc381caa38e -SIZE (xpi/firefox-i18n-40.0/sl.xpi) = 457939 -SHA256 (xpi/firefox-i18n-40.0/son.xpi) = f27b321a469ae9f759306592c15b75110917bd3acaceafeb9551584e52fc1a57 -SIZE (xpi/firefox-i18n-40.0/son.xpi) = 465947 -SHA256 (xpi/firefox-i18n-40.0/sq.xpi) = 8dbc7015dd6a4cdfb8b8451bc6c911cb51a6c08f25669e20d3bb2163667da24d -SIZE (xpi/firefox-i18n-40.0/sq.xpi) = 501444 -SHA256 (xpi/firefox-i18n-40.0/sr.xpi) = fb94b577f6321ab0283e8edef75c46afa5ebbfad906bfa79d7fc03bd5eee3a50 -SIZE (xpi/firefox-i18n-40.0/sr.xpi) = 494735 -SHA256 (xpi/firefox-i18n-40.0/sv-SE.xpi) = e42282ec857ac1109b4ea67eca75c3b1aa93e706784e28931938169c1e6b702f -SIZE (xpi/firefox-i18n-40.0/sv-SE.xpi) = 467790 -SHA256 (xpi/firefox-i18n-40.0/ta.xpi) = d7835a10acd1466f5989b3a84d46642f2e648442492de8a3e8963037543056c1 -SIZE (xpi/firefox-i18n-40.0/ta.xpi) = 521799 -SHA256 (xpi/firefox-i18n-40.0/te.xpi) = d6138ba9a174fed4f5d9a47b24f88a6994da55bff36c5c0f98eabe735f482670 -SIZE (xpi/firefox-i18n-40.0/te.xpi) = 540973 -SHA256 (xpi/firefox-i18n-40.0/th.xpi) = a40620a3f192f16f7fc4718a19fb22793697dfb69b0386160ecff818ea749dc4 -SIZE (xpi/firefox-i18n-40.0/th.xpi) = 550262 -SHA256 (xpi/firefox-i18n-40.0/tr.xpi) = db14675bacb15818a308834d4df3cb33a63c80d232f285e0ba42c7deb159c89b -SIZE (xpi/firefox-i18n-40.0/tr.xpi) = 496252 -SHA256 (xpi/firefox-i18n-40.0/uk.xpi) = b31fbb07e96ed324ff4a6a5866c277a41bcd1cf5364f451872f92455b24ee229 -SIZE (xpi/firefox-i18n-40.0/uk.xpi) = 511143 -SHA256 (xpi/firefox-i18n-40.0/vi.xpi) = b808813cbc18c8499c6f7f4375615be4da26139e35de5fda9793ba343fa44d80 -SIZE (xpi/firefox-i18n-40.0/vi.xpi) = 481058 -SHA256 (xpi/firefox-i18n-40.0/xh.xpi) = 28bca0c51a4df03a9eff05b97448aa5c5ffa4e5063a4bd0f18eb1964ab5f2712 -SIZE (xpi/firefox-i18n-40.0/xh.xpi) = 461037 -SHA256 (xpi/firefox-i18n-40.0/zh-CN.xpi) = 8b11a715c1b61b6b06e444b64c9c04e6208351fd0ad70dcbf41252bbe64b5307 -SIZE (xpi/firefox-i18n-40.0/zh-CN.xpi) = 504407 -SHA256 (xpi/firefox-i18n-40.0/zh-TW.xpi) = 6e97bbc8e1e3868c741a79cb1a878e2b8f1d7a5175c62341dcc8e256698d9139 -SIZE (xpi/firefox-i18n-40.0/zh-TW.xpi) = 491274 +SHA256 (xpi/firefox-i18n-40.0.3/ach.xpi) = 931ff80fc7ab5a3515a31994dbc0787e6e381b66672949f510cc96a125c11a88 +SIZE (xpi/firefox-i18n-40.0.3/ach.xpi) = 494119 +SHA256 (xpi/firefox-i18n-40.0.3/af.xpi) = e6fac0b29616c3924530ea8714cb4bd6d836818b4b23b5fb2a8aa4e80dd1559b +SIZE (xpi/firefox-i18n-40.0.3/af.xpi) = 498500 +SHA256 (xpi/firefox-i18n-40.0.3/an.xpi) = cb4cf9363bae9c9e84bb7d763be998701c6f017824d9986c74b21b46d0cb011d +SIZE (xpi/firefox-i18n-40.0.3/an.xpi) = 476725 +SHA256 (xpi/firefox-i18n-40.0.3/ar.xpi) = 3635e6899a89ee93bc0f5290799471c8c8493782ee2819d47278ed1c385179cd +SIZE (xpi/firefox-i18n-40.0.3/ar.xpi) = 532106 +SHA256 (xpi/firefox-i18n-40.0.3/as.xpi) = bc13edcbf25ad488b0bcb81987f2c7be90ff38bf3d8abf40e9f14ab7a21b6474 +SIZE (xpi/firefox-i18n-40.0.3/as.xpi) = 522246 +SHA256 (xpi/firefox-i18n-40.0.3/ast.xpi) = c153cf18ab652c5535452ab514ed4288806298f32d8329e3adb8e67e53a025d1 +SIZE (xpi/firefox-i18n-40.0.3/ast.xpi) = 408919 +SHA256 (xpi/firefox-i18n-40.0.3/az.xpi) = 6f118a8ae96377c67d00ac4d8fe6ec72a57124593097b308779299d17fdc7a98 +SIZE (xpi/firefox-i18n-40.0.3/az.xpi) = 505061 +SHA256 (xpi/firefox-i18n-40.0.3/be.xpi) = 6a91c11e4c0c2e0469b972d80b286fb3bf600fb8eb30184b94a3001972e5b72b +SIZE (xpi/firefox-i18n-40.0.3/be.xpi) = 464201 +SHA256 (xpi/firefox-i18n-40.0.3/bg.xpi) = 0ed54d7e27ffa0040da087d716b1a23f36118e176bceef62becfa73ca3ed8b23 +SIZE (xpi/firefox-i18n-40.0.3/bg.xpi) = 503495 +SHA256 (xpi/firefox-i18n-40.0.3/bn-BD.xpi) = 8a6555682596254f617b41a406b3ea48f74a9c0aa64a180ab9760e66fc0fee35 +SIZE (xpi/firefox-i18n-40.0.3/bn-BD.xpi) = 538760 +SHA256 (xpi/firefox-i18n-40.0.3/bn-IN.xpi) = cc0b8ae6969e5bf09d631dd621ee88bf25755dc0df6b851a4a0116c53a4e7b66 +SIZE (xpi/firefox-i18n-40.0.3/bn-IN.xpi) = 541272 +SHA256 (xpi/firefox-i18n-40.0.3/br.xpi) = 54553c59ce2f62e5bed36372decd9e2480c770443011a8713d5cc23605caca0a +SIZE (xpi/firefox-i18n-40.0.3/br.xpi) = 456849 +SHA256 (xpi/firefox-i18n-40.0.3/bs.xpi) = 187626919baedd3be7d5525bb8114f3c6a2db0dfdec333977f42531ed500c064 +SIZE (xpi/firefox-i18n-40.0.3/bs.xpi) = 497332 +SHA256 (xpi/firefox-i18n-40.0.3/ca.xpi) = ee57b8bc19e33a08e89d6a3d028c3da5b7b741ba31eb5bc5ebeaf600bb4b00f3 +SIZE (xpi/firefox-i18n-40.0.3/ca.xpi) = 474110 +SHA256 (xpi/firefox-i18n-40.0.3/cs.xpi) = 3a02d4f6a36f882f8c3dac164a2984fdb42b07c6074e4b3c82c7066f6ee8aa34 +SIZE (xpi/firefox-i18n-40.0.3/cs.xpi) = 462358 +SHA256 (xpi/firefox-i18n-40.0.3/cy.xpi) = 6f1f87e2df406b2d8313ad0231751cd5f24e9103a2b5ab368dad23534da0a9ef +SIZE (xpi/firefox-i18n-40.0.3/cy.xpi) = 459246 +SHA256 (xpi/firefox-i18n-40.0.3/da.xpi) = cca57641cc00f92f7152c15363aad38566db57ae3df09e4701f20f2f3836f0ba +SIZE (xpi/firefox-i18n-40.0.3/da.xpi) = 465572 +SHA256 (xpi/firefox-i18n-40.0.3/de.xpi) = a7f26ebd30781adf98995a48b03b92ea294b9d0d6bb02f3806b8d9b3899a5ade +SIZE (xpi/firefox-i18n-40.0.3/de.xpi) = 467233 +SHA256 (xpi/firefox-i18n-40.0.3/dsb.xpi) = b031e2d9b694f0e029c15cd6be6eedd79f6f4a01005af1eb1a17f166918413ba +SIZE (xpi/firefox-i18n-40.0.3/dsb.xpi) = 486591 +SHA256 (xpi/firefox-i18n-40.0.3/el.xpi) = 40d7f63513bb3d0b280bb25813b6a13f52779b0558d75b65b6a8fcb69960e242 +SIZE (xpi/firefox-i18n-40.0.3/el.xpi) = 513117 +SHA256 (xpi/firefox-i18n-40.0.3/en-GB.xpi) = e4fc56e6d8ffbd88df62dc5ed94ecf3594efe5157165727b22bbde72fd4dd1a8 +SIZE (xpi/firefox-i18n-40.0.3/en-GB.xpi) = 451900 +SHA256 (xpi/firefox-i18n-40.0.3/en-US.xpi) = 78010ec1a26181d369c10363fb19f92d2640ee8dca61282eea65913fbed3224a +SIZE (xpi/firefox-i18n-40.0.3/en-US.xpi) = 483748 +SHA256 (xpi/firefox-i18n-40.0.3/en-ZA.xpi) = 13b178fe4562587edb2ef0bfc72ea3daae9488d3125dee1288911d4d78cf8cae +SIZE (xpi/firefox-i18n-40.0.3/en-ZA.xpi) = 455370 +SHA256 (xpi/firefox-i18n-40.0.3/eo.xpi) = 993c33ffece8ce4c1e1fe4d931a752033ba191cdce8bef89b4459a1164e16fa8 +SIZE (xpi/firefox-i18n-40.0.3/eo.xpi) = 500202 +SHA256 (xpi/firefox-i18n-40.0.3/es-AR.xpi) = afdca33ee50fcf90b19a781e3ff59766562c5c4f829c36961122dffcdc20f855 +SIZE (xpi/firefox-i18n-40.0.3/es-AR.xpi) = 468599 +SHA256 (xpi/firefox-i18n-40.0.3/es-CL.xpi) = f7928068f48d900b73db21ee0599017785eac6b9087364ccce55fc356003a540 +SIZE (xpi/firefox-i18n-40.0.3/es-CL.xpi) = 394972 +SHA256 (xpi/firefox-i18n-40.0.3/es-ES.xpi) = fc6564877ca5404395624dbc62e22b22731134c69078e432ffd174fedac8a0de +SIZE (xpi/firefox-i18n-40.0.3/es-ES.xpi) = 383894 +SHA256 (xpi/firefox-i18n-40.0.3/es-MX.xpi) = de9c338485a5a32bf0e6b9a51fbc948b90006d8cc63e2a7303cda8adc5ed4ff4 +SIZE (xpi/firefox-i18n-40.0.3/es-MX.xpi) = 472917 +SHA256 (xpi/firefox-i18n-40.0.3/et.xpi) = 679dcef606b9091e8018b0aaf40b0285a4557dd56e5dd7132b407d250fc76aa9 +SIZE (xpi/firefox-i18n-40.0.3/et.xpi) = 457409 +SHA256 (xpi/firefox-i18n-40.0.3/eu.xpi) = e33bac2ff93ae3760b95a3a176fd0cc9e1a402fa4f174c10e77e6797d8cd27ce +SIZE (xpi/firefox-i18n-40.0.3/eu.xpi) = 481824 +SHA256 (xpi/firefox-i18n-40.0.3/fa.xpi) = e2f4ff8871be1d3a779891ae857e17a45ce92d84405c274862aa125f080624bf +SIZE (xpi/firefox-i18n-40.0.3/fa.xpi) = 526972 +SHA256 (xpi/firefox-i18n-40.0.3/ff.xpi) = 14e28b03a128727581782ca4320acda4eb560aac307b0b9ce463821a233412ac +SIZE (xpi/firefox-i18n-40.0.3/ff.xpi) = 465793 +SHA256 (xpi/firefox-i18n-40.0.3/fi.xpi) = e62fad8b4b2d96fc3f35920c69a7529be6e275e6c63ed293a32acf8f5d2ecf66 +SIZE (xpi/firefox-i18n-40.0.3/fi.xpi) = 459382 +SHA256 (xpi/firefox-i18n-40.0.3/fr.xpi) = d1daead0f4dddf6b06959e32f601128cb2764fd20a58372c1e587ae9b5f3a754 +SIZE (xpi/firefox-i18n-40.0.3/fr.xpi) = 477148 +SHA256 (xpi/firefox-i18n-40.0.3/fy-NL.xpi) = 511e4b459e7cd38236ef10bebcded90f360a30f08a3594815e298e1383b17453 +SIZE (xpi/firefox-i18n-40.0.3/fy-NL.xpi) = 471145 +SHA256 (xpi/firefox-i18n-40.0.3/ga-IE.xpi) = 6a9f8f72d0664c29214a7746aa83ac51fc5bd9c77b56d4048cd92b5bbcfaacf1 +SIZE (xpi/firefox-i18n-40.0.3/ga-IE.xpi) = 485536 +SHA256 (xpi/firefox-i18n-40.0.3/gd.xpi) = 9dc62003d7501e9234145e269d22ae647b9d6309005346294d438977c72be322 +SIZE (xpi/firefox-i18n-40.0.3/gd.xpi) = 469750 +SHA256 (xpi/firefox-i18n-40.0.3/gl.xpi) = 59437020832a39a3314e9c6654ea79dd8cad9cb997a23e34e83697c27b92b821 +SIZE (xpi/firefox-i18n-40.0.3/gl.xpi) = 463634 +SHA256 (xpi/firefox-i18n-40.0.3/gu-IN.xpi) = 9eaef0ede53a662b592d489ee033c60edf93292adefa3c4ea3d24b5eeaa99ccc +SIZE (xpi/firefox-i18n-40.0.3/gu-IN.xpi) = 498591 +SHA256 (xpi/firefox-i18n-40.0.3/he.xpi) = e058879bdeab1c86fde3e07a7ceb589604c40aaa8319c16b709222ae305d1466 +SIZE (xpi/firefox-i18n-40.0.3/he.xpi) = 497110 +SHA256 (xpi/firefox-i18n-40.0.3/hi-IN.xpi) = edf700377b3d384aacdc8a6a85fb9cad7385593d0689d6b0474b9a81782bbf80 +SIZE (xpi/firefox-i18n-40.0.3/hi-IN.xpi) = 519929 +SHA256 (xpi/firefox-i18n-40.0.3/hr.xpi) = 4b4cf824c97d6c4992905a13bbe4c16338c0524ce8f1ed762dc87dd830e91a55 +SIZE (xpi/firefox-i18n-40.0.3/hr.xpi) = 494492 +SHA256 (xpi/firefox-i18n-40.0.3/hsb.xpi) = fb7c6391fe76f9a31fbcec53bc253b4c781196f8341690d55e91190bddcfdf87 +SIZE (xpi/firefox-i18n-40.0.3/hsb.xpi) = 484247 +SHA256 (xpi/firefox-i18n-40.0.3/hu.xpi) = f5d5313195455272dba460ee8b29f887ac0acddc14461c69dacde89b884b71d0 +SIZE (xpi/firefox-i18n-40.0.3/hu.xpi) = 469054 +SHA256 (xpi/firefox-i18n-40.0.3/hy-AM.xpi) = 5a3d889d467a8d13bbe87b2e9fb8baafea19ba6730ce514ea953f52fadbba961 +SIZE (xpi/firefox-i18n-40.0.3/hy-AM.xpi) = 550065 +SHA256 (xpi/firefox-i18n-40.0.3/id.xpi) = 996a53ac0c9d6c826b0403b1520a1e8ea50b77bbb952784695602b56b0e93861 +SIZE (xpi/firefox-i18n-40.0.3/id.xpi) = 446092 +SHA256 (xpi/firefox-i18n-40.0.3/is.xpi) = c2f79f33d52b4d0cee20990cc497727b3cc69b3afa5bc031176d3bfcc8aa136f +SIZE (xpi/firefox-i18n-40.0.3/is.xpi) = 499894 +SHA256 (xpi/firefox-i18n-40.0.3/it.xpi) = 7f2fe994fd74847bbc5de393954a526e9c17cef5089e506a616247541684b9f4 +SIZE (xpi/firefox-i18n-40.0.3/it.xpi) = 377833 +SHA256 (xpi/firefox-i18n-40.0.3/ja.xpi) = 6e3f6870ff749e14cf22ad82bdefedbb2b152c802b86ab7f9b588da382f2c88c +SIZE (xpi/firefox-i18n-40.0.3/ja.xpi) = 495439 +SHA256 (xpi/firefox-i18n-40.0.3/kk.xpi) = dde3b84aab92cadf4b30c279781907fdf12796b7d2a91d4fbc68b2220e267189 +SIZE (xpi/firefox-i18n-40.0.3/kk.xpi) = 520131 +SHA256 (xpi/firefox-i18n-40.0.3/km.xpi) = c6c2e8c52afebd11fa20f51e0ab38ed7c0fa08f6f00c31ed8258c322343d2435 +SIZE (xpi/firefox-i18n-40.0.3/km.xpi) = 578734 +SHA256 (xpi/firefox-i18n-40.0.3/kn.xpi) = eb28a17c7c34dba3a4792aacaad8d4b25553ccc4114e4f87e7fdb0de7cccd0b8 +SIZE (xpi/firefox-i18n-40.0.3/kn.xpi) = 550864 +SHA256 (xpi/firefox-i18n-40.0.3/ko.xpi) = ac39a4c8ebc3d5b43d00b788bdf62c3de4a6fec74a0f8906d3e6fd14f8f62eac +SIZE (xpi/firefox-i18n-40.0.3/ko.xpi) = 476892 +SHA256 (xpi/firefox-i18n-40.0.3/lij.xpi) = cb592d8995127529c4f21c6547a8f954fef27da331b82abc4586fd367e2cf374 +SIZE (xpi/firefox-i18n-40.0.3/lij.xpi) = 462239 +SHA256 (xpi/firefox-i18n-40.0.3/lt.xpi) = d1c483d45096b8fb00d24057948197d4413c545b0e2a0cacf609fbfbb1f18bad +SIZE (xpi/firefox-i18n-40.0.3/lt.xpi) = 502211 +SHA256 (xpi/firefox-i18n-40.0.3/lv.xpi) = 1c5a49e3f40456c1a99a60376ec697a19ff82f25b79220df56e8b1c8fc5f9bfb +SIZE (xpi/firefox-i18n-40.0.3/lv.xpi) = 482486 +SHA256 (xpi/firefox-i18n-40.0.3/mai.xpi) = ff0e82f02ddd321ecc7d0f07a5f5a9b09ed67f27381dc59595dfa27a818ed6ac +SIZE (xpi/firefox-i18n-40.0.3/mai.xpi) = 527990 +SHA256 (xpi/firefox-i18n-40.0.3/mk.xpi) = a8b9dd7940f6c269dbd428166bea9e1e71dd99de25756bf0ddacfc2ab2f71549 +SIZE (xpi/firefox-i18n-40.0.3/mk.xpi) = 542563 +SHA256 (xpi/firefox-i18n-40.0.3/ml.xpi) = f3d5b491a6c1d664ae1cf0717157e775a73049f457664ca4e131aa851ea02d2f +SIZE (xpi/firefox-i18n-40.0.3/ml.xpi) = 540383 +SHA256 (xpi/firefox-i18n-40.0.3/mr.xpi) = 23bed23751ed673b6211d1421405b01814e895b341977bbfbcda146f263585a3 +SIZE (xpi/firefox-i18n-40.0.3/mr.xpi) = 522286 +SHA256 (xpi/firefox-i18n-40.0.3/ms.xpi) = 65abedc8974aa260ab7199d0f2f9fd151a8ccea8a7a1d44074f17cc5d258e378 +SIZE (xpi/firefox-i18n-40.0.3/ms.xpi) = 504520 +SHA256 (xpi/firefox-i18n-40.0.3/nb-NO.xpi) = 704280dc977a7d32c20416f2e9d7207e7ea05a0deb19368019b3120ddf480bc0 +SIZE (xpi/firefox-i18n-40.0.3/nb-NO.xpi) = 458941 +SHA256 (xpi/firefox-i18n-40.0.3/nl.xpi) = f53d67db63953781fda06b72d3424acde9efdcf47e027316c27189ab5d1ec043 +SIZE (xpi/firefox-i18n-40.0.3/nl.xpi) = 458630 +SHA256 (xpi/firefox-i18n-40.0.3/nn-NO.xpi) = 362f3f09a036d190156293ffee2d5a548fdb65fb07618bc2f8b5dbf40c6c831a +SIZE (xpi/firefox-i18n-40.0.3/nn-NO.xpi) = 453068 +SHA256 (xpi/firefox-i18n-40.0.3/or.xpi) = 37d119640c4095e3afa53c1df2ca7b548f68793f281894ca47d7457688f55373 +SIZE (xpi/firefox-i18n-40.0.3/or.xpi) = 539212 +SHA256 (xpi/firefox-i18n-40.0.3/pa-IN.xpi) = d70277e8b7d3805bb50ab1b6bb69b55dd84c871c567d7484b6c8a095d58730ef +SIZE (xpi/firefox-i18n-40.0.3/pa-IN.xpi) = 509122 +SHA256 (xpi/firefox-i18n-40.0.3/pl.xpi) = 4dca0edaef047cd54689e2ea4296598be5a86e098efb5347ad6fd5e307b6f213 +SIZE (xpi/firefox-i18n-40.0.3/pl.xpi) = 415191 +SHA256 (xpi/firefox-i18n-40.0.3/pt-BR.xpi) = 419ebf4fc0d8d23b17b6ff0b971d18f0b94b33267d1bbbc6b4437fb6c3c3150f +SIZE (xpi/firefox-i18n-40.0.3/pt-BR.xpi) = 475443 +SHA256 (xpi/firefox-i18n-40.0.3/pt-PT.xpi) = 1ba5b9fee35b1d35f4e7f4363056d379c016f1dc60f7ea03412bc29623ef60fc +SIZE (xpi/firefox-i18n-40.0.3/pt-PT.xpi) = 456035 +SHA256 (xpi/firefox-i18n-40.0.3/rm.xpi) = 164438a83d9edd555aa39a4fed844c2520351b1ceb6e3a38786c89ff085acd57 +SIZE (xpi/firefox-i18n-40.0.3/rm.xpi) = 461466 +SHA256 (xpi/firefox-i18n-40.0.3/ro.xpi) = e6b69e1f86dfed31a103ae5f8b5c5bdc39abae0e10826177ef8d9118e37628ce +SIZE (xpi/firefox-i18n-40.0.3/ro.xpi) = 509716 +SHA256 (xpi/firefox-i18n-40.0.3/ru.xpi) = 2eb09947c80d43bcca12e30ff4320deb1f02dfaad8aa94f746a2088d362c8252 +SIZE (xpi/firefox-i18n-40.0.3/ru.xpi) = 425657 +SHA256 (xpi/firefox-i18n-40.0.3/si.xpi) = a3fdc5a4aac6c0e7ded4cfa6a3bf0d84545a44b064c5df736422bc41923e91a0 +SIZE (xpi/firefox-i18n-40.0.3/si.xpi) = 548768 +SHA256 (xpi/firefox-i18n-40.0.3/sk.xpi) = c379a93e531c2c412aa2e98c06a645c8e0b26b24d80d988966e23b2126c71358 +SIZE (xpi/firefox-i18n-40.0.3/sk.xpi) = 485121 +SHA256 (xpi/firefox-i18n-40.0.3/sl.xpi) = 8fd09f59342a80843e53c34b0d9d9ca5c347a08c64beccb9386f5ba7cc3637c0 +SIZE (xpi/firefox-i18n-40.0.3/sl.xpi) = 457940 +SHA256 (xpi/firefox-i18n-40.0.3/son.xpi) = d0265a35389b89f79fe8a92af7eef67160edfc21ccaa9c68c0b71c1bb7d1c8bf +SIZE (xpi/firefox-i18n-40.0.3/son.xpi) = 465948 +SHA256 (xpi/firefox-i18n-40.0.3/sq.xpi) = afd42e2a29f28d6c601d962acf709b33a010ee2a7bef4b4e3bcbbb42354cfc07 +SIZE (xpi/firefox-i18n-40.0.3/sq.xpi) = 501445 +SHA256 (xpi/firefox-i18n-40.0.3/sr.xpi) = c5981e3c19480f1fd3c9a4a952c734bf1b300d160fa03f05c56a1622b4676978 +SIZE (xpi/firefox-i18n-40.0.3/sr.xpi) = 494736 +SHA256 (xpi/firefox-i18n-40.0.3/sv-SE.xpi) = fde03b6f0869804b7624667b01d468503e9cdbc22c9112cef781760712a98298 +SIZE (xpi/firefox-i18n-40.0.3/sv-SE.xpi) = 467791 +SHA256 (xpi/firefox-i18n-40.0.3/ta.xpi) = 18e0e398117e2b1b99431d534c8b709113173b4b57abfd61f66f216f8f7bba11 +SIZE (xpi/firefox-i18n-40.0.3/ta.xpi) = 521801 +SHA256 (xpi/firefox-i18n-40.0.3/te.xpi) = 92543ca8942593ebc6c2033832136b411fffb3da5278727f766995245ecb6957 +SIZE (xpi/firefox-i18n-40.0.3/te.xpi) = 540972 +SHA256 (xpi/firefox-i18n-40.0.3/th.xpi) = 24dcadec477da92d757f72598b434a1e59613681ff9bbeca2530d7b28d7227e0 +SIZE (xpi/firefox-i18n-40.0.3/th.xpi) = 550265 +SHA256 (xpi/firefox-i18n-40.0.3/tr.xpi) = e0ee75872b49c201eb4b35f4e8bb877255c9b1af010641b3129672a409e64c77 +SIZE (xpi/firefox-i18n-40.0.3/tr.xpi) = 496254 +SHA256 (xpi/firefox-i18n-40.0.3/uk.xpi) = 67ab7024c3c29c6ce7e054a9c65362c942557aa636ffa673d05485ab717804fd +SIZE (xpi/firefox-i18n-40.0.3/uk.xpi) = 511145 +SHA256 (xpi/firefox-i18n-40.0.3/vi.xpi) = f64479928fd58ebe2bff6d09ac26e54e3f56db7b37a465dbe4e6078a8989a117 +SIZE (xpi/firefox-i18n-40.0.3/vi.xpi) = 481059 +SHA256 (xpi/firefox-i18n-40.0.3/xh.xpi) = 54948f041df5be3c074ba2bf2bf7769fa3b45751038dd61b94cf3fa09e0a9d72 +SIZE (xpi/firefox-i18n-40.0.3/xh.xpi) = 461039 +SHA256 (xpi/firefox-i18n-40.0.3/zh-CN.xpi) = 86346005557d217110e624e1d98037a5cf634228b4bd42b38fb2b9ba38411999 +SIZE (xpi/firefox-i18n-40.0.3/zh-CN.xpi) = 504409 +SHA256 (xpi/firefox-i18n-40.0.3/zh-TW.xpi) = 36be93979c452610d01adafe926b05dd11d7e92211cea9f10bc697b70acb0a52 +SIZE (xpi/firefox-i18n-40.0.3/zh-TW.xpi) = 491275 Modified: branches/2015Q3/www/firefox/Makefile ============================================================================== --- branches/2015Q3/www/firefox/Makefile Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/firefox/Makefile Fri Aug 28 16:21:24 2015 (r395508) @@ -2,13 +2,12 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 40.0 +DISTVERSION= 40.0.3 DISTVERSIONSUFFIX=.source -PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build5/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla Modified: branches/2015Q3/www/firefox/distinfo ============================================================================== --- branches/2015Q3/www/firefox/distinfo Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/firefox/distinfo Fri Aug 28 16:21:24 2015 (r395508) @@ -1,2 +1,2 @@ -SHA256 (firefox-40.0.source.tar.bz2) = e3a26164b3a7f1aefbe13a07f0fdcd322726e4bb8c7e9432d1671c8c9e37145a -SIZE (firefox-40.0.source.tar.bz2) = 178288925 +SHA256 (firefox-40.0.3.source.tar.bz2) = 56ab32bfa070a1d86d356ad14ce74252b38dab9307948de8e4a3a2b7f3f22634 +SIZE (firefox-40.0.3.source.tar.bz2) = 178261482 Modified: branches/2015Q3/www/libxul/Makefile ============================================================================== --- branches/2015Q3/www/libxul/Makefile Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/libxul/Makefile Fri Aug 28 16:21:24 2015 (r395508) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libxul -DISTVERSION= 38.2.0 -PORTREVISION= 3 +DISTVERSION= 38.2.1 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source Modified: branches/2015Q3/www/libxul/distinfo ============================================================================== --- branches/2015Q3/www/libxul/distinfo Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/libxul/distinfo Fri Aug 28 16:21:24 2015 (r395508) @@ -1,2 +1,2 @@ -SHA256 (firefox-38.2.0esr.source.tar.bz2) = 55867254f21cfc610aa63c8aa0d7156df6eb4c0cb37ebac30259e4890170aacb -SIZE (firefox-38.2.0esr.source.tar.bz2) = 180722192 +SHA256 (firefox-38.2.1esr.source.tar.bz2) = 0143b3f99ccb390949d7f3847215f6f9b4bb7cd692f4f802921d2f9961bf270a +SIZE (firefox-38.2.1esr.source.tar.bz2) = 180722074 Modified: branches/2015Q3/www/linux-firefox/Makefile ============================================================================== --- branches/2015Q3/www/linux-firefox/Makefile Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/linux-firefox/Makefile Fri Aug 28 16:21:24 2015 (r395508) @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 40.0 -PORTREVISION= 1 +DISTVERSION= 40.0.3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build5/linux-i686/en-US + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/linux-i686/en-US MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla Modified: branches/2015Q3/www/linux-firefox/distinfo ============================================================================== --- branches/2015Q3/www/linux-firefox/distinfo Fri Aug 28 16:18:32 2015 (r395507) +++ branches/2015Q3/www/linux-firefox/distinfo Fri Aug 28 16:21:24 2015 (r395508) @@ -1,5 +1,5 @@ -SHA256 (firefox-40.0.tar.bz2) = 56a15bfc31445defde693843d88faa249419d4ba97e2addfa8fb311e4b8b4b65 -SIZE (firefox-40.0.tar.bz2) = 49230121 +SHA256 (firefox-40.0.3.tar.bz2) = af3eaa3b56c8223d51079c62f00f36da0d200f28d59f6457c6794e2142b7925e +SIZE (firefox-40.0.3.tar.bz2) = 49233137 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 Fri Aug 28 17:00:48 2015 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 76F429C3631; Fri, 28 Aug 2015 17:00:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 67AED1917; Fri, 28 Aug 2015 17:00:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7SH0mNr076603; Fri, 28 Aug 2015 17:00:48 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7SH0lwe076601; Fri, 28 Aug 2015 17:00:47 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508281700.t7SH0lwe076601@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 28 Aug 2015 17:00:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395515 - in branches/2015Q3/devel/sgb: . 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.20 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, 28 Aug 2015 17:00:48 -0000 Author: amdmi3 Date: Fri Aug 28 17:00:47 2015 New Revision: 395515 URL: https://svnweb.freebsd.org/changeset/ports/395515 Log: MFH: r395476 - Fix installed files referencing STAGEDIR - Simplify the port a bit in the process Approved by: portmgr blanket Approved by: ports-secteam (delphij) Modified: branches/2015Q3/devel/sgb/Makefile branches/2015Q3/devel/sgb/files/patch-Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/devel/sgb/Makefile ============================================================================== --- branches/2015Q3/devel/sgb/Makefile Fri Aug 28 16:56:52 2015 (r395514) +++ branches/2015Q3/devel/sgb/Makefile Fri Aug 28 17:00:47 2015 (r395515) @@ -3,6 +3,7 @@ PORTNAME= sgb PORTVERSION= 20090810 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ftp://ftp.cs.stanford.edu/pub/sgb/ \ GENTOO @@ -16,11 +17,8 @@ BUILD_DEPENDS= ctangle:${PORTSDIR}/devel NO_WRKSUBDIR= yes ALL_TARGET= lib tests MAKE_JOBS_UNSAFE= yes -MAKE_ENV+= STAGEDIR=${STAGEDIR} - -.include post-extract: ${CP} ${WRKSRC}/PROTOTYPES/* ${WRKSRC} -.include +.include Modified: branches/2015Q3/devel/sgb/files/patch-Makefile ============================================================================== --- branches/2015Q3/devel/sgb/files/patch-Makefile Fri Aug 28 16:56:52 2015 (r395514) +++ branches/2015Q3/devel/sgb/files/patch-Makefile Fri Aug 28 17:00:47 2015 (r395515) @@ -1,11 +1,11 @@ ---- Makefile Mon Dec 27 23:27:24 1999 -+++ /home/pfeifer/Makefile Sat Feb 3 16:08:07 2007 +--- Makefile.orig 1999-12-27 22:27:24 UTC ++++ Makefile @@ -8,22 +8,22 @@ # current directory. (Not recommended for serious users.) # Change SGBDIR to the directory where all GraphBase files will go: -SGBDIR = /usr/local/sgb -+SGBDIR = ${STAGEDIR}/${PREFIX} ++SGBDIR = ${PREFIX} # Change DATADIR to the directory where GraphBase data files will go: -DATADIR = $(SGBDIR)/data @@ -28,14 +28,37 @@ # SHORTCUT: Uncomment these lines, for single-directory installation: #DATADIR = . -@@ -130,9 +130,9 @@ +@@ -130,22 +130,22 @@ tests: test_io test_graph test_flip install: lib if test ! -r certified; then echo "Please run 'make tests' first!"; fi test -r certified -- make installdata - - mkdir $(LIBDIR) - - cp libgb.a $(LIBDIR) -+ make installdata - - mkdir $(CWEBINPUTS) - - cp -p boilerplate.w gb_types.w $(CWEBINPUTS) - - mkdir $(INCLUDEDIR) ++ - mkdir ${DESTDIR}$(LIBDIR) ++ - cp libgb.a ${DESTDIR}$(LIBDIR) + make installdata +- - mkdir $(LIBDIR) +- - cp libgb.a $(LIBDIR) +- - mkdir $(CWEBINPUTS) +- - cp -p boilerplate.w gb_types.w $(CWEBINPUTS) +- - mkdir $(INCLUDEDIR) +- - cp -p $(HEADERS) Makefile $(INCLUDEDIR) ++ - mkdir ${DESTDIR}$(CWEBINPUTS) ++ - cp -p boilerplate.w gb_types.w ${DESTDIR}$(CWEBINPUTS) ++ - mkdir ${DESTDIR}$(INCLUDEDIR) ++ - cp -p $(HEADERS) Makefile ${DESTDIR}$(INCLUDEDIR) + + installdata: $(DATAFILES) +- - mkdir $(SGBDIR) +- - mkdir $(DATADIR) +- - cp -p $(DATAFILES) $(DATADIR) ++ - mkdir ${DESTDIR}$(SGBDIR) ++ - mkdir ${DESTDIR}$(DATADIR) ++ - cp -p $(DATAFILES) ${DESTDIR}$(DATADIR) + + installdemos: lib $(DEMOS) +- - mkdir $(BINDIR) +- - mv $(DEMOS) $(BINDIR) ++ - mkdir ${DESTDIR}$(BINDIR) ++ - mv $(DEMOS) ${DESTDIR}$(BINDIR) + + uninstalldemos: + - cd $(BINDIR); rm -f $(DEMOS) From owner-svn-ports-branches@freebsd.org Sat Aug 29 21:58:28 2015 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 4FD9D9C4AE3; Sat, 29 Aug 2015 21:58:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 27959DED; Sat, 29 Aug 2015 21:58:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7TLwROM039309; Sat, 29 Aug 2015 21:58:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7TLwRwd039308; Sat, 29 Aug 2015 21:58:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508292158.t7TLwRwd039308@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 29 Aug 2015 21:58:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395575 - branches/2015Q3/multimedia/mplayer2 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.20 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, 29 Aug 2015 21:58:28 -0000 Author: jbeich Date: Sat Aug 29 21:58:27 2015 New Revision: 395575 URL: https://svnweb.freebsd.org/changeset/ports/395575 Log: MFH: r395434 multimedia/mplayer2: slightly improve options - Make CACA=on actually work - Convert PULSE and LIBCDIO to standard spelling - Drop option descriptions where standardized PR: 202404 Submitted by: Carlos J Puga Medina (maintainer) Approved by: ports-secteam (delphij) Modified: branches/2015Q3/multimedia/mplayer2/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/multimedia/mplayer2/Makefile ============================================================================== --- branches/2015Q3/multimedia/mplayer2/Makefile Sat Aug 29 21:48:58 2015 (r395574) +++ branches/2015Q3/multimedia/mplayer2/Makefile Sat Aug 29 21:58:27 2015 (r395575) @@ -2,7 +2,7 @@ PORTNAME= mplayer2 PORTVERSION= ${MPLAYER2_PORT_VERSION} -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= multimedia audio MASTER_SITES= LOCAL/gblach/ @@ -44,8 +44,8 @@ MPLAYER2_PORT_VERSION= 2.0.${MPLAYER2_SN OPTIONS_DEFINE= DEBUG RTC IPV6 SMB LIBBLURAY DV THEORA \ X11 XINERAMA OPENGL SDL VDPAU GIF CACA \ - MAD SPEEX LIBCDIO LADSPA REALPLAYER \ - JACK PULSE PORTAUDIO ASS LIRC + MAD SPEEX CDIO LADSPA REALPLAYER \ + JACK PULSEAUDIO PORTAUDIO ASS LIRC OPTIONS_DEFAULT=X11 ASS .if !defined(PACKAGE_BUILDING) @@ -54,14 +54,9 @@ OPTIONS_DEFAULT+= WIN32 .endif RTC_DESC= Enable kernel realtime clock timing -PULSE_DESC= Enable PulseAudio support -THEORA_DESC= Enable ogg theora video support ASS_DESC= Enable ASS/SSA subtitle rendering WIN32_DESC= Enable win32 codec set on the IA32 arch REALPLAYER_DESC=Enable realplayer plugin -LIRC_DESC= Enable lirc support -LIBCDIO_DESC= Enable libcdio support -V4L_DESC= Enable Video4Linux TV support SUB_FILES= pkg-message @@ -132,7 +127,7 @@ LIB_DEPENDS+= libjack.so:${PORTSDIR}/au CONFIGURE_ARGS+= --disable-jack .endif -.if ${PORT_OPTIONS:MPULSE} +.if ${PORT_OPTIONS:MPULSEAUDIO} LIB_DEPENDS+= libpulse.so:${PORTSDIR}/audio/pulseaudio .else CONFIGURE_ARGS+= --disable-pulse @@ -157,7 +152,7 @@ LIB_DEPENDS+= libsmbclient.so:${PORTSDI CONFIGURE_ARGS+= --disable-smb .endif -.if ${PORT_OPTIONS:MLIBCDIO} +.if ${PORT_OPTIONS:MCDIO} LIB_DEPENDS+= libcdio_paranoia.so:${PORTSDIR}/sysutils/libcdio-paranoia .else CONFIGURE_ARGS+= --disable-libcdio @@ -237,7 +232,7 @@ CONFIGURE_ARGS+= --enable-rtc CONFIGURE_ARGS+= --disable-rtc .endif -.if ${PORT_OPTIONS:MLIBCACA} +.if ${PORT_OPTIONS:MCACA} LIB_DEPENDS+= libcaca.so:${PORTSDIR}/graphics/libcaca .else CONFIGURE_ARGS+= --disable-caca From owner-svn-ports-branches@freebsd.org Sat Aug 29 22:07:26 2015 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 D5D6A9C4FAC; Sat, 29 Aug 2015 22:07:26 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 C58E733C; Sat, 29 Aug 2015 22:07:26 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7TM7QEg043582; Sat, 29 Aug 2015 22:07:26 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7TM7QjT043579; Sat, 29 Aug 2015 22:07:26 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508292207.t7TM7QjT043579@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 29 Aug 2015 22:07:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395576 - in branches/2015Q3/multimedia/mplayer2: . 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.20 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, 29 Aug 2015 22:07:27 -0000 Author: jbeich Date: Sat Aug 29 22:07:25 2015 New Revision: 395576 URL: https://svnweb.freebsd.org/changeset/ports/395576 Log: MFH: r395460 multimedia/mplayer2: make GIF=on actually work GIF option was both auto-disabled during configure and broken when forced to be enabled. So, bump PORTREVISION to restore GIF support for users with GIF=on. PR: 202404 Submitted by: Carlos J Puga Medina (maintainer) Approved by: ports-secteam (delphij) Added: branches/2015Q3/multimedia/mplayer2/files/patch-libvo_vo_gif89a.c - copied unchanged from r395460, head/multimedia/mplayer2/files/patch-libvo_vo_gif89a.c Modified: branches/2015Q3/multimedia/mplayer2/Makefile branches/2015Q3/multimedia/mplayer2/files/patch-libmpdemux-demux_gif.c Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/multimedia/mplayer2/Makefile ============================================================================== --- branches/2015Q3/multimedia/mplayer2/Makefile Sat Aug 29 21:58:27 2015 (r395575) +++ branches/2015Q3/multimedia/mplayer2/Makefile Sat Aug 29 22:07:25 2015 (r395576) @@ -2,7 +2,7 @@ PORTNAME= mplayer2 PORTVERSION= ${MPLAYER2_PORT_VERSION} -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= multimedia audio MASTER_SITES= LOCAL/gblach/ @@ -93,6 +93,7 @@ CONFIGURE_ARGS+= --disable-inet6 .if ${PORT_OPTIONS:MGIF} LIB_DEPENDS+= libgif.so:${PORTSDIR}/graphics/giflib +CONFIGURE_ARGS+= --enable-gif .else CONFIGURE_ARGS+= --disable-gif .endif Modified: branches/2015Q3/multimedia/mplayer2/files/patch-libmpdemux-demux_gif.c ============================================================================== --- branches/2015Q3/multimedia/mplayer2/files/patch-libmpdemux-demux_gif.c Sat Aug 29 21:58:27 2015 (r395575) +++ branches/2015Q3/multimedia/mplayer2/files/patch-libmpdemux-demux_gif.c Sat Aug 29 22:07:25 2015 (r395576) @@ -1,19 +1,86 @@ ---- libmpdemux/demux_gif.c.orig 2012-12-31 00:26:50.000000000 +0100 -+++ libmpdemux/demux_gif.c 2012-12-31 00:30:54.000000000 +0100 -@@ -44,6 +44,16 @@ +--- libmpdemux/demux_gif.c.orig 2013-07-09 16:33:16 UTC ++++ libmpdemux/demux_gif.c +@@ -93,14 +93,14 @@ static int demux_gif_fill_buffer(demuxer - #define GIF_SIGNATURE (('G' << 16) | ('I' << 8) | 'F') + while (type != IMAGE_DESC_RECORD_TYPE) { + if (DGifGetRecordType(gif, &type) == GIF_ERROR) { +- PrintGifError(); ++ printf("%s\n", GifErrorString(GIF_ERROR)); + return 0; // oops + } + if (type == TERMINATE_RECORD_TYPE) + return 0; // eof + if (type == SCREEN_DESC_RECORD_TYPE) { + if (DGifGetScreenDesc(gif) == GIF_ERROR) { +- PrintGifError(); ++ printf("%s\n", GifErrorString(GIF_ERROR)); + return 0; // oops + } + } +@@ -108,7 +108,7 @@ static int demux_gif_fill_buffer(demuxer + int code; + unsigned char *p = NULL; + if (DGifGetExtension(gif, &code, &p) == GIF_ERROR) { +- PrintGifError(); ++ printf("%s\n", GifErrorString(GIF_ERROR)); + return 0; // oops + } + if (code == 0xF9) { +@@ -137,7 +137,7 @@ static int demux_gif_fill_buffer(demuxer + comments[length] = 0; + printf("%s", comments); + if (DGifGetExtensionNext(gif, &p) == GIF_ERROR) { +- PrintGifError(); ++ printf("%s\n", GifErrorString(GIF_ERROR)); + return 0; // oops + } + } +@@ -145,7 +145,7 @@ static int demux_gif_fill_buffer(demuxer + } + while (p != NULL) { + if (DGifGetExtensionNext(gif, &p) == GIF_ERROR) { +- PrintGifError(); ++ printf("%s\n", GifErrorString(GIF_ERROR)); + return 0; // oops + } + } +@@ -153,7 +153,7 @@ static int demux_gif_fill_buffer(demuxer + } -+static void PrintGifError(void) -+{ -+ char *Err = GifErrorString(); -+ -+ if (Err != NULL) -+ fprintf(stderr, "\nGIF-LIB error: %s.\n", Err); -+ else -+ fprintf(stderr, "\nGIF-LIB undefined error %d.\n", GifError()); -+} -+ - #ifndef CONFIG_GIF_TVT_HACK - // not supported by certain versions of the library - static int my_read_gif(GifFileType *gif, uint8_t *buf, int len) + if (DGifGetImageDesc(gif) == GIF_ERROR) { +- PrintGifError(); ++ printf("%s\n", GifErrorString(GIF_ERROR)); + return 0; // oops + } + +@@ -166,7 +166,7 @@ static int demux_gif_fill_buffer(demuxer + memset(dp->buffer, gif->SBackGroundColor, priv->w * priv->h); + + if (DGifGetLine(gif, buf, len) == GIF_ERROR) { +- PrintGifError(); ++ printf("%s\n", GifErrorString(GIF_ERROR)); + free(buf); + return 0; // oops + } +@@ -256,10 +256,10 @@ static demuxer_t* demux_open_gif(demuxer + lseek(demuxer->stream->fd, 0, SEEK_SET); + gif = DGifOpenFileHandle(demuxer->stream->fd); + #else +- gif = DGifOpen(demuxer->stream, my_read_gif); ++ gif = DGifOpen(demuxer->stream, my_read_gif, NULL); + #endif + if (!gif) { +- PrintGifError(); ++ printf("%s\n", GifErrorString(GIF_ERROR)); + free(priv); + return NULL; + } +@@ -301,7 +301,7 @@ static void demux_close_gif(demuxer_t* d + gif_priv_t *priv = demuxer->priv; + if (!priv) return; + if (priv->gif && DGifCloseFile(priv->gif) == GIF_ERROR) +- PrintGifError(); ++ printf("%s\n", GifErrorString(GIF_ERROR)); + free(priv->refimg); + free(priv); + } Copied: branches/2015Q3/multimedia/mplayer2/files/patch-libvo_vo_gif89a.c (from r395460, head/multimedia/mplayer2/files/patch-libvo_vo_gif89a.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q3/multimedia/mplayer2/files/patch-libvo_vo_gif89a.c Sat Aug 29 22:07:25 2015 (r395576, copy of r395460, head/multimedia/mplayer2/files/patch-libvo_vo_gif89a.c) @@ -0,0 +1,117 @@ +--- libvo/vo_gif89a.c.orig 2013-07-09 16:33:16 UTC ++++ libvo/vo_gif89a.c +@@ -44,13 +44,13 @@ + * entire argument being interpretted as the filename. + */ + +-#include +- + #include + #include + #include + #include + ++#include ++ + #include "config.h" + #include "subopt-helper.h" + #include "video_out.h" +@@ -69,6 +69,15 @@ static const vo_info_t info = { + + const LIBVO_EXTERN(gif89a) + ++#if defined GIFLIB_MAJOR && GIFLIB_MAJOR >= 5 ++#define EGifOpenFileName(a, b) EGifOpenFileName(a, b, NULL) ++#define MakeMapObject GifMakeMapObject ++#define FreeMapObject GifFreeMapObject ++#define QuantizeBuffer GifQuantizeBuffer ++#if defined GIFLIB_MINOR && GIFLIB_MINOR >= 1 ++#define EGifCloseFile(a) EGifCloseFile(a, NULL) ++#endif ++#endif + + // how many frames per second we are aiming for during output. + static float target_fps; +@@ -92,6 +101,8 @@ static uint32_t img_width; + static uint32_t img_height; + // image data for slice rendering + static uint8_t *slice_data = NULL; ++// pointer for whole frame rendering ++static uint8_t *frame_data = NULL; + // reduced image data for flip_page + static uint8_t *reduce_data = NULL; + // reduced color map for flip_page +@@ -156,7 +167,7 @@ static int config(uint32_t s_width, uint + uint32_t d_height, uint32_t flags, char *title, + uint32_t format) + { +-#ifdef CONFIG_GIF_4 ++#if defined CONFIG_GIF_4 || GIFLIB_MAJOR >= 5 + // these are control blocks for the gif looping extension. + char LB1[] = "NETSCAPE2.0"; + char LB2[] = { 1, 0, 0 }; +@@ -185,23 +196,25 @@ static int config(uint32_t s_width, uint + return 1; + } + ++ new_gif = EGifOpenFileName(gif_filename, 0); ++ if (new_gif == NULL) { ++ mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: error opening file \"%s\" for output.\n", gif_filename); ++ return 1; ++ } ++ ++#if defined GIFLIB_MAJOR && GIFLIB_MAJOR >= 5 ++ EGifSetGifVersion(new_gif, 1); ++#elif defined CONFIG_GIF_4 + // the EGifSetGifVersion line causes segfaults in certain + // earlier versions of libungif. i don't know exactly which, + // but certainly in all those before v4. if you have problems, + // you need to upgrade your gif library. +-#ifdef CONFIG_GIF_4 + EGifSetGifVersion("89a"); + #else + mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: Your version of libungif needs to be upgraded.\n"); + mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: Some functionality has been disabled.\n"); + #endif + +- new_gif = EGifOpenFileName(gif_filename, 0); +- if (new_gif == NULL) { +- mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: error opening file \"%s\" for output.\n", gif_filename); +- return 1; +- } +- + slice_data = malloc(img_width * img_height * 3); + if (slice_data == NULL) { + mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: malloc failed.\n"); +@@ -231,7 +244,12 @@ static int config(uint32_t s_width, uint + + // set the initial width and height info. + EGifPutScreenDesc(new_gif, s_width, s_height, 256, 0, reduce_cmap); +-#ifdef CONFIG_GIF_4 ++#if defined GIFLIB_MAJOR && GIFLIB_MAJOR >= 5 ++ EGifPutExtensionLeader(new_gif, 0xFF); ++ EGifPutExtensionBlock(new_gif, 11, LB1); ++ EGifPutExtensionBlock(new_gif, 3, LB2); ++ EGifPutExtensionTrailer(new_gif); ++#elif defined CONFIG_GIF_4 + // version 3 of libungif does not support multiple control blocks. + // looping requires multiple control blocks. + // therefore, looping is only enabled for v4 and up. +@@ -311,7 +329,8 @@ static void flip_page(void) + + static int draw_frame(uint8_t *src[]) + { +- return 1; ++ frame_data = src[0]; ++ return 0; + } + + static int draw_slice(uint8_t *src[], int stride[], int w, int h, int x, int y) +@@ -370,6 +389,7 @@ static void uninit(void) + // set the pointers back to null. + new_gif = NULL; + gif_filename = NULL; ++ frame_data = NULL; + slice_data = NULL; + reduce_data = NULL; + reduce_cmap = NULL; From owner-svn-ports-branches@freebsd.org Sat Aug 29 22:09:46 2015 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 1C1719C50BB; Sat, 29 Aug 2015 22:09:46 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 E6EF56A0; Sat, 29 Aug 2015 22:09:45 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7TM9jhb043900; Sat, 29 Aug 2015 22:09:45 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7TM9idF043896; Sat, 29 Aug 2015 22:09:44 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508292209.t7TM9idF043896@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 29 Aug 2015 22:09:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395577 - in branches/2015Q3/audio: cmus gogglesmm musicpd xmms2 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.20 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, 29 Aug 2015 22:09:46 -0000 Author: jbeich Date: Sat Aug 29 22:09:44 2015 New Revision: 395577 URL: https://svnweb.freebsd.org/changeset/ports/395577 Log: MFH: r395574 audio/libtremor: bump PORTREVISION in consumers after r395232 libvorbisidec.so.1.0.2 -> libvorbisidec.so.1.0.3 ACC report: https://people.freebsd.org/~jbeich/compat_reports/libtremor/1.2.0.s20040213_to_1.2.1.s20150105/compat_report.html Pointy hat to: jbeich Approved by: ports-secteam reliability blanket Modified: branches/2015Q3/audio/cmus/Makefile branches/2015Q3/audio/gogglesmm/Makefile branches/2015Q3/audio/musicpd/Makefile branches/2015Q3/audio/xmms2/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/audio/cmus/Makefile ============================================================================== --- branches/2015Q3/audio/cmus/Makefile Sat Aug 29 22:07:25 2015 (r395576) +++ branches/2015Q3/audio/cmus/Makefile Sat Aug 29 22:09:44 2015 (r395577) @@ -4,7 +4,7 @@ PORTNAME= cmus PORTVERSION= 2.6.0 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MAINTAINER= h.skuhra@gmail.com Modified: branches/2015Q3/audio/gogglesmm/Makefile ============================================================================== --- branches/2015Q3/audio/gogglesmm/Makefile Sat Aug 29 22:07:25 2015 (r395576) +++ branches/2015Q3/audio/gogglesmm/Makefile Sat Aug 29 22:09:44 2015 (r395577) @@ -3,6 +3,7 @@ PORTNAME= gogglesmm PORTVERSION= 0.14.2 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= bapt@FreeBSD.org Modified: branches/2015Q3/audio/musicpd/Makefile ============================================================================== --- branches/2015Q3/audio/musicpd/Makefile Sat Aug 29 22:07:25 2015 (r395576) +++ branches/2015Q3/audio/musicpd/Makefile Sat Aug 29 22:09:44 2015 (r395577) @@ -2,6 +2,7 @@ PORTNAME= musicpd PORTVERSION= 0.18.23 +PORTREVISION= 1 CATEGORIES= audio ipv6 MASTER_SITES= http://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} Modified: branches/2015Q3/audio/xmms2/Makefile ============================================================================== --- branches/2015Q3/audio/xmms2/Makefile Sat Aug 29 22:07:25 2015 (r395576) +++ branches/2015Q3/audio/xmms2/Makefile Sat Aug 29 22:09:44 2015 (r395577) @@ -4,7 +4,7 @@ PORTNAME?= xmms2 PORTVERSION= 0.8 DISTVERSIONSUFFIX=DrO_o -PORTREVISION?= 15 +PORTREVISION?= 16 CATEGORIES?= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}%20${DISTVERSIONSUFFIX}