All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] [meta-efl] Pull request #3
@ 2011-04-06  7:14 Martin Jansa
  2011-04-06  7:14 ` [PATCH 1/8] eio: new recipe and include file for eio Martin Jansa
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Martin Jansa @ 2011-04-06  7:14 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

Sync with oe, add ephoto, bump SRCREV

Pull URL: git://gitorious.org/shr/meta-openembedded.git
  Branch: jama/meta-efl
  Browse: http://gitorious.org/shr/meta-openembedded/commits/jama/meta-efl

Thanks,
    Martin Jansa <Martin.Jansa@gmail.com>
---


Martin Jansa (5):
  ephoto: inherit gettext
  elementary: inherit gettext
  e-base: bump SRCREV
  evas: drop PACKAGES_DYNAMIC_virtclass-native, not needed anymore
  azy: disable mysql tests

Philippe De Swert (3):
  eio: new recipe and include file for eio
  ephoto: new svn build recipe
  eeze: update to 1.0.1

 meta-efl/classes/e-base.bbclass            |    2 +-
 meta-efl/recipes-efl/e17/ephoto_svn.bb     |   14 ++++++++++++++
 meta-efl/recipes-efl/efl/azy_svn.bb        |    2 ++
 meta-efl/recipes-efl/efl/eeze_1.0.0.bb     |   10 ----------
 meta-efl/recipes-efl/efl/eeze_1.0.1.bb     |   10 ++++++++++
 meta-efl/recipes-efl/efl/eio.inc           |    8 ++++++++
 meta-efl/recipes-efl/efl/eio_svn.bb        |   13 +++++++++++++
 meta-efl/recipes-efl/efl/elementary_svn.bb |    2 +-
 meta-efl/recipes-efl/efl/evas.inc          |    1 -
 9 files changed, 49 insertions(+), 13 deletions(-)
 create mode 100644 meta-efl/recipes-efl/e17/ephoto_svn.bb
 delete mode 100644 meta-efl/recipes-efl/efl/eeze_1.0.0.bb
 create mode 100644 meta-efl/recipes-efl/efl/eeze_1.0.1.bb
 create mode 100644 meta-efl/recipes-efl/efl/eio.inc
 create mode 100644 meta-efl/recipes-efl/efl/eio_svn.bb

-- 
1.7.4.1




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

* [PATCH 1/8] eio: new recipe and include file for eio
  2011-04-06  7:14 [PATCH 0/8] [meta-efl] Pull request #3 Martin Jansa
@ 2011-04-06  7:14 ` Martin Jansa
  2011-04-06  7:15 ` [PATCH 2/8] ephoto: new svn build recipe Martin Jansa
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Martin Jansa @ 2011-04-06  7:14 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

From: Philippe De Swert <philippedeswert@gmail.com>

Signed-off-by: Philippe De Swert <philippedeswert@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/efl/eio.inc    |    8 ++++++++
 meta-efl/recipes-efl/efl/eio_svn.bb |   13 +++++++++++++
 2 files changed, 21 insertions(+), 0 deletions(-)
 create mode 100644 meta-efl/recipes-efl/efl/eio.inc
 create mode 100644 meta-efl/recipes-efl/efl/eio_svn.bb

diff --git a/meta-efl/recipes-efl/efl/eio.inc b/meta-efl/recipes-efl/efl/eio.inc
new file mode 100644
index 0000000..0edc07e
--- /dev/null
+++ b/meta-efl/recipes-efl/efl/eio.inc
@@ -0,0 +1,8 @@
+DESCRIPTION = "Enlightenment Input Output Library"
+LICENSE = "LGPLv2.1"
+DEPENDS = "ecore eina"
+
+inherit efl
+
+BBCLASSEXTEND = "native"
+INC_PR = "r0"
diff --git a/meta-efl/recipes-efl/efl/eio_svn.bb b/meta-efl/recipes-efl/efl/eio_svn.bb
new file mode 100644
index 0000000..6a12dcf
--- /dev/null
+++ b/meta-efl/recipes-efl/efl/eio_svn.bb
@@ -0,0 +1,13 @@
+require eio.inc
+
+SRCREV = "${EFL_SRCREV}"
+PV = "0.1.0+svnr${SRCPV}"
+PR = "${INC_PR}.0"
+DEFAULT_PREFERENCE = "-1"
+
+LIC_FILES_CHKSUM = "file://COPYING;md5=403f20cf42c847686ac2956f14bfa30f"
+
+SRC_URI = "\
+  ${E_SVN}/trunk;module=${SRCNAME};proto=http;scmdata=keep \
+"
+S = "${WORKDIR}/${SRCNAME}"
-- 
1.7.4.1




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

* [PATCH 2/8] ephoto: new svn build recipe
  2011-04-06  7:14 [PATCH 0/8] [meta-efl] Pull request #3 Martin Jansa
  2011-04-06  7:14 ` [PATCH 1/8] eio: new recipe and include file for eio Martin Jansa
