[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,10 @@
config BR2_PACKAGE_PYTHON_SYSTEMD
bool "python-systemd"
depends on BR2_PACKAGE_SYSTEMD
help
Python module for native access to the systemd facilities.
https://github.com/systemd/python-systemd
comment "python-systemd needs systemd"
depends on !BR2_PACKAGE_SYSTEMD

View File

@ -0,0 +1,5 @@
# md5 from https://pypi.python.org/pypi/systemd-python/
md5 5071ea5bcb976186e92a3f5e75df221d systemd-python-234.tar.gz
# Locally computed
sha256 fd0e44bf70eadae45aadc292cb0a7eb5b0b6372cd1b391228047d33895db83e7 systemd-python-234.tar.gz
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 LICENSE.txt

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-systemd
#
################################################################################
PYTHON_SYSTEMD_VERSION = 234 # Should be kept in sync with $(SYSTEMD_VERSION)
PYTHON_SYSTEMD_SOURCE = systemd-python-$(PYTHON_SYSTEMD_VERSION).tar.gz
PYTHON_SYSTEMD_SITE = https://pypi.python.org/packages/e8/a8/00ba0f605837a8f69523e6c3a4fb14675a6430c163f836540129c50b3aef
PYTHON_SYSTEMD_SETUP_TYPE = distutils
PYTHON_SYSTEMD_LICENSE = LGPL-2.1
PYTHON_SYSTEMD_LICENSE_FILES = LICENSE.txt
PYTHON_SYSTEMD_DEPENDENCIES = systemd # To be able to link against libsystemd
$(eval $(python-package))