diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2012-10-04 17:28:11 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2012-10-04 17:28:11 +0800 |
commit | 6fc29d848e55e46c5f7d833a1b88bad4c3dc333d (patch) | |
tree | 73a5ed1c805dddd32e759c1cf89b8811cf47ffb3 | |
parent | 8afded8244714f7017f0438c66d15def263ea57b (diff) | |
download | marcuscom-ports-6fc29d848e55e46c5f7d833a1b88bad4c3dc333d.tar marcuscom-ports-6fc29d848e55e46c5f7d833a1b88bad4c3dc333d.tar.gz marcuscom-ports-6fc29d848e55e46c5f7d833a1b88bad4c3dc333d.tar.bz2 marcuscom-ports-6fc29d848e55e46c5f7d833a1b88bad4c3dc333d.tar.lz marcuscom-ports-6fc29d848e55e46c5f7d833a1b88bad4c3dc333d.tar.xz marcuscom-ports-6fc29d848e55e46c5f7d833a1b88bad4c3dc333d.tar.zst marcuscom-ports-6fc29d848e55e46c5f7d833a1b88bad4c3dc333d.zip |
Add patch to fix the build with newer gobject-introspection (not yet committed).
Obtained from: upstream git
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@17091 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | www/libsocialweb/files/patch-gi-namespace | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/www/libsocialweb/files/patch-gi-namespace b/www/libsocialweb/files/patch-gi-namespace new file mode 100644 index 000000000..93de7411f --- /dev/null +++ b/www/libsocialweb/files/patch-gi-namespace @@ -0,0 +1,82 @@ +From c1791e96182815449781fcda6007b69cd88cf7bf Mon Sep 17 00:00:00 2001 +From: Colin Walters <walters@verbum.org> +Date: Mon, 04 Jun 2012 17:54:12 +0000 +Subject: client: Fix namespacing of introspection annotations + +--- +diff --git a/libsocialweb-client/sw-client-contact-view.c b/libsocialweb-client/sw-client-contact-view.c +index bb2679f..6eaee0e 100644 +--- libsocialweb-client/sw-client-contact-view.c ++++ libsocialweb-client/sw-client-contact-view.c +@@ -384,7 +384,7 @@ sw_client_contact_view_class_init (SwClientContactViewClass *klass) + /** + * SwClientContactView::contacts-added: + * @self: +- * @contacts: (type GLib.List) (element-type Sw.Contact): ++ * @contacts: (type GLib.List) (element-type SocialWebClient.Contact): + */ + signals[CONTACTS_ADDED_SIGNAL] = + g_signal_new ("contacts-added", +@@ -401,7 +401,7 @@ sw_client_contact_view_class_init (SwClientContactViewClass *klass) + /** + * SwClientContactView::contacts-removed: + * @self: +- * @contacts: (type GLib.List) (element-type Sw.Contact): ++ * @contacts: (type GLib.List) (element-type SocialWebClient.Contact): + */ + signals[CONTACTS_REMOVED_SIGNAL] = + g_signal_new ("contacts-removed", +@@ -418,7 +418,7 @@ sw_client_contact_view_class_init (SwClientContactViewClass *klass) + /** + * SwClientContactView::contacts-changed: + * @self: +- * @contacts: (type GLib.List) (element-type Sw.Contact): ++ * @contacts: (type GLib.List) (element-type SocialWebClient.Contact): + */ + signals[CONTACTS_CHANGED_SIGNAL] = + g_signal_new ("contacts-changed", +diff --git a/libsocialweb-client/sw-client-item-view.c b/libsocialweb-client/sw-client-item-view.c +index 6bfdb76..ab98fdd 100644 +--- libsocialweb-client/sw-client-item-view.c ++++ libsocialweb-client/sw-client-item-view.c +@@ -389,7 +389,7 @@ sw_client_item_view_class_init (SwClientItemViewClass *klass) + /** + * SwClientItemView::items-added: + * @self: +- * @items: (type GLib.List) (element-type Sw.Item): ++ * @items: (type GLib.List) (element-type SocialWebClient.Item): + */ + signals[ITEMS_ADDED_SIGNAL] = + g_signal_new ("items-added", +@@ -406,7 +406,7 @@ sw_client_item_view_class_init (SwClientItemViewClass *klass) + /** + * SwClientItemView::items-removed: + * @self: +- * @items: (type GLib.List) (element-type Sw.Item): ++ * @items: (type GLib.List) (element-type SocialWebClient.Item): + */ + signals[ITEMS_REMOVED_SIGNAL] = + g_signal_new ("items-removed", +@@ -423,7 +423,7 @@ sw_client_item_view_class_init (SwClientItemViewClass *klass) + /** + * SwClientItemView::items-changed: + * @self: +- * @items: (type GLib.List) (element-type Sw.Item): ++ * @items: (type GLib.List) (element-type SocialWebClient.Item): + */ + signals[ITEMS_CHANGED_SIGNAL] = + g_signal_new ("items-changed", +diff --git a/libsocialweb-client/sw-contact.c b/libsocialweb-client/sw-contact.c +index efefb37..b56ab39 100644 +--- libsocialweb-client/sw-contact.c ++++ libsocialweb-client/sw-contact.c +@@ -104,7 +104,6 @@ sw_contact_get_value (SwContact *contact, + + /** + * sw_contact_get_value_all: +- * + * @contact: : + * @key: : + * +-- +cgit v0.9.0.2 |