@ 2011-04-06  7:15 ` Martin Jansa
  2011-04-06  7:15 ` [PATCH 3/8] ephoto: inherit gettext Martin Jansa
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Martin Jansa @ 2011-04-06  7:15 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

From: Philippe De Swert <philippedeswert@gmail.com>

Signed-off-by: Philippe De Swert <philippedeswert@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/e17/ephoto_svn.bb |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)
 create mode 100644 meta-efl/recipes-efl/e17/ephoto_svn.bb

diff --git a/meta-efl/recipes-efl/e17/ephoto_svn.bb b/meta-efl/recipes-efl/e17/ephoto_svn.bb
new file mode 100644
index 0000000..787b110
--- /dev/null
+++ b/meta-efl/recipes-efl/e17/ephoto_svn.bb
@@ -0,0 +1,12 @@
+LICENSE = "MIT CC-BY-SA2.5"
+PV = "0.1.0+svnr${SRCREV}"
+PR = "${INC_PR}.0"
+
+LIC_FILES_CHKSUM = "file://COPYING;md5=df45d9de58df0b48f515eae8d2421257"
+LIC_FILES_CHKSUM = "file://COPYING.icons;md5=d4e4f10748f3146a089aaa23c9ade59b"
+
+require e-module.inc
+
+DEPENDS += "elementary ethumb ecore eio"
+
+SRCNAME = "${PN}"
-- 
1.7.4.1




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

* [PATCH 3/8] ephoto: inherit gettext
  2011-04-06  7:14 [PATCH 0/8] [meta-efl] Pull request #3 Martin Jansa
  2011-04-06  7:14 ` [PATCH 1/8] eio: new recipe and include file for eio Martin Jansa
  2011-04-06  7:15 ` [PATCH 2/8] ephoto: new svn build recipe Martin Jansa
@ 2011-04-06  7:15 ` Martin Jansa
  2011-04-06  7:15 ` [PATCH 4/8] elementary: " Martin Jansa
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Martin Jansa @ 2011-04-06  7:15 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

---
 meta-efl/recipes-efl/e17/ephoto_svn.bb |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/meta-efl/recipes-efl/e17/ephoto_svn.bb b/meta-efl/recipes-efl/e17/ephoto_svn.bb
index 787b110..4694398 100644
--- a/meta-efl/recipes-efl/e17/ephoto_svn.bb
+++ b/meta-efl/recipes-efl/e17/ephoto_svn.bb
@@ -7,6 +7,8 @@ LIC_FILES_CHKSUM = "file://COPYING.icons;md5=d4e4f10748f3146a089aaa23c9ade59b"
 
 require e-module.inc
 
+inherit gettext
+
 DEPENDS += "elementary ethumb ecore eio"
 
 SRCNAME = "${PN}"
-- 
1.7.4.1




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

* [PATCH 4/8] elementary: inherit gettext
  2011-04-06  7:14 [PATCH 0/8] [meta-efl] Pull request #3 Martin Jansa
                   ` (2 preceding siblings ...)
  2011-04-06  7:15 ` [PATCH 3/8] ephoto: inherit gettext Martin Jansa
