From 9234bcb0d30e66db7b8fcfd867086185649ecbae Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 31 Jan 2014 21:11:52 +0100 Subject: python-efl: upgrade from separate recipes to shared python-efl-1.8.1 * python-ecore, python-edbus, python-edje, python-elementary, python-emotion, python-evas are now built from single source tree * announcements: 1.8.0: http://sourceforge.net/mailarchive/message.php?msg_id=31728838 1.8.1: http://sourceforge.net/mailarchive/message.php?msg_id=31862842 * be aware that upgrade-path wont probably work correctly and that you have to manually cleanup your sysroots before migrating to new shared efl recipe, for details see https://bugzilla.yoctoproject.org/show_bug.cgi?id=4102 Signed-off-by: Martin Jansa --- .../python-edje/0001-fix-unicode-conversion.patch | 38 ---------------------- 1 file changed, 38 deletions(-) delete mode 100644 meta-efl/recipes-devtools/python/python-edje/0001-fix-unicode-conversion.patch (limited to 'meta-efl/recipes-devtools/python/python-edje/0001-fix-unicode-conversion.patch') diff --git a/meta-efl/recipes-devtools/python/python-edje/0001-fix-unicode-conversion.patch b/meta-efl/recipes-devtools/python/python-edje/0001-fix-unicode-conversion.patch deleted file mode 100644 index 3b0cdc627c..0000000000 --- a/meta-efl/recipes-devtools/python/python-edje/0001-fix-unicode-conversion.patch +++ /dev/null @@ -1,38 +0,0 @@ -From fa12a33b5a3c0e86231ca84967d9eff456e5f314 Mon Sep 17 00:00:00 2001 -From: Jan Luebbe -Date: Sat, 9 Aug 2008 18:30:04 +0200 -Subject: [PATCH] fix unicode conversion - ---- - edje/edje.c_edje_object.pxi | 11 +++++++---- - 1 files changed, 7 insertions(+), 4 deletions(-) - -diff --git a/edje/edje.c_edje_object.pxi b/edje/edje.c_edje_object.pxi -index 0f4da68..21c237e 100644 ---- a/edje/edje.c_edje_object.pxi -+++ b/edje/edje.c_edje_object.pxi -@@ -415,17 +415,20 @@ - else: - raise TypeError("func must be callable or None") - -- def part_text_set(self, char *part, char *text): -- edje_object_part_text_set(self.obj, part, text) -+ def part_text_set(self, char *part, text): -+ cdef char *s -+ u = text.encode("utf8") -+ s = u -+ edje_object_part_text_set(self.obj, part, s) - - def part_text_get(self, char *part): -- "@rtype: str" -+ "@rtype: unicode" - cdef const_char_ptr s - s = edje_object_part_text_get(self.obj, part) - if s == NULL: - return None - else: -- return s -+ return s.decode("utf8") - - def part_text_select_all(self, char *part): - edje_object_part_text_select_all(self.obj, part) -- cgit v1.2.3-54-g00ecf