All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-qt3][PATCH 0/2] Package group fixes for meta-qt3
@ 2012-09-04 16:49 Paul Eggleton
  2012-09-04 16:49 ` [meta-qt3][PATCH 1/2] task-core-qt3: rename to packagegroup-core-qt3 and tidy up Paul Eggleton
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Paul Eggleton @ 2012-09-04 16:49 UTC (permalink / raw)
  To: yocto

The following changes since commit f8475d5c5935695d4d1dfff1d7be30f49e162094:

  qt-x11-free: fix build failure in do_configure (2012-04-03 15:28:39 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib paule/metaqt3-packagegroup-fixes
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=paule/metaqt3-packagegroup-fixes

Paul Eggleton (2):
  task-core-qt3: rename to packagegroup-core-qt3 and tidy up
  core-image-lsb-qt3: fix for apps-console-core removal

 recipes-qt3/images/core-image-lsb-qt3.bb           |    8 +++----
 recipes-qt3/packagegroups/packagegroup-core-qt3.bb |   16 ++++++++++++++
 recipes-qt3/tasks/task-core-qt3.bb                 |   22 --------------------
 3 files changed, 20 insertions(+), 26 deletions(-)
 create mode 100644 recipes-qt3/packagegroups/packagegroup-core-qt3.bb
 delete mode 100644 recipes-qt3/tasks/task-core-qt3.bb

-- 
1.7.9.5



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

* [meta-qt3][PATCH 1/2] task-core-qt3: rename to packagegroup-core-qt3 and tidy up
  2012-09-04 16:49 [meta-qt3][PATCH 0/2] Package group fixes for meta-qt3 Paul Eggleton
@ 2012-09-04 16:49 ` Paul Eggleton
  2012-09-04 16:49 ` [meta-qt3][PATCH 2/2] core-image-lsb-qt3: fix for apps-console-core removal Paul Eggleton
  2012-09-04 21:30 ` [meta-qt3][PATCH 0/2] Package group fixes for meta-qt3 Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2012-09-04 16:49 UTC (permalink / raw)
  To: yocto

Fix and clean up this recipe in line with the package group changes to
OE-Core.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 recipes-qt3/images/core-image-lsb-qt3.bb           |    6 +++---
 recipes-qt3/packagegroups/packagegroup-core-qt3.bb |   16 ++++++++++++++
 recipes-qt3/tasks/task-core-qt3.bb                 |   22 --------------------
 3 files changed, 19 insertions(+), 25 deletions(-)
 create mode 100644 recipes-qt3/packagegroups/packagegroup-core-qt3.bb
 delete mode 100644 recipes-qt3/tasks/task-core-qt3.bb

diff --git a/recipes-qt3/images/core-image-lsb-qt3.bb b/recipes-qt3/images/core-image-lsb-qt3.bb
index 35cd9fb..86bdf21 100644
--- a/recipes-qt3/images/core-image-lsb-qt3.bb
+++ b/recipes-qt3/images/core-image-lsb-qt3.bb
@@ -2,9 +2,9 @@ IMAGE_FEATURES += "apps-console-core ssh-server-openssh"
 
 IMAGE_INSTALL = "\
     ${CORE_IMAGE_BASE_INSTALL} \
-    task-core-basic \
-    task-core-lsb \
-    task-core-qt-mt3 \
+    packagegroup-core-basic \
+    packagegroup-core-lsb \
+    packagegroup-core-qt3-libs \
     "
 
 inherit core-image
diff --git a/recipes-qt3/packagegroups/packagegroup-core-qt3.bb b/recipes-qt3/packagegroups/packagegroup-core-qt3.bb
new file mode 100644
index 0000000..89c29c0
--- /dev/null
+++ b/recipes-qt3/packagegroups/packagegroup-core-qt3.bb
@@ -0,0 +1,16 @@
+#
+# Copyright (C) 2011 Wind River
+#
+
+SUMMARY = "Qt version 3"
+PR = "r1"
+LICENSE = "MIT"
+
+inherit packagegroup
+
+PACKAGES = "${PN}-libs"
+
+RDEPENDS_${PN}-libs = "\
+    libqt-mt3 \
+"
+
diff --git a/recipes-qt3/tasks/task-core-qt3.bb b/recipes-qt3/tasks/task-core-qt3.bb
deleted file mode 100644
index fa41fb5..0000000
--- a/recipes-qt3/tasks/task-core-qt3.bb
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# Copyright (C) 2011 Wind River
-#
-
-DESCRIPTION = "Create qt3 Tasks"
-PR = "r1"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
-                    file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
-
-PACKAGES = "\
-    task-core-qt-mt3 \
-"
-
-
-ALLOW_EMPTY = "1"
-
-
-RDEPENDS_task-core-qt-mt3 = "\
-    libqt-mt3 \
-"
-
-- 
1.7.9.5



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

