pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc
Module Name: pkgsrc
Committed By: adam
Date: Fri Jul 7 04:51:47 UTC 2017
Modified Files:
pkgsrc/devel/java-subversion: Makefile
pkgsrc/devel/p5-subversion: Makefile
pkgsrc/devel/py-subversion: Makefile PLIST
pkgsrc/devel/ruby-subversion: Makefile
pkgsrc/devel/subversion: Makefile.version distinfo
pkgsrc/devel/subversion-base: Makefile
pkgsrc/www/ap2-subversion: Makefile
Log Message:
Version 1.9.6
User-visible changes:
- Client-side bugfixes:
* cp/mv: improve error message when target is an unversioned dir
* merge: reduce memory usage with large amounts of mergeinfo
- Server-side bugfixes:
* 'svnadmin freeze': document the purpose more clearly
* dump: fix segfault when a revision has no revprops
* fsfs: improve error message upon failure to open rep-cache
* fsfs: never attempt to share directory representations
* fsfs: make consistency independent of hash algorithms
This change makes Subversion resilient to collision attacks, including
SHA-1 collision attacks such as <http://shattered.io/>. See also our
documentation at <https://subversion.apache.org/faq#shattered-sha1> and
<https://subversion.apache.org/docs/release-notes/1.9#shattered-sha1>.
- Client-side and server-side bugfixes:
* work around an APR bug related to file truncation
- Bindings bugfixes:
* javahl: follow redirects when opening a connection
Developer-visible changes:
- General:
* win_tests.py: make the --bin option work, rather than abort
(regression introduced in 1.9.2)
* windows: support building with 'zlibstat.lib' in install-layout
- API changes:
(none)
To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 pkgsrc/devel/java-subversion/Makefile
cvs rdiff -u -r1.97 -r1.98 pkgsrc/devel/p5-subversion/Makefile
cvs rdiff -u -r1.72 -r1.73 pkgsrc/devel/py-subversion/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-subversion/PLIST
cvs rdiff -u -r1.62 -r1.63 pkgsrc/devel/ruby-subversion/Makefile
cvs rdiff -u -r1.78 -r1.79 pkgsrc/devel/subversion/Makefile.version
cvs rdiff -u -r1.106 -r1.107 pkgsrc/devel/subversion/distinfo
cvs rdiff -u -r1.108 -r1.109 pkgsrc/devel/subversion-base/Makefile
cvs rdiff -u -r1.78 -r1.79 pkgsrc/www/ap2-subversion/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/java-subversion/Makefile
diff -u pkgsrc/devel/java-subversion/Makefile:1.39 pkgsrc/devel/java-subversion/Makefile:1.40
--- pkgsrc/devel/java-subversion/Makefile:1.39 Sat Apr 22 21:03:30 2017
+++ pkgsrc/devel/java-subversion/Makefile Fri Jul 7 04:51:47 2017
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.39 2017/04/22 21:03:30 adam Exp $
+# $NetBSD: Makefile,v 1.40 2017/07/07 04:51:47 adam Exp $
PKGNAME= java-subversion-${SVNVER}
-PKGREVISION= 2
COMMENT= Java bindings for Subversion
MAKE_JOBS_SAFE= no
Index: pkgsrc/devel/p5-subversion/Makefile
diff -u pkgsrc/devel/p5-subversion/Makefile:1.97 pkgsrc/devel/p5-subversion/Makefile:1.98
--- pkgsrc/devel/p5-subversion/Makefile:1.97 Mon Jun 5 14:23:55 2017
+++ pkgsrc/devel/p5-subversion/Makefile Fri Jul 7 04:51:47 2017
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.97 2017/06/05 14:23:55 ryoon Exp $
+# $NetBSD: Makefile,v 1.98 2017/07/07 04:51:47 adam Exp $
PKGNAME= p5-subversion-${SVNVER}
-PKGREVISION= 3
COMMENT= Perl bindings for Subversion
.include "../../devel/subversion/Makefile.common"
Index: pkgsrc/devel/py-subversion/Makefile
diff -u pkgsrc/devel/py-subversion/Makefile:1.72 pkgsrc/devel/py-subversion/Makefile:1.73
--- pkgsrc/devel/py-subversion/Makefile:1.72 Sat Apr 22 21:03:33 2017
+++ pkgsrc/devel/py-subversion/Makefile Fri Jul 7 04:51:47 2017
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.72 2017/04/22 21:03:33 adam Exp $
+# $NetBSD: Makefile,v 1.73 2017/07/07 04:51:47 adam Exp $
PKGNAME= ${PYPKGPREFIX}-subversion-${SVNVER}
-PKGREVISION= 2
COMMENT= Python bindings and tools for Subversion
.include "../../devel/subversion/Makefile.common"
@@ -36,6 +35,8 @@ post-install:
${INSTALL_DATA} \
${WRKSRC}/tools/hook-scripts/mailer/mailer.conf.example \
${DESTDIR}${SVNEXAMPLES}/hook-scripts
+ ${PY_COMPILE_O_ALL} ${DESTDIR}${PREFIX}/${PYSITELIB}/libsvn
+ ${PY_COMPILE_O_ALL} ${DESTDIR}${PREFIX}/${PYSITELIB}/svn
.include "../../devel/subversion-base/buildlink3.mk"
.include "../../lang/python/application.mk"
Index: pkgsrc/devel/py-subversion/PLIST
diff -u pkgsrc/devel/py-subversion/PLIST:1.9 pkgsrc/devel/py-subversion/PLIST:1.10
--- pkgsrc/devel/py-subversion/PLIST:1.9 Thu Jul 4 19:31:14 2013
+++ pkgsrc/devel/py-subversion/PLIST Fri Jul 7 04:51:47 2017
@@ -1,7 +1,8 @@
-@comment $NetBSD: PLIST,v 1.9 2013/07/04 19:31:14 wiz Exp $
+@comment $NetBSD: PLIST,v 1.10 2017/07/07 04:51:47 adam Exp $
lib/libsvn_swig_py-1.la
${PYSITELIB}/libsvn/__init__.py
${PYSITELIB}/libsvn/__init__.pyc
+${PYSITELIB}/libsvn/__init__.pyo
${PYSITELIB}/libsvn/_client.la
${PYSITELIB}/libsvn/_core.la
${PYSITELIB}/libsvn/_delta.la
@@ -12,38 +13,55 @@ ${PYSITELIB}/libsvn/_repos.la
${PYSITELIB}/libsvn/_wc.la
${PYSITELIB}/libsvn/client.py
${PYSITELIB}/libsvn/client.pyc
+${PYSITELIB}/libsvn/client.pyo
${PYSITELIB}/libsvn/core.py
${PYSITELIB}/libsvn/core.pyc
+${PYSITELIB}/libsvn/core.pyo
${PYSITELIB}/libsvn/delta.py
${PYSITELIB}/libsvn/delta.pyc
+${PYSITELIB}/libsvn/delta.pyo
${PYSITELIB}/libsvn/diff.py
${PYSITELIB}/libsvn/diff.pyc
+${PYSITELIB}/libsvn/diff.pyo
${PYSITELIB}/libsvn/fs.py
${PYSITELIB}/libsvn/fs.pyc
+${PYSITELIB}/libsvn/fs.pyo
${PYSITELIB}/libsvn/ra.py
${PYSITELIB}/libsvn/ra.pyc
+${PYSITELIB}/libsvn/ra.pyo
${PYSITELIB}/libsvn/repos.py
${PYSITELIB}/libsvn/repos.pyc
+${PYSITELIB}/libsvn/repos.pyo
${PYSITELIB}/libsvn/wc.py
${PYSITELIB}/libsvn/wc.pyc
+${PYSITELIB}/libsvn/wc.pyo
${PYSITELIB}/svn/__init__.py
${PYSITELIB}/svn/__init__.pyc
+${PYSITELIB}/svn/__init__.pyo
${PYSITELIB}/svn/client.py
${PYSITELIB}/svn/client.pyc
+${PYSITELIB}/svn/client.pyo
${PYSITELIB}/svn/core.py
${PYSITELIB}/svn/core.pyc
+${PYSITELIB}/svn/core.pyo
${PYSITELIB}/svn/delta.py
${PYSITELIB}/svn/delta.pyc
+${PYSITELIB}/svn/delta.pyo
${PYSITELIB}/svn/diff.py
${PYSITELIB}/svn/diff.pyc
+${PYSITELIB}/svn/diff.pyo
${PYSITELIB}/svn/fs.py
${PYSITELIB}/svn/fs.pyc
+${PYSITELIB}/svn/fs.pyo
${PYSITELIB}/svn/ra.py
${PYSITELIB}/svn/ra.pyc
+${PYSITELIB}/svn/ra.pyo
${PYSITELIB}/svn/repos.py
${PYSITELIB}/svn/repos.pyc
+${PYSITELIB}/svn/repos.pyo
${PYSITELIB}/svn/wc.py
${PYSITELIB}/svn/wc.pyc
+${PYSITELIB}/svn/wc.pyo
share/examples/subversion/hook-scripts/mailer.conf.example
share/examples/subversion/hook-scripts/mailer.py
share/examples/subversion/python/blame.py
Index: pkgsrc/devel/ruby-subversion/Makefile
diff -u pkgsrc/devel/ruby-subversion/Makefile:1.62 pkgsrc/devel/ruby-subversion/Makefile:1.63
--- pkgsrc/devel/ruby-subversion/Makefile:1.62 Sat Apr 22 21:03:33 2017
+++ pkgsrc/devel/ruby-subversion/Makefile Fri Jul 7 04:51:47 2017
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.62 2017/04/22 21:03:33 adam Exp $
+# $NetBSD: Makefile,v 1.63 2017/07/07 04:51:47 adam Exp $
PKGNAME= ${RUBY_PKGPREFIX}-subversion-${SVNVER}
-PKGREVISION= 2
COMMENT= Ruby bindings for Subversion
.include "../../devel/subversion/Makefile.common"
Index: pkgsrc/devel/subversion/Makefile.version
diff -u pkgsrc/devel/subversion/Makefile.version:1.78 pkgsrc/devel/subversion/Makefile.version:1.79
--- pkgsrc/devel/subversion/Makefile.version:1.78 Tue Nov 29 20:12:41 2016
+++ pkgsrc/devel/subversion/Makefile.version Fri Jul 7 04:51:47 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.version,v 1.78 2016/11/29 20:12:41 bsiegert Exp $
+# $NetBSD: Makefile.version,v 1.79 2017/07/07 04:51:47 adam Exp $
# When updating subversion, all packages are updated at the same time
# to have a consistent set of packages. A particularly tricky aspect
@@ -7,5 +7,5 @@
# changing the version.
.if !defined(SVNVER)
-SVNVER= 1.9.5
+SVNVER= 1.9.6
.endif
Index: pkgsrc/devel/subversion/distinfo
diff -u pkgsrc/devel/subversion/distinfo:1.106 pkgsrc/devel/subversion/distinfo:1.107
--- pkgsrc/devel/subversion/distinfo:1.106 Tue Nov 29 20:12:41 2016
+++ pkgsrc/devel/subversion/distinfo Fri Jul 7 04:51:47 2017
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.106 2016/11/29 20:12:41 bsiegert Exp $
+$NetBSD: distinfo,v 1.107 2017/07/07 04:51:47 adam Exp $
-SHA1 (subversion-1.9.5.tar.bz2) = 8bd6a44a1aed30c4c6b6b068488dafb44eaa6adf
-RMD160 (subversion-1.9.5.tar.bz2) = f0efa460a5cf7114871fbf81ea4c4bfbfe54bd93
-SHA512 (subversion-1.9.5.tar.bz2) = ff7241ffae2506e97f40011242b5d5c6fa665f5463743f9acc52136b59ad84b6db00b60e70c44a9060579db49b818db06da1d1352aaee78e5bfe6ce56f32a2cf
-Size (subversion-1.9.5.tar.bz2) = 7904861 bytes
+SHA1 (subversion-1.9.6.tar.bz2) = 3375e697805fcdf6dc8c9b52f4e6626f70cabcd6
+RMD160 (subversion-1.9.6.tar.bz2) = d1d2cd87805b9908ef35362cdc247e1764ec9108
+SHA512 (subversion-1.9.6.tar.bz2) = bdca362ff45a7f028e2123efbc9bfd41a07e6ebdfcf62627ce24f413e0304b45011bbac1f142ceb1c031a07622c06786982f86cd9109065cae5e26fd689fc11e
+Size (subversion-1.9.6.tar.bz2) = 7882084 bytes
SHA1 (patch-ad) = 2c158d03d6636309f97fb785bb244b150c4ec8c3
SHA1 (patch-ae) = a9cd7d26fb5f9da8ff81413ef32948ccd6c4290e
SHA1 (patch-tools_dev_benchmarks_large__dirs_create__bigdir.sh) = ff19087ff4d348fdcf904eb52406f6b717fe444a
Index: pkgsrc/devel/subversion-base/Makefile
diff -u pkgsrc/devel/subversion-base/Makefile:1.108 pkgsrc/devel/subversion-base/Makefile:1.109
--- pkgsrc/devel/subversion-base/Makefile:1.108 Sat Apr 22 21:03:11 2017
+++ pkgsrc/devel/subversion-base/Makefile Fri Jul 7 04:51:47 2017
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.108 2017/04/22 21:03:11 adam Exp $
+# $NetBSD: Makefile,v 1.109 2017/07/07 04:51:47 adam Exp $
PKGNAME= subversion-base-${SVNVER}
-PKGREVISION= 2
COMMENT= Version control system, base programs and libraries
# on at least solaris, configure fails to figure out
Index: pkgsrc/www/ap2-subversion/Makefile
diff -u pkgsrc/www/ap2-subversion/Makefile:1.78 pkgsrc/www/ap2-subversion/Makefile:1.79
--- pkgsrc/www/ap2-subversion/Makefile:1.78 Sat Apr 22 21:04:00 2017
+++ pkgsrc/www/ap2-subversion/Makefile Fri Jul 7 04:51:47 2017
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.78 2017/04/22 21:04:00 adam Exp $
+# $NetBSD: Makefile,v 1.79 2017/07/07 04:51:47 adam Exp $
PKGNAME= ${APACHE_PKG_PREFIX}-subversion-${SVNVER}
-PKGREVISION= 2
COMMENT= WebDAV server (Apache module) for Subversion
.include "../../devel/subversion/Makefile.common"
Home |
Main Index |
Thread Index |
Old Index