Update to 3.36.1

This commit is contained in:
Richard Hughes 2020-05-22 17:00:53 +01:00
parent 122d8ac603
commit 63583454c0
6 changed files with 7 additions and 204 deletions

1
.gitignore vendored
View File

@ -110,3 +110,4 @@
/gnome-software-3.35.91.tar.xz /gnome-software-3.35.91.tar.xz
/gnome-software-3.35.92.tar.xz /gnome-software-3.35.92.tar.xz
/gnome-software-3.36.0.tar.xz /gnome-software-3.36.0.tar.xz
/gnome-software-3.36.1.tar.xz

View File

@ -1,27 +0,0 @@
From 33c980fb6fc0b0ad8206ffd39cf789447831518a Mon Sep 17 00:00:00 2001
From: Kalev Lember <klember@redhat.com>
Date: Tue, 12 May 2020 10:18:43 +0200
Subject: [PATCH 1/3] rpm-ostree: Add missing locking when creating DnfContext
Fixes https://gitlab.gnome.org/GNOME/gnome-software/issues/983
---
plugins/rpm-ostree/gs-plugin-rpm-ostree.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/plugins/rpm-ostree/gs-plugin-rpm-ostree.c b/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
index 3811f935..f2c33484 100644
--- a/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
+++ b/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
@@ -657,6 +657,9 @@ gs_plugin_refresh (GsPlugin *plugin,
GError **error)
{
GsPluginData *priv = gs_plugin_get_data (plugin);
+ g_autoptr(GMutexLocker) locker = NULL;
+
+ locker = g_mutex_locker_new (&priv->mutex);
if (!ensure_rpmostree_dnf_context (plugin, cancellable, error))
return FALSE;
--
2.26.2

View File

@ -1,64 +0,0 @@
From 1d74bd249459f5a6768ce0642538f2ff395543c8 Mon Sep 17 00:00:00 2001
From: Kalev Lember <klember@redhat.com>
Date: Tue, 12 May 2020 15:13:41 +0200
Subject: [PATCH 2/3] rpm-ostree: Correctly mark layered local packages as
removable
Fixes https://gitlab.gnome.org/GNOME/gnome-software/issues/984
---
plugins/rpm-ostree/gs-plugin-rpm-ostree.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/plugins/rpm-ostree/gs-plugin-rpm-ostree.c b/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
index f2c33484..e3824df1 100644
--- a/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
+++ b/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
@@ -1251,6 +1251,7 @@ static gboolean
resolve_installed_packages_app (GsPlugin *plugin,
GPtrArray *pkglist,
gchar **layered_packages,
+ gchar **layered_local_packages,
GsApp *app)
{
for (guint i = 0; i < pkglist->len; i++) {
@@ -1260,7 +1261,9 @@ resolve_installed_packages_app (GsPlugin *plugin,
if (gs_app_get_state (app) == AS_APP_STATE_UNKNOWN)
gs_app_set_state (app, AS_APP_STATE_INSTALLED);
if (g_strv_contains ((const gchar * const *) layered_packages,
- rpm_ostree_package_get_name (pkg))) {
+ rpm_ostree_package_get_name (pkg)) ||
+ g_strv_contains ((const gchar * const *) layered_local_packages,
+ rpm_ostree_package_get_nevra (pkg))) {
/* layered packages can always be removed */
gs_app_remove_quirk (app, GS_APP_QUIRK_COMPULSORY);
} else {
@@ -1389,6 +1392,7 @@ gs_plugin_refine (GsPlugin *plugin,
g_autoptr(GPtrArray) pkglist = NULL;
g_autoptr(GVariant) default_deployment = NULL;
g_auto(GStrv) layered_packages = NULL;
+ g_auto(GStrv) layered_local_packages = NULL;
g_autofree gchar *checksum = NULL;
locker = g_mutex_locker_new (&priv->mutex);
@@ -1403,6 +1407,9 @@ gs_plugin_refine (GsPlugin *plugin,
g_assert (g_variant_lookup (default_deployment,
"packages", "^as",
&layered_packages));
+ g_assert (g_variant_lookup (default_deployment,
+ "requested-local-packages", "^as",
+ &layered_local_packages));
g_assert (g_variant_lookup (default_deployment,
"checksum", "s",
&checksum));
@@ -1442,7 +1449,7 @@ gs_plugin_refine (GsPlugin *plugin,
continue;
/* first try to resolve from installed packages */
- found = resolve_installed_packages_app (plugin, pkglist, layered_packages, app);
+ found = resolve_installed_packages_app (plugin, pkglist, layered_packages, layered_local_packages, app);
/* if we didn't find anything, try resolving from available packages */
if (!found && priv->dnf_context != NULL)
--
2.26.2

View File

@ -1,106 +0,0 @@
From 73c6118c15cdcbc33828dc2b470f2e652f4a64ac Mon Sep 17 00:00:00 2001
From: Kalev Lember <klember@redhat.com>
Date: Tue, 12 May 2020 16:53:20 +0200
Subject: [PATCH 3/3] rpm-ostree: Hook up the progress info required for the
loading page
---
plugins/rpm-ostree/gs-plugin-rpm-ostree.c | 34 ++++++++++++++++++++++-
1 file changed, 33 insertions(+), 1 deletion(-)
diff --git a/plugins/rpm-ostree/gs-plugin-rpm-ostree.c b/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
index e3824df1..96531759 100644
--- a/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
+++ b/plugins/rpm-ostree/gs-plugin-rpm-ostree.c
@@ -255,8 +255,9 @@ transaction_progress_new (void)
static void
transaction_progress_free (TransactionProgress *self)
{
- g_main_loop_unref (self->loop);
+ g_clear_object (&self->plugin);
g_clear_error (&self->error);
+ g_main_loop_unref (self->loop);
g_clear_object (&self->app);
g_slice_free (TransactionProgress, self);
}
@@ -281,11 +282,30 @@ on_transaction_progress (GDBusProxy *proxy,
if (g_strcmp0 (signal_name, "PercentProgress") == 0) {
const gchar *message = NULL;
guint32 percentage;
+
g_variant_get_child (parameters, 0, "&s", &message);
g_variant_get_child (parameters, 1, "u", &percentage);
g_debug ("PercentProgress: %u, %s\n", percentage, message);
+
if (tp->app != NULL)
gs_app_set_progress (tp->app, (guint) percentage);
+
+ if (tp->app != NULL && tp->plugin != NULL) {
+ GsPluginStatus plugin_status;
+
+ switch (gs_app_get_state (tp->app)) {
+ case AS_APP_STATE_INSTALLING:
+ plugin_status = GS_PLUGIN_STATUS_INSTALLING;
+ break;
+ case AS_APP_STATE_REMOVING:
+ plugin_status = GS_PLUGIN_STATUS_REMOVING;
+ break;
+ default:
+ plugin_status = GS_PLUGIN_STATUS_DOWNLOADING;
+ break;
+ }
+ gs_plugin_status_update (tp->plugin, tp->app, plugin_status);
+ }
} else if (g_strcmp0 (signal_name, "Finished") == 0) {
if (tp->error == NULL) {
g_autofree gchar *error_message = NULL;
@@ -603,6 +623,7 @@ ensure_rpmostree_dnf_context (GsPlugin *plugin, GCancellable *cancellable, GErro
{
GsPluginData *priv = gs_plugin_get_data (plugin);
g_autofree gchar *transaction_address = NULL;
+ g_autoptr(GsApp) progress_app = gs_app_new (gs_plugin_get_name (plugin));
g_autoptr(DnfContext) context = dnf_context_new ();
g_autoptr(DnfState) state = dnf_state_new ();
g_autoptr(GVariant) options = NULL;
@@ -611,6 +632,9 @@ ensure_rpmostree_dnf_context (GsPlugin *plugin, GCancellable *cancellable, GErro
if (priv->dnf_context != NULL)
return TRUE;
+ tp->app = g_object_ref (progress_app);
+ tp->plugin = g_object_ref (plugin);
+
dnf_context_set_repo_dir (context, "/etc/yum.repos.d");
dnf_context_set_cache_dir (context, RPMOSTREE_CORE_CACHEDIR RPMOSTREE_DIR_CACHE_REPOMD);
dnf_context_set_solv_dir (context, RPMOSTREE_CORE_CACHEDIR RPMOSTREE_DIR_CACHE_SOLV);
@@ -669,9 +693,13 @@ gs_plugin_refresh (GsPlugin *plugin,
{
g_autofree gchar *transaction_address = NULL;
+ g_autoptr(GsApp) progress_app = gs_app_new (gs_plugin_get_name (plugin));
g_autoptr(GVariant) options = NULL;
g_autoptr(TransactionProgress) tp = transaction_progress_new ();
+ tp->app = g_object_ref (progress_app);
+ tp->plugin = g_object_ref (plugin);
+
options = make_rpmostree_options_variant (FALSE, /* reboot */
FALSE, /* allow-downgrade */
FALSE, /* cache-only */
@@ -703,10 +731,14 @@ gs_plugin_refresh (GsPlugin *plugin,
{
g_autofree gchar *transaction_address = NULL;
+ g_autoptr(GsApp) progress_app = gs_app_new (gs_plugin_get_name (plugin));
g_autoptr(GVariant) options = NULL;
GVariantDict dict;
g_autoptr(TransactionProgress) tp = transaction_progress_new ();
+ tp->app = g_object_ref (progress_app);
+ tp->plugin = g_object_ref (plugin);
+
g_variant_dict_init (&dict, NULL);
g_variant_dict_insert (&dict, "mode", "s", "check");
options = g_variant_ref_sink (g_variant_dict_end (&dict));
--
2.26.2

View File

@ -11,18 +11,14 @@
%global libxmlb_version 0.1.7 %global libxmlb_version 0.1.7
Name: gnome-software Name: gnome-software
Version: 3.36.0 Version: 3.36.1
Release: 2%{?dist} Release: 1%{?dist}
Summary: A software center for GNOME Summary: A software center for GNOME
License: GPLv2+ License: GPLv2+
URL: https://wiki.gnome.org/Apps/Software URL: https://wiki.gnome.org/Apps/Software
Source0: https://download.gnome.org/sources/gnome-software/3.36/%{name}-%{version}.tar.xz Source0: https://download.gnome.org/sources/gnome-software/3.36/%{name}-%{version}.tar.xz
Patch1: 0001-rpm-ostree-Add-missing-locking-when-creating-DnfCont.patch
Patch2: 0002-rpm-ostree-Correctly-mark-layered-local-packages-as-.patch
Patch3: 0003-rpm-ostree-Hook-up-the-progress-info-required-for-th.patch
BuildRequires: gcc BuildRequires: gcc
BuildRequires: gettext BuildRequires: gettext
BuildRequires: libxslt BuildRequires: libxslt
@ -207,6 +203,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
%{_datadir}/gtk-doc/html/gnome-software %{_datadir}/gtk-doc/html/gnome-software
%changelog %changelog
* Fri May 22 2020 Richard Hughes <rhughes@redhat.com> - 3.36.1-1
- Update to 3.36.1
* Tue May 12 2020 Kalev Lember <klember@redhat.com> - 3.36.0-2 * Tue May 12 2020 Kalev Lember <klember@redhat.com> - 3.36.0-2
- Backport various rpm-ostree backend fixes - Backport various rpm-ostree backend fixes

View File

@ -1 +1 @@
SHA512 (gnome-software-3.36.0.tar.xz) = 3727b738b0f669018b4b9b2af11dd86a1af6d8da7632b88c6ac47ef97b97299abb0aec47a6de2dc7e6afa33ee153f9df30e63e5dc83652a5402d6444389024c9 SHA512 (gnome-software-3.36.1.tar.xz) = 7d0e8c16192bbbc8f166db137dbd2e6ff9e85f7d3d37f63f41211ba3838e392bd87a8d9bf09d31b43f6d21e1a099ecdeff9114ae27fae40d563671f0bcbe50d4