ping?
-f
frantisek holop, 24 Sep 2014 19:48:
> this is an update to supervisor 3.1.2
> needs the py-meld3 update.
>
> changes:
>
> - take maintainership
>
> - html docs
>
> the current patch that changes /etc/supervisord.conf
> for openbsd friendly values also had these changes,
> and i think they should go. they also change comments
> and default values, and it is up to the admin
> to set these up.
>
> -;autorestart=unexpected ; whether/when to restart (default:
> unexpected)
> -;startsecs=1 ; number of secs prog must stay running (def.
> 1)
> +;autorestart=true ; retstart at unexpected quit (default: true)
> +;startsecs=10 ; number of secs prog must stay running (def.
> 1)
>
> -;autorestart=unexpected ; whether/when to restart (default:
> unexpected)
> -;startsecs=1 ; number of secs prog must stay running (def.
> 1)
> +;autorestart=unexpected ; restart at unexpected quit (default:
> unexpected)
> +;startsecs=10 ; number of secs prog must stay running (def.
> 1)
>
> -;stopasgroup=false ; send stop signal to the UNIX process group
> (default false)
> -;killasgroup=false ; SIGKILL the UNIX process group (def false)
>
> -;environment=A="1",B="2" ; process environment additions
> +;environment=A=1,B=2 ; process environment additions
> ;serverurl=AUTO ; override serverurl computation (childutils)
>
> please test and commit.
>
> -f
> --
> you ate a lot of wall paint as a kid, huh? you mean wall candy?
> Index: Makefile
> ===================================================================
> RCS file: /cvs/ports/sysutils/supervisor/Makefile,v
> retrieving revision 1.1.1.1
> diff -u -p -r1.1.1.1 Makefile
> --- Makefile 14 May 2014 09:56:44 -0000 1.1.1.1
> +++ Makefile 24 Sep 2014 17:41:42 -0000
> @@ -2,13 +2,15 @@
>
> COMMENT= system to monitor and control processes
>
> -MODPY_EGG_VERSION= 3.0
> +MODPY_EGG_VERSION= 3.1.2
> DISTNAME= supervisor-${MODPY_EGG_VERSION}
>
> CATEGORIES= sysutils
>
> HOMEPAGE= http://supervisord.org/
>
> +MAINTAINER = frantisek holop <[email protected]>
> +
> # BSD-derived
> PERMIT_PACKAGE_CDROM = Yes
>
> @@ -18,6 +20,7 @@ MODULES= lang/python
>
> MODPY_SETUPTOOLS= Yes
>
> +BUILD_DEPENDS = textproc/py-sphinx
> RUN_DEPENDS= www/py-meld3
> TEST_DEPENDS= devel/py-mock \
> www/py-meld3
> @@ -27,8 +30,14 @@ SUBST_VARS+= VARBASE
> pre-configure:
> ${SUBST_CMD} ${WRKSRC}/supervisor/skel/sample.conf
>
> +MAKE_ENV += PYTHONPATH=${WRKSRC}
> +DOCSRC = ${WRKSRC}/docs
> +post-build:
> + cd ${DOCSRC} && ${LOCALBASE}/bin/sphinx-build -N . _build/html
> +
> +DOCS = ${PREFIX}/share/doc/supervisor
> post-install:
> - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/supervisor/
> - ${INSTALL_DATA} ${WRKSRC}/docs/* ${PREFIX}/share/doc/supervisor/
> + ${INSTALL_DATA_DIR} ${DOCS}
> + cd ${DOCSRC}/_build/html && pax -rw * ${DOCS}
>
> .include <bsd.port.mk>
> Index: distinfo
> ===================================================================
> RCS file: /cvs/ports/sysutils/supervisor/distinfo,v
> retrieving revision 1.1.1.1
> diff -u -p -r1.1.1.1 distinfo
> --- distinfo 14 May 2014 09:56:44 -0000 1.1.1.1
> +++ distinfo 24 Sep 2014 17:41:42 -0000
> @@ -1,2 +1,2 @@
> -SHA256 (supervisor-3.0.tar.gz) = gqrFTFdgtqT0wo3aIDcU42Kmi0qbqFSfpllVmY46IhI=
> -SIZE (supervisor-3.0.tar.gz) = 459820
> +SHA256 (supervisor-3.1.2.tar.gz) =
> y2CLRzVSLM03AlS7OyvqaD3A9s5yPdjFtgxgCwCwOWE=
> +SIZE (supervisor-3.1.2.tar.gz) = 390925
> Index: patches/patch-supervisor_skel_sample_conf
> ===================================================================
> RCS file:
> /cvs/ports/sysutils/supervisor/patches/patch-supervisor_skel_sample_conf,v
> retrieving revision 1.1.1.1
> diff -u -p -r1.1.1.1 patch-supervisor_skel_sample_conf
> --- patches/patch-supervisor_skel_sample_conf 14 May 2014 09:56:44 -0000
> 1.1.1.1
> +++ patches/patch-supervisor_skel_sample_conf 24 Sep 2014 17:41:42 -0000
> @@ -1,76 +1,43 @@
> $OpenBSD: patch-supervisor_skel_sample_conf,v 1.1.1.1 2014/05/14 09:56:44
> jasper Exp $
> ---- supervisor/skel/sample.conf.orig Tue Dec 17 17:20:12 2013
> -+++ supervisor/skel/sample.conf Tue Dec 17 17:39:28 2013
> -@@ -7,7 +7,7 @@
> - ; variables can be expanded using this syntax: "%(ENV_HOME)s".
> +--- supervisor/skel/sample.conf.orig Sun Sep 7 23:04:59 2014
> ++++ supervisor/skel/sample.conf Wed Sep 24 19:41:00 2014
> +@@ -9,7 +9,8 @@
> + ; - Comments must have a leading space: "a=b ;comment" not "a=b;comment".
>
> [unix_http_server]
> -file=/tmp/supervisor.sock ; (the path to the socket file)
> -+file=${VARBASE}/run/supervisor/supervisor.sock ; (the path to the socket
> file)
> ++file=${VARBASE}/run/supervisor/supervisor.sock
> ++ ; (the path to the socket file)
> ;chmod=0700 ; socket file mode (default 0700)
> ;chown=nobody:nogroup ; socket file uid:gid owner
> ;username=user ; (default is no username (open server))
> -@@ -19,11 +19,11 @@ file=/tmp/supervisor.sock ; (the path to the socket
> +@@ -21,11 +22,13 @@ file=/tmp/supervisor.sock ; (the path to the socket
> ;password=123 ; (default is no password (open server))
>
> [supervisord]
> -logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log)
> -+logfile=${VARBASE}/log/supervisord.log ; (main log file;default
> $CWD/supervisord.log)
> ++logfile=${VARBASE}/log/supervisord.log
> ++ ; (main log file;default $CWD/supervisord.log)
> logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default
> 50MB)
> logfile_backups=10 ; (num of main logfile rotation
> backups;default 10)
> loglevel=info ; (log level;default info; others:
> debug,warn,trace)
> -pidfile=/tmp/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
> -+pidfile=${VARBASE}/run/supervisor/supervisord.pid ; (supervisord
> pidfile;default supervisord.pid)
> ++pidfile=${VARBASE}/run/supervisor/supervisord.pid
> ++ ; (supervisord pidfile;default supervisord.pid)
> nodaemon=false ; (start in foreground if true;default false)
> minfds=1024 ; (min. avail startup file descriptors;default
> 1024)
> minprocs=200 ; (min. avail process descriptors;default 200)
> -@@ -43,7 +43,7 @@ minprocs=200 ; (min. avail process des
> +@@ -45,7 +48,8 @@ minprocs=200 ; (min. avail process des
> supervisor.rpcinterface_factory =
> supervisor.rpcinterface:make_main_rpcinterface
>
> [supervisorctl]
> -serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket
> -+serverurl=unix://${VARBASE}/run/supervisor/supervisor.sock ; use a unix://
> URL for a unix socket
> ++serverurl=unix://${VARBASE}/run/supervisor/supervisor.sock
> ++ ; use a unix:// URL for a unix socket
> ;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet
> socket
> ;username=chris ; should be same as http_username if set
> ;password=123 ; should be same as http_password if set
> -@@ -62,8 +62,8 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
> - ;umask=022 ; umask for process (default None)
> - ;priority=999 ; the relative start priority (default 999)
> - ;autostart=true ; start at supervisord start (default: true)
> --;autorestart=unexpected ; whether/when to restart (default:
> unexpected)
> --;startsecs=1 ; number of secs prog must stay running
> (def. 1)
> -+;autorestart=true ; retstart at unexpected quit (default: true)
> -+;startsecs=10 ; number of secs prog must stay running
> (def. 1)
> - ;startretries=3 ; max # of serial start failures (default 3)
> - ;exitcodes=0,2 ; 'expected' exit codes for process (default
> 0,2)
> - ;stopsignal=QUIT ; signal used to kill process (default TERM)
> -@@ -100,14 +100,12 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
> - ;umask=022 ; umask for process (default None)
> - ;priority=-1 ; the relative start priority (default -1)
> - ;autostart=true ; start at supervisord start (default: true)
> --;autorestart=unexpected ; whether/when to restart (default:
> unexpected)
> --;startsecs=1 ; number of secs prog must stay running
> (def. 1)
> -+;autorestart=unexpected ; restart at unexpected quit (default:
> unexpected)
> -+;startsecs=10 ; number of secs prog must stay running
> (def. 1)
> - ;startretries=3 ; max # of serial start failures (default 3)
> - ;exitcodes=0,2 ; 'expected' exit codes for process (default
> 0,2)
> - ;stopsignal=QUIT ; signal used to kill process (default TERM)
> - ;stopwaitsecs=10 ; max num secs to wait b4 SIGKILL (default
> 10)
> --;stopasgroup=false ; send stop signal to the UNIX process group
> (default false)
> --;killasgroup=false ; SIGKILL the UNIX process group (def false)
> - ;user=chrism ; setuid to this UNIX account to run the
> program
> - ;redirect_stderr=true ; redirect proc stderr to stdout (default
> false)
> - ;stdout_logfile=/a/path ; stdout log path, NONE for none; default
> AUTO
> -@@ -118,7 +116,7 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
> - ;stderr_logfile_maxbytes=1MB ; max # logfile bytes b4 rotation (default
> 50MB)
> - ;stderr_logfile_backups ; # of stderr logfile backups (default 10)
> - ;stderr_events_enabled=false ; emit events on stderr writes (default
> false)
> --;environment=A="1",B="2" ; process environment additions
> -+;environment=A=1,B=2 ; process environment additions
> - ;serverurl=AUTO ; override serverurl computation (childutils)
> -
> - ; The below sample group section shows all possible group values,
> -@@ -136,4 +134,4 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
> +@@ -138,4 +142,4 @@ serverurl=unix:///tmp/supervisor.sock ; use a unix://
> ; include files themselves.
>
> ;[include]
> Index: pkg/PLIST
> ===================================================================
> RCS file: /cvs/ports/sysutils/supervisor/pkg/PLIST,v
> retrieving revision 1.1.1.1
> diff -u -p -r1.1.1.1 PLIST
> --- pkg/PLIST 14 May 2014 09:56:44 -0000 1.1.1.1
> +++ pkg/PLIST 24 Sep 2014 17:41:42 -0000
> @@ -31,13 +31,6 @@ lib/python${MODPY_VERSION}/site-packages
> lib/python${MODPY_VERSION}/site-packages/supervisor/loggers.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/loggers.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/CHANGES.txt
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/INSTALL.txt
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/LICENSE.txt
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/MANIFEST
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/Makefile
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/README.txt
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/TODO.txt
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/__init__.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/__init__.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/asynchat_25.py
> @@ -46,48 +39,12 @@ lib/python${MODPY_VERSION}/site-packages
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/asyncore_25.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/auth_handler.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/auth_handler.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/chat_server.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/chat_server.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/counter.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/counter.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/debian/
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/debian/changelog
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/debian/control
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/debian/copyright
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/debian/postinst
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/debian/prerm
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/debian/rules
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/default_handler.py
>
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/default_handler.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/publish.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/publish.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/script_server.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/script_server.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/simple_anon_ftpd.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/simple_anon_ftpd.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/start_medusa.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/start_medusa.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/winFTPserver.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/demo/winFTPserver.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/README.html
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/async_blurbs.txt
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/composing_producers.gif
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/data_flow.gif
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/data_flow.html
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/debugging.txt
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/producers.gif
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/programming.html
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/proxy_notes.txt
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/threads.txt
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/docs/tkinter.txt
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/event_loop.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/event_loop.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/filesys.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/filesys.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/ftp_server.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/ftp_server.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/http_date.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/http_date.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/http_server.py
> @@ -98,63 +55,10 @@ lib/python${MODPY_VERSION}/site-packages
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/m_syslog.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/medusa_gif.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/medusa_gif.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/monitor.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/monitor.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/monitor_client.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/monitor_client.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/monitor_client_win32.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/monitor_client_win32.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/producers.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/producers.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/put_handler.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/put_handler.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/redirecting_handler.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/redirecting_handler.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/resolver.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/resolver.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/rpc_client.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/rpc_client.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/rpc_server.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/rpc_server.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/script_handler.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/script_handler.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/setup.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/setup.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/status_handler.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/status_handler.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/asyn_http_bench.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/asyn_http_bench.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/bench.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/bench.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/max_sockets.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/max_sockets.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/test_11.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/test_11.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/test_lb.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/test_lb.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/test_medusa.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/test_medusa.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/test_producers.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/test_producers.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/test_single_11.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/test_single_11.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/test/tests.txt
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/pi_module.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/pi_module.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/select_trigger.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/select_trigger.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/test_module.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/test_module.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/thread_channel.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/thread_channel.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/thread_handler.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/thread/thread_handler.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/unix_user_handler.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/unix_user_handler.pyc
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/virtual_handler.py
> -lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/virtual_handler.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/xmlrpc_handler.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/medusa/xmlrpc_handler.pyc
> lib/python${MODPY_VERSION}/site-packages/supervisor/options.py
> @@ -256,22 +160,66 @@ lib/python${MODPY_VERSION}/site-packages
> lib/python${MODPY_VERSION}/site-packages/supervisor/xmlrpc.py
> lib/python${MODPY_VERSION}/site-packages/supervisor/xmlrpc.pyc
> share/doc/supervisor/
> -share/doc/supervisor/Makefile
> -share/doc/supervisor/api.rst
> -share/doc/supervisor/conf.py
> -share/doc/supervisor/configuration.rst
> -share/doc/supervisor/development.rst
> -share/doc/supervisor/events.rst
> -share/doc/supervisor/faq.rst
> -share/doc/supervisor/glossary.rst
> -share/doc/supervisor/index.rst
> -share/doc/supervisor/installing.rst
> -share/doc/supervisor/introduction.rst
> -share/doc/supervisor/logging.rst
> -share/doc/supervisor/running.rst
> -share/doc/supervisor/subprocess-transitions.png
> -share/doc/supervisor/subprocess.rst
> -share/doc/supervisor/upgrading.rst
> -share/doc/supervisor/xmlrpc.rst
> +share/doc/supervisor/_images/
> +share/doc/supervisor/_images/subprocess-transitions.png
> +share/doc/supervisor/_sources/
> +share/doc/supervisor/_sources/api.txt
> +share/doc/supervisor/_sources/configuration.txt
> +share/doc/supervisor/_sources/development.txt
> +share/doc/supervisor/_sources/events.txt
> +share/doc/supervisor/_sources/faq.txt
> +share/doc/supervisor/_sources/glossary.txt
> +share/doc/supervisor/_sources/index.txt
> +share/doc/supervisor/_sources/installing.txt
> +share/doc/supervisor/_sources/introduction.txt
> +share/doc/supervisor/_sources/logging.txt
> +share/doc/supervisor/_sources/plugins.txt
> +share/doc/supervisor/_sources/running.txt
> +share/doc/supervisor/_sources/subprocess.txt
> +share/doc/supervisor/_sources/upgrading.txt
> +share/doc/supervisor/_sources/xmlrpc.txt
> +share/doc/supervisor/_static/
> +share/doc/supervisor/_static/ajax-loader.gif
> +share/doc/supervisor/_static/basic.css
> +share/doc/supervisor/_static/comment-bright.png
> +share/doc/supervisor/_static/comment-close.png
> +share/doc/supervisor/_static/comment.png
> +share/doc/supervisor/_static/default.css
> +share/doc/supervisor/_static/doctools.js
> +share/doc/supervisor/_static/down-pressed.png
> +share/doc/supervisor/_static/down.png
> +share/doc/supervisor/_static/file.png
> +share/doc/supervisor/_static/jquery.js
> +share/doc/supervisor/_static/logo_hi.gif
> +share/doc/supervisor/_static/minus.png
> +share/doc/supervisor/_static/plus.png
> +share/doc/supervisor/_static/pygments.css
> +share/doc/supervisor/_static/repoze.css
> +share/doc/supervisor/_static/searchtools.js
> +share/doc/supervisor/_static/sidebar.js
> +share/doc/supervisor/_static/underscore.js
> +share/doc/supervisor/_static/up-pressed.png
> +share/doc/supervisor/_static/up.png
> +share/doc/supervisor/_static/websupport.js
> +share/doc/supervisor/api.html
> +share/doc/supervisor/configuration.html
> +share/doc/supervisor/development.html
> +share/doc/supervisor/events.html
> +share/doc/supervisor/faq.html
> +share/doc/supervisor/genindex.html
> +share/doc/supervisor/glossary.html
> +share/doc/supervisor/index.html
> +share/doc/supervisor/installing.html
> +share/doc/supervisor/introduction.html
> +share/doc/supervisor/logging.html
> +share/doc/supervisor/objects.inv
> +share/doc/supervisor/plugins.html
> +share/doc/supervisor/py-modindex.html
> +share/doc/supervisor/running.html
> +share/doc/supervisor/search.html
> +share/doc/supervisor/searchindex.js
> +share/doc/supervisor/subprocess.html
> +share/doc/supervisor/upgrading.html
> +share/doc/supervisor/xmlrpc.html
> @sample ${SYSCONFDIR}/supervisord.d/
> @rcscript ${RCDIR}/supervisord
--
light at end of tunnel will be out until further notice.