From 724e3a21104ab9b5ba7cad0f29bdc0c39e0315ab Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Tue, 4 Nov 2014 17:13:11 -0800 Subject: [PATCH] - Remove gui, install, and ostree tests from TESTS. (clumens) - Update the ostree test for the new ostree+grub patches. (clumens) - Add a timeout when the ostree test checks for proper booting. (clumens) - bootloader: Bridge efi_dir configuration earlier for rpmostreepayload (walters) - rpmostreepayload: Handle grub2+EFI layout (walters) - rpmostreepayload: Copy all subdirectories of /usr/lib/ostree-boot (walters) - Handle the case of rpmostreepayload + GRUB2 (walters) - Test adding, removing, and reordering keyboard layouts. (clumens) - Test displaying the help viewer on every screen. (clumens) - Add functions to UITestCase to grab the contents of a view. (clumens) - Extend the keyboard GUI test to test adding layout switching. (clumens) - Add checks for selected language/locale on the welcome screen. (clumens) - Catch EOFError in raw_input (#1158841) (bcl) - Ensure we are specifying sensible target sizes for resize. (#1120964) (dlehman) - Set the autopart fstype for boot too (#1112697) (bcl) - Ensure we are specifying sensible target sizes for resize. (#1120964) (dlehman) - Rework the placement of items on hubs. (dshea) - Lightly rearrange the nav_area (dshea) - Do not install interactive exception handler in cmdline mode (#1155979) (vpodzime) - Remove dmidecode from Requires: (vpodzime) - Wait until all spokes are setup before updating continue button (bcl) - Allow adding prepboot to a blank disk in custom (#1155660) (bcl) - Make anaconda more scrollable (#1135024) (dshea) - Remove unused imports (vpodzime) - Just preserve the %addon header args if an addon is missing (#1155026) (vpodzime) - Add a test to verify the help dialog pops up. (clumens) - Look up most widgets relative to the currently displayed screen. (clumens) - Make a few more updates for labels that have changed in the GUI. (clumens) - Warn users about liveinst usage of --updates (#1153550) (bcl) - Fix handling of md fwraid names in kickstart bootloader command. (#1156354) (dlehman) - Use an empty string for no root password instead of None (#1155576) (dshea) - Don't allow related bugs without acks (bcl) - Fix switching environments when no environment is selected (#1018226) (dshea) - Make size_from_input() and size_from_entry() methods handier. (amulhern) - Changes around handling of size entries in custom spoke. (amulhern) - network: handle dbus UnknownMethod exception on invalid objects (#1061796) (rvykydal) --- .gitignore | 1 + anaconda.spec | 52 ++++++++++++++++++++++++++++++++++++++++++++++----- sources | 2 +- 3 files changed, 49 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index a47f29b..e97e2c2 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /anaconda-22.7.tar.bz2 /anaconda-22.8.tar.bz2 /anaconda-22.9.tar.bz2 +/anaconda-22.10.tar.bz2 diff --git a/anaconda.spec b/anaconda.spec index e19755a..2cb77f0 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -2,7 +2,7 @@ Summary: Graphical system installer Name: anaconda -Version: 22.9 +Version: 22.10 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 >= 1:0.66 +Requires: python-blivet >= 1:0.69 Requires: python-meh >= %{mehver} Requires: libreport-anaconda >= 2.0.21-1 Requires: libselinux-python @@ -135,9 +135,6 @@ Requires: systemd Requires: fcoe-utils >= %{fcoeutilsver} %endif Requires: iscsi-initiator-utils >= %{iscsiver} -%ifarch %{ix86} x86_64 aarch64 -Requires: dmidecode -%endif %ifarch %{ix86} x86_64 %if ! 0%{?rhel} Requires: hfsplus-tools @@ -312,6 +309,51 @@ update-desktop-database &> /dev/null || : %{_prefix}/libexec/anaconda/dd_* %changelog +* Tue Nov 04 2014 Brian C. Lane - 22.10-1 +- Remove gui, install, and ostree tests from TESTS. (clumens) +- Update the ostree test for the new ostree+grub patches. (clumens) +- Add a timeout when the ostree test checks for proper booting. (clumens) +- bootloader: Bridge efi_dir configuration earlier for rpmostreepayload + (walters) +- rpmostreepayload: Handle grub2+EFI layout (walters) +- rpmostreepayload: Copy all subdirectories of /usr/lib/ostree-boot (walters) +- Handle the case of rpmostreepayload + GRUB2 (walters) +- Test adding, removing, and reordering keyboard layouts. (clumens) +- Test displaying the help viewer on every screen. (clumens) +- Add functions to UITestCase to grab the contents of a view. (clumens) +- Extend the keyboard GUI test to test adding layout switching. (clumens) +- Add checks for selected language/locale on the welcome screen. (clumens) +- Catch EOFError in raw_input (#1158841) (bcl) +- Ensure we are specifying sensible target sizes for resize. (#1120964) + (dlehman) +- Set the autopart fstype for boot too (#1112697) (bcl) +- Ensure we are specifying sensible target sizes for resize. (#1120964) + (dlehman) +- Rework the placement of items on hubs. (dshea) +- Lightly rearrange the nav_area (dshea) +- Do not install interactive exception handler in cmdline mode (#1155979) + (vpodzime) +- Remove dmidecode from Requires: (vpodzime) +- Wait until all spokes are setup before updating continue button (bcl) +- Allow adding prepboot to a blank disk in custom (#1155660) (bcl) +- Make anaconda more scrollable (#1135024) (dshea) +- Remove unused imports (vpodzime) +- Just preserve the %%addon header args if an addon is missing (#1155026) + (vpodzime) +- Add a test to verify the help dialog pops up. (clumens) +- Look up most widgets relative to the currently displayed screen. (clumens) +- Make a few more updates for labels that have changed in the GUI. (clumens) +- Warn users about liveinst usage of --updates (#1153550) (bcl) +- Fix handling of md fwraid names in kickstart bootloader command. (#1156354) + (dlehman) +- Use an empty string for no root password instead of None (#1155576) (dshea) +- Don't allow related bugs without acks (bcl) +- Fix switching environments when no environment is selected (#1018226) (dshea) +- Make size_from_input() and size_from_entry() methods handier. (amulhern) +- Changes around handling of size entries in custom spoke. (amulhern) +- network: handle dbus UnknownMethod exception on invalid objects (#1061796) + (rvykydal) + * Wed Oct 22 2014 Brian C. Lane - 22.9-1 - When I renamed the date & time spoke, I missed one string. (clumens) - Fix two more problems with spoke selectors in GUI testing. (clumens) diff --git a/sources b/sources index 906557f..f519863 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -962540c138b14418694a7b59ec99b238 anaconda-22.9.tar.bz2 +016c0220138bf814910afddc72099142 anaconda-22.10.tar.bz2