blob: 2c86f9f81fb36d19fb22306cfdc7b619c35ff0d1 [file] [log] [blame]
Alexander Afanasyevd10cfe42013-07-14 13:21:54 -07001# $Id: Portfile 102139 2013-01-28 10:54:12Z jmr@macports.org $
2
3PortSystem 1.0
4PortGroup python 1.0
5
6name py-python-daemon
7set real_name python-daemon
8version 1.6
Alexander Afanasyev087d9232013-07-27 18:50:53 -07009revision 1
Alexander Afanasyevd10cfe42013-07-14 13:21:54 -070010categories-append devel
11platforms darwin
12supported_archs noarch
13license PSF-2+
14maintainers nomaintainer
15description Library to implement a well-behaved Unix daemon process.
16long_description \
17 This library implements the well-behaved daemon specification of PEP 3143, \
18 \"Standard daemon process library\". A well-behaved Unix daemon process is \
19 tricky to get right, but the required steps are much the same for every \
20 daemon program. A DaemonContext instance holds the behaviour and \
21 configured process environment for the program\; use the instance as a \
22 context manager to enter a daemon state.
23
24homepage http://pypi.python.org/pypi/python-daemon/
25master_sites http://pypi.python.org/packages/source/p/${real_name}
26distname ${real_name}-${version}
27checksums rmd160 cf269c6a40a08ff6265e3fb87b307da2d79470de \
28 sha256 1665fb16bfeae72f16aa2de40bc75661458bd42731a7d463a911a8d5eaf96c0b
29
30python.versions 27
31
32if {$subport != $name} {
Alexander Afanasyev087d9232013-07-27 18:50:53 -070033 depends_build port:py${python.version}-setuptools
Alexander Afanasyevd10cfe42013-07-14 13:21:54 -070034}