rpms/anaconda/devel .cvsignore, 1.615, 1.616 anaconda.spec, 1.762, 1.763 sources, 1.749, 1.750 anaconda-11.5.0.23-efi-cds.patch, 1.1, NONE late.patch, 1.1, NONE

David Cantrell dcantrel at fedoraproject.org
Fri Mar 6 01:45:14 UTC 2009


Author: dcantrel

Update of /cvs/pkgs/rpms/anaconda/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6206

Modified Files:
	.cvsignore anaconda.spec sources 
Removed Files:
	anaconda-11.5.0.23-efi-cds.patch late.patch 
Log Message:
* Thu Mar 05 2009 David Cantrell <dcantrell at redhat.com> - 11.5.0.25-1
- Schedule device destroy actions for partitions last. (dlehman)
- Pass storage.disks, not storage, to createAllowed.... (#488860) (dlehman)
- Nodev filesystems always exist. And the device is arbitrary. (dlehman)
- Include proc, &c filesystems in fstab and FSSet.{mount/umount}Filesystems.
  (dlehman)
- Remove FSSet.writeFSTab. That job is handled elsewhere. (dlehman)
- Add properties to FSSet to provide the nodev entries. (dlehman)
- Fix incomplete format in Storage.deviceImmutable. (dlehman)
- Make sure we use the same disk the free space is on. (#488807) (dlehman)
- Prevent clobbering of name 'mdraid' by qualifying it. (dlehman)
- Handle unformatted disks and cdroms in Storage.exceptionDisks. (dlehman)
- Add resizeArgs property for resizable filesystems. (dcantrell)
- Fill out class NTFS a bit more. (dcantrell)
- Add fsckProg property to class FS. (dcantrell)
- Ext2FS.migratable(self) -> Ext2FS.migratable (dcantrell)
- Fix StorageDevice.minSize() and PartitionDevice.maxSize() (dcantrell)
- Center resize window on the screen. (dcantrell)
- Do not raise DeviceError if not bootable device is found. (dcantrell)
- Do an even more thorough job of ignoring disks libparted doesn't like.
  (clumens)
- Fix a couple problems on the "Change device" bootloader dialog. (clumens)
- Fix a typo when writing out the mdadm config file. (clumens)
- Remove all uses of isys.cdromList, which no longer exists. (clumens)
- Check to see if we're on S390 on the congrats screen (#488747). (clumens)
- Handle non-fatal errors more gracefully in addUdevDevice. (dlehman)
- partRequests no longer exists, so don't try to import it (#488743).
  (clumens)
- When building the exceptionDisks list, skip devices libparted doesn't
  like. (clumens)
- Iterate over devicetree.devices.values, not devicetree. (dlehman)
- Add a get() method to Flags, since it pretends to be a dictionary.
  (clumens)
- Stop with the fsset usage. (dlehman)
- Format message string after translation not before (msivak)
- We need newer python-cryptsetup because of the default values for cipher
  and keysize for luskFormat (msivak)
- If a drive is not initialized, offer reinitialization or ignoring the
  drive to the user (msivak)
- More syntax errors / traceback fixes (hdegoede)
- Fix syntax errors (rvykydal)
- Implement Storage.sanityCheck, mostly from old partitions code. (dlehman)



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/anaconda/devel/.cvsignore,v
retrieving revision 1.615
retrieving revision 1.616
diff -u -r1.615 -r1.616
--- .cvsignore	5 Mar 2009 03:51:07 -0000	1.615
+++ .cvsignore	6 Mar 2009 01:44:43 -0000	1.616
@@ -1,2 +1,2 @@
-anaconda-11.5.0.24.tar.bz2
 clog
+anaconda-11.5.0.25.tar.bz2


Index: anaconda.spec
===================================================================
RCS file: /cvs/pkgs/rpms/anaconda/devel/anaconda.spec,v
retrieving revision 1.762
retrieving revision 1.763
diff -u -r1.762 -r1.763
--- anaconda.spec	5 Mar 2009 08:54:21 -0000	1.762
+++ anaconda.spec	6 Mar 2009 01:44:44 -0000	1.763
@@ -2,8 +2,8 @@
 
 Summary: Graphical system installer
 Name:    anaconda
-Version: 11.5.0.24
-Release: 3
+Version: 11.5.0.25
+Release: 1
 License: GPLv2+
 Group:   Applications/System
 URL:     http://fedoraproject.org/wiki/Anaconda
@@ -14,10 +14,6 @@
 # make archive-no-tag
 Source0: %{name}-%{version}.tar.bz2
 
-# Patch for EFI CDs
-Patch0: anaconda-11.5.0.23-efi-cds.patch
-Patch1: late.patch
-
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 # Versions of required components (done so we make sure the buildrequires
@@ -157,8 +153,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1 -b .late
 
 %build
 %{__make} depend
@@ -215,6 +209,49 @@
 %endif
 
 %changelog
+* Thu Mar 05 2009 David Cantrell <dcantrell at redhat.com> - 11.5.0.25-1
+- Schedule device destroy actions for partitions last. (dlehman)
+- Pass storage.disks, not storage, to createAllowed.... (#488860) (dlehman)
+- Nodev filesystems always exist. And the device is arbitrary. (dlehman)
+- Include proc, &c filesystems in fstab and FSSet.{mount/umount}Filesystems.
+  (dlehman)
+- Remove FSSet.writeFSTab. That job is handled elsewhere. (dlehman)
+- Add properties to FSSet to provide the nodev entries. (dlehman)
+- Fix incomplete format in Storage.deviceImmutable. (dlehman)
+- Make sure we use the same disk the free space is on. (#488807) (dlehman)
+- Prevent clobbering of name 'mdraid' by qualifying it. (dlehman)
+- Handle unformatted disks and cdroms in Storage.exceptionDisks. (dlehman)
+- Add resizeArgs property for resizable filesystems. (dcantrell)
+- Fill out class NTFS a bit more. (dcantrell)
+- Add fsckProg property to class FS. (dcantrell)
+- Ext2FS.migratable(self) -> Ext2FS.migratable (dcantrell)
+- Fix StorageDevice.minSize() and PartitionDevice.maxSize() (dcantrell)
+- Center resize window on the screen. (dcantrell)
+- Do not raise DeviceError if not bootable device is found. (dcantrell)
+- Do an even more thorough job of ignoring disks libparted doesn't like.
+  (clumens)
+- Fix a couple problems on the "Change device" bootloader dialog. (clumens)
+- Fix a typo when writing out the mdadm config file. (clumens)
+- Remove all uses of isys.cdromList, which no longer exists. (clumens)
+- Check to see if we're on S390 on the congrats screen (#488747). (clumens)
+- Handle non-fatal errors more gracefully in addUdevDevice. (dlehman)
+- partRequests no longer exists, so don't try to import it (#488743).
+  (clumens)
+- When building the exceptionDisks list, skip devices libparted doesn't
+  like. (clumens)
+- Iterate over devicetree.devices.values, not devicetree. (dlehman)
+- Add a get() method to Flags, since it pretends to be a dictionary.
+  (clumens)
+- Stop with the fsset usage. (dlehman)
+- Format message string after translation not before (msivak)
+- We need newer python-cryptsetup because of the default values for cipher
+  and keysize for luskFormat (msivak)
+- If a drive is not initialized, offer reinitialization or ignoring the
+  drive to the user (msivak)
+- More syntax errors / traceback fixes (hdegoede)
+- Fix syntax errors (rvykydal)
+- Implement Storage.sanityCheck, mostly from old partitions code. (dlehman)
+
 * Thu Mar  5 2009 Dave Lehman <dlehman at redhat.com> - 11.5.0.24-3
 - Fix booty's desire to import fsset.
 - Fix attempt to set read-only attr "removable" in DiskDevice.__init__


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/anaconda/devel/sources,v
retrieving revision 1.749
retrieving revision 1.750
diff -u -r1.749 -r1.750
--- sources	5 Mar 2009 03:51:08 -0000	1.749
+++ sources	6 Mar 2009 01:44:44 -0000	1.750
@@ -1 +1 @@
-678a5343092b3adee1aeaa0369df9b41  anaconda-11.5.0.24.tar.bz2
+1b28850bf72438f98f3c3334f9467f7e  anaconda-11.5.0.25.tar.bz2


--- anaconda-11.5.0.23-efi-cds.patch DELETED ---


--- late.patch DELETED ---




More information about the fedora-extras-commits mailing list