python-avocado.spec 14.7 KB
Newer Older
1
%global srcname avocado
2
%if ! 0%{?commit:1}
C
Cleber Rosa 已提交
3
 %define commit f12f277434096dc628f5b0b731d7c37e0789427d
4 5 6
%endif
%global shortcommit %(c=%{commit}; echo ${c:0:7})

7
Summary: Framework with tools and libraries for Automated Testing
8
Name: python-%{srcname}
C
Cleber Rosa 已提交
9
Version: 47.0
10
Release: 2%{?dist}
11 12
License: GPLv2
Group: Development/Tools
13
URL: http://avocado-framework.github.io/
14
Source0: https://github.com/avocado-framework/%{srcname}/archive/%{commit}/%{srcname}-%{version}-%{shortcommit}.tar.gz
15
BuildArch: noarch
G
Gerard Braad 已提交
16
Requires: python, python-requests, python-setuptools, pyliblzma, gdb, gdb-gdbserver, python-stevedore, python-yaml, procps-ng
17 18 19 20 21 22
BuildRequires: python2-devel, python-setuptools, python-docutils, python-mock, python-psutil, python-sphinx, python-requests, pystache, yum, python-stevedore, python-lxml, perl-Test-Harness, fabric, python-flexmock, libvirt-python, python-yaml, procps-ng
%if 0%{?fedora}
BuildRequires: python-aexpect
%else
BuildRequires: aexpect
%endif
23

24 25 26 27 28 29 30 31 32
# 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: %{srcname} < 47.0-1
Provides: %{srcname} = %{version}-%{release}

33 34 35 36 37 38 39 40 41
# For some strange reason, fabric on Fedora 24 does not require the
# python-crypto package, but the fabric code always imports it.  Newer
# fabric versions, such from Fedora 25 do conditional imports (try:
# from Crypto import Random; except: Random = None) and thus do not
# need this requirement.
%if 0%{?fedora} == 24
BuildRequires: python-crypto
%endif

42 43 44 45 46 47 48
%if 0%{?fedora} >= 25
BuildRequires: kmod
%endif
%if 0%{?rhel} >= 7
BuildRequires: kmod
%endif

49
%description
50 51
Avocado is a set of tools and libraries (what people call
these days a framework) to perform automated testing.
52 53

%prep
54
%setup -q -n %{srcname}-%{commit}
55 56 57 58
# package plugins-runner-vm requires libvirt-python, but the RPM
# version of libvirt-python does not publish the egg info and this
# causes that dep to be attempted to be installed by pip
sed -e "s/'libvirt-python'//" -i optional_plugins/runner_vm/setup.py
59 60 61

%build
%{__python} setup.py build
62
pushd optional_plugins/html
63
%{__python} setup.py build
64 65
popd
pushd optional_plugins/runner_remote
66
%{__python} setup.py build
67 68
popd
pushd optional_plugins/runner_vm
69
%{__python} setup.py build
70 71
popd
pushd optional_plugins/runner_docker
72
%{__python} setup.py build
73
popd
74
%{__make} man
75 76 77

%install
%{__python} setup.py install --root %{buildroot} --skip-build
78
pushd optional_plugins/html
79
%{__python} setup.py install --root %{buildroot} --skip-build
80 81
popd
pushd optional_plugins/runner_remote
82
%{__python} setup.py install --root %{buildroot} --skip-build
83 84
popd
pushd optional_plugins/runner_vm
85
%{__python} setup.py install --root %{buildroot} --skip-build
86 87
popd
pushd optional_plugins/runner_docker
88
%{__python} setup.py install --root %{buildroot} --skip-build
89
popd
C
Cleber Rosa 已提交
90 91
%{__mkdir} -p %{buildroot}%{_mandir}/man1
%{__install} -m 0644 man/avocado.1 %{buildroot}%{_mandir}/man1/avocado.1
92
%{__install} -m 0644 man/avocado-rest-client.1 %{buildroot}%{_mandir}/man1/avocado-rest-client.1
93

