[EGIT] [website/www-content] master 01/01: Wiki page fedora-start changed with summary [] by Philippe Jean Guillaumie
WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=bb3791f8079e8377a501850e6f1ad2c025916edd commit bb3791f8079e8377a501850e6f1ad2c025916edd Author: Philippe Jean Guillaumie Date: Mon Mar 20 05:01:27 2017 -0700 Wiki page fedora-start changed with summary [] by Philippe Jean Guillaumie --- pages/distros/fedora-start.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/distros/fedora-start.txt b/pages/distros/fedora-start.txt index 64332e5..ddba00a 100644 --- a/pages/distros/fedora-start.txt +++ b/pages/distros/fedora-start.txt @@ -1,6 +1,6 @@ ~~Title: EFL on Fedora~~ - Compiling from source + Compiling from Source Satisfying dependencies under **Fedora 25** (the RPM Fusion Free repository must be active) and recommended packages: --
[EGIT] [website/www-content] master 01/01: Wiki page ubuntu-start changed with summary [] by Philippe Jean Guillaumie
WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=9ea0d166ed5e54b445d2cb020b1a5005850c1279 commit 9ea0d166ed5e54b445d2cb020b1a5005850c1279 Author: Philippe Jean Guillaumie Date: Mon Mar 20 05:00:33 2017 -0700 Wiki page ubuntu-start changed with summary [] by Philippe Jean Guillaumie --- pages/distros/ubuntu-start.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/distros/ubuntu-start.txt b/pages/distros/ubuntu-start.txt index 82f5481..2a5ba64 100644 --- a/pages/distros/ubuntu-start.txt +++ b/pages/distros/ubuntu-start.txt @@ -1,5 +1,5 @@ ~~Title: EFL on Ubuntu~~ - Compiling from source + Compiling from Source Satisfying dependencies under **Ubuntu Xenial Xerus** or **Yakkety Yak** (and recommended packages): --
[E-devel] Weekly news from the automated build and QA front
Hello. Summary: o Almost no change in numbers This should give everyone an overview over what has happened in the last week on the QA front. The numbers in parentheses reflect the values from last week to give you a trend. CI: o Overall build statistic: 5.41% (5.14%) failed. https://build.enlightenment.org/ Unit tests: o N/A (N/A) unit tests for efl Coverage: o EFL total coverage is at N/A% (N/A%) lines, N/A% (N/A%) functions and N/A (N/A) branches https://build.enlightenment.org/view/Test%20Coverage/ Coverity: o EFL: Outstanding defects 49 (49) with a density of 0.04 (0.04) o Enlightenment: Outstanding defects 1 (1) with a density of 0 (0) o Terminology: Outstanding defects 0 (0) with a density of 0 (0) o Rage: Outstanding defects 0 (0) with a density of 0 (0) Phab: o EFL bug count: 331 (332) o E bug count: 395 (396) https://phab.enlightenment.org/maniphest/report/burn/ o Pending patch reviews: 153 (155) regards Stefan Schmidt -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] Work items towards 1.19
Hello. Some bugs have been fixed, added or updated and I changed the list here accordingly. Phab show stopper: -- macOS graphical programs crash on termination https://phab.enlightenment.org/T5245 Genlist: the sorted insert broken again https://phab.enlightenment.org/T5274 Phab high: -- Ecore evas not ignore events properly https://phab.enlightenment.org/T4700 ecore_con_local not working on Windows https://phab.enlightenment.org/T3758 regards Stefan Schmidt -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
[EGIT] [core/efl] master 01/01: genlist: Fix another issue with insert sorted
jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=76b5749ea00b1009a5a9621b76604e4883e0e6e2 commit 76b5749ea00b1009a5a9621b76604e4883e0e6e2 Author: Jean-Philippe Andre Date: Mon Mar 20 22:24:41 2017 +0900 genlist: Fix another issue with insert sorted Fixes T5274 @fix --- src/lib/elementary/elm_genlist.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/elementary/elm_genlist.c b/src/lib/elementary/elm_genlist.c index ade4a3f..6c36251 100644 --- a/src/lib/elementary/elm_genlist.c +++ b/src/lib/elementary/elm_genlist.c @@ -6500,9 +6500,10 @@ _elm_genlist_item_sorted_insert(Eo *obj, Elm_Genlist_Data *sd, const Elm_Genlist { it->parent->item->items = eina_list_append_relative_list (it->parent->item->items, eo_it, l); - if (rel->item->items && rel->item->expanded) + if (rel->item->items) { - eo_rel = eina_list_last_data_get(rel->item->items); + Eina_List *ll = _list_last_recursive(rel->item->items); + eo_rel = ll->data; rel = efl_data_scope_get(eo_rel, ELM_GENLIST_ITEM_CLASS); } sd->items = eina_inlist_append_relative --
Re: [E-devel] Work items towards 1.19
On 20 March 2017 at 21:13, Stefan Schmidt wrote: > Hello. > > Some bugs have been fixed, added or updated and I changed the list here > accordingly. > > Phab show stopper: > -- > macOS graphical programs crash on termination > https://phab.enlightenment.org/T5245 > > Genlist: the sorted insert broken again > https://phab.enlightenment.org/T5274 Don't you dare find another issue with genlist! > > > Phab high: > -- > Ecore evas not ignore events properly > https://phab.enlightenment.org/T4700 > > ecore_con_local not working on Windows > https://phab.enlightenment.org/T3758 > > regards > Stefan Schmidt > > > -- > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > ___ > enlightenment-devel mailing list > enlightenment-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > > ;) -- Jean-Philippe André -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] Work items towards 1.19
On Mon, Mar 20, 2017 at 1:13 PM, Stefan Schmidt wrote: > Hello. > > Some bugs have been fixed, added or updated and I changed the list here > accordingly. > > Phab show stopper: > -- > macOS graphical programs crash on termination > https://phab.enlightenment.org/T5245 > > Genlist: the sorted insert broken again > https://phab.enlightenment.org/T5274 > > Phab high: > -- > Ecore evas not ignore events properly > https://phab.enlightenment.org/T4700 > > ecore_con_local not working on Windows > https://phab.enlightenment.org/T3758 I'm still waiting for Gustavo to reply to me :) Vincent -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] EFL 1.19.0-beta3 (from git) package for Debian Experimental
Hi Jose, On Sun, Mar 19, 2017 at 11:47 PM, Jose R R wrote: > In my local Debian Sid (Unstable) I have been using: > > https://git.enlightenment.org/core/efl.git/ > > Notwithstanding, I intended to package Enlightenment and make download > available for my SourceForge Debian-Reiser4 netboot installer. > > EFL debian packaging: > http://http.debian.net/debian/pool/main/e/efl/efl_1.18.4-1.debian.tar.xz > > I mostly succeeded in packaging EFL from git effort -- in Debian Jessie > (stable) as well. Problem I am encountering is testing suite with checkmk, > as it hangs with: > [...] > make check-TESTS > PASS: tests/eina/eina_suite > PASS: tests/eo/test_children > PASS: tests/eo/test_access > PASS: tests/eo/test_composite_objects > PASS: tests/eo/test_constructors > PASS: tests/eo/eo_suite > PASS: tests/eo/eo_suite_add_fallback > PASS: tests/eo/test_function_overrides > PASS: tests/eo/test_interface > PASS: tests/eo/test_mixin > PASS: tests/eo/test_signals > PASS: tests/efl/efl_suite > PASS: tests/emile/emile_suite > PASS: tests/eet/eet_suite > PASS: tests/eolian/eolian_suite > PASS: tests/ector/suite/ector_suite > make[7]: *** Deleting file 'tests/ecore/ecore_suite.log' > dh_auto_test: make -j1 check VERBOSE=1 -j1 VERBOSE=yes died with signal 13 > > (check:amd64 0.10.0-3+b1 unit test framework for C) > > The above after it hangs indefinitely and I have to press CTRL+C to break > out. > > Notwithstanding, I built newest check-0.11.0 and it completed the tests. > attached is the fail log. > > I know someone has been working on this as well, and would appreciate any > input. I have seen an intermittent issue with Eina_Thread_Queue in ecore tests suite for some time now, but every time I try to look at it, it vanish :-( Maybe something Raster could look at and may have a better idea on this. Cedric -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] EFL 1.19.0-beta3 (from git) package for Debian Experimental
On Sun, Mar 19, 2017 at 11:47:39PM -0700, Jose R R wrote: > https://git.enlightenment.org/core/efl.git/ > > Notwithstanding, I intended to package Enlightenment and make download > available for my SourceForge Debian-Reiser4 netboot installer. > > EFL debian packaging: > http://http.debian.net/debian/pool/main/e/efl/efl_1.18.4-1.debian.tar.xz Any reason you want to rebuild from git instead of using the packages in experimental? If you've found a problem, I'd like to fix it. On sid & stretch they should install without difficulty. Are you using sbuild? I've seen issues like the test failures below under sbuild - some EFL tests get incorrect info about filesystem permissions. I use pbuilder, so I haven't tracked this down. Ross -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] EFL 1.19.0-beta3 (from git) package for Debian Experimental
On Mon, Mar 20, 2017 at 1:19 PM, Ross Vandegrift wrote: > > On Sun, Mar 19, 2017 at 11:47:39PM -0700, Jose R R wrote: > > https://git.enlightenment.org/core/efl.git/ > > > > Notwithstanding, I intended to package Enlightenment and make download > > available for my SourceForge Debian-Reiser4 netboot installer. > > > > EFL debian packaging: > > http://http.debian.net/debian/pool/main/e/efl/efl_1.18.4-1.debian.tar.xz > > Any reason you want to rebuild from git instead of using the packages in > experimental? If you've found a problem, I'd like to fix it. On sid & > stretch they should install without difficulty. I will try anything, until something works. Then I will proceed to work on the backport for the stable Debian (Jessie) to complement Reiser4 kernel, backported{ linux-base, nfs-common, reiser4progs (reiser4 fs utilities), etc.}. If I install packages directly from Debian unstable(Sid), testing (Stretch), or -- in this particular case, experimental -- repositories onto stable/Jessie-backports, the end user will end up with dependency hell, i.e, broken installation. > > Are you using sbuild? I've seen issues like the test failures below > under sbuild - some EFL tests get incorrect info about filesystem > permissions. I use pbuilder, so I haven't tracked this down. No I am not using sbuild. After I manually prepare (dependencies, patch, etc.) Sid/Experimental, I build with command: fakeroot debian/rules binary Below/attached is log for EFL 1.18.4 test-suite.log (2 FAIL): ... make check-TESTS PASS: tests/eina/eina_suite PASS: tests/eo/test_children PASS: tests/eo/test_access PASS: tests/eo/test_composite_objects PASS: tests/eo/test_constructors PASS: tests/eo/eo_suite PASS: tests/eo/eo_suite_add_fallback PASS: tests/eo/test_function_overrides PASS: tests/eo/test_interface PASS: tests/eo/test_mixin PASS: tests/eo/test_signals PASS: tests/emile/emile_suite PASS: tests/eet/eet_suite PASS: tests/eolian/eolian_suite PASS: tests/ector/ector_suite PASS: tests/ecore/ecore_suite FAIL: tests/evas/evas_suite PASS: tests/ecore_con/ecore_con_suite PASS: tests/eeze/eeze_suite SKIP: tests/eldbus/eldbus_suite PASS: tests/efreet/efreet_suite FAIL: tests/eio/eio_suite PASS: tests/edje/edje_suite SKIP: tests/elementary/elm_suite PASS: tests/eina_cxx/eina_cxx_suite PASS: tests/ecore_cxx/ecore_cxx_suite PASS: tests/ecore_cxx/cxx_compile_test PASS: tests/eet_cxx/eet_cxx_suite SKIP: tests/eldbus_cxx/eldbus_cxx_suite PASS: tests/evas_cxx/cxx_compile_test PASS: tests/elementary_cxx/cxx_compile_test PASS: tests/eolian_cxx/eolian_cxx_suite PASS: tests/elua/elua_suite efl 1.18.4: src/test-suite.log # TOTAL: 33 # PASS: 28 # SKIP: 3 # XFAIL: 0 # FAIL: 2 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 Thanks. Best Professional Regards. -- Jose R R http://metztli.it - Download Debian-Reiser4 for AMD64 https://sf.net/projects/debian-reiser4/ - Try at no charge http://b2evolution.net for http://OpenShift.com PaaS - from our GitHub http://Nepohualtzintzin.com repository. Cloud the easy way! efl 1.18.4: src/test-suite.log # TOTAL: 33 # PASS: 28 # SKIP: 3 # XFAIL: 0 # FAIL: 2 # XPASS: 0 # ERROR: 0 .. contents:: :depth: 2 FAIL: tests/evas/evas_suite === /mnt/caxtolli/usr/src/build/enlightenment-debian/sid-omeyi/efl-1.18.4/src/tests/evas/.libs/evas_suite: symbol lookup error: /mnt/caxtolli/usr/src/build/enlightenment-debian/sid-omeyi/efl-1.18.4/src/lib/efl/.libs/libefl.so.1: undefined symbol: _eo_call_end FAIL tests/evas/evas_suite (exit status: 127) SKIP: tests/eldbus/eldbus_suite === Skipping /mnt/caxtolli/usr/src/build/enlightenment-debian/sid-omeyi/efl-1.18.4/src/tests/eldbus/.libs/eldbus_suite SKIP tests/eldbus/eldbus_suite (exit status: 77) FAIL: tests/eio/eio_suite = Running suite(s): Eio ERR<6533>:eldbus lib/eldbus/eldbus_core.c:1021 _connection_get() Error connecting to bus of type 2. error name: org.freedesktop.DBus.Error.NoReply error message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken. ERR<6533>:eina_safety lib/eldbus/eldbus_core.c:1084 eldbus_connection_get() safety check failed: conn == NULL ERR<6533>:eina_safety lib/eldbus/eldbus_object.c:192 eldbus_object_get() safety check failed: conn == NULL ERR<6533>:ecore_system_systemd modules/ecore/system/systemd/ecore_system_systemd.c:223 _property_change_monitor() could not get object name=org