diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-07-16 19:29:20 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-07-16 19:29:20 +0100 |
commit | 305d9b248697fd66486c68cfe5f9ce7305ee09bf (patch) | |
tree | d87afaf49ecbf18ac56d88aa23a0d6f982c34828 /dev-vcs/subversion/files | |
parent | 6205117a1bc0af7788ea1d781b055559c4f9ea4e (diff) |
clean some deprecated ebuilds
Diffstat (limited to 'dev-vcs/subversion/files')
-rw-r--r-- | dev-vcs/subversion/files/47_mod_dav_svn.conf | 16 | ||||
-rw-r--r-- | dev-vcs/subversion/files/svnserve.confd | 10 | ||||
-rw-r--r-- | dev-vcs/subversion/files/svnserve.initd2 | 26 | ||||
-rw-r--r-- | dev-vcs/subversion/files/svnserve.initd3 | 21 | ||||
-rw-r--r-- | dev-vcs/subversion/files/svnserve.xinetd | 14 |
5 files changed, 0 insertions, 87 deletions
diff --git a/dev-vcs/subversion/files/47_mod_dav_svn.conf b/dev-vcs/subversion/files/47_mod_dav_svn.conf deleted file mode 100644 index 52d08b7a..00000000 --- a/dev-vcs/subversion/files/47_mod_dav_svn.conf +++ /dev/null @@ -1,16 +0,0 @@ -<IfDefine SVN> -LoadModule dav_svn_module modules/mod_dav_svn.so -<IfDefine SVN_AUTHZ> -LoadModule authz_svn_module modules/mod_authz_svn.so -</IfDefine> - -# Example configuration: -#<Location /svn/repos> -# DAV svn -# SVNPath ${SVN_REPOS_LOC}/repos -# AuthType Basic -# AuthName "Subversion repository" -# AuthUserFile ${SVN_REPOS_LOC}/conf/svnusers -# Require valid-user -#</Location> -</IfDefine> diff --git a/dev-vcs/subversion/files/svnserve.confd b/dev-vcs/subversion/files/svnserve.confd deleted file mode 100644 index 83997ce9..00000000 --- a/dev-vcs/subversion/files/svnserve.confd +++ /dev/null @@ -1,10 +0,0 @@ -# The commented variables in this file are the defaults that are used -# in the init-script. You don't need to uncomment them except to -# customize them to different values. - -# Options for svnserve -#SVNSERVE_OPTS="--root=/var/svn" - -# User and group as which to run svnserve -#SVNSERVE_USER="svn" -#SVNSERVE_GROUP="svnusers" diff --git a/dev-vcs/subversion/files/svnserve.initd2 b/dev-vcs/subversion/files/svnserve.initd2 deleted file mode 100644 index 605a4e53..00000000 --- a/dev-vcs/subversion/files/svnserve.initd2 +++ /dev/null @@ -1,26 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/files/svnserve.initd2,v 1.2 2012/01/14 19:46:34 tommy Exp $ - -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 $? -} diff --git a/dev-vcs/subversion/files/svnserve.initd3 b/dev-vcs/subversion/files/svnserve.initd3 deleted file mode 100644 index 2a4fd4b0..00000000 --- a/dev-vcs/subversion/files/svnserve.initd3 +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/files/svnserve.initd3,v 1.1 2015/04/09 12:58:45 polynomial-c Exp $ - -description="svn server" -pidfile="/var/run/svnserve.pid" -command="/usr/bin/svnserve" -command_args="--foreground --daemon ${SVNSERVE_OPTS:---root=/var/svn}" -command_background="true" -start_stop_daemon_args="-u ${SVNSERVE_USER:-apache} -g ${SVNSERVE_GROUP:-apache}" - -depend() { - need net -} - -start_pre() { - # Ensure that we run from a readable working dir, and that we do not - # lock filesystems when being run from such a location. - cd / -} diff --git a/dev-vcs/subversion/files/svnserve.xinetd b/dev-vcs/subversion/files/svnserve.xinetd deleted file mode 100644 index e29f906b..00000000 --- a/dev-vcs/subversion/files/svnserve.xinetd +++ /dev/null @@ -1,14 +0,0 @@ -service svn -{ - socket_type = stream - wait = no - user = apache - group = apache - umask = 002 - protocol = tcp - log_on_failure += USERID HOST - port = 3690 - server = /usr/bin/svnserve - server_args = -i - disable = yes -} |