[arch-commits] Commit in python-wheel/repos (2 files)
Felix Yan
fyan at archlinux.org
Tue Sep 22 05:32:34 UTC 2015
Date: Tuesday, September 22, 2015 @ 07:32:34
Author: fyan
Revision: 141442
archrelease: copy trunk to community-staging-any
Added:
python-wheel/repos/community-staging-any/
python-wheel/repos/community-staging-any/PKGBUILD
(from rev 141441, python-wheel/trunk/PKGBUILD)
----------+
PKGBUILD | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 63 insertions(+)
Copied: python-wheel/repos/community-staging-any/PKGBUILD (from rev 141441, python-wheel/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2015-09-22 05:32:34 UTC (rev 141442)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Lance Chen <cyen0312 at gmail.com>
+
+_pypiname=wheel
+pkgbase=python-wheel
+pkgname=('python-wheel' 'python2-wheel')
+pkgver=0.26.0
+pkgrel=2
+pkgdesc="A built-package format for Python"
+arch=(any)
+url="https://pypi.python.org/pypi/wheel"
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 'python2-pytest-cov'
+ 'python-keyring' 'python2-keyring')
+source=("https://pypi.python.org/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz")
+md5sums=('4cfc6e7e3dc7377d0164914623922a10')
+
+prepare() {
+ cp -a wheel-$pkgver{,-py2}
+}
+
+build() {
+ cd "$srcdir/wheel-$pkgver"
+ python setup.py build
+
+ cd "$srcdir/wheel-$pkgver-py2"
+ python2 setup.py build
+}
+
+check() {
+ # Hack entry points by installing it
+
+ cd "$srcdir/wheel-$pkgver"
+ python setup.py install --root="$PWD/tmp_install" --optimize=1
+ PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" py.test wheel
+
+ cd "$srcdir/wheel-$pkgver-py2"
+ python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+ PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" py.test2 wheel
+}
+
+package_python-wheel() {
+ depends=('python')
+ optdepends=('python-keyring: for wheel.signatures')
+
+ cd "$srcdir/$_pypiname-$pkgver"
+ python setup.py install --root="$pkgdir/" --optimize=1
+ install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+package_python2-wheel() {
+ depends=('python2')
+ optdepends=('python2-keyring: for wheel.signatures')
+
+ cd "$srcdir/$_pypiname-$pkgver"
+ python2 setup.py install --root="$pkgdir/" --optimize=1
+ install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+ mv "$pkgdir/usr/bin/wheel" "$pkgdir/usr/bin/wheel2"
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list