All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-efl][PATCH 1/4] enjoy: Add var LIC_FILES_CHKSUM to recipe
@ 2011-08-22 20:45 Pau Espin Pedrol
  2011-08-22 20:45 ` [meta-efl][PATCH 2/4] enjoy: Add inherit gettext Pau Espin Pedrol
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Pau Espin Pedrol @ 2011-08-22 20:45 UTC (permalink / raw)
  To: openembedded-devel

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

diff --git a/meta-efl/recipes-efl/e17/enjoy_svn.bb b/meta-efl/recipes-efl/e17/enjoy_svn.bb
index eab81b4..d3fea32 100644
--- a/meta-efl/recipes-efl/e17/enjoy_svn.bb
+++ b/meta-efl/recipes-efl/e17/enjoy_svn.bb
@@ -1,5 +1,6 @@
 DESCRIPTION = "Enjoy music player"
 LICENSE = "LGPLv3"
+LIC_FILES_CHKSUM = "file://COPYING;md5=0f507c68d42d1cc0fcb507d007112bf2"
 DEPENDS = "evas ecore edje elementary emotion lightmediascanner"
 SRCREV = "${EFL_SRCREV}"
 PV = "0.0+svnr${SRCPV}"
-- 
1.7.6




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

* [meta-efl][PATCH 2/4] enjoy: Add inherit gettext
  2011-08-22 20:45 [meta-efl][PATCH 1/4] enjoy: Add var LIC_FILES_CHKSUM to recipe Pau Espin Pedrol
@ 2011-08-22 20:45 ` Pau Espin Pedrol
  2011-08-22 20:45 ` [meta-efl][PATCH 3/4] enjoy: Update gstreamer package names in RDEPENDS Pau Espin Pedrol
  2011-08-22 20:45 ` [meta-efl][PATCH 4/4] enjoy: Add gst-plugins-good-autodetect to RDEPENDS Pau Espin Pedrol
  2 siblings, 0 replies; 6+ messages in thread
From: Pau Espin Pedrol @ 2011-08-22 20:45 UTC (permalink / raw)
  To: openembedded-devel

* Without this patch bitbake fails to build this recipe, and it says this line should be added to recipe

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

diff --git a/meta-efl/recipes-efl/e17/enjoy_svn.bb b/meta-efl/recipes-efl/e17/enjoy_svn.bb
index d3fea32..90eb318 100644
--- a/meta-efl/recipes-efl/e17/enjoy_svn.bb
+++ b/meta-efl/recipes-efl/e17/enjoy_svn.bb
@@ -21,7 +21,7 @@ RDEPENDS += "\
 	lightmediascanner-test \
 	"
 
-inherit e
+inherit e gettext
 SRC_URI = "${E_SVN}/trunk;module=${SRCNAME};proto=http;scmdata=keep"
 S = "${WORKDIR}/${SRCNAME}"
 
-- 
1.7.6




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

* [meta-efl][PATCH 3/4] enjoy: Update gstreamer package names in RDEPENDS
  2011-08-22 20:45 [meta-efl][PATCH 1/4] enjoy: Add var LIC_FILES_CHKSUM to recipe Pau Espin Pedrol
  2011-08-22 20:45 ` [meta-efl][PATCH 2/4] enjoy: Add inherit gettext Pau Espin Pedrol
@ 2011-08-22 20:45 ` Pau Espin Pedrol
  2011-08-23  8:34   ` Koen Kooi
  2011-08-22 20:45 ` [meta-efl][PATCH 4/4] enjoy: Add gst-plugins-good-autodetect to RDEPENDS Pau Espin Pedrol
  2 siblings, 1 reply; 6+ messages in thread
From: Pau Espin Pedrol @ 2011-08-22 20:45 UTC (permalink / raw)
  To: openembedded-devel

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

