[arch-commits] Commit in python-setuptools/repos (testing-any testing-any/PKGBUILD)
Felix Yan
felixonmars at archlinux.org
Fri Sep 15 19:34:04 UTC 2017
Date: Friday, September 15, 2017 @ 19:34:03
Author: felixonmars
Revision: 305620
archrelease: copy trunk to testing-any
Added:
python-setuptools/repos/testing-any/
python-setuptools/repos/testing-any/PKGBUILD
(from rev 305619, python-setuptools/trunk/PKGBUILD)
----------+
PKGBUILD | 97 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 97 insertions(+)
Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 305619, python-setuptools/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD (rev 0)
+++ testing-any/PKGBUILD 2017-09-15 19:34:03 UTC (rev 305620)
@@ -0,0 +1,97 @@
+# $Id$
+# Maintainer: Angel Velasquez <angvp at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=36.5.0
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools"
+makedepends=('python-packaging' 'python2-packaging' 'python-appdirs' 'python2-appdirs' 'python-pip'
+ 'python2-pip')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-pytest-flake8'
+ 'python2-pytest-flake8' 'python-mock' 'python2-mock' 'python-pytest-fixture-config'
+ 'python2-pytest-fixture-config' 'python-pytest-virtualenv' 'python2-pytest-virtualenv'
+ 'git')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz")
+sha512sums=('34579579c21ff68f4ff71eeb1140dca4d4308756b4ce5c58dd1ddd25c004c6390c4b45feda83e505380685a8dce4b7dbdbd2d83c3fb3a89879df945c5a5342a6')
+
+prepare() {
+ # Don't download and install deps
+ sed -i '/pip.main(args)/d' setuptools-$pkgver/bootstrap.py
+
+ rm -r setuptools-$pkgver/pkg_resources/_vendor
+
+ # 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 at 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' \
+ -i setuptools-$pkgver/setuptools/tests/test_virtualenv.py
+
+ cp -a setuptools-$pkgver{,-py2}
+
+ cd "$srcdir"/setuptools-$pkgver
+ sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" setuptools/command/easy_install.py
+
+ cd "$srcdir"/setuptools-$pkgver-py2
+ sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" setuptools/command/easy_install.py
+ sed -i -e "s|'pip'|'pip2'|" setuptools/tests/{test_develop.py,test_namespaces.py}
+
+ export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
+}
+
+build() {
+ cd "$srcdir"/setuptools-$pkgver
+ python bootstrap.py
+ python setup.py build
+
+ cd "$srcdir"/setuptools-$pkgver-py2
+ python2 bootstrap.py
+ python2 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 "$srcdir"/setuptools-$pkgver
+ python setup.py pytest
+
+ cd "$srcdir"/setuptools-$pkgver-py2
+ python2 setup.py pytest
+)}
+
+package_python-setuptools() {
+ depends=('python-packaging' 'python-appdirs')
+ provides=('python-distribute')
+ replaces=('python-distribute')
+
+ cd "$srcdir"/setuptools-$pkgver
+ python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python2-setuptools() {
+ depends=('python2-packaging' 'python2-appdirs')
+ provides=('python2-distribute')
+ replaces=('python2-distribute')
+
+ cd "$srcdir"/setuptools-$pkgver-py2
+ python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 --skip-build
+ rm "$pkgdir"/usr/bin/easy_install
+}
More information about the arch-commits
mailing list