Bump version for adding support for the logging command.
[pykickstart.git] / pykickstart.spec
blobe8a2d4e0572e960d307ce65b6443f72f77a955fc
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.25
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 Mar 27 2006 Chris Lumens <clumens@redhat.com> 0.25-1
40 - Add support for the logging command.
42 * Mon Mar 27 2006 Chris Lumens <clumens@redhat.com> 0.24-1
43 - Don't write out a blank xconfig line.
44 - Reorder output handlers to group like commands together.
45 - Mark strings for translation.
47 * Tue Mar 07 2006 Chris Lumens <clumens@redhat.com> 0.23-1
48 - Backwards compatibility support for options to zerombr.
50 * Fri Feb 24 2006 Chris Lumens <clumens@redhat.com> 0.22-1
51 - Get ignoredisk working again (#182934).
53 * Fri Feb 17 2006 Chris Lumens <clumens@redhat.com> 0.21-1
54 - Provide an option to not traceback on missing include files (#181760).
55 - Update programming documentation.
57 * Mon Feb 13 2006 Chris Lumens <clumens@redhat.com> 0.20-1
58 - Correctly set --noformat and --useexisting on lvm and raid.
60 * Mon Feb 13 2006 Chris Lumens <clumens@redhat.com> 0.19-1
61 - --onboot requires a value (#180987).
62 - Be more strict about commands that don't take arguments.
64 * Thu Feb 09 2006 Chris Lumens <clumens@redhat.com> 0.18-1
65 - Fix some errors pychecker caught.
66 - Allow exceptions to not be fatal so ksvalidator can spot more errors in
67 a single pass (#179894).
69 * Wed Feb 01 2006 Chris Lumens <clumens@redhat.com> 0.17-1
70 - Don't set a default port for vnc.
72 * Tue Jan 31 2006 Chris Lumens <clumens@redhat.com> 0.16-1
73 - Give dmraid string an initial value.
74 - Handle None on partition size.
76 * Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 0.15-1
77 - Add dmraid support
79 * Mon Jan 30 2006 Chris Lumens <clumens@redhat.com> 0.14-1
80 - Fix VNC parameter parsing (#179209).
81 - Deprecate --connect. Add --host and --port instead.
83 * Thu Jan 19 2006 Chris Lumens <clumens@redhat.com> 0.13-1
84 - Recognize the --eject parameter to shutdown/halt.
85 - Store the exact post-installation action in ksdata.
87 * Mon Jan 09 2006 Chris Lumens <clumens@redhat.com> 0.12-1
88 - Clean up output quoting.
89 - Finish removing monitor-related stuff from xconfig.
91 * Mon Dec 12 2005 Chris Lumens <clumens@redhat.com> 0.11-1
92 - Deprecate monitor-related options to xconfig.
94 * Thu Dec 08 2005 Chris Lumens <clumens@redhat.com> 0.10-1
95 - Support --bytes-per-inode on raid
96 (Curtis Doty <Curtis at GreenKey.net> #175288).
98 * Wed Nov 16 2005 Jeremy Katz <katzj@redhat.com> - 0.9-1
99 - fixup network --onboot
101 * Thu Nov 03 2005 Chris Lumens <clumens@redhat.com> 0.8-1
102 - Default to SELINUX_ENFORCING.
103 - Default partition sizes to None for anaconda (#172378).
104 - Don't call shlex.split on anything inside a script (#172313).
106 * Tue Nov 01 2005 Chris Lumens <clumens@redhat.com> 0.7-1
107 - Fix clearpart --all.
108 - vnc command does not require --connect option (#172192).
109 - network --onboot does not take any option.
110 - Remove extra spaces from firewall --ports and --trust.
111 - Write out network --<service> options.
113 * Fri Oct 28 2005 Chris Lumens <clumens@redhat.com> 0.6-1
114 - Add --resolvedeps and --ignoredeps as deprecated options.
115 - Pass line number to header functions.
117 * Mon Oct 24 2005 Chris Lumens <clumens@redhat.com> 0.5-1
118 - Add line numbers to exception reporting.
119 - Added ksvalidator.
121 * Wed Oct 19 2005 Chris Lumens <clumens@redhat.com> 0.4-1
122 - Correct deprecated attribute on options.
123 - Added programming documentation.
125 * Thu Oct 13 2005 Chris Lumens <clumens@redhat.com> 0.3-2
126 - Correct python lib directory on 64-bit archs (#170621).
128 * Fri Oct 07 2005 Chris Lumens <clumens@redhat.com> 0.3-1
129 - Add a deprecated attribute to options.
130 - Add --card option back to xconfig and mark as deprecated.
131 - Throw a deprecation warning on mouse and langsupport commands.
132 - Rename Writer to KickstartWriter for consistency.
133 - Collapse scripts into a single list and add an attribute on Script to
134 differentiate.
136 * Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 0.2-1
137 - Rename module to pykickstart to avoid conflicts in anaconda.
138 - Rename data classes for consistency.
139 - Add default bytesPerInode settings.
141 * Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 0.1-1
142 - Created package from anaconda.