python-libusb1: new package

License info from PyPI is wrong: it is LGPL-2.1+, not GPL-2.0. The
package includes a COPYING file with GPL-2.0, but since it is really
LGPL-2.1+ only the COPYING.LESSER file is relevant.

Signed-off-by: Jaap Crezee <jaap@jcz.nl>
[Arnout: regenerate with scanpypi, fix legal info]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2018.05.x
Jaap Crezee 2017-09-04 17:19:54 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 0866a280e4
commit 34b62af1e0
4 changed files with 31 additions and 0 deletions

View File

@ -817,6 +817,7 @@ menu "External python modules"
source "package/python-json-schema-validator/Config.in"
source "package/python-keyring/Config.in"
source "package/python-libconfig/Config.in"
source "package/python-libusb1/Config.in"
source "package/python-lmdb/Config.in"
source "package/python-logbook/Config.in"
source "package/python-lxml/Config.in"

View File

@ -0,0 +1,11 @@
config BR2_PACKAGE_PYTHON_LIBUSB1
bool "python-libusb1"
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
select BR2_PACKAGE_LIBUSB
help
Pure-python wrapper for libusb-1.0.
http://github.com/vpelletier/python-libusb1
comment "python-libusb1 needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -0,0 +1,4 @@
# md5 from https://pypi.python.org/pypi/libusb1/json, sha256 locally computed
md5 9c2eb6032deda59f287a443091d38cb4 libusb1-1.6.4.tar.gz
sha256 8c930d9c1d037d9c83924c82608aa6a1adcaa01ca0e4a23ee0e8e18d7eee670d libusb1-1.6.4.tar.gz
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING.LESSER

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-libusb1
#
################################################################################
PYTHON_LIBUSB1_VERSION = 1.6.4
PYTHON_LIBUSB1_SOURCE = libusb1-$(PYTHON_LIBUSB1_VERSION).tar.gz
PYTHON_LIBUSB1_SITE = https://pypi.python.org/packages/ec/5d/4fdac6c53525786fe35cff035c3345452e24e2bee5627893be65d12555cb
PYTHON_LIBUSB1_SETUP_TYPE = setuptools
PYTHON_LIBUSB1_LICENSE = LGPL-2.1+
PYTHON_LIBUSB1_LICENSE_FILES = COPYING.LESSER
PYTHON_LIBUSB1_DEPENDENCIES = libusb
$(eval $(python-package))