[arch-commits] Commit in python-requests-toolbelt/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sun Jul 8 07:24:27 UTC 2018
Date: Sunday, July 8, 2018 @ 07:24:25
Author: felixonmars
Revision: 354610
archrelease: copy trunk to community-staging-any
Added:
python-requests-toolbelt/repos/community-staging-any/
python-requests-toolbelt/repos/community-staging-any/PKGBUILD
(from rev 354609, python-requests-toolbelt/trunk/PKGBUILD)
----------+
PKGBUILD | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
Copied: python-requests-toolbelt/repos/community-staging-any/PKGBUILD (from rev 354609, python-requests-toolbelt/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2018-07-08 07:24:25 UTC (rev 354610)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: eolianoe <eolianoe At GoogleMAIL DoT com>
+
+pkgbase=python-requests-toolbelt
+pkgname=('python-requests-toolbelt' 'python2-requests-toolbelt')
+pkgver=0.8.0
+pkgrel=3
+pkgdesc="A toolbelt of useful classes and functions to be used with python-requests."
+arch=('any')
+url="https://github.com/requests/toolbelt"
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 'python2-requests')
+checkdepends=('python-pytest' 'python2-pytest' 'python-betamax' 'python2-betamax'
+ 'python-mock' 'python2-mock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/requests/toolbelt/archive/$pkgver.tar.gz")
+sha512sums=('55bf93d386442f5deb81eabd85812ffd49e98ff88c0bb96e15271efd84deb7c5d854a2cdc81c989a7d74870e8a218fc968d080052d9ca7cd9733a2378ea9c2f5')
+
+prepare() {
+ cp -a toolbelt-$pkgver{,-py2}
+}
+
+build() {
+ cd "$srcdir"/toolbelt-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/toolbelt-$pkgver-py2
+ python2 setup.py build
+}
+
+check() {
+ cd "$srcdir"/toolbelt-$pkgver
+ py.test
+
+ cd "$srcdir"/toolbelt-$pkgver-py2
+ py.test2
+}
+
+package_python-requests-toolbelt() {
+ depends=('python-requests')
+
+ cd toolbelt-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-requests-toolbelt() {
+ depends=('python2-requests')
+
+ cd toolbelt-$pkgver-py2
+ python2 setup.py install --root="$pkgdir" --optimize=1
+}
More information about the arch-commits
mailing list