94
%check
95
%{__python} setup.py develop --user
96
pushd optional_plugins/html
97
%{__python} setup.py develop --user
98 99
popd
pushd optional_plugins/runner_remote
100
%{__python} setup.py develop --user
101 102
popd
pushd optional_plugins/runner_vm
103
%{__python} setup.py develop --user
104 105
popd
pushd optional_plugins/runner_docker
106
%{__python} setup.py develop --user
107
popd
108
selftests/run
109

110 111 112 113
%files
%defattr(-,root,root,-)
%doc README.rst LICENSE
%dir /etc/avocado
114
%dir /etc/avocado/conf.d
115
%dir /etc/avocado/sysinfo
116 117
%dir /etc/avocado/scripts/job/pre.d
%dir /etc/avocado/scripts/job/post.d
118
%config(noreplace)/etc/avocado/avocado.conf
119
%config(noreplace)/etc/avocado/conf.d/README
120
%config(noreplace)/etc/avocado/conf.d/gdb.conf
121 122 123
%config(noreplace)/etc/avocado/sysinfo/commands
%config(noreplace)/etc/avocado/sysinfo/files
%config(noreplace)/etc/avocado/sysinfo/profilers
124 125
%config(noreplace)/etc/avocado/scripts/job/pre.d/README
%config(noreplace)/etc/avocado/scripts/job/post.d/README
126
%{python_sitelib}/avocado*
127
%{_bindir}/avocado
128
%{_bindir}/avocado-rest-client
C
Cleber Rosa 已提交
129
%{_mandir}/man1/avocado.1.gz
130
%{_mandir}/man1/avocado-rest-client.1.gz
131 132
%{_docdir}/avocado/avocado.rst
%{_docdir}/avocado/avocado-rest-client.rst
133
%exclude %{python_sitelib}/avocado_result_html*
134 135 136
%exclude %{python_sitelib}/avocado_runner_remote*
%exclude %{python_sitelib}/avocado_runner_vm*
%exclude %{python_sitelib}/avocado_runner_docker*
137 138 139 140 141
%{_libexecdir}/avocado/avocado-bash-utils
%{_libexecdir}/avocado/avocado_debug
%{_libexecdir}/avocado/avocado_error
%{_libexecdir}/avocado/avocado_info
%{_libexecdir}/avocado/avocado_warn
142

143 144
%package plugins-output-html
Summary: Avocado HTML report plugin
145 146 147
Requires: %{name} == %{version}, pystache
Obsoletes: %{srcname}-plugins-output-html < 47.0-1
Provides: %{srcname}-plugins-output-html = %{version}-%{release}
148 149 150 151 152 153 154

%description plugins-output-html
Adds to avocado the ability to generate an HTML report at every job results
directory. It also gives the user the ability to write a report on an
arbitrary filesystem location.

%files plugins-output-html
155
%{python_sitelib}/avocado_result_html*
156

157 158
%package plugins-runner-remote
Summary: Avocado Runner for Remote Execution
159
Requires: %{name} == %{version}, fabric
160 161 162 163
%if 0%{?fedora} == 24
Requires: python-crypto
BuildRequires: python-crypto
%endif
164 165
Obsoletes: %{srcname}-plugins-runner-remote < 47.0-1
Provides: %{srcname}-plugins-runner-remote = %{version}-%{release}
166 167 168 169 170 171 172 173 174 175

%description plugins-runner-remote
Allows Avocado to run jobs on a remote machine, by means of an SSH
connection.  Avocado must be previously installed on the remote machine.

%files plugins-runner-remote
%{python_sitelib}/avocado_runner_remote*

%package plugins-runner-vm
Summary: Avocado Runner for libvirt VM Execution
176
Requires: %{name} == %{version}, %{name}-plugins-runner-remote == %{version}
177
Requires: libvirt-python
178 179
Obsoletes: %{srcname}-plugins-runner-vm < 47.0-1
Provides: %{srcname}-plugins-runner-vm = %{version}-%{release}
180 181 182 183 184 185 186 187 188 189 190

