svn commit: r403816 - in branches/2015Q4/devel/subversion: . files
Olli Hauer
ohauer at FreeBSD.org
Tue Dec 15 21:37:17 UTC 2015
Author: ohauer
Date: Tue Dec 15 21:37:15 2015
New Revision: 403816
URL: https://svnweb.freebsd.org/changeset/ports/403816
Log:
MFH: r403808
- update to 1.8.15
Version 1.8.15
(15 Dec 2015, from /branches/1.8.x)
http://svn.apache.org/repos/asf/subversion/tags/1.8.15
User-visible changes:
- Client-side bugfixes:
* gpg-agent: fix crash with non-canonical $HOME (r1691928, issue #4584)
- Client-side and server-side bugfixes:
* fix a segfault with old style text delta (r1618472 et al)
- Server-side bugfixes:
* fsfs: reduce memory allocation with Apache (r1591005 et al)
* mod_dav_svn: emit first log items as soon as possible (r1666965 et al)
* mod_dav_svn: use LimitXMLRequestBody for skel-encoded requests (r1687812)
- Bindings bugfixes:
* swig: fix memory corruption in svn_client_copy_source_t (r1694929)
Developer-visible changes:
- General:
* better configure-time detection of httpd authz fix (r1687304 et al)
* fix compilation with apr 1.2.x (r1701237)
Approved by: lev@ (explicit)
Approved by: portmgr (feld@)
Security: vid="daadef86-a366-11e5-8b40-20cf30e32f6d"
Modified:
branches/2015Q4/devel/subversion/Makefile
branches/2015Q4/devel/subversion/Makefile.common
branches/2015Q4/devel/subversion/distinfo
branches/2015Q4/devel/subversion/files/220_subversion.conf.sample.in
branches/2015Q4/devel/subversion/files/build-outputs.mk.addons
Modified: branches/2015Q4/devel/subversion/Makefile
==============================================================================
--- branches/2015Q4/devel/subversion/Makefile Tue Dec 15 21:37:12 2015 (r403815)
+++ branches/2015Q4/devel/subversion/Makefile Tue Dec 15 21:37:15 2015 (r403816)
@@ -1,7 +1,7 @@
# Created by: rooneg at electricjellyfish.net
# $FreeBSD$
-PORTREVISION= 2
+PORTREVISION= 3
MAINTAINER= lev at FreeBSD.org
COMMENT= Version control system
@@ -169,9 +169,9 @@ post-install: ${MKREPOS_TARGET}
(cd ${WRKSRC}/tools.examples && ${TAR} --exclude '*.in' -cf - * | ${TAR} -C ${STAGEDIR}${DATADIR} -xof - )
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
-.if ${PORT_OPTIONS:MSVNSERVE_WRAPPER}
+
+post-install-SVNSERVE_WRAPPER-on:
@${INSTALL_SCRIPT} ${FILESDIR}/svnserve.wrapper ${STAGEDIR}${PREFIX}/bin/svnserve.sample
-.endif
# ===============================================================================
repository: _mkrepos
Modified: branches/2015Q4/devel/subversion/Makefile.common
==============================================================================
--- branches/2015Q4/devel/subversion/Makefile.common Tue Dec 15 21:37:12 2015 (r403815)
+++ branches/2015Q4/devel/subversion/Makefile.common Tue Dec 15 21:37:15 2015 (r403816)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME?= subversion
-PORTVERSION= 1.8.14
+PORTVERSION= 1.8.15
PORTREVISION?= 0
CATEGORIES+= devel
MASTER_SITES= APACHE/subversion
Modified: branches/2015Q4/devel/subversion/distinfo
==============================================================================
--- branches/2015Q4/devel/subversion/distinfo Tue Dec 15 21:37:12 2015 (r403815)
+++ branches/2015Q4/devel/subversion/distinfo Tue Dec 15 21:37:15 2015 (r403816)
@@ -1,2 +1,2 @@
-SHA256 (subversion18/subversion-1.8.14.tar.bz2) = 7f3883cdfcad4174e06dd94d6e3e8ec91856823268eebe60c924be76f5229a1f
-SIZE (subversion18/subversion-1.8.14.tar.bz2) = 6850562
+SHA256 (subversion18/subversion-1.8.15.tar.bz2) = cf98a1f7686cfd6a15cbcde8379f15730fd5e00a3573cdb035a6491dbcccc82c
+SIZE (subversion18/subversion-1.8.15.tar.bz2) = 6917489
Modified: branches/2015Q4/devel/subversion/files/220_subversion.conf.sample.in
==============================================================================
--- branches/2015Q4/devel/subversion/files/220_subversion.conf.sample.in Tue Dec 15 21:37:12 2015 (r403815)
+++ branches/2015Q4/devel/subversion/files/220_subversion.conf.sample.in Tue Dec 15 21:37:15 2015 (r403816)
@@ -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
+## <IfModule dav_svn_module>
+## SVNInMemoryCacheSize 1048576
+## SVNCacheFullTexts on
+## SVNCacheTextDeltas on
+## </IfModule>
+##
## 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,8 +55,13 @@
## - AuthType specifies the type of authentication to use.
## - AuthUserFile specifies the location of the password file to use.
##
-##<IfModule dav_module>
+##<IfModule dav_svn_module>
##<Location /svn/>
+## <ifModule mime_module>
+## RemoveEncoding .gz .tgz .Z
+## RemoveType .gz .tgz .Z
+## </ifModule>
+##
## # Enable Subversion
## DAV svn
##
Modified: branches/2015Q4/devel/subversion/files/build-outputs.mk.addons
==============================================================================
--- branches/2015Q4/devel/subversion/files/build-outputs.mk.addons Tue Dec 15 21:37:12 2015 (r403815)
+++ branches/2015Q4/devel/subversion/files/build-outputs.mk.addons Tue Dec 15 21:37:15 2015 (r403816)
@@ -2767,7 +2767,7 @@ subversion/tests/libsvn_ra_local/ra-loca
subversion/tests/libsvn_repos/dir-delta-editor.lo: subversion/tests/libsvn_repos/dir-delta-editor.c subversion/include/private/svn_debug.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_string.h subversion/include/svn_types.h subversion/tests/libsvn_repos/dir-delta-editor.h subversion/tests/svn_test.h
-subversion/tests/libsvn_repos/repos-test.lo: subversion/tests/libsvn_repos/repos-test.c subversion/include/private/svn_debug.h subversion/include/private/svn_editor.h subversion/include/private/svn_repos_private.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_hash.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_version.h subversion/tests/libsvn_repos/dir-delta-editor.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h
+subversion/tests/libsvn_repos/repos-test.lo: subversion/tests/libsvn_repos/repos-test.c subversion/include/private/svn_debug.h subversion/include/private/svn_dep_compat.h subversion/include/private/svn_editor.h subversion/include/private/svn_repos_private.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_hash.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_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/libsvn_repos/dir-delta-editor.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h
subversion/tests/libsvn_subr/auth-test.lo: subversion/tests/libsvn_subr/auth-test.c subversion/include/private/svn_auth_private.h subversion/include/private/svn_debug.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_io.h subversion/include/svn_path.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/svn_private_config.h subversion/tests/svn_test.h
More information about the svn-ports-branches
mailing list