aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Berthault <justin.berthault@zaclys.net>2020-06-02 19:00:37 +0200
committerLeo <thinkabit.ukim@gmail.com>2020-06-05 00:34:17 +0000
commit0b04bce70d781df1245cb9ae1ded3d00a46fb7f1 (patch)
treed13720e7892c319a95fe86be079c859c333b82bc
parent2303d85b2a2489a21800ed9516afc6331831efac (diff)
downloadalpine_aports-0b04bce70d781df1245cb9ae1ded3d00a46fb7f1.tar.bz2
alpine_aports-0b04bce70d781df1245cb9ae1ded3d00a46fb7f1.tar.xz
alpine_aports-0b04bce70d781df1245cb9ae1ded3d00a46fb7f1.zip
community/py3-requests-oauthlib: upgrade to 1.3.0
-rw-r--r--community/py3-requests-oauthlib/APKBUILD17
1 files changed, 8 insertions, 9 deletions
diff --git a/community/py3-requests-oauthlib/APKBUILD b/community/py3-requests-oauthlib/APKBUILD
index d46be0c421..78b9bf132e 100644
--- a/community/py3-requests-oauthlib/APKBUILD
+++ b/community/py3-requests-oauthlib/APKBUILD
@@ -1,17 +1,16 @@
1# Maintainer: 1# Maintainer: Justin Berthault <justin.berthault@zaclys.net>
2pkgname=py3-requests-oauthlib 2pkgname=py3-requests-oauthlib
3_pkgname=requests-oauthlib 3pkgver=1.3.0
4pkgver=1.2.0 4pkgrel=0
5pkgrel=1
6pkgdesc="First-class OAuth library support for Requests" 5pkgdesc="First-class OAuth library support for Requests"
7url="https://pypi.python.org/pypi/requests-oauthlib" 6url="https://pypi.python.org/pypi/requests-oauthlib"
8arch="noarch" 7arch="noarch"
9license="ISC" 8license="ISC"
10depends="python3 py3-oauthlib py3-requests" 9depends="python3 py3-oauthlib py3-requests"
11makedepends="py3-setuptools" 10makedepends="py3-setuptools"
12checkdepends="py3-mock py3-requests-mock" 11checkdepends="py3-mock py3-requests-mock py3-tox"
13source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" 12source="https://files.pythonhosted.org/packages/source/r/requests-oauthlib/requests-oauthlib-$pkgver.tar.gz"
14builddir="$srcdir/$_pkgname-$pkgver" 13builddir="$srcdir/requests-oauthlib-$pkgver"
15 14
16replaces="py-requests-oauthlib" # Backwards compatibility 15replaces="py-requests-oauthlib" # Backwards compatibility
17provides="py-requests-oauthlib=$pkgver-r$pkgrel" # Backwards compatibility 16provides="py-requests-oauthlib=$pkgver-r$pkgrel" # Backwards compatibility
@@ -21,11 +20,11 @@ build() {
21} 20}
22 21
23check() { 22check() {
24 python3 setup.py test 23 tox --sitepackages
25} 24}
26 25
27package() { 26package() {
28 python3 setup.py install --prefix=/usr --root="$pkgdir" 27 python3 setup.py install --prefix=/usr --root="$pkgdir"
29} 28}
30 29
31sha512sums="531cbea898b692864134b83479b3a32b0455def8bbd0b808a118bd63d377c4056e8df9a4943fa4048e5b27e2628641d8818d3bbc71dde91522a3be163da1e719 requests-oauthlib-1.2.0.tar.gz" 30sha512sums="7ef206aaf50cd3289f04175ff3a08022d00aeaaba57a6580912f37c30880322ec71ae9f6af7edc99efe6043fc6c19ba2c9f6fc0f29c126be28cde22bb885510d requests-oauthlib-1.3.0.tar.gz"