[E-devel] official Windows XP installers

2009-06-18 Thread Vincent Torri

I have uploaded the Windows XP installers on the server.

See http://trac.enlightenment.org/e/wiki/E17BinaryPackages (at the bottom)

To download the installers (debug and stripped versions):

http://packages.enlightenment.org/windows/

For more informations:

http://trac.enlightenment.org/e/wiki/E17BinaryPackages/Windows

regards

Vincent

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [PATCH] Remove Evas_Bool, Evas_List and Evas_Hash

2009-06-18 Thread Sergey Semernin
Hello, All.

In some modules deprecated types are still exists, and I removed it.

Sincerely yours, Sergey.

--
Jabber/XMPP: sergey.semer...@gmail.com
Cellular: +7-909-206-5992
Index: esmart/src/lib/esmart_cairo/esmart_cairo.c
===
--- esmart/src/lib/esmart_cairo/esmart_cairo.c	(revision 41097)
+++ esmart/src/lib/esmart_cairo/esmart_cairo.c	(working copy)
@@ -73,7 +73,7 @@
  * @see esmart_image_cairo_surface_set()
  */
 Evas_Object *
-esmart_image_cairo_new(Evas *evas, Evas_Coord w, Evas_Coord h, Evas_Bool alpha)
+esmart_image_cairo_new(Evas *evas, Evas_Coord w, Evas_Coord h, Eina_Bool alpha)
 {
cairo_surface_t *surface;
cairo_format_t format;
@@ -183,7 +183,7 @@
  * @param cairo_surface the image surface to associate.
  * @return 1 on success, 0 on failure.
  */
-Evas_Bool
+Eina_Bool
 esmart_image_cairo_surface_set(Evas_Object *o, cairo_surface_t *cairo_surface)
 {
cairo_status_t status;
@@ -280,7 +280,7 @@
  * @param enable if true, enable this behavior, false disables it.
  */
 void
-esmart_image_cairo_fill_auto_set(Evas_Object *o, Evas_Bool enable)
+esmart_image_cairo_fill_auto_set(Evas_Object *o, Eina_Bool enable)
 {
evas_object_event_callback_del(
   o, EVAS_CALLBACK_RESIZE, _esmart_image_cairo_resized);
Index: esmart/src/lib/esmart_textarea/esmart_textarea_private.c
===
--- esmart/src/lib/esmart_textarea/esmart_textarea_private.c	(revision 41097)
+++ esmart/src/lib/esmart_textarea/esmart_textarea_private.c	(working copy)
@@ -60,7 +60,7 @@
 
 /* focus / unfocus (to accept key strokes) textarea */
 void
-_esmart_textarea_focus_set(Esmart_Text_Area *t, Evas_Bool focus)
+_esmart_textarea_focus_set(Esmart_Text_Area *t, Eina_Bool focus)
 {
evas_object_focus_set(t-text, focus);
 }
@@ -137,14 +137,14 @@
return evas_object_textblock_line_end_pos_get(t-text);
 }
 
-Evas_Bool
+Eina_Bool
 _esmart_textarea_line_get(Esmart_Text_Area *t, int line, Evas_Coord *lx, 
 			  Evas_Coord *ly, Evas_Coord *lw, Evas_Coord *lh)
 {
return evas_object_textblock_line_get(t-text, line, lx, ly, lw, lh);
 }
 
-Evas_Bool
+Eina_Bool
 _esmart_textarea_char_pos_get(Esmart_Text_Area *t, int pos, Evas_Coord *cx, 
 			  Evas_Coord *cy, Evas_Coord *cw, Evas_Coord *ch)
 {
Index: esmart/src/lib/esmart_textarea/esmart_textarea_public.c
===
--- esmart/src/lib/esmart_textarea/esmart_textarea_public.c	(revision 41097)
+++ esmart/src/lib/esmart_textarea/esmart_textarea_public.c	(working copy)
@@ -107,7 +107,7 @@
 
 /* focus / unfocus textarea */
 EAPI void
-esmart_textarea_focus_set(Evas_Object *o, Evas_Bool focus)
+esmart_textarea_focus_set(Evas_Object *o, Eina_Bool focus)
 {
Esmart_Text_Area *t;

@@ -232,7 +232,7 @@
return _esmart_textarea_line_end_pos_get(t);
 }
 
-EAPI Evas_Bool
+EAPI Eina_Bool
 esmart_textarea_line_get(Evas_Object *o, int line, Evas_Coord *lx, 
 			  Evas_Coord *ly, Evas_Coord *lw, Evas_Coord *lh)
 {
@@ -242,7 +242,7 @@
return _esmart_textarea_line_get(t, line, lx, ly, lw, lh);
 }
 
-EAPI Evas_Bool
+EAPI Eina_Bool
 esmart_textarea_char_pos_get(Evas_Object *o, int pos, Evas_Coord *cx, 
 			  Evas_Coord *cy, Evas_Coord *cw, Evas_Coord *ch)
 {
Index: PROTO/extrackt/src/bin/conf.c
===
--- PROTO/extrackt/src/bin/conf.c	(revision 41097)
+++ PROTO/extrackt/src/bin/conf.c	(working copy)
@@ -12,9 +12,9 @@
 			  (void *(*) (void *, void *))eina_list_append, \
 			  (void *(*) (void *))eina_list_data_get, \
 			  (void *(*) (void *))eina_list_free, \
-			  (void  (*) (void *, int (*) (void *, const char *, void *, void *), void *))evas_hash_foreach, \
-			  (void *(*) (void *, const char *, void *))evas_hash_add, \
-			  (void  (*) (void *))evas_hash_free)
+			  (void  (*) (void *, int (*) (void *, const char *, void *, void *), void *))eina_hash_foreach, \
+			  (void *(*) (void *, const char *, void *))eina_hash_add, \
+			  (void  (*) (void *))eina_hash_free)
 
 #define FREED(eed) \
if (eed) \
Index: E-MODULES-EXTRA/tiling/e_mod_main.c
===
--- E-MODULES-EXTRA/tiling/e_mod_main.c	(revision 41097)
+++ E-MODULES-EXTRA/tiling/e_mod_main.c	(working copy)
@@ -38,7 +38,7 @@
 static int currently_switching_desktop = 0;
 
 /* This hash holds the Tiling_Info-pointers for each desktop */
-static Evas_Hash *info_hash = NULL;
+static Eina_Hash *info_hash = NULL;
 
 static void _e_mod_action_toggle_tiling_cb(E_Object *obj, const char *params);
 static void _e_mod_action_toggle_floating_cb(E_Object *obj, const char *params);
@@ -585,7 +585,7 @@
res-desk = desk;
res-big_perc = tiling_config-big_perc;
res-need_rearrange = 0;
-   info_hash = evas_hash_add(info_hash, desk_hash_key(desk), res);
+   info_hash = 

Re: [E-devel] [PATCH] Remove Evas_Bool, Evas_List and Evas_Hash

2009-06-18 Thread Cedric BAIL
On Thu, Jun 18, 2009 at 10:14 AM, Sergey Semernin
sergey.semer...@gmail.com wrote:
 In some modules deprecated types are still exists, and I removed it.

 Sincerely yours, Sergey.

Thanks a lot, all in svn with minor modification.

--
Cedric BAIL

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] moving E modules to OLD/BROKEN

2009-06-18 Thread Quaker
 Just like we did for regular libraries and applications, we'll do it
 for E-MOULES-EXTRA. I see lots of complaints[1] of e stability and
 most are related to these modules, most of them unsupported. Please
 discuss which should stay and feel free to point more to be
 moved. If you have a module you're working on and think it should
 not be moved and it's ready, consider taking the actions to move
 it to e/src/modules as we did with mixer and systray.

 As I don't use many extra modules, I'll let you users and developers
 to step and say which is doing bad and good. If you let the it
 undecided I'll move ALL but a few like (keep/white list):
  * efm_* (should move to e/src/modules one day)
  * drawer (under dev)
  * flame/rain/snow/penguins (harmless)
  * notification (I plan to move to e/src/modules)
  * places (dave should move to e/src/modules)

exalt should be kept also... it is maintained and it works
--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: raster trunk/BINDINGS/python/python-elementary/elementary

2009-06-18 Thread Gustavo Sverzut Barbieri
just one comment for python-elementary guys: do not use mapping as a
dict to care about bindings and their arguments, dicts are not that
slow, but not that fast either. For such try to use tuples, which are
fast and lean on memory.

On Thu, Jun 18, 2009 at 9:49 AM, Enlightenment
SVNno-re...@enlightenment.org wrote:
 Log:
  patch from ello:

  ticker #344

  http://trac.enlightenment.org/e/ticket/344


 Author:       raster
 Date:         2009-06-18 05:49:04 -0700 (Thu, 18 Jun 2009)
 New Revision: 41102

 Modified:
  trunk/BINDINGS/python/python-elementary/elementary/elementary.c_elementary_toolbar.pxi

 Modified: 
 trunk/BINDINGS/python/python-elementary/elementary/elementary.c_elementary_toolbar.pxi
 ===
 --- 
 trunk/BINDINGS/python/python-elementary/elementary/elementary.c_elementary_toolbar.pxi
       2009-06-18 12:14:29 UTC (rev 41101)
 +++ 
 trunk/BINDINGS/python/python-elementary/elementary/elementary.c_elementary_toolbar.pxi
       2009-06-18 12:49:04 UTC (rev 41102)
 @@ -25,7 +25,7 @@
         if mapping is not None:
             callback = mapping[callback]
             if callback is not None and callable(callback):
 -                callback(mapping[class], clicked)
 +                callback(mapping[class], clicked, mapping[data])
         else:
             print ERROR: no callback available for the item
     except Exception, e:
 @@ -40,7 +40,7 @@
     def __new__(self):
         self.item = NULL

 -    def __init__(self, c_evas.Object toolbar, c_evas.Object icon, label, 
 callback):
 +    def __init__(self, c_evas.Object toolbar, c_evas.Object icon, label, 
 callback, data = None):
         if icon is not None:
             self.item = elm_toolbar_item_add(toolbar.obj, icon.obj, label, 
 _toolbar_callback, NULL)
         else:
 @@ -50,6 +50,7 @@
         mapping = dict()
         mapping[class] = self
         mapping[callback] = callback
 +        mapping[data] = data
         _toolbar_callback_mapping[longself.item] = mapping

     def delete(self):
 @@ -78,7 +79,7 @@
         else:
             elm_toolbar_scrollable_set(self.obj, 0)

 -    def item_add(self, c_evas.Object icon, label, callback):
 +    def item_add(self, c_evas.Object icon, label, callback, data = None):
         
         Adds a new item to the toolbar

 @@ -91,7 +92,7 @@
         
         # Everything is done in the ToolbarItem class, because of wrapping the
         # C structures in python classes
 -        return ToolbarItem(self, icon, label, callback)
 +        return ToolbarItem(self, icon, label, callback, data)

     property clicked:
         def __set__(self, value):


 --
 Crystal Reports - New Free Runtime and 30 Day Trial
 Check out the new simplified licensing option that enables unlimited
 royalty-free distribution of the report engine for externally facing
 server and web deployment.
 http://p.sf.net/sfu/businessobjects
 ___
 enlightenment-svn mailing list
 enlightenment-...@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-svn




-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] moving E modules to OLD/BROKEN

