diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-06 09:14:30 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-06 09:14:30 -0400 |
commit | 8198e9d35aa40678b1ee7dd20f95e29560d7b39e (patch) | |
tree | ae669aa9918287acb401075fa035eba0fc3fa96b /python-daemon | |
parent | ad9e7c5ba8b5f89bae1a7086affc82b365cb860c (diff) | |
download | cbc-recipes-8198e9d35aa40678b1ee7dd20f95e29560d7b39e.tar.gz |
Initial commit
Diffstat (limited to 'python-daemon')
-rw-r--r-- | python-daemon/python-daemon.ini | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/python-daemon/python-daemon.ini b/python-daemon/python-daemon.ini new file mode 100644 index 0000000..6b1eab7 --- /dev/null +++ b/python-daemon/python-daemon.ini @@ -0,0 +1,41 @@ +[cbc_cgi] +local_server: true +local_port: 8888 +local_sources: /srv/conda/sources +protocol: http +url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port} + +[package] +name: python-daemon +version: 2.0.5 + +[about] +home: http://bitbucket.org/jhunkeler/${package:name} +license: Apache-2 +summary: Library to implement a well-behaved Unix daemon process. + +[source] +fn: ${package:name}-${package:version}.tar.gz +url: https://pypi.python.org/packages/source/p/${package:name}/${fn} +md5: 73e7f49f525c51fa4a995aea4d80de41 + +[build] +number: 1 + +[requirements] +build: + docutils + lockfile + python +run: + lockfile + python + + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 |