From d89ba51e1479e8b1f11a45ed747b6c4887b57e61 Mon Sep 17 00:00:00 2001 From: David Lehman Date: Mar 15 2010 17:34:45 +0000 Subject: * Mon Mar 15 2010 David Lehman - 14.0-1 - Do not crash on .autorelabel when using read only rescue mount (#568367) (msivak) - parted.PartedDisk can throw IOExceptions too (#573539) (hdegoede) - l10n: fix/updates to hungarian translation (snicore) - l10n: updated translations (snicore) - Use the disk name from kickstart in the shouldClear error message. (clumens) - Fix displaying error messages on cleanup/remove callback problems (#572893). (clumens) - Before running shouldClear, make sure a real disk was specified (#572523). (clumens) - Fix: execWithRedirect() unexpectedkeyword argument 'searchPath' (#572853) (hdegoede) - Tell ld.so and friends not to use hardware optimized libs (#572178) (pjones) - By default, libcurl does not appear to follow redirects (#572528). (clumens) - FcoeDiskDevice.dracutSetupString: handle DCB on / off option (hdegoede) - Redo the 'sshd' flag. (ajax) - Catch "Exception" when window manager is starting. (akozumpl) - Preserve encryption setting when re-editing new encrypted LVs. (#568547) (dlehman) - Never pass "" as mountpoint to format constructors. (dlehman) - Fix up device dialogs' handling of preexisting formatting. (dlehman) - Set up devices using their original formats for certain action types. (#565848) (dlehman) - Keep a handle to devices' original format instance. (#565848) (dlehman) - Pick up system's clock settings on upgrade. (#570299) (akozumpl) - Do not crash when getDevices returns NULL (#567939) (msivak) - Use new API in libblkid to look for driverdiscs on removable devices (#508242) (msivak) - Use new package structure of firstaidkit (#510346) (msivak) - Add "crashkernel=auto" to grub.conf for RHEL installs (#561729) (hdegoede) - Drop iscsi initrd generation hack (hdegoede) - Fix recognition of partitions on mdraid arrays (#569462) (hdegoede) - dcbd is being replaced with lldpad (#563790) (hdegoede) - Use the same cache directory as yum now uses (#568996). (clumens) - exception.py: switch to tty1 before exit (#569071) (akozumpl) - Reset conditionals of transaction info too. (#505189) (rvykydal) - Use '--keyword=P_:1,2' for plural gettext string extraction (#567417). (dcantrell) - make sure the new logging also works when isys is imported as a python module. (akozumpl) - use the new logging approach in imount.c (akozumpl) - allow logging into program.log and syslog through log.c (akozumpl) - log.c: factor out common parts from logMessageV() (akozumpl) - static variable rename in log.c (akozumpl) - move log.c from loader into isys. (akozumpl) - Analog, a generator of rsyslog config files to monitor remote installs. (akozumpl) - Remove isys/minifind.c and isys/minifind.h (dcantrell) - Keep default metacity schema generated for gconf. (#520146) (rvykydal) - metacity, fix a displaying problem with WaitWindow and ProgressWindow (#520146) (akozumpl) - Nuke addFrame()'s showtitle parameter (#520146). (akozumpl) - Remove gui code we no longer need when mini-wm is gone (#520146) (akozumpl) - Remove mini-wm.c. (#520146) (akozumpl) - Introduces metacity window manager (#520146) (akozumpl) - fix: do not initialize the install interface whenever is is accessed (#565872) (akozumpl) - Select/Deselect All should only apply to the current tab (#516143, #568875). (clumens) - Don't try to write firewall and auth information twice (#568528). (clumens) - Fixes bug #569373 - Change udev_trigger block calls to use change action (bcl) - Include the report module and related support files (#562656). (clumens) - report handles exn saving now, and doesn't require a Filer (#562656). (clumens) - Adapt to using report's UI API (#562656). (clumens) - Do some editing of package and filter UI strings (#569039). (clumens) --- diff --git a/.cvsignore b/.cvsignore index 8f0a29b..09ba457 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -anaconda-13.32.tar.bz2 +anaconda-14.0.tar.bz2 diff --git a/anaconda.spec b/anaconda.spec index 3ae3e91..4c985ca 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -3,7 +3,7 @@ Summary: Graphical system installer Name: anaconda -Version: 13.32 +Version: 14.0 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -41,8 +41,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %define yumutilsver 1.1.11-3 %define iscsiver 6.2.0.870-3 %define pythoncryptsetupver 0.0.6 -%define mehver 0.4 +%define mehver 0.8 %define sckeyboardver 1.3.1 +%define libblkid 2.17.1-1 BuildRequires: audit-libs-devel BuildRequires: bzip2-devel @@ -57,7 +58,7 @@ BuildRequires: libarchive-devel BuildRequires: libX11-devel BuildRequires: libXt-devel BuildRequires: libXxf86misc-devel -BuildRequires: libblkid-devel +BuildRequires: libblkid-devel >= %{liblkid} BuildRequires: libcurl-devel BuildRequires: libnl-devel >= %{libnlver} BuildRequires: libselinux-devel >= %{libselinuxver} @@ -198,7 +199,6 @@ update-desktop-database &> /dev/null || : %doc docs/mediacheck.txt %doc docs/anaconda-release-notes.txt /lib/udev/rules.d/70-anaconda.rules -%{_bindir}/mini-wm %{_sbindir}/anaconda %ifarch i386 i486 i586 i686 x86_64 %{_sbindir}/gptsync @@ -217,6 +217,94 @@ update-desktop-database &> /dev/null || : %endif %changelog +* Mon Mar 15 2010 David Lehman - 14.0-1 +- Do not crash on .autorelabel when using read only rescue mount (#568367) + (msivak) +- parted.PartedDisk can throw IOExceptions too (#573539) (hdegoede) +- l10n: fix/updates to hungarian translation (snicore) +- l10n: updated translations (snicore) +- Use the disk name from kickstart in the shouldClear error message. + (clumens) +- Fix displaying error messages on cleanup/remove callback problems + (#572893). (clumens) +- Before running shouldClear, make sure a real disk was specified (#572523). + (clumens) +- Fix: execWithRedirect() unexpectedkeyword argument 'searchPath' (#572853) + (hdegoede) +- Tell ld.so and friends not to use hardware optimized libs (#572178) + (pjones) +- By default, libcurl does not appear to follow redirects (#572528). + (clumens) +- FcoeDiskDevice.dracutSetupString: handle DCB on / off option (hdegoede) +- Redo the 'sshd' flag. (ajax) +- Catch "Exception" when window manager is starting. (akozumpl) +- Preserve encryption setting when re-editing new encrypted LVs. (#568547) + (dlehman) +- Never pass "" as mountpoint to format constructors. + (dlehman) +- Fix up device dialogs' handling of preexisting formatting. (dlehman) +- Set up devices using their original formats for certain action types. + (#565848) (dlehman) +- Keep a handle to devices' original format instance. (#565848) (dlehman) +- Pick up system's clock settings on upgrade. (#570299) (akozumpl) +- Do not crash when getDevices returns NULL (#567939) (msivak) +- Use new API in libblkid to look for driverdiscs on removable devices + (#508242) (msivak) +- Use new package structure of firstaidkit (#510346) (msivak) +- Add "crashkernel=auto" to grub.conf for RHEL installs (#561729) (hdegoede) +- Drop iscsi initrd generation hack (hdegoede) +- Fix recognition of partitions on mdraid arrays (#569462) (hdegoede) +- dcbd is being replaced with lldpad (#563790) (hdegoede) +- Use the same cache directory as yum now uses (#568996). (clumens) +- exception.py: switch to tty1 before exit (#569071) (akozumpl) +- Reset conditionals of transaction info too. (#505189) (rvykydal) +- Use '--keyword=P_:1,2' for plural gettext string extraction (#567417). + (dcantrell) +- make sure the new logging also works when isys is imported as a python + module. (akozumpl) +- use the new logging approach in imount.c (akozumpl) +- allow logging into program.log and syslog through log.c (akozumpl) +- log.c: factor out common parts from logMessageV() (akozumpl) +- static variable rename in log.c (akozumpl) +- move log.c from loader into isys. (akozumpl) +- Analog, a generator of rsyslog config files to monitor remote installs. + (akozumpl) +- Remove isys/minifind.c and isys/minifind.h (dcantrell) +- Keep default metacity schema generated for gconf. (#520146) (rvykydal) +- metacity, fix a displaying problem with WaitWindow and ProgressWindow + (#520146) (akozumpl) +- Nuke addFrame()'s showtitle parameter (#520146). (akozumpl) +- Remove gui code we no longer need when mini-wm is gone (#520146) (akozumpl) +- Remove mini-wm.c. (#520146) (akozumpl) +- Introduces metacity window manager (#520146) (akozumpl) +- fix: do not initialize the install interface whenever is is accessed + (#565872) (akozumpl) +- Select/Deselect All should only apply to the current tab (#516143, + #568875). (clumens) +- Don't try to write firewall and auth information twice (#568528). (clumens) +- Fixes bug #569373 - Change udev_trigger block calls to use change action + (bcl) +- Include the report module and related support files (#562656). (clumens) +- report handles exn saving now, and doesn't require a Filer (#562656). + (clumens) +- Adapt to using report's UI API (#562656). (clumens) +- Do some editing of package and filter UI strings (#569039). (clumens) + +* Thu Mar 04 2010 Chris Lumens - 13.33-1 +- On live installs, the syslog is /var/log/dmesg. (#568814). (clumens) +- Set up udev environment so anaconda's udev rules run in livecd. (#568460) + (dlehman) +- Ignore probably-spurious disklabels on unpartitionable devices. (#567832) + (dlehman) +- The justConfigFile parameter doesn't do anything on x86, either (#568567). + (clumens) +- Add python-devel's gdbinit, which provides useful debugging macros. + (pjones) +- Minor style fix (indent "cat" correctly") (pjones) +- doReIPL should return when going back through steps, too (#563862). + (clumens) +- Skip the filter/cleardisk steps on upgrades, too (#568334). (clumens) + * Thu Feb 25 2010 David Lehman - 13.32-1 - Check for the real device-mapper nodes in /proc/swaps. (#567840) (dlehman) - It's necessary to give each vfprintf invocation a fresh va_list (#568235) diff --git a/sources b/sources index 6771257..1077c01 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3a5794e7b67d27f53a983c7b5c87a7b4 anaconda-13.32.tar.bz2 +531a6b41f12dc0cf473663d385d2996e anaconda-14.0.tar.bz2