753c031977
Fixes: http://autobuild.buildroot.net/results/4ca459d54545c0e20b0f0cdc63bd81844ecd7f36/ aenum has conditional logic to load python 3.x code located in test_v3.py: if pyver >= 3.0: from aenum.test_v3 import TestEnumV3, TestOrderV3, TestNamedTupleV3 And contains logic in setup.py to drop that file during setup.py install if building for python 2.x: py3_only = ('aenum/test_v3.py', ) .. if __name__ == '__main__': if 'install' in sys.argv: import os, sys .. if sys.version_info[0] != 3: for file in py3_only: try: os.unlink(file) But this doesn't work in Buildroot as pkg-python.dk first does setup.py build (which copies test_v3.py to the build directory) before setup.py install, so test_v3.py gets installed, leading to errors from pycompile: error: File "/usr/lib/python2.7/site-packages/aenum/test_v3.py", line 12 class MagicAutoNumberEnum(Enum, settings=AutoNumber): ^ SyntaxError: invalid syntax As a workaround, add a hook to drop it from the target directory when building for python 2.x. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
24 lines
787 B
Makefile
24 lines
787 B
Makefile
################################################################################
|
|
#
|
|
# python-aenum
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_AENUM_VERSION = 2.2.3
|
|
PYTHON_AENUM_SOURCE = aenum-$(PYTHON_AENUM_VERSION).tar.gz
|
|
PYTHON_AENUM_SITE = https://files.pythonhosted.org/packages/6f/6a/8ed729e0add885d7a559ebb06133029b1f8c4bd66cbf1bdee1ec969fb310
|
|
PYTHON_AENUM_SETUP_TYPE = setuptools
|
|
PYTHON_AENUM_LICENSE = BSD-3-Clause
|
|
PYTHON_AENUM_LICENSE_FILES = aenum/LICENSE
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
|
# only needed/valid for python 3.x
|
|
define PYTHON_AENUM_RM_PY3_FILE
|
|
rm -f $(TARGET_DIR)/usr/lib/python*/site-packages/aenum/test_v3.py
|
|
endef
|
|
|
|
PYTHON_AENUM_POST_INSTALL_TARGET_HOOKS += PYTHON_AENUM_RM_PY3_FILE
|
|
endif
|
|
|
|
$(eval $(python-package))
|