Commit Graph

16 Commits

Author SHA1 Message Date
Alexander Kanavin
f9ce43cdf6 Remove unnecessary exports of HOST_SYS and BUILD_SYS in python-based recipes
They are no longer required to build python software.

Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-06-08 14:55:25 +02:00
Martin Jansa
40e932e7d8 python-efl: upgrade to 1.13.0
* announcement:
  https://phab.enlightenment.org/phame/live/3/post/python_efl_1_13_0_release/

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-02-27 09:40:02 +01:00
Martin Jansa
d03f487930 python-efl: upgrade to 1.10.0
* announcement:
  https://phab.enlightenment.org/phame/post/view/60/

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21 19:22:26 +02:00
Martin Jansa
dca466c074 python-efl: add dependency on python-dbus and lua to always build edje and elementary bindings
* fixes following issue in test-dependencies report:
  python-efl/python-edje/latest lost dependency on  edje eglibc eina libpython2
  python-efl/python-elementary/latest lost dependency on  eglibc eina elementary evas libpython2

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-05-12 10:08:28 +02:00
Martin Jansa
71f4370d14 python-efl: add dependency on elementary
* otherwise python-elementary package is created only when elementary was
  built before python-efl

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-05-09 14:57:59 +02:00
Martin Jansa
5ad00d90f4 python-efl: upgrade to 1.9.0
* announcement:
  http://sourceforge.net/p/enlightenment/mailman/message/32066075/

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-04-20 10:43:30 +02:00
Martin Jansa
5870add0ca python-efl: update packaging to match old packages
* like in efl recipe create packages matching with old separate recipes

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-02-23 23:21:14 +01:00
Martin Jansa
9234bcb0d3 python-efl: upgrade from separate recipes to shared python-efl-1.8.1
* python-ecore, python-edbus, python-edje, python-elementary,
  python-emotion, python-evas are now built from single source tree
* announcements:
  1.8.0:
  http://sourceforge.net/mailarchive/message.php?msg_id=31728838
  1.8.1:
  http://sourceforge.net/mailarchive/message.php?msg_id=31862842

* be aware that upgrade-path wont probably work correctly
  and that you have to manually cleanup your sysroots before
  migrating to new shared efl recipe, for details see
  https://bugzilla.yoctoproject.org/show_bug.cgi?id=4102

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-02-23 23:21:14 +01:00
Martin Jansa
a45830a39b recipes: Unify indentation
* This change is only aesthetic (unlike indentation in Python
  tasks).
* Some recipes were using tabs.
* Some were using 8 spaces.
* Some were using mix or different number of spaces.
* Make them consistently use 4 spaces everywhere.
* Yocto styleguide advises to use tabs (but the only reason to keep
  tabs is the need to update a lot of recipes). Lately this advice
  was also merged into the styleguide on the OE wiki.
* Using 4 spaces in both types of tasks is better because it's less
  error prone when someone is not sure if e.g.
  do_generate_toolchain_file() is Python or shell task and also allows
  to highlight every tab used in .bb, .inc, .bbappend, .bbclass as
  potentially bad (shouldn't be used for indenting of multiline
  variable assignments and cannot be used for Python tasks).
* Don't indent closing quote on multiline variables
  we're quite inconsistent wheater it's first character on line
  under opening quote or under first non-whitespace character in
  previous line.

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Koen Kooi <koen@dominion.thruhere.net>
2013-04-15 16:23:17 +02:00
Martin Jansa
7199752c68 python-efl: fix do_configure_prepend to be reentrant
* without '=' it added ${STAGING_DIR_HOST} prefix again when
  do_configure was executed twice in the same WORKDIR
  causing issues when looking for header files in python-edje,
  python-ecore, python-elementary and python-emotion
  ./python-edje/configure.ac:CYTHON_EDJE_INCLUDEDIR=`$PKG_CONFIG --variable=includedir "python-evas >= ${python_evas_version}"`
  ./python-ecore/configure.ac:CYTHON_ECORE_EVAS_INCLUDEDIR=""
  ./python-ecore/configure.ac:CYTHON_ECORE_EVAS_INCLUDEDIR=`$PKG_CONFIG --variable=includedir "python-evas >= ${python_evas_version}"`
  ./python-elementary/configure.ac:CYTHON_ELEMENTARY_INCLUDEDIR=`$PKG_CONFIG --variable=includedir "python-evas >= ${python_evas_version}"`
  ./python-emotion/configure.ac:CYTHON_EMOTION_INCLUDEDIR=`$PKG_CONFIG --variable=includedir "python-evas >= ${python_evas_version}"`

* config.log diffs confirms duplicated ${STAGING_DIR_HOST} prefix
  < CYTHON_ECORE_EVAS_INCLUDEDIR='/OE/jansa-test/shr-core/tmp-eglibc/sysroots/tuna/usr/include/python-evas'
  ---
  > CYTHON_ECORE_EVAS_INCLUDEDIR='/OE/jansa-test/shr-core/tmp-eglibc/sysroots/tuna/OE/jansa-test/shr-core/tmp-eglibc/sysroots/tuna/usr/include/python-evas'

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-11 01:52:57 +01:00
Martin Jansa
ab19e33a9d python-efl: introduce recipes for 1.6.99-alpha release and add negative D_P to svn recipes
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-08-20 09:58:08 +02:00
Martin Jansa
7c28fa0c71 python-efl: bump PV and reset PR
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-08-20 09:58:08 +02:00
Martin Jansa
2a4de1a544 meta-efl: unify tabs/spaces usage
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-08-20 09:57:39 +02:00
Koen Kooi
aa4f437796 various: update ; proto= to ; protocol= in SRC_URI
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-07-16 11:06:40 +02:00
Martin Jansa
2e0a1d5c68 python-efl: use INC_PR
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-10-12 10:24:46 +02:00
Martin Jansa
c5e512ae75 python-efl: import from meta-shr
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-03-31 12:56:35 +02:00