- Add --mkfsoptions to btrfs, logvol, partition, and raid commands. (clumens)

- Document the unit used for the --cachesize option (vpodzime)
- Add options for LVM cache specs to the 'logvol' command (vpodzime) (clumens)
- Set PYTHONPATH when running "make check". (clumens)
- Add --mkfsoptions to btrfs, logvol, partition, and raid commands. (clumens)
- Avoid traceback in module loading failure paths. (dlehman)
- Install the python3 .mo files to python3_sitelib (dshea)
- add extra test coverage for commands/btrfs.py (atodorov)
- additional test coverage for commands/device.py (atodorov)
- additional test coverage for parser/sections.py (atodorov)
- add test documentation (atodorov)
- cover corner case in commands/eula.py test (atodorov)
This commit is contained in:
Chris Lumens 2015-06-22 13:21:40 -04:00
parent 52d91750e4
commit 165f14182f
3 changed files with 21 additions and 8 deletions

1
.gitignore vendored
View File

@ -146,3 +146,4 @@ pykickstart-1.78.tar.gz
/pykickstart-2.6.tar.gz
/pykickstart-2.7.tar.gz
/pykickstart-2.8.tar.gz
/pykickstart-2.9.tar.gz

View File

@ -1,6 +1,6 @@
Name: pykickstart
Version: 2.8
Release: 2%{?dist}
Version: 2.9
Release: 1%{?dist}
License: GPLv2 and MIT
Group: System Environment/Libraries
Summary: Python utilities for manipulating kickstart files.
@ -71,7 +71,6 @@ popd
%install
rm -rf %{buildroot}
make DESTDIR=%{buildroot} install
%find_lang %{name}
pushd %{py3dir}
PYTHON=%{__python3} make DESTDIR=%{buildroot} install
@ -94,7 +93,7 @@ popd
%{_bindir}/ksshell
%{_mandir}/man1/*
%files -n python-kickstart -f %{name}.lang
%files -n python-kickstart
%defattr(-,root,root,-)
%doc docs/programmers-guide
%doc docs/kickstart-docs.rst
@ -102,8 +101,9 @@ popd
%{python2_sitelib}/pykickstart/*py*
%{python2_sitelib}/pykickstart/commands/*py*
%{python2_sitelib}/pykickstart/handlers/*py*
%{python2_sitelib}/pykickstart/locale/
%files -n python3-kickstart -f %{name}.lang
%files -n python3-kickstart
%defattr(-,root,root,-)
%doc docs/programmers-guide
%doc docs/kickstart-docs.rst
@ -111,10 +111,22 @@ popd
%{python3_sitelib}/pykickstart/*py*
%{python3_sitelib}/pykickstart/commands/*py*
%{python3_sitelib}/pykickstart/handlers/*py*
%{python3_sitelib}/pykickstart/locale/
%changelog
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Mon Jun 22 2015 Chris Lumens <clumens@redhat.com> - 2.9-1
- Add --mkfsoptions to btrfs, logvol, partition, and raid commands. (clumens)
- Document the unit used for the --cachesize option (vpodzime)
- Add options for LVM cache specs to the 'logvol' command (vpodzime) (clumens)
- Set PYTHONPATH when running "make check". (clumens)
- Add --mkfsoptions to btrfs, logvol, partition, and raid commands. (clumens)
- Avoid traceback in module loading failure paths. (dlehman)
- Install the python3 .mo files to python3_sitelib (dshea)
- add extra test coverage for commands/btrfs.py (atodorov)
- additional test coverage for commands/device.py (atodorov)
- additional test coverage for parser/sections.py (atodorov)
- add test documentation (atodorov)
- cover corner case in commands/eula.py test (atodorov)
* Tue Jun 02 2015 Chris Lumens <clumens@redhat.com> - 2.8-1
- Merge pull request #16 from atodorov/commands_partition_updates (clumens)

View File

@ -1 +1 @@
58566d5798b253c1a23a74a6462e07df pykickstart-2.8.tar.gz
ea2e6be1576f6db42ff3805e7efc9e24 pykickstart-2.9.tar.gz