python-avocado.spec 19.6 KB
Newer Older
1
%global srcname avocado
2 3 4

# Conditional for release vs. snapshot builds. Set to 1 for release build.
%if ! 0%{?rel_build:1}
5
    %global rel_build 1
6 7 8 9
%endif

# Settings used for build from snapshots.
%if 0%{?rel_build}
10
    %global gittar		%{srcname}-%{version}.tar.gz
11
%else
12
    %if ! 0%{?commit:1}
C
Cleber Rosa 已提交
13
        %global commit		b066ee5ae204e4bd2eefd59151c8fb2a453aa47d
14 15 16 17 18 19 20
    %endif
    %if ! 0%{?commit_date:1}
        %global commit_date	20170518
    %endif
    %global shortcommit	%(c=%{commit};echo ${c:0:7})
    %global gitrel		.%{commit_date}git%{shortcommit}
    %global gittar		%{srcname}-%{shortcommit}.tar.gz
21 22
%endif

23 24 25
# Selftests are provided but may need to be skipped because many of
# the functional tests are time and resource sensitive and can
# cause race conditions and random build failures. They are
26 27 28
# enabled by default.
%global with_tests 1

29
Summary: Framework with tools and libraries for Automated Testing
30
Name: python-%{srcname}
C
Cleber Rosa 已提交
31
Version: 52.0
C
Cleber Rosa 已提交
32
Release: 0%{?gitrel}%{?dist}
33 34
License: GPLv2
Group: Development/Tools
35
URL: http://avocado-framework.github.io/
36 37 38 39 40
%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}
%endif
41
BuildArch: noarch
42 43 44 45 46 47 48 49 50
BuildRequires: fabric
BuildRequires: procps-ng
BuildRequires: pystache
BuildRequires: python-docutils
BuildRequires: python-flexmock
BuildRequires: python-lxml
BuildRequires: python-mock
BuildRequires: python-psutil
BuildRequires: python-requests
51
BuildRequires: python-resultsdb_api
52 53 54 55 56
BuildRequires: python-setuptools
BuildRequires: python-sphinx
BuildRequires: python-stevedore
BuildRequires: python2-devel
BuildRequires: yum
57 58 59 60 61 62

%if %{with_tests}
BuildRequires: libvirt-python
BuildRequires: perl-Test-Harness
%endif

63 64 65 66 67 68 69 70
Requires: gdb
Requires: gdb-gdbserver
Requires: procps-ng
Requires: pyliblzma
Requires: python
Requires: python-requests
Requires: python-setuptools
Requires: python-stevedore
71 72 73 74 75
%if 0%{?fedora}
BuildRequires: python-aexpect
%else
BuildRequires: aexpect
%endif
76

77 78 79 80 81 82 83 84 85
# 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}

86 87 88 89 90 91 92 93 94
# 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

95 96 97 98 99 100 101
%if 0%{?fedora} >= 25
BuildRequires: kmod
%endif
%if 0%{?rhel} >= 7
BuildRequires: kmod
%endif

102
%description
103 104
Avocado is a set of tools and libraries (what people call
these days a framework) to perform automated testing.
105 106

%prep
107 108 109
%if 0%{?rel_build}
%setup -q -n %{srcname}-%{version}
%else
110
%setup -q -n %{srcname}-%{commit}
111
%endif
112 113 114 115
# 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
116 117 118

%build
%{__python} setup.py build
119
pushd optional_plugins/html
120
%{__python} setup.py build
121 122
popd
pushd optional_plugins/runner_remote
123
%{__python} setup.py build
124 125
popd
pushd optional_plugins/runner_vm
126
%{__python} setup.py build
127 128
popd
pushd optional_plugins/runner_docker
129
%{__python} setup.py build
130
popd
131 132 133
pushd optional_plugins/resultsdb
%{__python} setup.py build
popd
134 135 136
pushd optional_plugins/varianter_yaml_to_mux
%{__python} setup.py build
popd
137
%{__make} man
138 139 140

%install
%{__python} setup.py install --root %{buildroot} --skip-build
141
pushd optional_plugins/html
142
%{__python} setup.py install --root %{buildroot} --skip-build
143 144
popd
pushd optional_plugins/runner_remote
145
%{__python} setup.py install --root %{buildroot} --skip-build
146 147
popd
pushd optional_plugins/runner_vm
148
%{__python} setup.py install --root %{buildroot} --skip-build
149 150
popd
pushd optional_plugins/runner_docker
151
%{__python} setup.py install --root %{buildroot} --skip-build
152
popd
153 154 155
pushd optional_plugins/resultsdb
%{__python} setup.py install --root %{buildroot} --skip-build
popd
156 157 158
pushd optional_plugins/varianter_yaml_to_mux
%{__python} setup.py install --root %{buildroot} --skip-build
popd
C
Cleber Rosa 已提交
159 160
%{__mkdir} -p %{buildroot}%{_mandir}/man1
%{__install} -m 0644 man/avocado.1 %{buildroot}%{_mandir}/man1/avocado.1
161
%{__install} -m 0644 man/avocado-rest-client.1 %{buildroot}%{_mandir}/man1/avocado-rest-client.1
162
%{__install} -d -m 0755 %{buildroot}%{_sharedstatedir}/avocado/data
163

