[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_DAEMONIZE
bool "python-daemonize"
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
help
Library to enable your code run as a daemon process on
Unix-like systems.
https://pypi.python.org/pypi/daemonize

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/daemonize/json
md5 3d64e7a0219ad22e3fca62460f893b6a daemonize-2.5.0.tar.gz
sha256 dd026e4ff8d22cb016ed2130bc738b7d4b1da597ef93c074d2adb9e4dea08bc3 daemonize-2.5.0.tar.gz
# Locally computed sha256 checksums
sha256 248d0d3147d20a09bed8f03da8ed72f47009073606dcc1bab658f942d34b29f8 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-daemonize
#
################################################################################
PYTHON_DAEMONIZE_VERSION = 2.5.0
PYTHON_DAEMONIZE_SOURCE = daemonize-$(PYTHON_DAEMONIZE_VERSION).tar.gz
PYTHON_DAEMONIZE_SITE = https://files.pythonhosted.org/packages/8c/20/96f7dbc23812cfe4cf479c87af3e4305d0d115fd1fffec32ddeee7b9c82b
PYTHON_DAEMONIZE_SETUP_TYPE = setuptools
PYTHON_DAEMONIZE_LICENSE = MIT
PYTHON_DAEMONIZE_LICENSE_FILES = LICENSE
$(eval $(python-package))