2009-06-18 Thread Gustavo Sverzut Barbieri
On Wed, Jun 17, 2009 at 3:27 PM, Gustavo Sverzut
Barbieribarbi...@profusion.mobi wrote:
 Hi people,

 Just like we did for regular libraries and applications, we'll do it
 for E-MOULES-EXTRA. I see lots of complaints[1] of e stability and
 most are related to these modules, most of them unsupported. Please
 discuss which should stay and feel free to point more to be moved. If
 you have a module you're working on and think it should not be moved
 and it's ready, consider taking the actions to move it to
 e/src/modules as we did with mixer and systray.

 As I don't use many extra modules, I'll let you users and developers
 to step and say which is doing bad and good. If you let the it
 undecided I'll move ALL but a few like (keep/white list):
  * efm_* (should move to e/src/modules one day)
  * drawer (under dev)
  * flame/rain/snow/penguins (harmless)
  * notification (I plan to move to e/src/modules)
  * places (dave should move to e/src/modules)

 I'm not sure about system monitors (cpu, diskio, execwatch, ...),
 network modules (weather, forecasts, mail, ..),
 screenshot/photo/slideshow and others, so please say if you use them,
 if they work, if you maintain it, if you're willing to maintain it,
 etc.

 For those with replicas, please consider merging them or dropping one.

 Regards,


 [1] http://trac.enlightenment.org/e/wiki/E17BinaryPackages/sda_notes