%description plugins-runner-vm
Allows Avocado to run jobs on a libvirt based VM, by means of
interaction with a libvirt daemon and an SSH connection to the VM
itself.  Avocado must be previously installed on the VM.

%files plugins-runner-vm
%{python_sitelib}/avocado_runner_vm*

%package plugins-runner-docker
Summary: Avocado Runner for Execution on Docker Containers
191
Requires: %{name} == %{version}, %{name}-plugins-runner-remote == %{version}
192 193 194 195 196
%if 0%{?fedora}
Requires: python-aexpect
%else
Requires: aexpect
%endif
197 198
Obsoletes: %{srcname}-plugins-runner-docker < 47.0-1
Provides: %{srcname}-plugins-runner-docker = %{version}-%{release}
199 200 201 202 203 204 205 206 207 208

%description plugins-runner-docker
Allows Avocado to run jobs on a Docker container by interacting with a
Docker daemon and attaching to the container itself.  Avocado must
be previously installed on the container.

%files plugins-runner-docker
%{python_sitelib}/avocado_runner_docker*


209
%package examples
210
Summary: Avocado Test Framework Example Tests
211
Requires: %{name} == %{version}
212

213 214 215 216
%description examples
The set of example tests present in the upstream tree of the Avocado framework.
Some of them are used as functional tests of the framework, others serve as
examples of how to write tests on your own.
217

218
%files examples
219
%{_datadir}/avocado/tests
220
%{_datadir}/avocado/wrappers
221 222

%changelog
223 224 225
* Fri Mar 31 2017 Cleber Rosa <cleber@redhat.com> - 47.0-2
- Switch directory change statements to match downstream

226 227 228
* Wed Mar  8 2017 Cleber Rosa <cleber@redhat.com> - 47.0-1
- Rename package to python-avocado and subpackges accordingly

C
Cleber Rosa 已提交
229 230 231
* Mon Mar  6 2017 Cleber Rosa <cleber@redhat.com> - 47.0-0
- New upstream release

232 233 234
* Wed Feb 15 2017 Cleber Rosa <cleber@redhat.com> - 46.0-2
- Removed python-crypto dependency from base avocado package

235 236 237 238 239
* Wed Feb 15 2017 Cleber Rosa <cleber@redhat.com> - 46.0-1
- Fixed packager email
- Added explicit requirement

* Tue Feb 14 2017 Cleber Rosa <cleber@redhat.com> - 46.0-0
C
Cleber Rosa 已提交
240 241
- New upstream release

242 243 244
* Sun Feb  5 2017 Cleber Rosa <cleber@redhat.com> - 45.0-2
- Split package into plugins-runner-{remote,vm,docker} packages

245 246 247
* Fri Feb  3 2017 Cleber Rosa <cleber@redhat.com> - 45.0-1
- Removed support for EL6 requirements

C
Cleber Rosa 已提交
248 249 250
* Tue Jan 17 2017 Cleber Rosa <cleber@redhat.com> - 45.0-0
- New upstream release

C
Cleber Rosa 已提交
251 252 253
* Wed Dec  7 2016 Cleber Rosa <cleber@redhat.com> - 44.0-0
- New upstream release

C
Cleber Rosa 已提交
254 255 256
* Tue Nov  8 2016 Cleber Rosa <cleber@redhat.com> - 43.0-0
- New upstream release

C
Cleber Rosa 已提交
257 258 259
* Mon Oct 10 2016 Cleber Rosa <cleber@redhat.com> - 42.0-0
- New upstream release

C
Cleber Rosa 已提交
260 261 262 263
* Fri Sep 16 2016 Cleber Rosa <cleber@redhat.com> - 41.0-1
- Consolidated build requires common to all targets
- Enabled check on EL6

C
Cleber Rosa 已提交
264 265 266
* Mon Sep 12 2016 Cleber Rosa <cleber@redhat.com> - 41.0-0
- New upstream release

267 268 269
* Tue Sep  6 2016 Cleber Rosa <cleber@redhat.com> - 40.0-1
- Adapt build of now separate html plugin

