diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-11-15 19:44:00 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-11-21 14:45:48 +0100 |
commit | 77bd4f97c9ee410eb7bacb25e6b9d748b88b14bb (patch) | |
tree | 44c46a0e77f055254753ad9567d48bc4f0837e39 /dev-vcs/subversion | |
parent | net-fs/cifs-utils: Added pam USE flag (bug #599760). (diff) | |
download | gentoo-77bd4f97c9ee410eb7bacb25e6b9d748b88b14bb.tar.gz gentoo-77bd4f97c9ee410eb7bacb25e6b9d748b88b14bb.tar.bz2 gentoo-77bd4f97c9ee410eb7bacb25e6b9d748b88b14bb.zip |
dev-vcs/subversion: remove unused patch/file
Closes: https://github.com/gentoo/gentoo/pull/2840
Diffstat (limited to 'dev-vcs/subversion')
-rw-r--r-- | dev-vcs/subversion/files/subversion-1.6.3-hpux-dso.patch | 16 | ||||
-rw-r--r-- | dev-vcs/subversion/files/svnserve.initd2 | 26 |
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-vcs/subversion/files/subversion-1.6.3-hpux-dso.patch b/dev-vcs/subversion/files/subversion-1.6.3-hpux-dso.patch deleted file mode 100644 index f9739bef3061..000000000000 --- a/dev-vcs/subversion/files/subversion-1.6.3-hpux-dso.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- subversion/libsvn_ra/ra_loader.c.orig 2009-07-20 14:46:02 +0200 -+++ subversion/libsvn_ra/ra_loader.c 2009-07-20 14:50:02 +0200 -@@ -154,8 +154,13 @@ - const char *compat_funcname; - apr_status_t status; - -+#if defined(__hpux) && defined(__hppa) -+ libname = apr_psprintf(pool, "libsvn_ra_%s-%d.sl.0", -+ ra_name, SVN_VER_MAJOR); -+#else - libname = apr_psprintf(pool, "libsvn_ra_%s-%d.so.0", - ra_name, SVN_VER_MAJOR); -+#endif - funcname = apr_psprintf(pool, "svn_ra_%s__init", ra_name); - compat_funcname = apr_psprintf(pool, "svn_ra_%s_init", ra_name); - diff --git a/dev-vcs/subversion/files/svnserve.initd2 b/dev-vcs/subversion/files/svnserve.initd2 deleted file mode 100644 index 0e7956c316e9..000000000000 --- a/dev-vcs/subversion/files/svnserve.initd2 +++ /dev/null @@ -1,26 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License, v2 or later -# $Id$ - -depend() { - need net -} - -start() { - ebegin "Starting svnserve" - # Ensure that we run from a readable working dir, and that we do not - # lock filesystems when being run from such a location. - cd / - start-stop-daemon --start --quiet --background --make-pidfile \ - --pidfile /var/run/svnserve.pid --exec /usr/bin/svnserve \ - --user ${SVNSERVE_USER:-apache} --group ${SVNSERVE_GROUP:-apache} -- \ - --foreground --daemon ${SVNSERVE_OPTS:---root=/var/svn} - eend $? -} - -stop() { - ebegin "Stopping svnserve" - start-stop-daemon --stop --quiet --pidfile /var/run/svnserve.pid - eend $? -} |