dev-vcs/subversion: remove unused patch/file
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Tue, 15 Nov 2016 18:44:00 +0000 (19:44 +0100)
committerLars Wendler <polynomial-c@gentoo.org>
Mon, 21 Nov 2016 13:45:48 +0000 (14:45 +0100)
Closes: https://github.com/gentoo/gentoo/pull/2840

dev-vcs/subversion/files/subversion-1.6.3-hpux-dso.patch [deleted file]
dev-vcs/subversion/files/svnserve.initd2 [deleted file]

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 (file)
index f9739be..0000000
+++ /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 (file)
index 0e7956c..0000000
+++ /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 $?
-}