C
Cleber Rosa 已提交
270 271 272
* Tue Aug 16 2016 Cleber Rosa <cleber@redhat.com> - 40.0-0
- New upstream release

273 274 275
* Tue Aug  2 2016 Cleber Rosa <cleber@redhat.com> - 39.0-1
- Added expect requirement (for Docker plugin)

C
Cleber Rosa 已提交
276 277 278
* Tue Jul 26 2016 Cleber Rosa <cleber@redhat.com> - 39.0-0
- New upstream release

C
Cleber Rosa 已提交
279 280 281
* Mon Jul  4 2016 Cleber Rosa <cleber@redhat.com> - 38.0-0
- New upstream release

C
Cleber Rosa 已提交
282 283
* Tue Jun 14 2016 Cleber Rosa <cleber@redhat.com> - 37.0-0
- New upstream release
C
Cleber Rosa 已提交
284

285 286 287
* Thu May 05 2016 Amador Pahim <apahim@redhat.com> - 35.0-1
- Removed simpletests directory

C
Cleber Rosa 已提交
288 289 290
* Wed Apr 27 2016 Cleber Rosa <cleber@redhat.com> - 35.0-0
- New upstream release 35.0 (new versioning scheme)

291 292 293
* Thu Apr 14 2016 Cleber Rosa <cleber@redhat.com> - 0.34.0-1
- Added job pre/post scripts directories

294
* Mon Mar 21 2016 Cleber Rosa <cleber@redhat.com> - 0.34.0-0
C
Cleber Rosa 已提交
295 296
- New upstream release 0.34.0

297 298 299
* Wed Feb 17 2016 Cleber Rosa <cleber@redhat.com> - 0.33.0-1
- Updated requirement: procps for EL6, procps-ng for other distros

C
Cleber Rosa 已提交
300 301 302
* Tue Feb 16 2016 Cleber Rosa <cleber@redhat.com> - 0.33.0-0
- New upstream release 0.33.0

C
Cleber Rosa 已提交
303 304 305
* Wed Jan 20 2016 Cleber Rosa <cleber@redhat.com> - 0.32.0-0
- New upstream release 0.32.0

C
Cleber Rosa 已提交
306
* Wed Dec 23 2015 Cleber Rosa <cleber@redhat.com> - 0.31.0-0
C
Cleber Rosa 已提交
307
- New upstream release 0.31.0
C
Cleber Rosa 已提交
308

309 310 311
* Tue Nov 17 2015 Cleber Rosa <cleber@redhat.com> - 0.30.0-1
- Add python-stevedore to Requires

C
Cleber Rosa 已提交
312 313 314
* Thu Nov  5 2015 Cleber Rosa <cleber@redhat.com> - 0.30.0-0
- New upstream release 0.30.0

315 316 317
* Wed Oct 7 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.29.0-2
- Add python-setuptools to BuildRequires

L
Lucas Meneghel Rodrigues 已提交
318 319 320
* Wed Oct 7 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.29.0-1
- New upstream release 0.29.0

321 322 323
* Wed Sep 16 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.28.0-2
- Add pystache, aexpect, psutil, sphinx and yum/dnf dependencies for functional/unittests

324 325 326
* Wed Sep 16 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.28.0-1
- New upstream release 0.28.0

327 328 329
* Tue Aug 4 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.27.0-3
- Added 'gdb' and 'gdb-gdbserver' as requirements

330 331 332
* Mon Aug 3 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.27.0-2
- Added 'python-mock' as a build requirement

333 334 335
* Mon Aug 3 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.27.0-1
- New upstream release 0.27.0

336 337 338
* Mon Jul 6 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.26.0-1
- New upstream release 0.26.0

339 340 341
* Tue Jun 16 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.25.0-2
- Fix spec bug with BuildRequires on EPEL6

342 343 344
* Tue Jun 16 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.25.0-1
- New upstream release 0.25.0

345 346 347
* Fri Jun  5 2015 Cleber Rosa <cleber@redhat.com> - 0.24.0-3
- Removed rest client API examples

