blob: 238994cf06c18448e8c2bdb384e4e7a3093155f5 [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
9categories-append devel
10platforms darwin
11supported_archs noarch
12license PSF-2+
13maintainers nomaintainer
14description Library to implement a well-behaved Unix daemon process.
15long_description \
16 This library implements the well-behaved daemon specification of PEP 3143, \
17 \"Standard daemon process library\". A well-behaved Unix daemon process is \
18 tricky to get right, but the required steps are much the same for every \
19 daemon program. A DaemonContext instance holds the behaviour and \
20 configured process environment for the program\; use the instance as a \
21 context manager to enter a daemon state.
22
23homepage http://pypi.python.org/pypi/python-daemon/
24master_sites http://pypi.python.org/packages/source/p/${real_name}
25distname ${real_name}-${version}
26checksums rmd160 cf269c6a40a08ff6265e3fb87b307da2d79470de \
27 sha256 1665fb16bfeae72f16aa2de40bc75661458bd42731a7d463a911a8d5eaf96c0b
28
29python.versions 27
30
31if {$subport != $name} {
32 depends_build port:py${python.version}-distribute
33}