From b495ea1b5a450c94c493049c4104be9e20896818 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Tue, 6 Sep 2022 09:33:24 +0300 Subject: Removed a lot of the gentoo ebuild, following reconfiguration of my setup --- dev-lang/python/files/pydoc.init | 278 --------------------------------------- 1 file changed, 278 deletions(-) delete mode 100644 dev-lang/python/files/pydoc.init (limited to 'dev-lang/python/files/pydoc.init') diff --git a/dev-lang/python/files/pydoc.init b/dev-lang/python/files/pydoc.init deleted file mode 100644 index 62326ec..0000000 --- a/dev-lang/python/files/pydoc.init +++ /dev/null @@ -1,278 +0,0 @@ - - - -pydoc.init « files « python « dev-lang - repo/gentoo.git - Official Gentoo ebuild repository - - - - - - - - - - - - - -
- - -
- -
-
-
-
- - - - -
-summaryrefslogtreecommitdiff
- - - -
-
-
blob: f8e05636da4ed1970e196aa65ff063b761656ba9 (plain) - - -
1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
-23
-24
-
#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public Licence v2
-
-start() {
-	local pydoc_port="${@PYDOC_PORT_VARIABLE@-${PYDOC_PORT}}"
-
-	if [ -z "${pydoc_port}" ]; then
-		eerror "Port not set"
-		return 1
-	fi
-
-	ebegin "Starting pydoc server on port ${pydoc_port}" 
-	start-stop-daemon --start --background --make-pidfile \
-			  --pidfile /var/run/@PYDOC@.pid \
-			  --exec /usr/bin/@PYDOC@ -- -p "${pydoc_port}"
-	eend $?
-}
-
-stop() {
-	ebegin "Stopping pydoc server"
-	start-stop-daemon --stop --quiet --pidfile /var/run/@PYDOC@.pid
-	eend $?
-}
-
-
-
-
-
-
-
- - - - - - - - - -- cgit v1.2.3