From 5496a07a760e013d08924f57c6073609f10ed808 Mon Sep 17 00:00:00 2001 From: Martin Kolman Date: Mon, 25 Feb 2019 18:33:48 +0100 Subject: [PATCH] New version 31.1-1 - Use apply_disk_selection (vponcova) - Use filter_disks_by_names (vponcova) - Exclude zFCP and NVDIMM devices in is_local_disk (vponcova) - Move code from pyanaconda.ui.lib.disks (vponcova) - Remove the support for fake disks (vponcova) - Add tests for the Snapshot module (vponcova) - Remove the extra code for protecting live devices (vponcova) - payload: switch from CamelCase in utils.py (jkonecny) - payload: switch from CamelCase in rpmostreepayload.py (jkonecny) - payload: switch from CamelCase in manager.py (jkonecny) - payload: switch from CamelCase in livepayload.py (jkonecny) - payload: switch from CamelCase in dnfpayload.py (jkonecny) - payload: switch from CamelCase in the __init__.py (jkonecny) - payload: move versionCmp to a separate file (jkonecny) - payload: convert manager states to enum (jkonecny) - payload: use ABCMeta for abstract classes (jkonecny) - payload: move manager to a separate file (jkonecny) - payload: remove ImagePayload abstract class (jkonecny) - payload: move requirements code to a separate file (jkonecny) - payload: move requirements exception to payload.errors (jkonecny) - payload: import exceptions directly in dnf payload (jkonecny) - payload: move exceptions to a separate file (jkonecny) - payload: remove unused code parts (jkonecny) - payload: fix pep8 issues (jkonecny) - Specify the sysroot when you call the DBus method InstallWithTasks (vponcova) - Remove the obsolete check for unknown sources (vponcova) - network tui: guard use of NMClient by system configuration (rvykydal) - network tui: handle device configuration in proper spoke (rvykydal) - Use unformatted DASDs for the partitioning (vponcova) - Fix the storage reset in TUI (vponcova) - Use the Snapshot module in UI (vponcova) - Use the Snapshot module in the Storage module (vponcova) - Create a task for creation of snapshots (vponcova) - Create a task for validation of snapshot requests (vponcova) - Handle the command snapshot in the Snapshot module (vponcova) - Create the Snapshot module (vponcova) - network: rename sanityCheckHostname function (rvykydal) - network: remove code which is no more needed/used with network module (rvykydal) - network ui: share some code (will be provided by module) (rvykydal) - network gui: update model instead of recreating it on config changes (rvykydal) - network gui: connect to network module DeviceConfigurations (rvykydal) - network: use NM Client for networking status message (rvykydal) - network tui: use NetworkDeviceConfiguration structure (rvykydal) - network tui: let network module handle updating kickstart data (rvykydal) - network: remove no more used code (rvykydal) - network tui: use network module and libnm (rvykydal) - Add tests for the NVDIMM module (vponcova) - Use the NVDIMM module in the NVDIMMDialog (vponcova) - Create a task for the NVDIMM namespace reconfiguration (vponcova) - Move the support for setting NVDIMM namespaces to use on DBus (vponcova) - Move the support for updating NVDIMM actions on DBus (vponcova) - Move the support for ignoring NVDIMM devices on DBus (vponcova) - Create the NVDIMM module (vponcova) --- .gitignore | 1 + anaconda.spec | 62 +++++++++++++++++++++++++++++++++++++++++++++++---- sources | 2 +- 3 files changed, 60 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index f35a65b..a57231a 100644 --- a/.gitignore +++ b/.gitignore @@ -180,3 +180,4 @@ /anaconda-30.22.tar.bz2 /anaconda-30.23.tar.bz2 /anaconda-30.25.tar.bz2 +/anaconda-31.1.tar.bz2 diff --git a/anaconda.spec b/anaconda.spec index 06a387b..ae0f49f 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -4,8 +4,8 @@ Summary: Graphical system installer Name: anaconda -Version: 30.25 -Release: 2%{?dist} +Version: 31.1 +Release: 1%{?dist} License: GPLv2+ and MIT URL: http://fedoraproject.org/wiki/Anaconda @@ -354,8 +354,62 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d %{_prefix}/libexec/anaconda/dd_* %changelog -* Tue Feb 19 2019 Kalev Lember - 30.25-2 -- Rebuilt against fixed atk (#1626575) +* Mon Feb 25 2019 Martin Kolman - 31.1-1 +- Use apply_disk_selection (vponcova) +- Use filter_disks_by_names (vponcova) +- Exclude zFCP and NVDIMM devices in is_local_disk (vponcova) +- Move code from pyanaconda.ui.lib.disks (vponcova) +- Remove the support for fake disks (vponcova) +- Add tests for the Snapshot module (vponcova) +- Remove the extra code for protecting live devices (vponcova) +- payload: switch from CamelCase in utils.py (jkonecny) +- payload: switch from CamelCase in rpmostreepayload.py (jkonecny) +- payload: switch from CamelCase in manager.py (jkonecny) +- payload: switch from CamelCase in livepayload.py (jkonecny) +- payload: switch from CamelCase in dnfpayload.py (jkonecny) +- payload: switch from CamelCase in the __init__.py (jkonecny) +- payload: move versionCmp to a separate file (jkonecny) +- payload: convert manager states to enum (jkonecny) +- payload: use ABCMeta for abstract classes (jkonecny) +- payload: move manager to a separate file (jkonecny) +- payload: remove ImagePayload abstract class (jkonecny) +- payload: move requirements code to a separate file (jkonecny) +- payload: move requirements exception to payload.errors (jkonecny) +- payload: import exceptions directly in dnf payload (jkonecny) +- payload: move exceptions to a separate file (jkonecny) +- payload: remove unused code parts (jkonecny) +- payload: fix pep8 issues (jkonecny) +- Specify the sysroot when you call the DBus method InstallWithTasks (vponcova) +- Remove the obsolete check for unknown sources (vponcova) +- network tui: guard use of NMClient by system configuration (rvykydal) +- network tui: handle device configuration in proper spoke (rvykydal) +- Use unformatted DASDs for the partitioning (vponcova) +- Fix the storage reset in TUI (vponcova) +- Use the Snapshot module in UI (vponcova) +- Use the Snapshot module in the Storage module (vponcova) +- Create a task for creation of snapshots (vponcova) +- Create a task for validation of snapshot requests (vponcova) +- Handle the command snapshot in the Snapshot module (vponcova) +- Create the Snapshot module (vponcova) +- network: rename sanityCheckHostname function (rvykydal) +- network: remove code which is no more needed/used with network module + (rvykydal) +- network ui: share some code (will be provided by module) (rvykydal) +- network gui: update model instead of recreating it on config changes + (rvykydal) +- network gui: connect to network module DeviceConfigurations (rvykydal) +- network: use NM Client for networking status message (rvykydal) +- network tui: use NetworkDeviceConfiguration structure (rvykydal) +- network tui: let network module handle updating kickstart data (rvykydal) +- network: remove no more used code (rvykydal) +- network tui: use network module and libnm (rvykydal) +- Add tests for the NVDIMM module (vponcova) +- Use the NVDIMM module in the NVDIMMDialog (vponcova) +- Create a task for the NVDIMM namespace reconfiguration (vponcova) +- Move the support for setting NVDIMM namespaces to use on DBus (vponcova) +- Move the support for updating NVDIMM actions on DBus (vponcova) +- Move the support for ignoring NVDIMM devices on DBus (vponcova) +- Create the NVDIMM module (vponcova) * Tue Feb 19 2019 Martin Kolman - 30.25-1 - Remove one more obsolete group tag (mkolman) diff --git a/sources b/sources index a342df2..37b8486 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (anaconda-30.25.tar.bz2) = be71dc12d6416cae6aa3f671fb0ea7396e60ac709cef2326fb1a8c229d00bbe76e4d3778b5fc08443d386642f6d5a115b78d93b1bab241257c1c41bf4d95ff80 +SHA512 (anaconda-31.1.tar.bz2) = 0608480bffbd19405963e87d2259025be08ad2e5337518a80426be1625acee00239e33096549ceff45e6c6e9b2280457929ee7d4cc0062f9bd68667e6b082eaa