sda00 added an extensive review of modules and more at this url,
please check it out:

   http://trac.enlightenment.org/e/wiki/E17BinaryPackages/sda_notes

if you are:
  - user: confirm things work or not, talk to sda00 on irc or this mail.
  - developer: same as user, but try to fix problem or gather more
information of crash.


-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [e-users] moving E modules to OLD/BROKEN

2009-06-18 Thread Michael Jennings
On Thursday, 18 June 2009, at 14:57:58 (-0300),
Gustavo Sverzut Barbieri wrote:

 sda00 added an extensive review of modules and more at this url,
 please check it out:
 
http://trac.enlightenment.org/e/wiki/E17BinaryPackages/sda_notes

That's one person's opinion and only reveals experiences for one
specific environment with packages he built himself using spec files
which I have previously reviewed as erroneous.  It should not be used
as a basis for quality review, and certainly not the sole basis.

The modules I mention are ones I use daily.  They are fine.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  m...@kainx.org
Linux Server/Cluster Admin, LBL.gov   Author, Eterm (www.eterm.org)
---
 Daddy, what is virginity?  It's the state below Maryland.
 -- Courtney Chase and Dan Aykroyd, Soul Man

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [e-users] moving E modules to OLD/BROKEN

2009-06-18 Thread Gustavo Sverzut Barbieri
On Thu, Jun 18, 2009 at 3:55 PM, Robinrc.rattusrat...@googlemail.com wrote:
 2009/6/18 Gustavo Sverzut Barbieri barbi...@profusion.mobi:
 On Wed, Jun 17, 2009 at 3:27 PM, Gustavo Sverzut
 Barbieribarbi...@profusion.mobi wrote:
 Hi people,

 Just like we did for regular libraries and applications, we'll do it
 for E-MOULES-EXTRA. I see lots of complaints[1] of e stability and
 most are related to these modules, most of them unsupported. Please
 discuss which should stay and feel free to point more to be moved. If
 you have a module you're working on and think it should not be moved
 and it's ready, consider taking the actions to move it to
 e/src/modules as we did with mixer and systray.

 As I don't use many extra modules, I'll let you users and developers
 to step and say which is doing bad and good. If you let the it
 undecided I'll move ALL but a few like (keep/white list):
  * efm_* (should move to e/src/modules one day)
  * drawer (under dev)
  * flame/rain/snow/penguins (harmless)
  * notification (I plan to move to e/src/modules)
  * places (dave should move to e/src/modules)

 I'm not sure about system monitors (cpu, diskio, execwatch, ...),
 network modules (weather, forecasts, mail, ..),
 screenshot/photo/slideshow and others, so please say if you use them,
 if they work, if you maintain it, if you're willing to maintain it,
 etc.

 For those with replicas, please consider merging them or dropping one.

 Regards,


 [1] http://trac.enlightenment.org/e/wiki/E17BinaryPackages/sda_notes

 sda00 added an extensive review of modules and more at this url,
 please check it out:

   http://trac.enlightenment.org/e/wiki/E17BinaryPackages/sda_notes

 if you are:
  - user: confirm things work or not, talk to sda00 on irc or this mail.
  - developer: same as user, but try to fix problem or gather more
 information of crash.


 --
 Gustavo Sverzut Barbieri

 systray on desktop - Config etc. is available here but the
 right-clickable area is just a few pixels wide around the edge of the
 gadget.

