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. Signed-off-by: Adam Duskett <Aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
543 B
Makefile
15 lines
543 B
Makefile
################################################################################
|
|
#
|
|
# python-smmap2
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_SMMAP2_VERSION = 2.0.5
|
|
PYTHON_SMMAP2_SOURCE = smmap2-$(PYTHON_SMMAP2_VERSION).tar.gz
|
|
PYTHON_SMMAP2_SITE = https://files.pythonhosted.org/packages/3b/ba/e49102b3e8ffff644edded25394b2d22ebe3e645f3f6a8139129c4842ffe
|
|
PYTHON_SMMAP2_SETUP_TYPE = setuptools
|
|
PYTHON_SMMAP2_LICENSE = BSD-3-Clause
|
|
PYTHON_SMMAP2_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|