From f535e0a04d1ebd18744394894463dfbed49ec098 Mon Sep 17 00:00:00 2001 From: Jaroslav Mracek Date: Sat, 20 Oct 2018 10:28:04 +0200 Subject: [PATCH] Remove patch Relocate-ModuleContainer-save-hook-RhBug1632518 The patch has some problems. --- ...duleContainer-save-hook-RhBug1632518.patch | 58 ------------------- libdnf.spec | 6 +- 2 files changed, 4 insertions(+), 60 deletions(-) delete mode 100644 0004-Relocate-ModuleContainer-save-hook-RhBug1632518.patch diff --git a/0004-Relocate-ModuleContainer-save-hook-RhBug1632518.patch b/0004-Relocate-ModuleContainer-save-hook-RhBug1632518.patch deleted file mode 100644 index acc0da3..0000000 --- a/0004-Relocate-ModuleContainer-save-hook-RhBug1632518.patch +++ /dev/null @@ -1,58 +0,0 @@ -From 744a95e49b6f29aa65bc5b28e0e821c38c481581 Mon Sep 17 00:00:00 2001 -From: Jaroslav Mracek -Date: Fri, 19 Oct 2018 15:44:39 +0200 -Subject: [PATCH] Relocate ModuleContainer save hook (RhBug:1632518) - ---- - libdnf/dnf-context.cpp | 5 +---- - libdnf/dnf-transaction.cpp | 5 +++++ - 2 files changed, 6 insertions(+), 4 deletions(-) - -diff --git a/libdnf/dnf-context.cpp b/libdnf/dnf-context.cpp -index 141af3a..db1741c 100644 ---- a/libdnf/dnf-context.cpp -+++ b/libdnf/dnf-context.cpp -@@ -1879,10 +1879,7 @@ dnf_context_run(DnfContext *context, GCancellable *cancellable, GError **error) - error); - if (!ret) - return FALSE; -- auto moduleContainer = dnf_sack_get_module_container(priv->sack); -- if (moduleContainer) { -- moduleContainer->save(); -- } -+ - /* this sack is no longer valid */ - g_object_unref(priv->sack); - priv->sack = NULL; -diff --git a/libdnf/dnf-transaction.cpp b/libdnf/dnf-transaction.cpp -index 5c078a0..0d948d7 100644 ---- a/libdnf/dnf-transaction.cpp -+++ b/libdnf/dnf-transaction.cpp -@@ -38,12 +38,14 @@ - #include "dnf-package.h" - #include "dnf-rpmts.h" - #include "dnf-sack.h" -+#include "dnf-sack-private.hpp" - #include "dnf-transaction.h" - #include "dnf-types.h" - #include "dnf-utils.h" - #include "hy-query.h" - #include "hy-util-private.hpp" - -+#include "module/ModulePackageContainer.hpp" - #include "transaction/Swdb.hpp" - #include "transaction/Transformer.hpp" - #include "utils/bgettext/bgettext-lib.h" -@@ -1435,6 +1437,9 @@ dnf_transaction_commit(DnfTransaction *transaction, HyGoal goal, DnfState *state - goto out; - } - -+ if (auto moduleContainer = dnf_sack_get_module_container(dnf_context_get_sack(priv->context))) -+ moduleContainer->save(); -+ - /* all sacks are invalid now */ - dnf_context_invalidate_full(priv->context, - "transaction performed", --- -libgit2 0.26.7 - diff --git a/libdnf.spec b/libdnf.spec index 9671598..ac17e55 100644 --- a/libdnf.spec +++ b/libdnf.spec @@ -31,7 +31,7 @@ Name: libdnf Version: 0.22.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library providing simplified C and Python API to libsolv License: LGPLv2+ URL: https://github.com/rpm-software-management/libdnf @@ -39,7 +39,6 @@ Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz Patch0001: 0001-Modify-solver_describe_decision-to-report-cleaned-RhBug1486749.patch Patch0002: 0002-history-Fix-crash-in-TransactionItemaddReplacedBy.patch Patch0003: 0003-swdb-create-persistent-WAL-files-RhBug1640235.patch -Patch0004: 0004-Relocate-ModuleContainer-save-hook-RhBug1632518.patch BuildRequires: cmake BuildRequires: gcc @@ -247,6 +246,9 @@ popd %endif %changelog +* Sat Oct 20 2018 Jaroslav Mracek - 0.22.0-5 +- remove problematic patch Relocate-ModuleContainer-save-hook-RhBug1632518 + * Fri Oct 19 2018 Jaroslav Mracek - 0.22.0-4 - backport Relocate-ModuleContainer-save-hook-RhBug1632518