Recent version of U-Boot use binman to provide a mechanism for building images, from simple SPL + U-Boot combinations, to more complex arrangements with many parts. This package is required by binman. Co-developed-by: Michael Trimarchi <michael@amarulasolutions.com> Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
25 lines
793 B
Makefile
25 lines
793 B
Makefile
################################################################################
|
|
#
|
|
# python-attrs
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_ATTRS_VERSION = 23.2.0
|
|
PYTHON_ATTRS_SOURCE = attrs-$(PYTHON_ATTRS_VERSION).tar.gz
|
|
PYTHON_ATTRS_SITE = https://files.pythonhosted.org/packages/e3/fc/f800d51204003fa8ae392c4e8278f256206e7a919b708eef054f5f4b650d
|
|
PYTHON_ATTRS_SETUP_TYPE = pep517
|
|
PYTHON_ATTRS_LICENSE = MIT
|
|
PYTHON_ATTRS_LICENSE_FILES = LICENSE
|
|
PYTHON_ATTRS_DEPENDENCIES = \
|
|
host-python-hatchling \
|
|
host-python-hatch-fancy-pypi-readme \
|
|
host-python-hatch-vcs
|
|
|
|
HOST_PYTHON_ATTRS_DEPENDENCIES = \
|
|
host-python-hatchling \
|
|
host-python-hatch-fancy-pypi-readme \
|
|
host-python-hatch-vcs
|
|
|
|
$(eval $(python-package))
|
|
$(eval $(host-python-package))
|