164
%check
165
%if %{with_tests}
166
%{__python} setup.py develop --user
167
pushd optional_plugins/html
168
%{__python} setup.py develop --user
169 170
popd
pushd optional_plugins/runner_remote
171
%{__python} setup.py develop --user
172 173
popd
pushd optional_plugins/runner_vm
174
%{__python} setup.py develop --user
175 176
popd
pushd optional_plugins/runner_docker
177
%{__python} setup.py develop --user
178
popd
179 180 181
pushd optional_plugins/resultsdb
%{__python} setup.py develop --user
popd
182 183 184
pushd optional_plugins/varianter_yaml_to_mux
%{__python} setup.py develop --user
popd
185 186 187 188
# Package build environments have the least amount of resources
# we have observed so far.  Let's avoid tests that require too
# much resources or are time sensitive
AVOCADO_CHECK_LEVEL=0 selftests/run
189
%endif
190

191 192 193 194
%files
%defattr(-,root,root,-)
%doc README.rst LICENSE
%dir /etc/avocado
195
%dir /etc/avocado/conf.d
196
%dir /etc/avocado/sysinfo
197 198
%dir /etc/avocado/scripts/job/pre.d
%dir /etc/avocado/scripts/job/post.d
199
%dir %{_sharedstatedir}/avocado
200
%config(noreplace)/etc/avocado/avocado.conf
201
%config(noreplace)/etc/avocado/conf.d/README
202
%config(noreplace)/etc/avocado/conf.d/gdb.conf
203 204 205
%config(noreplace)/etc/avocado/sysinfo/commands
%config(noreplace)/etc/avocado/sysinfo/files
%config(noreplace)/etc/avocado/sysinfo/profilers
206 207
%config(noreplace)/etc/avocado/scripts/job/pre.d/README
%config(noreplace)/etc/avocado/scripts/job/post.d/README
208
%{python_sitelib}/avocado*
209
%{_bindir}/avocado
210
%{_bindir}/avocado-rest-client
C
Cleber Rosa 已提交
211
%{_mandir}/man1/avocado.1.gz
212
%{_mandir}/man1/avocado-rest-client.1.gz
213 214
%{_docdir}/avocado/avocado.rst
%{_docdir}/avocado/avocado-rest-client.rst
215 216 217 218
%exclude %{python_sitelib}/avocado_result_html*
%exclude %{python_sitelib}/avocado_runner_remote*
%exclude %{python_sitelib}/avocado_runner_vm*
%exclude %{python_sitelib}/avocado_runner_docker*
219
%exclude %{python_sitelib}/avocado_resultsdb*
220
%exclude %{python_sitelib}/avocado_varianter_yaml_to_mux*
221 222 223 224
%exclude %{python_sitelib}/avocado_framework_plugin_result_html*
%exclude %{python_sitelib}/avocado_framework_plugin_runner_remote*
%exclude %{python_sitelib}/avocado_framework_plugin_runner_vm*
%exclude %{python_sitelib}/avocado_framework_plugin_runner_docker*
225
%exclude %{python_sitelib}/avocado_framework_plugin_resultsdb*
226
%exclude %{python_sitelib}/avocado_framework_plugin_varianter_yaml_to_mux*
227 228 229 230 231
%{_libexecdir}/avocado/avocado-bash-utils
%{_libexecdir}/avocado/avocado_debug
%{_libexecdir}/avocado/avocado_error
%{_libexecdir}/avocado/avocado_info
%{_libexecdir}/avocado/avocado_warn
232

233 234
%package plugins-output-html
Summary: Avocado HTML report plugin
235 236 237
Requires: %{name} == %{version}, pystache
Obsoletes: %{srcname}-plugins-output-html < 47.0-1
Provides: %{srcname}-plugins-output-html = %{version}-%{release}
238 239 240 241 242 243 244

%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
245
%{python_sitelib}/avocado_result_html*
246
%{python_sitelib}/avocado_framework_plugin_result_html*
247

248 249
%package plugins-runner-remote
Summary: Avocado Runner for Remote Execution
250 251
Requires: %{name} == %{version}
Requires: fabric
252 253 254 255
%if 0%{?fedora} == 24
Requires: python-crypto
BuildRequires: python-crypto
%endif
256 257
Obsoletes: %{srcname}-plugins-runner-remote < 47.0-1
Provides: %{srcname}-plugins-runner-remote = %{version}-%{release}
258 259 260 261 262 263

