rpms/gnome-packagekit/devel gnome-packagekit-0.4.5-use-unfinished-update-viewer.patch, NONE, 1.1 .cvsignore, 1.39, 1.40 gnome-packagekit.spec, 1.74, 1.75 sources, 1.39, 1.40

Richard Hughes rhughes at fedoraproject.org
Mon Mar 9 10:19:16 UTC 2009


Author: rhughes

Update of /cvs/pkgs/rpms/gnome-packagekit/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22086

Modified Files:
	.cvsignore gnome-packagekit.spec sources 
Added Files:
	gnome-packagekit-0.4.5-use-unfinished-update-viewer.patch 
Log Message:
* Mon Mar 09 2009 Richard Hughes  <rhughes at redhat.com> - 0.4.5-1
- New upstream version
- Merge in a new update viewer with a very different UI which I've patched
  Fedora to use by default as requested by Matthias.
- Lots of translation updates


gnome-packagekit-0.4.5-use-unfinished-update-viewer.patch:

--- NEW FILE gnome-packagekit-0.4.5-use-unfinished-update-viewer.patch ---
diff --git a/data/gpk-update-viewer.desktop.in b/data/gpk-update-viewer.desktop.in
index bcde9af..cf5c67d 100644
--- a/data/gpk-update-viewer.desktop.in
+++ b/data/gpk-update-viewer.desktop.in
@@ -4,7 +4,7 @@ _Name=Update System
 _GenericName=Software Update Viewer
 _Comment=Update software installed on the system
 Icon=system-software-update
-Exec=gpk-update-viewer
+Exec=gpk-update-viewer2
 Terminal=false
 Type=Application
 Categories=GNOME;GTK;Settings;System;PackageManager;
diff --git a/src/gpk-check-update.c b/src/gpk-check-update.c
index 2f2cd36..45ac91b 100644
--- a/src/gpk-check-update.c
+++ b/src/gpk-check-update.c
@@ -334,7 +334,7 @@ gpk_check_update_menuitem_update_system_cb (GtkMenuItem *item, gpointer data)
 static void
 gpk_check_update_menuitem_show_updates_cb (GtkMenuItem *item, gpointer data)
 {
-	const gchar *command = "gpk-update-viewer";
+	const gchar *command = "gpk-update-viewer2";
 	if (!g_spawn_command_line_async (command, NULL))
 		egg_warning ("Couldn't execute command: %s", command);
 }
diff --git a/src/gpk-log.c b/src/gpk-log.c
index e3c711f..8414b5a 100644
--- a/src/gpk-log.c
+++ b/src/gpk-log.c
@@ -542,6 +542,9 @@ gpk_log_add_obj (const PkTransactionObj *obj)
 	else if (egg_strequal (obj->cmdline, "gpk-update-viewer"))
 		/* TRANSLATORS: short name for gpk-update-viewer */
 		tool = _("Update System");
+	else if (egg_strequal (obj->cmdline, "gpk-update-viewer2"))
+		/* TRANSLATORS: short name for gpk-update-viewer (new name) */
+		tool = _("Update System");
 	else if (egg_strequal (obj->cmdline, "gpk-update-icon"))
 		/* TRANSLATORS: short name for gpk-update-icon */
 		tool = _("Update Icon");


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/.cvsignore,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- .cvsignore	23 Feb 2009 11:06:02 -0000	1.39
+++ .cvsignore	9 Mar 2009 10:18:46 -0000	1.40
@@ -1 +1 @@
-gnome-packagekit-0.4.4.tar.gz
+gnome-packagekit-0.4.5.tar.gz


Index: gnome-packagekit.spec
===================================================================
RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/gnome-packagekit.spec,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- gnome-packagekit.spec	24 Feb 2009 23:11:24 -0000	1.74
+++ gnome-packagekit.spec	9 Mar 2009 10:18:46 -0000	1.75
@@ -5,8 +5,8 @@
 
 Summary:   Session applications to manage packages
 Name:      gnome-packagekit
-Version:   0.4.4
-Release:   3%{?dist}
+Version:   0.4.5
+Release:   1%{?dist}
 License:   GPLv2+
 Group:     Applications/System
 URL:       http://www.packagekit.org
@@ -16,7 +16,10 @@
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 # Fedora-specific -- requires behdad's new fontconfig before it's useful
-Patch0:    gnome-packagekit-0.4.0-set-gtk-module-false.patch
+#Patch0:    gnome-packagekit-0.4.0-set-gtk-module-false.patch
+
+# Fedora specific, as we want bleeding edge
+Patch1:    gnome-packagekit-0.4.5-use-unfinished-update-viewer.patch
 
 Requires:  gtk2 >= 2.12.0
 Requires:  gnome-icon-theme
@@ -53,7 +56,6 @@
 BuildRequires: perl(XML::Parser)
 BuildRequires: gnome-doc-utils
 BuildRequires: gnome-menus-devel
-BuildRequires: libsexy-devel
 BuildRequires: PackageKit-devel >= %{packagekit_version}
 BuildRequires: PolicyKit-gnome-devel
 BuildRequires: unique-devel
@@ -77,7 +79,8 @@
 
 %prep
 %setup -q
-%patch0 -p1
+#%patch0 -p1
+%patch1 -p1
 
 %build
 %configure --disable-scrollkeeper --disable-schemas-install
@@ -207,11 +210,19 @@
 %doc AUTHORS ChangeLog COPYING NEWS README
 %{_bindir}/gpk-backend-status
 %{_bindir}/gpk-service-pack
+%{_bindir}/gpk-update-viewer2
 %{_datadir}/gnome-packagekit/gpk-service-pack.glade
 %{_datadir}/gnome-packagekit/gpk-backend-status.glade
+%{_datadir}/gnome-packagekit/gpk-update-viewer2.glade
 %{_datadir}/applications/gpk-service-pack.desktop
 
 %changelog
+* Mon Mar 09 2009 Richard Hughes  <rhughes at redhat.com> - 0.4.5-1
+- New upstream version
+- Merge in a new update viewer with a very different UI which I've patched
+  Fedora to use by default as requested by Matthias.
+- Lots of translation updates
+
 * Tue Feb 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.4.4-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/sources,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- sources	23 Feb 2009 11:06:02 -0000	1.39
+++ sources	9 Mar 2009 10:18:46 -0000	1.40
@@ -1 +1 @@
-48f9005a49cf59c4212aa6145fbc2f2a  gnome-packagekit-0.4.4.tar.gz
+72bbc0d38a234777a602b3aadda8bb82  gnome-packagekit-0.4.5.tar.gz




More information about the fedora-extras-commits mailing list