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
+6
View File
@@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_PYLRU
bool "python-pylru"
help
A least recently used (LRU) cache implementation.
https://github.com/jlhutch/pylru
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pylru/json
md5 8f0050f86d1fa68bb18673de37da543b pylru-1.2.0.tar.gz
sha256 492f934bb98dc6c8b2370c02c95c65516ddc08c8f64d27f70087eb038621d297 pylru-1.2.0.tar.gz
# Locally computed sha256 checksums
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE.txt
+14
View File
@@ -0,0 +1,14 @@
################################################################################
#
# python-pylru
#
################################################################################
PYTHON_PYLRU_VERSION = 1.2.0
PYTHON_PYLRU_SOURCE = pylru-$(PYTHON_PYLRU_VERSION).tar.gz
PYTHON_PYLRU_SITE = https://files.pythonhosted.org/packages/9c/88/30972cd0518452563221c80bffc2a5832499d736648ef8fe492affae15c5
PYTHON_PYLRU_SETUP_TYPE = setuptools
PYTHON_PYLRU_LICENSE = GPL-2.0
PYTHON_PYLRU_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))