jobextra/python-setuptools/PKGBUILD-arch

101 lines
4.5 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-11-03 04:37:23 +01:00
pkgver=64.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'
2022-10-04 16:34:08 +02:00
'python-pytest-enabler' 'python-pytest-mypy' '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-11-03 04:37:23 +01:00
sha512sums=('efc15a423215443e05a9e6a778b8ff910f0a982a814899f20f7599b6bf7213e11effaae2725548e5c52874d3c9de5be7964f4d1155e7df48ccf990b64fcff246'
'390fea2c575a0042054f51d33e629b04a48f832f0a4a2dd07d34e23cdf330c382dba0f54bfb7c8a6a253bb248a4940f2a789672f715e4dc2aeb395fa185cae7a')
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
2022-11-03 04:37:23 +01:00
# Fix tests invoking python-build
sed -e 's/"-m", "build", "--wheel"/"-m", "build", "--wheel", "--no-isolation"/' \
-e 's/"-m", "build", "--sdist"/"-m", "build", "--sdist", "--no-isolation"/' \
-i setuptools/tests/fixtures.py
2022-03-20 13:34:07 +01:00
# 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-11-03 04:37:23 +01:00
# 1: subtle difference introduced by devendoring
# rest: skipping broken tests using "setuptools_sdist", "setuptools_wheel" (or "venv" which uses the latter)
# and fails with pip
PYTHONPATH="$PWD"/build/lib python -m pytest \
--deselect setuptools/tests/config/test_apply_pyprojecttoml.py::test_apply_pyproject_equivalent_to_setupcfg \
2022-11-03 04:37:23 +01:00
--deselect setuptools/tests/test_build_meta.py::test_legacy_editable_install \
--deselect setuptools/tests/test_distutils_adoption.py::test_distutils_local_with_setuptools \
--deselect setuptools/tests/test_editable_install.py::test_editable_with_pyproject \
--deselect setuptools/tests/test_editable_install.py::test_editable_with_flat_layout \
--deselect setuptools/tests/test_editable_install.py::TestLegacyNamespaces::test_namespace_package_importable \
--deselect setuptools/tests/test_editable_install.py::TestPep420Namespaces::test_namespace_package_importable \
--deselect setuptools/tests/test_editable_install.py::TestPep420Namespaces::test_namespace_created_via_package_dir \
--deselect setuptools/tests/test_editable_install.py::TestOverallBehaviour::test_editable_install \
--deselect setuptools/tests/test_editable_install.py::TestLinkTree::test_strict_install \
--deselect setuptools/tests/test_editable_install.py::test_compat_install \
--deselect setuptools/tests/test_virtualenv.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
}