bb104bc077
While currently there is no in-tree Buildroot package which depends on host-python-greenlet, we (Adder Technology) have some proprietary modules that use it as part of their builds. I've tested python-greenlet as host package and confirmed that it builds and works correctly. Someone else might require it, so I'm proposing its inclusion. Signed-off-by: Cyril Bur <cyrilbur@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
16 lines
604 B
Makefile
16 lines
604 B
Makefile
################################################################################
|
|
#
|
|
# python-greenlet
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_GREENLET_VERSION = 1.1.2
|
|
PYTHON_GREENLET_SOURCE = greenlet-$(PYTHON_GREENLET_VERSION).tar.gz
|
|
PYTHON_GREENLET_SITE = https://files.pythonhosted.org/packages/0c/10/754e21b5bea89d0e73f99d60c83754df7cc64db74f47d98ab187669ce341
|
|
PYTHON_GREENLET_SETUP_TYPE = setuptools
|
|
PYTHON_GREENLET_LICENSE = MIT, PSF-2.0
|
|
PYTHON_GREENLET_LICENSE_FILES = LICENSE LICENSE.PSF
|
|
|
|
$(eval $(python-package))
|
|
$(eval $(host-python-package))
|