diff options
author | salo <salo@pkgsrc.org> | 2003-04-15 16:23:22 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2003-04-15 16:23:22 +0000 |
commit | 6a8954f3e88484ab7ea0f806834b2c02a68643f4 (patch) | |
tree | 78740947039290231dd39c73693267d5b8294015 /devel/subversion | |
parent | da27b79c15df31622abe8248e4c492a2f07304c9 (diff) | |
download | pkgsrc-6a8954f3e88484ab7ea0f806834b2c02a68643f4.tar.gz |
Updated to version 0.20.1.
Patches provided by Ossi Herrala (pkg/20725) and Marc Recht (pkg/20995).
Changes:
0.20.1:
=======
User-visible changes:
* fix svnadmin load bug so that property deletions actually occur
* fix checksum compatibility issue for older repositories
0.20.0:
=======
User-visible changes:
* new compatibility rule: require only that each interim release be
compatible with the one before it (see HACKING)
* ra_svn is still new so above rule doesn't yet apply
(i.e. 0.20 over ra_svn is NOT compatible with previous releases)
* merge infers the target path (see book chapters 4 & 8)
* merge continues in presence of missing target file
* merge's add notifications are no longer duplicated
* commands can be safely interrupted (Ctrl-C)
* --encoding global default in ~/.subversion/config
* new option --editor-cmd
* begin multi-release transition to escape binary properties over DAV
* misc performance improvements
Developer-visible changes:
* RA vtable functions take pool argument
* svn-config --includes path fixed
* uuid at creation now complete
* start having test failures throw exceptions rather than return errors
* test suite option --cleanup with --verbose being default mode
* continued diff library development
* minor revprop hook changes
* bug fixes: no diff on binary files (#1019), consistent error messages
(#1181), version numbers in hook scripts (#1182), win98 codepage (#1186)
0.18.1:
=======
User-visible changes:
* editor environment variables no longer incorrectly required
* 'svn help import' now displays correct usage
* fix crashes in the internal diff library and ra_dav
* fix Win9x/Me console issue
* cvs2svn.py api fix
* hot_backup.py now correctly removes old backups
Developer-visible changes:
* various rpm package fixes
0.18.0:
=======
User-visible changes:
* renamed the [default] section to [global] in the servers config file
* compression option is now http-compression and lives in servers file
* use internal diff by default rather than external program (#405 in
progress)
* symlinked hook scripts now run
* read-only access flag (-R) for svnserve
* quiet flag (--quiet) for svnadmin dump
* --ignore-uuid and --force-uuid for svnadmin load
* miscellaneous performance improvements
* more work on the Book
Developer-visible changes:
* new authentication library libsvn_auth (#724)
* new bdb table uuids
* client context object in libsvn_client
* more work on java and other language bindings
* test framework now has a quiet option (-q)
* miscellaneous small code cleanups
* bug fixes: more valgrind memory bugs, apr xlate i18n mess (#872),
non-existent URL checkout (#946), props on to-be-deleted files (#1066),
ra_svn move/copy (#1084), eol translation (#1085), ra_svn
checksumming (#1099), cat command corrupt output (#1104), cvs2svn
memory consumption (#1107), merge of property add (#1109),
'..' relative path (#1111), commit/cleanup/diff3 (#1119),
.svn/entries checksum (#1120), svn commit in / (#1122),
status on uncontrolled directory (#1124), commit message eol
characters (#1126), cat -r PREV (#1134), ra_dav wcprops (#1136)
split XML cdata/attribute encoding (#1118)
Diffstat (limited to 'devel/subversion')
-rw-r--r-- | devel/subversion/Makefile | 32 | ||||
-rw-r--r-- | devel/subversion/buildlink2.mk | 7 | ||||
-rw-r--r-- | devel/subversion/distinfo | 6 |
3 files changed, 25 insertions, 20 deletions
diff --git a/devel/subversion/Makefile b/devel/subversion/Makefile index 9d5041db684..d8449f35e6c 100644 --- a/devel/subversion/Makefile +++ b/devel/subversion/Makefile @@ -1,27 +1,30 @@ -# $NetBSD: Makefile,v 1.8 2003/02/03 20:19:00 drochner Exp $ +# $NetBSD: Makefile,v 1.9 2003/04/15 16:23:22 salo Exp $ +# -DISTNAME= subversion-r4503 -PKGNAME= subversion-0.17.1 +DISTNAME= subversion-0.20.1 CATEGORIES= devel -MASTER_SITES= http://subversion.tigris.org/files/documents/15/2699/ +MASTER_SITES= http://subversion.tigris.org/files/documents/15/3440/ MAINTAINER= joelw@unix.se HOMEPAGE= http://subversion.tigris.org COMMENT= Version control system, meant to replace CVS -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-ssl -CONFIGURE_ARGS+= --with-berkeley-db=${BUILDLINK_PREFIX.db4}/include/db4:${LOCALBASE} -CONFIGURE_ARGS+= --with-neon=${BUILDLINK_PREFIX.neon} -USE_BUILDLINK2= YES -USE_LIBTOOL= YES -LIBTOOL_OVERRIDE= ${WRKSRC}/libtool BUILDLINK_DEPENDS.apache= apache>=2.0.44 # we need apr shared libs at runtime BUILDLINK_DEPMETHOD.apache= full -PLIST_SUBST+= INSTALL_INFO=${INSTALL_INFO} -INFO_FILES+= svn-design.info +USE_BUILDLINK2= YES +USE_LIBTOOL= YES +GNU_CONFIGURE= YES + +LIBTOOL_OVERRIDE= ${WRKSRC}/libtool + +CONFIGURE_ARGS= --with-ssl +CONFIGURE_ARGS+= --with-berkeley-db=${BUILDLINK_PREFIX.db4}/include/db4:${LOCALBASE} +CONFIGURE_ARGS+= --with-neon=${BUILDLINK_PREFIX.neon} + +PLIST_SUBST= INSTALL_INFO=${INSTALL_INFO} +INFO_FILES= svn-design.info post-extract: @${RM} -r ${WRKSRC}/neon @@ -29,8 +32,9 @@ post-extract: @${RM} -r ${WRKSRC}/apr-util .include "../../databases/db4/buildlink2.mk" +.include "../../textproc/expat/buildlink2.mk" .include "../../www/apache2/buildlink2.mk" .include "../../www/neon/buildlink2.mk" -.include "../../textproc/expat/buildlink2.mk" + .include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" diff --git a/devel/subversion/buildlink2.mk b/devel/subversion/buildlink2.mk index ce51887ce8e..7102f69b2ff 100644 --- a/devel/subversion/buildlink2.mk +++ b/devel/subversion/buildlink2.mk @@ -1,10 +1,11 @@ -# $NetBSD: buildlink2.mk,v 1.1 2003/02/03 20:22:01 drochner Exp $ +# $NetBSD: buildlink2.mk,v 1.2 2003/04/15 16:23:22 salo Exp $ +# .if !defined(SUBVERSION_BUILDLINK2_MK) SUBVERSION_BUILDLINK2_MK= #defined BUILDLINK_PACKAGES+= subversion-base -BUILDLINK_DEPENDS.subversion-base?= subversion>=0.17.1 +BUILDLINK_DEPENDS.subversion-base?= subversion>=0.20.1 BUILDLINK_PKGSRCDIR.subversion-base?= ../../devel/subversion EVAL_PREFIX+= BUILDLINK_PREFIX.subversion-base=subversion @@ -15,9 +16,9 @@ BUILDLINK_FILES.subversion-base+= include/subversion-1/* BUILDLINK_FILES.subversion-base+= lib/libsvn* .include "../../databases/db4/buildlink2.mk" +.include "../../textproc/expat/buildlink2.mk" .include "../../www/apache2/buildlink2.mk" .include "../../www/neon/buildlink2.mk" -.include "../../textproc/expat/buildlink2.mk" BUILDLINK_TARGETS+= subversion-base-buildlink diff --git a/devel/subversion/distinfo b/devel/subversion/distinfo index 797464ab865..b2c7d4ee917 100644 --- a/devel/subversion/distinfo +++ b/devel/subversion/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.4 2003/01/30 17:48:54 drochner Exp $ +$NetBSD: distinfo,v 1.5 2003/04/15 16:23:22 salo Exp $ -SHA1 (subversion-r4503.tar.gz) = 7e7180216d974daf4e883839d72fa0d93eb11b08 -Size (subversion-r4503.tar.gz) = 6911118 bytes +SHA1 (subversion-0.20.1.tar.gz) = d180593fe5f23a5daff82c65957ff16571eb14d8 +Size (subversion-0.20.1.tar.gz) = 7645003 bytes |