All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-efl][PATCH 0/4] Pull request #9
@ 2011-08-22 20:25 Martin Jansa
  2011-08-22 20:26 ` [meta-efl][PATCH 1/4] e-base: bump EFL_SRCREV Martin Jansa
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Martin Jansa @ 2011-08-22 20:25 UTC (permalink / raw)
  To: openembedded-devel

The following changes since commit e2ab1ff691b2ed4444b331247157707c68f239f7:

  kernel.bbclass: save kernel image name into $kerneldir (2011-08-22 22:03:11 +0200)

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

Martin Jansa (2):
  e-base: bump EFL_SRCREV
  elementary: add new elementary-accessibility package and improve
    packaging

Sebastian Krzyszkowiak (1):
  edje: include epp in edje-utils package. Fixes edje_cc

pespin (1):
  elfe: Add LIC_FILES_CHKSUM to recipe

 meta-efl/classes/e-base.bbclass            |    2 +-
 meta-efl/recipes-efl/e17/elfe_svn.bb       |    1 +
 meta-efl/recipes-efl/efl/edje.inc          |    3 ++-
 meta-efl/recipes-efl/efl/elementary_svn.bb |   15 +++++++++++----
 4 files changed, 15 insertions(+), 6 deletions(-)

-- 
1.7.6




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

* [meta-efl][PATCH 1/4] e-base: bump EFL_SRCREV
  2011-08-22 20:25 [meta-efl][PATCH 0/4] Pull request #9 Martin Jansa
@ 2011-08-22 20:26 ` Martin Jansa
  2011-08-22 20:26 ` [meta-efl][PATCH 2/4] elementary: add new elementary-accessibility package and improve packaging Martin Jansa
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Martin Jansa @ 2011-08-22 20:26 UTC (permalink / raw)
  To: openembedded-devel

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 1b70382..6e8713d 100644
--- a/meta-efl/classes/e-base.bbclass
+++ b/meta-efl/classes/e-base.bbclass
@@ -2,7 +2,7 @@ HOMEPAGE = "http://www.enlightenment.org"
 SRCNAME ?= "${BPN}"
 
 # usually tracks svn trunk HEAD
-EFL_SRCREV ?= "62492"
+EFL_SRCREV ?= "62690"
 # revision when 1.0.0 was released, for recipes which don't need rebuild so often
 EFL_SRCREV_1.0.0 ?= "56356"
 
-- 
1.7.6




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

* [meta-efl][PATCH 2/4] elementary: add new elementary-accessibility package and improve packaging
  2011-08-22 20:25 [meta-efl][PATCH 0/4] Pull request #9 Martin Jansa
  2011-08-22 20:26 ` [meta-efl][PATCH 1/4] e-base: bump EFL_SRCREV Martin Jansa
