]> Frank Brehm's Git Trees - config/samara/etc.git/commitdiff
committing changes in /etc after emerge run
authorfbrehm <fbrehm@samara.profitbricks.localdomain>
Wed, 29 Feb 2012 11:49:08 +0000 (12:49 +0100)
committerroot <root@samara.profitbricks.localdomain>
Wed, 29 Feb 2012 11:49:08 +0000 (12:49 +0100)
Package changes:
+dev-lang/python-3.2.2

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

index 24d364d672f0670c11924ceb6bd4d2845950917f..f4b64dc64717d9b1467a5d541ce2247de7fa2c31 100755 (executable)
@@ -262,6 +262,7 @@ maybe chmod 0644 './conf.d/pciparm'
 maybe chmod 0644 './conf.d/postgresql-9.1'
 maybe chmod 0644 './conf.d/pydoc-2.7'
 maybe chmod 0644 './conf.d/pydoc-3.1'
+maybe chmod 0644 './conf.d/pydoc-3.2'
 maybe chmod 0644 './conf.d/rfcomm'
 maybe chmod 0644 './conf.d/rpcbind'
 maybe chmod 0644 './conf.d/rsyncd'
@@ -928,6 +929,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.1'
+maybe chmod 0755 './init.d/pydoc-3.2'
 maybe chmod 0755 './init.d/reboot.sh'
 maybe chmod 0755 './init.d/rfcomm'
 maybe chmod 0755 './init.d/root'
diff --git a/conf.d/pydoc-3.2 b/conf.d/pydoc-3.2
new file mode 100644 (file)
index 0000000..7587233
--- /dev/null
@@ -0,0 +1,7 @@
+# /etc/init.d/pydoc.conf
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.conf,v 1.3 2011/10/27 13:56:55 neurogeek Exp $
+
+# This file contains the configuration for pydoc's internal webserver.
+
+# Default port for Python's pydoc server.
+PYDOC3_2_PORT="7464"
diff --git a/init.d/pydoc-3.2 b/init.d/pydoc-3.2
new file mode 100755 (executable)
index 0000000..ad60fc0
--- /dev/null
@@ -0,0 +1,29 @@
+#!/sbin/runscript
+# Copyright 1999-2011 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public Licence v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.init,v 1.4 2011/10/27 13:56:55 neurogeek Exp $
+
+depend() {
+       need net
+}
+
+start() {
+       local pydoc_port="${PYDOC3_2_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.2.pid \
+                         --exec /usr/bin/pydoc3.2 -- -p "${pydoc_port}"
+       eend $?
+}
+
+stop() {
+       ebegin "Stopping pydoc server"
+       start-stop-daemon --stop --quiet --pidfile /var/run/pydoc3.2.pid
+       eend $?
+}