38aef10ee7
The recent change on PYTHONPATH for Python 2.x has revealed a missing dependency in the python-twisted package. The incremental Python module is listed in both setup_requires and install_requires, so we must depend on both its target *and* host variants. Fixes: http://autobuild.buildroot.net/results/386bf87abba550b5477d5e15e57981b8c3cef8d6/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 lines
611 B
Makefile
16 lines
611 B
Makefile
################################################################################
|
|
#
|
|
# python-twisted
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_TWISTED_VERSION = 17.1.0
|
|
PYTHON_TWISTED_SOURCE = Twisted-$(PYTHON_TWISTED_VERSION).tar.bz2
|
|
PYTHON_TWISTED_SITE = https://pypi.python.org/packages/d2/5d/ed5071740be94da625535f4333793d6fd238f9012f0fee189d0c5d00bd74
|
|
PYTHON_TWISTED_SETUP_TYPE = setuptools
|
|
PYTHON_TWISTED_LICENSE = MIT
|
|
PYTHON_TWISTED_LICENSE_FILES = LICENSE
|
|
PYTHON_TWISTED_DEPENDENCIES = python-incremental host-python-incremental
|
|
|
|
$(eval $(python-package))
|