mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
33 lines
1,017 B
Text
33 lines
1,017 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.20.105
|
|
pkgrel=0
|
|
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 py3-docutils py3-jmespath<1.0.0 py3-urllib3<1.27"
|
|
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 --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
72267620e4ecb7e4e4fa446b8f5c0b42d2e0af372f9e8bcfea123e5d8a6f4638102d57a9eb9f3c6f2358c6c2b36e727552c0b350b07f95a79292fb3c2cf4dd99 botocore-1.20.105.tar.gz
|
|
"
|