All of lore.kernel.org
 help / color / mirror / Atom feed
* aurora: task configure fails with 'configure: error: Package requirements (QtCoreE >= 4.7.0 …'
@ 2011-06-25 12:27 Paul Menzel
  2011-06-25 13:11 ` Simon Busch
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Menzel @ 2011-06-25 12:27 UTC (permalink / raw)
  To: openembedded-devel

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

Dear Aurora/OE folks,


using `minimal` for `MACHINE = "beagleboard"` and doing `bitbake -k
aurora-fb-image` task configure of `aurora` fails with the following
error message.

        […]
        checking for FSOFRAMEWORK... yes
          Qt base directory explicitly set to qtopia
        checking for QT... no
        configure: error: Package requirements (QtCoreE >= 4.7.0
                QtGuiE >= 4.7.0
                QtDeclarativeE >= 4.7.0) were not met:
        
        No package 'QtCoreE' found
        No package 'QtGuiE' found
        No package 'QtDeclarativeE' found
        […]

`qt4-embedded-4.7.3-r33.1` is build as a dependency and I do not know
what Qt packages contain the needed dependencies.


Thanks,

Paul

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

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

* Re: aurora: task configure fails with 'configure: error: Package requirements (QtCoreE >= 4.7.0 …'
  2011-06-25 12:27 aurora: task configure fails with 'configure: error: Package requirements (QtCoreE >= 4.7.0 …' Paul Menzel
@ 2011-06-25 13:11 ` Simon Busch
  2011-06-25 15:32   ` [PATCH] aurora: Add `qt4-embedded` to `DEPENDS` Paul Menzel
  0 siblings, 1 reply; 4+ messages in thread
From: Simon Busch @ 2011-06-25 13:11 UTC (permalink / raw)
  To: openembedded-devel

On 25.06.2011 14:27, Paul Menzel wrote:
> using `minimal` for `MACHINE = "beagleboard"` and doing `bitbake -k
> aurora-fb-image` task configure of `aurora` fails with the following
> error message.
>
>          […]
>          checking for FSOFRAMEWORK... yes
>            Qt base directory explicitly set to qtopia
>          checking for QT... no
>          configure: error: Package requirements (QtCoreE>= 4.7.0
>                  QtGuiE>= 4.7.0
>                  QtDeclarativeE>= 4.7.0) were not met:
>
>          No package 'QtCoreE' found
>          No package 'QtGuiE' found
>          No package 'QtDeclarativeE' found
>          […]
>
> `qt4-embedded-4.7.3-r33.1` is build as a dependency and I do not know
> what Qt packages contain the needed dependencies.

You are sure qt4-embedded is already successfully build and installed in 
sysroots? As qt4-embedded is only pulled in with the runtime dependency 
on pyside-embedded but with the latest version of aurora you need 
qt4-embedded as build dependency. This needs to be fixed.

In the aurora/development branch [1] it is already fixed. This branch 
includes a lot of work on the aurora distribution itself but I don't 
have the time to bring it all upstream. After the 0.1 version of aurora 
I want to switch to a meta-aurora and let the classic oe branch die. So 
it's the question if we want to have all this in OE-classic.

regards,
Simon

[1]: 
http://git.freesmartphone.org/?p=openembedded.git;a=shortlog;h=refs/heads/aurora/development





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

* [PATCH] aurora: Add `qt4-embedded` to `DEPENDS`
  2011-06-25 13:11 ` Simon Busch
@ 2011-06-25 15:32   ` Paul Menzel
  2011-06-26  9:20     ` Simon Busch
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Menzel @ 2011-06-25 15:32 UTC (permalink / raw)
  To: openembedded-devel

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

From: Paul Menzel <paulepanter@users.sourceforge.net>
Date: Sat, 25 Jun 2011 16:47:02 +0200

Task configure fails with the following error using `minimal` for `MACHINE = "beagleboard"`.

        checking for FSOFRAMEWORK... yes
          Qt base directory explicitly set to qtopia
        checking for QT... no
        configure: error: Package requirements (QtCoreE >= 4.7.0
                QtGuiE >= 4.7.0
                QtDeclarativeE >= 4.7.0) were not met:
        
        No package 'QtCoreE' found
        No package 'QtGuiE' found
        No package 'QtDeclarativeE' found

Adding `qt4-embedded` to `DEPENDS` fixes this error [1].

[1] http://lists.linuxtogo.org/pipermail/openembedded-devel/2011-June/033590.html

Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
---
> Am Samstag, den 25.06.2011, 15:11 +0200 schrieb Simon Busch:
 
[…]

> You are sure qt4-embedded is already successfully build and installed in 
> sysroots?

I am sorry. It had just gotten until before task setscene. Running
`bitbake -k qt4-embedded` fixed the error.

[…]

> In the aurora/development branch [1] it is already fixed. This branch 
> includes a lot of work on the aurora distribution itself but I don't 
> have the time to bring it all upstream. After the 0.1 version of aurora 
> I want to switch to a meta-aurora and let the classic oe branch die. So 
> it's the question if we want to have all this in OE-classic.

I do not know, but the included recipes should at least build without problems.


Thanks,

Paul
---
 recipes/freesmartphone/aurora_git.bb |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/recipes/freesmartphone/aurora_git.bb b/recipes/freesmartphone/aurora_git.bb
index 78cc33d..083ac00 100644
--- a/recipes/freesmartphone/aurora_git.bb
+++ b/recipes/freesmartphone/aurora_git.bb
@@ -19,6 +19,7 @@ DEPENDS = " \
   python \
   libfsobasics \
   libfso-glib \
+  qt4-embedded \
 "
 
 RDEPENDS_${PN} = "\
-- 
1.7.5.4

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

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

* Re: [PATCH] aurora: Add `qt4-embedded` to `DEPENDS`
  2011-06-25 15:32   ` [PATCH] aurora: Add `qt4-embedded` to `DEPENDS` Paul Menzel
@ 2011-06-26  9:20     ` Simon Busch
  0 siblings, 0 replies; 4+ messages in thread
From: Simon Busch @ 2011-06-26  9:20 UTC (permalink / raw)
  To: openembedded-devel

On 25.06.2011 17:32, Paul Menzel wrote:
> From: Paul Menzel<paulepanter@users.sourceforge.net>
> Date: Sat, 25 Jun 2011 16:47:02 +0200
>
> Task configure fails with the following error using `minimal` for `MACHINE = "beagleboard"`.
>
>          checking for FSOFRAMEWORK... yes
>            Qt base directory explicitly set to qtopia
>          checking for QT... no
>          configure: error: Package requirements (QtCoreE>= 4.7.0
>                  QtGuiE>= 4.7.0
>                  QtDeclarativeE>= 4.7.0) were not met:
>
>          No package 'QtCoreE' found
>          No package 'QtGuiE' found
>          No package 'QtDeclarativeE' found
>
> Adding `qt4-embedded` to `DEPENDS` fixes this error [1].
>
> [1] http://lists.linuxtogo.org/pipermail/openembedded-devel/2011-June/033590.html
>
> Signed-off-by: Paul Menzel<paulepanter@users.sourceforge.net>

Acked-by: Simon Busch <morphis@gravedo.de>



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

end of thread, other threads:[~2011-06-26  9:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-25 12:27 aurora: task configure fails with 'configure: error: Package requirements (QtCoreE >= 4.7.0 …' Paul Menzel
2011-06-25 13:11 ` Simon Busch
2011-06-25 15:32   ` [PATCH] aurora: Add `qt4-embedded` to `DEPENDS` Paul Menzel
2011-06-26  9:20     ` Simon Busch

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.