Compare commits

...

12 Commits
master ... f20

Author SHA1 Message Date
Chris Lumens d6b87b1555 - Specify a kickstart version when running package-related tests. (clumens)
- We need python-urlgrabber to do builds now. (clumens)
2013-11-25 15:37:06 -05:00
Chris Lumens e7a3d66a03 We need python-urlgrabber to do builds now. (clumens) 2013-11-25 15:37:06 -05:00
Chris Lumens 5f2a30837d - Add missing version bumps for RHEL7 command control map (#1032738) (mkolman)
- Run "make test" as part of the RPM build process (#1025226). (clumens)
- Include test cases in the source distribution. (clumens)
- With the previous patch, RAID test formatting needs to change. (clumens)
- Do not add a list of PVs or RAID members when writing out --useexisting (#1021274). (clumens)
- Raise an error if bootloader --boot-drive gets more than one argument. (clumens)
2013-11-25 15:36:41 -05:00
Chris Lumens f905783cb0 - Add support for network team devices (#1003591) (rvykydal)
- Work on test coverage a little bit. (clumens)
- Don't use OrderedDict. (clumens)
- Add tests for tmpfs usage (mkolman)
- Add tmpfs support (#918621) (mkolman)
2013-11-14 09:57:53 -05:00
Chris Lumens 622873848e Set bootloader location constructor default value to "none" (#916529) (amulhern) 2013-11-03 17:02:37 -05:00
Chris Lumens 9db4a94290 method getattr should default to handler.url (bcl)
Related: rhbz#1016801
2013-10-25 14:26:17 -04:00
Chris Lumens e410879d74 Use F20_Raid for RHEL7. (#997146) (dlehman) 2013-10-16 13:29:49 -04:00
Chris Lumens bf2ecd3d93 - Remove a triple-X message that is no longer needed (mkolman)
- Add --remove-service option for the firewall command (#1016008) (mkolman)
2013-10-08 14:37:40 -04:00
Chris Lumens 87341db5d1 New 'eula' command (#1000409) (vpodzime) 2013-09-25 14:37:47 -04:00
Chris Lumens 921bdfa9e7 Only BuildRequire transifex on OSes that include it. 2013-09-24 13:50:31 -04:00
Chris Lumens fb6b1f40ca Don't error out if volgroup --useexisting is given with no members. (clumens) 2013-09-24 10:44:11 -04:00
Chris Lumens 9a9cd35132 - Call the right attribute method (#1004889) (bcl)
- Reset method seen attrs when switching method (#1004889) (bcl)
2013-09-10 15:22:00 -04:00
3 changed files with 64 additions and 2 deletions

10
.gitignore vendored
View File

@ -110,3 +110,13 @@ pykickstart-1.78.tar.gz
/pykickstart-1.99.36.tar.gz
/pykickstart-1.99.37.tar.gz
/pykickstart-1.99.38.tar.gz
/pykickstart-1.99.39.tar.gz
/pykickstart-1.99.40.tar.gz
/pykickstart-1.99.41.tar.gz
/pykickstart-1.99.42.tar.gz
/pykickstart-1.99.43.tar.gz
/pykickstart-1.99.44.tar.gz
/pykickstart-1.99.45.tar.gz
/pykickstart-1.99.46.tar.gz
/pykickstart-1.99.47.tar.gz
/pykickstart-1.99.48.tar.gz

View File

@ -3,7 +3,7 @@
Summary: A python library for manipulating kickstart files
Name: pykickstart
Url: http://fedoraproject.org/wiki/pykickstart
Version: 1.99.38
Version: 1.99.48
Release: 1%{?dist}
# This is a Red Hat maintained package which is specific to
# our distribution. Thus the source is only available from
@ -15,7 +15,10 @@ Group: System Environment/Libraries
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: python-devel, gettext, python-setuptools-devel
BuildRequires: python-urlgrabber
%if ! 0%{?rhel}
BuildRequires: transifex-client
%endif
Requires: python, python-urlgrabber
%description
@ -36,6 +39,9 @@ make DESTDIR=%{buildroot} install
%clean
rm -rf %{buildroot}
%check
make test
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc README ChangeLog COPYING docs/programmers-guide
@ -48,6 +54,52 @@ rm -rf %{buildroot}
%{_mandir}/man1/*
%changelog
* Mon Nov 25 2013 Chris Lumens <clumens@redhat.com> - 1.99.48-1
- Specify a kickstart version when running package-related tests. (clumens)
- We need python-urlgrabber to do builds now. (clumens)
* Mon Nov 25 2013 Chris Lumens <clumens@redhat.com> - 1.99.47-1
- Add missing version bumps for RHEL7 command control map (#1032738) (mkolman)
- Run "make test" as part of the RPM build process (#1025226). (clumens)
- Include test cases in the source distribution. (clumens)
- With the previous patch, RAID test formatting needs to change. (clumens)
- Do not add a list of PVs or RAID members when writing out --useexisting (#1021274). (clumens)
- Raise an error if bootloader --boot-drive gets more than one argument. (clumens)
* Thu Nov 14 2013 Chris Lumens <clumens@redhat.com> - 1.99.46-1
- Add support for network team devices (#1003591) (rvykydal)
- Work on test coverage a little bit. (clumens)
- Don't use OrderedDict. (clumens)
- Add tests for tmpfs usage (mkolman)
- Add tmpfs support (#918621) (mkolman)
* Fri Nov 01 2013 Chris Lumens <clumens@redhat.com> - 1.99.45-1
- Set bootloader location constructor default value to "none" (#916529) (amulhern)
* Fri Oct 25 2013 Chris Lumens <clumens@redhat.com> - 1.99.44-1
- method getattr should default to handler.url (bcl)
Related: rhbz#1016801
* Wed Oct 16 2013 Chris Lumens <clumens@redhat.com> - 1.99.43-1
- Use F20_Raid for RHEL7. (#997146) (dlehman)
* Tue Oct 08 2013 Chris Lumens <clumens@redhat.com> - 1.99.42-1
- Remove a triple-X message that is no longer needed (mkolman)
- Add --remove-service option for the firewall command (#1016008) (mkolman)
* Wed Sep 25 2013 Chris Lumens <clumens@redhat.com> - 1.99.41-1
- New 'eula' command (#1000409) (vpodzime)
* Tue Sep 24 2013 Chris Lumens <clumens@redhat.com> 1.99.40-2
- Only BuildRequire transifex on OSes that include it.
* Tue Sep 24 2013 Chris Lumens <clumens@redhat.com> - 1.99.40-1
- Don't error out if volgroup --useexisting is given with no members. (clumens)
* Tue Sep 10 2013 Chris Lumens <clumens@redhat.com> - 1.99.39-1
- Call the right attribute method (#1004889) (bcl)
- Reset method seen attrs when switching method (#1004889) (bcl)
* Tue Sep 03 2013 Brian C. Lane <bcl@redhat.com> - 1.99.38-1
- Return None for attributes if no method has been set (#1001081) (dshea)
- Fix up a couple pylint errors in the tools. (clumens)

View File

@ -1 +1 @@
637bf871ab6a9a0ca81b55e4ecf6d546 pykickstart-1.99.38.tar.gz
30be9f6a4fa69bb40b624fb6717e4f1a pykickstart-1.99.48.tar.gz