Re: [E-devel] E SVN: quaker trunk/packaging/debian/extras/entrance

2010-01-24 Thread Albin Tonnerre
On Sun, 24 Jan 2010 09:17 -0800, Enlightenment SVN wrote :
 Log:
   Entrance - fix deb stuff

  DEB_MAKE_CLEAN_TARGET := distclean
 -DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath
 +DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath --with-xbin=/usr/bin
  
  clean::
   [ ! -f Makefile ] || make distclean

AFAIK, /usr/bin is pretty common path for the X binary these days. What about
fixing configure.ac instead?

Regards,
-- 
Albin Tonnerre

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] eina mempool review and descriptions?

2010-01-24 Thread Jorge Luis Zapata Muga
On Fri, Jan 22, 2010 at 11:14 AM, Cedric BAIL moa.blueb...@gmail.com wrote:
 On Thu, Jan 21, 2010 at 11:13 PM, Gustavo Sverzut Barbieri
 barbi...@profusion.mobi wrote:
 I'm doing ebuilds for gentoo and I want to make them use configurable
 mempools, however the names are stupidly bad and I have no idea the
 use so I enable or disable them.

 could someone (ie: cedric) document what are these, how they are
 chosen, which should be really enabled and which could be left out
 since are experiments?

 So we have :
  * buddy: Last one, from turran, I will let him describe this one.


The buddy mempool uses the buddy allocator algorithm
(http://en.wikipedia.org/wiki/Buddy_memory_allocation ), but the
eina's implementation differs in the sense that the chunk information
is not stored on the chunk itself but on another memory area. This is
useful for cases where the memory to manage might be slower to access
or limited (like video memory)

  * chained_pool: The default one, basically do big malloc and split
 the result in chunk of the required size that are pushed inside a
 stack. Then when requested it take this pointer from the stack to give
 them to whoever whant them.

  * ememoa_fixed and ememoa_unknown: Are experimental allocator, could
 be usefull when you have a fixed amount of memory.

  * fixed_bitmap: This one, malloc 32 * the required size and push the
 pool pointer in a rbtree. To find empty space in a pool, it will just
 search for the first bit set in a int (32bits). And when a pointer is
 freed, it will do a search inside the rbtree.

  * pass_through: This one just call malloc and free. It may be faster
 on some computer than using our own allocator (typical case when you
 have huge L2 cache, over 4MB).

 Yeah, I know, better docs required and perhaps add some benchmark result too.
 --
 Cedric BAIL

 --
 Throughout its 18-year history, RSA Conference consistently attracts the
 world's best and brightest in the field, creating opportunities for Conference
 attendees to learn about information security's most important issues through
 interactions with peers, luminaries and emerging and established companies.
 http://p.sf.net/sfu/rsaconf-dev2dev
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] merge ecore job and txt into ecore?

2010-01-24 Thread Gustavo Sverzut Barbieri
On 1/23/10, Albin Tonnerre albin.tonne...@gmail.com wrote:
 On Sun, 24 Jan 2010 00:02 +0100, Vincent Torri wrote :

 to summarize:

  * ecore_txt moved in eina

 I think we'll just have to agree to disagree here :)

ecore_txt is a single function helper for string conversion. ecore_str
is similar, helpers for string... string is a data type, so it clearly
fit into eina.

also, we should copy duplicated string buffer that is spread in evas
and edje and have it in eina as well.


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

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] merge ecore job and txt into ecore?

2010-01-24 Thread Gustavo Sverzut Barbieri
On 1/23/10, Carsten Haitzler ras...@rasterman.com wrote:
 On Sun, 24 Jan 2010 00:13:25 +0100 Albin Tonnerre albin.tonne...@gmail.com
 said:

 On Sun, 24 Jan 2010 00:02 +0100, Vincent Torri wrote :
 
  to summarize:
 
   * ecore_txt moved in eina

 I think we'll just have to agree to disagree here :)

   * ecore_job merged in ecore

 I've made a patch doing this.

   * nothing done for ecore_file (raster wants it in ecore)

 Do you mean ecore_input here ?

 no. ecore-file. can't put ecore-file in eina. it stays as ecore-file or gets
 renamed to e-file-lib or whatevrr - but thats pointless as all u are doing
 is
 changing its name. it still cant be used by evas due to ecore-file needing
 ecore - and ecore-evas needing evas.  so it stays

