initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
config BR2_PACKAGE_PYTHON_ENUM34
bool "python-enum34"
depends on BR2_PACKAGE_PYTHON
help
Python 3.4 Enum backported to 2.x.
An enumeration is a set of symbolic names (members) bound to
unique, constant values. Within an enumeration, the members
can be compared by identity, and the enumeration itself can
be iterated over.
https://pypi.python.org/pypi/enum34
+5
View File
@@ -0,0 +1,5 @@
# md5 from https://pypi.python.org/pypi/enum34/json
md5 b5ac0bb5ea9e830029599e410d09d3b5 enum34-1.1.10.tar.gz
# Locally computed
sha256 cce6a7477ed816bd2542d03d53db9f0db935dd013b70f336a95c73979289f248 enum34-1.1.10.tar.gz
sha256 88ec6a6c8eafa3b9757e745783938bef3f5e4d5e3c76b1db576aa3ab520e5e1d enum/LICENSE
+17
View File
@@ -0,0 +1,17 @@
################################################################################
#
# python-enum34
#
################################################################################
PYTHON_ENUM34_VERSION = 1.1.10
PYTHON_ENUM34_SOURCE = enum34-$(PYTHON_ENUM34_VERSION).tar.gz
PYTHON_ENUM34_SITE = https://files.pythonhosted.org/packages/11/c4/2da1f4952ba476677a42f25cd32ab8aaf0e1c0d0e00b89822b835c7e654c
PYTHON_ENUM34_SETUP_TYPE = setuptools
PYTHON_ENUM34_LICENSE = BSD-3-Clause
PYTHON_ENUM34_LICENSE_FILES = enum/LICENSE
PYTHON_ENUM34_CPE_ID_VENDOR = python
PYTHON_ENUM34_CPE_ID_PRODUCT = enum34
$(eval $(python-package))
$(eval $(host-python-package))