This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_PYTRIE
bool "python-pytrie"
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 f7c7184124013abcc18a3e3b638d32ae PyTrie-0.3.1.tar.gz
sha256 3bb7d122a549d8006c9cba2feecac20bceda9f8c0e2a3fa99a5584cfe0dec523 PyTrie-0.3.1.tar.gz
# Locally computed sha256
sha256 153931d44112319a1e1653752c881fb7ef092f636db31f4c36b252666e95efbd PKG-INFO
+14
View File
@@ -0,0 +1,14 @@
################################################################################
#
# python-pytrie
#
################################################################################
PYTHON_PYTRIE_VERSION = 0.3.1
PYTHON_PYTRIE_SOURCE = PyTrie-$(PYTHON_PYTRIE_VERSION).tar.gz
PYTHON_PYTRIE_LICENSE = BSD-3-Clause
PYTHON_PYTRIE_LICENSE_FILES = PKG-INFO
PYTHON_PYTRIE_SITE = https://files.pythonhosted.org/packages/e1/eb/ae1f098969c9e9b81e821fb8e916cbf720b900ec1c0f3359e47a427395ec
PYTHON_PYTRIE_SETUP_TYPE = setuptools
$(eval $(python-package))