2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2015-07-02 15:40:06 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyPythonDaemon(PythonPackage):
|
2015-07-02 15:40:06 +08:00
|
|
|
"""Library to implement a well-behaved Unix daemon process.
|
|
|
|
|
|
|
|
This library implements the well-behaved daemon specification of
|
|
|
|
PEP Standard daemon process.
|
|
|
|
|
|
|
|
A well-behaved Unix daemon process is tricky to get right, but the
|
|
|
|
required steps are much the same for every daemon program. A
|
|
|
|
DaemonContext instance holds the behaviour and configured process
|
|
|
|
environment for the program; use the instance as a context manager
|
|
|
|
to enter a daemon state.
|
|
|
|
"""
|
|
|
|
homepage = "https://pypi.python.org/pypi/python-daemon/"
|
2017-08-07 00:45:00 +08:00
|
|
|
url = "https://pypi.io/packages/source/p/python-daemon/python-daemon-2.0.5.tar.gz"
|
2015-07-02 15:40:06 +08:00
|
|
|
|
|
|
|
version('2.0.5', '73e7f49f525c51fa4a995aea4d80de41')
|
|
|
|
|
2016-03-09 23:46:56 +08:00
|
|
|
depends_on("py-setuptools", type='build')
|
2017-01-08 11:59:02 +08:00
|
|
|
depends_on("py-lockfile", type=('build', 'run'))
|