#!/usr/bin/bash # JOBoRun : Jwm OpenBox Obarun RUNit # Maintainer : Joe Bo Run # PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname" # Website : https://pozol.eu #-----------------------------------------| DESCRIPTION |--------------------------------------- pkgname=python-setuptools pkgver=68.0.0 _commit=49fec9fafb0e23e0dde52d3c4c410d23a2de9b0d pkgrel=01 epoch=1 pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages" url="https://pypi.org/project/setuptools/" #depends=('python-appdirs' 'python-jaraco.text' 'python-more-itertools' 'python-ordered-set' # 'python-packaging' 'python-pyparsing' 'python-tomli' 'python-validate-pyproject') depends=('python-jaraco.text' 'python-more-itertools' 'python-ordered-set' 'python-packaging' 'python-platformdirs' 'python-tomli' 'python-validate-pyproject') makedepends=('git' 'python-setuptools') checkdepends=('python-jaraco.envs' 'python-jaraco.path' 'python-pip' 'python-pip-run' 'python-pytest-fixture-config' 'python-pytest-virtualenv' 'python-wheel' 'python-pytest-enabler' 'python-pytest-mypy' 'python-pytest-timeout' 'python-sphinx' 'python-build' 'python-ini2toml' 'python-tomli-w') provides=('python-distribute') replaces=('python-distribute') #source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz" source=("git+https://github.com/pypa/setuptools.git#commit=$_commit" system-validate-pyproject.patch) # add-dependency.patch) export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0 prepare() { # cd setuptools-$pkgver cd setuptools patch -p1 -i ../system-validate-pyproject.patch rm -r {pkg_resources,setuptools}/{extern,_vendor} setuptools/config/_validate_pyproject # 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 \ -e 's/from '$_module.extern' import/import/' \ -e 's/from '$_module.extern'\./from /' \ -e 's/import '$_module.extern'\./import /' \ -e "s/__import__('$_module.extern./__import__('/" \ -e 's/from \.\.extern\./from /' \ {} + done # Add the devendored dependencies into metadata of setuptools # patch -p1 -i ../add-dependency.patch # 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 # Remove post-release tag since we are using stable tags sed -e '/tag_build = .post/d' \ -e '/tag_date = 1/d' \ -i setup.cfg # Fix shebang sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py } build() { # cd setuptools-$pkgver cd setuptools python setup.py build } # a few tests may fail when building outside a container, comment this check section out, # and rerun without using the -f option on makepkg ... Hopefully the tests failures will # vanish in the expected multiple Arch releases of this pkg. # 68.0.0 # ======== 30 failed, 1070 passed, 28 skipped, 32 deselected, 6 xfailed, 1 xpassed in 262.83s (0:04:22) ======== #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 # cd setuptools # # 1,4: subtle difference introduced by devendoring # # rest: skipping broken tests using "setuptools_sdist", "setuptools_wheel" (or "venv" which uses the latter) # # and fails with pip # # 2: pip failures related to devendoring, # # 3,5: TODO # PYTHONPATH="$PWD"/build/lib python -m pytest \ # --deselect setuptools/tests/config/test_apply_pyprojecttoml.py::test_apply_pyproject_equivalent_to_setupcfg \ # --deselect setuptools/tests/test_virtualenv.py \ # --deselect setuptools/tests/test_editable_install.py::test_editable_with_prefix \ # --deselect setuptools/_normalization.py::setuptools._normalization.safe_version \ # --deselect setuptools/tests/test_easy_install.py::TestSetupRequires::test_setup_requires_honors_fetch_params # #)} package() { # cd setuptools-$pkgver cd setuptools python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 --skip-build } #---- arch license gpg-key & sha256sums ---- arch=(x86_64) license=('PSF') sha256sums=(SKIP 06e2f68aebedbaeb0b0fe923eae686568910cc3355b33bf619db9266eef83efb) # system-validate-pyproject.patch # a2bc8b9d470c13b4cb682ab3943e80ab2841aae98f7c3d9ba1f089408f96aa91) # add-dependency.patch ## d016a64e6596b2f00945f3408483f1e15c35f223afbc1c076896fadf230e6edb python-setuptools-1:68.0.0-01-x86_64.pkg.tar.lz # Note to packager: ls -l *pkg.tar.lz echo "you must rename this package to meet SF naming before you move to the repo" mv $(ls -l $pkgname*pkg.tar.lz) $pkgname-$epoch_$pkgver-$pkgrel-$arch.pkg.tar.lz >pkg-mv.log