%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
264
%{python_sitelib}/avocado_runner_remote*
265
%{python_sitelib}/avocado_framework_plugin_runner_remote*
266 267 268

%package plugins-runner-vm
Summary: Avocado Runner for libvirt VM Execution
269 270
Requires: %{name} == %{version}
Requires: %{name}-plugins-runner-remote == %{version}
271
Requires: libvirt-python
272 273
Obsoletes: %{srcname}-plugins-runner-vm < 47.0-1
Provides: %{srcname}-plugins-runner-vm = %{version}-%{release}
274 275 276 277 278 279 280

%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
281
%{python_sitelib}/avocado_runner_vm*
282
%{python_sitelib}/avocado_framework_plugin_runner_vm*
283 284 285

%package plugins-runner-docker
Summary: Avocado Runner for Execution on Docker Containers
286 287
Requires: %{name} == %{version}
Requires: %{name}-plugins-runner-remote == %{version}
288 289 290 291 292
%if 0%{?fedora}
Requires: python-aexpect
%else
Requires: aexpect
%endif
293 294
Obsoletes: %{srcname}-plugins-runner-docker < 47.0-1
Provides: %{srcname}-plugins-runner-docker = %{version}-%{release}
295 296 297 298 299 300 301

%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
C
Cleber Rosa 已提交
302
%{python_sitelib}/avocado_runner_docker*
303
%{python_sitelib}/avocado_framework_plugin_runner_docker*
304

305 306 307 308 309 310 311 312 313 314 315 316 317
%package plugins-resultsdb
Summary: Avocado plugin to propagate job results to ResultsDB
Requires: %{name} == %{version}
Requires: python-resultsdb_api

%description plugins-resultsdb
Allows Avocado to send job results directly to a ResultsDB
server.

%files plugins-resultsdb
%{python_sitelib}/avocado_resultsdb*
%{python_sitelib}/avocado_framework_plugin_resultsdb*

318 319 320 321 322 323 324 325 326 327 328 329
%package plugins-varianter-yaml-to-mux
Summary: Avocado plugin to generate variants out of yaml files
Requires: %{name} == %{version}
Requires: python-yaml

%description plugins-varianter-yaml-to-mux
Can be used to produce multiple test variants with test parameters
defined in a yaml file(s).

%files plugins-varianter-yaml-to-mux
%{python_sitelib}/avocado_varianter_yaml_to_mux*
%{python_sitelib}/avocado_framework_plugin_varianter_yaml_to_mux*
330

331
%package examples
332
Summary: Avocado Test Framework Example Tests
333
Requires: %{name} == %{version}
334

335 336 337 338
%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.
339

340
%files examples
341
%{_datadir}/avocado/tests
342
%{_datadir}/avocado/wrappers
343 344

%changelog
C
Cleber Rosa 已提交
345 346 347
* Mon Jun 26 2017 Cleber Rosa <cleber@redhat.com> - 52.0-0
- New upstream release

C
Cleber Rosa 已提交
348 349 350
* Mon Jun 12 2017 Cleber Rosa <cleber@redhat.com> - 51.0-0
- New upstream release

351 352 353
* Fri May 19 2017 Lukas Doktor <ldoktor@redhat.com> - 50.0-1
- Separate the varianter_yaml_to_mux plugin to a separate RPM

C
Cleber Rosa 已提交
354 355 356
* Tue May 16 2017 Cleber Rosa <cleber@redhat.com> - 50.0-0
- New upstream release

357 358
* Thu Apr 27 2017 Cleber Rosa <cleber@redhat.com> - 49.0-2
- Also setup resultsdb plugin on check
359
- Be explicit about selftest level run on check
360
- Take ownership of base avocado data dir (/var/lib/avocado)
361

C
Cleber Rosa 已提交
362 363 364
* Tue Apr 25 2017 Cleber Rosa <cleber@redhat.com> - 49.0-1
- Added missing runner-docker directory

C
Cleber Rosa 已提交
365 366 367
* Tue Apr 25 2017 Cleber Rosa <cleber@redhat.com> - 49.0-0
- New upstream release

368 369 370
* Mon Apr 24 2017 Cleber Rosa <cleber@redhat.com> - 48.0-5
- Add subpackage for resultsdb plugin

371 372 373
* Wed Apr 19 2017 Cleber Rosa <cleber@redhat.com> - 48.0-4
- Added "/var/lib/avocado" directory for writable content

374 375 376
* Wed Apr 19 2017 Cleber Rosa <cleber@redhat.com> - 48.0-3
- Fix exclusion of optional plugins files done on 48.0-1

