[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_DAEMON
bool "python-daemon"
select BR2_PACKAGE_PYTHON_DOCUTILS # runtime
select BR2_PACKAGE_PYTHON_LOCKFILE # runtime
help
Library to implement a well-behaved Unix daemon process.
https://pypi.python.org/pypi/python-daemon/

View File

@ -0,0 +1,6 @@
# md5, sha256 https://pypi.org/pypi/python-daemon/json
md5 3ab10a93472201214cd95c05f1923af6 python-daemon-2.2.3.tar.gz
sha256 affeca9e5adfce2666a63890af9d6aff79f670f7511899edaddca7f96593cc25 python-daemon-2.2.3.tar.gz
# Locally computed sha256
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE.ASF-2
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE.GPL-3

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-daemon
#
################################################################################
PYTHON_DAEMON_VERSION = 2.2.3
PYTHON_DAEMON_SITE = https://pypi.python.org/packages/source/p/python-daemon
PYTHON_DAEMON_LICENSE = Apache-2.0 (library), GPL-3.0+ (test, build)
PYTHON_DAEMON_LICENSE_FILES = LICENSE.ASF-2 LICENSE.GPL-3
PYTHON_DAEMON_SETUP_TYPE = setuptools
PYTHON_DAEMON_DEPENDENCIES = host-python-docutils
$(eval $(python-package))