package/python-blinker: new package

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Peter Seiderer 2023-07-13 09:38:50 +02:00 committed by Thomas Petazzoni
parent 3d07ba0f28
commit fc2031e635
5 changed files with 27 additions and 0 deletions

View File

@ -2336,6 +2336,7 @@ F: support/testing/tests/package/test_docker_compose.py
N: Peter Seiderer <ps.report@gmx.net>
F: package/dotconf/
F: package/python-blinker/
F: package/qt5/qt5speech/
F: package/speechd/

View File

@ -984,6 +984,7 @@ menu "External python modules"
source "package/python-bidict/Config.in"
source "package/python-bitstring/Config.in"
source "package/python-bleak/Config.in"
source "package/python-blinker/Config.in"
source "package/python-bluezero/Config.in"
source "package/python-boto3/Config.in"
source "package/python-botocore/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_BLINKER
bool "python-blinker"
help
Fast, simple object-to-object and broadcast signaling.
https://blinker.readthedocs.io

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/blinker/json
md5 1c7375d100a67ba368d9cde0ab2d8cfa blinker-1.6.2.tar.gz
sha256 4afd3de66ef3a9f8067559fb7a1cbe555c17dcbe15971b05d1b625c3e7abe213 blinker-1.6.2.tar.gz
# Locally computed sha256 checksums
sha256 9eb73a1f38597a4aa17025d2ae1be3839624c795e985d4f0e9769ce29faca467 LICENSE.rst

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-blinker
#
################################################################################
PYTHON_BLINKER_VERSION = 1.6.2
PYTHON_BLINKER_SOURCE = blinker-$(PYTHON_BLINKER_VERSION).tar.gz
PYTHON_BLINKER_SITE = https://files.pythonhosted.org/packages/e8/f9/a05287f3d5c54d20f51a235ace01f50620984bc7ca5ceee781dc645211c5
PYTHON_BLINKER_SETUP_TYPE = setuptools
PYTHON_BLINKER_LICENSE = MIT
PYTHON_BLINKER_LICENSE_FILES = LICENSE.rst
$(eval $(python-package))