diff --git a/meta-efl/recipes-efl/e17/enjoy_svn.bb b/meta-efl/recipes-efl/e17/enjoy_svn.bb
index 90eb318..d2f6b03 100644
--- a/meta-efl/recipes-efl/e17/enjoy_svn.bb
+++ b/meta-efl/recipes-efl/e17/enjoy_svn.bb
@@ -14,12 +14,12 @@ DEPENDS += "gst-plugins-good ${@base_conditional('ENTERPRISE_DISTRO', '1', '', '
 #4th needed for flac playback
 #5th needed binary to create db
 RDEPENDS += "\
-	gst-plugin-typefindfunctions gst-plugin-playbin gst-plugin-volume gst-plugin-decodebin2  \
-	${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugin-mad gst-plugin-id3demux', d)} \
-	gst-plugin-ogg gst-plugin-ivorbisdec \
-	gst-plugin-flac \
-	lightmediascanner-test \
-	"
+       gst-plugins-base-typefindfunctions gst-plugins-base-playbin gst-plugins-base-volume gst-plugins-base-decodebin2 \
+       ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugins-ugly-mad gst-plugins-good-id3demux', d)} \
+       gst-plugins-base-ogg gst-plugins-base-ivorbisdec \
+       gst-plugins-good-flac \
+       lightmediascanner-test \
+       "
 
 inherit e gettext
 SRC_URI = "${E_SVN}/trunk;module=${SRCNAME};proto=http;scmdata=keep"
-- 
1.7.6




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

* [meta-efl][PATCH 4/4] enjoy: Add gst-plugins-good-autodetect to RDEPENDS
  2011-08-22 20:45 [meta-efl][PATCH 1/4] enjoy: Add var LIC_FILES_CHKSUM to recipe Pau Espin Pedrol
  2011-08-22 20:45 ` [meta-efl][PATCH 2/4] enjoy: Add inherit gettext Pau Espin Pedrol
  2011-08-22 20:45 ` [meta-efl][PATCH 3/4] enjoy: Update gstreamer package names in RDEPENDS Pau Espin Pedrol
@ 2011-08-22 20:45 ` Pau Espin Pedrol
  2 siblings, 0 replies; 6+ messages in thread
From: Pau Espin Pedrol @ 2011-08-22 20:45 UTC (permalink / raw)
  To: openembedded-devel

* This plugin is needed in newer versions of enjoy. The app won't play any sound files without this plugin.

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

diff --git a/meta-efl/recipes-efl/e17/enjoy_svn.bb b/meta-efl/recipes-efl/e17/enjoy_svn.bb
index d2f6b03..8c4d4c2 100644
--- a/meta-efl/recipes-efl/e17/enjoy_svn.bb
+++ b/meta-efl/recipes-efl/e17/enjoy_svn.bb
@@ -14,7 +14,7 @@ DEPENDS += "gst-plugins-good ${@base_conditional('ENTERPRISE_DISTRO', '1', '', '
 #4th needed for flac playback
 #5th needed binary to create db
 RDEPENDS += "\
-       gst-plugins-base-typefindfunctions gst-plugins-base-playbin gst-plugins-base-volume gst-plugins-base-decodebin2 \
+       gst-plugins-base-typefindfunctions gst-plugins-base-playbin gst-plugins-base-volume gst-plugins-base-decodebin2 gst-plugins-good-autodetect \
        ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugins-ugly-mad gst-plugins-good-id3demux', d)} \
        gst-plugins-base-ogg gst-plugins-base-ivorbisdec \
        gst-plugins-good-flac \
-- 
1.7.6




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

* Re: [meta-efl][PATCH 3/4] enjoy: Update gstreamer package names in RDEPENDS
  2011-08-22 20:45 ` [meta-efl][PATCH 3/4] enjoy: Update gstreamer package names in RDEPENDS Pau Espin Pedrol