ecore_file, with the exception of file_download, is very simple
abstraction and helpers are generaly useful (rm -r, mkdir -p...) and
i'd consider them at the same category as eina_mempool and
eina_module, so eina isla good place.

as for ecore_file_download, why not merge it with ecore_con?

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

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] trac is down

2010-01-24 Thread Vincent Torri

Hey,

currently, trac i down. I've asked in the #osuosl chan and it seems that 
they see a lof of messages:

FastCGI: incomplete headers (0 bytes) received from server 
/var/www/trac/cgi-bin/trac.fcgi

A fast google search gave me:

http://www.hostingrails.com/FastCGI-incomplete-headers-0-bytes-received-from-server

A guy on #osuosl give me the advice to use mod_wsgi. He said that it is 
fast and have a low memory footprint

Can someone with trac knowledge look at this ?

thank you

Vincent

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] trac is down (and svn too...)

2010-01-24 Thread Vincent Torri


On Sun, 24 Jan 2010, Vincent Torri wrote:


 Hey,

 currently, trac i down. I've asked in the #osuosl chan and it seems that
 they see a lof of messages:

 FastCGI: incomplete headers (0 bytes) received from server
 /var/www/trac/cgi-bin/trac.fcgi

 A fast google search gave me:

 http://www.hostingrails.com/FastCGI-incomplete-headers-0-bytes-received-from-server

 A guy on #osuosl give me the advice to use mod_wsgi. He said that it is
 fast and have a low memory footprint

 Can someone with trac knowledge look at this ?

more doc on that  mod :

http://trac.edgewall.org/wiki/TracModWSGI
http://code.google.com/p/modwsgi/wiki/IntegrationWithTra

and an example of configuration :

http://pastie.org/private/j2ntqmxnph4ajtegzhgdjw

Vincent

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] svn downn

2010-01-24 Thread Vincent Torri

and more comments :


basic` my theory is that
basic` 2.5 was in use with trac, and trac worked fine, then python 2.6 
got installed, but trac never made it into /usr/lib/python2.6, so when 
apache got restarted it broke
basic` the same thing can happen with subversion if apr gets upgraded 
and subversion is never linked against it
basic` that seems harder to grasp for a binary distribution though, so 
im not sure

Vincent

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] svn downn

2010-01-24 Thread Vincent Torri


On Sun, 24 Jan 2010, Vincent Torri wrote:


 and more comments :


 basic` my theory is that
 basic` 2.5 was in use with trac, and trac worked fine, then python 2.6
 got installed, but trac never made it into /usr/lib/python2.6, so when
 apache got restarted it broke
 basic` the same thing can happen with subversion if apr gets upgraded
 and subversion is never linked against it
 basic` that seems harder to grasp for a binary distribution though, so
 im not sure

svn not down anymore, but :

