# Contributor: Andrew Manison # Contributor: Fabian Affolter # Contributor: Leo # Maintainer: Leo pkgname=py3-setuptools _pkgname=${pkgname#py3-} pkgver=46.2.0 pkgrel=0 pkgdesc="Collection of enhancements to the Python3 distutils" options="!check" # Tests require packages out of main/ url="https://pypi.python.org/pypi/setuptools" arch="noarch" license="MIT" depends="python3 py3-ordered-set py3-appdirs py3-packaging" source="$_pkgname-$pkgver.tar.gz::https://github.com/pypa/$_pkgname/archive/v$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver provides="py-setuptools=$pkgver-r$pkgrel" # Backwards compatibility replaces="py-setuptools" # Backwards compatiblity export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0 prepare() { default_prepare # Unbundle rm -rf pkg_resources/extern pkg_resources/_vendor \ setuptools/extern setuptools/_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 . -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__('/" \ {} + done # Fix post-release tag 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 python3 bootstrap.py } build() { python3 setup.py build } package() { python3 setup.py install --prefix=/usr --root="$pkgdir" # we don't provide a non-suffixed easy_install rm -f "$pkgdir"/usr/bin/easy_install } sha512sums="c73c70ea8ea7e67d217229c4bd0914afcf6ff1db146515f89cf542077edaec26f5a02ba16ff34e1439510a13afbe3cccc38b799522ae80718aacb59e660f23e8 setuptools-46.2.0.tar.gz"