All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-efl][PATCH 0/3] efl upgrade
@ 2012-03-24  7:58 Martin Jansa
  2012-03-24  7:59 ` [meta-efl][PATCH 1/3] e-base: bump EFL_SRCREV Martin Jansa
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Martin Jansa @ 2012-03-24  7:58 UTC (permalink / raw)
  To: openembedded-devel

Newer efl alpha was released today, so I hope that next bump will be with released tarballs.

This EFL_SRCREV is a bit older but worth upgrading as it finishes python-elementary changes
for elementary-1.0 APIs and also includes .so changes for release (so switch to tarballs should
be rather formality with bugfixes).

All elementary based apps need PR bump.

The following changes since commit 6b22bd198a87b5f113971d8fcd0e7211cd143c7d:

  systemd-serialgetty: sync with upstream (2012-03-23 07:57:19 +0100)

are available in the git repository at:
  git://git.openembedded.org/meta-openembedded-contrib jansa/efl
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=jansa/efl

Martin Jansa (3):
  e-base: bump EFL_SRCREV
  emotion: fix upgrade path from libemotion0 to libemotion1
  e-tasks: bump PR

 meta-efl/classes/e-base.bbclass         |    2 +-
 meta-efl/recipes-efl/e17/e-tasks_git.bb |    1 +
 meta-efl/recipes-efl/efl/emotion_svn.bb |    4 +++-
 3 files changed, 5 insertions(+), 2 deletions(-)

-- 
1.7.8.5




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [meta-efl][PATCH 1/3] e-base: bump EFL_SRCREV
  2012-03-24  7:58 [meta-efl][PATCH 0/3] efl upgrade Martin Jansa
@ 2012-03-24  7:59 ` Martin Jansa
  2012-03-24  7:59 ` [meta-efl][PATCH 2/3] emotion: fix upgrade path from libemotion0 to libemotion1 Martin Jansa
  2012-03-24  7:59 ` [meta-efl][PATCH 3/3] e-tasks: bump PR Martin Jansa
  2 siblings, 0 replies; 4+ messages in thread
From: Martin Jansa @ 2012-03-24  7:59 UTC (permalink / raw)
  To: openembedded-devel

Newer efl alpha was released today, so I hope that next bump will be with released tarballs.

This EFL_SRCREV is a bit older but worth upgrading as it finishes python-elementary changes
for elementary-1.0 APIs and also includes .so changes for release (so switch to tarballs should
be rather formality with bugfixes).

All elementary based apps need PR bump.

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/classes/e-base.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-efl/classes/e-base.bbclass b/meta-efl/classes/e-base.bbclass
index 58636ec..32f0b28 100644
--- a/meta-efl/classes/e-base.bbclass
+++ b/meta-efl/classes/e-base.bbclass
@@ -1,6 +1,6 @@
 HOMEPAGE = "http://www.enlightenment.org"
 SRCNAME ?= "${BPN}"
 
-EFL_SRCREV ?= "69323"
+EFL_SRCREV ?= "69500"
 
 ARM_INSTRUCTION_SET = "arm"
-- 
1.7.8.5




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [meta-efl][PATCH 2/3] emotion: fix upgrade path from libemotion0 to libemotion1
  2012-03-24  7:58 [meta-efl][PATCH 0/3] efl upgrade Martin Jansa
  2012-03-24  7:59 ` [meta-efl][PATCH 1/3] e-base: bump EFL_SRCREV Martin Jansa
@ 2012-03-24  7:59 ` Martin Jansa
  2012-03-24  7:59 ` [meta-efl][PATCH 3/3] e-tasks: bump PR Martin Jansa
  2 siblings, 0 replies; 4+ messages in thread
From: Martin Jansa @ 2012-03-24  7:59 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/efl/emotion_svn.bb |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/meta-efl/recipes-efl/efl/emotion_svn.bb b/meta-efl/recipes-efl/efl/emotion_svn.bb
index 2588256..f9ae8f6 100644
--- a/meta-efl/recipes-efl/efl/emotion_svn.bb
+++ b/meta-efl/recipes-efl/efl/emotion_svn.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=69f44058245ce5c596d56bb622d5dabd"
 # we no longer build the libxine backend, since the gstreamer backend seems more promising
 DEPENDS = "eet eeze evas ecore edje gstreamer gst-plugins-base"
 PV = "0.2.0+svnr${SRCPV}"
-PR = "r1"
+PR = "r2"
 SRCREV = "${EFL_SRCREV}"
 
 inherit efl
@@ -16,3 +16,5 @@ EXTRA_OECONF = "--disable-xine --enable-gstreamer --with-edje-cc=${STAGING_BINDI
 PACKAGES =+ "emotion-backend-gstreamer"
 FILES_emotion-backend-gstreamer = "${libdir}/emotion/*.so"
 RRECOMMENDS_${PN} = "emotion-backend-gstreamer"
+# upgrade path from libemotion0 to libemotion1
+RREPLACES_${PN} = "libemotion0"
-- 
1.7.8.5




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [meta-efl][PATCH 3/3] e-tasks: bump PR
  2012-03-24  7:58 [meta-efl][PATCH 0/3] efl upgrade Martin Jansa
  2012-03-24  7:59 ` [meta-efl][PATCH 1/3] e-base: bump EFL_SRCREV Martin Jansa
  2012-03-24  7:59 ` [meta-efl][PATCH 2/3] emotion: fix upgrade path from libemotion0 to libemotion1 Martin Jansa
@ 2012-03-24  7:59 ` Martin Jansa
  2 siblings, 0 replies; 4+ messages in thread
From: Martin Jansa @ 2012-03-24  7:59 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/e17/e-tasks_git.bb |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta-efl/recipes-efl/e17/e-tasks_git.bb b/meta-efl/recipes-efl/e17/e-tasks_git.bb
index 5196f42..dea6f03 100644
--- a/meta-efl/recipes-efl/e17/e-tasks_git.bb
+++ b/meta-efl/recipes-efl/e17/e-tasks_git.bb
@@ -10,6 +10,7 @@ inherit autotools
 
 SRCREV = "b640f0e7287877983645d9d9a36f85a0b6a54631"
 PV = "0.0.2+gitr${SRCPV}"
+PR = "r1"
 
 SRC_URI = "git://github.com/shr-project/e-tasks.git;protocol=git;branch=master \
 "
-- 
1.7.8.5




^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-03-24  8:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-24  7:58 [meta-efl][PATCH 0/3] efl upgrade Martin Jansa
2012-03-24  7:59 ` [meta-efl][PATCH 1/3] e-base: bump EFL_SRCREV Martin Jansa
2012-03-24  7:59 ` [meta-efl][PATCH 2/3] emotion: fix upgrade path from libemotion0 to libemotion1 Martin Jansa
2012-03-24  7:59 ` [meta-efl][PATCH 3/3] e-tasks: bump PR Martin Jansa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.