@ 2011-08-23  8:34   ` Koen Kooi
  0 siblings, 0 replies; 6+ messages in thread
From: Koen Kooi @ 2011-08-23  8:34 UTC (permalink / raw)
  To: openembedded-devel

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

Op 22-08-11 22:45, Pau Espin Pedrol schreef:
> Signed-off-by: Pau Espin Pedrol <pespin.shar@gmail.com> --- meta-efl/recipes-efl/e17/enjoy_svn.bb |   12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/meta-efl/recipes-efl/e17/enjoy_svn.bb b/meta-efl/recipes-efl/e17/enjoy_svn.bb index 90eb318..d2f6b03 100644 --- a/meta-efl/recipes-efl/e17/enjoy_svn.bb +++ b/meta-efl/recipes-efl/e17/enjoy_svn.bb @@ -14,12 +14,12 @@ DEPENDS += "gst-plugins-good 
> ${@base_conditional('ENTERPRISE_DISTRO', '1', '', ' #4th needed for flac playback #5th needed binary to create db RDEPENDS += "\ -	gst-plugin-typefindfunctions gst-plugin-playbin gst-plugin-volume gst-plugin-decodebin2  \ -	${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugin-mad 
> gst-plugin-id3demux', d)} \ -	gst-plugin-ogg gst-plugin-ivorbisdec \ -	gst-plugin-flac \ -	lightmediascanner-test \ -	" +       gst-plugins-base-typefindfunctions gst-plugins-base-playbin gst-plugins-base-volume gst-plugins-base-decodebin2 \ +       ${@base_conditional('ENTERPRISE_DISTRO',
> '1', '', 'gst-plugins-ugly-mad gst-plugins-good-id3demux', d)} \ +       gst-plugins-base-ogg gst-plugins-base-ivorbisdec \ +       gst-plugins-good-flac \ +       lightmediascanner-test \ +       "

I'm going to hold of on these gst changes since these will get renamed soon in OE-core.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFOU2YKMkyGM64RGpERAjkaAJ91Fg00brQ//+8UaHrIZV4C9k/xmwCfeU1B
T88FXaO8B/GVxKzuxqLZI5U=
=lSCL
-----END PGP SIGNATURE-----




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

* [meta-efl][PATCH 1/4] enjoy: Add var LIC_FILES_CHKSUM to recipe
  2011-09-16  7:08 [meta-efl][PATCH 0/4] Pull request #12 Martin Jansa
@ 2011-09-16  7:08 ` Martin Jansa
  0 siblings, 0 replies; 6+ messages in thread
From: Martin Jansa @ 2011-09-16  7:08 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/enjoy_svn.bb |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta-efl/recipes-efl/e17/enjoy_svn.bb b/meta-efl/recipes-efl/e17/enjoy_svn.bb
index eab81b4..d3fea32 100644
--- a/meta-efl/recipes-efl/e17/enjoy_svn.bb
+++ b/meta-efl/recipes-efl/e17/enjoy_svn.bb
@@ -1,5 +1,6 @@
 DESCRIPTION = "Enjoy music player"
 LICENSE = "LGPLv3"
+LIC_FILES_CHKSUM = "file://COPYING;md5=0f507c68d42d1cc0fcb507d007112bf2"
 DEPENDS = "evas ecore edje elementary emotion lightmediascanner"
 SRCREV = "${EFL_SRCREV}"
 PV = "0.0+svnr${SRCPV}"
-- 
1.7.6.1




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

end of thread, other threads:[~2011-09-16  7:14 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:45 [meta-efl][PATCH 1/4] enjoy: Add var LIC_FILES_CHKSUM to recipe Pau Espin Pedrol
2011-08-22 20:45 ` [meta-efl][PATCH 2/4] enjoy: Add inherit gettext Pau Espin Pedrol
2011-08-22 20:45 ` [meta-efl][PATCH 3/4] enjoy: Update gstreamer package names in RDEPENDS Pau Espin Pedrol
2011-08-23  8:34   ` Koen Kooi
2011-08-22 20:45 ` [meta-efl][PATCH 4/4] enjoy: Add gst-plugins-good-autodetect to RDEPENDS Pau Espin Pedrol
2011-09-16  7:08 [meta-efl][PATCH 0/4] Pull request #12 Martin Jansa
2011-09-16  7:08 ` [meta-efl][PATCH 1/4] enjoy: Add var LIC_FILES_CHKSUM to recipe 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.