[arch-commits] Commit in python-wheel/repos/community-any (PKGBUILD PKGBUILD)
Felix Yan
felixonmars at archlinux.org
Sun Aug 18 04:01:15 UTC 2019
Date: Sunday, August 18, 2019 @ 04:01:14
Author: felixonmars
Revision: 500046
archrelease: copy trunk to community-any
Added:
python-wheel/repos/community-any/PKGBUILD
(from rev 500045, python-wheel/trunk/PKGBUILD)
Deleted:
python-wheel/repos/community-any/PKGBUILD
----------+
PKGBUILD | 134 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 67 insertions(+), 67 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2019-08-18 04:01:05 UTC (rev 500045)
+++ PKGBUILD 2019-08-18 04:01:14 UTC (rev 500046)
@@ -1,67 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Maintainer: Morten Linderud <foxboron at archlinux.org>
-# Contributor: Lance Chen <cyen0312 at gmail.com>
-
-_pypiname=wheel
-pkgbase=python-wheel
-pkgname=('python-wheel' 'python2-wheel')
-pkgver=0.33.4
-pkgrel=1
-pkgdesc="A built-package format for Python"
-arch=(any)
-url="https://pypi.python.org/pypi/wheel"
-license=('MIT')
-makedepends=('python' 'python-setuptools'
- 'python2' 'python2-setuptools')
-checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 'python2-pytest-cov'
- 'python-keyring' 'python-keyrings-alt' 'python-xdg' 'python2-xdg')
-source=("https://pypi.io/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/wheel/archive/$pkgver.tar.gz")
-sha512sums=('00c2994fd4688d5f93634d27e2d1838034b8bc56ae2075e9500eae1babd8bd837272941834e376c7a7afef47655fb9828c12f0ccbe62d0397f8482fe876e6f8b')
-
-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.7/site-packages:$PYTHONPATH" py.test
-
- 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 -k 'not test_keygen'
-}
-
-package_python-wheel() {
- depends=('python')
- optdepends=('python-keyring: for wheel.signatures')
- optdepends=('python-xdg: for wheel.signatures')
-
- cd "$srcdir/$_pypiname-$pkgver"
- python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
- install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_python2-wheel() {
- depends=('python2')
- optdepends=('python2-keyring: for wheel.signatures')
- optdepends=('python2-xdg: for wheel.signatures')
-
- cd "$srcdir/$_pypiname-$pkgver"
- python2 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
- 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:
Copied: python-wheel/repos/community-any/PKGBUILD (from rev 500045, python-wheel/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2019-08-18 04:01:14 UTC (rev 500046)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Maintainer: Morten Linderud <foxboron at archlinux.org>
+# Contributor: Lance Chen <cyen0312 at gmail.com>
+
+_pypiname=wheel
+pkgbase=python-wheel
+pkgname=('python-wheel' 'python2-wheel')
+pkgver=0.33.5
+pkgrel=1
+pkgdesc="A built-package format for Python"
+arch=(any)
+url="https://pypi.python.org/pypi/wheel"
+license=('MIT')
+makedepends=('python' 'python-setuptools'
+ 'python2' 'python2-setuptools')
+checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 'python2-pytest-cov'
+ 'python-keyring' 'python-keyrings-alt' 'python-xdg' 'python2-xdg')
+source=("https://pypi.io/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/wheel/archive/$pkgver.tar.gz")
+sha512sums=('d2f02c917b822aebf2fe270a95c37dd1a06a28d481484814c2adf9d31b8eae45d17111c6d0d776d5df7a5f0f54c4e58838f3ea6a7a1837d829357b1758dc0ad3')
+
+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.7/site-packages:$PYTHONPATH" py.test
+
+ 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 -k 'not test_keygen'
+}
+
+package_python-wheel() {
+ depends=('python')
+ optdepends=('python-keyring: for wheel.signatures')
+ optdepends=('python-xdg: for wheel.signatures')
+
+ cd "$srcdir/$_pypiname-$pkgver"
+ python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+ install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}
+
+package_python2-wheel() {
+ depends=('python2')
+ optdepends=('python2-keyring: for wheel.signatures')
+ optdepends=('python2-xdg: for wheel.signatures')
+
+ cd "$srcdir/$_pypiname-$pkgver"
+ python2 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+ 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