@ 2011-04-06  7:15 ` Martin Jansa
  2011-04-06  7:16 ` [PATCH 5/8] eeze: update to 1.0.1 Martin Jansa
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Martin Jansa @ 2011-04-06  7:15 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

---
 meta-efl/recipes-efl/efl/elementary_svn.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-efl/recipes-efl/efl/elementary_svn.bb b/meta-efl/recipes-efl/efl/elementary_svn.bb
index 2fdd0dd..a28927c 100644
--- a/meta-efl/recipes-efl/efl/elementary_svn.bb
+++ b/meta-efl/recipes-efl/efl/elementary_svn.bb
@@ -6,7 +6,7 @@ PV = "0.7.0+svnr${SRCPV}"
 PR = "r11"
 SRCREV = "${EFL_SRCREV}"
 
-inherit efl
+inherit efl gettext
 SRC_URI = "${E_SVN}/trunk;module=${SRCNAME};proto=http;scmdata=keep"
 S = "${WORKDIR}/${SRCNAME}"
 
-- 
1.7.4.1




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

* [PATCH 5/8] eeze: update to 1.0.1
  2011-04-06  7:14 [PATCH 0/8] [meta-efl] Pull request #3 Martin Jansa
                   ` (3 preceding siblings ...)
  2011-04-06  7:15 ` [PATCH 4/8] elementary: " Martin Jansa
@ 2011-04-06  7:16 ` Martin Jansa
  2011-04-06  7:16 ` [PATCH 6/8] e-base: bump SRCREV Martin Jansa
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Martin Jansa @ 2011-04-06  7:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

From: Philippe De Swert <philippedeswert@gmail.com>

Version 1.0.1 contains bugfixes for udev watch/find functions to make sure devices are shown correctly.

Signed-off-by: Philippe De Swert <philippedeswert@gmail.com>
Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/efl/eeze_1.0.0.bb |   10 ----------
 meta-efl/recipes-efl/efl/eeze_1.0.1.bb |   10 ++++++++++
 2 files changed, 10 insertions(+), 10 deletions(-)
 delete mode 100644 meta-efl/recipes-efl/efl/eeze_1.0.0.bb
 create mode 100644 meta-efl/recipes-efl/efl/eeze_1.0.1.bb

diff --git a/meta-efl/recipes-efl/efl/eeze_1.0.0.bb b/meta-efl/recipes-efl/efl/eeze_1.0.0.bb
deleted file mode 100644
index 12d70d9..0000000
--- a/meta-efl/recipes-efl/efl/eeze_1.0.0.bb
+++ /dev/null
@@ -1,10 +0,0 @@
-require eeze.inc
-
-PR = "${INC_PR}.0"
-
-SRC_URI = "\
-  ${E_MIRROR}/${SRCNAME}-${PV}.tar.gz \
-"
-
-SRC_URI[md5sum] = "31f9b2a8fce56a73c99c1c5d2a449fb6"
-SRC_URI[sha256sum] = "27da2b12f60b3c23cd52d16d601b5ab61734b9038beb3ab40129ac770f048d84"
diff --git a/meta-efl/recipes-efl/efl/eeze_1.0.1.bb b/meta-efl/recipes-efl/efl/eeze_1.0.1.bb
new file mode 100644
index 0000000..cc1d721
--- /dev/null
+++ b/meta-efl/recipes-efl/efl/eeze_1.0.1.bb
@@ -0,0 +1,10 @@
+require eeze.inc
+
+PR = "${INC_PR}.0"
+
+SRC_URI = "\
+  ${E_MIRROR}/${SRCNAME}-${PV}.tar.gz \
+"
+
+SRC_URI[md5sum] = "e36b5e8ed444c8d13d27fd82d5f71659"
+SRC_URI[sha256sum] = "736470383c33837edd88f417200c5612ca9cc5f400bc48d61fd966fec3fe09d7"
-- 
1.7.4.1




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

* [PATCH 6/8] e-base: bump SRCREV
  2011-04-06  7:14 [PATCH 0/8] [meta-efl] Pull request #3 Martin Jansa
                   ` (4 preceding siblings ...)
  2011-04-06  7:16 ` [PATCH 5/8] eeze: update to 1.0.1 Martin Jansa