377 378 379 380
* Mon Apr 10 2017 Cleber Rosa <cleber@redhat.com> - 48.0-2
- Update how release and snapshot packages are built

* Mon Apr  3 2017 Cleber Rosa <cleber@redhat.com> - 48.0-1
381 382
- Updated exclude directives and files for optional plugins

C
Cleber Rosa 已提交
383 384 385
* Mon Apr  3 2017 Cleber Rosa <cleber@redhat.com> - 48.0-0
- New upstream release

386 387
* Fri Mar 31 2017 Cleber Rosa <cleber@redhat.com> - 47.0-2
- Switch directory change statements to match downstream
388
- Change requirements style to one per line
389
- Add conditional execution of selftests
390

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

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

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

400 401 402 403 404
* 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 已提交
405 406
- New upstream release

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

410 411 412
* Fri Feb  3 2017 Cleber Rosa <cleber@redhat.com> - 45.0-1
- Removed support for EL6 requirements

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

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

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

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

C
Cleber Rosa 已提交
425 426 427 428
* 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 已提交
429 430 431
* Mon Sep 12 2016 Cleber Rosa <cleber@redhat.com> - 41.0-0
- New upstream release

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

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

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

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

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

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

450 451 452
* Thu May 05 2016 Amador Pahim <apahim@redhat.com> - 35.0-1
- Removed simpletests directory

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

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

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

462 463 464
* 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 已提交
465 466 467
* Tue Feb 16 2016 Cleber Rosa <cleber@redhat.com> - 0.33.0-0
- New upstream release 0.33.0

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

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

474 475 476
* Tue Nov 17 2015 Cleber Rosa <cleber@redhat.com> - 0.30.0-1
- Add python-stevedore to Requires

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

480 481 482
* Wed Oct 7 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.29.0-2
- Add python-setuptools to BuildRequires

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

486 487 488
* 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

489 490 491
* Wed Sep 16 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.28.0-1
- New upstream release 0.28.0

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

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

498 499 500
* Mon Aug 3 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.27.0-1
- New upstream release 0.27.0

501 502 503
* Mon Jul 6 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.26.0-1
- New upstream release 0.26.0

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

507 508 509
* Tue Jun 16 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.25.0-1
- New upstream release 0.25.0

510 511 512
* Fri Jun  5 2015 Cleber Rosa <cleber@redhat.com> - 0.24.0-3
- Removed rest client API examples

513 514 515
* Mon May 25 2015 Cleber Rosa <cleber@redhat.com> - 0.24.0-2
- Added previously missing gdb.conf

516 517 518
* Mon May 18 2015 Ruda Moura <rmoura@redhat.com> - 0.24.0-1
- Update to upstream version 0.24.0

519 520 521
* Tue Apr 21 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.23.0-1
- New upstream release

522 523 524
* Mon Apr 13 2015 Cleber Rosa <cleber@redhat.com> - 0.21.0-6
- Added sysinfo configuration files

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

530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
* 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

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

548 549 550
* Fri Feb 6 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.20.1-1
- Update to upstream version 0.20.1

551
* Tue Feb 3 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.20.0-1
552 553
- Update to upstream version 0.20.0

554 555 556
* Mon Dec 15 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.17.0-1
- Update to upstream version 0.17.0

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

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

563 564 565
* Mon Oct 13 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.14.0-1
- New upstream release

566
* Thu Sep 11 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.12.0-2
567 568
- Rename -tests package to -examples

569 570 571
* Tue Sep  9 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.12.0-1
- New upstream release

572 573 574
* Tue Sep  2 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.11.1-2
- Added fabric dependency

575 576 577 578
* 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

579 580 581 582
* 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 已提交
583 584 585
* Wed Aug 20 2014 Cleber Rosa <cleber@redhat.com> - 0.10.1-2
- Added initial avocado man page

586 587 588
* Tue Aug 12 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.10.1-1
- Bugfix release 0.10.1

589 590 591
* Thu Aug  7 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.10.0-1
- Bumped version to Avocado 0.10.0

592 593 594
* Wed Jul 30 2014 Cleber Rosa <cleber@redhat.com> - 0.8.0-2
- Split tests into avocado-tests package

595 596 597
* Fri Jul 18 2014 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.8.0-1
- Bumped version to Avocado 0.8.0

598 599 600
* Fri Jun 13 2014 Ruda Moura <rmoura@redhat.com> - 0.6.0-1
- Bumped version to Avocado 0.6.0

601 602 603
* Thu May  8 2014 Ruda Moura <rmoura@redhat.com> - 0.4.0-1
- Bumped version to Avocado 0.4.0

604 605 606
* Wed Apr 30 2014 Cleber Rosa <cleber@redhat.com> - 0.0.1-2
- Added new requirements reflecting new upstream deps

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