mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +01:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
# Maintainer: Eivind Uggedal <eivind@uggedal.com>
|
|
pkgname=py-oauthlib
|
|
_pkgname=${pkgname#py-}
|
|
pkgver=0.6.3
|
|
pkgrel=0
|
|
pkgdesc="A Python implementation of the OAuth request-signing logic"
|
|
url="https://github.com/idan/oauthlib"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python py-crypto py-jwt"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
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
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="3ecba28f991ee58db2aeda8b4e2b56b1 oauthlib-0.6.3.tar.gz"
|
|
sha256sums="0a11ab2311f7a29d0079fe529bde9503fec9a2bdd52db834cf8a284a8c1c52f9 oauthlib-0.6.3.tar.gz"
|
|
sha512sums="34e1650785381b4f5c64e8cebca2a116a14c21d44573482ae9275cf77b400627305cad9326d0f75e38c24da8703e7f0a1c3c0d5357660b84a628c1f6d3bb5ae4 oauthlib-0.6.3.tar.gz"
|