* [meta-qt3][PATCH 2/2] core-image-lsb-qt3: fix for apps-console-core removal
  2012-09-04 16:49 [meta-qt3][PATCH 0/2] Package group fixes for meta-qt3 Paul Eggleton
  2012-09-04 16:49 ` [meta-qt3][PATCH 1/2] task-core-qt3: rename to packagegroup-core-qt3 and tidy up Paul Eggleton
@ 2012-09-04 16:49 ` Paul Eggleton
  2012-09-04 21:30 ` [meta-qt3][PATCH 0/2] Package group fixes for meta-qt3 Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2012-09-04 16:49 UTC (permalink / raw)
  To: yocto

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 recipes-qt3/images/core-image-lsb-qt3.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-qt3/images/core-image-lsb-qt3.bb b/recipes-qt3/images/core-image-lsb-qt3.bb
index 86bdf21..8aab5ae 100644
--- a/recipes-qt3/images/core-image-lsb-qt3.bb
+++ b/recipes-qt3/images/core-image-lsb-qt3.bb
@@ -1,4 +1,4 @@
-IMAGE_FEATURES += "apps-console-core ssh-server-openssh"
+IMAGE_FEATURES += "splash ssh-server-openssh"
 
 IMAGE_INSTALL = "\
     ${CORE_IMAGE_BASE_INSTALL} \
-- 
1.7.9.5



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

* Re: [meta-qt3][PATCH 0/2] Package group fixes for meta-qt3
  2012-09-04 16:49 [meta-qt3][PATCH 0/2] Package group fixes for meta-qt3 Paul Eggleton
  2012-09-04 16:49 ` [meta-qt3][PATCH 1/2] task-core-qt3: rename to packagegroup-core-qt3 and tidy up Paul Eggleton
  2012-09-04 16:49 ` [meta-qt3][PATCH 2/2] core-image-lsb-qt3: fix for apps-console-core removal Paul Eggleton
@ 2012-09-04 21:30 ` Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-09-04 21:30 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: yocto

On 09/04/2012 09:49 AM, Paul Eggleton wrote:
> The following changes since commit f8475d5c5935695d4d1dfff1d7be30f49e162094:
>
>    qt-x11-free: fix build failure in do_configure (2012-04-03 15:28:39 +0100)
>
> are available in the git repository at:
>
>    git://git.yoctoproject.org/poky-contrib paule/metaqt3-packagegroup-fixes
>    http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=paule/metaqt3-packagegroup-fixes
>
> Paul Eggleton (2):
>    task-core-qt3: rename to packagegroup-core-qt3 and tidy up
>    core-image-lsb-qt3: fix for apps-console-core removal
>
>   recipes-qt3/images/core-image-lsb-qt3.bb           |    8 +++----
>   recipes-qt3/packagegroups/packagegroup-core-qt3.bb |   16 ++++++++++++++
>   recipes-qt3/tasks/task-core-qt3.bb                 |   22 --------------------
>   3 files changed, 20 insertions(+), 26 deletions(-)
>   create mode 100644 recipes-qt3/packagegroups/packagegroup-core-qt3.bb
>   delete mode 100644 recipes-qt3/tasks/task-core-qt3.bb
>
Merged into Meta-qt3

Thanks
	Sau!



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

end of thread, other threads:[~2012-09-04 21:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-04 16:49 [meta-qt3][PATCH 0/2] Package group fixes for meta-qt3 Paul Eggleton
2012-09-04 16:49 ` [meta-qt3][PATCH 1/2] task-core-qt3: rename to packagegroup-core-qt3 and tidy up Paul Eggleton
2012-09-04 16:49 ` [meta-qt3][PATCH 2/2] core-image-lsb-qt3: fix for apps-console-core removal Paul Eggleton
2012-09-04 21:30 ` [meta-qt3][PATCH 0/2] Package group fixes for meta-qt3 Saul Wold

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.