blob: a978d46ac262d582068a2109456377443749f7f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Maintainer: Matteo Piccinini (loacker) <matteo.piccinini@gmail.com>
# Contributor: zhullyb <zhullyb@outlook.com>
# Contributor: BigfootACA <bigfoot@classfun.cn>
pkgname=python-castellan
pkgver=5.4.1
pkgrel=1
pkgdesc="Generic Key Manager interface for OpenStack"
arch=(any)
url="https://opendev.org/openstack/castellan"
license=(Apache-2.0)
depends=(
'python'
'python-pbr'
'python-cryptography'
'python-barbicanclient'
'python-oslo-config'
'python-oslo-context'
'python-oslo-i18n'
'python-oslo-log'
'python-oslo-utils'
'python-stevedore'
'python-keystoneauth1'
'python-requests'
'python-requests-mock'
'python-oslotest'
)
makedepends=(
'python-build'
'python-installer'
'python-setuptools'
'python-wheel'
'git'
)
checkdepends=(
'python-coverage'
'python-subunit'
'python-stestr'
'python-fixtures'
'python-testscenarios'
'pifpaf'
)
source=("$pkgname-$pkgver::git+$url.git#tag=$pkgver")
b2sums=('1a551a5b29d74067c9bddb06657c9bf2a08e203fcf42d0b8ae4c35397a663179dae10bf0835c5ad00db257fd4f91a58b9b25cf7991c810f6a3b11677ef408949')
build(){
cd "$pkgname-$pkgver" || exit
PBR_VERSION=$pkgver python -m build --wheel --no-isolation
}
check(){
cd "$pkgname-$pkgver" || exit
stestr run
}
package(){
cd "$pkgname-$pkgver" || exit
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 README.rst -t "$pkgdir/usr/share/$pkgname/"
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}
|