jobextra/python-setuptools/PKGBUILD

97 lines
3.7 KiB
Bash
Raw Normal View History

2022-03-20 13:34:07 +01:00
#!/usr/bin/bash
# JOBoRun : Jwm OpenBox Obarun RUNit
# Maintainer : Joe Bo Run <joborun@disroot.org>
2022-03-20 13:34:07 +01:00
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
# Website : https://pozol.eu
2022-03-20 13:34:07 +01:00
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=python-setuptools
2022-06-13 19:48:18 +02:00
pkgver=61.3.0
pkgrel=01
2022-03-20 13:34:07 +01:00
epoch=1
pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages"
arch=('any')
url="https://pypi.org/project/setuptools/"
2022-06-10 18:59:14 +02:00
depends=('python-appdirs' 'python-jaraco.text' 'python-more-itertools' 'python-nspektr'
'python-ordered-set' 'python-packaging' 'python-pyparsing' 'python-tomli'
'python-validate-pyproject')
2022-03-20 13:34:07 +01:00
makedepends=('git' 'python-setuptools')
checkdepends=('python-jaraco.envs' 'python-jaraco.path' 'python-mock' 'python-pip' 'python-pip-run'
2022-03-20 13:34:07 +01:00
'python-pytest-fixture-config' 'python-pytest-flake8' 'python-pytest-virtualenv'
'python-wheel' 'python-paver' 'python-pytest-cov' 'python-sphinx' 'python-build'
'python-ini2toml' 'python-tomli-w')
2022-03-20 13:34:07 +01:00
provides=('python-distribute')
replaces=('python-distribute')
source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz"
system-validate-pyproject.patch)
2022-03-20 13:34:07 +01:00
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
prepare() {
cd setuptools-$pkgver
patch -p1 -i ../system-validate-pyproject.patch
2022-06-13 19:48:18 +02:00
rm -r {pkg_resources,setuptools}/{extern,_vendor} setuptools/config/_validate_pyproject
2022-03-20 13:34:07 +01:00
# Upstream devendoring logic is badly broken, see:
# https://bugs.archlinux.org/task/58670
# https://github.com/pypa/pip/issues/5429
# https://github.com/pypa/setuptools/issues/1383
# The simplest fix is to simply rewrite import paths to use the canonical
# location in the first place
for _module in setuptools pkg_resources '' ; do
find . -name \*.py -exec sed -i \
2022-03-20 13:34:07 +01:00
-e 's/from '$_module.extern' import/import/' \
2022-06-10 00:03:00 +02:00
-e 's/from '$_module.extern'\./from /' \
-e 's/import '$_module.extern'\./import /' \
2022-03-20 13:34:07 +01:00
-e "s/__import__('$_module.extern./__import__('/" \
2022-06-10 00:03:00 +02:00
-e 's/from \.\.extern\./from /' \
2022-03-20 13:34:07 +01:00
{} +
2022-06-10 00:03:00 +02:00
2022-03-20 13:34:07 +01:00
done
# Remove post-release tag since we are using stable tags
sed -e '/tag_build = .post/d' \
-e '/tag_date = 1/d' \
-i setup.cfg
2022-03-20 13:34:07 +01:00
# Fix shebang
2022-03-20 13:34:07 +01:00
sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py
}
build() {
cd setuptools-$pkgver
python setup.py build
}
2022-06-13 19:48:18 +02:00
check() { (
# Workaround UTF-8 tests by setting LC_CTYPE
export LC_CTYPE=en_US.UTF-8
# https://github.com/pypa/setuptools/pull/810
export PYTHONDONTWRITEBYTECODE=1
cd setuptools-$pkgver
SETUPTOOLS_USE_DISTUTILS=stdlib python -m pytest \
--deselect setuptools/tests/test_distutils_adoption.py \
--deselect setuptools/tests/integration/test_pip_install_sdist.py \
--deselect setuptools/tests/test_setuptools.py::test_its_own_wheel_does_not_contain_tests \
--deselect setuptools/tests/test_virtualenv.py \
--deselect "setuptools/tests/test_editable_install.py::test_editable_with_pyproject[__import__('setuptools').setup()]" \
--deselect setuptools/tests/config/test_apply_pyprojecttoml.py::test_apply_pyproject_equivalent_to_setupcfg \
--deselect setuptools/tests/config/test_pyprojecttoml.py::test_invalid_example
)}
2022-03-20 13:34:07 +01:00
package() {
cd setuptools-$pkgver
python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 --skip-build
}
#---- license gpg-key sha256sums ----
license=('PSF')
2022-06-13 19:48:18 +02:00
sha256sums=(63bb2671c3a4dd67949e9c8ff46aa06939c91d960e562cba68498a7ffb992b0a # python-setuptools-61.3.0.tar.gz
3fffbffa0d0116ab64cb1e0e9b33ea28c60147c8f4fdbcfe71fac2adcfedd14a) # system-validate-pyproject.patch
2022-06-10 18:59:14 +02:00