basic` new development here... 
http://pastie.org/private/lm6hrjddh1g8f4w6kwovrq
basic` any idea why that would all be trying to install?
basic` looks like a dist upgrade, or someone manually did an upgrade
basic` and it didnt finish
basic` that explains the half working state of trac/svn
basic` ha, the dpkg.log paste is too big to paste..
basic` http://pastebintest.osuosl.org/31238
basic` and that cut it off.. http://staff.osuosl.org/~basic/dpkg.log
basic` that's the whole log

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] to Inc or Gustavo : about e2

2010-01-24 Thread Vincent Torri

Hey

from osuosl

bkero So there seems to be a big ol' dpkg running on e2
bkero Owned either by Inc or barbieri

Vincent

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] e16-1.0.2

2010-01-24 Thread Kim Woelders
e16-1.0.2 is available for download:
http://sourceforge.net/projects/enlightenment/files/

e16-1.0.2:
- Fix bogus image cache directory files being written in home directory.
- Enable pango by default.
- Enable showing mini icon in border part.
- Fix stacking order when showing desktop state is set off.
- Merge autoraise settings into focus settings dialog.
- Remove old e-icons, add some new ones.
- Fix manual placement when switching desktop.
- Fix potential crash when window is destroyed while being
 moved/raised/lowered.
- Merge miscellaneous documentation into e16.xml/html.
- Add simple e16 man page.
- Fix old translucent move mode when shm pixmaps are not available.
- Many minor bug fixes and enhancements, see ChangeLog for details.

/Kim

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] merge ecore job and txt into ecore?

2010-01-24 Thread The Rasterman
On Sun, 24 Jan 2010 18:17:28 -0200 Gustavo Sverzut Barbieri
barbi...@profusion.mobi said:

 On 1/23/10, Carsten Haitzler ras...@rasterman.com wrote:
  On Sun, 24 Jan 2010 00:13:25 +0100 Albin Tonnerre albin.tonne...@gmail.com
  said:
 
  On Sun, 24 Jan 2010 00:02 +0100, Vincent Torri wrote :
  
   to summarize:
  
* ecore_txt moved in eina
 
  I think we'll just have to agree to disagree here :)
 
* ecore_job merged in ecore
 
  I've made a patch doing this.
 
* nothing done for ecore_file (raster wants it in ecore)
 
  Do you mean ecore_input here ?
 
  no. ecore-file. can't put ecore-file in eina. it stays as ecore-file or gets
  renamed to e-file-lib or whatevrr - but thats pointless as all u are doing
  is
  changing its name. it still cant be used by evas due to ecore-file needing
  ecore - and ecore-evas needing evas.  so it stays
 
 ecore_file, with the exception of file_download, is very simple
 abstraction and helpers are generaly useful (rm -r, mkdir -p...) and
 i'd consider them at the same category as eina_mempool and
 eina_module, so eina isla good place.

ecore_file ALSO has the file monitoring stuff - which needs a mainloop. so...
no can do in eina. ecore-file should stay where it is.

 as for ecore_file_download, why not merge it with ecore_con?

beecause it entirely does not fit with the rest of ecore_con api-wise and
conceptually. yes - inner mechanics are common. but it doesn't fit.

 -- 
 Gustavo Sverzut Barbieri
 http://profusion.mobi embedded systems
 --
 MSN: barbi...@gmail.com
 Skype: gsbarbieri
 Mobile: +55 (19) 9225-2202
 
 --
 Throughout its 18-year history, RSA Conference consistently attracts the
 world's best and brightest in the field, creating opportunities for Conference
 attendees to learn about information security's most important issues through
 interactions with peers, luminaries and emerging and established companies.
 http://p.sf.net/sfu/rsaconf-dev2dev
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] to Inc or Gustavo : about e2

2010-01-24 Thread The Rasterman
On Sun, 24 Jan 2010 22:58:14 +0100 (CET) Vincent Torri vto...@univ-evry.fr
said:

 
 Hey
 
 from osuosl
 
 bkero So there seems to be a big ol' dpkg running on e2
 bkero Owned either by Inc or barbieri

hmmm not that i can see - wasnt owned by inc or gustavo - parent process was
init... su ran the apt-get upgrade.

so... who did it? why? neeed to know. right now dont have much of a choice but
to continue the  half-done apt-get upgrade to get things working again



-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] to Inc or Gustavo : about e2

2010-01-24 Thread The Rasterman
On Sun, 24 Jan 2010 22:58:14 +0100 (CET) Vincent Torri vto...@univ-evry.fr
said:

 
 Hey
 
 from osuosl
 
 bkero So there seems to be a big ol' dpkg running on e2
 bkero Owned either by Inc or barbieri
 
 Vincent

ok. finished the apt-get upgrade and trac is back. need to know who did the
apt-get upgrade, why, and why did it hang part-way through - almost as if it
was asking a question and someone just decided to drop their connection or
ignore their machine and go to sleep.

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] to Inc or Gustavo : about e2

2010-01-24 Thread Christopher Michael
On 01/24/2010 05:36 PM, Carsten Haitzler (The Rasterman) wrote:
 On Sun, 24 Jan 2010 22:58:14 +0100 (CET) Vincent Torrivto...@univ-evry.fr
 said:


 Hey

 from osuosl

 bkero  So there seems to be a big ol' dpkg running on e2
 bkero  Owned either by Inc or barbieri

 Vincent

 ok. finished the apt-get upgrade and trac is back. need to know who did the
 apt-get upgrade, why, and why did it hang part-way through - almost as if it
 was asking a question and someone just decided to drop their connection or
 ignore their machine and go to sleep.

For once I can say that I am innocent here :) I don't use dpkg distros, 
don't normally log into e2, and wouldn't attempt something like this 
even if I did log into e2 :)

dh


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] to Inc or Gustavo : about e2

2010-01-24 Thread Vincent Torri


On Mon, 25 Jan 2010, Carsten Haitzler (The Rasterman) wrote:

 On Sun, 24 Jan 2010 22:58:14 +0100 (CET) Vincent Torri vto...@univ-evry.fr
 said:


 Hey

 from osuosl

 bkero So there seems to be a big ol' dpkg running on e2
 bkero Owned either by Inc or barbieri

 Vincent

 ok. finished the apt-get upgrade and trac is back. need to know who did the
 apt-get upgrade, why, and why did it hang part-way through - almost as if it
 was asking a question and someone just decided to drop their connection or
 ignore their machine and go to sleep.

apache was restarted during the upgrade. Could it be the reason ?

when was the upgrade started ? maybe with the people who logged in just 
before?



--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] to Inc or Gustavo : about e2

2010-01-24 Thread The Rasterman
On Sun, 24 Jan 2010 23:41:19 +0100 (CET) Vincent Torri vto...@univ-evry.fr
said:

 
 
 On Mon, 25 Jan 2010, Carsten Haitzler (The Rasterman) wrote:
 
  On Sun, 24 Jan 2010 22:58:14 +0100 (CET) Vincent Torri vto...@univ-evry.fr
  said:
 
 
  Hey
 
  from osuosl
 
  bkero So there seems to be a big ol' dpkg running on e2
  bkero Owned either by Inc or barbieri
 
  Vincent
 
  ok. finished the apt-get upgrade and trac is back. need to know who did the
  apt-get upgrade, why, and why did it hang part-way through - almost as if it
  was asking a question and someone just decided to drop their connection or
  ignore their machine and go to sleep.
 
 apache was restarted during the upgrade. Could it be the reason ?
 
 when was the upgrade started ? maybe with the people who logged in just 
 before?

well i restarted apache - there were a mountain of apache procs around - and
python ones. the machine was in the middle of an upgrade which means config
files were also being fiddled with by dpkg/apt and this is probably why
everything went south. apache being restarted is just fine. should be able to.
the problem was the half-configured state of the upgrade.

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] to Inc or Gustavo : about e2

2010-01-24 Thread Gustavo Sverzut Barbieri
On Sun, Jan 24, 2010 at 7:58 PM, Vincent Torri vto...@univ-evry.fr wrote:

 Hey

 from osuosl

 bkero So there seems to be a big ol' dpkg running on e2
 bkero Owned either by Inc or barbieri

I did not run this, I'm pretty sure. And how it could be one or
another?!!? It's either one or another, no?

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

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] merge ecore job and txt into ecore?

2010-01-24 Thread Gustavo Sverzut Barbieri
On Sun, Jan 24, 2010 at 8:21 PM, Carsten Haitzler ras...@rasterman.com wrote:
 On Sun, 24 Jan 2010 18:17:28 -0200 Gustavo Sverzut Barbieri
 barbi...@profusion.mobi said:

 On 1/23/10, Carsten Haitzler ras...@rasterman.com wrote:
  On Sun, 24 Jan 2010 00:13:25 +0100 Albin Tonnerre 
  albin.tonne...@gmail.com
  said:
 
  On Sun, 24 Jan 2010 00:02 +0100, Vincent Torri wrote :
  
   to summarize:
  
    * ecore_txt moved in eina
 
  I think we'll just have to agree to disagree here :)
 
    * ecore_job merged in ecore
 
  I've made a patch doing this.
 
    * nothing done for ecore_file (raster wants it in ecore)
 
  Do you mean ecore_input here ?
 
  no. ecore-file. can't put ecore-file in eina. it stays as ecore-file or 
  gets
  renamed to e-file-lib or whatevrr - but thats pointless as all u are doing
  is
  changing its name. it still cant be used by evas due to ecore-file needing
  ecore - and ecore-evas needing evas.  so it stays

 ecore_file, with the exception of file_download, is very simple
 abstraction and helpers are generaly useful (rm -r, mkdir -p...) and
 i'd consider them at the same category as eina_mempool and
 eina_module, so eina isla good place.

 ecore_file ALSO has the file monitoring stuff - which needs a mainloop. so...
 no can do in eina. ecore-file should stay where it is.

ok, but still against moving ecore_file_dir_get(),
ecore_file_file_get() out of it?! these are basic and some of these
functions are already duplicated internally in Eina for use in places
like ecore_module anyway... ecore_file_rm_recursive and friends are
generally useful, IMHO they should even be in libC/posix, as we can't
change that, so move to eina.


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

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] merge ecore job and txt into ecore?

2010-01-24 Thread The Rasterman
On Sun, 24 Jan 2010 23:40:16 -0200 Gustavo Sverzut Barbieri
barbi...@profusion.mobi said:

 On Sun, Jan 24, 2010 at 8:21 PM, Carsten Haitzler ras...@rasterman.com
 wrote:
  On Sun, 24 Jan 2010 18:17:28 -0200 Gustavo Sverzut Barbieri
  barbi...@profusion.mobi said:
 
  On 1/23/10, Carsten Haitzler ras...@rasterman.com wrote:
   On Sun, 24 Jan 2010 00:13:25 +0100 Albin Tonnerre
   albin.tonne...@gmail.com said:
  
   On Sun, 24 Jan 2010 00:02 +0100, Vincent Torri wrote :
   
to summarize:
   
 * ecore_txt moved in eina
  
   I think we'll just have to agree to disagree here :)
  
 * ecore_job merged in ecore
  
   I've made a patch doing this.
  
 * nothing done for ecore_file (raster wants it in ecore)
  
   Do you mean ecore_input here ?
  
   no. ecore-file. can't put ecore-file in eina. it stays as ecore-file or
   gets renamed to e-file-lib or whatevrr - but thats pointless as all u
   are doing is
   changing its name. it still cant be used by evas due to ecore-file
   needing ecore - and ecore-evas needing evas.  so it stays
 
  ecore_file, with the exception of file_download, is very simple
  abstraction and helpers are generaly useful (rm -r, mkdir -p...) and
  i'd consider them at the same category as eina_mempool and
  eina_module, so eina isla good place.
 
  ecore_file ALSO has the file monitoring stuff - which needs a mainloop.
  so... no can do in eina. ecore-file should stay where it is.
 
 ok, but still against moving ecore_file_dir_get(),
 ecore_file_file_get() out of it?! these are basic and some of these
 functions are already duplicated internally in Eina for use in places
 like ecore_module anyway... ecore_file_rm_recursive and friends are
 generally useful, IMHO they should even be in libC/posix, as we can't
 change that, so move to eina.

then you have some file stuff in eina, some in ecore-file - sounds not so good
to me.

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] to Inc or Gustavo : about e2

2010-01-24 Thread David Seikel
On Sun, 24 Jan 2010 23:41:19 +0100 (CET) Vincent Torri
vto...@univ-evry.fr wrote:

 
 
 On Mon, 25 Jan 2010, Carsten Haitzler (The Rasterman) wrote:
 
  On Sun, 24 Jan 2010 22:58:14 +0100 (CET) Vincent Torri
  vto...@univ-evry.fr said:
 
 
  Hey
 
  from osuosl
 
  bkero So there seems to be a big ol' dpkg running on e2
  bkero Owned either by Inc or barbieri
 
  Vincent
 
  ok. finished the apt-get upgrade and trac is back. need to know who
  did the apt-get upgrade, why, and why did it hang part-way through
  - almost as if it was asking a question and someone just decided to
  drop their connection or ignore their machine and go to sleep.
 
 apache was restarted during the upgrade. Could it be the reason ?
 
 when was the upgrade started ? maybe with the people who logged in
 just before?

Check peoples shell history files?  What other accounting goes on on
that box?

I have not logged on there recently.


signature.asc
Description: PGP signature
--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] to Inc or Gustavo : about e2

2010-01-24 Thread Michael Jennings
On Sunday, 24 January 2010, at 23:45:49 (-0200),
Gustavo Sverzut Barbieri wrote:

  bkero So there seems to be a big ol' dpkg running on e2
  bkero Owned either by Inc or barbieri
 
 I did not run this, I'm pretty sure. And how it could be one or
 another?!!? It's either one or another, no?

I was wondering that myself.  If he saw the process running, it was
either owned by inc's UID or Gustavo's; I don't see how there could
possibly be a question about which one.

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)
---
 Oh gaze of love, so melt my pride that I may in your house but
  kneel, and in my brokenness to cry spring worship unto thee.
   -- Jars of Clay, Hymn

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] to Inc or Gustavo : about e2

2010-01-24 Thread Tom Haste
This might be a stupid question, but was there any crond jobs that
include any apt upgrades or some other automated magic? If it is a
stupid question, feel free to give a stupid answer.

Toma.

On 1/25/10, Michael Jennings m...@kainx.org wrote:
 On Sunday, 24 January 2010, at 23:45:49 (-0200),
 Gustavo Sverzut Barbieri wrote:

  bkero So there seems to be a big ol' dpkg running on e2
  bkero Owned either by Inc or barbieri

 I did not run this, I'm pretty sure. And how it could be one or
 another?!!? It's either one or another, no?

 I was wondering that myself.  If he saw the process running, it was
 either owned by inc's UID or Gustavo's; I don't see how there could
 possibly be a question about which one.

 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)
 ---
  Oh gaze of love, so melt my pride that I may in your house but
   kneel, and in my brokenness to cry spring worship unto thee.
-- Jars of Clay, Hymn

 --
 Throughout its 18-year history, RSA Conference consistently attracts the
 world's best and brightest in the field, creating opportunities for
 Conference
 attendees to learn about information security's most important issues
 through
 interactions with peers, luminaries and emerging and established companies.
 http://p.sf.net/sfu/rsaconf-dev2dev
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


-- 
Sent from my mobile device

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] merge ecore job and txt into ecore?

2010-01-24 Thread Jose Gonzalez

 .
 
 how is putting everything in ecore and moving everything to eina any
 better? you're just shuffling pile of paper from desk a to desk b. 
   
   
Ummm, generally that would seem pointless indeed... But there are issues
 of dependencies to consider here besides just mere moving of things from one
 place to another.
For a variety of things, especially things you might want to use eg. in
 evas itself, having them in ecore is problematic. In general, I'd say that if
 there's a chance that some functionality could be useful in evas, or in apps
 that might not depend on evas, then those things should not be in ecore - not
 so long as ecore itself depends on evas.
 

 yes - thats true, though only because of ecore-evas/ecore-evas-input
   

   BTW, besides ecore_evas and ecore_input_evas, there is also ecore_imf_evas,
and even ecore_config has in its public header the inclusion of Evas.h - which 
is
needed there for one function:
EAPI int ecore_config_evas_font_path_apply(Evas *evas);

   There could be more, haven't checked... this is just something I remember 
being
there from sometime back.

   If ecore had been split along the lines of an ecore_base and ecore_ui say,
then not only would many of these wacky 'dependency issues' have been avoided,
but it's possible that things like the Ecore_Evas data structure wouldn't have
been needed at all since conceivably the functionality expressed via that could
have been made part of evas itself (as evas could then have used ecore_base/ui).


Banking
Click here to find the perfect banking opportunity!
http://thirdpartyoffers.juno.com/TGL2141/c?cp=pEV9GUX4KqsL2CSC2aDleQAAJ1CE1nexA7BxlOpTpVzzI1I8AAYAAADNAAAXeAA=

--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel