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
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PYTRIE
bool "python-pytrie"
depends on BR2_PACKAGE_PYTHON3
select BR2_PACKAGE_PYTHON_SORTEDCONTAINERS # runtime
help
A pure Python implementation of the trie data structure.
https://pypi.python.org/pypi/PyTrie
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pytrie/json
md5 0cbe20db2361dcc99bdcba7acacd34e6 PyTrie-0.4.0.tar.gz
sha256 8f4488f402d3465993fb6b6efa09866849ed8cda7903b50647b7d0342b805379 PyTrie-0.4.0.tar.gz
# Locally computed sha256 checksums
sha256 97f85c2ba0d856cf5f7e5db587af7299233db2e502980eb655ace28343541d50 LICENSE
+14
View File
@@ -0,0 +1,14 @@
################################################################################
#
# python-pytrie
#
################################################################################
PYTHON_PYTRIE_VERSION = 0.4.0
PYTHON_PYTRIE_SOURCE = PyTrie-$(PYTHON_PYTRIE_VERSION).tar.gz
PYTHON_PYTRIE_LICENSE = BSD-3-Clause
PYTHON_PYTRIE_LICENSE_FILES = LICENSE
PYTHON_PYTRIE_SITE = https://files.pythonhosted.org/packages/d3/19/15ec77ab9c85f7c36eb590d6ab7dd529f8c8516c0e2219f1a77a99d7ee77
PYTHON_PYTRIE_SETUP_TYPE = setuptools
$(eval $(python-package))