diff options
author | epg <epg@pkgsrc.org> | 2004-01-13 22:48:41 +0000 |
---|---|---|
committer | epg <epg@pkgsrc.org> | 2004-01-13 22:48:41 +0000 |
commit | 15d846868667832604ac34e5e1e42fa522486ae0 (patch) | |
tree | a90504a6a8015c4f427c8212e51e22771bc45950 /devel/subversion | |
parent | bdd3b304552cab1b87c01db7af5f5a02b46741ed (diff) | |
download | pkgsrc-15d846868667832604ac34e5e1e42fa522486ae0.tar.gz |
Update to Version 0.36.0 [Beta Interim 1]
(branching 13 January 2004, from /branches/1.0-stabilization)
http://svn.collab.net/repos/svn/tags/0.36.0
User-visible changes:
* add cancellation suport to svnadmin and svnlook (r8222)
* runtime 'store-password' option renamed to 'store-auth-creds' (r8014)
* 'svn blame' changes:
- now shows correct revision info (r8035-6)
- responds to cancellation better (r8129)
* svnserve changes:
- added '--inetd' option; now required to speak with stdin/stdout (r8205)
- added '--listen-port' and '--listen-host' options (r8001-2)
- removed '-u' option (r8003)
- ignore SIGPIPE (no more repos lockups when you terminate a pipe) (r8140)
* lots of Book work (many newly-documented Apache and svnserve topics)
Developer-visible changes:
* bugfix: svnserve network crash (r8142)
* bugfix: return result_rev from svn_client_checkout correctly (r8096)
* bugfix: fs history harvesting code (r8154)
* bugfix: memory leak in mod_dav_svn (r8223)
* bugfixes in edge-cases of status and update (r8114-5)
* make 'svn blame' work with 18n and uri-escaped filenames (r8023, 8030, 8040)
* small bugfixes to authentication system (r8006, r8235)
* standardize error message formatting (r8218)
* load RA modules as foo.so.0, not foo.so (r8098)
* various core API changes:
- use constructor for svn_client_cxt_t (r8053-4)
- anchor/target may use NULL for target (r8216)
- stop using apr_ symbols (r8219)
- rename to 'svn_repos_authz_func_t' (r8213)
- add pool parameter to finish_report and abort_report (r8215)
* numerous changes to Perl and Java bindings, to keep up with C API.
Diffstat (limited to 'devel/subversion')
-rw-r--r-- | devel/subversion/Makefile.version | 4 | ||||
-rw-r--r-- | devel/subversion/distinfo | 9 | ||||
-rw-r--r-- | devel/subversion/patches/patch-ae | 52 |
3 files changed, 32 insertions, 33 deletions
diff --git a/devel/subversion/Makefile.version b/devel/subversion/Makefile.version index 982a78ea881..73f4ee1ac31 100644 --- a/devel/subversion/Makefile.version +++ b/devel/subversion/Makefile.version @@ -1,5 +1,5 @@ -# $NetBSD: Makefile.version,v 1.12 2003/12/20 00:31:47 epg Exp $ +# $NetBSD: Makefile.version,v 1.13 2004/01/13 22:48:41 epg Exp $ .if !defined(SVNVER) -SVNVER= 0.35.0 +SVNVER= 0.36.0 .endif diff --git a/devel/subversion/distinfo b/devel/subversion/distinfo index 03149b84957..0503e1e3e30 100644 --- a/devel/subversion/distinfo +++ b/devel/subversion/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.21 2003/12/20 00:31:47 epg Exp $ +$NetBSD: distinfo,v 1.22 2004/01/13 22:48:41 epg Exp $ -SHA1 (subversion-0.35.0.tar.gz) = 5ea9422faab79970286750e5bed7270fe0085714 -Size (subversion-0.35.0.tar.gz) = 7432534 bytes +SHA1 (subversion-0.36.0.tar.gz) = 71e246114a954ec35bb035379ddc8ad8197c1f27 +Size (subversion-0.36.0.tar.gz) = 7508556 bytes SHA1 (patch-aa) = 00bd9a667459a704c6454e581c2cc5b1cfc197a9 SHA1 (patch-ac) = 7f0669a6f684583ff0ca4a443be356ae2fca06db -SHA1 (patch-ae) = 3d07f9a929fca2d4521bcaa6b2dce7aa74e12351 -SHA1 (patch-ag) = 79106ed622c67c5921eabc4a3254948d131a4a3e +SHA1 (patch-ae) = fb741922e349072bcae16c23bb0de9f146d7bfd5 diff --git a/devel/subversion/patches/patch-ae b/devel/subversion/patches/patch-ae index d2d3f8c7b51..a59b5cd93aa 100644 --- a/devel/subversion/patches/patch-ae +++ b/devel/subversion/patches/patch-ae @@ -1,11 +1,11 @@ -$NetBSD: patch-ae,v 1.6 2003/12/06 03:01:57 epg Exp $ +$NetBSD: patch-ae,v 1.7 2004/01/13 22:48:41 epg Exp $ ---- configure.orig Wed Dec 3 17:40:04 2003 +--- configure.orig Tue Jan 13 13:32:27 2004 +++ configure -@@ -10494,8 +10494,9 @@ echo "$as_me: WARNING: swig bindings req - esac - if test "$PYTHON" != "none" -a "$SWIG_SUITABLE" = "yes"; then - ### TODO: When it's ready, add the swig-java-lib rule here. +@@ -10559,8 +10559,9 @@ echo "$as_me: WARNING: swig bindings req + if test "$PYTHON" != "none" -a "$SWIG_SUITABLE" = "yes" -a "$svn_swig_bindings_enable_python" = "yes"; then + { echo "$as_me:$LINENO: \"Configuring python swig binding\"" >&5 + echo "$as_me: \"Configuring python swig binding\"" >&6;} - SWIG_BUILD_RULES="$SWIG_BUILD_RULES swig-py-lib" - SWIG_INSTALL_RULES="$SWIG_INSTALL_RULES install-swig-py-lib" + # XXX pkgsrc: Don't build bindings by default. @@ -14,19 +14,19 @@ $NetBSD: patch-ae,v 1.6 2003/12/06 03:01:57 epg Exp $ echo "$as_me:$LINENO: checking for swig library directory" >&5 echo $ECHO_N "checking for swig library directory... $ECHO_C" >&6 -@@ -10582,7 +10583,7 @@ echo "${ECHO_T}$ac_cv_python_link" >&6 - fi - - if test "$PERL" != "none" -a "$SWIG_SUITABLE" = "yes"; then +@@ -10654,7 +10655,7 @@ echo "${ECHO_T}$ac_cv_python_link" >&6 + ### TODO: enable when the target is implemented correctly + # SWIG_BUILD_RULES="$SWIG_BUILD_RULES swig-pl-lib" + # SWIG_INSTALL_RULES="$SWIG_INSTALL_RULES install-swig-pl-lib" - SWIG_PL_INCLUDES="`$PERL -MExtUtils::Embed -e ccopts`" + SWIG_PL_INCLUDES="`$PERL -MExtUtils::Embed -e ccopts | sed s/-fno-strict-aliasing//`" SWIG_PL_COMPILE="`$PERL -MConfig -e 'print $Config{cc}'` \$(SWIG_PL_INCLUDES)" SWIG_PL_LINK="`$PERL -MConfig -e 'print $Config{ld}'` `$PERL -MConfig -e 'print $Config{lddlflags}'` `$PERL -MExtUtils::Embed -e ldopts`" fi -@@ -10676,8 +10677,9 @@ echo "$as_me: WARNING: swig bindings req - esac - if test "$PYTHON" != "none" -a "$SWIG_SUITABLE" = "yes"; then - ### TODO: When it's ready, add the swig-java-lib rule here. +@@ -10749,8 +10750,9 @@ echo "$as_me: WARNING: swig bindings req + if test "$PYTHON" != "none" -a "$SWIG_SUITABLE" = "yes" -a "$svn_swig_bindings_enable_python" = "yes"; then + { echo "$as_me:$LINENO: \"Configuring python swig binding\"" >&5 + echo "$as_me: \"Configuring python swig binding\"" >&6;} - SWIG_BUILD_RULES="$SWIG_BUILD_RULES swig-py-lib" - SWIG_INSTALL_RULES="$SWIG_INSTALL_RULES install-swig-py-lib" + # XXX pkgsrc: Don't build bindings by default. @@ -35,19 +35,19 @@ $NetBSD: patch-ae,v 1.6 2003/12/06 03:01:57 epg Exp $ echo "$as_me:$LINENO: checking for swig library directory" >&5 echo $ECHO_N "checking for swig library directory... $ECHO_C" >&6 -@@ -10764,7 +10766,7 @@ echo "${ECHO_T}$ac_cv_python_link" >&6 - fi - - if test "$PERL" != "none" -a "$SWIG_SUITABLE" = "yes"; then +@@ -10844,7 +10846,7 @@ echo "${ECHO_T}$ac_cv_python_link" >&6 + ### TODO: enable when the target is implemented correctly + # SWIG_BUILD_RULES="$SWIG_BUILD_RULES swig-pl-lib" + # SWIG_INSTALL_RULES="$SWIG_INSTALL_RULES install-swig-pl-lib" - SWIG_PL_INCLUDES="`$PERL -MExtUtils::Embed -e ccopts`" + SWIG_PL_INCLUDES="`$PERL -MExtUtils::Embed -e ccopts | sed s/-fno-strict-aliasing//`" SWIG_PL_COMPILE="`$PERL -MConfig -e 'print $Config{cc}'` \$(SWIG_PL_INCLUDES)" SWIG_PL_LINK="`$PERL -MConfig -e 'print $Config{ld}'` `$PERL -MConfig -e 'print $Config{lddlflags}'` `$PERL -MExtUtils::Embed -e ldopts`" fi -@@ -10861,8 +10863,9 @@ echo "$as_me: WARNING: swig bindings req - esac - if test "$PYTHON" != "none" -a "$SWIG_SUITABLE" = "yes"; then - ### TODO: When it's ready, add the swig-java-lib rule here. +@@ -10942,8 +10944,9 @@ echo "$as_me: WARNING: swig bindings req + if test "$PYTHON" != "none" -a "$SWIG_SUITABLE" = "yes" -a "$svn_swig_bindings_enable_python" = "yes"; then + { echo "$as_me:$LINENO: \"Configuring python swig binding\"" >&5 + echo "$as_me: \"Configuring python swig binding\"" >&6;} - SWIG_BUILD_RULES="$SWIG_BUILD_RULES swig-py-lib" - SWIG_INSTALL_RULES="$SWIG_INSTALL_RULES install-swig-py-lib" + # XXX pkgsrc: Don't build bindings by default. @@ -56,10 +56,10 @@ $NetBSD: patch-ae,v 1.6 2003/12/06 03:01:57 epg Exp $ echo "$as_me:$LINENO: checking for swig library directory" >&5 echo $ECHO_N "checking for swig library directory... $ECHO_C" >&6 -@@ -10949,7 +10952,7 @@ echo "${ECHO_T}$ac_cv_python_link" >&6 - fi - - if test "$PERL" != "none" -a "$SWIG_SUITABLE" = "yes"; then +@@ -11037,7 +11040,7 @@ echo "${ECHO_T}$ac_cv_python_link" >&6 + ### TODO: enable when the target is implemented correctly + # SWIG_BUILD_RULES="$SWIG_BUILD_RULES swig-pl-lib" + # SWIG_INSTALL_RULES="$SWIG_INSTALL_RULES install-swig-pl-lib" - SWIG_PL_INCLUDES="`$PERL -MExtUtils::Embed -e ccopts`" + SWIG_PL_INCLUDES="`$PERL -MExtUtils::Embed -e ccopts | sed s/-fno-strict-aliasing//`" SWIG_PL_COMPILE="`$PERL -MConfig -e 'print $Config{cc}'` \$(SWIG_PL_INCLUDES)" |