[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,10 @@
config BR2_PACKAGE_PYTHON_SMMAP2
bool "python-smmap2"
help
Smmap wraps an interface around mmap and tracks the mapped
files as well as the amount of clients who use it. If the
system runs out of resources, or if a memory limit is reached,
it will automatically unload unused maps to allow continued
operation.
https://github.com/gitpython-developers/smmap

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/smmap/json
md5 82b22288dcabfe257d4c1f04c83c7fdd smmap-5.0.0.tar.gz
sha256 c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936 smmap-5.0.0.tar.gz
# Locally computed sha256 checksums
sha256 88e9d93f708d110b328a834302dd1d5c6afbda530e7721d15d80b3511d86f235 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-smmap2
#
################################################################################
PYTHON_SMMAP2_VERSION = 5.0.0
PYTHON_SMMAP2_SOURCE = smmap-$(PYTHON_SMMAP2_VERSION).tar.gz
PYTHON_SMMAP2_SITE = https://files.pythonhosted.org/packages/21/2d/39c6c57032f786f1965022563eec60623bb3e1409ade6ad834ff703724f3
PYTHON_SMMAP2_SETUP_TYPE = setuptools
PYTHON_SMMAP2_LICENSE = BSD-3-Clause
PYTHON_SMMAP2_LICENSE_FILES = LICENSE
$(eval $(python-package))