From 9936f6941f0f412ad712e07276c34a88872154ea Mon Sep 17 00:00:00 2001 From: Jiri Konecny Date: Mon, 19 Aug 2019 18:25:55 +0200 Subject: [PATCH] New version 32.2-1 - Set the minimum required entropy only once (vponcova) - Rename the icon (#1740864) (vponcova) - Format strings with format in interactive utils (vponcova) - Rename _get_device_info_description in the custom spoke (vponcova) - Remove pyanaconda.storage.partitioning (vponcova) - Use the partitioning request in TUI (vponcova) - Use the partitioning request in GUI (vponcova) - Update the storage initialization and configuration (vponcova) - Use the partitioning request in the tests (vponcova) - Use the partitioning request in the automatic partitioning module (vponcova) - Use the partitioning request in the automatic partitioning task (vponcova) - Exclude mount points from the automatic partitioning (vponcova) - Create a DBus structure for the partitioning request (vponcova) - Don't load the repo device path twice in the Payload class (vponcova) - Rename device_path to repo_device_path in the Payload class (vponcova) - Rename get_mount_device in payload utils (vponcova) - Remove a redundant condition in the Payload class (vponcova) - Specify types of arguments in the payload utils (vponcova) - Use the payload utils in UI (vponcova) - Add a new function unmount_device to payload utils (vponcova) - Add a new function setup_device to payload utils (vponcova) - Add a new function mount_device to payload utils (vponcova) - Add a new function teardown_device to payload utils (vponcova) - Move the support methods for image installations (vponcova) - Change the method for finding potential HDISO sources (vponcova) - Change the method for finding a valid optical install media (vponcova) - Add a new function resolve_device to payload utils (vponcova) - Rename variables and arguments in the Payload class (vponcova) - Provide a documentation for the payload utils (vponcova) - Don't propagate the storage and data to the payload again (vponcova) - Collect addons after running the %pre section (vponcova) - Fix: Merge the code for the device info validation (vponcova) - Fix: Generate the device info in interactive utils (vponcova) - Fix: Simplify the code for validating mount points (vponcova) - Handle a missing value of the mount point attribute (vponcova) - Improve logging of the device info changes (vponcova) - Remove the constants for the device type strings (vponcova) - Move the code for collecting supported RAID levels (vponcova) - Move the code for the device info validation (vponcova) - Move the code for the raid level validation (vponcova) - Simplify the code for validating mount points (vponcova) - Move the code for validating mount points (vponcova) - Generate the device info in interactive utils (vponcova) - Simplify overriding disk set with container's (vponcova) - Simplify the removal of the device (vponcova) - Merge the code for changing the size (vponcova) - Move code to the function revert_reformat (vponcova) - Change arguments of the method for reformatting (vponcova) - Merge the code for the device info validation (vponcova) - Split the code for collecting the new device info (vponcova) - Move the code for collecting the new device info (vponcova) - Apply the device info changes in new methods (vponcova) - Remove the code for comparing the device info (vponcova) - Remove variables for new device info (vponcova) - Remove variables for old device info (vponcova) - Move the code for comparing the device info (vponcova) - Simplify logging of the device infos (vponcova) - Move the code for the new device info (vponcova) - Move the code for the old device info (vponcova) - Add squashfs+overlayfs base live image detection (bcl) - liveinst: Add support for plain squashfs root filesystem (bcl) --- .gitignore | 1 + anaconda.spec | 70 +++++++++++++++++++++++++++++++++++++++++++++++---- sources | 2 +- 3 files changed, 67 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 279fbba..5ed2fd7 100644 --- a/.gitignore +++ b/.gitignore @@ -203,3 +203,4 @@ /anaconda-31.21.tar.bz2 /anaconda-31.22.tar.bz2 /anaconda-32.1.tar.bz2 +/anaconda-32.2.tar.bz2 diff --git a/anaconda.spec b/anaconda.spec index b13a2ba..19c6d5d 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -4,8 +4,8 @@ Summary: Graphical system installer Name: anaconda -Version: 32.1 -Release: 2%{?dist} +Version: 32.2 +Release: 1%{?dist} License: GPLv2+ and MIT URL: http://fedoraproject.org/wiki/Anaconda @@ -81,7 +81,7 @@ The anaconda package is a metapackage for the Anaconda installer. Summary: Core of the Anaconda installer Requires: python3-libs Requires: python3-dnf >= %{dnfver} -Requires: python3-blivet >= 1:3.1.4-2 +Requires: python3-blivet >= 1:3.1.5-1 Requires: python3-blockdev >= %{libblockdevver} Requires: python3-meh >= %{mehver} Requires: libreport-anaconda >= 2.0.21-1 @@ -351,8 +351,68 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d %{_prefix}/libexec/anaconda/dd_* %changelog -* Sun Aug 18 2019 Miro HronĨok - 32.1-2 -- Rebuilt for Python 3.8 +* Mon Aug 19 2019 Jiri Konecny - 32.2-1 +- Set the minimum required entropy only once (vponcova) +- Rename the icon (#1740864) (vponcova) +- Format strings with format in interactive utils (vponcova) +- Rename _get_device_info_description in the custom spoke (vponcova) +- Remove pyanaconda.storage.partitioning (vponcova) +- Use the partitioning request in TUI (vponcova) +- Use the partitioning request in GUI (vponcova) +- Update the storage initialization and configuration (vponcova) +- Use the partitioning request in the tests (vponcova) +- Use the partitioning request in the automatic partitioning module (vponcova) +- Use the partitioning request in the automatic partitioning task (vponcova) +- Exclude mount points from the automatic partitioning (vponcova) +- Create a DBus structure for the partitioning request (vponcova) +- Don't load the repo device path twice in the Payload class (vponcova) +- Rename device_path to repo_device_path in the Payload class (vponcova) +- Rename get_mount_device in payload utils (vponcova) +- Remove a redundant condition in the Payload class (vponcova) +- Specify types of arguments in the payload utils (vponcova) +- Use the payload utils in UI (vponcova) +- Add a new function unmount_device to payload utils (vponcova) +- Add a new function setup_device to payload utils (vponcova) +- Add a new function mount_device to payload utils (vponcova) +- Add a new function teardown_device to payload utils (vponcova) +- Move the support methods for image installations (vponcova) +- Change the method for finding potential HDISO sources (vponcova) +- Change the method for finding a valid optical install media (vponcova) +- Add a new function resolve_device to payload utils (vponcova) +- Rename variables and arguments in the Payload class (vponcova) +- Provide a documentation for the payload utils (vponcova) +- Don't propagate the storage and data to the payload again (vponcova) +- Collect addons after running the %%pre section (vponcova) +- Fix: Merge the code for the device info validation (vponcova) +- Fix: Generate the device info in interactive utils (vponcova) +- Fix: Simplify the code for validating mount points (vponcova) +- Handle a missing value of the mount point attribute (vponcova) +- Improve logging of the device info changes (vponcova) +- Remove the constants for the device type strings (vponcova) +- Move the code for collecting supported RAID levels (vponcova) +- Move the code for the device info validation (vponcova) +- Move the code for the raid level validation (vponcova) +- Simplify the code for validating mount points (vponcova) +- Move the code for validating mount points (vponcova) +- Generate the device info in interactive utils (vponcova) +- Simplify overriding disk set with container's (vponcova) +- Simplify the removal of the device (vponcova) +- Merge the code for changing the size (vponcova) +- Move code to the function revert_reformat (vponcova) +- Change arguments of the method for reformatting (vponcova) +- Merge the code for the device info validation (vponcova) +- Split the code for collecting the new device info (vponcova) +- Move the code for collecting the new device info (vponcova) +- Apply the device info changes in new methods (vponcova) +- Remove the code for comparing the device info (vponcova) +- Remove variables for new device info (vponcova) +- Remove variables for old device info (vponcova) +- Move the code for comparing the device info (vponcova) +- Simplify logging of the device infos (vponcova) +- Move the code for the new device info (vponcova) +- Move the code for the old device info (vponcova) +- Add squashfs+overlayfs base live image detection (bcl) +- liveinst: Add support for plain squashfs root filesystem (bcl) * Wed Aug 14 2019 Martin Kolman - 32.1-1 - Use append_dbus_tasks() for DBus Task scheduling (mkolman) diff --git a/sources b/sources index b3c5f7c..8a4893e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (anaconda-32.1.tar.bz2) = 4355de08f699dc55f1b143425ec18b28403f8eb5fa0c40dea63b4ed9b7160171fb641a58dbaeda6c2c658910acea277dd80b7236d863ad22d649950de1fac601 +SHA512 (anaconda-32.2.tar.bz2) = 6700c89ace8e405e4a216222cfeb7492cb58e50c99e0ebeb27ae624f8ac85dbfcf5f0458923064d609167c3f9d203fb20ff7a7e0a545640ba6840dd46768197e