From e4caf4a2acbb18875b1064246554e4105449b5a3 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Wed, 23 Mar 2016 17:00:53 -0400 Subject: Initial commit --- python-daemon/bld.bat | 3 +++ python-daemon/build.sh | 2 ++ python-daemon/meta.yaml | 22 ++++++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 python-daemon/bld.bat create mode 100644 python-daemon/build.sh create mode 100644 python-daemon/meta.yaml (limited to 'python-daemon') diff --git a/python-daemon/bld.bat b/python-daemon/bld.bat new file mode 100644 index 0000000..b290566 --- /dev/null +++ b/python-daemon/bld.bat @@ -0,0 +1,3 @@ + +python setup.py install +if errorlevel 1 exit 1 \ No newline at end of file diff --git a/python-daemon/build.sh b/python-daemon/build.sh new file mode 100644 index 0000000..4b71885 --- /dev/null +++ b/python-daemon/build.sh @@ -0,0 +1,2 @@ + +python setup.py install || exit 1 \ No newline at end of file diff --git a/python-daemon/meta.yaml b/python-daemon/meta.yaml new file mode 100644 index 0000000..a508a74 --- /dev/null +++ b/python-daemon/meta.yaml @@ -0,0 +1,22 @@ +about: + home: http://bitbucket.org/jhunkeler/python-daemon + license: Apache-2 + summary: Library to implement a well-behaved Unix daemon process. +build: + number: '0' +package: + name: python-daemon + version: 2.0.5 +requirements: + build: + - docutils + - lockfile + - python x.x + run: + - lockfile + - python x.x +source: + fn: python-daemon-2.0.5.tar.gz + md5: 73e7f49f525c51fa4a995aea4d80de41 + url: + - https://pypi.python.org/packages/source/p/python-daemon/python-daemon-2.0.5.tar.gz -- cgit