pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Update to Version 1.0.1.
details: https://anonhg.NetBSD.org/pkgsrc/rev/96e01c82ad96
branches: trunk
changeset: 471628:96e01c82ad96
user: epg <epg%pkgsrc.org@localhost>
date: Mon Mar 29 18:08:33 2004 +0000
description:
Update to Version 1.0.1.
(12 March 2004, from /branches/1.0.x)
http://svn.collab.net/repos/svn/tags/1.0.1
IMPORTANT: cvs2svn is no longer included in py-subversion. I will
soon be adding a new cvs2svn package.
User-visible changes:
* allow anonymous access checking in mod_authz_svn
* fixed: mod_authz_svn now works with SVNParentPath (issue #1588)
* fixed: potential segfault in mod_dav_svn.
* fixed: improper BDB cursor shutdown in libsvn_fs, which can wedge repos.
* fixed: allow checkout of repository with space in path. (issue #1694)
* fixed: make 'svn propget URL' work correctly over svn://. (issue #1752)
* fixed: failed 'svn merge URL' when URL contains user@host. (issue #1759)
* fixed: invalid REPORT response when updating a deleted wc. (issue #1721)
* fixed: allow deletes below copied wc dirs.
* fixed: merge --dry-run bug on added-files with props. (issue #1738)
* fixed: svnlook no longer requires write access to '.'
* fixed: ensure 'svn blame' fails on files marked as binary. (issue #1733)
* fixed: make failed direct-URL commits clean up their fs txns. (issue #1726)
* fixed: obscure bugs in time/date string formatting. (issue #1692)
* fixed: svn export doesn't export svn:externals. (issue #1750)
* fixed: svn import doesn't handle EOL or keyword translation. (issue #1756)
* fixed: svn status -v shows unwanted status of externals (issue #1741)
* fixed: allow revert of schedule-replace file that has no props (issue #1775)
* fixed: svnserve segfault on invalid --listen-host argument.
* fixed: switch bug which caused wrong URL to be left in wc.
* detect invalid UTF8 filenames when native locale is UTF8.
* improve presentation of directory property conflicts.
* improve presentation of errors from svnadmin & svnlook.
* clarify output of 'svnadmin help deltify'.
* augment copyright notice to --version output.
* more book updates.
Developer-visible changes:
* remove obsolete auth provider examples.
* prevent potential ra_dav commit race-condition.
* fix svn_io_dir_walk 'dot-first' ordering required by 'svnadmin hotcopy'.
* fix error leaks in dav_svn_convert_err()
* upgrade win32 innosettup tools and redhat RPMs.
* fix compile warning: compressed streams on LP64 architecture.
* use cpio to generate tarballs instead of GNU tar.
* tweaks to dist.sh.
* fix bindings on win32.
* fix perl bindings build on OS X.
* fix perl bindings: bug which rejects string revnums.
diffstat:
devel/p5-subversion/Makefile | 3 +--
devel/py-subversion/Makefile | 13 ++-----------
devel/py-subversion/PLIST | 12 +-----------
devel/subversion-base/Makefile | 7 +++++--
devel/subversion/Makefile | 11 +++++------
devel/subversion/Makefile.version | 4 ++--
devel/subversion/distinfo | 6 +++---
www/ap2-subversion/Makefile | 3 +--
8 files changed, 20 insertions(+), 39 deletions(-)
diffs (169 lines):
diff -r 2c0c551ed9d2 -r 96e01c82ad96 devel/p5-subversion/Makefile
--- a/devel/p5-subversion/Makefile Mon Mar 29 17:43:43 2004 +0000
+++ b/devel/p5-subversion/Makefile Mon Mar 29 18:08:33 2004 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2004/03/26 02:27:38 wiz Exp $
+# $NetBSD: Makefile,v 1.10 2004/03/29 18:08:33 epg Exp $
PKGNAME= p5-subversion-${SVNVER}
-PKGREVISION= 1
COMMENT= Perl bindings for Subversion
.include "../../devel/subversion/Makefile.common"
diff -r 2c0c551ed9d2 -r 96e01c82ad96 devel/py-subversion/Makefile
--- a/devel/py-subversion/Makefile Mon Mar 29 17:43:43 2004 +0000
+++ b/devel/py-subversion/Makefile Mon Mar 29 18:08:33 2004 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2004/03/26 02:27:39 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2004/03/29 18:08:33 epg Exp $
PKGNAME= ${PYPKGPREFIX}-subversion-${SVNVER}
-PKGREVISION= 1
COMMENT= Python bindings and tools for Subversion
.include "../../devel/subversion/Makefile.common"
@@ -10,8 +9,7 @@
PY_PATCHPLIST= YES
PYBINMODULE= YES
-PYTHON_PATCH_SCRIPTS= tools/cvs2svn/cvs2svn.py \
- tools/hook-scripts/mailer/mailer.py
+PYTHON_PATCH_SCRIPTS= tools/hook-scripts/mailer/mailer.py
ALL_TARGET= swig-py-lib swig-py
INSTALL_TARGET= install-swig-py-lib install-swig-py
@@ -32,13 +30,6 @@
${INSTALL_DATA} \
${WRKSRC}/tools/hook-scripts/mailer/mailer.conf.example \
${SVNEXAMPLES}/hook-scripts
- ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/subversion/cvs2svn
- ${INSTALL_DATA} ${WRKSRC}/tools/cvs2svn/README ${SVNDOC}/cvs2svn
- ${INSTALL_SCRIPT} ${WRKSRC}/tools/cvs2svn/cvs2svn.py \
- ${PREFIX}/bin/cvs2svn
- ${INSTALL_SCRIPT_DIR} ${LOCALBASE}/${PYSITELIB}/rcsparse
- ${INSTALL_SCRIPT} ${WRKSRC}/tools/cvs2svn/rcsparse/*.py \
- ${LOCALBASE}/${PYSITELIB}/rcsparse
.include "../../devel/subversion/buildlink3.mk"
.include "../../devel/swig-build/buildlink3.mk"
diff -r 2c0c551ed9d2 -r 96e01c82ad96 devel/py-subversion/PLIST
--- a/devel/py-subversion/PLIST Mon Mar 29 17:43:43 2004 +0000
+++ b/devel/py-subversion/PLIST Mon Mar 29 18:08:33 2004 +0000
@@ -1,5 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2003/12/04 16:41:22 recht Exp $
-bin/cvs2svn
+@comment $NetBSD: PLIST,v 1.2 2004/03/29 18:08:33 epg Exp $
lib/libsvn_swig_py-1.a
lib/libsvn_swig_py-1.la
lib/libsvn_swig_py-1.so
@@ -28,12 +27,6 @@
${PYSITELIB}/libsvn/repos.pyc
${PYSITELIB}/libsvn/wc.py
${PYSITELIB}/libsvn/wc.pyc
-${PYSITELIB}/rcsparse/__init__.py
-${PYSITELIB}/rcsparse/common.py
-${PYSITELIB}/rcsparse/compat.py
-${PYSITELIB}/rcsparse/debug.py
-${PYSITELIB}/rcsparse/default.py
-${PYSITELIB}/rcsparse/texttools.py
${PYSITELIB}/svn/__init__.py
${PYSITELIB}/svn/__init__.pyc
${PYSITELIB}/svn/client.py
@@ -52,7 +45,6 @@
${PYSITELIB}/svn/util.pyc
${PYSITELIB}/svn/wc.py
${PYSITELIB}/svn/wc.pyc
-share/doc/subversion/cvs2svn/README
share/examples/subversion/hook-scripts/mailer.conf.example
share/examples/subversion/hook-scripts/mailer.py
share/examples/subversion/python/blame.py
@@ -65,7 +57,5 @@
share/examples/subversion/python/svnlook.py
share/examples/subversion/python/svnshell.py
@dirrm share/examples/subversion/python
-@dirrm share/doc/subversion/cvs2svn
@dirrm ${PYSITELIB}/svn
-@dirrm ${PYSITELIB}/rcsparse
@dirrm ${PYSITELIB}/libsvn
diff -r 2c0c551ed9d2 -r 96e01c82ad96 devel/subversion-base/Makefile
--- a/devel/subversion-base/Makefile Mon Mar 29 17:43:43 2004 +0000
+++ b/devel/subversion-base/Makefile Mon Mar 29 18:08:33 2004 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2004/03/26 02:27:39 wiz Exp $
+# $NetBSD: Makefile,v 1.13 2004/03/29 18:08:33 epg Exp $
PKGNAME= subversion-base-${SVNVER}
-PKGREVISION= 1
COMMENT= Version control system, base programs and libraries
PLIST_SUBST+= INSTALL_INFO=${INSTALL_INFO}
@@ -11,6 +10,10 @@
CONFIGURE_ARGS+= --without-apache
CONFIGURE_ARGS+= --without-apxs
+# XXX Timestamps are broken in 1.0.1 tar file; should go away in 1.0.2.
+post-build:
+ ${TOUCH} ${WRKSRC}/doc/programmer/design/svn-design.info
+
post-patch:
${SED} -e 's|@BUILDLINK_PREFIX.db4@|${BUILDLINK_PREFIX.db4}|g' \
< ${WRKSRC}/tools/backup/hot-backup.py.in \
diff -r 2c0c551ed9d2 -r 96e01c82ad96 devel/subversion/Makefile
--- a/devel/subversion/Makefile Mon Mar 29 17:43:43 2004 +0000
+++ b/devel/subversion/Makefile Mon Mar 29 18:08:33 2004 +0000
@@ -1,13 +1,12 @@
-# $NetBSD: Makefile,v 1.20 2004/03/26 02:27:39 wiz Exp $
+# $NetBSD: Makefile,v 1.21 2004/03/29 18:08:33 epg Exp $
PKGNAME= subversion-${SVNVER}
-PKGREVISION= 1
COMMENT= Version control system, meta-package
-DEPENDS+= subversion-base-${SVNVER}nb1:../../devel/subversion-base
-DEPENDS+= p5-subversion-${SVNVER}nb1:../../devel/p5-subversion
-DEPENDS+= ap2-subversion-${SVNVER}nb1:../../www/ap2-subversion
-DEPENDS+= ${PYPKGPREFIX}-subversion-${SVNVER}nb1:../../devel/py-subversion
+DEPENDS+= subversion-base-${SVNVER}:../../devel/subversion-base
+DEPENDS+= p5-subversion-${SVNVER}:../../devel/p5-subversion
+DEPENDS+= ap2-subversion-${SVNVER}:../../www/ap2-subversion
+DEPENDS+= ${PYPKGPREFIX}-subversion-${SVNVER}:../../devel/py-subversion
.include "Makefile.common"
diff -r 2c0c551ed9d2 -r 96e01c82ad96 devel/subversion/Makefile.version
--- a/devel/subversion/Makefile.version Mon Mar 29 17:43:43 2004 +0000
+++ b/devel/subversion/Makefile.version Mon Mar 29 18:08:33 2004 +0000
@@ -1,5 +1,5 @@
-# $NetBSD: Makefile.version,v 1.15 2004/02/23 18:18:59 epg Exp $
+# $NetBSD: Makefile.version,v 1.16 2004/03/29 18:08:33 epg Exp $
.if !defined(SVNVER)
-SVNVER= 1.0.0
+SVNVER= 1.0.1
.endif
diff -r 2c0c551ed9d2 -r 96e01c82ad96 devel/subversion/distinfo
--- a/devel/subversion/distinfo Mon Mar 29 17:43:43 2004 +0000
+++ b/devel/subversion/distinfo Mon Mar 29 18:08:33 2004 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.25 2004/02/23 18:18:59 epg Exp $
+$NetBSD: distinfo,v 1.26 2004/03/29 18:08:33 epg Exp $
-SHA1 (subversion-1.0.0.tar.gz) = 8540b382c750d91787ba26c4444673a026785b7b
-Size (subversion-1.0.0.tar.gz) = 7462659 bytes
+SHA1 (subversion-1.0.1.tar.gz) = de7c09e18eb97aa8ac42798d887f64336f12375e
+Size (subversion-1.0.1.tar.gz) = 7245193 bytes
SHA1 (patch-aa) = 00bd9a667459a704c6454e581c2cc5b1cfc197a9
SHA1 (patch-ac) = 7f0669a6f684583ff0ca4a443be356ae2fca06db
SHA1 (patch-ae) = 1c6a20139d24dcbd8ee519613bc24403e0b3ce24
diff -r 2c0c551ed9d2 -r 96e01c82ad96 www/ap2-subversion/Makefile
--- a/www/ap2-subversion/Makefile Mon Mar 29 17:43:43 2004 +0000
+++ b/www/ap2-subversion/Makefile Mon Mar 29 18:08:33 2004 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2004/03/26 02:27:56 wiz Exp $
+# $NetBSD: Makefile,v 1.14 2004/03/29 18:08:33 epg Exp $
PKGNAME= ap2-subversion-${SVNVER}
-PKGREVISION= 1
COMMENT= WebDAV server (Apache module) for Subversion
.include "../../devel/subversion/Makefile.common"
Home |
Main Index |
Thread Index |
Old Index