aboutsummaryrefslogtreecommitdiffstats
path: root/meta-efl/recipes-efl/efl/libeflvala
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2011-12-13 09:49:07 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2011-12-20 14:53:58 +0100
commit458f724d9bdb716b6907ea797a92fe0f67f1f72b (patch)
treee18337d08518cf6aa916823e238d52b14671bd37 /meta-efl/recipes-efl/efl/libeflvala
parent5b1dff8b4f52873060b75813eeba864d64a70083 (diff)
downloadmeta-openembedded-contrib-458f724d9bdb716b6907ea797a92fe0f67f1f72b.tar.gz
e-base: bump EFL_SRCREV remove EFL_SRCREV_1.* and applied patches from libeflvala, elsa and python-elementary
* elementary (Evas_GL) and e-wm (backlight) depends on trunk again.. 10:06:36 < JaMa> shouldn't elementary and e17 depend only on efl-1.1? | ./Elementary.h:372:21: fatal error: Evas_GL.h: No such file or directory and e/src/bin/e_backlight.c:43: undefined reference to `ecore_x_randr_output_backlight_available' 10:07:32 < JaMa> but I'll recheck my configs 10:08:20 < moa> hum, that evas_gl.h would be a problem indeed 10:08:36 < moa> for e, i don't know 10:08:57 <@raster> elm requires svn evas 10:09:02 <@raster> thats unfortunately how it is 10:09:12 <@raster> requires evas_gl 10:09:35 < JaMa> maybe this is missing in 1.1 branch for e17? r65838 10:09:42 <@raster> yes 10:09:46 <@raster> its missing 10:09:50 <@raster> as its in trunk 10:09:53 <@raster> its a "new feature" 10:09:58 <@raster> not in stable 10:10:15 <@raster> uy'd have to patch out the support to make elm from svn build 10:10:42 < JaMa> raster: ok then I just didn't understand the dependency on "only" efl-1.1 right.. I'll update the rest of efl to same rev (instead of keeping them on 1.1 release) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-efl/recipes-efl/efl/libeflvala')
-rw-r--r--meta-efl/recipes-efl/efl/libeflvala/0001-BINDINS-vala-update-genlist-gengrid-callbacks-s-labe.patch97
1 files changed, 0 insertions, 97 deletions
diff --git a/meta-efl/recipes-efl/efl/libeflvala/0001-BINDINS-vala-update-genlist-gengrid-callbacks-s-labe.patch b/meta-efl/recipes-efl/efl/libeflvala/0001-BINDINS-vala-update-genlist-gengrid-callbacks-s-labe.patch
deleted file mode 100644
index 90c0de6e2b..0000000000
--- a/meta-efl/recipes-efl/efl/libeflvala/0001-BINDINS-vala-update-genlist-gengrid-callbacks-s-labe.patch
+++ /dev/null
@@ -1,97 +0,0 @@
-From 3e51778fdba36c81204b9eca81e67624c6401972 Mon Sep 17 00:00:00 2001
-From: Martin Jansa <Martin.Jansa@gmail.com>
-Date: Thu, 1 Dec 2011 17:28:38 +0100
-Subject: [PATCH] BINDINS/vala: update genlist/gengrid callbacks
- s/label_get/text_get/g
-
-Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
----
- BINDINGS/vala/examples/elementary/genlist.vala | 2 +-
- BINDINGS/vala/vapi/elementary.vapi | 16 ++++++++--------
- 2 files changed, 9 insertions(+), 9 deletions(-)
-
-diff --git a/examples/elementary/genlist.vala b/examples/elementary/genlist.vala
-index b9fb42b..3a4a3b1 100644
---- a/examples/elementary/genlist.vala
-+++ b/examples/elementary/genlist.vala
-@@ -53,7 +53,7 @@ public class T.Genlist : T.Abstract
- public static string getText( Elm.Object obj, string part )
- {
- int number = (int)obj;
-- debug( "label_get: %p", obj );
-+ debug( "text_get: %p", obj );
- return "This is list item #%d".printf( number );
- }
- public static Elm.Object? getContent( Elm.Object obj, string part )
-diff --git a/vapi/elementary.vapi b/vapi/elementary.vapi
-index 8a6cc17..90b50f5c7 100644
---- a/vapi/elementary.vapi
-+++ b/vapi/elementary.vapi
-@@ -842,7 +842,7 @@ public class MenuItem
- public Elm.Object object_get();
- public void label_set( string label );
- //public void del_cb_set( ... );
-- public unowned string label_get();
-+ public unowned string text_get();
- public void icon_set( Elm.Object icon );
- public void disabled_set( bool disabled );
- public void* item_data_get();
-@@ -908,7 +908,7 @@ public class Slider : Elm.Object
- public Slider( Elm.Object? parent );
-
- public void label_set( string label );
-- public unowned string label_get();
-+ public unowned string text_get();
- public void icon_set( Elm.Object icon );
- public Elm.Object icon_get();
- public void span_size_set( Evas.Coord size );
-@@ -931,8 +931,8 @@ public enum GenlistItemFlags
- SUBITEMS,
- }
-
--[CCode (cname = "Elm_Gen_Item_Label_Get_Cb", has_target = false)]
--public delegate string GenlistItemLabelGetFunc( Elm.Object obj, string part );
-+[CCode (cname = "Elm_Gen_Item_Text_Get_Cb", has_target = false)]
-+public delegate string GenlistItemTextGetFunc( Elm.Object obj, string part );
- [CCode (cname = "Elm_Gen_Item_Content_Get_Cb", has_target = false)]
- public delegate Elm.Object? GenlistItemContentGetFunc( Elm.Object obj, string part );
- [CCode (cname = "Elm_Gen_Item_State_Get_Cb", has_target = false)]
-@@ -944,7 +944,7 @@ public delegate void GenlistItemDelFunc( Elm.Object obj );
- [CCode (cname = "Elm_Gen_Item_Class_Func", destroy_function = "")]
- public struct GenlistItemClassFunc
- {
-- public GenlistItemLabelGetFunc text_get;
-+ public GenlistItemTextGetFunc text_get;
- public GenlistItemContentGetFunc content_get;
- public GenlistItemStateGetFunc state_get;
- public GenlistItemDelFunc del;
-@@ -1027,7 +1027,7 @@ public class Check : Elm.Object
- public Check( Elm.Object? parent );
-
- public void label_set( string label );
-- public unowned string label_get();
-+ public unowned string text_get();
- public void icon_set( Elm.Object icon );
- public Elm.Object icon_get();
- public void state_set( bool state );
-@@ -1044,7 +1044,7 @@ public class Radio : Elm.Object
- public Radio( Elm.Object? parent );
-
- public void label_set( string label );
-- public unowned string label_get();
-+ public unowned string text_get();
- public void icon_set( Elm.Object icon );
- public Elm.Object icon_get();
- public void group_add( Elm.Object group );
-@@ -1256,7 +1256,7 @@ public class ListItem
- public void selected_set( bool selected );
- public void show();
- public void* data_get();
-- public unowned string label_get();
-+ public unowned string text_get();
- public void label_set( string label );
- public Elm.Object icon_get();
- public void icon_set( Elm.Object icon );
---
-1.7.8.rc4
-