pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel Update to 0.29.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a0244675dd90
branches:  trunk
changeset: 460939:a0244675dd90
user:      epg <epg%pkgsrc.org@localhost>
date:      Mon Sep 08 04:47:51 2003 +0000

description:
Update to 0.29.0.

Remove patch-ad (fixed in this release).

 User-visible changes:
 * 'svn status' now streams its response.  (r6913, #1426)
 * 'svn status' now recurses into externals (r6913, #1428)
 * new 'svnadmin verify' command to verify repository data (r6851, #1074)
 * SSL changes:  (r6958, #1371)
     - dropped support for PEM-encoded client certs, only accept PKCS12 now.
     - 'ssl-authority-files' is now a list of CA files
     - no more 'ssl-client-cert-type' and 'ssl-client-key-file' variables.
 * new svndumpfilter option: '--preserve-revprops' to keep props on empty revs
 * mailer.py improvement:  handle multiple match groups (r6940)
 * remove in-repos/on-disk repository template features, till post-1.0 (r6965)
 * various cleanups to the Book
 * other bugfixes: switch deletion bug (r6890, #1496), status
   repos-delete bug (r6913, #1469), reversion of '.' (r6953, #854).

 Developer-visible changes:
 * GUI developers take note: prompting API changed (r6928, #1214)
 * now compile against neon-0.24; 0.23.9 support to be dropped soon. (r6958)
 * various improvements to Perl/SWIG bindings
 * tree re-org:  non-core utilities split into 'tools' and 'contrib' areas.
 * some gen_make.py/gen-base.py improvements
 * configure.in CFLAGS bugfix (r6963)
 * stop callng deprecated APIs in APR, in preparation for upcoming APR-1.0.

diffstat:

 devel/subversion-base/Makefile    |   4 ++--
 devel/subversion-python/Makefile  |  12 +++++++-----
 devel/subversion/Makefile.common  |  10 +++++-----
 devel/subversion/Makefile.version |   6 +++---
 devel/subversion/distinfo         |   9 ++++-----
 devel/subversion/patches/patch-ac |   6 +++---
 devel/subversion/patches/patch-ad |  16 ----------------
 7 files changed, 24 insertions(+), 39 deletions(-)

diffs (142 lines):

diff -r 22b917ac80bc -r a0244675dd90 devel/subversion-base/Makefile
--- a/devel/subversion-base/Makefile    Mon Sep 08 02:09:04 2003 +0000
+++ b/devel/subversion-base/Makefile    Mon Sep 08 04:47:51 2003 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2003/07/12 05:39:43 epg Exp $
+# $NetBSD: Makefile,v 1.4 2003/09/08 04:47:52 epg Exp $
 
 PKGNAME=       subversion-base-${SVNVER}
 COMMENT=       Version control system, base programs and libraries
@@ -15,7 +15,7 @@
        ${INSTALL_DATA_DIR} ${SVNEXAMPLES}/hook-scripts
        ${INSTALL_DATA} ${WRKSRC}/tools/backup/hot-backup.py \
                ${SVNEXAMPLES}/backup
-       ${INSTALL_DATA} ${WRKSRC}/tools/cgi/tweak-log.cgi ${SVNEXAMPLES}/cgi
+       ${INSTALL_DATA} ${WRKSRC}/contrib/cgi/tweak-log.cgi ${SVNEXAMPLES}/cgi
        ${INSTALL_DATA} ${WRKSRC}/tools/hook-scripts/commit-email.pl \
                ${SVNEXAMPLES}/hook-scripts
        ${INSTALL_DATA} ${WRKSRC}/tools/hook-scripts/propchange-email.pl \
diff -r 22b917ac80bc -r a0244675dd90 devel/subversion-python/Makefile
--- a/devel/subversion-python/Makefile  Mon Sep 08 02:09:04 2003 +0000
+++ b/devel/subversion-python/Makefile  Mon Sep 08 04:47:51 2003 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2003/08/15 23:42:59 epg Exp $
+# $NetBSD: Makefile,v 1.4 2003/09/08 04:47:52 epg Exp $
 
 PKGNAME=       ${PYPKGPREFIX}-subversion-${SVNVER}
 COMMENT=       Python bindings and tools for Subversion
@@ -9,13 +9,14 @@
 
 PY_PATCHPLIST=         YES
 PYBINMODULE=           YES
-PYTHON_PATCH_SCRIPTS=  tools/cvs2svn/cvs2svn.py tools/hook-scripts/mailer.py
+PYTHON_PATCH_SCRIPTS=  tools/cvs2svn/cvs2svn.py \
+                       tools/hook-scripts/mailer/mailer.py
 
 ALL_TARGET=            swig-py-lib swig-py
 INSTALL_TARGET=                install-swig-py-lib install-swig-py
 
 MAKE_ENV+=             EXTRA_CPPFLAGS=${BUILDLINK_CPPFLAGS}
-MAKEFLAGS+=            swig_pydir=${LOCALBASE}/${PYSITELIB}/libsvn             \
+MAKEFLAGS+=            swig_pydir=${LOCALBASE}/${PYSITELIB}/libsvn \
                        swig_pydir_extra=${LOCALBASE}/${PYSITELIB}/svn
 
 TEST_TARGET=           all check
@@ -25,9 +26,10 @@
        ${RM} ${LOCALBASE}/${PYSITELIB}/libsvn/*.la
        ${INSTALL_DATA_DIR} ${SVNEXAMPLES}/python
        ${INSTALL_DATA} ${WRKSRC}/tools/examples/*.py ${SVNEXAMPLES}/python
-       ${INSTALL_DATA} ${WRKSRC}/tools/hook-scripts/mailer.py \
+       ${INSTALL_DATA} ${WRKSRC}/tools/hook-scripts/mailer/mailer.py \
                ${SVNEXAMPLES}/hook-scripts
-       ${INSTALL_DATA} ${WRKSRC}/tools/hook-scripts/mailer.conf.example \
+       ${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
diff -r 22b917ac80bc -r a0244675dd90 devel/subversion/Makefile.common
--- a/devel/subversion/Makefile.common  Mon Sep 08 02:09:04 2003 +0000
+++ b/devel/subversion/Makefile.common  Mon Sep 08 04:47:51 2003 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.4 2003/06/18 13:26:25 epg Exp $
+# $NetBSD: Makefile.common,v 1.5 2003/09/08 04:47:51 epg Exp $
 
 DISTNAME=              subversion-${SVNVER}
 CATEGORIES=            devel
@@ -33,7 +33,7 @@
        ${MV} ${WRKSRC}/tools/backup/hot-backup.py.in.new \
                ${WRKSRC}/tools/backup/hot-backup.py.in
        ${SED} -e 's|@PREFIX@|${PREFIX}|g' \
-               < ${WRKSRC}/tools/cgi/tweak-log.cgi \
-               > ${WRKSRC}/tools/cgi/tweak-log.cgi.new
-       ${MV} ${WRKSRC}/tools/cgi/tweak-log.cgi.new \
-               ${WRKSRC}/tools/cgi/tweak-log.cgi
+               < ${WRKSRC}/contrib/cgi/tweak-log.cgi \
+               > ${WRKSRC}/contrib/cgi/tweak-log.cgi.new
+       ${MV} ${WRKSRC}/contrib/cgi/tweak-log.cgi.new \
+               ${WRKSRC}/contrib/cgi/tweak-log.cgi
diff -r 22b917ac80bc -r a0244675dd90 devel/subversion/Makefile.version
--- a/devel/subversion/Makefile.version Mon Sep 08 02:09:04 2003 +0000
+++ b/devel/subversion/Makefile.version Mon Sep 08 04:47:51 2003 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile.version,v 1.6 2003/09/02 17:57:21 epg Exp $
+# $NetBSD: Makefile.version,v 1.7 2003/09/08 04:47:51 epg Exp $
 
 .if !defined(SVNVER)
-SVNVER=                0.28.2
+SVNVER=                0.29.0
 # This macro is in this file because the URL changes with every release.
-MASTER_SITES=  http://subversion.tigris.org/files/documents/15/5940/
+MASTER_SITES=  http://subversion.tigris.org/files/documents/15/5977/
 .endif
diff -r 22b917ac80bc -r a0244675dd90 devel/subversion/distinfo
--- a/devel/subversion/distinfo Mon Sep 08 02:09:04 2003 +0000
+++ b/devel/subversion/distinfo Mon Sep 08 04:47:51 2003 +0000
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.15 2003/09/02 17:57:22 epg Exp $
+$NetBSD: distinfo,v 1.16 2003/09/08 04:47:51 epg Exp $
 
-SHA1 (subversion-0.28.2.tar.gz) = 55795299bf7b6dceadcf715c4bbdb2cf327b77db
-Size (subversion-0.28.2.tar.gz) = 7323914 bytes
+SHA1 (subversion-0.29.0.tar.gz) = 3510d7b72d75a6ece5b0f0b0a23f447880672787
+Size (subversion-0.29.0.tar.gz) = 7367378 bytes
 SHA1 (patch-aa) = a4cbb157bd0f3c5d0e0061be6d68903a8357d92d
-SHA1 (patch-ac) = 6f57283a7b0088d596461b31ebf2838be3f440c6
-SHA1 (patch-ad) = 3c203f02fbe1f38c973c2c4ab30d8d0ee332dd43
+SHA1 (patch-ac) = 25da4e7166f79d47a8da47af1bfecc2208202aea
 SHA1 (patch-ae) = c44ab54dccdec60fa83a86464bef1eba68597615
diff -r 22b917ac80bc -r a0244675dd90 devel/subversion/patches/patch-ac
--- a/devel/subversion/patches/patch-ac Mon Sep 08 02:09:04 2003 +0000
+++ b/devel/subversion/patches/patch-ac Mon Sep 08 04:47:51 2003 +0000
@@ -1,7 +1,7 @@
-$NetBSD: patch-ac,v 1.5 2003/08/15 19:27:45 recht Exp $
+$NetBSD: patch-ac,v 1.6 2003/09/08 04:47:51 epg Exp $
 
---- tools/cgi/tweak-log.cgi.orig       2003-08-14 14:25:11.000000000 +0200
-+++ tools/cgi/tweak-log.cgi    2003-08-15 18:05:37.000000000 +0200
+--- contrib/cgi/tweak-log.cgi.orig     2003-08-14 14:25:11.000000000 +0200
++++ contrib/cgi/tweak-log.cgi  2003-08-15 18:05:37.000000000 +0200
 @@ -29,8 +29,8 @@
  ###############################################################################
  # Configuration Section
diff -r 22b917ac80bc -r a0244675dd90 devel/subversion/patches/patch-ad
--- a/devel/subversion/patches/patch-ad Mon Sep 08 02:09:04 2003 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-$NetBSD: patch-ad,v 1.7 2003/08/31 22:09:52 epg Exp $
-
---- Makefile.in.orig   Thu Aug 28 11:47:57 2003
-+++ Makefile.in
-@@ -149,9 +149,9 @@ RUN_SWIG_PL = $(SWIG) -c -perl $(SWIG_IN
- RUN_SWIG_JAVA = cd ${SWIG_SRC_DIR}/java/org/tigris/subversion/swig && $(SWIG) -c -java -package 'org.tigris.subversion.swig' $(SWIG_INCLUDES) -o ${abs_builddir}/$@
- 
- # Compilation of SWIG-generated C source code
--COMPILE_PY_WRAPPER = $(LIBTOOL) $(LTFLAGS) --mode=compile $(SWIG_PY_COMPILE) $(SWIG_INCLUDES) $(SWIG_PY_INCLUDES) -prefer-pic -c -o $@
-+COMPILE_PY_WRAPPER = $(LIBTOOL) $(LTFLAGS) --mode=compile $(SWIG_PY_COMPILE) $(CPPFLAGS) $(SWIG_INCLUDES) $(SWIG_PY_INCLUDES) -prefer-pic -c -o $@
- COMPILE_JAVA_WRAPPER = $(LIBTOOL) $(LTFLAGS) --mode=compile $(SWIG_JAVA_COMPILE) -DSWIGJAVA $(SWIG_INCLUDES) $(SWIG_JAVA_INCLUDES) -prefer-pic -c -o $@
--COMPILE_PL_WRAPPER = $(LIBTOOL) $(LTFLAGS) --mode=compile $(SWIG_PL_COMPILE) $(SWIG_INCLUDES) $(SWIG_PL_INCLUDES) -prefer-pic -c -o $@
-+COMPILE_PL_WRAPPER = $(LIBTOOL) $(LTFLAGS) --mode=compile $(SWIG_PL_COMPILE) $(CPPFLAGS) $(SWIG_INCLUDES) $(SWIG_PL_INCLUDES) -prefer-pic -c -o $@
- 
- # these commands link the wrapper objects into an extension library/module
- LINK_PY_WRAPPER = $(LIBTOOL) $(LTFLAGS) --mode=link $(SWIG_PY_LINK) $(SWIG_LDFLAGS) -rpath $(swig_pydir) -avoid-version -module



Home | Main Index | Thread Index | Old Index