diff options
author | Andrey Smirnov <andrew.smirnov@gmail.com> | 2017-06-02 16:56:45 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-06-11 14:47:29 +0200 |
commit | 8d69d8033469228968043087fd31300af1e1453a (patch) | |
tree | 0d01de3c81dff73bdf2c7e7030b77460a141a563 /package/python-simplegeneric/python-simplegeneric.mk | |
parent | beaa24a429cada82917488ce48c76dce75d5a4a0 (diff) | |
download | buildroot-8d69d8033469228968043087fd31300af1e1453a.tar.gz buildroot-8d69d8033469228968043087fd31300af1e1453a.zip |
package/python-simplegeneric: Switch setup type to 'setuptools'
Specifying setup type to be 'distutils' results in this package being
installed as .egg, a zipped file, which inadvertantly makes
'simplegeneric' to be dependent on BR2_PACKAGE_PYTHON*_ZLIB. In order
to avoid that specify setup type to be 'setuptools' which makes use of
--single-version-externally-managed and therefore installs the package
as .pyc and a .egg-info folder.
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-simplegeneric/python-simplegeneric.mk')
-rw-r--r-- | package/python-simplegeneric/python-simplegeneric.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/python-simplegeneric/python-simplegeneric.mk b/package/python-simplegeneric/python-simplegeneric.mk index 556a478ee1..cc84320428 100644 --- a/package/python-simplegeneric/python-simplegeneric.mk +++ b/package/python-simplegeneric/python-simplegeneric.mk @@ -8,7 +8,12 @@ PYTHON_SIMPLEGENERIC_VERSION = 0.8.1 PYTHON_SIMPLEGENERIC_SOURCE = simplegeneric-$(PYTHON_SIMPLEGENERIC_VERSION).zip PYTHON_SIMPLEGENERIC_SITE = https://pypi.python.org/packages/3d/57/4d9c9e3ae9a255cd4e1106bb57e24056d3d0709fc01b2e3e345898e49d5b PYTHON_SIMPLEGENERIC_LICENSE = ZPL-2.1 -PYTHON_SIMPLEGENERIC_SETUP_TYPE = distutils + +# Force setup-type to be 'setuptools' in order to force the package to +# be installed with --single-version-externally-managed. Otherwise we +# end up with a .egg file, which is a zip archive, and as such forces +# us to have 'zlib' as a runtime dependency +PYTHON_SIMPLEGENERIC_SETUP_TYPE = setuptools define PYTHON_SIMPLEGENERIC_EXTRACT_CMDS unzip $(DL_DIR)/$(PYTHON_SIMPLEGENERIC_SOURCE) -d $(@D) |