this is expected as we cannot trap the right-click on the icons :-/

-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: barbieri IN trunk: . MISC OLD OLD/MISC OLD/MISC/eeh OLD/MISC/eflame OLD/MISC/eke OLD/MISC/elapse OLD/MISC/elogin OLD/MISC/embrace OLD/MISC/engage OLD/MISC/enthrall OLD/MISC/envisi

2009-06-18 Thread Brian 'morlenxus' Miculcy
Hm isn't enthrall still maintained? There where some commits to it not long 
ago...

On Wed, Jun 17, 2009 at 11:00:45AM -0700, Enlightenment SVN wrote:
 Log:
   Massive move of old stuff to OLD/
   
   As discussed in the mail list, the following apps were NOT moved in
   the hope they will be maintained:
   
* edje_viewer (viktor did the port to elementary already)
* elicit (someone to pick it, possibly rephorm)
* MISC/gevas* (still maintained, sorry!)
   
   The following were not moved in this batch, but will as soon as we
   finish the python bindings and move some code to use ethumb:
* epsilon
* BINDINGS/python/python-epsilon
   
   Ephoto will be there until okra adds his new codebase.
   
   All the others were moved to OLD. Note they were not deleted, we're
   just assuming they are not maintained and nobody is willing to care
   about them. If you wish to step as maintainer, just move stuff back to
   trunk or MISC or PROTO and happy hacking.
   
   
   
 Author:   barbieri
 Date: 2009-06-17 11:00:45 -0700 (Wed, 17 Jun 2009)
 New Revision: 41086
 
 Added:
   trunk/OLD/MISC/ trunk/OLD/MISC/eeh/ trunk/OLD/MISC/eflame/ 
 trunk/OLD/MISC/eke/ trunk/OLD/MISC/elapse/ trunk/OLD/MISC/elogin/ 
 trunk/OLD/MISC/embrace/ trunk/OLD/MISC/engage/ trunk/OLD/MISC/enthrall/ 
 trunk/OLD/MISC/envision/ trunk/OLD/MISC/epbb/ trunk/OLD/MISC/eplay/ 
 trunk/OLD/MISC/eplayer/ trunk/OLD/MISC/equate/ trunk/OLD/MISC/erss/ 
 trunk/OLD/MISC/esmart_rsvg/ trunk/OLD/MISC/ewler/ trunk/OLD/MISC/ipaq/ 
 trunk/OLD/MISC/lvs-gui/ trunk/OLD/MISC/nexus/ trunk/OLD/MISC/notgame/ 
 trunk/OLD/MISC/pesh/ trunk/OLD/MISC/retina/ trunk/OLD/MISC/slets/ 
 trunk/OLD/MISC/webcam/ trunk/OLD/MISC/webpictures/ trunk/OLD/emphasis/ 
 trunk/OLD/enhance/ trunk/OLD/enity/ trunk/OLD/etk_extra/ trunk/OLD/evolve/ 
 trunk/OLD/exhibit/ 
 Removed:
   trunk/MISC/eeh/ trunk/MISC/eflame/ trunk/MISC/eke/ trunk/MISC/elapse/ 
 trunk/MISC/elogin/ trunk/MISC/embrace/ trunk/MISC/engage/ 
 trunk/MISC/enthrall/ trunk/MISC/envision/ trunk/MISC/epbb/ trunk/MISC/eplay/ 
 trunk/MISC/eplayer/ trunk/MISC/equate/ trunk/MISC/erss/ 
 trunk/MISC/esmart_rsvg/ trunk/MISC/ewler/ trunk/MISC/ipaq/ 
 trunk/MISC/lvs-gui/ trunk/MISC/nexus/ trunk/MISC/notgame/ trunk/MISC/pesh/ 
 trunk/MISC/retina/ trunk/MISC/slets/ trunk/MISC/webcam/ 
 trunk/MISC/webpictures/ trunk/emphasis/ trunk/enhance/ trunk/enity/ 
 trunk/etk_extra/ trunk/evolve/ trunk/exhibit/ 
 
 Copied: trunk/OLD/MISC/eeh (from rev 41085, trunk/MISC/eeh)
 
 
 Property changes on: trunk/OLD/MISC/eeh
 ___
 Name: svn:mergeinfo
