- Add tests using repos.git in blueprints (bcl@redhat.com)
- Move git repo creation into tests/lib.py (bcl@redhat.com) - rpmgit: catch potential errors while running git (bcl@redhat.com) - tests: Add test for Recipe.freeze() function (bcl@redhat.com) - Add repos.git support to lorax-composer builds (bcl@redhat.com) - Add pylorax.api.gitrpm module and tests (bcl@redhat.com) - Add support for [[repos.git]] section to blueprints (bcl@redhat.com) - Update ppc64le isolabel to match x86_64 logic (bcl@redhat.com) - Add blacklist_exceptions to multipath.conf (bcl@redhat.com) - tests: Add python3-mock and python3-sphinx_rtd_theme (bcl@redhat.com) - Use make ci inside test-in-copy target (atodorov@redhat.com) - Allow overriding $CLI outside test scripts (atodorov@redhat.com) - tests: Make it easier to update version globs (bcl@redhat.com) - New test: Build live-iso and boot with KVM (atodorov@redhat.com) - lorax-composer: Return UnknownBlueprint errors when using deleted blueprints (bcl@redhat.com) - lorax-composer: Delete workspace copy when deleting blueprint (bcl@redhat.com) - New test: Build qcow2 compose and test it with QEMU-KVM (atodorov@redhat.com)
This commit is contained in:
parent
a6c0d638ca
commit
e3955d8256
1
.gitignore
vendored
1
.gitignore
vendored
@ -156,3 +156,4 @@
|
|||||||
/lorax-30.14.tar.gz
|
/lorax-30.14.tar.gz
|
||||||
/lorax-30.15.tar.gz
|
/lorax-30.15.tar.gz
|
||||||
/lorax-30.16.tar.gz
|
/lorax-30.16.tar.gz
|
||||||
|
/lorax-31.0.tar.gz
|
||||||
|
25
lorax.spec
25
lorax.spec
@ -3,7 +3,7 @@
|
|||||||
%define debug_package %{nil}
|
%define debug_package %{nil}
|
||||||
|
|
||||||
Name: lorax
|
Name: lorax
|
||||||
Version: 30.16
|
Version: 31.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Tool for creating the anaconda install images
|
Summary: Tool for creating the anaconda install images
|
||||||
|
|
||||||
@ -139,6 +139,10 @@ Requires: python3-gevent
|
|||||||
Requires: anaconda-tui >= 29.19-1
|
Requires: anaconda-tui >= 29.19-1
|
||||||
Requires: qemu-img
|
Requires: qemu-img
|
||||||
Requires: tar
|
Requires: tar
|
||||||
|
Requires: python3-rpmfluff
|
||||||
|
Requires: git
|
||||||
|
Requires: xz
|
||||||
|
Requires: createrepo_c
|
||||||
|
|
||||||
%{?systemd_requires}
|
%{?systemd_requires}
|
||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
@ -236,6 +240,25 @@ getent passwd weldr >/dev/null 2>&1 || useradd -r -g weldr -d / -s /sbin/nologin
|
|||||||
%{_mandir}/man1/composer-cli.1*
|
%{_mandir}/man1/composer-cli.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Mar 15 2019 Brian C. Lane <bcl@redhat.com> 31.0-1
|
||||||
|
- Add tests using repos.git in blueprints (bcl@redhat.com)
|
||||||
|
- Move git repo creation into tests/lib.py (bcl@redhat.com)
|
||||||
|
- rpmgit: catch potential errors while running git (bcl@redhat.com)
|
||||||
|
- tests: Add test for Recipe.freeze() function (bcl@redhat.com)
|
||||||
|
- Add repos.git support to lorax-composer builds (bcl@redhat.com)
|
||||||
|
- Add pylorax.api.gitrpm module and tests (bcl@redhat.com)
|
||||||
|
- Add support for [[repos.git]] section to blueprints (bcl@redhat.com)
|
||||||
|
- Update ppc64le isolabel to match x86_64 logic (bcl@redhat.com)
|
||||||
|
- Add blacklist_exceptions to multipath.conf (bcl@redhat.com)
|
||||||
|
- tests: Add python3-mock and python3-sphinx_rtd_theme (bcl@redhat.com)
|
||||||
|
- Use make ci inside test-in-copy target (atodorov@redhat.com)
|
||||||
|
- Allow overriding $CLI outside test scripts (atodorov@redhat.com)
|
||||||
|
- tests: Make it easier to update version globs (bcl@redhat.com)
|
||||||
|
- New test: Build live-iso and boot with KVM (atodorov@redhat.com)
|
||||||
|
- lorax-composer: Return UnknownBlueprint errors when using deleted blueprints (bcl@redhat.com)
|
||||||
|
- lorax-composer: Delete workspace copy when deleting blueprint (bcl@redhat.com)
|
||||||
|
- New test: Build qcow2 compose and test it with QEMU-KVM (atodorov@redhat.com)
|
||||||
|
|
||||||
* Mon Feb 25 2019 Brian C. Lane <bcl@redhat.com> 30.16-1
|
* Mon Feb 25 2019 Brian C. Lane <bcl@redhat.com> 30.16-1
|
||||||
- Fix pylint problems with vmware_list_vms.py (bcl@redhat.com)
|
- Fix pylint problems with vmware_list_vms.py (bcl@redhat.com)
|
||||||
- Makefile: Make the .test-results directory (bcl@redhat.com)
|
- Makefile: Make the .test-results directory (bcl@redhat.com)
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (lorax-30.16.tar.gz) = 0056ae1efae78ec1f3c9c26e6adf99d263b9322de65323fc0d9215cf48c689d0caaebf3766fdbb113d3b60f04b6638c542406d98ba447b58fc89d7625f988fed
|
SHA512 (lorax-31.0.tar.gz) = 1e4cc527920e46381318720ae326d7a6a5c684ae4a6e864e4038d073c0219123c06171584992a1853187fbb7b7fb26074b9439a0455343f39845e8d4e95745f1
|
||||||
|
Loading…
Reference in New Issue
Block a user