aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2019-09-15 12:38:42 -0300
committerNatanael Copa <ncopa@alpinelinux.org>2019-09-18 10:34:48 +0000
commit9b7aa5cc863c9b76ba7d3a313735bca87ae2d657 (patch)
tree793399f1eda0a5923848b7ce99644adbaf9c5fd8
parent2dfa1751fde5ed3724c9700fc772027455e4993f (diff)
downloadaports-9b7aa5cc863c9b76ba7d3a313735bca87ae2d657.tar.bz2
aports-9b7aa5cc863c9b76ba7d3a313735bca87ae2d657.tar.xz
main/py3-oauthlib: drop py2
-rw-r--r--main/py3-oauthlib/APKBUILD44
1 files changed, 16 insertions, 28 deletions
diff --git a/main/py3-oauthlib/APKBUILD b/main/py3-oauthlib/APKBUILD
index 41b773096d..5c080b17ed 100644
--- a/main/py3-oauthlib/APKBUILD
+++ b/main/py3-oauthlib/APKBUILD
@@ -1,48 +1,36 @@
# Contributor: Eivind Uggedal <eu@eju.no>
# Maintainer:
-pkgname=py-oauthlib
-_pkgname=${pkgname#py-}
+pkgname=py3-oauthlib
+_pkgname=oauthlib
pkgver=2.1.0
-pkgrel=1
-pkgdesc="A Python implementation of the OAuth request-signing logic"
+pkgrel=2
+pkgdesc="Python3 implementation of the OAuth request-signing logic"
+options="!check" # requires 'blinker' that is in testing/
url="https://github.com/idan/oauthlib"
arch="noarch"
license="BSD"
-depends="py-crypto py-jwt"
-makedepends="python2-dev python3-dev py-setuptools"
-subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
+depends="python3"
+makedepends="py3-setuptools"
+checkdepends="py3-nose py3-cryptography py3-jwt" # py3-blinker"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
+replaces="py-oauthlib" # Backwards compatibility
+provides="py-oauthlib=$pkgver-r$pkgrel" # Backwards compatibility
+
build() {
cd "$builddir"
- python2 setup.py build
python3 setup.py build
}
-package() {
- mkdir -p "$pkgdir"
-}
-
-_py2() {
- replaces="$pkgname"
- depends="${depends//py-/py2-}"
- _py python2
-}
-
-_py3() {
- depends="${depends//py-/py3-}"
- _py python3
+check() {
+ cd "$builddir"
+ python3 setup.py test
}
-_py() {
- local python="$1"
- pkgdesc="$pkgdesc (for $python)"
- depends="$depends $python"
- install_if="$pkgname=$pkgver-r$pkgrel $python"
-
+package() {
cd "$builddir"
- $python setup.py install --prefix=/usr --root="$subpkgdir"
+ python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="bd749c7b65de00cc0c371053577623aca5767a0b20e41b2d5e3e20f8246e84bf360472b4ec983023227d6164ecd7ed4647c41cd8f425fe21200a2c25a9049ffd oauthlib-2.1.0.tar.gz"