Show some text progress when the offline update is going on

This commit is contained in:
Richard Hughes 2013-11-01 13:18:31 +00:00
parent 149c029d39
commit edbde1df85
2 changed files with 78 additions and 1 deletions

View File

@ -0,0 +1,70 @@
From c0fa2592d0d4f7ef26b579e5d0e76544dfb16ab7 Mon Sep 17 00:00:00 2001
From: Richard Hughes <richard@hughsie.com>
Date: Fri, 1 Nov 2013 13:08:27 +0000
Subject: [PATCH] systemd-updates: Show some text progress when the offline
update is going on
---
contrib/systemd-updates/pk-offline-update.c | 12 +++++++++++-
po/POTFILES.in | 1 +
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/contrib/systemd-updates/pk-offline-update.c b/contrib/systemd-updates/pk-offline-update.c
index f9de773..cf862a4 100644
--- a/contrib/systemd-updates/pk-offline-update.c
+++ b/contrib/systemd-updates/pk-offline-update.c
@@ -20,6 +20,7 @@
*/
#include <glib.h>
+#include <glib/gi18n.h>
#include <glib/gstdio.h>
#include <gio/gio.h>
#include <packagekit-glib2/packagekit.h>
@@ -143,6 +144,12 @@ pk_offline_update_progress_cb (PkProgress *progress,
if (percentage < 0)
goto out;
+ /* TRANSLATORS: this is the message we send plymouth to
+ * advise of the new percentage completion */
+ msg = g_strdup_printf ("%s - %i%%", _("Installing Updates"), percentage);
+ if (percentage > 10)
+ pk_offline_update_set_plymouth_msg (msg);
+
/* print on terminal */
pk_progress_bar_set_percentage (progressbar, percentage);
@@ -176,7 +183,8 @@ pk_offline_update_reboot (void)
/* reboot using systemd */
pk_offline_update_set_plymouth_mode ("shutdown");
- pk_offline_update_set_plymouth_msg ("Rebooting after installing updates...");
+ /* TRANSLATORS: we've finished doing offline updates */
+ pk_offline_update_set_plymouth_msg (_("Rebooting after installing updates…"));
connection = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error);
if (connection == NULL) {
g_warning ("Failed to get system bus connection: %s",
@@ -481,6 +489,8 @@ main (int argc, char *argv[])
task = pk_task_new ();
pk_task_set_interactive (task, FALSE);
pk_offline_update_set_plymouth_mode ("updates");
+ /* TRANSLATORS: we've started doing offline updates */
+ pk_offline_update_set_plymouth_msg (_("Installing updates, this could take a while…"));
package_ids = g_strsplit (packages_data, "\n", -1);
pk_offline_update_write_dummy_results (package_ids);
results = pk_client_update_packages (PK_CLIENT (task),
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 4a06d8b..7964c76 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -8,6 +8,7 @@ contrib/browser-plugin/pk-plugin-install.c
contrib/command-not-found/pk-command-not-found.c
contrib/debuginfo-install/pk-debuginfo-install.c
contrib/device-rebind/pk-device-rebind.c
+contrib/systemd-updates/pk-offline-update.c
data/packagekit-catalog.xml.in
data/packagekit-package-list.xml.in
data/packagekit-servicepack.xml.in
--
1.8.3.1

View File

@ -6,7 +6,7 @@
Summary: Package management service
Name: PackageKit
Version: 0.8.12
Release: 1%{?dist}
Release: 2%{?dist}
License: GPLv2+ and LGPLv2+
URL: http://www.packagekit.org
Source0: http://www.packagekit.org/releases/%{name}-%{version}.tar.xz
@ -20,6 +20,9 @@ Patch1: PackageKit-0.4.4-Fedora-turn-off-time.conf.patch
# Upstreamable? allow use of xulrunner2 for browser-plugin support
Patch4: PackageKit-0.7.4-xulrunner2.patch
# Upstream
Patch5: 0001-systemd-updates-Show-some-text-progress-when-the-off.patch
Requires: %{name}-glib%{?_isa} = %{version}-%{release}
Requires: PackageKit-backend
Requires: shared-mime-info
@ -250,6 +253,7 @@ user to restart the computer or remove and re-insert the device.
%patch0 -p1 -b .fedora
%patch1 -p1 -b .no-time
%patch4 -p1 -b .xulrunner2
%patch5 -p1 -b .show-progress-offline-updates
NOCONFIGURE=1 ./autogen.sh
@ -451,6 +455,9 @@ update-mime-database %{_datadir}/mime &> /dev/null || :
%{_libdir}/pkgconfig/packagekit-plugin.pc
%changelog
* Fri Nov 01 2013 Richard Hughes <rhughes@redhat.com> - 0.8.12-2
- Show some text progress when the offline update is going on
* Fri Oct 18 2013 Richard Hughes <rhughes@redhat.com> - 0.8.12-1
- New upstream release
- Destroy and re-create the control proxy if the server changes