forked from rpms/anaconda
- 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)
This commit is contained in:
parent
3be1ed7a18
commit
724e3a2110
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,3 +6,4 @@
|
|||||||
/anaconda-22.7.tar.bz2
|
/anaconda-22.7.tar.bz2
|
||||||
/anaconda-22.8.tar.bz2
|
/anaconda-22.8.tar.bz2
|
||||||
/anaconda-22.9.tar.bz2
|
/anaconda-22.9.tar.bz2
|
||||||
|
/anaconda-22.10.tar.bz2
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Summary: Graphical system installer
|
Summary: Graphical system installer
|
||||||
Name: anaconda
|
Name: anaconda
|
||||||
Version: 22.9
|
Version: 22.10
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
@ -91,7 +91,7 @@ The anaconda package is a metapackage for the Anaconda installer.
|
|||||||
%package core
|
%package core
|
||||||
Summary: Core of the Anaconda installer
|
Summary: Core of the Anaconda installer
|
||||||
Requires: dnf >= %{dnfver}
|
Requires: dnf >= %{dnfver}
|
||||||
Requires: python-blivet >= 1:0.66
|
Requires: python-blivet >= 1:0.69
|
||||||
Requires: python-meh >= %{mehver}
|
Requires: python-meh >= %{mehver}
|
||||||
Requires: libreport-anaconda >= 2.0.21-1
|
Requires: libreport-anaconda >= 2.0.21-1
|
||||||
Requires: libselinux-python
|
Requires: libselinux-python
|
||||||
@ -135,9 +135,6 @@ Requires: systemd
|
|||||||
Requires: fcoe-utils >= %{fcoeutilsver}
|
Requires: fcoe-utils >= %{fcoeutilsver}
|
||||||
%endif
|
%endif
|
||||||
Requires: iscsi-initiator-utils >= %{iscsiver}
|
Requires: iscsi-initiator-utils >= %{iscsiver}
|
||||||
%ifarch %{ix86} x86_64 aarch64
|
|
||||||
Requires: dmidecode
|
|
||||||
%endif
|
|
||||||
%ifarch %{ix86} x86_64
|
%ifarch %{ix86} x86_64
|
||||||
%if ! 0%{?rhel}
|
%if ! 0%{?rhel}
|
||||||
Requires: hfsplus-tools
|
Requires: hfsplus-tools
|
||||||
@ -312,6 +309,51 @@ update-desktop-database &> /dev/null || :
|
|||||||
%{_prefix}/libexec/anaconda/dd_*
|
%{_prefix}/libexec/anaconda/dd_*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 04 2014 Brian C. Lane <bcl@redhat.com> - 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 <bcl@redhat.com> - 22.9-1
|
* Wed Oct 22 2014 Brian C. Lane <bcl@redhat.com> - 22.9-1
|
||||||
- When I renamed the date & time spoke, I missed one string. (clumens)
|
- When I renamed the date & time spoke, I missed one string. (clumens)
|
||||||
- Fix two more problems with spoke selectors in GUI testing. (clumens)
|
- Fix two more problems with spoke selectors in GUI testing. (clumens)
|
||||||
|
Loading…
Reference in New Issue
Block a user