All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] enjoy: Fix commit 1265ac and append to `DEPENDS`.
@ 2010-12-06 13:42 Paul Menzel
  2010-12-06 13:49 ` [PATCH 2/2] enjoy: add `elementary` " Paul Menzel
  2010-12-06 16:36 ` [PATCH 1/2] enjoy: Fix commit 1265ac and append " Klaus Kurzmann
  0 siblings, 2 replies; 3+ messages in thread
From: Paul Menzel @ 2010-12-06 13:42 UTC (permalink / raw)
  To: openembedded-devel

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

Date: Mon, 6 Dec 2010 14:11:30 +0100

With commit 1265ac »enjoy_svn.bb: add missing DEPENDS for the needed gst-plugins« [1] previous `DEPENDS` assignment was discarded and task `configure` failed with the following error.

        checking pkg-config is at least version 0.9.0... yes
        checking for EDBUS... configure: error: Package requirements (edbus) were not met:

        No package 'edbus' found

        Consider adjusting the PKG_CONFIG_PATH environment variable if you
        installed software in a non-standard prefix.

        Alternatively, you may set the environment variables EDBUS_CFLAGS
        and EDBUS_LIBS to avoid the need to call pkg-config.
        See the pkg-config man page for more details.

        ERROR: Function do_configure failed

This patch fixes the error above and is tested using the following configurations.

        Build Configuration:
        BB_VERSION        = "1.10.0"
        METADATA_BRANCH   = "org.openembedded.dev"
        METADATA_REVISION = "2bd4f33"
        TARGET_ARCH       = "arm"
        TARGET_OS         = "linux-gnueabi"
        MACHINE           = "beagleboard"
        DISTRO            = "angstrom"
        DISTRO_VERSION    = "next"
        TARGET_FPU        = "hard"

        Build Configuration:
        BB_VERSION        = "1.10.0"
        METADATA_BRANCH   = "org.openembedded.dev"
        METADATA_REVISION = "fa3f861"
        TARGET_ARCH       = "arm"
        TARGET_OS         = "linux-gnueabi"
        MACHINE           = "beagleboard"
        DISTRO            = "minimal"
        DISTRO_VERSION    = "dev-snapshot-20101206"
        TARGET_FPU        = "hard"

[1] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=1265ac068aa9f5bf0d8fee2cfbf8a1492cabe5a3

Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
---
 recipes/e17/enjoy_svn.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/e17/enjoy_svn.bb b/recipes/e17/enjoy_svn.bb
index bd1c659..20c9c63 100644
--- a/recipes/e17/enjoy_svn.bb
+++ b/recipes/e17/enjoy_svn.bb
@@ -3,9 +3,9 @@ LICENSE = "LGPLv3"
 DEPENDS = "evas ecore edje emotion lightmediascanner"
 SRCREV = "${EFL_SRCREV}"
 PV = "0.0+svnr${SRCPV}"
-PR = "r2"
+PR = "r3"
 
-DEPENDS = "gst-plugins-good ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugins-ugly', d)}"
+DEPENDS += "gst-plugins-good ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugins-ugly', d)}"
 
 #1st needed for all formats
 #2nd needed for mp3 playback
-- 
1.7.2.3

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

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

* [PATCH 2/2] enjoy: add `elementary` to `DEPENDS`
  2010-12-06 13:42 [PATCH 1/2] enjoy: Fix commit 1265ac and append to `DEPENDS` Paul Menzel
@ 2010-12-06 13:49 ` Paul Menzel
  2010-12-06 16:36 ` [PATCH 1/2] enjoy: Fix commit 1265ac and append " Klaus Kurzmann
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Menzel @ 2010-12-06 13:49 UTC (permalink / raw)
  To: openembedded-devel

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

Date: Mon, 6 Dec 2010 14:22:16 +0100

Task `configure` fails with the following error message.

	| checking pkg-config is at least version 0.9.0... yes
	| checking for EDBUS... yes
	| checking for ELEMENTARY... configure: error: Package requirements (elementary ecore-file) were not met:
	|
	| No package 'elementary' found
	|
	| Consider adjusting the PKG_CONFIG_PATH environment variable if you
	| installed software in a non-standard prefix.
	|
	| Alternatively, you may set the environment variables ELEMENTARY_CFLAGS
	| and ELEMENTARY_LIBS to avoid the need to call pkg-config.
	| See the pkg-config man page for more details.
	|
	| ERROR: Function do_configure failed
	NOTE: package enjoy-0.0+svnr55157-r2: task do_configure: Failed
	ERROR: TaskFailed event exception, aborting
	ERROR: Build of /oe/openembedded/recipes/e17/enjoy_svn.bb do_configure failed
	ERROR: Task 12 (/oe/openembedded/recipes/e17/enjoy_svn.bb, do_configure) failed with 256
	ERROR: '/oe/openembedded/recipes/e17/enjoy_svn.bb' failed
	ERROR: '/oe/openembedded/recipes/e17/enjoy_svn.bb' failed
	ERROR: '/oe/openembedded/recipes/e17/enjoy_svn.bb' failed

