package/python-pydevmem: new package

Python DevMem is designed primarily for use with accessing
/dev/mem on OMAP platforms. It should work on other platforms
and work to mmap() files rather then just /dev/mem, but these
use cases aren't well tested.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Yegor Yefremov 2022-05-03 09:44:26 +02:00 committed by Yann E. MORIN
parent d9ac60d52a
commit d5bcdb74b6
4 changed files with 26 additions and 0 deletions

View File

@ -1151,6 +1151,7 @@ menu "External python modules"
source "package/python-pycups/Config.in"
source "package/python-pydal/Config.in"
source "package/python-pydantic/Config.in"
source "package/python-pydevmem/Config.in"
source "package/python-pydyf/Config.in"
source "package/python-pyelftools/Config.in"
source "package/python-pyftpdlib/Config.in"

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_PYDEVMEM
bool "python-pydevmem"
help
Python DevMem is designed primarily for use with accessing
/dev/mem on OMAP platforms. It should work on other platforms
and work to mmap() files rather then just /dev/mem, but these
use cases aren't well tested.
https://github.com/kylemanna/pydevmem

View File

@ -0,0 +1,3 @@
# Locally computed
sha256 1a72db41effeb83e01fc9a422abfe345a92220b0382403a5040b2811e4ee6496 python-pydevmem-600b5d1ef8997c394db3512b735d75d5abc4ad41.tar.gz
sha256 cb013ffd1fd415a348f9a32231ceb133770623b69484a24ad49b6da4904cac2e LICENSE

View File

@ -0,0 +1,13 @@
################################################################################
#
# python-pydevmem
#
################################################################################
PYTHON_PYDEVMEM_VERSION = 600b5d1ef8997c394db3512b735d75d5abc4ad41
PYTHON_PYDEVMEM_SITE = $(call github,kylemanna,pydevmem,$(PYTHON_PYDEVMEM_VERSION))
PYTHON_PYDEVMEM_SETUP_TYPE = setuptools
PYTHON_PYDEVMEM_LICENSE = MIT
PYTHON_PYDEVMEM_LICENSE_FILES = LICENSE
$(eval $(python-package))