diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-06-28 17:55:13 +0100 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-06-28 17:55:13 +0100 |
commit | 823c6520143c987eb609371afb7b815b375027c4 (patch) | |
tree | 305156b7a71a8fe59921a9b731bb0d5263225f7a | |
parent | 5c18b9297487c1c6098efbec2aae6ccca8c6a2d6 (diff) | |
download | libdbusmenu-823c6520143c987eb609371afb7b815b375027c4.tar.gz libdbusmenu-823c6520143c987eb609371afb7b815b375027c4.tar.bz2 libdbusmenu-823c6520143c987eb609371afb7b815b375027c4.zip |
releasing version 0.4.90-0ubuntu3
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/patches/lp799878.patch | 17 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 25 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 79bdc1a..bfa403e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +libdbusmenu (0.4.90-0ubuntu3) oneiric; urgency=low + + * debian/patches/lp799878.patch + - Fixed proxied menu events not getting returned (LP: #799878) + + -- Ken VanDine <ken.vandine@canonical.com> Tue, 28 Jun 2011 17:53:31 +0100 + libdbusmenu (0.4.90-0ubuntu2) oneiric; urgency=low * debian/control diff --git a/debian/patches/lp799878.patch b/debian/patches/lp799878.patch new file mode 100644 index 0000000..dff130a --- /dev/null +++ b/debian/patches/lp799878.patch @@ -0,0 +1,17 @@ +=== modified file 'libdbusmenu-glib/server.c' +--- old/libdbusmenu-glib/server.c 2011-06-17 03:42:29 +0000 ++++ new/libdbusmenu-glib/server.c 2011-06-28 16:40:16 +0000 +@@ -976,10 +976,10 @@ + gotsomething = TRUE; + } else { + GError * error = NULL; +- megadata[1] = g_variant_parse(G_VARIANT_TYPE("a(ia(s))"), "[ ]", NULL, NULL, &error); ++ megadata[1] = g_variant_parse(G_VARIANT_TYPE("a(ias)"), "[ ]", NULL, NULL, &error); + + if (error != NULL) { +- g_warning("Unable to parse '[ ]' as a 'a(ia(s))': %s", error->message); ++ g_warning("Unable to parse '[ ]' as a 'a(ias)': %s", error->message); + g_error_free(error); + } + } + diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..43b331a --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +lp799878.patch |