Import buildroot 2016.02.01

This commit is contained in:
2016-02-24 22:35:39 +01:00
parent a6ee09dea4
commit 828befcf3c
7393 changed files with 390887 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
config BR2_PACKAGE_PYTHON_PYUSB
bool "python-pyusb"
depends on BR2_PACKAGE_PYTHON
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
select BR2_PACKAGE_LIBUSB
help
The PyUSB module provides easy access to the Universal
Serial Bus (USB) from Python.
http://sourceforge.net/apps/trac/pyusb/
comment "python-pyusb needs a toolchain w/ threads"
depends on BR2_PACKAGE_PYTHON
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-pyusb
#
################################################################################
PYTHON_PYUSB_VERSION = 1.0.0b2
PYTHON_PYUSB_SITE = $(call github,walac,pyusb,$(PYTHON_PYUSB_VERSION))
PYTHON_PYUSB_LICENSE = BSD-3c
PYTHON_PYUSB_LICENSE_FILES = LICENSE
PYTHON_PYUSB_SETUP_TYPE = distutils
PYTHON_PYUSB_DEPENDENCIES = libusb
$(eval $(python-package))