+ 
 
 Copied: trunk/OLD/MISC/eflame (from rev 41085, trunk/MISC/eflame)
 
 
 Property changes on: trunk/OLD/MISC/eflame
 ___
 Name: svn:ignore
+ eflame
 
 Name: svn:mergeinfo
+ 
 
 Copied: trunk/OLD/MISC/eke (from rev 41085, trunk/MISC/eke)
 
 
 Property changes on: trunk/OLD/MISC/eke
 ___
 Name: svn:ignore
+ Makefile
 Makefile.in
 aclocal.m4
 autom4te.cache
 config.log
 config.status
 configure
 install-sh
 missing
 mkinstalldirs
 depcomp
 
 Name: svn:mergeinfo
+ 
 
 Copied: trunk/OLD/MISC/elapse (from rev 41085, trunk/MISC/elapse)
 
 
 Property changes on: trunk/OLD/MISC/elapse
 ___
 Name: svn:ignore
+ Makefile
 Makefile.in
 NEWS
 aclocal.m4
 autom4te.cache
 config.h.in
 config.log
 config.status
 configure
 config.guess
 config.sub
 depcomp
 install-sh
 ltmain.sh
 missing
 
 Name: svn:mergeinfo
+ 
 
 Copied: trunk/OLD/MISC/elogin (from rev 41085, trunk/MISC/elogin)
 
 
 Property changes on: trunk/OLD/MISC/elogin
 ___
 Name: svn:mergeinfo
+ 
 
 Copied: trunk/OLD/MISC/embrace (from rev 41085, trunk/MISC/embrace)
 
 
 Property changes on: trunk/OLD/MISC/embrace
 ___
 Name: svn:ignore
+ Makefile
 Makefile.in
 aclocal.m4
 autom4te.cache
 config.guess
 config.h
 config.h.in
 config.log
 config.status
 config.sub
 configure
 depcomp
 install-sh
 missing
 mkinstalldirs
 stamp-h1
 libtool
 ltmain.sh
 
 Name: svn:mergeinfo
+ 
 
 Copied: trunk/OLD/MISC/engage (from rev 41085, trunk/MISC/engage)
 
 
 Property changes on: trunk/OLD/MISC/engage
 ___
 Name: svn:ignore
+ Makefile
 Makefile.in
 aclocal.m4
 autom4te.cache
 build-stamp
 config.cache
 config.guess
 config.h
 config.h.in
 config.log
 config.status
 config.sub
 configure
 configure-stamp
 libtool
 ltmain.sh
 stamp-h1
 stamp-h
 stamp-h.in
 depcomp
 compile
 install-sh
 missing
 mkinstalldirs
 
 Name: svn:mergeinfo
