Bump version. I can already tell I'm going to forget to do this a lot.
[pykickstart.git] / pykickstart.spec
blobd1cd251ed08cc65f11be010fa77f773c052da4c4
1 Summary: A python library for manipulating kickstart files
2 Name: pykickstart
3 Version: 0.3
4 Release: 1
5 Source0: %{name}-%{version}.tar.gz
6 License: GPL
7 Group: System Environment/Libraries
8 BuildArch: noarch
9 BuildRoot: %{_tmppath}/%{name}-root
10 BuildRequires: python-devel
11 Requires: python >= %(%{__python} -c "import sys; print sys.version[:3]")
13 %description
14 The pykickstart package is a python library for manipulating kickstart
15 files.
17 %prep
18 %setup -q
19 make
21 %build
23 %install
24 rm -rf $RPM_BUILD_ROOT
25 python setup.py install --root=${RPM_BUILD_ROOT}
27 %clean
28 rm -rf $RPM_BUILD_ROOT
30 %files
31 %defattr(-,root,root)
32 %doc README ChangeLog COPYING
33 %{_libdir}/python?.?/site-packages/pykickstart
35 %changelog
36 * Fri Oct 07 2005 Chris Lumens <clumens@redhat.com> 0.3-1
37 - Add a deprecated attribute to options.
38 - Add --card option back to xconfig and mark as deprecated.
39 - Throw a deprecation warning on mouse and langsupport commands.
40 - Rename Writer to KickstartWriter for consistency.
41 - Collapse scripts into a single list and add an attribute on Script to
42 differentiate.
44 * Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 0.2-1
45 - Rename module to pykickstart to avoid conflicts in anaconda.
46 - Rename data classes for consistency.
47 - Add default bytesPerInode settings.
49 * Wed Oct 05 2005 Chris Lumens <clumens@redhat.com> 0.1-1
50 - Created package from anaconda.