All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-qt5][PATCH 0/5] Qt5 SDK integration
@ 2014-02-11 17:56 Otavio Salvador
  2014-02-11 17:56 ` [meta-qt5][PATCH 1/5] README: Reword the section about github forking Otavio Salvador
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Otavio Salvador @ 2014-02-11 17:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Otavio Salvador

Hello,

This patchset integrates the current nativesdk recipes into the
OE-Core toolchain generation logic. It includes many contributions and
reworks suggested by Denys and the final patchset seems quite good.

For every image, using Qt5, to add support for the 'populate_sdk'
command to proper generate a working toolchain, just need to 'inherit
populate_sdk_qt5'; for convinience, Denys also sent a
meta-toolchain-qt5 recipe so it works as qt4.

Denys Dmytriyenko (1):
  meta-toolchain-qt5: add Qt5 SDK standalone meta recipe

Otavio Salvador (4):
  README: Reword the section about github forking
  nativesdk-packagegroup-qt5-toolchain-host: Add packagegroup
  packagegroup-qt5-toolchain-target: Add packagegroup
  populate_sdk_qt5.bbclass: Allow generation of toolchain

 README                                             |    9 +++-
 classes/populate_sdk_qt5.bbclass                   |   54 ++++++++++++++++++++
 recipes-qt/meta/meta-toolchain-qt5.bb              |    7 +++
 .../nativesdk-packagegroup-qt5-toolchain-host.bb   |   14 +++++
 .../packagegroup-qt5-toolchain-target.bb           |   40 +++++++++++++++
 5 files changed, 123 insertions(+), 1 deletion(-)
 create mode 100644 classes/populate_sdk_qt5.bbclass
 create mode 100644 recipes-qt/meta/meta-toolchain-qt5.bb
 create mode 100644 recipes-qt/packagegroups/nativesdk-packagegroup-qt5-toolchain-host.bb
 create mode 100644 recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb

-- 
1.7.10.4



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

* [meta-qt5][PATCH 1/5] README: Reword the section about github forking
  2014-02-11 17:56 [meta-qt5][PATCH 0/5] Qt5 SDK integration Otavio Salvador
@ 2014-02-11 17:56 ` Otavio Salvador
  2014-02-11 17:56 ` [meta-qt5][PATCH 2/5] nativesdk-packagegroup-qt5-toolchain-host: Add packagegroup Otavio Salvador
  2014-02-12 11:10 ` [meta-qt5][PATCH 0/5] Qt5 SDK integration Otavio Salvador
  2 siblings, 0 replies; 4+ messages in thread
From: Otavio Salvador @ 2014-02-11 17:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Otavio Salvador

This splits the lines in 80 cols and rework the text a little bit to
easy reading.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 README |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/README b/README
index a5a5812..06335bb 100644
--- a/README
+++ b/README
@@ -18,7 +18,14 @@ Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-qt5]
 When sending single patches, please using something like:
 'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-qt5][PATCH'
 
-You are encouraged to fork the mirror on github https://github.com/meta-qt5/meta-qt5/ to share your patches, this is preferred for patch sets consisting of more than one patch. Other services like gitorious, repo.or.cz or self hosted setups are of course accepted as well, 'git fetch <remote>' works the same on all of them. We recommend github because it is free, easy to use, has been proven to be reliable and has a really good web GUI.
+You are encouraged to fork the mirror on github[1] to share your
+patches. This is preferred for patch sets consisting of more than one
+patch. Other services like gitorious, repo.or.cz or self hosted setups
+are of course accepted as well, 'git fetch <remote>' works the same on
+all of them. We recommend github because it is free, easy to use, has
+been proven to be reliable and has a really good web GUI.
+
+1. https://github.com/meta-qt5/meta-qt5/
 
 Main layer maintainers:
   Martin 'JaMa' Jansa <martin.jansa@gmail.com>
-- 
1.7.10.4



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

