1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 19:55:26 +03:00
aports/testing/py3-botocore/APKBUILD
2019-11-05 15:35:27 +00:00

32 lines
1 KiB
Text

# Maintainer: Valery Kartel <valery.kartel@gmail.com>
# Contributor: Valery Kartel <valery.kartel@gmail.com>
pkgname=py3-botocore
_pkgname=botocore
# Verify required version from py3-boto3 on this package before upgrading
pkgver=1.13.8
pkgrel=1
pkgdesc="The low-level, core functionality of Boto3"
url="https://github.com/boto/botocore"
arch="noarch"
license="Apache-2.0"
depends="py3-dateutil<3.0.0 py3-docutils<0.16 py3-jmespath<1.0.0 py3-urllib3<1.26"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
replaces=py-botocore # Backwards compatibility
provides=py-botocore=$pkgver-r$pkgrel # Backwards compatibility
build() {
python3 setup.py build
}
check() {
python3 setup.py check
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="e031738f01214945a4b397bef62c88cdcb88cecedc91973eaf792fe49ba232be71b887f311949d0e8e1181510c91262cbca57018829e2348213bb3de18b2e6c4 botocore-1.13.8.tar.gz"