[E-devel] EFL 1.25.0 beta 1

2020-08-31 Thread Stefan Schmidt
Following our alpha release last week we are now in the beta phase, 
starting with beta1. The focus is now fully on bug fixing and 
stabilization for the release.


**Fixes:**
  * ecore con - curl - fix error map to map right enum
  * eina - statgen (stat generation) - fix enable api to actually enable
  * evas - image cache - fix loading with skip head on to load changed 
files


**Download**
http://download.enlightenment.org/rel/libs/efl/efl-1.25.0-beta1.tar.xz
32f68cd233199318b4c3639f868101088090276deb8c92360fc28c40b987ef2d




___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] EFL 1.25.0 beta 1

2020-09-01 Thread Romain Naour
Hello Stefan,

Le 31/08/2020 à 15:28, Stefan Schmidt a écrit :
> Following our alpha release last week we are now in the beta phase, starting
> with beta1. The focus is now fully on bug fixing and stabilization for the 
> release.
> 
> **Fixes:**
>   * ecore con - curl - fix error map to map right enum
>   * eina - statgen (stat generation) - fix enable api to actually enable
>   * evas - image cache - fix loading with skip head on to load changed files
> 
> **Download**
> http://download.enlightenment.org/rel/libs/efl/efl-1.25.0-beta1.tar.xz
> 32f68cd233199318b4c3639f868101088090276deb8c92360fc28c40b987ef2d

Can you take a look at those meson fixes made for Buildroot?

https://sourceforge.net/p/enlightenment/mailman/message/37075003/
https://sourceforge.net/p/enlightenment/mailman/message/37075016/
https://sourceforge.net/p/enlightenment/mailman/message/37075004/

Thanks!

Best regards,
Romain

> 
> 
> 
> 
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] EFL 1.25.0 beta 1

2020-09-02 Thread Marcel Hollerbach

Hi,

On 9/1/20 9:36 PM, Romain Naour wrote:

Hello Stefan,

Le 31/08/2020 à 15:28, Stefan Schmidt a écrit :

Following our alpha release last week we are now in the beta phase, starting
with beta1. The focus is now fully on bug fixing and stabilization for the 
release.

**Fixes:**
   * ecore con - curl - fix error map to map right enum
   * eina - statgen (stat generation) - fix enable api to actually enable
   * evas - image cache - fix loading with skip head on to load changed files

**Download**
http://download.enlightenment.org/rel/libs/efl/efl-1.25.0-beta1.tar.xz
32f68cd233199318b4c3639f868101088090276deb8c92360fc28c40b987ef2d




I'm terribly sorry that i missed them before.


Can you take a look at those meson fixes made for Buildroot?

https://sourceforge.net/p/enlightenment/mailman/message/37075003/


I will fix this in a different way if its okay. As a explanation:
- 'env' will rely on the execution environment to find the correct env 
(native or not).
- using env with before "env = find_program('env', native: true) will 
hopefully tell meson which to select.


Therefore i prefer to use find_program, I fixed that in the master 
(e2a1cdfda76dd0061ef8e0ab25aee4e042304366)



https://sourceforge.net/p/enlightenment/mailman/message/37075016/
https://sourceforge.net/p/enlightenment/mailman/message/37075004/


Can you share the errors that got fixed due to these revisions?

The problem I see with them is: The second revision removes the include 
directory, that then gets added in the third one. So there is something 
fishy.
Additionally, ecore_evas_drm.c only uses dlopen for calling gl things, 
so linking with gl is not required here.


Thank you,
   bu5hm4n





Thanks!

Best regards,
Romain






___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel




___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel




___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] EFL 1.25.0 beta 1

2020-09-06 Thread Romain Naour
Hello,

Le 02/09/2020 à 09:43, Marcel Hollerbach a écrit :
> Hi,
> 
> On 9/1/20 9:36 PM, Romain Naour wrote:
>> Hello Stefan,
>>
>> Le 31/08/2020 à 15:28, Stefan Schmidt a écrit :
>>> Following our alpha release last week we are now in the beta phase, starting
>>> with beta1. The focus is now fully on bug fixing and stabilization for the
>>> release.
>>>
>>> **Fixes:**
>>>    * ecore con - curl - fix error map to map right enum
>>>    * eina - statgen (stat generation) - fix enable api to actually enable
>>>    * evas - image cache - fix loading with skip head on to load changed 
>>> files
>>>
>>> **Download**
>>> http://download.enlightenment.org/rel/libs/efl/efl-1.25.0-beta1.tar.xz
>>> 32f68cd233199318b4c3639f868101088090276deb8c92360fc28c40b987ef2d
>>
> 
> I'm terribly sorry that i missed them before.

No problem at all.

> 
>> Can you take a look at those meson fixes made for Buildroot?
>>
>> https://sourceforge.net/p/enlightenment/mailman/message/37075003/
> 
> I will fix this in a different way if its okay. As a explanation:
> - 'env' will rely on the execution environment to find the correct env (native
> or not).
> - using env with before "env = find_program('env', native: true) will 
> hopefully
> tell meson which to select.
> 
> Therefore i prefer to use find_program, I fixed that in the master
> (e2a1cdfda76dd0061ef8e0ab25aee4e042304366)

ok for me.

> 
>> https://sourceforge.net/p/enlightenment/mailman/message/37075016/
>> https://sourceforge.net/p/enlightenment/mailman/message/37075004/
> 
> Can you share the errors that got fixed due to these revisions?
> 
> The problem I see with them is: The second revision removes the include
> directory, that then gets added in the third one. So there is something fishy.
> Additionally, ecore_evas_drm.c only uses dlopen for calling gl things, so
> linking with gl is not required here.

Well, I added the error in the commit log:

test/efl/build/efl-1.24.3/src/modules/ecore_evas/engines/drm/meson.build:10:2:
ERROR: Unknown variable "engine_gl_drm".

You can try with the current buildroot master and remove patches 2 and 3.

Best regards,
Romain

> 
> Thank you,
>    bu5hm4n
> 
> 
> 
>>
>> Thanks!
>>
>> Best regards,
>> Romain
>>
>>>
>>>
>>>
>>>
>>> ___
>>> enlightenment-devel mailing list
>>> enlightenment-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>
>>
>>
>> ___
>> enlightenment-devel mailing list
>> enlightenment-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>>
> 
> 
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel