# upstream git revision: a6efc98e6cda125be25a45410c45f87a8769ca76 # Maintainer: Erich Eckner # Contributor: Angel Velasquez # Contributor: Felix Yan # Contributor: Eli Schwartz # heavily borrowed from python-setuptools' PKGBUILD pkgname=python-setuptools-bootstrap pkgver='49.1.1' pkgrel='1' epoch='1' pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages - bootstrap variant" arch=('any') license=('PSF') url="https://pypi.org/project/setuptools/" makedepends=('python' 'git') source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz") sha512sums=('a961d3fdf2158da8285b662a5b953b6b9960db8c2d054ffb710a9440265f09480e3609d0612dc5b6991405ede30344a0674e64d35422f5c4b981af4699296827') export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0 prepare() { # 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 import pytest\n\n@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 "$srcdir"/setuptools-$pkgver python bootstrap.py python setup.py build } package() { depends=("${_deps[@]/#/python-}") provides=('python-distribute' "python-setuptools=${pkgver}") replaces=('python-distribute') cd "$srcdir"/setuptools-$pkgver python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 --skip-build }