Bump version.
[pykickstart.git] / pykickstart.spec
blob7deb07f22cac3961636f97bb5f2dcd80c46586ea
1 %{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
3 Summary: A python library for manipulating kickstart files
4 Name: pykickstart
5 Version: 0.20
6 Release: 1
7 Source0: %{name}-%{version}.tar.gz
8 License: GPL
9 Group: System Environment/Libraries
10 BuildArch: noarch
11 BuildRoot: %{_tmppath}/%{name}-root
12 BuildRequires: python-devel
13 Requires: python >= %(%{__python} -c "import sys; print sys.version[:3]")
15 %description
16 The pykickstart package is a python library for manipulating kickstart
17 files.
19 %prep
20 %setup -q
21 make
23 %build
25 %install
26 rm -rf $RPM_BUILD_ROOT
27 python setup.py install --root=${RPM_BUILD_ROOT}
29 %clean
30 rm -rf $RPM_BUILD_ROOT
32 %files
33 %defattr(-,root,root)
34 %doc README ChangeLog COPYING docs/programmers-guide
35 %{python_sitelib}/pykickstart
36 /usr/bin/ksvalidator
38 %changelog
39 * Mon Feb 13 2006 Chris Lumens <clumens@redhat.com> 0.20-1
40 - Correctly set --noformat and --useexisting on lvm and raid.
42 * Mon Feb 13 2006 Chris Lumens <clumens@redhat.com> 0.19-1
43 - --onboot requires a value (#180987).
44 - Be more strict about commands that don't take arguments.
46 * Thu Feb 09 2006 Chris Lumens <clumens@redhat.com> 0.18-1
47 - Fix some errors pychecker caught.
48 - Allow exceptions to not be fatal so ksvalidator can spot more errors in
49 a single pass (#179894).
51 * Wed Feb 01 2006 Chris Lumens <clumens@redhat.com> 0.17-1
52 - Don't set a default port for vnc.
54 * Tue Jan 31 2006 Chris Lumens <clumens@redhat.com> 0.16-1
55 - Give dmraid string an initial value.
56 - Handle None on partition size.
58 * Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 0.15-1
59 - Add dmraid support
61 * Mon Jan 30 2006 Chris Lumens <clumens@redhat.com> 0.14-1
62 - Fix VNC parameter parsing (#179209).
63 - Deprecate --connect. Add --host and --port instead.
65 * Thu Jan 19 2006 Chris Lumens <clumens@redhat.com> 0.13-1
66 - Recognize the --eject parameter to shutdown/halt.
67 - Store the exact post-installation action in ksdata.
69 * Mon Jan 09 2006 Chris Lumens <clumens@redhat.com> 0.12-1
70 - Clean up output quoting.
71 - Finish removing monitor-related stuff from xconfig.
73 * Mon Dec 12 2005 Chris Lumens <clumens@redhat.com> 0.11-1
74 - Deprecate monitor-related options to xconfig.
76 * Thu Dec 08 2005 Chris Lumens <clumens@redhat.com> 0.10-1
77 - Support --bytes-per-inode on raid
78 (Curtis Doty <Curtis at GreenKey.net> #175288).
80 * Wed Nov 16 2005 Jeremy Katz <katzj@redhat.com> - 0.9-1
81 - fixup network --onboot
83 * Thu Nov 03 2005 Chris Lumens <clumens@redhat.com> 0.8-1
84 - Default to SELINUX_ENFORCING.
85 - Default partition sizes to None for anaconda (#172378).
86 - Don't call shlex.split on anything inside a script (#172313).
88 * Tue Nov 01 2005 Chris Lumens <clumens@redhat.com> 0.7-1
89 - Fix clearpart --all.
90 - vnc command does not require --connect option (#172192).
91 - network --onboot does not take any option.
92 - Remove extra spaces from firewall --ports and --trust.
93 - Write out network --<service> options.
95 * Fri Oct 28 2005 Chris Lumens <clumens@redhat.com> 0.6-1
96 - Add --resolvedeps and --ignoredeps as deprecated options.
97 - Pass line number to header functions.
99 * Mon Oct 24 2005 Chris Lumens <clumens@redhat.com> 0.5-1
100 - Add line numbers to exception reporting.
101 - Added ksvalidator.
103 * Wed Oct 19 2005 Chris Lumens <clumens@redhat.com> 0.4-1
104 - Correct deprecated attribute on options.
105 - Added programming documentation.
107 * Thu Oct 13 2005 Chris Lumens <clumens@redhat.com> 0.3-2
108 - Correct python lib directory on 64-bit archs (#170621).
110 * Fri Oct 07 2005 Chris Lumens <clumens@redhat.com> 0.3-1
111 - Add a deprecated attribute to options.
112 - Add --card option back to xconfig and mark as deprecated.
113 - Throw a deprecation warning on mouse and langsupport commands.
114 - Rename Writer to KickstartWriter for consistency.
115 - Collapse scripts into a single list and add an attribute on Script to
116 differentiate.
118 * Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 0.2-1
119 - Rename module to pykickstart to avoid conflicts in anaconda.
120 - Rename data classes for consistency.
121 - Add default bytesPerInode settings.
123 * Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 0.1-1
124 - Created package from anaconda.