348 349 350
* Mon May 25 2015 Cleber Rosa <cleber@redhat.com> - 0.24.0-2
- Added previously missing gdb.conf

351 352 353
* Mon May 18 2015 Ruda Moura <rmoura@redhat.com> - 0.24.0-1
- Update to upstream version 0.24.0

354 355 356
* Tue Apr 21 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.23.0-1
- New upstream release

357 358 359
* Mon Apr 13 2015 Cleber Rosa <cleber@redhat.com> - 0.21.0-6
- Added sysinfo configuration files

360 361
* Sat Mar 28 2015 Cleber Rosa <cleber@redhat.com> - 0.21.0-5
- Change the way man pages are built, now using Makefile targets
362
- Reorganized runtime and build requirements
363
- Add a check section that runs unittests on Fedora
364

365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
* Thu Mar 19 2015 Lucas Meneghel Rodrigues - 0.21.0-4
- COPR build fixes

* Mon Mar 16 2015 Lucas Meneghel Rodrigues - 0.21.0-3
- COPR build fixes

* Mon Mar 16 2015 Lucas Meneghel Rodrigues - 0.21.0-2
- COPR build fixes

* Mon Mar 16 2015 Lucas Meneghel Rodrigues - 0.21.0-1
- COPR build fixes

* Mon Mar 16 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.21.0-0
- Update to upstream version 0.21.0

380 381 382
* Mon Feb 23 2015 Cleber Rosa <cleber@redhat.com> - 0.20.1-2
- Added avocado-rest-client modules, script, man page and API examples

383 384 385
* Fri Feb 6 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.20.1-1
- Update to upstream version 0.20.1

386
* Tue Feb 3 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.20.0-1
387 388
- Update to upstream version 0.20.0

389 390 391
* Mon Dec 15 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.17.0-1
- Update to upstream version 0.17.0

392 393 394
* Wed Dec  3 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.14.0-3
- Change config file name from settings.ini to avocado.conf

395 396 397
* Wed Dec  3 2014 Ruda Moura <rmoura@redhat.com> - 0.14.0-2
- Include all wrappers scripts to examples subpackage.

398 399 400
* Mon Oct 13 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.14.0-1
- New upstream release

401
* Thu Sep 11 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.12.0-2
402 403
- Rename -tests package to -examples

404 405 406
* Tue Sep  9 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.12.0-1
- New upstream release

407 408 409
* Tue Sep  2 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.11.1-2
- Added fabric dependency

410 411 412 413
* Wed Aug 20 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.11.1-1
- Bumped version to avocado 0.11.1
- Added python-yaml build dependency

414 415 416 417
* Wed Aug 20 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.11.0-1
- Bumped version to avocado 0.11.0
- Added python-yaml new dependency

C
Cleber Rosa 已提交
418 419 420
* Wed Aug 20 2014 Cleber Rosa <cleber@redhat.com> - 0.10.1-2
- Added initial avocado man page

421 422 423
* Tue Aug 12 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.10.1-1
- Bugfix release 0.10.1

424 425 426
* Thu Aug  7 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.10.0-1
- Bumped version to Avocado 0.10.0

427 428 429
* Wed Jul 30 2014 Cleber Rosa <cleber@redhat.com> - 0.8.0-2
- Split tests into avocado-tests package

430 431 432
* Fri Jul 18 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.8.0-1
- Bumped version to Avocado 0.8.0

433 434 435
* Fri Jun 13 2014 Ruda Moura <rmoura@redhat.com> - 0.6.0-1
- Bumped version to Avocado 0.6.0

436 437 438
* Thu May  8 2014 Ruda Moura <rmoura@redhat.com> - 0.4.0-1
- Bumped version to Avocado 0.4.0

439 440 441
* Wed Apr 30 2014 Cleber Rosa <cleber@redhat.com> - 0.0.1-2
- Added new requirements reflecting new upstream deps

442 443
* Wed Apr  2 2014 Ruda Moura <rmoura@redhat.com> - 0.0.1-1
- Created initial spec file