diff options
-rw-r--r-- | sysutils/py-supervisor/Makefile | 6 | ||||
-rw-r--r-- | sysutils/py-supervisor/distinfo | 5 | ||||
-rw-r--r-- | sysutils/py-supervisor/files/patch-src-supervisor-options.py | 13 |
3 files changed, 13 insertions, 11 deletions
diff --git a/sysutils/py-supervisor/Makefile b/sysutils/py-supervisor/Makefile index bdf2dab6145..c21ead61e02 100644 --- a/sysutils/py-supervisor/Makefile +++ b/sysutils/py-supervisor/Makefile @@ -6,10 +6,10 @@ # PORTNAME= supervisor -PORTVERSION= 3.0a8 +PORTVERSION= 3.0a9 CATEGORIES= sysutils python -MASTER_SITES= http://dist.supervisord.org/\ - CHEESESHOP +MASTER_SITES= http://dist.supervisord.org/ \ + CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= hizel@vyborg.ru diff --git a/sysutils/py-supervisor/distinfo b/sysutils/py-supervisor/distinfo index c4bfe0e8efe..b04aae8f291 100644 --- a/sysutils/py-supervisor/distinfo +++ b/sysutils/py-supervisor/distinfo @@ -1,3 +1,2 @@ -MD5 (supervisor-3.0a8.tar.gz) = 7a775455f3a53c2ea375d18dcfe9e522 -SHA256 (supervisor-3.0a8.tar.gz) = ce61afd01780ffba3e40ec244205b6db309da3b84ef27b5c5b179456050e5b8b -SIZE (supervisor-3.0a8.tar.gz) = 287705 +SHA256 (supervisor-3.0a9.tar.gz) = 619f90b739ed3dff2fd991fe110b7bd4408975661baf7e9a8e2a685d05e63ea9 +SIZE (supervisor-3.0a9.tar.gz) = 408235 diff --git a/sysutils/py-supervisor/files/patch-src-supervisor-options.py b/sysutils/py-supervisor/files/patch-src-supervisor-options.py index 46c7f1737f4..bdee9588201 100644 --- a/sysutils/py-supervisor/files/patch-src-supervisor-options.py +++ b/sysutils/py-supervisor/files/patch-src-supervisor-options.py @@ -1,11 +1,14 @@ ---- src/supervisor/options.py.orig 2010-02-11 13:25:24.000000000 +0300 -+++ src/supervisor/options.py 2010-02-11 13:25:55.000000000 +0300 -@@ -105,7 +105,7 @@ +--- src/supervisor/options.py.orig 2010-08-14 02:34:50.000000000 +0800 ++++ src/supervisor/options.py 2010-11-23 02:33:20.000000000 +0800 +@@ -105,10 +105,7 @@ def default_configfile(self): """Return the name of the found config file or raise. """ - paths = ['supervisord.conf', 'etc/supervisord.conf', + here = os.path.dirname(os.path.dirname(sys.argv[0])) +- paths = [os.path.join(here, 'etc', 'supervisord.conf'), +- os.path.join(here, 'supervisord.conf'), +- 'supervisord.conf', 'etc/supervisord.conf', - '/etc/supervisord.conf'] -+ '/etc/supervisord.conf', '%%PREFIX%%/etc/supervisord.conf'] ++ paths = [ '%%PREFIX%%/etc/supervisord.conf' ] config = None for path in paths: if os.path.exists(path): |