1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/community/py3-botocore/APKBUILD

33 lines
999 B
Text

# Maintainer: Valery Kartel <valery.kartel@gmail.com>
# Contributor: Valery Kartel <valery.kartel@gmail.com>
pkgname=py3-botocore
# Verify required version from py3-boto3 on this package before upgrading
pkgver=1.27.96
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 py3-docutils py3-jmespath py3-urllib3"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/b/botocore/botocore-$pkgver.tar.gz"
builddir="$srcdir/botocore-$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 --skip-build --root="$pkgdir"
}
sha512sums="
7e13e0fb5490566ff69dfff9aeec2b921892ba17c11906de142e7896bead8968fd4aec7b94c13974c5d8562dca0171037e918ca3eefa4b56892549580616bd04 botocore-1.27.96.tar.gz
"