Adding `elementary` to `DEPENDS` fixes this problem and is tested with the following configurations.

        Build Configuration:
        BB_VERSION        = "1.10.0"
        METADATA_BRANCH   = "org.openembedded.dev"
        METADATA_REVISION = "2bd4f33"
        TARGET_ARCH       = "arm"
        TARGET_OS         = "linux-gnueabi"
        MACHINE           = "beagleboard"
        DISTRO            = "angstrom"
        DISTRO_VERSION    = "next"
        TARGET_FPU        = "hard"

        Build Configuration:
        BB_VERSION        = "1.10.0"
        METADATA_BRANCH   = "org.openembedded.dev"
        METADATA_REVISION = "fa3f861"
        TARGET_ARCH       = "arm"
        TARGET_OS         = "linux-gnueabi"
        MACHINE           = "beagleboard"
        DISTRO            = "minimal"
        DISTRO_VERSION    = "dev-snapshot-20101206"
        TARGET_FPU        = "hard"

Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
---
 recipes/e17/enjoy_svn.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/e17/enjoy_svn.bb b/recipes/e17/enjoy_svn.bb
index 20c9c63..3288338 100644
--- a/recipes/e17/enjoy_svn.bb
+++ b/recipes/e17/enjoy_svn.bb
@@ -1,9 +1,9 @@
 DESCRIPTION = "Enjoy music player"
 LICENSE = "LGPLv3"
-DEPENDS = "evas ecore edje emotion lightmediascanner"
+DEPENDS = "evas ecore edje elementary emotion lightmediascanner"
 SRCREV = "${EFL_SRCREV}"
 PV = "0.0+svnr${SRCPV}"
-PR = "r3"
+PR = "r4"
 
 DEPENDS += "gst-plugins-good ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugins-ugly', d)}"
 
-- 
1.7.2.3

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

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

* Re: [PATCH 1/2] enjoy: Fix commit 1265ac and append to `DEPENDS`.
  2010-12-06 13:42 [PATCH 1/2] enjoy: Fix commit 1265ac and append to `DEPENDS` Paul Menzel
  2010-12-06 13:49 ` [PATCH 2/2] enjoy: add `elementary` " Paul Menzel
@ 2010-12-06 16:36 ` Klaus Kurzmann
  1 sibling, 0 replies; 3+ messages in thread
From: Klaus Kurzmann @ 2010-12-06 16:36 UTC (permalink / raw)
  To: openembedded-devel

Am Montag, 6. Dezember 2010, 14:42:25 schrieb Paul Menzel:
> Date: Mon, 6 Dec 2010 14:11:30 +0100
> 
> With commit 1265ac »enjoy_svn.bb: add missing DEPENDS for the needed
> gst-plugins« [1] previous `DEPENDS` assignment was discarded and task
> `configure` failed with the following error.
> 
>         checking pkg-config is at least version 0.9.0... yes
>         checking for EDBUS... configure: error: Package requirements
> (edbus) were not met:
> 
>         No package 'edbus' found
> 
>         Consider adjusting the PKG_CONFIG_PATH environment variable if you
>         installed software in a non-standard prefix.
> 
>         Alternatively, you may set the environment variables EDBUS_CFLAGS
>         and EDBUS_LIBS to avoid the need to call pkg-config.
>         See the pkg-config man page for more details.
> 
>         ERROR: Function do_configure failed
> 
> This patch fixes the error above and is tested using the following
> configurations.
> 
>         Build Configuration:
>         BB_VERSION        = "1.10.0"
>         METADATA_BRANCH   = "org.openembedded.dev"
>         METADATA_REVISION = "2bd4f33"
>         TARGET_ARCH       = "arm"
>         TARGET_OS         = "linux-gnueabi"
>         MACHINE           = "beagleboard"
>         DISTRO            = "angstrom"
>         DISTRO_VERSION    = "next"
>         TARGET_FPU        = "hard"
> 
>         Build Configuration:
>         BB_VERSION        = "1.10.0"
>         METADATA_BRANCH   = "org.openembedded.dev"
>         METADATA_REVISION = "fa3f861"
>         TARGET_ARCH       = "arm"
>         TARGET_OS         = "linux-gnueabi"
>         MACHINE           = "beagleboard"
>         DISTRO            = "minimal"
>         DISTRO_VERSION    = "dev-snapshot-20101206"
>         TARGET_FPU        = "hard"
> 
> [1]
> http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=1265ac068aa9
> f5bf0d8fee2cfbf8a1492cabe5a3
> 
> Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
> ---
>  recipes/e17/enjoy_svn.bb |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes/e17/enjoy_svn.bb b/recipes/e17/enjoy_svn.bb
> index bd1c659..20c9c63 100644
> --- a/recipes/e17/enjoy_svn.bb
> +++ b/recipes/e17/enjoy_svn.bb
> @@ -3,9 +3,9 @@ LICENSE = "LGPLv3"
>  DEPENDS = "evas ecore edje emotion lightmediascanner"
>  SRCREV = "${EFL_SRCREV}"
>  PV = "0.0+svnr${SRCPV}"
> -PR = "r2"
> +PR = "r3"
> 
> -DEPENDS = "gst-plugins-good ${@base_conditional('ENTERPRISE_DISTRO', '1',
> '', 'gst-plugins-ugly', d)}" +DEPENDS += "gst-plugins-good
> ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugins-ugly', d)}"
> 
>  #1st needed for all formats
>  #2nd needed for mp3 playback

Duhh. I'm a blind man :/ Thanks for fixing :-)

-- 
Klaus 'mrmoku' Kurzmann



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

end of thread, other threads:[~2010-12-06 16:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-06 13:42 [PATCH 1/2] enjoy: Fix commit 1265ac and append to `DEPENDS` Paul Menzel
2010-12-06 13:49 ` [PATCH 2/2] enjoy: add `elementary` " Paul Menzel
2010-12-06 16:36 ` [PATCH 1/2] enjoy: Fix commit 1265ac and append " Klaus Kurzmann

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.