[gnome-software/wip/temp/ubuntu-xenial-rebased-corrected: 149/331] Use source package name for sources, not binary package name
- From: William Hua <williamhua src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software/wip/temp/ubuntu-xenial-rebased-corrected: 149/331] Use source package name for sources, not binary package name
- Date: Wed, 4 May 2016 14:11:03 +0000 (UTC)
commit f8d1a5f7e3d1d44ecc1b24891cac3b7c4d3b686e
Author: Robert Ancell <robert ancell canonical com>
Date: Wed Mar 9 12:51:44 2016 +1300
Use source package name for sources, not binary package name
src/plugins/gs-plugin-apt.c | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/src/plugins/gs-plugin-apt.c b/src/plugins/gs-plugin-apt.c
index c1b8e91..a6d1273 100644
--- a/src/plugins/gs-plugin-apt.c
+++ b/src/plugins/gs-plugin-apt.c
@@ -30,6 +30,7 @@
typedef struct {
gchar *name;
+ gchar *source;
gchar *installed_version;
gchar *update_version;
gint installed_size;
@@ -67,6 +68,7 @@ free_package_info (gpointer data)
{
PackageInfo *info = data;
g_free (info->name);
+ g_free (info->source);
g_free (info->installed_version);
g_free (info->update_version);
g_slice_free (PackageInfo, info);
@@ -317,6 +319,10 @@ field_cb (const gchar *name, gsize name_length, const gchar *value, gsize value_
}
} else if (strncmp (name, "Installed-Size", name_length) == 0) {
data->current_info->installed_size = atoi (value);
+ } else if (strncmp (name, "Source", name_length) == 0) {
+ gchar *source = g_strndup (value, value_length);
+ g_free (data->current_info->source);
+ data->current_info->source = source;
} else if (strncmp (name, "Version", name_length) == 0) {
gchar *version = g_strndup (value, value_length);
if (data->current_installed) {
@@ -532,7 +538,7 @@ gs_plugin_add_installed (GsPlugin *plugin,
app = gs_app_new (info->name);
// FIXME: Since appstream marks all packages as owned by PackageKit and we are replacing
PackageKit we need to accept those packages
gs_app_set_management_plugin (app, "PackageKit");
- gs_app_add_source (app, info->name);
+ gs_app_add_source (app, info->source ? info->source : info->name);
gs_plugin_add_app (list, app);
}
@@ -810,7 +816,7 @@ gs_plugin_add_updates (GsPlugin *plugin,
app = gs_app_new (info->name);
// FIXME: Since appstream marks all packages as owned by PackageKit and we are replacing
PackageKit we need to accept those packages
gs_app_set_management_plugin (app, "PackageKit");
- gs_app_add_source (app, info->name);
+ gs_app_add_source (app, info->source ? info->source : info->name);
gs_plugin_add_app (list, app);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]