@ 2011-08-22 20:26 ` Martin Jansa
  2011-08-22 20:26 ` [meta-efl][PATCH 3/4] edje: include epp in edje-utils package. Fixes edje_cc Martin Jansa
  2011-08-22 20:26 ` [meta-efl][PATCH 4/4] elfe: Add LIC_FILES_CHKSUM to recipe Martin Jansa
  3 siblings, 0 replies; 6+ messages in thread
From: Martin Jansa @ 2011-08-22 20:26 UTC (permalink / raw)
  To: openembedded-devel

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

diff --git a/meta-efl/recipes-efl/efl/elementary_svn.bb b/meta-efl/recipes-efl/efl/elementary_svn.bb
index a28927c..1c8909f 100644
--- a/meta-efl/recipes-efl/efl/elementary_svn.bb
+++ b/meta-efl/recipes-efl/efl/elementary_svn.bb
@@ -21,13 +21,13 @@ do_compile_append() {
                   elementary.pc
 }
 
-PACKAGES =+ "${PN}-configs"
+PACKAGES =+ "${PN}-configs ${PN}-accessibility"
 
 RDEPENDS_${PN} = "\
-  elementary-themes \
-  elementary-configs \
+  ${PN}-themes \
+  ${PN}-configs \
 "
-RSUGGESTS_${PN} = "elementary-tests"
+RSUGGESTS_${PN} = "${PN}-tests ${PN}-accessibility"
 
 FILES_${PN} += "\
   ${libdir}/edje/modules/elm \
@@ -43,6 +43,8 @@ FILES_${PN}-configs = "\
 
 FILES_${PN}-dbg += "\
   ${libdir}/elementary/modules/test_entry/*/.debug \
+  ${libdir}/elementary/modules/test_map/*/.debug \
+  ${libdir}/elementary/modules/access_output/*/.debug \
   ${libdir}/edje/modules/elm/*/.debug \
 "
 
@@ -53,6 +55,11 @@ FILES_${PN}-tests = "\
   ${datadir}/applications/* \
   ${datadir}/icons/* \
   ${libdir}/elementary/modules/test_entry/* \
+  ${libdir}/elementary/modules/test_map/* \
+"
+
+FILES_${PN}-accessibility = "\
+  ${libdir}/elementary/modules/access_output/* \
 "
 
 # Some upgrade path tweaking, as in evas
-- 
1.7.6




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

* [meta-efl][PATCH 3/4] edje: include epp in edje-utils package. Fixes edje_cc
  2011-08-22 20:25 [meta-efl][PATCH 0/4] Pull request #9 Martin Jansa
  2011-08-22 20:26 ` [meta-efl][PATCH 1/4] e-base: bump EFL_SRCREV Martin Jansa
  2011-08-22 20:26 ` [meta-efl][PATCH 2/4] elementary: add new elementary-accessibility package and improve packaging Martin Jansa
@ 2011-08-22 20:26 ` Martin Jansa
  2011-08-22 20:26 ` [meta-efl][PATCH 4/4] elfe: Add LIC_FILES_CHKSUM to recipe Martin Jansa
  3 siblings, 0 replies; 6+ messages in thread
From: Martin Jansa @ 2011-08-22 20:26 UTC (permalink / raw)
  To: openembedded-devel

From: Sebastian Krzyszkowiak <dos@dosowisko.net>

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

diff --git a/meta-efl/recipes-efl/efl/edje.inc b/meta-efl/recipes-efl/efl/edje.inc
index 9d4d222..b922f90 100644
--- a/meta-efl/recipes-efl/efl/edje.inc
+++ b/meta-efl/recipes-efl/efl/edje.inc
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=1f2d83425ec8dfae5cd77f8ce52e872c"
 inherit efl
 
 BBCLASSEXTEND = "native nativesdk"
-INC_PR = "r0"
+INC_PR = "r1"
 
 do_configure_prepend_virtclass-native() {
 	sed -i 's:EMBRYO_PREFIX"/bin:"${STAGING_BINDIR}:' ${S}/src/bin/edje_cc_out.c
@@ -52,5 +52,6 @@ RREPLACES_${PN} = "libedje-ver-pre-svn-00-0 libedje-ver-pre-svn-01-0"
 FILES_${PN}-utils = "\
   ${bindir}/edje_* \
   ${bindir}/inkscape2edc \
+  ${libdir}/edje/utils/epp \
   ${datadir}/edje/include/edje.inc \
 "
-- 
1.7.6




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

* [meta-efl][PATCH 4/4] elfe: Add LIC_FILES_CHKSUM to recipe
  2011-08-22 20:25 [meta-efl][PATCH 0/4] Pull request #9 Martin Jansa
                   ` (2 preceding siblings ...)
  2011-08-22 20:26 ` [meta-efl][PATCH 3/4] edje: include epp in edje-utils package. Fixes edje_cc Martin Jansa
@ 2011-08-22 20:26 ` Martin Jansa
  2011-08-22 20:53   ` Paul Menzel
  3 siblings, 1 reply; 6+ messages in thread
From: Martin Jansa @ 2011-08-22 20:26 UTC (permalink / raw)
  To: openembedded-devel

From: pespin <pespin.shar@gmail.com>

Signed-off-by: Pau Espin Pedrol <pespin.shar@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/e17/elfe_svn.bb |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta-efl/recipes-efl/e17/elfe_svn.bb b/meta-efl/recipes-efl/e17/elfe_svn.bb
index 8b8f09d..b5126f9 100644
--- a/meta-efl/recipes-efl/e17/elfe_svn.bb
+++ b/meta-efl/recipes-efl/e17/elfe_svn.bb
@@ -1,4 +1,5 @@
 LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=344895f253c32f38e182dcaf30fe8a35"
 PV = "0.0.1+svnr${SRCPV}"
 PR = "${INC_PR}.0"
 
-- 
1.7.6




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

* Re: [meta-efl][PATCH 4/4] elfe: Add LIC_FILES_CHKSUM to recipe
  2011-08-22 20:26 ` [meta-efl][PATCH 4/4] elfe: Add LIC_FILES_CHKSUM to recipe Martin Jansa
@ 2011-08-22 20:53   ` Paul Menzel
  0 siblings, 0 replies; 6+ messages in thread
From: Paul Menzel @ 2011-08-22 20:53 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 770 bytes --]

Am Montag, den 22.08.2011, 22:26 +0200 schrieb Martin Jansa:
> From: pespin <pespin.shar@gmail.com>

Koen, please fix up the name before merging it.

> Signed-off-by: Pau Espin Pedrol <pespin.shar@gmail.com>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  meta-efl/recipes-efl/e17/elfe_svn.bb |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/meta-efl/recipes-efl/e17/elfe_svn.bb b/meta-efl/recipes-efl/e17/elfe_svn.bb
> index 8b8f09d..b5126f9 100644
> --- a/meta-efl/recipes-efl/e17/elfe_svn.bb
> +++ b/meta-efl/recipes-efl/e17/elfe_svn.bb
> @@ -1,4 +1,5 @@
>  LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=344895f253c32f38e182dcaf30fe8a35"
>  PV = "0.0.1+svnr${SRCPV}"
>  PR = "${INC_PR}.0"

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

end of thread, other threads:[~2011-08-22 20:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-22 20:25 [meta-efl][PATCH 0/4] Pull request #9 Martin Jansa
2011-08-22 20:26 ` [meta-efl][PATCH 1/4] e-base: bump EFL_SRCREV Martin Jansa
2011-08-22 20:26 ` [meta-efl][PATCH 2/4] elementary: add new elementary-accessibility package and improve packaging Martin Jansa
2011-08-22 20:26 ` [meta-efl][PATCH 3/4] edje: include epp in edje-utils package. Fixes edje_cc Martin Jansa
2011-08-22 20:26 ` [meta-efl][PATCH 4/4] elfe: Add LIC_FILES_CHKSUM to recipe Martin Jansa
2011-08-22 20:53   ` Paul Menzel

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.