+ 
 
 Copied: trunk/OLD/MISC/enthrall (from rev 41085, trunk/MISC/enthrall)
 
 
 Property changes on: trunk/OLD/MISC/enthrall
 

Re: [E-devel] E SVN: morlenxus trunk/E-MODULES-EXTRA/diskio/src

2009-06-18 Thread Gustavo Sverzut Barbieri
On Thu, Jun 18, 2009 at 7:56 PM, Enlightenment
SVNno-re...@enlightenment.org wrote:
 Log:
  EINA_LIST_FOREACH
 Author:       morlenxus
 Date:         2009-06-18 15:56:06 -0700 (Thu, 18 Jun 2009)
 New Revision: 41109

 Modified:
  trunk/E-MODULES-EXTRA/diskio/src/e_mod_config.c

 Modified: trunk/E-MODULES-EXTRA/diskio/src/e_mod_config.c
 ===
 --- trunk/E-MODULES-EXTRA/diskio/src/e_mod_config.c     2009-06-18 20:12:16 
 UTC (rev 41108)
 +++ trunk/E-MODULES-EXTRA/diskio/src/e_mod_config.c     2009-06-18 22:56:06 
 UTC (rev 41109)
 @@ -94,7 +94,7 @@

    if (cfdata-disks)
      {
 -               for (l = cfdata-disks; l; l = eina_list_next(l))
 +               EINA_LIST_FOREACH(cfdata-disks, l, disk)
                  {
                         disk = eina_list_data_get(l);

disk is already set by macro



-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: morlenxus trunk/E-MODULES-EXTRA/diskio/src

2009-06-18 Thread Brian 'morlenxus' Miculcy
Wops, thanks. :)

On Thu, Jun 18, 2009 at 08:15:47PM -0300, Gustavo Sverzut Barbieri wrote:
 On Thu, Jun 18, 2009 at 7:56 PM, Enlightenment
 SVNno-re...@enlightenment.org wrote:
  Log:
   EINA_LIST_FOREACH
  Author:       morlenxus
  Date:         2009-06-18 15:56:06 -0700 (Thu, 18 Jun 2009)
  New Revision: 41109
 
  Modified:
   trunk/E-MODULES-EXTRA/diskio/src/e_mod_config.c
 
  Modified: trunk/E-MODULES-EXTRA/diskio/src/e_mod_config.c
  ===
  --- trunk/E-MODULES-EXTRA/diskio/src/e_mod_config.c     2009-06-18 20:12:16 
  UTC (rev 41108)
  +++ trunk/E-MODULES-EXTRA/diskio/src/e_mod_config.c     2009-06-18 22:56:06 
  UTC (rev 41109)
  @@ -94,7 +94,7 @@
 
     if (cfdata-disks)
       {
  -               for (l = cfdata-disks; l; l = eina_list_next(l))
  +               EINA_LIST_FOREACH(cfdata-disks, l, disk)
                   {
                          disk = eina_list_data_get(l);
 
 disk is already set by macro
 
 
 
 -- 
 Gustavo Sverzut Barbieri
 http://profusion.mobi embedded systems
 --
 MSN: barbi...@gmail.com
 Skype: gsbarbieri
 Mobile: +55 (19) 9225-2202
 
 --
 Crystal Reports - New Free Runtime and 30 Day Trial
 Check out the new simplified licensing option that enables unlimited
 royalty-free distribution of the report engine for externally facing 
 server and web deployment.
 http://p.sf.net/sfu/businessobjects
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: barbieri IN trunk: . MISC OLD OLD/MISC OLD/MISC/eeh OLD/MISC/eflame OLD/MISC/eke OLD/MISC/elapse OLD/MISC/elogin OLD/MISC/embrace OLD/MISC/engage OLD/MISC/enthrall OLD/MISC/envisi

2009-06-18 Thread Vincent Torri



On Fri, 19 Jun 2009, Brian 'morlenxus' Miculcy wrote:


Hm isn't enthrall still maintained? There where some commits to it not long 
ago...


i planned to write a small gui for it, but i don't have much time

Vincent


On Wed, Jun 17, 2009 at 11:00:45AM -0700, Enlightenment SVN wrote:

Log:
  Massive move of old stuff to OLD/

  As discussed in the mail list, the following apps were NOT moved in
  the hope they will be maintained:

   * edje_viewer (viktor did the port to elementary already)
   * elicit (someone to pick it, possibly rephorm)
   * MISC/gevas* (still maintained, sorry!)

  The following were not moved in this batch, but will as soon as we
  finish the python bindings and move some code to use ethumb:
   * epsilon
   * BINDINGS/python/python-epsilon

  Ephoto will be there until okra adds his new codebase.

  All the others were moved to OLD. Note they were not deleted, we're
  just assuming they are not maintained and nobody is willing to care
  about them. If you wish to step as maintainer, just move stuff back to
  trunk or MISC or PROTO and happy hacking.



Author:   barbieri
Date: 2009-06-17 11:00:45 -0700 (Wed, 17 Jun 2009)
New Revision: 41086

Added:
  trunk/OLD/MISC/ trunk/OLD/MISC/eeh/ trunk/OLD/MISC/eflame/ 
trunk/OLD/MISC/eke/ trunk/OLD/MISC/elapse/ trunk/OLD/MISC/elogin/ 
trunk/OLD/MISC/embrace/ trunk/OLD/MISC/engage/ trunk/OLD/MISC/enthrall/ 
trunk/OLD/MISC/envision/ trunk/OLD/MISC/epbb/ trunk/OLD/MISC/eplay/ 
trunk/OLD/MISC/eplayer/ trunk/OLD/MISC/equate/ trunk/OLD/MISC/erss/ 
trunk/OLD/MISC/esmart_rsvg/ trunk/OLD/MISC/ewler/ trunk/OLD/MISC/ipaq/ 
trunk/OLD/MISC/lvs-gui/ trunk/OLD/MISC/nexus/ trunk/OLD/MISC/notgame/ 
trunk/OLD/MISC/pesh/ trunk/OLD/MISC/retina/ trunk/OLD/MISC/slets/ 
trunk/OLD/MISC/webcam/ trunk/OLD/MISC/webpictures/ trunk/OLD/emphasis/ 
trunk/OLD/enhance/ trunk/OLD/enity/ trunk/OLD/etk_extra/ trunk/OLD/evolve/ 
trunk/OLD/exhibit/
Removed:
  trunk/MISC/eeh/ trunk/MISC/eflame/ trunk/MISC/eke/ trunk/MISC/elapse/ 
trunk/MISC/elogin/ trunk/MISC/embrace/ trunk/MISC/engage/ trunk/MISC/enthrall/ 
trunk/MISC/envision/ trunk/MISC/epbb/ trunk/MISC/eplay/ trunk/MISC/eplayer/ 
trunk/MISC/equate/ trunk/MISC/erss/ trunk/MISC/esmart_rsvg/ trunk/MISC/ewler/ 
trunk/MISC/ipaq/ trunk/MISC/lvs-gui/ trunk/MISC/nexus/ trunk/MISC/notgame/ 
trunk/MISC/pesh/ trunk/MISC/retina/ trunk/MISC/slets/ trunk/MISC/webcam/ 
trunk/MISC/webpictures/ trunk/emphasis/ trunk/enhance/ trunk/enity/ 
trunk/etk_extra/ trunk/evolve/ trunk/exhibit/

Copied: trunk/OLD/MISC/eeh (from rev 41085, trunk/MISC/eeh)


Property changes on: trunk/OLD/MISC/eeh
___
Name: svn:mergeinfo
   +

Copied: trunk/OLD/MISC/eflame (from rev 41085, trunk/MISC/eflame)


Property changes on: trunk/OLD/MISC/eflame
___
Name: svn:ignore
   + eflame

Name: svn:mergeinfo
   +

Copied: trunk/OLD/MISC/eke (from rev 41085, trunk/MISC/eke)


Property changes on: trunk/OLD/MISC/eke
___
Name: svn:ignore
   + Makefile
Makefile.in
aclocal.m4
autom4te.cache
config.log
config.status
configure
install-sh
missing
mkinstalldirs
depcomp

Name: svn:mergeinfo
   +

Copied: trunk/OLD/MISC/elapse (from rev 41085, trunk/MISC/elapse)


Property changes on: trunk/OLD/MISC/elapse
___
Name: svn:ignore
   + Makefile
Makefile.in
NEWS
aclocal.m4
autom4te.cache
config.h.in
config.log
config.status
configure
config.guess
config.sub
depcomp
install-sh
ltmain.sh
missing

Name: svn:mergeinfo
   +

Copied: trunk/OLD/MISC/elogin (from rev 41085, trunk/MISC/elogin)


Property changes on: trunk/OLD/MISC/elogin
___
Name: svn:mergeinfo
   +

Copied: trunk/OLD/MISC/embrace (from rev 41085, trunk/MISC/embrace)


Property changes on: trunk/OLD/MISC/embrace
___
Name: svn:ignore
   + Makefile
Makefile.in
aclocal.m4
autom4te.cache
config.guess
config.h
config.h.in
config.log
config.status
config.sub
configure
depcomp
install-sh
missing
mkinstalldirs
stamp-h1
libtool
ltmain.sh

Name: svn:mergeinfo
   +

Copied: trunk/OLD/MISC/engage (from rev 41085, trunk/MISC/engage)


Property changes on: trunk/OLD/MISC/engage
___
Name: svn:ignore
   + Makefile
Makefile.in
aclocal.m4
autom4te.cache
build-stamp
config.cache
config.guess
config.h
config.h.in
config.log
config.status
config.sub
configure
configure-stamp
libtool
ltmain.sh
stamp-h1
stamp-h
stamp-h.in
depcomp
compile
install-sh
missing
mkinstalldirs

Name: svn:mergeinfo
   +

Copied: trunk/OLD/MISC/enthrall (from rev 41085, trunk/MISC/enthrall)


Property changes on: trunk/OLD/MISC/enthrall
___
Name: svn:ignore
   + 

Re: [E-devel] [PATCH] eina patch for cygwin-1.7

2009-06-18 Thread booleanlabel

Hi, lipens...@email.cz


+AC_DEFINE_UNQUOTED(SHARED_LIB_SUFFIX, $shrext_cmds, [Suffix for
shared objects])

#define MODULE_EXTENSION SHARED_LIB_SUFFIX

Sorry, I had completely forgotten it (better solution in your previous
post).



Pavel Lipenský wrote:

Hi, E-devel

and what about

+AC_DEFINE_UNQUOTED(SHARED_LIB_SUFFIX, $shrext_cmds, [Suffix for shared 
objects])

and then

#define MODULE_EXTENSION SHARED_LIB_SUFFIX

AFAIK this was commonly used by several E17-050 components and it was working 
very well on Cygwing 1.5.

Regards
Pavel


 Původní zpráva 
Od: Lars Munch l...@segv.dk
Předmět: Re: [E-devel] [PATCH] eina patch for cygwin-1.7
Datum: 18.6.2009 06:07:26

On Wed, Jun 17, 2009 at 06:11:43PM +0200, Vincent Torri wrote:


On Thu, 18 Jun 2009, booleanla...@gmail.com wrote:


Hi, E-devel


Sorry, my previous eina patch (for cygwin-1.7) was incomplete.

what ? cygwin does not define _WIN32 

No, since Cygwin is a unix emulation environment you have to
explicetely compile with -mwin32 if you want _WIN32 defined and you
don't want that unless you really have to. So the patch is good.

In svn, thanks.

Lars Munch














Index: src/lib/eina_module.c
===
--- src/lib/eina_module.c   (revision 41102)
+++ src/lib/eina_module.c   (working copy)
@@ -66,11 +66,7 @@
  * @cond LOCAL
  */
 
-#if defined(_WIN32) || defined(__CYGWIN__)
-# define MODULE_EXTENSION .dll
-#else
-# define MODULE_EXTENSION .so
-#endif /* !defined(_WIN32)  !defined(__CYGWIN__) */
+#define MODULE_EXTENSION SHARED_LIB_SUFFIX
 
 #define EINA_MODULE_SYMBOL_INIT __eina_module_init
 #define EINA_MODULE_SYMBOL_SHUTDOWN __eina_module_shutdown
Index: configure.ac
===
--- configure.ac(revision 41102)
+++ configure.ac(working copy)
@@ -382,6 +382,9 @@
 EFL_CHECK_COVERAGE([${enable_tests}], [enable_coverage=yes], 
[enable_coverage=no])
 EFL_CHECK_BENCHMARK([enable_benchmark=yes], [enable_benchmark=no])
 
+# Checks for shared library suffix
+AC_DEFINE_UNQUOTED(SHARED_LIB_SUFFIX, $shrext_cmds, [Suffix for shared 
objects])
+
 AC_CONFIG_FILES([
 Makefile
 eina-0.pc






--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] eina patch for cygwin-1.7

2009-06-18 Thread Lars Munch
On Thu, Jun 18, 2009 at 11:35:29PM +0900, booleanla...@gmail.com wrote:
 Hi, lipens...@email.cz


 +AC_DEFINE_UNQUOTED(SHARED_LIB_SUFFIX, $shrext_cmds, [Suffix for
 shared objects])

 #define MODULE_EXTENSION SHARED_LIB_SUFFIX

 Sorry, I had completely forgotten it (better solution in your previous
 post).


Sorry, I did not see that post. Vincent is currently checking if this is
the best approach to set the module extension.

Regards
Lars Munch

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel