package/python-aioblescan: new package

Python library to scan and decode advertised BLE info.
Uses asyncio.

https://github.com/frawau/aioblescan

Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Grzegorz Blach 2019-03-13 23:02:52 +01:00 committed by Thomas Petazzoni
parent 1e61048ee1
commit 74a43e2517
5 changed files with 28 additions and 0 deletions

View File

@ -933,6 +933,7 @@ F: fs/f2fs/
F: package/bluez5_utils-headers/
F: package/f2fs-tools/
F: package/pigpio/
F: package/python-aioblescan/
F: package/python-falcon/
F: package/python-mimeparse/
F: package/python-pigpio/

View File

@ -799,6 +799,7 @@ endif
source "package/python3/Config.in"
if BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
menu "External python modules"
source "package/python-aioblescan/Config.in"
source "package/python-aiocoap/Config.in"
source "package/python-aiodns/Config.in"
source "package/python-aiohttp/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_AIOBLESCAN
bool "python-aioblescan"
depends on BR2_PACKAGE_PYTHON3
help
Scanning Bluetooth for advertised info with asyncio.
https://github.com/frawau/aioblescan

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/aioblescan/json
md5 b662f44828a99430d4ed42c843ddb89c aioblescan-0.2.4.tar.gz
sha256 d613f24ffdb3dae48d6157443f76708f0c791034036330d00272af6b408b2c6c aioblescan-0.2.4.tar.gz
# Locally computed sha256 checksums
sha256 c2066cd44079e0c706234001af18cb6ad4b62fc68d0d08d29fdc7319916647e0 LICENSE.txt

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-aioblescan
#
################################################################################
PYTHON_AIOBLESCAN_VERSION = 0.2.4
PYTHON_AIOBLESCAN_SOURCE = aioblescan-$(PYTHON_AIOBLESCAN_VERSION).tar.gz
PYTHON_AIOBLESCAN_SITE = https://files.pythonhosted.org/packages/a9/ad/1e2f41b2036bd76079f88cd94ce35b5a996d937dccaf432ea6b8092d3e11
PYTHON_AIOBLESCAN_SETUP_TYPE = distutils
PYTHON_AIOBLESCAN_LICENSE = MIT
PYTHON_AIOBLESCAN_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))