blob: 776581870f0aeeb69812b60e4aab79744dfbb471 (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# Maintainer: BigfootACA <bigfoot@classfun.cn>
_pyname=tempest
pkgbase=openstack-$_pyname
pkgname=(openstack-$_pyname{,-doc})
pkgver=28.0.0
pkgrel=1
pkgdesc="OpenStack Integration Testing"
arch=(any)
url="https://docs.openstack.org/tempest/latest/"
license=(Apache)
depends=(
python
python-pbr
python-cliff
python-jsonschema
python-testtools
python-paramiko
python-netaddr
python-oslo-concurrency
python-oslo-config
python-oslo-log
python-stestr
python-oslo-serialization
python-oslo-utils
python-fixtures
python-pyaml
python-subunit
python-stevedore
python-prettytable
python-urllib3
python-debtcollector
)
makedepends=(
python-openstackdocstheme
python-reno
python-sphinx
python-sphinxcontrib-svg2pdfconverter
python-setuptools
)
checkdepends=(
python-hacking
python-coverage
python-oslotest
python-pycodestyle
python-flake8-import-order
)
source=(https://pypi.io/packages/source/${_pyname::1}/$_pyname/$_pyname-$pkgver.tar.gz)
md5sums=('b7359d5e8d7ecd3725167fd468bd9c50')
sha256sums=('24fcc0baa2044454b17b6b4aa2b1b19682cf95eb92ca38a2f289d3cbc488b170')
sha512sums=('e6cb5c2938660ccf066f61e461d397bcc8b107cf474cc063a0f1be9fb3a521c561ff4bc57593257a00728928a96e7b0bb93b1ffcbe3de800cdcf5543fc64d8bf')
export PBR_VERSION=$pkgver
build(){
cd "$_pyname-$pkgver"
export PYTHONPATH="${PWD}"
python setup.py build
sphinx-apidoc -f -o doc/source/tests/compute tempest/api/compute
sphinx-apidoc -f -o doc/source/tests/identity tempest/api/identity
sphinx-apidoc -f -o doc/source/tests/image tempest/api/image
sphinx-apidoc -f -o doc/source/tests/network tempest/api/network
sphinx-apidoc -f -o doc/source/tests/object_storage tempest/api/object_storage
sphinx-apidoc -f -o doc/source/tests/scenario tempest/scenario
sphinx-apidoc -f -o doc/source/tests/volume tempest/api/volume
rm -rf doc/build
GENERATE_TEMPEST_PLUGIN_LIST=false sphinx-build -b html doc/source doc/build/html
}
check(){
cd "$_pyname-$pkgver"
mkdir -p bin
export PATH="${PWD}/bin:${PATH}"
printf '#!/bin/sh\nexec python -m tempest.cmd.main "$@"\n' > bin/tempest
printf '#!/bin/sh\nexec python -m tempest.cmd.subunit_describe_calls "$@"\n' > bin/subunit-describe-calls
chmod +x bin/*
stestr --test-path tempest/tests run
}
_package_pkg(){
optdepends=(
"python-openstackclient: OpenStack CLI Client"
"${pkgbase}-doc: Documents for ${pkgdesc}"
)
backup=(
etc/tempest/accounts.yaml
etc/tempest/allow-list.yaml
etc/tempest/logging.conf
etc/tempest/rbac-persona-accounts.yaml
etc/tempest/tempest.conf
)
cd "$_pyname-$pkgver"
export PYTHONPATH="${PWD}"
python setup.py install --root "$pkgdir" --optimize=1
mv "$pkgdir"{/usr,}/etc
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
oslo-config-generator --config-file tempest/cmd/config-generator.tempest.conf
install -Dm644 etc/*.sample -t "$pkgdir/usr/share/$pkgname/conf"
install -Dm644 etc/*.yaml -t "$pkgdir/usr/share/$pkgname/conf"
install -Dm644 etc/*.sample -t "$pkgdir/etc/$_pyname"
install -Dm644 etc/*.yaml -t "$pkgdir/etc/$_pyname"
for i in "$pkgdir"/etc/tempest/*.sample
do mv -v $i ${i//.sample}
done
}
_package_doc(){
pkgdesc="${pkgdesc} Documents"
depends=()
cd "$_pyname-$pkgver"
DOCDIR=$pkgdir/usr/share/doc
mkdir -p "$DOCDIR"
cp -r doc/build/html "$DOCDIR/$pkgbase"
rm -r "$DOCDIR/$pkgbase/.doctrees"
}
eval "package_${pkgbase}(){ _package_pkg; }"
eval "package_${pkgbase}-doc(){ _package_doc; }"
|