Check syntax version before issuing a deprecation warning (#972098).
[pykickstart.git] / pykickstart.spec
blob4b7ad58ee3cb3ed24f3b5c1ce495c52a0ece1139
1 %{!?python_sitelib: %global 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 Url: http://fedoraproject.org/wiki/pykickstart
6 Version: 1.99.34
7 Release: 1%{?dist}
8 # This is a Red Hat maintained package which is specific to
9 # our distribution. Thus the source is only available from
10 # within this srpm.
11 Source0: %{name}-%{version}.tar.gz
13 License: GPLv2
14 Group: System Environment/Libraries
15 BuildArch: noarch
16 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
17 BuildRequires: python-devel, gettext, python-setuptools-devel
18 BuildRequires: transifex-client
19 Requires: python, python-urlgrabber
21 %description
22 The pykickstart package is a python library for manipulating kickstart
23 files.
25 %prep
26 %setup -q
28 %build
29 make
31 %install
32 rm -rf %{buildroot}
33 make DESTDIR=%{buildroot} install
34 %find_lang %{name}
36 %clean
37 rm -rf %{buildroot}
39 %files -f %{name}.lang
40 %defattr(-,root,root,-)
41 %doc README ChangeLog COPYING docs/programmers-guide
42 %doc docs/kickstart-docs.txt
43 %{python_sitelib}/*
44 %{_bindir}/ksvalidator
45 %{_bindir}/ksflatten
46 %{_bindir}/ksverdiff
47 %{_bindir}/ksshell
48 %{_mandir}/man1/*
50 %changelog
51 * Mon Jul 15 2013 Chris Lumens <clumens@redhat.com> - 1.99.34-1
52 - Always create self.handler on-demand in the test cases. (clumens)
53 - Also set the seen attribute when __call__ is used. (clumens)
54 - Mark the upgrade command as deprecated. (clumens)
55 - Add the method test case back in. (clumens)
56 - Set the seen attribute when parsing in test cases, too. (clumens)
57 - Add a proxy method command object. (clumens)
58 - Add an interactive kickstart shell command, ksshell. (clumens)
59 - Fix string substitution errors in translatable text. (clumens)
60 - Break the method command out into individual commands. (clumens)
62 * Tue Jul 09 2013 Chris Lumens <clumens@redhat.com> - 1.99.33-1
63 - Add support for lvm thin provisioning. (dlehman)
64 - Add support for F20. (clumens)
65 - Add a new test for the group command. (clumens)
66 - In the test cases, error on all non-deprecation warnings. (clumens)
67 - Remove unused imports from the test suite. (clumens)
69 * Fri Jun 14 2013 Chris Lumens <clumens@redhat.com> - 1.99.32-1
70 - transifex.net is now transifex.com (bcl)
71 - Update raid --device to be an array name specifier. (dlehman)
72 - Add more tests for the realm command (mkolman)
73 - RHEL7 is now more or less based on F19, at least for kickstart. (clumens)
74 - realm: Fix --no-password option (stefw)
75 - Add man pages for all programs (#948440). (clumens)
77 * Wed May 15 2013 Chris Lumens <clumens@redhat.com> - 1.99.31-1
78 - Fix F18/F19 cdrom methods (bcl)
80 * Thu May 09 2013 Chris Lumens <clumens@redhat.com> - 1.99.30-1
81 - Add support for the realm command (mkolman)
82 - Add liveimg install method (bcl)
84 * Thu May 09 2013 Chris Lumens <clumens@redhat.com> - 1.99.29-1
85 - add --extlinux option (mattdm)
87 * Tue Apr 23 2013 Chris Lumens <clumens@redhat.com> - 1.99.28-1
88 - Add network --ipv6gateway option (#905226) (rvykydal)
89 - Add lang --addsupport option (#912364) (rvykydal)
91 * Wed Apr 10 2013 Chris Lumens <clumens@redhat.com> - 1.99.27-1
92 - A new user's group should default to None, not 0 (#929204). (clumens)
94 * Fri Mar 22 2013 Chris Lumens <clumens@redhat.com> - 1.99.26-1
95 - parser.py: Allow shlex to strip lines (fedora.dm0)
96 - Fix a bug in logvol duplicate reporting (#924579, mhuth). (clumens)
97 - Add gid attribute to User command and associated data structure (msivak)
98 - Make sure tests can run and report import errors (bcl)
99 - Add network --vlanid option to Fedora. (rvykydal)
101 * Mon Mar 04 2013 Chris Lumens <clumens@redhat.com> - 1.99.25-1
102 - pylint appears to have gotten pickier. (clumens)
103 - Fix typo in --wpakey string representation method (rvykydal)
104 - Also add the F19 handler file. (clumens)
105 - Don't strip the newline from reboot or shutdown commands (#915013). (clumens)
106 - Add bonding support to RHEL 7 (rvykydal)
107 - Add bonding support to F19 (rvykydal)
108 - Add support for F19 (rvykydal)
110 * Wed Feb 13 2013 Chris Lumens <clumens@redhat.com> - 1.99.24-1
111 - Add a seen attribute to commands, sections, and the packages object. (clumens)
113 * Mon Jan 14 2013 Chris Lumens <clumens@redhat.com> - 1.99.23-1
114 - Don't print any of the autopart command if autopart is disabled (#888841). (clumens)
115 - Call sys.exit instead of os._exit (#891419, gconradi AT factset.com). (clumens)
116 - Beware of possible unicode strings (#876293) (vpodzime)
117 - Remove the lang.apply method (#882186). (clumens)
118 - Add 'make coverage' command to the make file (stefw)
120 * Tue Nov 20 2012 Chris Lumens <clumens@redhat.com> - 1.99.22-1
121 - Add support for url --mirrorlist, needed by anaconda (#868558). (clumens)
122 - Only write out a logging line if one was provided (#873242). (clumens)
123 - If no timezone was provided, do not write out an empty timezone command. (clumens)
125 * Wed Oct 24 2012 Chris Lumens <clumens@redhat.com> - 1.99.21-1
126 - Add support for layout switching options (vpodzime)
128 * Mon Oct 15 2012 Chris Lumens <clumens@redhat.com> - 1.99.20-1
129 - Disable pylint warnings related to the previous patch. (clumens)
130 - Revert "Fix superclass constructor call in F18_Keyboard." (clumens)
131 - Fix superclass constructor call in F18_Keyboard. (dlehman)
132 - Add cipher option for encrypting block devices. (dlehman)
133 - Change keyboard command to accept VConsole keymap and X layouts (vpodzime)
134 - add unsupported_hardware command (#824963) (bcl)
136 * Fri Sep 14 2012 Chris Lumens <clumens@redhat.com> - 1.99.19-1
137 - bonding support: add network --bondslaves --bondopts options (rvykydal)
138 - vlan support: add network --vlanid option. (rvykydal)
140 * Thu Sep 06 2012 Chris Lumens <clumens@redhat.com> - 1.99.18-1
141 - Fix the multilib package test case. (clumens)
142 - Add support for --multilib option to %packages. (dlehman)
143 - Mark --nobase as deprecated. (notting)
145 * Tue Aug 28 2012 Chris Lumens <clumens@redhat.com> - 1.99.17-1
146 - Add ksdata.network.hostname (readonly) property (rvykydal)
148 * Wed Aug 22 2012 Chris Lumens <clumens@redhat.com> - 1.99.16-1
149 - Add swap --hibernation to logvol command (vpodzime)
151 * Thu Aug 09 2012 Chris Lumens <clumens@redhat.com> - 1.99.15-1
152 - No argument needs to be given to rootpw if you're just locking the account. (clumens)
154 * Thu Jul 26 2012 Chris Lumens <clumens@redhat.com> - 1.99.14-1
155 - add reboot test (bcl)
156 - add correct halt command handling (bcl)
157 - return parsed object from assert_parse (bcl)
158 - The monitor command has been deprecated since F10. Get rid of it. (clumens)
159 - Add --hibernation option for swap size specification (vpodzime)
160 - Add leavebootorder test (hamzy)
162 * Tue Jun 19 2012 Chris Lumens <clumens@redhat.com> - 1.99.13-1
163 - Support bootloader --leavebootorder for F18 and RHEL7 (#824801) (pjones)
164 - Allow %include in %pre and %post (#827269) (bcl)
166 * Mon Jun 18 2012 Chris Lumens <clumens@redhat.com> - 1.99.12-1
167 - Add --nontp option and a way to specify NTP servers to the timezone command (vpodzime)
168 - fix TypeError in network.py with ipv6 static addresses (wwoods)
169 - Layouts may include spaces, so put them in quotes (vpodzime)
171 * Mon May 07 2012 Chris Lumens <clumens@redhat.com> - 1.99.11-1
172 - pylint doesn't like .setter syntax at all. (clumens)
173 - Modify keyboard command to handle multiple layouts (vpodzime)
174 - Add support for F18. (vpodzime)
175 - Fix traceback if modules cannot be loaded when running tests (vpodzime)
177 * Mon Apr 02 2012 Chris Lumens <clumens@redhat.com> - 1.99.10-1
178 - Add resize option to partition and logvol commands. (dlehman)
179 - Add --list= mode to clearpart for explicit list of partitions to remove. (dlehman)
181 * Thu Mar 22 2012 Chris Lumens <clumens@redhat.com> - 1.99.9-1
182 - Add __ne__ methods to every object with an __eq__ method. (clumens)
183 - Use the older exception syntax for python 2.4 compatibility. (clumens)
184 - Add an __eq__ method to the method command. (clumens)
186 * Wed Mar 14 2012 Chris Lumens <clumens@redhat.com> - 1.99.8-1
187 - Add support for RHEL7 (#802369).
188 - Add a method to set a command back to its initial blank state.
189 - btrfs likes its raid levels in lower case. (#799154) (dlehman)
190 - iscsi: add support for interface binding to F17 (rvykydal)
191 - iscsi: add support for interface binding (#500273) (rvykydal)
193 * Wed Jan 11 2012 Chris Lumens <clumens@redhat.com> - 1.99.7-1
194 - Add --type option to autopart command. (dlehman)
195 - Add btrfs command. (dlehman)
197 * Tue Nov 15 2011 Chris Lumens <clumens@redhat.com> - 1.99.6-1
198 - Add --boot-drive option to bootloader command to pick boot drive. (dlehman)
199 - Add support for F17. (clumens)
200 - The guts of a script could include a line starting with a % (#746928). (clumens)
202 * Wed Oct 19 2011 Chris Lumens <clumens@redhat.com> - 1.99.5-1
203 - Don't error out if raid --useexisting is given with no members (#741728). (clumens)
204 - When %end is missing, include the unterminated section in the error message. (clumens)
206 * Wed Sep 14 2011 Chris Lumens <clumens@redhat.com> - 1.99.4-1
207 - --reserved-space and --reserved-percent should be checked on a callback. (clumens)
208 - Add a volgroup unit test, and fix a bug it uncovered. (clumens)
209 - Add support for reserved space in volume group. (dlehman)
210 - Allow a %include to come in the middle of a section (#733455). (clumens)
211 - Add a test case for %include inside %packages. (clumens)
213 * Mon Aug 22 2011 Chris Lumens <clumens@redhat.com> - 1.99.3-1
214 - Ignore reimport warnings. (clumens)
215 - Add support for 'autopart --nolvm' (jlaska)
216 - autopart - Inherit error checking from base class (jlaska)
217 - Let's just use url.size instead. That's defined for both FTP and HTTP. (clumens)
218 - It's url.hdr now, not url.info. (clumens)
219 - Support end-of-line comments in the %packages section (#728563). (clumens)
221 * Mon Jun 27 2011 Chris Lumens <clumens@redhat.com> - 1.99.2-1
222 - Don't do "make po-pull" during installation. (clumens)
224 * Mon Jun 27 2011 Chris Lumens <clumens@redhat.com> - 1.99.1-1
225 - Fix a couple Makefile typos. (clumens)
226 - typo fix (vpodzime)
227 - option for wpa wifi connection specification added (vpodzime)
228 - Update Makefiles to work with new translation system. (clumens)
229 - BuildRequires transifex-client. (clumens)
230 - Ignore po/*.po files. (clumens)
231 - Remove translation files. (clumens)
232 - Add transifex-client configuration file. (clumens)
233 - Fix po files so "msgfmt -c" passes and they can be uploaded to transifex. (clumens)
235 * Tue Jun 07 2011 Chris Lumens <clumens@redhat.com> 1.99.0-1
236 - Add a way to tell how often a section has been handled. (clumens)
237 - Add a NullSection that just ignores any section provided. (clumens)
238 - Add test cases for the parser itself. (clumens)
239 - Allow for defining your own kickstart %sections. (clumens)
240 - The docs need to be fetched from an HTTPS location now. (clumens)
241 - Write out --onboot=off if it's False. (clumens)
243 * Fri Mar 25 2011 Chris Lumens <clumens@redhat.com> - 1.83-1
244 - Add kickstart network --nodefroute option (#668417) (rvykydal)
245 - Add support for network --bootproto ibft option (#668417) (rvykydal)
246 - Add network --activate option (#668417) (rvykydal)
247 - Add support for F16. (clumens)
249 * Fri Feb 18 2011 Chris Lumens <clumens@redhat.com> - 1.82-1
250 - Add support for "logvol --label=" (#677571). (clumens)
252 * Wed Jan 19 2011 Chris Lumens <clumens@redhat.com> - 1.81-1
253 - Add support for "raid --label=" (#670643). (clumens)
254 - --baseurl/--mirrorlist are no longer required for the repo command. (clumens)
255 - Make use of the "interactive" command an error. (clumens)
257 * Fri Dec 10 2010 Chris Lumens <clumens@redhat.com> - 1.80-1
258 - Remove preceededInclude= support (#639372). (clumens)
259 - support noverifyssl on the rhel6-branch (method, repo) (#660340). (akozumpl)
260 - l10n: Added Low German translation (ncfiedler)
262 * Mon Nov 08 2010 Chris Lumens <clumens@redhat.com> 1.79-1
263 - Move from pychecker to pylint, since the latter actually works.
264 - Lots of minor corrections for pylint.
265 - Add bootloader --iscrypted (#554870).
266 - Add support for F15.
268 * Fri Sep 10 2010 Chris Lumens <clumens@redhat.com> - 1.78-1
269 - Raise KickstartError instead of IOError (#618002). (clumens)
270 - It's --biospart, not --biosdisk (#620855). (clumens)
271 - Translation updates.
273 * Tue Jul 20 2010 Chris Lumens <clumens@redhat.com> - 1.77-1
274 - Send the key command down the memory hole. (clumens)
275 - Deprecate interactive kickstart mode. (clumens)
277 * Thu Jul 08 2010 Chris Lumens <clumens@redhat.com> - 1.76-1
278 - method: new parameter '--noverifyssl' after --url. (akozumpl)
279 - repo: new parameter '--noverifyssl'. (akozumpl)
281 * Tue Jun 22 2010 Chris Lumens <clumens@redhat.com> - 1.75-1
282 - Update translation files. (clumens)
283 - Remove everything from pykickstart that's been deprecated forever. (clumens)
284 - Using the knowledge of what command supports what option, condense test cases. (clumens)
285 - Add a method to list all supported options for a command being tested. (clumens)
286 - Add support for F14. (clumens)
287 - The %end at the end of a section is now required. (clumens)
289 * Thu Jun 10 2010 Chris Lumens <clumens@redhat.com> - 1.74-1
290 - If an option is deprecated, do not care if it takes a value (#602303). (clumens)
291 - Don't compare the dest ("telnet") with the option string ("--telnet"). (clumens)
292 - The --connect= parameter wasn't really deprecated in FC6. (clumens)
294 * Tue Jun 01 2010 Chris Lumens <clumens@redhat.com> - 1.73-1
295 - Allow "ignoredisk" to explicitly specify interactive usage (#596804) (pjones)
297 * Fri Apr 23 2010 Chris Lumens <clumens@redhat.com> - 1.72-1
298 - Return non-zero on error from ksvalidator (#585284). (clumens)
300 * Wed Apr 14 2010 Chris Lumens <clumens@redhat.com> - 1.71-1
301 - Don't overwrite the excluded group list after every %packages line (#577334). (clumens)
302 - Add a bunch of test cases for the packages section. (clumens)
304 * Wed Mar 31 2010 Chris Lumens <clumens@redhat.com> - 1.70-1
305 - Add support for RAID4 (#578514). (clumens)
306 - Escape percent signs in the changelog. (clumens)
308 * Wed Mar 10 2010 Chris Lumens <clumens@redhat.com> - 1.69-1
309 - Add driverdisk --biospart= (#570437). (clumens)
310 - Fix IOError catching in ksflatten (jgregusk, #558650).
312 * Thu Jan 14 2010 Chris Lumens <clumens@redhat.com> - 1.68-1
313 - Support removing groups that were included by a glob (#554717). (clumens)
314 - Make sure that everything in version.versionMap has a handler. (clumens)
315 - Add support for RHEL6 (#552230). (clumens)
316 - Don't consider RHEL versions as developmental even if they're latest. (clumens)
317 - Add lineno to BaseData and derived classes (version 2) (hdegoede)
318 - Give the non mandatory iscsi --port argument a sane default (hdegoede)
319 - Change python_sitelib macro to use %%global for new rpm (hdegoede)
320 - Fix typo in iscsi parsing error message (hdegoede)
322 * Thu Dec 03 2009 Chris Lumens <clumens@redhat.com> - 1.67-1
323 - Don't use action="append_const" in firewall.py.
324 - Make "make archive" depend on test and check passing again.
325 - versionToString now works in all cases we test for.
326 - Fix the few pychecker errors outstanding in options.py.
327 - Fix make docs to make docs dir before trying to download files there (hdegoede)
329 * Wed Nov 25 2009 Hans de Goede <hdgoede@redhat.com> - 1.66-1
330 - Add --dcb option to fcoe command (#513011)
331 - Remove rhpl from tests
332 - Port bootloader --hvargs option added in rhel5
333 - Ignore comments when looking for %%ksappend lines (#525676)
334 - Use python 2.x exception syntax
336 * Thu Nov 12 2009 Chris Lumens <clumens@redhat.com> - 1.65-1
337 - Add additional arguments to BaseHandler.__init__ for better map control.
338 - Return the KickstartCommand/KickstartData object from dispatcher.
339 - Add an "sshpw" command for changing the passwords in anaconda's env.
340 - Add --proxy support to the url and repo commands.
341 - Add support for F13. Is it really that time already?
343 * Wed Sep 30 2009 Chris Lumens <clumens@redhat.com> - 1.64-1
344 - Update the zfcp command for F12 (#526360).
345 - Move "make" to %%build (#524215).
347 * Wed Sep 16 2009 Chris Lumens <clumens@redhat.com> - 1.63-1
348 - Add encryption key escrow support (mitr, #508963).
349 - Fix the repo test cases to expect quotes around the repo's name.
351 * Thu Sep 10 2009 Chris Lumens <clumens@redhat.com> - 1.62-1
352 - Support translated help text in optparse (#479519).
353 - If the input kickstart file cannot be read, raise IOError (#519477).
355 * Thu Aug 27 2009 Chris Lumens <clumens@redhat.com> - 1.61-1
356 - Include the error messages from URLGrabError in the exception (#518443).
358 * Tue Aug 11 2009 Chris Lumens <clumens@redhat.com> - 1.60-1
359 - Put quotes around the repo's name (Marc.Herbert@gmail.com).
360 - Make duplicate entries warnings, not errors (#516338).
362 * Tue Jul 28 2009 Chris Lumens <clumens@redhat.com> - 1.59-1
363 - Handle a few more places where a urlgrabber error could happen (#512951).
364 - Error out if the same partition/repo/network is defined twice (#512956).
365 - Call parent class tests first. (jlaska)
366 - Add KSOptionParser to FC3 upgrade command. (jlaska)
367 - Correct missing return stmt in _getArgsAsStr() (jlaska)
369 * Fri Jul 17 2009 Chris Lumens <clumens@redhat.com> - 1.58-1
370 - Adjust writePriority to fix lvm-on-raid0 test cases (jlaska).
371 - Add F12 to the version number tests. (clumens)
372 - F12_User test case. (dcantrell)
373 - Add --gecos argument to the 'user' command (dcantrell)
374 - Convert user.py to use _getArgsAsStr() (dcantrell)
376 * Fri Jul 10 2009 Chris Lumens <clumens@redhat.com> - 1.57-1
377 - Another patch to make the bootloader test work (jlaska).
379 * Thu Jul 09 2009 Chris Lumens <clumens@redhat.com> - 1.56-1
380 - Make sure to import the gettext stuff in fcoe. (clumens)
381 - Correctly deprecate bootloader --lba32 (jlaska).
382 - pykickstart: fix zfcp command writepriority (hdegoede)
383 - pykickstart: Add fcoe command (take 2) (hdegoede)
384 - Add a test case for RAID (jlaska).
386 * Thu Jul 02 2009 Chris Lumens <clumens@redhat.com> - 1.55-1
387 - Add support for the group command to F12 (#509119).
388 - RHEL5 now supports RAID 10.
389 - The f12 hander class should be called F12Handler. (jgranado)
390 - Remove bootloader --lba32.
391 - Add a new version of the driverdisk command without --type=.
392 - Add initial support for F12.
393 - Fetch the programmers-guide from the wiki now.
395 * Mon May 18 2009 Chris Lumens <clumens@redhat.com> - 1.54-1
396 - Make sure the F11 handler gets used for "partition" and "part" (#501020).
398 * Wed Apr 29 2009 Chris Lumens <clumens@redhat.com> - 1.53-1
399 - Move lineno= from KSOptionParser.__init__ to parse_args (#497149). (clumens)
400 - Use the F11 version of the partition command. (clumens)
401 - Remove the --start and --end options since anaconda no longer uses them. (clumens)
402 - Remove a broken test case. (clumens)
404 * Wed Feb 18 2009 Chris Lumens <clumens@redhat.com> - 1.52-1
405 - Add lots more test cases (alindebe, mgracik, stickster).
406 - Add a skip attribute on key to shut up pychecker.
407 - Only show autostep command when requested (jlaska)
408 - Strip spaces from service names, and require an option to be provided.
409 - Surround services lists in double quotes.
410 - Remove the extra space from the services __str__ method.
411 - Fix output formatting bugs in firewall, partition, and repo (mgracik).
412 - Specifying both or neither of --drives and --only-use should be an error.
413 - Corrected newline char in return value of FC6_Method. (mgracik)
414 - Make --drives a required option for FC3, and catch no args on F8.
415 - Fix final printing of the rescue command (mgracik).
416 - Surround output strings in double quotes.
417 - Fix a typo in the deviceprobe command.
418 - Revert the more strict option processing on displaymode.
419 - Properly handle erroring on extra args, not just extra options.
420 - Don't use the logging class since it interferes with the logging test.
421 - port without host should raise KickstartParseError, not kickstartValueError.
422 - Add the --key option to option processing, since it's a valid argument.
423 - Fix test cases that were failing due to the new use of KSOptionParser.
424 - Teach driverdisk.py command to reject extra partitions (stickster).
425 - Add KSOptionParser to all commands ... enables more strick option checking (jlaska).
426 - Use KSOptionParser so we can catch bad command options (jlaska).
428 * Thu Jan 29 2009 Chris Lumens <clumens@redhat.com> - 1.51-1
429 - Make a couple changes to how the logging command is handled.
430 - Add a lot of test cases (clumens, alindebe, jlaska, fcami, adamwill, pfrields).
431 - Fix output formatting for the rootpw command.
432 - For commands that take exactly one argument, check and error correctly.
433 - Surround module options in quotes on the output side (jlaska).
434 - Set module opts in the FC3 handler correctly.
435 - Fix newlines on the device command output (jlaska).
436 - If --autoscreenshot is not specified, still output "autostep".
437 - Move the currentCmd and currentLine into getParser(). (jlaska)
438 - Write out an selinux line if set to disabled, but not if None.
439 - F9_LogVolData should inherit from FC4_LogVolData, not FC3_LogVolData (jlaska).
440 - Add unittest framework along with logvol and vnc unittests. (jlaska)
441 - Don't set the KSOption.required attribute in the constructor (jlaska).
443 * Sat Jan 10 2009 Chris Lumens <clumens@redhat.com> - 1.50-1
444 - Add a script to diff two versions of kickstart syntax.
445 - Add an option to ksvalidator to list all available syntax versions.
446 - Remove a couple extra newlines in output formatting.
447 - Add documentation for the new %%include representation.
448 - Add support %include to the pykickstart data objects.
450 * Thu Jan 08 2009 Chris Lumens <clumens@redhat.com> - 1.49-1
451 - Add upgrade --root-device (atodorov, #471232).
452 - Use python's builtin set rather than the Sets module (#477836, dcantrell).
454 * Tue Dec 23 2008 Chris Lumens <clumens@redhat.com> - 1.48-1
455 - Allow ignoring group metadata from repos, using a '--ignoregroups'
456 boolean. (notting)
457 - Add initial support for F11.
458 - Specify the command versions in the handlers instead of making copies.
459 - Remove empty and pointless __init__ methods.
460 - Pass arguments to superclasses via *args and **kwargs, all the way up.
461 - Add removedKeywords and removedAttrs lists on Commands and Data.
462 - Fix version regexes to handle double digits and minor releases (jlaska).
464 * Thu Oct 30 2008 Chris Lumens <clumens@redhat.com> - 1.47-1
465 - Fix enabling services we specify by specific options.
467 * Mon Oct 27 2008 Chris Lumens <clumens@redhat.com> - 1.46-1
468 - Add support for firewall --service (#467005).
470 * Tue Oct 14 2008 Chris Lumens <clumens@redhat.com> - 1.45-1
471 - Lots of translation updates.
472 - Remove use of string.partition for python2.4 (atodorov).
474 * Mon Sep 22 2008 Chris Lumens <clumens@redhat.com> - 1.44-1
475 - Add support for reverse CHAP to the kickstart iscsi command (hans)
476 - Fix typo (katzj)
478 * Wed Sep 03 2008 Chris Lumens <clumens@redhat.com> - 1.43-1
479 - Revert "Do not include passphrases for encrypted block devices in
480 anaconda-ks.cfg." (dlehman)
481 - yum doesn't like when mirrorlist is "". (clumens)
483 * Mon Aug 11 2008 Chris Lumens <clumens@redhat.com> - 1.42-1
484 - Add rescue command to pykickstart (atodorov)
485 - Sort %%packages output (katzj)
486 - Fix a typo (atodorov).
488 * Fri Aug 01 2008 Chris Lumens <clumens@redhat.com> - 1.41-1
489 - RHEL5 supports ignoredisk --only-use now too. (clumens)
490 - Do not include passphrases for encrypted block devices in
491 anaconda-ks.cfg. (dlehman)
492 - Fix F9,F10,RHEL5 "part" commands to use the same class as
493 "partition". (dlehman)
494 - Add an apply method() for commands and implement for lang (katzj)
496 * Tue Jul 15 2008 Chris Lumens <clumens@redhat.com> - 1.40-1
497 - RHEL5_LogVolData should inherit from FC4, not FC3.
498 Also fix FC9->F9 typo. (dlehman)
499 - Support creation of encrypted block devices in RHEL5. (#449830) (dlehman)
500 - Use the right LogVolData objects for RHEL3 and 4 (jlaska). (clumens)
501 - We no longer use rhpl for translations. (clumens)
502 - All the base classes should derive from object. (clumens)
504 * Fri Jun 13 2008 Chris Lumens <clumens@redhat.com> - 1.39-1
505 - It's helpful to return the parser object. (clumens)
507 * Tue Jun 10 2008 Chris Lumens <clumens@redhat.com> - 1.38-1
508 - Fix loading the Handler object by looking for a more specific
509 name (#450740). (clumens)
511 * Sun Jun 08 2008 Chris Lumens <clumens@redhat.com> - 1.37-1
512 - XConfig is still used by other projects, so just deprecate some
513 options. (clumens)
515 * Thu May 29 2008 Chris Lumens <clumens@redhat.com> - 1.36-1
516 - It should be repo --cost, not repo --priority. (clumens)
518 * Fri May 23 2008 Chris Lumens <clumens@redhat.com> - 1.35-1
519 - Bring driverdisk command in line with the docs. (clumens)
520 - Change RAID command print priorities (jlaska).
521 - According to docs, physvols are space delimited. (jlaska)
522 - Don't write the label out twice (jlaska).
523 - Deprecate monitor and xconfig commands. (clumens)
525 * Wed May 07 2008 Chris Lumens <clumens@redhat.com> - 1.34-1
526 - Load the handler module automatically. (clumens)
527 - Add support for F10. (clumens)
528 - Initialize cmd.handler earlier; fixes repo.methodToRepo() (markmc)
529 - Don't shadow builtin function names. (clumens)
530 - Running check is now required before pykickstart can be packaged. (clumens)
531 - Reorganize code a little bit to pass pychecker. (clumens)
533 * Tue Apr 08 2008 Chris Lumens <clumens@redhat.com> - 1.33-1
534 - Fix whitespace when printing out the bootloader command (pmeyers).
535 - Fix the type on bootloader --timeout processing. (clumens)
537 * Wed Apr 02 2008 Chris Lumens <clumens@redhat.com> - 1.32-1
538 - Make the string reader act like the file reader upon EOF. (clumens)
539 - Add syntax for encrypted logical volumes. (clumens)
541 * Tue Mar 25 2008 Chris Lumens <clumens@redhat.com> - 1.31-1
542 - Support end-of-line comments. (clumens)
543 - Lots of translation updates.
545 * Tue Feb 26 2008 Chris Lumens <clumens@redhat.com> - 1.30-1
546 - Reverse writePriorities of iscsi and iscsname (#434965, jlaska).
547 - Fix printing of iscsiname command (#434945, jlaska).
548 - Don't traceback on ENOENT. (pnasrat)
549 - Store the mouse name as a string, not a list. (clumens)
550 - Update translations.
552 * Wed Jan 30 2008 Chris Lumens <clumens@redhat.com> - 1.29-1
553 - Renamed bootproto=ask to bootproto=query, add to RHEL5 as well. (clumens)
555 * Wed Jan 23 2008 Chris Lumens <clumens@redhat.com> - 1.28-1
556 - Fix traceback on volgroup command. (clumens)
558 * Thu Jan 17 2008 Chris Lumens <clumens@redhat.com> - 1.27-1
559 - The bootprotoList needs to be defined before it's used. (clumens)
561 * Thu Jan 17 2008 Chris Lumens <clumens@redhat.com> - 1.26-1
562 - Add support for network --bootproto=ask. (clumens)
564 * Tue Jan 15 2008 Chris Lumens <clumens@redhat.com> - 1.25-1
565 - Add the version to the output ks file. (clumens)
566 - Add syntax for encrypted partitions and raid devices. (clumens)
568 * Thu Jan 10 2008 Chris Lumens <clumens@redhat.com> - 1.24-1
569 - Make inheritance and overriding of %%packages work (#427768). (clumens)
570 - Add an option for which languages should be installed. (katzj)
571 - Use the right name for the iscsi --target variable (#418781). (clumens)
573 * Mon Dec 10 2007 Chris Lumens <clumens@redhat.com> - 1.23-1
574 - Take Makefile improvements from anaconda.
575 - Fix a traceback on F9 zerombr command (#395431).
576 - Update to handle new Python eggs packaging.
578 * Tue Nov 20 2007 Chris Lumens <clumens@redhat.com> 1.22-1
579 - Don't process or write out vnc --enabled (jlaska AT redhat DOT com).
580 - Fix a traceback in the clearpart command.
582 * Tue Nov 06 2007 Chris Lumens <clumens@redhat.com> 1.21-1
583 - Save script line numbers for debugging.
584 - More internal cleanups.
586 * Wed Oct 31 2007 Chris Lumens <clumens@redhat.com> 1.20-1
587 - Pull wiki docs from the new location.
588 - Fix error messages for options that have been removed after having been
589 previously deprecated.
590 - zerombr no longer takes any arguments.
591 - %%packages --ignoredeps --resolvedeps have been removed.
592 - firewall --high --medium have been removed.
593 - vnc --connect has been removed.
594 - xconfig options from monitor have now been removed.
595 - --bytes-per-inode has been marked as deprecated.
596 - Fix typos.
597 - Add --fsprofile option to disk commands (pjones).
598 - Add F9 support (pjones).
599 - Lots of internal fixes (clumens, pjones).
601 * Tue Oct 23 2007 Chris Lumens <clumens@redhat.com> 1.19-1
602 - Fix a traceback on the cdrom method.
604 * Thu Oct 18 2007 Chris Lumens <clumens@redhat.com> 1.18-1
605 - Don't write out %%end to packages and scripts if the syntax version doesn't
606 support it.
607 - Remove obsolete translation (#332221).
609 * Thu Oct 04 2007 Chris Lumens <clumens@redhat.com> 1.17-1
610 - Simplify argument processing and printing.
612 * Wed Oct 03 2007 Chris Lumens <clumens@redhat.com> 1.16-1
613 - Undeprecate %%packages --excludedocs.
614 - Fix a traceback in the device command handling.
615 - Add bootloader --timeout (katzj).
617 * Tue Oct 02 2007 Chris Lumens <clumens@redhat.com> 1.15-1
618 - Update translations (#259121).
619 - The device command no longer takes a type argument.
621 * Fri Sep 28 2007 Chris Lumens <clumens@redhat.com> 1.14-1
622 - Fix output formatting for packages section header (#310211).
623 - Add a script to flatten kickstart files containing includes (katzj).
625 * Wed Sep 12 2007 Chris Lumens <clumens@redhat.com> 1.13-1
626 - Add a function to convert URL method strings into repo objects
627 (jkeating).
628 - Writer formatting fixes.
629 - Add kickstart documentation from the Fedora Wiki.
631 * Tue Sep 04 2007 Chris Lumens <clumens@redhat.com> 1.12-1
632 - Fix lots of problems in processing the bootloader, device, network, and
633 raid commands.
634 - Add %%end when writing out scripts and packages.
635 - Add a makefile target to run pychecker to cut down on errors in
636 releases.
638 * Mon Sep 3 2007 Jeremy Katz <katzj@redhat.com> - 1.11-1
639 - fix a few tracebacks
641 * Fri Aug 31 2007 Chris Lumens <clumens@redhat.com> 1.10-1
642 - Add network --ipv6=.
644 * Fri Aug 24 2007 Chris Lumens <clumens@redhat.com> 1.9-1
645 - Add support for the %%end directive to be placed at the end of scripts
646 and packages sections. Deprecate old syntax.
647 - Clean up after ksvalidator if pykickstart issues a traceback.
648 - Add support for repo --priority --includepkgs --excludepkgs.
649 - Fix newline at end of reboot --eject output (#253562).
651 * Mon Aug 13 2007 Chris Lumens <clumens@redhat.com> 1.8-1
652 - Fix type checking of string values.
654 * Thu Aug 09 2007 Chris Lumens <clumens@redhat.com> 1.7-1
655 - Clarify license in spec file and all source files.
656 - Check string values to options to make sure they're not other options
657 (#251318).
659 * Thu Aug 02 2007 Chris Lumens <clumens@redhat.com> 1.6-1
660 - Fix a couple tracebacks in ksvalidator.
661 - Change --class to --dhcpclass (#248912).
663 * Thu Jul 19 2007 Chris Lumens <clumens@redhat.com> 1.5-2
664 - Require rhpl (#248953).
666 * Tue Jul 17 2007 Chris Lumens <clumens@redhat.com> 1.5-1
667 - Fix traceback when calling preprocessKickstart.
669 * Tue Jul 17 2007 Chris Lumens <clumens@redhat.com> 1.4-1
670 - Add methods to handle the %%ksappend directive.
671 - Fix ignoredisk --disks.
673 * Wed Jul 11 2007 Chris Lumens <clumens@redhat.com> - 1.3-1
674 - Add support for ignoredisk --only-use.
675 - Fix traceback in raid command printing method (#246709).
677 * Fri Jun 08 2007 Chris Lumens <clumens@redhat.com> - 1.2-2
678 - Fix package review problems (#226334).
680 * Mon Jun 04 2007 Chris Lumens <clumens@redhat.com> - 1.2-1
681 - Fix harddrive install method error checking (#232492).
682 - Set authentication information from the input line to preserve quoting
683 (#241657).
684 - Allow included files to be given by URL.
685 - Fix typo in user --iscrypted option.
687 * Mon May 14 2007 Chris Lumens <clumens@redhat.com> - 1.1-1
688 - Better regexes for splitting version strings into family and version.
689 - Add basic support for RHEL3.
690 - Update translations.
692 * Fri Apr 13 2007 Chris Lumens <clumens@redhat.com> - 1.0-1
693 - Update documentation.
694 - Update translations.
696 * Mon Mar 19 2007 Chris Lumens <clumens@redhat.com> - 0.100-1
697 - bootloader should be written out after upgrade/install.
698 - Treat class names as unicode strings (#231053).
700 * Wed Mar 07 2007 Chris Lumens <clumens@redhat.com> - 0.99-1
701 - The timezone command didn't recognize --isUtc before FC6 (#231189).
702 - Recognize %%ksappend lines in ksvalidator.
703 - Don't set default values in some command __init__ methods.
704 - Added an updates command.
705 - Add support for RAID10.
707 * Mon Feb 26 2007 Chris Lumens <clumens@redhat.com> - 0.98-1
708 - Fix device command syntax to match anaconda.
709 - Fix __call__ on method command.
711 * Wed Feb 21 2007 Chris Lumens <clumens@redhat.com> - 0.97-1
712 - Fix traceback when not overriding default mappings (#229505).
714 * Tue Feb 20 2007 Chris Lumens <clumens@redhat.com> - 0.96-1
715 - Fix __str__ methods for langsupport and reboot commands.
716 - Renamed BaseHandler.empty to BaseHandler.maskAllExcept.
717 - Split command objects out into their own files in commands/.
718 - Rename command objects to start with Version_.
719 - Support extended group selection syntax.
721 * Wed Feb 14 2007 Chris Lumens <clumens@redhat.com> - 0.95-1
722 - KickstartParser no longer takes a version argument.
723 - Be more lenient in what strings stringToVersion accepts.
724 - Allow setting state on one data object from multiple files.
726 * Wed Feb 07 2007 Chris Lumens <clumens@redhat.com> - 0.94-1
727 - Add a newline to the end of the key command output.
728 - Use network bootproto constants (#197694).
729 - Fix tracebacks in subclass __str__ methods (#226734).
731 * Wed Jan 31 2007 Chris Lumens <clumens@redhat.com> - 0.93-2
732 - Make some minor spec file changes to get closer to the extras guidelines.
734 * Thu Jan 25 2007 Chris Lumens <clumens@redhat.com> - 0.93-1
735 - Add support for FC3, RHEL4, and RHEL5.
736 - The key command was not supported until after FC6.
737 - Accept more strings in stringToVersion.
739 * Fri Jan 19 2007 Chris Lumens <clumens@redhat.com> - 0.92-1
740 - Fix KickstartVersionError reporting.
741 - Add a version attribute to handler objects.
742 - Fix line number reporting on lots of commands.
743 - Add initial support for Fedora 7 and remove deprecated commands.
744 - Accept a --default argument to the %%packages header (#221305).
746 * Wed Jan 17 2007 Chris Lumens <clumens@redhat.com> - 0.91-1
747 - Add a method to read kickstart files from strings.
749 * Tue Jan 16 2007 Chris Lumens <clumens@redhat.com> - 0.90-1
750 - Support multiple versions of kickstart syntax from one code base
751 (#189348).
752 - Fix inconsistency between Script parser and writer (#222877).
754 * Fri Dec 15 2006 Chris Lumens <clumens@redhat.com> - 0.43-1
755 - Pull in new translations (#216620).
757 * Thu Dec 7 2006 Jeremy Katz <katzj@redhat.com> - 0.42-2
758 - rebuild against python 2.5
760 * Tue Dec 05 2006 Chris Lumens <clumens@redhat.com> - 0.42-1
761 - Fix traceback when writing out repo command (#218274).
763 * Fri Dec 01 2006 Chris Lumens <clumens@redhat.com> - 0.41-1
764 - Fix traceback when using deprecated commands (#218047, #218059).
766 * Thu Nov 30 2006 Chris Lumens <clumens@redhat.com> - 0.40-1
767 - Pull in new translations (#216620).
768 - Add --level argument to logging command writer.
770 * Tue Oct 24 2006 Chris Lumens <clumens@redhat.com> - 0.39-2
771 - Fix release number.
773 * Tue Oct 24 2006 Chris Lumens <clumens@redhat.com> - 0.39-1
774 - Add writer for --key (#211997).
776 * Tue Oct 17 2006 Jeremy Katz <katzj@redhat.com> - 0.38-1
777 - allow --skip for installation number as well (#207029)
779 * Mon Oct 16 2006 Jeremy Katz <katzj@redhat.com> - 0.37-1
780 - support for installation numbers (#207029)
782 * Fri Oct 13 2006 Bill Nottingham <notting@redhat.com> - 0.36-1
783 - use valid charsets in translations (#210720)
785 * Fri Sep 29 2006 Chris Lumens <clumens@redhat.com> - 0.35-1
786 - Fix traceback in harddrive command (#208557).
788 * Mon Sep 25 2006 Chris Lumens <clumens@redhat.com> - 0.34-1
789 - Add support for --biospart option to harddrive (#207585).
790 - Update writer for syntax changes.
792 * Wed Sep 20 2006 Jeremy Katz <katzj@redhat.com> - 0.33-1
793 - improved iscsi syntax
794 - allow multiple zfcp devs
796 * Thu Jul 20 2006 Chris Lumens <clumens@redhat.com> 0.32-1
797 - Limit --bootproto to what anaconda supports.
798 - Add --noipv4 and --noipv6 network options.
800 * Tue Jun 20 2006 Chris Lumens <clumens@redhat.com> 0.31-1
801 - Handle nfs --opts (katzj).
802 - RAID devices should be integers instead of strings (#176537).
803 - Add initial support for iscsi (katzj).
805 * Tue Jun 06 2006 Chris Lumens <clumens@redhat.com> 0.30-2
806 - Add BuildRequires to fix building under mock (#194156, Joost Soeterbroek
807 <fedora AT soeterbroek.com>).
809 * Thu May 25 2006 Chris Lumens <clumens@redhat.com> 0.30-1
810 - Change order of LVM-related writing functions (#193073).
811 - Require urlgrabber.
812 - Return a more useful error message on unknown commands.
813 - Fix logvol writing typo.
814 - Make ksvalidator validate from a URL in addition to a file.
815 - Don't write out an empty packages section (#192851).
817 * Tue May 23 2006 Chris Lumens <clumens@redhat.com> 0.29-1
818 - Add multipath command, handlers, and data objects (pjones).
819 - Rename --ports to --port in writer.
821 * Mon May 15 2006 Chris Lumens <clumens@redhat.com> 0.28-1
822 - Support --mtu for the network command (#191328).
823 - Accept --isUtc for backwards compatibility.
825 * Wed May 04 2006 Chris Lumens <clumens@redhat.com> 0.27-1
826 - Output formatting fixes.
827 - Added commands for managing users and services.
829 * Mon Apr 17 2006 Chris Lumens <clumens@redhat.com> 0.26-1
830 - Ignore spaces before group names (#188095).
831 - Added some translations.
832 - Add options for repo command.
833 - Reorder %%packages section output.
834 - Output %%packages header options.
835 - Initialize RAID and volume group members to empty lists.
837 * Mon Mar 27 2006 Chris Lumens <clumens@redhat.com> 0.25-1
838 - Add support for the logging command.
840 * Mon Mar 27 2006 Chris Lumens <clumens@redhat.com> 0.24-1
841 - Don't write out a blank xconfig line.
842 - Reorder output handlers to group like commands together.
843 - Mark strings for translation.
845 * Tue Mar 07 2006 Chris Lumens <clumens@redhat.com> 0.23-1
846 - Backwards compatibility support for options to zerombr.
848 * Fri Feb 24 2006 Chris Lumens <clumens@redhat.com> 0.22-1
849 - Get ignoredisk working again (#182934).
851 * Fri Feb 17 2006 Chris Lumens <clumens@redhat.com> 0.21-1
852 - Provide an option to not traceback on missing include files (#181760).
853 - Update programming documentation.
855 * Mon Feb 13 2006 Chris Lumens <clumens@redhat.com> 0.20-1
856 - Correctly set --noformat and --useexisting on lvm and raid.
858 * Mon Feb 13 2006 Chris Lumens <clumens@redhat.com> 0.19-1
859 - --onboot requires a value (#180987).
860 - Be more strict about commands that don't take arguments.
862 * Thu Feb 09 2006 Chris Lumens <clumens@redhat.com> 0.18-1
863 - Fix some errors pychecker caught.
864 - Allow exceptions to not be fatal so ksvalidator can spot more errors in
865 a single pass (#179894).
867 * Wed Feb 01 2006 Chris Lumens <clumens@redhat.com> 0.17-1
868 - Don't set a default port for vnc.
870 * Tue Jan 31 2006 Chris Lumens <clumens@redhat.com> 0.16-1
871 - Give dmraid string an initial value.
872 - Handle None on partition size.
874 * Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 0.15-1
875 - Add dmraid support
877 * Mon Jan 30 2006 Chris Lumens <clumens@redhat.com> 0.14-1
878 - Fix VNC parameter parsing (#179209).
879 - Deprecate --connect. Add --host and --port instead.
881 * Thu Jan 19 2006 Chris Lumens <clumens@redhat.com> 0.13-1
882 - Recognize the --eject parameter to shutdown/halt.
883 - Store the exact post-installation action in ksdata.
885 * Mon Jan 09 2006 Chris Lumens <clumens@redhat.com> 0.12-1
886 - Clean up output quoting.
887 - Finish removing monitor-related stuff from xconfig.
889 * Mon Dec 12 2005 Chris Lumens <clumens@redhat.com> 0.11-1
890 - Deprecate monitor-related options to xconfig.
892 * Thu Dec 08 2005 Chris Lumens <clumens@redhat.com> 0.10-1
893 - Support --bytes-per-inode on raid
894 (Curtis Doty <Curtis at GreenKey.net> #175288).
896 * Wed Nov 16 2005 Jeremy Katz <katzj@redhat.com> - 0.9-1
897 - fixup network --onboot
899 * Thu Nov 03 2005 Chris Lumens <clumens@redhat.com> 0.8-1
900 - Default to SELINUX_ENFORCING.
901 - Default partition sizes to None for anaconda (#172378).
902 - Don't call shlex.split on anything inside a script (#172313).
904 * Tue Nov 01 2005 Chris Lumens <clumens@redhat.com> 0.7-1
905 - Fix clearpart --all.
906 - vnc command does not require --connect option (#172192).
907 - network --onboot does not take any option.
908 - Remove extra spaces from firewall --ports and --trust.
909 - Write out network --<service> options.
911 * Fri Oct 28 2005 Chris Lumens <clumens@redhat.com> 0.6-1
912 - Add --resolvedeps and --ignoredeps as deprecated options.
913 - Pass line number to header functions.
915 * Mon Oct 24 2005 Chris Lumens <clumens@redhat.com> 0.5-1
916 - Add line numbers to exception reporting.
917 - Added ksvalidator.
919 * Wed Oct 19 2005 Chris Lumens <clumens@redhat.com> 0.4-1
920 - Correct deprecated attribute on options.
921 - Added programming documentation.
923 * Thu Oct 13 2005 Chris Lumens <clumens@redhat.com> 0.3-2
924 - Correct python lib directory on 64-bit archs (#170621).
926 * Fri Oct 07 2005 Chris Lumens <clumens@redhat.com> 0.3-1
927 - Add a deprecated attribute to options.
928 - Add --card option back to xconfig and mark as deprecated.
929 - Throw a deprecation warning on mouse and langsupport commands.
930 - Rename Writer to KickstartWriter for consistency.
931 - Collapse scripts into a single list and add an attribute on Script to
932 differentiate.
934 * Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 0.2-1
935 - Rename module to pykickstart to avoid conflicts in anaconda.
936 - Rename data classes for consistency.
937 - Add default bytesPerInode settings.
939 * Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 0.1-1
940 - Created package from anaconda.