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
+10
View File
@@ -0,0 +1,10 @@
config BR2_PACKAGE_PYTHON_FIRE
bool "python-fire"
select BR2_PACKAGE_PYTHON_SIX # runtime
select BR2_PACKAGE_PYTHON_TERMCOLOR # runtime
select BR2_PACKAGE_PYTHON_ENUM34 if BR2_PACKAGE_PYTHON # runtime
help
A library for automatically generating command line
interfaces.
https://github.com/google/python-fire
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/fire/json
md5 799be84cbbd7df2cf159cdcb538ab6f9 fire-0.4.0.tar.gz
sha256 c5e2b8763699d1142393a46d0e3e790c5eb2f0706082df8f647878842c216a62 fire-0.4.0.tar.gz
# Locally computed sha256 checksums
sha256 a5de77b62266bca0bb97bf058992f0b0f308a83a8ca55ee10fbf6bd8ed8f7ed0 LICENSE
+23
View File
@@ -0,0 +1,23 @@
################################################################################
#
# python-fire
#
################################################################################
PYTHON_FIRE_VERSION = 0.4.0
PYTHON_FIRE_SOURCE = fire-$(PYTHON_FIRE_VERSION).tar.gz
PYTHON_FIRE_SITE = https://files.pythonhosted.org/packages/11/07/a119a1aa04d37bc819940d95ed7e135a7dcca1c098123a3764a6dcace9e7
PYTHON_FIRE_SETUP_TYPE = setuptools
PYTHON_FIRE_LICENSE = Apache-2.0
PYTHON_FIRE_LICENSE_FILES = LICENSE
ifeq ($(BR2_PACKAGE_PYTHON),y)
# only needed/valid for python 3.x
define PYTHON_FIRE_RM_PY3_FILE
rm -f $(TARGET_DIR)/usr/lib/python*/site-packages/fire/test_components_py3.py
endef
PYTHON_FIRE_POST_INSTALL_TARGET_HOOKS += PYTHON_FIRE_RM_PY3_FILE
endif
$(eval $(python-package))