mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
32 lines
1 KiB
Text
32 lines
1 KiB
Text
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
# Maintainer:
|
|
pkgname=py3-core-api
|
|
_pkgname=python-client
|
|
pkgver=2.3.3
|
|
pkgrel=9
|
|
pkgdesc="Python client library for Core API"
|
|
url="https://github.com/core-api/python-client"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="py3-coreschema py3-itypes py3-requests py3-uritemplate"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-coverage py3-pytest py3-core-api"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/core-api/python-client/archive/$pkgver.tar.gz
|
|
no-flake8.patch
|
|
"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py --quiet build
|
|
}
|
|
|
|
check() {
|
|
python3 runtests
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py --quiet install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="aeae3ace84c0ce61552236b83db28e47492f5ac17a0e216e1a8eeddaf67270b94127f7a40f8a37cc5051abe097555adfd690a7e6c8801524ca77c916bd451ab8 py3-core-api-2.3.3.tar.gz
|
|
46f6ec6ef970094d41cb9d61c7225c19ea37b19bcba6287c7c8f26a1b11da5bd34a60cd6582436f0450cc5c8f616d499dd2ceb8fa2d6e6042c39715e68343310 no-flake8.patch"
|