[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_LMDB
bool "python-lmdb"
select BR2_PACKAGE_PYTHON_CFFI # runtime
help
Universal Python binding for the LMDB 'Lightning' Database.
https://pypi.python.org/pypi/lmdb

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/lmdb/json
md5 3c955c49be10a7a07a2fcd54d180c3af lmdb-1.3.0.tar.gz
sha256 60a11efc21aaf009d06518996360eed346f6000bfc9de05114374230879f992e lmdb-1.3.0.tar.gz
# Locally computed sha256 checksums
sha256 310fe25c858a9515fc8c8d7d1f24a67c9496f84a91e0a0e41ea9975b1371e569 LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-lmdb
#
################################################################################
PYTHON_LMDB_VERSION = 1.3.0
PYTHON_LMDB_SOURCE = lmdb-$(PYTHON_LMDB_VERSION).tar.gz
PYTHON_LMDB_SITE = https://files.pythonhosted.org/packages/ed/61/41f3c7cbd8a67202ef24fad3375ed936093a0547dc645581dd11c09581b7
PYTHON_LMDB_LICENSE = OLDAP-2.8
PYTHON_LMDB_LICENSE_FILES = LICENSE
PYTHON_LMDB_SETUP_TYPE = setuptools
PYTHON_LMDB_DEPENDENCIES = host-python-cffi
$(eval $(python-package))