mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
41 lines
883 B
Text
41 lines
883 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-cliff
|
|
pkgver=3.8.0
|
|
pkgrel=0
|
|
pkgdesc="Command Line Interface Formulation Framework"
|
|
url="https://docs.openstack.org/cliff/latest/"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="
|
|
py3-yaml
|
|
python3
|
|
"
|
|
makedepends="
|
|
py3-pbr
|
|
py3-setuptools
|
|
"
|
|
checkdepends="
|
|
py3-pytest
|
|
py3-prettytable
|
|
py3-stevedore
|
|
"
|
|
source="https://pypi.python.org/packages/source/c/cliff/cliff-$pkgver.tar.gz"
|
|
options="!check" # Requires specific (old) version of py3-cmd2
|
|
builddir="$srcdir/cliff-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
pytest
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
002e3ddfb254c5369582cc28572856a8b4ad05d598a7f8aa690add69f49cabb12ef2ef17b6c1553792aaee785b7c1703b05dd9d4889271cd5eba5629fad3d09b cliff-3.8.0.tar.gz
|
|
"
|