From f874a7ba306b68fadbb261d7cc6ef4b45f3f723f Mon Sep 17 00:00:00 2001 From: Brian C. Lane Date: Sep 20 2014 00:28:08 +0000 Subject: - Don't call storage.write for dirinstall (#1120206) (bcl) - Fix pylint warning from a recent commit. (dlehman) - Fix the link to the help-button-clicked signal (dshea) - Assign mnemonics to two checkboxes on the user spoke that didn't have them. (clumens) - Remove "MB" from the size string on the HDISO combo box. (clumens) - Use _Cancel and _Continue mnemonics on these two screens. (clumens) - Rename to be the TIME & DATE spoke. (clumens) - Ok -> OK on the proxy dialog. (clumens) - Handle cancellation of new container creation. (dlehman) - Reflect previous custom/autopart selection in the storage spoke. (dlehman) - Clear out custom storage ksdata after first attempt to apply it. (dlehman) - Pass size as Size when adjusting container after device removal. (#1141707) (dlehman) - Set flags.rescue_mode not anaconda.rescue (#1143056) (amulhern) - Split localed's converted layouts and variants (#1073825) (vpodzime) - Rename variable to not with a built-in (mkolman) - Create free space snapshot before doing custom->autopart (vpodzime) - Deprecate RUNKS cmdline option. (sbueno+anaconda) - Show help also when alt+F1 is pressed (mkolman) - Support display of the custom mnemonics on the help button (mkolman) - Activate the built-in help when F1 is pressed (mkolman) - Specify help file names for hubs and spokes (mkolman) - Add a help button to every Anaconda screen (mkolman) - Don't call BusyCursor before Gdk is setup (#1078868) (bcl) - Fix SELINUX_DEFAULT import (#1137049) (bcl) - Catch and rethrow BTRFSValueError as KickstartException (#1019685) (amulhern) - Bump version so BTRFSValueError is found (#1019685) (amulhern) - Don't change langpacks config of installer environment (#1066017) (rvykydal) - network: fix typo 'Private ksy pasword' (#1120374) (rvykydal) - Fix up a string style issue found in the last network commits. (clumens) - network: WPA Enterprise: don't ask twice for password (#1120374) (rvykydal) - network: add support for WPA Enterprise (#1120374) (rvykydal) - network: add s390 network ifcfg options also for bond slaves (#1090558) (rvykydal) - network: copy resolv.conf to chroot before installing packages (#1048520) (rvykydal) - network: don't crash, just log for unrecognized bond options (#1039006) (rvykydal) - network: don't traceback on invalid team options (#1114282) (rvykydal) - network: don't write HWADDR in ifcfgs generated by kickstart (#1130042) (rvykydal) - Re-order the tz's in text mode to mirror the graphical order. (sbueno+anaconda) - Apply a better check for whether to fail if authconfig is missing. (clumens) - driver-updates: fix backspace/delete in dd menus (#1080380) (wwoods) - Fix an issue with bad NFS info specified in source spoke. (sbueno+anaconda) - Fix the SIGSEGV handler (dshea) - Remove argument handling from methods without arguments (dshea) - Warn if software selection size exceeds available space. (sbueno+anaconda) - X doesn't start when making the livecd on the GUI test either. (clumens) - Handle spaces in inst.repo, kickstart nfs, and url commands (#1109933) (bcl) - Fix that urllib2 problem more thoroughly. (clumens) - Fix a problem where urllib2 is not getting pulled into the initrd. (clumens) - Specify thin pool metadata/chunk size only if given by user (#1140635) (vpodzime) - Fix q for quit issue in text mode (#997405) (sbueno+anaconda) - Additional message if kickstart was used but did not finish (#1117908) (amulhern) - Move some statically detectable kickstart errors out of anaconda (#1117908) (amulhern) - Use only the digits from productVersion (bcl) - If a kickstart installation stops because it doesn't know something, log that. (clumens) - Don't care about crash args in bootloader (#1116323) (vpodzime) --- diff --git a/.gitignore b/.gitignore index 1ceb0ef..81cc158 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /anaconda-22.2.tar.bz2 /anaconda-22.3.tar.bz2 /anaconda-22.4.tar.bz2 +/anaconda-22.6.tar.bz2 diff --git a/anaconda.spec b/anaconda.spec index 54b29a3..30c34c3 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -2,7 +2,7 @@ Summary: Graphical system installer Name: anaconda -Version: 22.4 +Version: 22.6 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -91,7 +91,7 @@ The anaconda package is a metapackage for the Anaconda installer. %package core Summary: Core of the Anaconda installer Requires: dnf >= %{dnfver} -Requires: python-blivet >= 0.61 +Requires: python-blivet >= 0.64 Requires: python-meh >= %{mehver} Requires: libreport-anaconda >= 2.0.21-1 Requires: libselinux-python @@ -135,8 +135,10 @@ Requires: systemd Requires: fcoe-utils >= %{fcoeutilsver} %endif Requires: iscsi-initiator-utils >= %{iscsiver} -%ifarch %{ix86} x86_64 ia64 +%ifarch %{ix86} x86_64 aarch64 Requires: dmidecode +%endif +%ifarch %{ix86} x86_64 %if ! 0%{?rhel} Requires: hfsplus-tools %endif @@ -174,6 +176,7 @@ Requires: zenity %endif Requires: keybinder3 Requires: NetworkManager-wifi +Requires: yelp %description gui This package contains graphical user interface for the Anaconda installer. @@ -307,6 +310,114 @@ update-desktop-database &> /dev/null || : %{_prefix}/libexec/anaconda/dd_* %changelog +* Fri Sep 19 2014 Brian C. Lane - 22.6-1 +- Don't call storage.write for dirinstall (#1120206) (bcl) +- Fix pylint warning from a recent commit. (dlehman) +- Fix the link to the help-button-clicked signal (dshea) +- Assign mnemonics to two checkboxes on the user spoke that didn't have them. + (clumens) +- Remove "MB" from the size string on the HDISO combo box. (clumens) +- Use _Cancel and _Continue mnemonics on these two screens. (clumens) +- Rename to be the TIME & DATE spoke. (clumens) +- Ok -> OK on the proxy dialog. (clumens) +- Handle cancellation of new container creation. (dlehman) +- Reflect previous custom/autopart selection in the storage spoke. (dlehman) +- Clear out custom storage ksdata after first attempt to apply it. (dlehman) +- Pass size as Size when adjusting container after device removal. (#1141707) + (dlehman) +- Set flags.rescue_mode not anaconda.rescue (#1143056) (amulhern) +- Split localed's converted layouts and variants (#1073825) (vpodzime) +- Rename variable to not with a built-in (mkolman) +- Create free space snapshot before doing custom->autopart (vpodzime) +- Deprecate RUNKS cmdline option. (sbueno+anaconda) +- Show help also when alt+F1 is pressed (mkolman) +- Support display of the custom mnemonics on the help button (mkolman) +- Activate the built-in help when F1 is pressed (mkolman) +- Specify help file names for hubs and spokes (mkolman) +- Add a help button to every Anaconda screen (mkolman) +- Don't call BusyCursor before Gdk is setup (#1078868) (bcl) +- Fix SELINUX_DEFAULT import (#1137049) (bcl) +- Catch and rethrow BTRFSValueError as KickstartException (#1019685) (amulhern) +- Bump version so BTRFSValueError is found (#1019685) (amulhern) +- Don't change langpacks config of installer environment (#1066017) (rvykydal) +- network: fix typo 'Private ksy pasword' (#1120374) (rvykydal) +- Fix up a string style issue found in the last network commits. (clumens) +- network: WPA Enterprise: don't ask twice for password (#1120374) (rvykydal) +- network: add support for WPA Enterprise (#1120374) (rvykydal) +- network: add s390 network ifcfg options also for bond slaves (#1090558) + (rvykydal) +- network: copy resolv.conf to chroot before installing packages (#1048520) + (rvykydal) +- network: don't crash, just log for unrecognized bond options (#1039006) + (rvykydal) +- network: don't traceback on invalid team options (#1114282) (rvykydal) +- network: don't write HWADDR in ifcfgs generated by kickstart (#1130042) + (rvykydal) +- Re-order the tz's in text mode to mirror the graphical order. + (sbueno+anaconda) +- Apply a better check for whether to fail if authconfig is missing. (clumens) +- driver-updates: fix backspace/delete in dd menus (#1080380) (wwoods) +- Fix an issue with bad NFS info specified in source spoke. (sbueno+anaconda) +- Fix the SIGSEGV handler (dshea) +- Remove argument handling from methods without arguments (dshea) +- Warn if software selection size exceeds available space. (sbueno+anaconda) +- X doesn't start when making the livecd on the GUI test either. (clumens) +- Handle spaces in inst.repo, kickstart nfs, and url commands (#1109933) (bcl) +- Fix that urllib2 problem more thoroughly. (clumens) +- Fix a problem where urllib2 is not getting pulled into the initrd. (clumens) +- Specify thin pool metadata/chunk size only if given by user (#1140635) + (vpodzime) +- Fix q for quit issue in text mode (#997405) (sbueno+anaconda) +- Additional message if kickstart was used but did not finish (#1117908) + (amulhern) +- Move some statically detectable kickstart errors out of anaconda (#1117908) + (amulhern) +- Use only the digits from productVersion (bcl) +- If a kickstart installation stops because it doesn't know something, log + that. (clumens) +- Don't care about crash args in bootloader (#1116323) (vpodzime) + +* Wed Sep 10 2014 Brian C. Lane - 22.5-1 +- Fix noselinux cmdline default (#1137049) (bcl) +- Revert productName repo name change (#1128474) (bcl) +- Remove the --disable-overwrite parameter for the Transifex client (mkolman) +- Do not try to disable no firstboot services (#1139621) (vpodzime) +- Snapshot free space after clearpart for swap suggestion (#1132436) (vpodzime) +- Really fix an enlightbox call. (dshea) +- Correct issues merged from rhel-7 (dshea) +- A couple updates to installclasses. (clumens) +- Clear the kickstart password if cleared by the user (#1133185) (dshea) +- Change the accelerator key for Add DASD label. (sbueno+anaconda) +- Add dialog box for adding DASDs. (sbueno+anaconda) +- Add a button for adding an ECKD DASD. (sbueno+anaconda) +- Let finding install classes be more flexible for Fedora (#1138820). (clumens) +- fix inst.virtiolog (#1074499) (wwoods) +- Display container sizes to just two places, as well. (clumens) +- Fix two minor things on the source spoke. (clumens) +- border_width=5 -> border_width=6 in dasdfmt.glade. (clumens) +- Use first part of Product for UEFI entry (#1128474) (bcl) +- We can't pass "text" in the ostree .ks file because lmc doesn't like that. + (clumens) +- Remove inactive languages from LINGUAS. (dshea) +- Do the ostree test in text mode for now. (clumens) +- Skip nvram update on ppc64 image/dir installations (#1136486) (bcl) +- Use first part of Product as repo name (#1128474) (bcl) +- makeupdates: Report git diff errors (bcl) +- For yum-based installs, move the progress bar while packages are installing. + (clumens) +- Remove the mnemonics from the custom part toolbar. (clumens) +- Remove references to ia64. (clumens) +- Change a confusing string in TUI NFS configuration screen. (#1057690) + (sbueno+anaconda) +- Fix two problems with the volume label and combo on custom partitioning. + (clumens) +- Disable the Modify SW link on livecd installs (#1133726). (clumens) +- Require dmidecode for ARM (#1134651, jdisnard). (clumens) +- Require a larger /boot (#1129629). (clumens) +- Use suggested-action on more buttons (#1131254) (dshea) +- CmdlineError should exit with a 1 (bcl) +- Let gtk determine the allocation for overlays. (dshea) + * Wed Aug 27 2014 Brian C. Lane - 22.4-1 - jwb would like us to be clear that bugs could be the system firmware... (pjones) diff --git a/sources b/sources index f4b8eef..9dbcdb4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6f0d544a9b08287aa6d981208adc5bfa anaconda-22.4.tar.bz2 +783a09524b52e77ab41ea21e7185bb55 anaconda-22.6.tar.bz2