mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
# 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.29.126
|
|
pkgrel=0
|
|
pkgdesc="The low-level, core functionality of Boto3"
|
|
url="https://github.com/boto/botocore"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="
|
|
py3-certifi
|
|
py3-dateutil
|
|
py3-jmespath
|
|
py3-urllib3
|
|
python3
|
|
"
|
|
makedepends="
|
|
py3-gpep517
|
|
py3-setuptools
|
|
py3-wheel
|
|
"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://files.pythonhosted.org/packages/source/b/botocore/botocore-$pkgver.tar.gz"
|
|
builddir="$srcdir/botocore-$pkgver"
|
|
options="!check" # take way too long
|
|
|
|
replaces=py-botocore # Backwards compatibility
|
|
provides=py-botocore=$pkgver-r$pkgrel # Backwards compatibility
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
e546ffad6e9fcfa5dee1385a3710d15f2d3351252df59315050e28973377a5f2a5fa3a6e582f05de2d19788bfb501b01edc016bb21816f2f6b017f784f00bfe6 botocore-1.29.126.tar.gz
|
|
"
|