blob: 81f65f547852d8a6f3925dd480c1b066ee75a312 (
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
|
# Maintainer: Matteo Piccinini (loacker) <matteo.piccinini@gmail.com>
pkgname=python-ironic-lib
pkgver=7.0.0
pkgrel=1
pkgdesc="A common library to be used exclusively by projects under the Ironic governance."
arch=(any)
url="https://opendev.org/openstack/ironic-lib"
license=('Apache-2.0')
depends=(
'python'
'python-oslo-concurrency'
'python-oslo-config'
'python-oslo-i18n'
'python-oslo-utils'
'python-zeroconf'
'python-bcrypt'
'python-webob'
'python-keystonemiddleware'
'python-oslo-messaging'
'python-keystoneauth1'
'python-os-service-types'
'python-oslo-service'
'python-oslotest'
'python-fixtures'
'python-setuptools'
)
makedepends=(
'python-build'
'python-installer'
'python-wheel'
'git'
)
checkdepends=(
'python-coverage'
'python-stestr'
)
source=("$pkgname-$pkgver::git+$url.git#tag=$pkgver")
b2sums=('14a23aa27631a7110e8bb4ec6c29f4c5c908e495b609e5dcae7e3974784091419a3d9b351dbd1cf3d174e3b92132a9ce9386d77989e419f375a82f566f0c220b')
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/"
mv "$pkgdir/usr/etc" "$pkgdir/etc/"
}
|