- 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:
parent
52d91750e4
commit
165f14182f
1
.gitignore
vendored
1
.gitignore
vendored
@ -146,3 +146,4 @@ pykickstart-1.78.tar.gz
|
|||||||
/pykickstart-2.6.tar.gz
|
/pykickstart-2.6.tar.gz
|
||||||
/pykickstart-2.7.tar.gz
|
/pykickstart-2.7.tar.gz
|
||||||
/pykickstart-2.8.tar.gz
|
/pykickstart-2.8.tar.gz
|
||||||
|
/pykickstart-2.9.tar.gz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: pykickstart
|
Name: pykickstart
|
||||||
Version: 2.8
|
Version: 2.9
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2 and MIT
|
License: GPLv2 and MIT
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
Summary: Python utilities for manipulating kickstart files.
|
Summary: Python utilities for manipulating kickstart files.
|
||||||
@ -71,7 +71,6 @@ popd
|
|||||||
%install
|
%install
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
make DESTDIR=%{buildroot} install
|
make DESTDIR=%{buildroot} install
|
||||||
%find_lang %{name}
|
|
||||||
|
|
||||||
pushd %{py3dir}
|
pushd %{py3dir}
|
||||||
PYTHON=%{__python3} make DESTDIR=%{buildroot} install
|
PYTHON=%{__python3} make DESTDIR=%{buildroot} install
|
||||||
@ -94,7 +93,7 @@ popd
|
|||||||
%{_bindir}/ksshell
|
%{_bindir}/ksshell
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
|
|
||||||
%files -n python-kickstart -f %{name}.lang
|
%files -n python-kickstart
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc docs/programmers-guide
|
%doc docs/programmers-guide
|
||||||
%doc docs/kickstart-docs.rst
|
%doc docs/kickstart-docs.rst
|
||||||
@ -102,8 +101,9 @@ popd
|
|||||||
%{python2_sitelib}/pykickstart/*py*
|
%{python2_sitelib}/pykickstart/*py*
|
||||||
%{python2_sitelib}/pykickstart/commands/*py*
|
%{python2_sitelib}/pykickstart/commands/*py*
|
||||||
%{python2_sitelib}/pykickstart/handlers/*py*
|
%{python2_sitelib}/pykickstart/handlers/*py*
|
||||||
|
%{python2_sitelib}/pykickstart/locale/
|
||||||
|
|
||||||
%files -n python3-kickstart -f %{name}.lang
|
%files -n python3-kickstart
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc docs/programmers-guide
|
%doc docs/programmers-guide
|
||||||
%doc docs/kickstart-docs.rst
|
%doc docs/kickstart-docs.rst
|
||||||
@ -111,10 +111,22 @@ popd
|
|||||||
%{python3_sitelib}/pykickstart/*py*
|
%{python3_sitelib}/pykickstart/*py*
|
||||||
%{python3_sitelib}/pykickstart/commands/*py*
|
%{python3_sitelib}/pykickstart/commands/*py*
|
||||||
%{python3_sitelib}/pykickstart/handlers/*py*
|
%{python3_sitelib}/pykickstart/handlers/*py*
|
||||||
|
%{python3_sitelib}/pykickstart/locale/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8-2
|
* Mon Jun 22 2015 Chris Lumens <clumens@redhat.com> - 2.9-1
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
- 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
|
* Tue Jun 02 2015 Chris Lumens <clumens@redhat.com> - 2.8-1
|
||||||
- Merge pull request #16 from atodorov/commands_partition_updates (clumens)
|
- Merge pull request #16 from atodorov/commands_partition_updates (clumens)
|
||||||
|
Loading…
Reference in New Issue
Block a user