* [meta-qt5][PATCH 2/5] nativesdk-packagegroup-qt5-toolchain-host: Add packagegroup
  2014-02-11 17:56 [meta-qt5][PATCH 0/5] Qt5 SDK integration Otavio Salvador
  2014-02-11 17:56 ` [meta-qt5][PATCH 1/5] README: Reword the section about github forking Otavio Salvador
@ 2014-02-11 17:56 ` Otavio Salvador
  2014-02-12 11:10 ` [meta-qt5][PATCH 0/5] Qt5 SDK integration Otavio Salvador
  2 siblings, 0 replies; 4+ messages in thread
From: Otavio Salvador @ 2014-02-11 17:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Otavio Salvador

Allow easy inclusion of host packages for the Qt5 standalone SDK or
external toolchain.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 .../nativesdk-packagegroup-qt5-toolchain-host.bb         |   14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 recipes-qt/packagegroups/nativesdk-packagegroup-qt5-toolchain-host.bb

diff --git a/recipes-qt/packagegroups/nativesdk-packagegroup-qt5-toolchain-host.bb b/recipes-qt/packagegroups/nativesdk-packagegroup-qt5-toolchain-host.bb
new file mode 100644
index 0000000..4cc0b93
--- /dev/null
+++ b/recipes-qt/packagegroups/nativesdk-packagegroup-qt5-toolchain-host.bb
@@ -0,0 +1,14 @@
+# Copyright (C) 2014 O.S. Systems Software LTDA.
+
+SUMMARY = "Host packages for the Qt5 standalone SDK or external toolchain"
+LICENSE = "MIT"
+
+inherit nativesdk packagegroup
+
+PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1"
+
+RDEPENDS_${PN} += " \
+    nativesdk-packagegroup-sdk-host \
+    nativesdk-qttools \
+    nativesdk-qtbase-tools \
+"
-- 
1.7.10.4



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

* Re: [meta-qt5][PATCH 0/5] Qt5 SDK integration
  2014-02-11 17:56 [meta-qt5][PATCH 0/5] Qt5 SDK integration Otavio Salvador
  2014-02-11 17:56 ` [meta-qt5][PATCH 1/5] README: Reword the section about github forking Otavio Salvador
  2014-02-11 17:56 ` [meta-qt5][PATCH 2/5] nativesdk-packagegroup-qt5-toolchain-host: Add packagegroup Otavio Salvador
@ 2014-02-12 11:10 ` Otavio Salvador
  2 siblings, 0 replies; 4+ messages in thread
From: Otavio Salvador @ 2014-02-12 11:10 UTC (permalink / raw)
  To: OpenEmbedded Devel List; +Cc: Otavio Salvador

On Tue, Feb 11, 2014 at 3:56 PM, Otavio Salvador
<otavio@ossystems.com.br> wrote:
> Hello,
>
> This patchset integrates the current nativesdk recipes into the
> OE-Core toolchain generation logic. It includes many contributions and
> reworks suggested by Denys and the final patchset seems quite good.
>
> For every image, using Qt5, to add support for the 'populate_sdk'
> command to proper generate a working toolchain, just need to 'inherit
> populate_sdk_qt5'; for convinience, Denys also sent a
> meta-toolchain-qt5 recipe so it works as qt4.
>
> Denys Dmytriyenko (1):
>   meta-toolchain-qt5: add Qt5 SDK standalone meta recipe
>
> Otavio Salvador (4):
>   README: Reword the section about github forking
>   nativesdk-packagegroup-qt5-toolchain-host: Add packagegroup
>   packagegroup-qt5-toolchain-target: Add packagegroup
>   populate_sdk_qt5.bbclass: Allow generation of toolchain

Applied to master.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

end of thread, other threads:[~2014-02-12 11:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-11 17:56 [meta-qt5][PATCH 0/5] Qt5 SDK integration Otavio Salvador
2014-02-11 17:56 ` [meta-qt5][PATCH 1/5] README: Reword the section about github forking Otavio Salvador
2014-02-11 17:56 ` [meta-qt5][PATCH 2/5] nativesdk-packagegroup-qt5-toolchain-host: Add packagegroup Otavio Salvador
2014-02-12 11:10 ` [meta-qt5][PATCH 0/5] Qt5 SDK integration Otavio Salvador

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.