forked from avocado-framework/avocado-vt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
avocado-plugins-vt.spec
356 lines (276 loc) · 11 KB
/
avocado-plugins-vt.spec
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
%global srcname avocado-vt
# Conditional for release vs. snapshot builds. Set to 1 for release build.
%if ! 0%{?rel_build:1}
%global rel_build 1
%endif
# Settings used for build from snapshots.
%if 0%{?rel_build}
%global gittar %{srcname}-%{version}.tar.gz
%else
%if ! 0%{?commit:1}
%global commit 17fbd21db453019632f1d81a173c13587d03a717
%endif
%if ! 0%{?commit_date:1}
%global commit_date 20190625
%endif
%global shortcommit %(c=%{commit};echo ${c:0:8})
%global gitrel .%{commit_date}git%{shortcommit}
%global gittar %{srcname}-%{shortcommit}.tar.gz
%endif
%if 0%{?rhel}
%global with_python3 0
%else
%global with_python3 1
%endif
# The Python dependencies are already tracked by the python2
# or python3 "Requires". This filters out the python binaries
# from the RPM automatic requires/provides scanner.
%global __requires_exclude ^/usr/bin/python[23]$
# Disable the shebangs checks on scripts that currently dont'
# define a Python version
%global __brp_mangle_shebangs_exclude_from multicast_guest.py|netperf_agent.py|ksm_overcommit_guest.py|check_cpu_flag.py|virtio_console_guest.py|boottool.py|VirtIoChannel_guest_send_receive.py|serial_host_send_receive.py
Summary: Avocado Virt Test Plugin
Name: avocado-plugins-vt
Version: 70.0
Release: 0%{?gitrel}%{?dist}
License: GPLv2
Group: Development/Tools
URL: http://avocado-framework.readthedocs.org/
%if 0%{?rel_build}
Source0: https://github.com/avocado-framework/%{srcname}/archive/%{version}.tar.gz#/%{gittar}
%else
Source0: https://github.com/avocado-framework/%{srcname}/archive/%{commit}.tar.gz#/%{gittar}
# old way of retrieving snapshot sources
#Source0: https://github.com/avocado-framework/%{srcname}/archive/%{commit}/%{srcname}-%{version}-%{shortcommit}.tar.gz
%endif
BuildRequires: python2-devel, python2-setuptools
%if %{with_python3}
BuildRequires: python3-devel, python3-setuptools
%endif
BuildArch: noarch
Requires: autotest-framework, xz, tcpdump, iproute, iputils, gcc, glibc-headers, nc, git
Requires: attr
%if 0%{?rhel}
Requires: policycoreutils-python
%else
Requires: policycoreutils-python-utils
%endif
Requires: python2-imaging
%if %{with_python3}
Requires: python3-imaging
%endif
%if 0%{?el6}
Requires: gstreamer-python, gstreamer-plugins-good
%else
Requires: pygobject2, gstreamer1-plugins-good
%endif
%description
Avocado Virt Test is a plugin that lets you execute virt-tests
with all the avocado convenience features, such as HTML report,
Xunit output, among others.
%package -n python2-%{name}
Summary: %{summary}
Requires: python2, python2-devel, python2-avocado >= 51.0, python2-aexpect
Requires: python2-simplejson
%if 0%{?rhel} == 7
Requires: python-netaddr, python-netifaces
%else
Requires: python2-netaddr, python2-netifaces
%endif
# For compatibility reasons, let's mark this package as one that
# provides the same functionality as the old package name and also
# one that obsoletes the old package name, so that the new name is
# favored. These could (and should) be removed in the future.
# These changes are backed by the following guidelines:
# https://fedoraproject.org/wiki/Upgrade_paths_%E2%80%94_renaming_or_splitting_packages
Obsoletes: %{name} <= 67.0-1
Provides: %{name} = %{version}-%{release}
%{?python_provide:%python_provide python2-%{srcname}}
%description -n python2-%{name}
Avocado Virt Test is a plugin that lets you execute virt-tests
with all the avocado convenience features, such as HTML report,
Xunit output, among others.
%if %{with_python3}
%package -n python3-%{name}
Summary: %{summary}
Requires: python3, python3-devel, python3-avocado >= 51.0, python3-aexpect
Requires: python3-netaddr, python3-netifaces, python3-simplejson
%{?python_provide:%python_provide python3-%{srcname}}
%description -n python3-%{name}
Avocado Virt Test is a plugin that lets you execute virt-tests
with all the avocado convenience features, such as HTML report,
Xunit output, among others.
%endif
%prep
%if 0%{?rel_build}
%setup -q -n %{srcname}-%{version}
%else
%setup -q -n %{srcname}-%{commit}
%endif
%build
%{__python2} setup.py build
%if %{with_python3}
%{__python3} setup.py build
%endif
%install
%{__python2} setup.py install --root %{buildroot} --skip-build
%if %{with_python3}
%{__python3} setup.py install --root %{buildroot} --skip-build
%endif
%files -n python2-%{name}
%defattr(-,root,root,-)
%dir /etc/avocado
%dir /etc/avocado/conf.d
%config(noreplace)/etc/avocado/conf.d/vt.conf
%doc README.rst LICENSE
%{python2_sitelib}/avocado_vt*
%{python2_sitelib}/avocado_plugins_vt*
%{python2_sitelib}/virttest*
%{_datadir}/avocado-plugins-vt/backends/*
%{_datadir}/avocado-plugins-vt/shared/*
%{_datadir}/avocado-plugins-vt/test-providers.d/*
%if %{with_python3}
%files -n python3-%{name}
%defattr(-,root,root,-)
%dir /etc/avocado
%dir /etc/avocado/conf.d
%config(noreplace)/etc/avocado/conf.d/vt.conf
%doc README.rst LICENSE
%{python3_sitelib}/avocado_vt*
%{python3_sitelib}/avocado_plugins_vt*
%{python3_sitelib}/virttest*
%{_datadir}/avocado-plugins-vt/backends/*
%{_datadir}/avocado-plugins-vt/shared/*
%{_datadir}/avocado-plugins-vt/test-providers.d/*
%endif
%changelog
* Wed Jun 26 2019 Cleber Rosa <[email protected]> - 70.0-0
- New release
* Tue Jun 25 2019 Cleber Rosa <[email protected]> - 69.0-1
- Exclude scripts from shebangs checks
* Tue Feb 26 2019 Cleber Rosa <[email protected]> - 69.0-0
- New release
* Sat Feb 16 2019 Cleber Rosa <[email protected]> - 68.0-1
- Use python2 requires on EL7
* Wed Feb 13 2019 Cleber Rosa <[email protected]> - 68.0-0
- New release
* Sat Jan 5 2019 Plamen Dimitrov <[email protected]> - 67.0-1
- Add support for release builds in addition to snapshot builds
- Add python 3 package and thus support for python 3 RPMs
* Mon Dec 17 2018 Cleber Rosa <[email protected]> - 67.0-0
- New release
* Tue Nov 20 2018 Cleber Rosa <[email protected]> - 66.0-0
- New release
* Mon Nov 19 2018 Cleber Rosa <[email protected]> - 65.0-1
- Updated macros to Python 2
* Tue Oct 2 2018 Cleber Rosa <[email protected]> - 65.0-0
- New release
* Mon Aug 27 2018 Cleber Rosa <[email protected]> - 64.0-0
- New release
* Tue Jul 17 2018 Cleber Rosa <[email protected]> - 63.0-0
- New release
* Tue Jun 12 2018 Cleber Rosa <[email protected]> - 62.0-0
- New release
* Thu Apr 26 2018 Cleber Rosa <[email protected]> - 61.0-0
- New release
* Wed Mar 28 2018 Cleber Rosa <[email protected]> - 60.0-0
- New release
* Wed Feb 28 2018 Cleber Rosa <[email protected]> - 59.0-0
- New upstream release
* Tue Jan 23 2018 Cleber Rosa <[email protected]> - 58.0-0
- New upstream release
* Tue Dec 19 2017 Cleber Rosa <[email protected]> - 57.0-0
- New upstream release
* Tue Nov 21 2017 Cleber Rosa <[email protected]> - 56.0-0
- New upstream release
* Tue Oct 17 2017 Cleber Rosa <[email protected]> - 55.0-0
- New upstream release
* Wed Sep 20 2017 Cleber Rosa <[email protected]> - 54.0-0
- New upstream release
* Tue Aug 15 2017 Cleber Rosa <[email protected]> - 53.0-0
- New upstream release
* Mon Jul 10 2017 Cleber Rosa <[email protected]> - 51.0-2
- Satisfy avocado requirement with EPEL package
* Wed Jun 14 2017 Cleber Rosa <[email protected]> - 51.0-1
- Replace aexpect dependency with python-aexpect
* Mon Jun 12 2017 Cleber Rosa <[email protected]> - 51.0-0
- New upstream release
* Wed May 17 2017 Cleber Rosa <[email protected]> - 50.1-0
- New minor upstream release with VT JobLock fix
* Tue May 16 2017 Cleber Rosa <[email protected]> - 50.0-0
- New upstream release
* Tue Apr 25 2017 Cleber Rosa <[email protected]> - 49.0-0
- New upstream release
- Used latest avocado LTS as mininum required version
* Mon Apr 3 2017 Cleber Rosa <[email protected]> - 48.0-0
- New upstream release
* Sat Mar 18 2017 Cleber Rosa <[email protected]> - 47.0-1
- Replaced 7z dependency for xz
* Tue Mar 7 2017 Cleber Rosa <[email protected]> - 47.0-0
- New upstream release
* Thu Mar 2 2017 Cleber Rosa <[email protected]> - 46.0-2
- Allow Avocado LTS version (or later) with avocado-plugins-vt
- Fixed URL of Source0 (and modulename variable)
- Fixed date of previous release
* Wed Feb 15 2017 Radek Duda <[email protected]> - 46.0-1
- Added python-netifaces to requires
* Tue Feb 14 2017 Cleber Rosa <[email protected]> - 46.0-0
- New upstream release
* Thu Feb 9 2017 Lukas Doktor <[email protected]> - 45.0-1
- Added python-netaddr to requires
* Tue Jan 17 2017 Cleber Rosa <[email protected]> - 45.0-0
- New upstream release
* Wed Dec 7 2016 Cleber Rosa <[email protected]> - 44.0-0
- New upstream version
* Tue Nov 8 2016 Cleber Rosa <[email protected]> - 43.0-0
- Update to upstream version 43.0
* Mon Oct 10 2016 Cleber Rosa <[email protected]> - 42.0-0
- Update to upstream version 42.0
* Mon Sep 12 2016 Cleber Rosa <[email protected]> - 41.0-0
- Update do upstream version 41.0
* Tue Aug 16 2016 Cleber Rosa <[email protected]> - 40.0-0
- Update to upstream version 40.0
* Tue Jul 26 2016 Cleber Rosa <[email protected]> - 39.0-0
- Update to upstream version 39.0
* Mon Jul 4 2016 Cleber Rosa <[email protected]> - 38.0-0
- Update to upstream version 38.0
* Tue Jun 14 2016 Cleber Rosa <[email protected]> - 37.0-0
- Update to upstream release 37.0
* Mon May 2 2016 Cleber Rosa <[email protected]> - 35.0-1
- Added git to requires
* Wed Apr 27 2016 Cleber Rosa <[email protected]> - 35.0-0
- Update to upstream release 35.0
* Mon Mar 21 2016 Cleber Rosa <[email protected]> - 0.34.0-0
- Update to upstream version 0.34.0
* Tue Feb 23 2016 Cleber Rosa <[email protected]> - 0.33.0-1
- Require the avocado package of the exact same version
* Wed Feb 17 2016 Cleber Rosa <[email protected]> - 0.33.0-0
- Update to upstream version 0.33.0
* Wed Jan 20 2016 Cleber Rosa <[email protected]> - 0.32.0-0
- Update to upstream version 0.32.0
* Wed Dec 23 2015 Cleber Rosa <[email protected]> - 0.31.0-0
- Update to upstream version 0.31.0
* Thu Nov 5 2015 Cleber Rosa <[email protected]> - 0.30.0-0
- Update to upstream version 0.30.0
* Wed Oct 7 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.29.0-1
- Update to upstream version 0.29.0
* Mon Sep 21 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.28.1-1
- Update to upstream version 0.28.1
* Wed Sep 16 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.28.0-1
- Update to upstream version 0.28.0
* Wed Sep 2 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.27.0-4
- Add aexpect dependency
* Tue Aug 4 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.27.0-3
- Add video dependencies
* Tue Aug 4 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.27.0-2
- Updated the spec file to require 'nc' instead of 'nmap-ncat'
* Mon Aug 3 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.27.0-1
- Update to upstream version 0.27.0
* Thu Jul 30 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.26.0-2
- Merge with virt-test/updated package dependencies
* Mon Jul 6 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.26.0-1
- Update to upstream version 0.26.0
* Tue Jun 16 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.25.0-1
- Update to upstream version 0.25.0
* Wed Jun 3 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.24.0-2
- First version of the compatibility layer plugin