create rootf's & SDK from 2018.02.9 buildroot (#10)

---------

Co-authored-by: tiopex <tiopxyz@gmail.com>
Co-authored-by: tiopex <67048640+tiopex@users.noreply.github.com>
This commit is contained in:
Apaczer
2023-03-11 21:06:02 +01:00
committed by GitHub
parent 534f7aea40
commit dcf31c6a1e
12528 changed files with 149032 additions and 303063 deletions
+2 -4
View File
@@ -1,7 +1,6 @@
config BR2_PACKAGE_PYTHON_PYUSB
bool "python-pyusb"
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
select BR2_PACKAGE_LIBUSB
help
The PyUSB module provides easy access to the Universal
@@ -9,6 +8,5 @@ config BR2_PACKAGE_PYTHON_PYUSB
http://sourceforge.net/apps/trac/pyusb/
comment "python-pyusb needs a toolchain w/ threads, gcc >= 4.9"
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
comment "python-pyusb needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS
+3 -5
View File
@@ -1,5 +1,3 @@
# md5, sha256 from https://pypi.org/pypi/pyusb/json
md5 880008dff32dac8f58076b4e534492d9 pyusb-1.2.1.tar.gz
sha256 a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9 pyusb-1.2.1.tar.gz
# Locally computed sha256 checksums
sha256 03e39fdcee9c18f2f9d0c3500a993ddeac050695eb81070ea41347587c76a7fe LICENSE
# md5 from https://pypi.python.org/pypi/pyusb/json, sha256 locally computed
md5 c8a571bfdba778555156af3facaea6fc PyUSB-1.0.0.tar.gz
sha256 5b34ffa74ac34f330bff949c94ee00ec4a9d147234db17ee2eed2a67c0275368 PyUSB-1.0.0.tar.gz
+5 -5
View File
@@ -4,12 +4,12 @@
#
################################################################################
PYTHON_PYUSB_VERSION = 1.2.1
PYTHON_PYUSB_SOURCE = pyusb-$(PYTHON_PYUSB_VERSION).tar.gz
PYTHON_PYUSB_SITE = https://files.pythonhosted.org/packages/d9/6e/433a5614132576289b8643fe598dd5d51b16e130fd591564be952e15bb45
PYTHON_PYUSB_VERSION = 1.0.0
PYTHON_PYUSB_SOURCE = PyUSB-$(PYTHON_PYUSB_VERSION).tar.gz
PYTHON_PYUSB_SITE = https://pypi.python.org/packages/8a/19/66fb48a4905e472f5dfeda3a1bafac369fbf6d6fc5cf55b780864962652d
PYTHON_PYUSB_LICENSE = BSD-3-Clause
PYTHON_PYUSB_LICENSE_FILES = LICENSE
PYTHON_PYUSB_SETUP_TYPE = setuptools
PYTHON_PYUSB_DEPENDENCIES = host-python-setuptools-scm libusb
PYTHON_PYUSB_SETUP_TYPE = distutils
PYTHON_PYUSB_DEPENDENCIES = libusb
$(eval $(python-package))