@ 2011-04-06  7:16 ` Martin Jansa
  2011-04-06  7:17 ` [PATCH 7/8] evas: drop PACKAGES_DYNAMIC_virtclass-native, not needed anymore Martin Jansa
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Martin Jansa @ 2011-04-06  7:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

---
 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 c27ba0e..2692cfe 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 ?= "56372"
+EFL_SRCREV ?= "58315"
 # revision when 1.0.0 was released, for recipes which don't need rebuild so often
 EFL_SRCREV_1.0.0 ?= "56356"
 
-- 
1.7.4.1




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

* [PATCH 7/8] evas: drop PACKAGES_DYNAMIC_virtclass-native, not needed anymore
  2011-04-06  7:14 [PATCH 0/8] [meta-efl] Pull request #3 Martin Jansa
                   ` (5 preceding siblings ...)
  2011-04-06  7:16 ` [PATCH 6/8] e-base: bump SRCREV Martin Jansa
@ 2011-04-06  7:17 ` Martin Jansa
  2011-04-06  7:17 ` [PATCH 8/8] azy: disable mysql tests Martin Jansa
  2011-04-06  7:32 ` [PATCH 0/8] [meta-efl] Pull request #3 Koen Kooi
  8 siblings, 0 replies; 10+ messages in thread
From: Martin Jansa @ 2011-04-06  7:17 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

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

diff --git a/meta-efl/recipes-efl/efl/evas.inc b/meta-efl/recipes-efl/efl/evas.inc
index 3dbd072..4e6f328 100644
--- a/meta-efl/recipes-efl/efl/evas.inc
+++ b/meta-efl/recipes-efl/efl/evas.inc
@@ -29,7 +29,6 @@ do_install_append() {
 FILES_${PN}-dev += "${libdir}/evas/modules/*/*/*/*.a ${libdir}/evas/modules/*/*/*/*.la"
 FILES_${PN}-dbg += "${libdir}/evas/modules/*/*/*/.debug/"
 
-PACKAGES_DYNAMIC_virtclass-native = ""
 PACKAGES_DYNAMIC = "evas-engine-* evas-loader-* evas-saver-*"
 
 RRECOMMENDS_${PN} = " \
-- 
1.7.4.1




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

* [PATCH 8/8] azy: disable mysql tests
  2011-04-06  7:14 [PATCH 0/8] [meta-efl] Pull request #3 Martin Jansa
                   ` (6 preceding siblings ...)
  2011-04-06  7:17 ` [PATCH 7/8] evas: drop PACKAGES_DYNAMIC_virtclass-native, not needed anymore Martin Jansa
@ 2011-04-06  7:17 ` Martin Jansa
  2011-04-06  7:32 ` [PATCH 0/8] [meta-efl] Pull request #3 Koen Kooi
  8 siblings, 0 replies; 10+ messages in thread
From: Martin Jansa @ 2011-04-06  7:17 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

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

diff --git a/meta-efl/recipes-efl/efl/azy_svn.bb b/meta-efl/recipes-efl/efl/azy_svn.bb
index c7ee1f4..bd4268c 100644
--- a/meta-efl/recipes-efl/efl/azy_svn.bb
+++ b/meta-efl/recipes-efl/efl/azy_svn.bb
@@ -8,6 +8,8 @@ SRCREV = "${EFL_SRCREV}"
 # to provide native lemon binary
 BBCLASSEXTEND = "native"
 
+EXTRA_OECONF += " --disable-mysql-tests"
+
 do_configure_prepend() {
   sed -i "s#\./lemon#${STAGING_BINDIR_NATIVE}/lemon#g" ${S}/src/bin/Makefile.am
   sed -i "s#\$(top_builddir)/src/bin/azy_parser -H -p -o#${STAGING_BINDIR_NATIVE}/azy_parser -H -p -o#g" ${S}/src/tests/Makefile.am
-- 
1.7.4.1




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

* Re: [PATCH 0/8] [meta-efl] Pull request #3
  2011-04-06  7:14 [PATCH 0/8] [meta-efl] Pull request #3 Martin Jansa
                   ` (7 preceding siblings ...)
  2011-04-06  7:17 ` [PATCH 8/8] azy: disable mysql tests Martin Jansa
@ 2011-04-06  7:32 ` Koen Kooi
  8 siblings, 0 replies; 10+ messages in thread
