summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-04-09 19:24:23 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-04-09 19:24:23 +0000
commita6ffdea6013c1ce8f1e2b7ed708be8c306b13632 (patch)
tree0bac0a1c417dcca40296dfe1d7730b4546d0ce6b /dev-util/subversion/files
parentPackage moved from net-www to www-misc, bug 265569. (diff)
downloadgentoo-2-a6ffdea6013c1ce8f1e2b7ed708be8c306b13632.tar.gz
gentoo-2-a6ffdea6013c1ce8f1e2b7ed708be8c306b13632.tar.bz2
gentoo-2-a6ffdea6013c1ce8f1e2b7ed708be8c306b13632.zip
Version bump. Remove older versions.
(Portage version: 13306-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/subversion/files')
-rw-r--r--dev-util/subversion/files/70svn-gentoo.el2
-rw-r--r--dev-util/subversion/files/subversion-1.1.1-perl-vendor.patch18
-rw-r--r--dev-util/subversion/files/subversion-1.3.1-neon-config.patch35
-rw-r--r--dev-util/subversion/files/subversion-1.4-db4.patch13
-rw-r--r--dev-util/subversion/files/subversion-1.4.3-debug-config.patch31
-rw-r--r--dev-util/subversion/files/subversion-1.4.6-neon-0.28.patch62
-rw-r--r--dev-util/subversion/files/subversion-apr_cppflags.patch13
-rw-r--r--dev-util/subversion/files/subversion-hotbackup-config.patch20
8 files changed, 2 insertions, 192 deletions
diff --git a/dev-util/subversion/files/70svn-gentoo.el b/dev-util/subversion/files/70svn-gentoo.el
index 60ee7128d02f..e5721e2480c1 100644
--- a/dev-util/subversion/files/70svn-gentoo.el
+++ b/dev-util/subversion/files/70svn-gentoo.el
@@ -7,5 +7,7 @@
(add-to-list 'vc-handled-backends 'SVN)
(defalias 'svn-examine 'svn-status)
+(autoload 'svn-status "dsvn" "Run `svn status'." t)
+(autoload 'svn-update "dsvn" "Run `svn update'." t)
(autoload 'svn-status "psvn"
"Examine the status of Subversion working copy in directory DIR." t)
diff --git a/dev-util/subversion/files/subversion-1.1.1-perl-vendor.patch b/dev-util/subversion/files/subversion-1.1.1-perl-vendor.patch
deleted file mode 100644
index ed8bdded26ea..000000000000
--- a/dev-util/subversion/files/subversion-1.1.1-perl-vendor.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-This patch fixes bug 66712 by installing the perl bindings in vendor
-instead of site. The INSTALLDIRS bit is stolen from perl-module.eclass
-
-11 Nov 2004 agriffis
-
-Index: subversion-1.4.6/Makefile.in
-===================================================================
---- subversion-1.4.6.orig/Makefile.in
-+++ subversion-1.4.6/Makefile.in
-@@ -606,7 +606,7 @@ $(SWIG_PL_DIR)/native/Makefile.PL: $(SWI
- ./config.status subversion/bindings/swig/perl/native/Makefile.PL
-
- $(SWIG_PL_DIR)/native/Makefile: $(SWIG_PL_DIR)/native/Makefile.PL
-- cd $(SWIG_PL_DIR)/native; $(PERL) Makefile.PL
-+ cd $(SWIG_PL_DIR)/native; $(PERL) Makefile.PL INSTALLDIRS=vendor
-
- swig-pl_DEPS = autogen-swig-pl libsvn_client libsvn_delta libsvn_diff \
- libsvn_fs libsvn_ra libsvn_repos libsvn_subr libsvn_wc libsvn_swig_perl \
diff --git a/dev-util/subversion/files/subversion-1.3.1-neon-config.patch b/dev-util/subversion/files/subversion-1.3.1-neon-config.patch
deleted file mode 100644
index b164729a1a2e..000000000000
--- a/dev-util/subversion/files/subversion-1.3.1-neon-config.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- subversion-1.3.0/build/ac-macros/neon.m4.orig 2006-02-27 16:13:32.000000000 +0100
-+++ subversion-1.3.0/build/ac-macros/neon.m4 2006-02-27 16:19:34.000000000 +0100
-@@ -142,7 +142,7 @@
- if test -z $svn_allowed_neon_on_system; then
- echo "You have neon version $NEON_VERSION,"
- echo "but Subversion needs neon $NEON_LATEST_WORKING_VER."
-- SVN_DOWNLOAD_NEON()
-+ SVN_DOWNLOAD_NEONFAIL()
- fi
-
- else
-@@ -177,3 +177,23 @@
- AC_MSG_RESULT([no suitable neon found])
- svn_lib_neon="no"
- ])
-+
-+dnl SVN_DOWNLOAD_NEONFAIL()
-+dnl no neon found, print out a message telling the user what to do
-+AC_DEFUN(SVN_DOWNLOAD_NEONFAIL,
-+[
-+ echo ""
-+ echo "An appropriate version of neon could not be found, so libsvn_ra_dav"
-+ echo "will not be built. If you want to build libsvn_ra_dav, please either"
-+ echo "install neon ${NEON_LATEST_WORKING_VER} on this system"
-+ echo ""
-+ echo "or"
-+ echo ""
-+ echo "get neon ${NEON_LATEST_WORKING_VER} from:"
-+ echo " ${NEON_URL}"
-+ echo "unpack the archive using tar/gunzip and rename the resulting"
-+ echo "directory from ./neon-${NEON_LATEST_WORKING_VER}/ to ./neon/"
-+ echo ""
-+ AC_MSG_FAILURE([no suitable neon found])
-+ svn_lib_neon="no"
-+])
diff --git a/dev-util/subversion/files/subversion-1.4-db4.patch b/dev-util/subversion/files/subversion-1.4-db4.patch
deleted file mode 100644
index cfaaefa8a842..000000000000
--- a/dev-util/subversion/files/subversion-1.4-db4.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: subversion-1.4.6/configure.in
-===================================================================
---- subversion-1.4.6.orig/configure.in
-+++ subversion-1.4.6/configure.in
-@@ -245,7 +245,7 @@ powerpc-apple-darwin*)
- esac
- # Look for libdb4.so first:
- SVN_LIB_BERKELEY_DB($SVN_FS_WANT_DB_MAJOR, $SVN_FS_WANT_DB_MINOR,
-- $SVN_FS_WANT_DB_PATCH, [db4 db])
-+ $SVN_FS_WANT_DB_PATCH, [db-4.3 db-4.2 db-4.0 db-4 db-4.1 db4 db])
-
- AC_DEFINE_UNQUOTED(SVN_FS_WANT_DB_MAJOR, $SVN_FS_WANT_DB_MAJOR,
- [The desired major version for the Berkeley DB])
diff --git a/dev-util/subversion/files/subversion-1.4.3-debug-config.patch b/dev-util/subversion/files/subversion-1.4.3-debug-config.patch
deleted file mode 100644
index 94fb19438906..000000000000
--- a/dev-util/subversion/files/subversion-1.4.3-debug-config.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Index: subversion-1.4.6/configure.in
-===================================================================
---- subversion-1.4.6.orig/configure.in
-+++ subversion-1.4.6/configure.in
-@@ -433,7 +433,7 @@ AC_HELP_STRING([--with-ssl],
-
- AC_ARG_ENABLE(debug,
- AC_HELP_STRING([--enable-debug],
-- [Turn on debugging and compile time warnings]),
-+ [(gentoo) disabled, just observe CFLAGS]),
- [
- if test "$enableval" = "yes" ; then
- enable_debugging="yes"
-@@ -441,17 +441,6 @@ AC_HELP_STRING([--enable-debug],
- enable_debugging="no"
- fi
- ])
--if test "$enable_debugging" = "yes" ; then
-- dnl At the moment, we don't want optimization, because we're
-- dnl debugging.
-- dnl ### actually, debugging should be fine with the default -O2
-- CFLAGS=["`echo $CFLAGS' ' | sed -e 's/-O[^ ]* //g'`"]
--else
-- if test "$enable_debugging" = "no" ; then
-- CFLAGS=["`echo $CFLAGS' ' | sed -e 's/-g[0-9] //g' | sed -e 's/-g//g'`"]
-- fi
--fi
--
-
- AC_ARG_WITH(editor,
- AC_HELP_STRING([--with-editor=PATH],
diff --git a/dev-util/subversion/files/subversion-1.4.6-neon-0.28.patch b/dev-util/subversion/files/subversion-1.4.6-neon-0.28.patch
deleted file mode 100644
index 7dc23c576de0..000000000000
--- a/dev-util/subversion/files/subversion-1.4.6-neon-0.28.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-Index: subversion-1.4.6/build/ac-macros/neon.m4
-===================================================================
---- subversion-1.4.6.orig/build/ac-macros/neon.m4
-+++ subversion-1.4.6/build/ac-macros/neon.m4
-@@ -50,14 +50,18 @@ AC_DEFUN(SVN_LIB_NEON,
- NEON_VERSION=`cat $abs_srcdir/neon/.version`
- AC_MSG_RESULT([$NEON_VERSION])
-
-- if test -n "`echo \"$NEON_VERSION\" | grep '^0\.2[[56]]\.'`" ; then
-+ if test -n ["`echo "$NEON_VERSION" | grep '^0\.2[5-8]\.'`"] ; then
- AC_DEFINE_UNQUOTED([SVN_NEON_0_25], [1],
- [Define to 1 if you have Neon 0.25 or later.])
- fi
-- if test -n "`echo \"$NEON_VERSION\" | grep '^0\.26\.'`" ; then
-+ if test -n ["`echo "$NEON_VERSION" | grep '^0\.2[6-8]\.'`"] ; then
- AC_DEFINE_UNQUOTED([SVN_NEON_0_26], [1],
- [Define to 1 if you have Neon 0.26 or later.])
- fi
-+ if test -n ["`echo "$NEON_VERSION" | grep '^0\.2[7-8]\.'`"] ; then
-+ AC_DEFINE_UNQUOTED([SVN_NEON_0_27], [1],
-+ [Define to 1 if you have Neon 0.27 or later.])
-+ fi
-
- for svn_allowed_neon in $NEON_ALLOWED_LIST; do
- if test "$NEON_VERSION" = "$svn_allowed_neon" ||
-@@ -127,14 +131,18 @@ AC_DEFUN(SVN_NEON_CONFIG,
- NEON_VERSION=`$neon_config --version | sed -e 's/^neon //'`
- AC_MSG_RESULT([$NEON_VERSION])
-
-- if test -n "`echo \"$NEON_VERSION\" | grep '^0\.2[[56]]\.'`" ; then
-+ if test -n ["`echo "$NEON_VERSION" | grep '^0\.2[5-8]\.'`"] ; then
- AC_DEFINE_UNQUOTED([SVN_NEON_0_25], [1],
- [Define to 1 if you have Neon 0.25 or later.])
- fi
-- if test -n "`echo \"$NEON_VERSION\" | grep '^0\.26\.'`" ; then
-+ if test -n ["`echo "$NEON_VERSION" | grep '^0\.2[6-8]\.'`"] ; then
- AC_DEFINE_UNQUOTED([SVN_NEON_0_26], [1],
- [Define to 1 if you have Neon 0.26 or later.])
- fi
-+ if test -n ["`echo "$NEON_VERSION" | grep '^0\.2[7-8]\.'`"] ; then
-+ AC_DEFINE_UNQUOTED([SVN_NEON_0_27], [1],
-+ [Define to 1 if you have Neon 0.27 or later.])
-+ fi
-
- for svn_allowed_neon in $NEON_ALLOWED_LIST; do
- if test "$NEON_VERSION" = "$svn_allowed_neon" ||
-Index: subversion-1.4.6/subversion/libsvn_ra_dav/session.c
-===================================================================
---- subversion-1.4.6.orig/subversion/libsvn_ra_dav/session.c
-+++ subversion-1.4.6/subversion/libsvn_ra_dav/session.c
-@@ -575,7 +575,11 @@ typedef struct neonprogress_baton_t
- } neonprogress_baton_t;
-
- static void
-+#ifdef SVN_NEON_0_27
-+ra_dav_neonprogress(void *baton, ne_off_t progress, ne_off_t total)
-+#else
- ra_dav_neonprogress(void *baton, off_t progress, off_t total)
-+#endif /* SVN_NEON_0_27 */
- {
- const neonprogress_baton_t *neonprogress_baton = baton;
- if (neonprogress_baton->progress_func)
diff --git a/dev-util/subversion/files/subversion-apr_cppflags.patch b/dev-util/subversion/files/subversion-apr_cppflags.patch
deleted file mode 100644
index c46a2511e59d..000000000000
--- a/dev-util/subversion/files/subversion-apr_cppflags.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: subversion-1.4.6/build/ac-macros/apr.m4
-===================================================================
---- subversion-1.4.6.orig/build/ac-macros/apr.m4
-+++ subversion-1.4.6/build/ac-macros/apr.m4
-@@ -64,7 +64,7 @@ AC_DEFUN(SVN_LIB_APR,
- AC_MSG_ERROR([apr-config --ldflags failed])
- fi
-
-- SVN_APR_INCLUDES="`$apr_config --includes`"
-+ SVN_APR_INCLUDES="`$apr_config --includes --cppflags`"
- if test $? -ne 0; then
- AC_MSG_ERROR([apr-config --includes failed])
- fi
diff --git a/dev-util/subversion/files/subversion-hotbackup-config.patch b/dev-util/subversion/files/subversion-hotbackup-config.patch
deleted file mode 100644
index b10b7d9fb194..000000000000
--- a/dev-util/subversion/files/subversion-hotbackup-config.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Index: subversion-1.4.6/tools/backup/hot-backup.py.in
-===================================================================
---- subversion-1.4.6.orig/tools/backup/hot-backup.py.in
-+++ subversion-1.4.6/tools/backup/hot-backup.py.in
-@@ -34,7 +34,14 @@ svnlook = "@SVN_BINDIR@/svnlook"
- svnadmin = "@SVN_BINDIR@/svnadmin"
-
- # Number of backups to keep around (0 for "keep them all")
--num_backups = 64
-+# Configurable in /etc/env.d/80hotbackup
-+envvar_hb_num='SVN_HOTBACKUP_NUM_BACKUPS'
-+if os.environ.has_key(envvar_hb_num):
-+ num_backups = int(os.environ[envvar_hb_num])
-+else:
-+ num_backups = 64
-+print 'Keeping up to', num_backups, 'around.'
-+
-
- # Archive types/extensions
- archive_map = {