summaryrefslogtreecommitdiff
path: root/packages/packagekit/files
diff options
context:
space:
mode:
authorJulian_chu <julian_chu@openmoko.com>2008-06-04 18:08:45 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2008-10-28 22:48:51 +0100
commitd92e0545476e88e402cacf067bd2f24c951393cf (patch)
tree68f2bdf8e8be6dab81cd0034971b96cd11aebc4c /packages/packagekit/files
parentb8842ec5493a818e72e0dd8f2e22a998466037c9 (diff)
packagekit: Add patch to packagekit.
it fix a bug that packagekit does not reply group message after new get-details implementation.
Diffstat (limited to 'packages/packagekit/files')
-rw-r--r--packages/packagekit/files/03_group_infomation.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/packagekit/files/03_group_infomation.patch b/packages/packagekit/files/03_group_infomation.patch
new file mode 100644
index 0000000000..55872cd6ce
--- /dev/null
+++ b/packages/packagekit/files/03_group_infomation.patch
@@ -0,0 +1,31 @@
+diff --git a/backends/opkg/pk-backend-opkg.c b/backends/opkg/pk-backend-opkg.c
+index 2d70108..02966c9 100644
+--- a/backends/opkg/pk-backend-opkg.c
++++ b/backends/opkg/pk-backend-opkg.c
+@@ -656,6 +656,8 @@ backend_get_details_thread (PkBackend *backend)
+ {
+ PkPackageId *pi;
+ const gchar *package_id;
++ int group_index;
++ PkGroupEnum group = 0;
+ opkg_package_t *pkg;
+ gchar *newid;
+
+@@ -681,8 +683,16 @@ backend_get_details_thread (PkBackend *backend)
+
+ newid = g_strdup_printf ("%s;%s;%s;%s", pkg->name, pkg->version, pkg->architecture, pkg->repository);
+
+- pk_backend_details (backend, newid, NULL, 0, pkg->description, pkg->url, pkg->size);
++ if (pkg->tags) {
++ for (group_index = 0; group < PK_GROUP_ENUM_UNKNOWN; group_index++) {
++ group = 1 << group_index;
++ if (!(group & backend_get_groups(backend))) continue;
++ if (opkg_check_tag(pkg, (gchar *)pk_group_enum_to_text(group)))
++ break;
++ }
++ }
+
++ pk_backend_details (backend, newid, NULL, group, pkg->description, pkg->url, pkg->size);
+ g_free (newid);
+ pk_backend_finished (backend);
+ return TRUE;