blob: d7c1e564afbc1211203eceb80de7abe16f7fda6e (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Maintainer: Matteo Piccinini (loacker) <matteo.piccinini@gmail.com>
# Contributor: BigfootACA <bigfoot@classfun.cn>
pkgname=python-oslo-messaging
pkgver=16.1.0
pkgrel=1
pkgdesc="OpenStack library for messaging"
arch=(any)
url="https://opendev.org/openstack/oslo.messaging"
license=(Apache-2.0)
depends=(
'python'
'python-pbr'
'python-oslo-config'
'python-oslo-log'
'python-oslo-utils'
'python-oslo-serialization'
'python-oslo-service'
'python-stevedore'
'python-debtcollector'
'python-cachetools'
'python-webob'
'python-amqp'
'python-kombu'
'python-oslo-middleware'
'python-oslo-metrics'
'python-hacking'
'python-fixtures'
'python-testscenarios'
'python-testtools'
'python-oslotest'
'python-pifpaf'
'python-confluent-kafka'
# 'python-pyngus'
'python-eventlet'
# 'python-qpid-proton'
'python-oslo-concurrency'
'python-oslo-context'
'python-yaml'
'python-requests'
)
makedepends=(
'python-build'
'python-installer'
'python-sphinx'
'python-setuptools'
'python-wheel'
'tar'
)
checkdepends=(
'python-hacking'
'python-fixtures'
'python-stestr'
'python-pre-commit'
'python-testscenarios'
'python-testtools'
'python-oslotest'
'python-pifpaf'
'python-confluent-kafka'
'python-coverage'
'python-pyngus'
'bandit'
'python-eventlet'
'python-greenlet'
'python-futurist'
'python-pyaml'
'python-yaml'
'python-requests'
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
noextract=("$pkgname-$pkgver.tar.gz")
b2sums=('2bc03d5c3bcae49d44db8a5db624d57a142fd1fee8bb9edd003c021e8067a7ae08af166d422a0a0dcfff50a718727c3d8ed7a303b2f8b4d4934873c54e139b39')
prepare() {
tar zxvf "$pkgname-$pkgver.tar.gz" --strip-components=1 --one-top-level
}
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/"
}
|