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
+16
View File
@@ -0,0 +1,16 @@
config BR2_PACKAGE_PYTHON_PYTEST
bool "python-pytest"
depends on BR2_PACKAGE_PYTHON3
select BR2_PACKAGE_PYTHON_ATTRS # runtime
select BR2_PACKAGE_PYTHON_INICONFIG # runtime
select BR2_PACKAGE_PYTHON_PACKAGING # runtime
select BR2_PACKAGE_PYTHON_PLUGGY # runtime
select BR2_PACKAGE_PYTHON_PY # runtime
select BR2_PACKAGE_PYTHON_TOML # runtime
select BR2_PACKAGE_PYTHON3_PYEXPAT # runtime
help
pytest is a framework that makes building simple and scalable
tests easy. Tests are expressive and readable—no boilerplate
code required.
https://docs.pytest.org/en/latest/
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pytest/json
md5 8bc467ebd5d571778dc51dd87ff09513 pytest-6.2.5.tar.gz
sha256 131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89 pytest-6.2.5.tar.gz
# Locally computer sha256
sha256 7898b9b164d4f93fd9a562fd0f592935518b48c4745303964110eb7f7fe64faf LICENSE
+15
View File
@@ -0,0 +1,15 @@
################################################################################
#
# python-pytest
#
################################################################################
PYTHON_PYTEST_VERSION = 6.2.5
PYTHON_PYTEST_SOURCE = pytest-$(PYTHON_PYTEST_VERSION).tar.gz
PYTHON_PYTEST_SITE = https://files.pythonhosted.org/packages/4b/24/7d1f2d2537de114bdf1e6875115113ca80091520948d370c964b88070af2
PYTHON_PYTEST_SETUP_TYPE = setuptools
PYTHON_PYTEST_LICENSE = MIT
PYTHON_PYTEST_LICENSE_FILES = LICENSE
PYTHON_PYTEST_DEPENDENCIES = host-python-setuptools-scm
$(eval $(python-package))