mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 09:41:39 +01:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# Contributor: William Pitcock <nenolod@dereferenced.org>
|
|
# Maintainer: William Pitcock <nenolod@dereferenced.org>
|
|
pkgname=py-requests
|
|
_pkgname=requests
|
|
pkgver=2.0.0
|
|
pkgrel=0
|
|
pkgdesc="A HTTP request library for Python"
|
|
url="http://www.python-requests.org/"
|
|
arch="noarch"
|
|
license="ASL 2.0"
|
|
depends="python"
|
|
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="856fc825c17483e25fd55db115028e3f requests-2.0.0.tar.gz"
|
|
sha256sums="78536038f54cff6ade3be6863403146665b5a3923dd61108c98d8b64141f9d70 requests-2.0.0.tar.gz"
|
|
sha512sums="17694f4240840a1f9fcb3d662032a67858d8d08ff5af47d2baeffe0d1b07693f3777e6f0f72501f5744fbe9d8b36968ae64a1d17fcc27960a41e3589f7e69a44 requests-2.0.0.tar.gz"
|