python-pigpio: new package

Pigpio is a Python module for the Raspberry Pi
which talks to the pigpio daemon to allow control
of the general purpose input outputs (GPIO).

http://abyz.co.uk/rpi/pigpio/python.html

Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
[Thomas: use proper SPDX license tag]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Grzegorz Blach 2018-09-28 20:00:34 +02:00 committed by Thomas Petazzoni
parent a3fb16a0ff
commit f99a1f95c9
5 changed files with 26 additions and 0 deletions

View File

@ -924,6 +924,7 @@ N: Grzegorz Blach <grzegorz@blach.pl>
F: package/pigpio/
F: package/python-falcon/
F: package/python-mimeparse/
F: package/python-pigpio/
N: Guillaume Gardet <guillaume.gardet@oliseo.fr>
F: package/c-icap/

View File

@ -922,6 +922,7 @@ menu "External python modules"
source "package/python-pathvalidate/Config.in"
source "package/python-pexpect/Config.in"
source "package/python-pickleshare/Config.in"
source "package/python-pigpio/Config.in"
source "package/python-pillow/Config.in"
source "package/python-pip/Config.in"
source "package/python-portend/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PIGPIO
bool "python-pigpio"
help
Pigpio is a Python module for the Raspberry Pi
which talks to the pigpio daemon to allow control
of the general purpose input outputs (GPIO).
http://abyz.co.uk/rpi/pigpio/python.html

View File

@ -0,0 +1,3 @@
# md5, sha256 from https://pypi.org/pypi/pigpio/json
md5 32d7d5e2e042fb4f503b93858712e7ad pigpio-1.40.post1.tar.gz
sha256 38bdc1b4d58898e7b4a69de3b0d90e8e8ccd851ac7d03e30791769475ffd941f pigpio-1.40.post1.tar.gz

View File

@ -0,0 +1,13 @@
################################################################################
#
# python-pigpio
#
################################################################################
PYTHON_PIGPIO_VERSION = 1.40.post1
PYTHON_PIGPIO_SOURCE = pigpio-$(PYTHON_PIGPIO_VERSION).tar.gz
PYTHON_PIGPIO_SITE = https://files.pythonhosted.org/packages/da/91/80c893c398bc6805592f44267bbf4bf88323de3db0f5e8f94b0fa8e28426
PYTHON_PIGPIO_SETUP_TYPE = setuptools
PYTHON_PIGPIO_LICENSE = Unlicense
$(eval $(python-package))