Compare commits

...

5 Commits
master ... f9

Author SHA1 Message Date
Fedora Release Engineering 3977f44a89 dist-git conversion 2010-07-29 10:04:23 +00:00
Bill Nottingham b0023f553c Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:49:18 +00:00
Christopher Edward Lumens 71548d5836 Rebuild for F9 update. 2008-06-10 19:49:31 +00:00
Christopher Edward Lumens 9ab746a64a Rebuild for update. 2008-06-10 18:09:12 +00:00
Jesse Keating 45fee6a094 Initialize branch F-9 for pykickstart 2008-04-21 15:56:35 +00:00
5 changed files with 54 additions and 24 deletions

View File

@ -21,3 +21,8 @@ pykickstart-1.30.tar.gz
pykickstart-1.31.tar.gz
pykickstart-1.32.tar.gz
pykickstart-1.33.tar.gz
pykickstart-1.34.tar.gz
pykickstart-1.35.tar.gz
pykickstart-1.36.tar.gz
pykickstart-1.37.tar.gz
pykickstart-1.38.tar.gz

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: pykickstart
# $Id$
NAME := pykickstart
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attempt a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View File

@ -3,12 +3,13 @@
Summary: A python library for manipulating kickstart files
Name: pykickstart
Url: http://fedoraproject.org/wiki/pykickstart
Version: 1.33
Release: 1%{?dist}
Version: 1.38
Release: 2%{?dist}
# This is a Red Hat maintained package which is specific to
# our distribution. Thus the source is only available from
# within this srpm.
Source0: %{name}-%{version}.tar.gz
Patch0: pykickstart.version.patch
License: GPLv2
Group: System Environment/Libraries
@ -23,6 +24,7 @@ files.
%prep
%setup -q
%patch -p1
make
%build
@ -44,6 +46,38 @@ rm -rf %{buildroot}
%{_bindir}/ksflatten
%changelog
* Tue Jun 10 2008 Chris Lumens <clumens@redhat.com> 1.38-2
- Set the default syntax version to F9.
* Tue Jun 10 2008 Chris Lumens <clumens@redhat.com> - 1.38-1
- Fix loading the Handler object by looking for a more specific
name (#450740). (clumens)
* Tue Jun 10 2008 Chris Lumens <clumens@redhat.com> 1.37-2
- Set the default syntax version to F9.
* Sun Jun 08 2008 Chris Lumens <clumens@redhat.com> - 1.37-1
- XConfig is still used by other projects, so just deprecate some
options. (clumens)
* Thu May 29 2008 Chris Lumens <clumens@redhat.com> - 1.36-1
- It should be repo --cost, not repo --priority. (clumens)
* Fri May 23 2008 Chris Lumens <clumens@redhat.com> - 1.35-1
- Bring driverdisk command in line with the docs. (clumens)
- Change RAID command print priorities (jlaska).
- According to docs, physvols are space delimited. (jlaska)
- Don't write the label out twice (jlaska).
- Deprecate monitor and xconfig commands. (clumens)
* Wed May 07 2008 Chris Lumens <clumens@redhat.com> - 1.34-1
- Load the handler module automatically. (clumens)
- Add support for F10. (clumens)
- Initialize cmd.handler earlier; fixes repo.methodToRepo() (markmc)
- Don't shadow builtin function names. (clumens)
- Running check is now required before pykickstart can be packaged. (clumens)
- Reorganize code a little bit to pass pychecker. (clumens)
* Tue Apr 08 2008 Chris Lumens <clumens@redhat.com> - 1.33-1
- Fix whitespace when printing out the bootloader command (pmeyers).
- Fix the type on bootloader --timeout processing. (clumens)

12
pykickstart.version.patch Normal file
View File

@ -0,0 +1,12 @@
diff -ru pykickstart-1.37.orig/pykickstart/version.py pykickstart-1.37/pykickstart/version.py
--- pykickstart-1.37.orig/pykickstart/version.py 2008-06-08 19:09:46.000000000 -0400
+++ pykickstart-1.37/pykickstart/version.py 2008-06-10 14:07:20.000000000 -0400
@@ -63,7 +63,7 @@
F10 = 8000
# This always points at the latest version and is the default.
-DEVEL = F10
+DEVEL = F9
"""A one-to-one mapping from string representations to version numbers."""
versionMap = {

View File

@ -1 +1 @@
cd3a93072bf8dbe371037f2b569d6296 pykickstart-1.33.tar.gz
f003491d5d4cf93d3fd785b469529780 pykickstart-1.38.tar.gz