jobextra/python-setuptools/PKGBUILD

98 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-10 00:03:00 +02:00
pkgver=60.10.0
2022-06-10 18:59:14 +02:00
pkgrel=02
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'
2022-06-10 00:03:00 +02:00
'python-ordered-set' 'python-packaging' 'python-pyparsing')
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')
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")
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
prepare() {
rm -r setuptools-$pkgver/{pkg_resources,setuptools}/{extern,_vendor}
# 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 setuptools-$pkgver -name \*.py -exec sed -i \
-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 setuptools-$pkgver/setup.cfg
# 'Clean' installation is expected to fail since we removed bundled packages
sed -i '/^def test_clean_env_install/i @pytest.mark.xfail' setuptools-$pkgver/setuptools/tests/test_virtualenv.py
# Tests failed. Importing an unbundled new setuptools in a virtualenv does not work, but this won't
# affect normal virtualenv usage (which don't have to import the unbundled setuptools in *current*
# dir.
sed -e '/^def test_pip_upgrade_from_source/i @pytest.mark.xfail' \
-e '/^def test_test_command_install_requirements/i @pytest.mark.xfail' \
-e '/^def test_no_missing_dependencies/i @pytest.mark.xfail' \
-i setuptools-$pkgver/setuptools/tests/test_virtualenv.py
cd "$srcdir"/setuptools-$pkgver
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
}
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
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-10 00:03:00 +02:00
sha256sums=(80454e8743cf3640b974d4e681fe44ccc51d8402083b5025b559339a77b740b7) # python-setuptools-60.10.0.tar.gz
2022-06-10 18:59:14 +02:00