This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 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,3 @@
# md5 from https://pypi.python.org/pypi/systemd-python/, sha256 locally computed
md5 5071ea5bcb976186e92a3f5e75df221d systemd-python-234.tar.gz
sha256 fd0e44bf70eadae45aadc292cb0a7eb5b0b6372cd1b391228047d33895db83e7 systemd-python-234.tar.gz

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))