]> Frank Brehm's Git Trees - config/bruni/etc.git/commitdiff
committing changes in /etc after emerge run
authorFrank Brehm <frank@brehm-online.com>
Wed, 14 Mar 2018 19:40:24 +0000 (20:40 +0100)
committerFrank Brehm <frank@brehm-online.com>
Wed, 14 Mar 2018 19:40:24 +0000 (20:40 +0100)
Package changes:
+dev-lang/python-3.6.3-r1

.etckeeper
conf.d/pydoc-3.6 [new file with mode: 0644]
init.d/pydoc-3.6 [new file with mode: 0755]

index 1bb08892c576ec48ecd5a89fbfcc66cdc497a2e2..01ea5406990205bbb2674cddb5637f9ec1474759 100755 (executable)
@@ -336,6 +336,7 @@ maybe chmod 0644 'conf.d/plex-media-server'
 maybe chmod 0644 'conf.d/pydoc-2.7'
 maybe chmod 0644 'conf.d/pydoc-3.4'
 maybe chmod 0644 'conf.d/pydoc-3.5'
+maybe chmod 0644 'conf.d/pydoc-3.6'
 maybe chmod 0644 'conf.d/radvd'
 maybe chmod 0644 'conf.d/rarpd'
 maybe chmod 0644 'conf.d/rpcbind'
@@ -1736,6 +1737,7 @@ maybe chmod 0755 'init.d/procfs'
 maybe chmod 0755 'init.d/pwcheck'
 maybe chmod 0755 'init.d/pydoc-2.7'
 maybe chmod 0755 'init.d/pydoc-3.5'
+maybe chmod 0755 'init.d/pydoc-3.6'
 maybe chmod 0755 'init.d/radvd'
 maybe chmod 0755 'init.d/rarpd'
 maybe chmod 0755 'init.d/root'
diff --git a/conf.d/pydoc-3.6 b/conf.d/pydoc-3.6
new file mode 100644 (file)
index 0000000..a29199c
--- /dev/null
@@ -0,0 +1,6 @@
+# /etc/init.d/pydoc.conf
+
+# This file contains the configuration for pydoc's internal webserver.
+
+# Default port for Python's pydoc server.
+PYDOC3_6_PORT="7464"
diff --git a/init.d/pydoc-3.6 b/init.d/pydoc-3.6
new file mode 100755 (executable)
index 0000000..e23cf95
--- /dev/null
@@ -0,0 +1,24 @@
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public Licence v2
+
+start() {
+       local pydoc_port="${PYDOC3_6_PORT-${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/pydoc3.6.pid \
+                         --exec /usr/bin/pydoc3.6 -- -p "${pydoc_port}"
+       eend $?
+}
+
+stop() {
+       ebegin "Stopping pydoc server"
+       start-stop-daemon --stop --quiet --pidfile /var/run/pydoc3.6.pid
+       eend $?
+}