diff options
| author | Leo <thinkabit.ukim@gmail.com> | 2019-09-15 12:47:28 -0300 |
|---|---|---|
| committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-09-18 10:35:07 +0000 |
| commit | 2ff6c8d96168c2e2801d3bf559aa331162db00df (patch) | |
| tree | 88c96efc6d9e57941ba81b50c53b8ee4160f9eb9 | |
| parent | e4565a90ca0b857af165c45d8333fbbe77a31684 (diff) | |
| download | aports-2ff6c8d96168c2e2801d3bf559aa331162db00df.tar.bz2 aports-2ff6c8d96168c2e2801d3bf559aa331162db00df.tar.xz | |
main/py3-oauth2: drop py2
| -rw-r--r-- | main/py3-oauth2/APKBUILD | 44 |
1 files changed, 20 insertions, 24 deletions
diff --git a/main/py3-oauth2/APKBUILD b/main/py3-oauth2/APKBUILD index 84c4407f0b..438003101a 100644 --- a/main/py3-oauth2/APKBUILD +++ b/main/py3-oauth2/APKBUILD @@ -1,41 +1,37 @@ # Contributor: Peter Bui <pnutzh4x0r@gmail.com> # Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> -pkgname=py-oauth2 +pkgname=py3-oauth2 _pkgname=oauth2 pkgver=1.9.0 -pkgrel=0 -pkgdesc="A Python library for OAuth" +pkgrel=1 +pkgdesc="Python3 library for OAuth" url="https://github.com/simplegeo/python-oauth2" arch="noarch" license="MIT" -depends="python2 py-httplib2" -depends_dev="" -makedepends="python2-dev py-setuptools" -install="" -subpackages="" +depends="python3 py3-httplib2" +makedepends="py3-setuptools" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.post1.tar.gz" +builddir="$srcdir"/$_pkgname-$pkgver.post1 -_builddir="$srcdir"/$_pkgname-$pkgver.post1 -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} +replaces="py-oauth2" # Bakcwards compatibility +provides="py-oauth2=$pkgver-r$pkgrel" # Bakcwards compatibility build() { - cd "$_builddir" - python2 setup.py build || return 1 + cd "$builddir" + python3 setup.py build +} + +check() { + cd "$builddir" + python3 setup.py test } package() { - cd "$_builddir" - python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1 + cd "$builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" + + # Tests don't need to be installed + rm -rf "$pkgdir"/usr/lib/python3*/site-packages/tests/ } -md5sums="22d49051d1d19d9ec17df480a463d0bb oauth2-1.9.0.post1.tar.gz" -sha256sums="c006a85e7c60107c7cc6da1b184b5c719f6dd7202098196dfa6e55df669b59bf oauth2-1.9.0.post1.tar.gz" sha512sums="a3b64eef331d4c4f59c275f14efb2dfb48ad60de47a59a88106f60d64428a09b76d8bedf08c98c113493968d83708b1478b4b61b2b5528b5b01fa22777daff4c oauth2-1.9.0.post1.tar.gz" |
