This commit adds a host package for the Python 'fs' module, needed as a dependency of pyfatfs, itself needed by Snagboot. Homepage: https://pypi.org/project/fs/ In addition, a very simple test case is adding to check that host-python-fs is minimally working. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
16 lines
570 B
Makefile
16 lines
570 B
Makefile
################################################################################
|
|
#
|
|
# python-fs
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_FS_VERSION = 2.4.16
|
|
PYTHON_FS_SOURCE = fs-$(PYTHON_FS_VERSION).tar.gz
|
|
PYTHON_FS_SITE = https://files.pythonhosted.org/packages/5d/a9/af5bfd5a92592c16cdae5c04f68187a309be8a146b528eac3c6e30edbad2
|
|
PYTHON_FS_SETUP_TYPE = setuptools
|
|
PYTHON_FS_LICENSE = MIT
|
|
PYTHON_FS_LICENSE_FILES = LICENSE
|
|
HOST_PYTHON_FS_DEPENDENCIES = host-python-six host-python-appdirs
|
|
|
|
$(eval $(host-python-package))
|