From: Koen Kooi @ 2011-04-06  7:32 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 06-04-11 09:14, Martin Jansa wrote:
> Sync with oe, add ephoto, bump SRCREV
> 
> Pull URL: git://gitorious.org/shr/meta-openembedded.git
>   Branch: jama/meta-efl
>   Browse: http://gitorious.org/shr/meta-openembedded/commits/jama/meta-efl

Merged into master, thanks!


> 
> Thanks,
>     Martin Jansa <Martin.Jansa@gmail.com>
> ---
> 
> 
> Martin Jansa (5):
>   ephoto: inherit gettext
>   elementary: inherit gettext
>   e-base: bump SRCREV
>   evas: drop PACKAGES_DYNAMIC_virtclass-native, not needed anymore
>   azy: disable mysql tests
> 
> Philippe De Swert (3):
>   eio: new recipe and include file for eio
>   ephoto: new svn build recipe
>   eeze: update to 1.0.1
> 
>  meta-efl/classes/e-base.bbclass            |    2 +-
>  meta-efl/recipes-efl/e17/ephoto_svn.bb     |   14 ++++++++++++++
>  meta-efl/recipes-efl/efl/azy_svn.bb        |    2 ++
>  meta-efl/recipes-efl/efl/eeze_1.0.0.bb     |   10 ----------
>  meta-efl/recipes-efl/efl/eeze_1.0.1.bb     |   10 ++++++++++
>  meta-efl/recipes-efl/efl/eio.inc           |    8 ++++++++
>  meta-efl/recipes-efl/efl/eio_svn.bb        |   13 +++++++++++++
>  meta-efl/recipes-efl/efl/elementary_svn.bb |    2 +-
>  meta-efl/recipes-efl/efl/evas.inc          |    1 -
>  9 files changed, 49 insertions(+), 13 deletions(-)
>  create mode 100644 meta-efl/recipes-efl/e17/ephoto_svn.bb
>  delete mode 100644 meta-efl/recipes-efl/efl/eeze_1.0.0.bb
>  create mode 100644 meta-efl/recipes-efl/efl/eeze_1.0.1.bb
>  create mode 100644 meta-efl/recipes-efl/efl/eio.inc
>  create mode 100644 meta-efl/recipes-efl/efl/eio_svn.bb
> 

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFNnBcJMkyGM64RGpERAvJqAKCTNrFB8awSK//9N+7Sj0VPr1Mg5ACfY7/u
ZiwI0PEKHXbzvRAnzdoUeao=
=Hqsf
-----END PGP SIGNATURE-----




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

end of thread, other threads:[~2011-04-06  7:37 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-06  7:14 [PATCH 0/8] [meta-efl] Pull request #3 Martin Jansa
2011-04-06  7:14 ` [PATCH 1/8] eio: new recipe and include file for eio Martin Jansa
2011-04-06  7:15 ` [PATCH 2/8] ephoto: new svn build recipe Martin Jansa
2011-04-06  7:15 ` [PATCH 3/8] ephoto: inherit gettext Martin Jansa
2011-04-06  7:15 ` [PATCH 4/8] elementary: " Martin Jansa
2011-04-06  7:16 ` [PATCH 5/8] eeze: update to 1.0.1 Martin Jansa
2011-04-06  7:16 ` [PATCH 6/8] e-base: bump SRCREV Martin Jansa
2011-04-06  7:17 ` [PATCH 7/8] evas: drop PACKAGES_DYNAMIC_virtclass-native, not needed anymore Martin Jansa
2011-04-06  7:17 ` [PATCH 8/8] azy: disable mysql tests Martin Jansa
2011-04-06  7:32 ` [PATCH 0/8] [meta-efl] Pull request #3 Koen Kooi

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.