mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
25 lines
821 B
Text
25 lines
821 B
Text
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer: Leo <thinkabit.ukim@gmail.com>
|
|
pkgname=py3-cachecontrol
|
|
_realname=CacheControl
|
|
pkgver=0.12.5
|
|
pkgrel=1
|
|
pkgdesc="httplib2 caching for requests"
|
|
options="!check" # Later
|
|
url="https://github.com/ionrock/cachecontrol"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="python3 py3-requests py3-msgpack py3-lockfile"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_realname:0:1}/$_realname/$_realname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_realname-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="b7be614c84405ad4bc1125d3d4d149131ffd56455925c7eea4706c4a2d3841e1edfca58f9612cd85dc2a2838313b4c0e56df4ba93a5297b12ebafbb900ea20f6 CacheControl-0.12.5.tar.gz"
|