jobextra/python-setuptools/PKGBUILD-arch

95 lines
4.1 KiB
Plaintext
Raw Normal View History

2022-03-20 13:34:07 +01:00
# Maintainer: Angel Velasquez <angvp@archlinux.org>
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Eli Schwartz <eschwartz@archlinux.org>
pkgname=python-setuptools
2022-10-03 00:25:42 +02:00
pkgver=63.0.0
2022-03-20 13:34:07 +01:00
pkgrel=1
epoch=1
pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages"
arch=('any')
license=('PSF')
url="https://pypi.org/project/setuptools/"
2022-10-03 00:25:42 +02:00
depends=('python-appdirs' 'python-jaraco.text' 'python-more-itertools' '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'
'python-pytest-fixture-config' 'python-pytest-virtualenv' 'python-wheel'
'python-paver' '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-10-03 00:25:42 +02:00
sha512sums=('099faa3270f04699cb04a8fb88bd4ca8d35925f1fc0629f7f0d967558979a364c4dab22631b50d8763f1f606314683970732d015ea03e74cd1e7565ddef227af'
2022-06-13 19:48:18 +02:00
'50495062093b1b6902484c384abe073896e4f45c5768741582e178014367f186831711a72a8a987e7bacafe96d871161fc07c686dd92c6886de19302f6a10b56')
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
{} +
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
}
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
2022-06-16 22:31:44 +02:00
# 1-7: skipping all tests using "setuptools_sdist", "setuptools_wheel" (or "venv" which uses the latter)
2022-07-18 00:44:41 +02:00
# 8-9: subtle difference introduced by devendoring
# 10-12: TODO
2022-06-16 22:31:44 +02:00
PRE_BUILT_SETUPTOOLS_SDIST="$PWD"/build/lib python -m pytest \
--deselect setuptools/tests/integration/test_pip_install_sdist.py \
2022-06-16 22:31:44 +02:00
--deselect setuptools/tests/test_distutils_adoption.py \
--deselect setuptools/tests/test_setuptools.py::test_its_own_wheel_does_not_contain_tests \
--deselect setuptools/tests/test_virtualenv.py \
2022-06-16 22:31:44 +02:00
--deselect setuptools/tests/test_editable_install.py::test_editable_with_pyproject \
--deselect setuptools/tests/config/test_apply_pyprojecttoml.py::TestMeta::test_example_file_in_sdist \
--deselect setuptools/tests/config/test_apply_pyprojecttoml.py::TestMeta::test_example_file_not_in_wheel \
--deselect setuptools/tests/config/test_apply_pyprojecttoml.py::test_apply_pyproject_equivalent_to_setupcfg \
2022-07-18 00:44:41 +02:00
--deselect setuptools/tests/config/test_pyprojecttoml.py::test_invalid_example \
--deselect setuptools/tests/test_dist_info.py::TestWheelCompatibility \
--deselect setuptools/tests/test_dist_info.py::TestDistInfo::test_invalid_version \
--deselect setuptools/tests/test_build.py
2022-03-20 13:34:07 +01:00
)}
package() {
cd setuptools-$pkgver
python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 --skip-build
}