summaryrefslogtreecommitdiffstats
path: root/package/python-simplegeneric
Commit message (Collapse)AuthorAgeFilesLines
* packages: use new $($PKG)_DL_DIR) variableMaxime Hadjinlian2018-04-021-1/+1
| | | | | | | | | | | | | | | | | | | | | Instead of DL_DIR, the package should now use $(PKG)_DL_DIR to ease the transition into a new directory structure for DL_DIR. This commit has been generated with the following scripts: for i in $(find . -iname "*.mk"); do if ! grep -q "\$(DL_DIR)" ${i}; then continue fi pkg_name="$(basename $(dirname ${i}))" [ "${pkg_name}" = "package" ] && continue raw_pkg_name=$(echo ${pkg_name} | tr [a-z] [A-Z] | tr '-' '_') pkg_dl_dir="${raw_pkg_name}_DL_DIR" sed -i "s/\$(DL_DIR)/\$($pkg_dl_dir)/" ${i} done Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/python-simplegeneric: Switch setup type to 'setuptools'Andrey Smirnov2017-06-111-1/+6
| | | | | | | | | | | | | 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>
* python-simplegeneric: fix descriptionThomas Petazzoni2017-05-041-1/+2
| | | | | | Use the description from https://pypi.python.org/pypi/simplegeneric. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/python-simplegeneric: New packageAndrey Smirnov2017-05-043-0/+28
Add 'simplegeneric'[1] package to Buildroot. Needed by IPython. [1] https://pypi.python.org/pypi/simplegeneric Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> [Thomas: add entry in DEVELOPERS file, fix license.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud