public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/python/files: pydoc.conf pydoc.init
@ 2008-03-01 13:38 Tiziano Mueller (dev-zero)
  0 siblings, 0 replies; 2+ messages in thread
From: Tiziano Mueller (dev-zero) @ 2008-03-01 13:38 UTC (permalink / raw
  To: gentoo-commits

dev-zero    08/03/01 13:38:53

  Added:                pydoc.conf pydoc.init
  Log:
  Added init.d/conf.d scripts for the integrated pydoc webserver (bug #59903, thanks to compnerd).
  (Portage version: 2.1.4.4, RepoMan options: --force)

Revision  Changes    Path
1.1                  dev-lang/python/files/pydoc.conf

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/pydoc.conf?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/pydoc.conf?rev=1.1&content-type=text/plain

Index: pydoc.conf
===================================================================
# /etc/init.d/pydoc.conf
# $Header: 

# This file contains the configuration information for pydoc's internal
# webserver.  The variables should be rather self explanatory :-)

# Default port for Python's pydoc server
PYDOC_PORT=7464



1.1                  dev-lang/python/files/pydoc.init

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/pydoc.init?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/pydoc.init?rev=1.1&content-type=text/plain

Index: pydoc.init
===================================================================
#!/sbin/runscript
# Copyright 1999-2008 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public Licence v2
# $Header:

depend() {
	need net
}

start() {
	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 \
			  --startas /usr/bin/pydoc -- -p $PYDOC_PORT
	eend $?
}

stop() {
	ebegin "Stopping pydoc server"
	start-stop-daemon --stop --quiet --pidfile /var/run/pydoc.pid
	eend $?
}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-lang/python/files: pydoc.conf pydoc.init
@ 2008-06-30 15:10 Ali Polatel (hawking)
  0 siblings, 0 replies; 2+ messages in thread
From: Ali Polatel (hawking) @ 2008-06-30 15:10 UTC (permalink / raw
  To: gentoo-commits

hawking     08/06/30 15:10:28

  Modified:             pydoc.conf pydoc.init
  Log:
  Fixed files/pydoc* headers
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r1 x86_64)

Revision  Changes    Path
1.2                  dev-lang/python/files/pydoc.conf

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/pydoc.conf?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/pydoc.conf?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/pydoc.conf?r1=1.1&r2=1.2

Index: pydoc.conf
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pydoc.conf	1 Mar 2008 13:38:52 -0000	1.1
+++ pydoc.conf	30 Jun 2008 15:10:28 -0000	1.2
@@ -1,5 +1,5 @@
 # /etc/init.d/pydoc.conf
-# $Header: 
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.conf,v 1.2 2008/06/30 15:10:28 hawking Exp $
 
 # This file contains the configuration information for pydoc's internal
 # webserver.  The variables should be rather self explanatory :-)



1.2                  dev-lang/python/files/pydoc.init

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/pydoc.init?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/pydoc.init?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/files/pydoc.init?r1=1.1&r2=1.2

Index: pydoc.init
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.init,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pydoc.init	1 Mar 2008 13:38:52 -0000	1.1
+++ pydoc.init	30 Jun 2008 15:10:28 -0000	1.2
@@ -1,7 +1,7 @@
 #!/sbin/runscript
 # Copyright 1999-2008 Gentoo Technologies, Inc.
 # Distributed under the terms of the GNU General Public Licence v2
-# $Header:
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.init,v 1.2 2008/06/30 15:10:28 hawking Exp $
 
 depend() {
 	need net



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-06-30 15:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-30 15:10 [gentoo-commits] gentoo-x86 commit in dev-lang/python/files: pydoc.conf pydoc.init Ali Polatel (hawking)
  -- strict thread matches above, loose matches on Subject: below --
2008-03-01 13:38 Tiziano Mueller (dev-zero)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox