mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
Update for libgpiod v2.2.4. Contains the following security fix: https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/commit/?h=python-v2.4.x&id=c3655b5f641b87656c11da3ac708608d2c0e05ee The package now contains a proper LICENSE file in the sdist since: https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/commit/?h=python-v2.4.x&id=51ee19fe1ec8a94b5ecfdc7627b0c574c7874a1b Note: this commit is marked as "security" update because it contains security related bugfixes, but no CVE or advisory are published at the time of this commit. Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu> [Julien: add note in the commit log] Signed-off-by: Julien Olivain <ju.o@free.fr>
17 lines
611 B
Makefile
17 lines
611 B
Makefile
################################################################################
|
|
#
|
|
# python-gpiod
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_GPIOD_VERSION = 2.4.2
|
|
PYTHON_GPIOD_SOURCE = gpiod-$(PYTHON_GPIOD_VERSION).tar.gz
|
|
PYTHON_GPIOD_SITE = https://files.pythonhosted.org/packages/13/ca/b3bd043091b4462d6c5561f86581f553df102d8990c37938ddbff2823016
|
|
PYTHON_GPIOD_SETUP_TYPE = setuptools
|
|
PYTHON_GPIOD_LICENSE = LGPL-2.1+
|
|
PYTHON_GPIOD_LICENSE_FILES = LICENSE
|
|
PYTHON_GPIOD_DEPENDENCIES = libgpiod2
|
|
PYTHON_GPIOD_ENV = LINK_SYSTEM_LIBGPIOD=1
|
|
|
|
$(eval $(python-package))
|