From: Samuli Piippo <samuli.piippo@theqtcompany.com>
To: <openembedded-devel@lists.openembedded.org>
Subject: [meta-qt5][PATCH 00/11] upstreaming Qt for Device Creation changes
Date: Mon, 24 Aug 2015 12:13:19 +0300 [thread overview]
Message-ID: <cover.1440407387.git.samuli.piippo@theqtcompany.com> (raw)
As part of Qt for Device Creation [1], we are starting to use meta-qt5 layer
when creating images for our supported devices. We have done number of changes
to the layer when intergrating it with our internal layer. We would now like
to upstream those changes.
[1] https://www.qt.io/qt-for-device-creation
The following changes since commit d2c05c81e8230358dca80cf9df67e49f9f672a29:
libconnman-qt5: update to 1.0.91 (2015-07-31 16:23:35 +0200)
are available in the git repository at:
git://github.com/sapiippo/meta-qt5 master
https://github.com/sapiippo/meta-qt5/tree/master
Samuli Piippo (11):
qt5: make populate_sdk_qt5 reusable
qt5: improve Qt module package handling
qt5: improve support for native and nativesdk modules
qt5: add host paths to qt.conf
qt5: disable debian auto renaming
qt5: make qt5.inc reusable qt5-module.bbclass
qttools: use one recipe for all compilations
qtbase: remove dependency to sqlite
qtbase: PACKAGECONFIGs for libproxy and libinput
qtlocation: use correct dependencies
qtwebengine: fix problem with recursive qmake call
classes/populate_sdk_qt5.bbclass | 11 +---
classes/qmake5.bbclass | 8 +++
classes/qmake5_base.bbclass | 11 ++++
.../qt5/qt5.inc => classes/qt5-module.bbclass | 38 +++++++++++-
recipes-qt/examples/cinematicexperience_1.0.bb | 2 +-
recipes-qt/examples/qt5everywheredemo_1.0.bb | 2 +-
recipes-qt/examples/qt5nmapcarousedemo_1.0.bb | 2 +-
recipes-qt/examples/qt5nmapper_1.0.bb | 2 +-
recipes-qt/examples/qtsmarthome_1.0.bb | 2 +-
recipes-qt/examples/quitbattery_1.0.0.bb | 2 +-
recipes-qt/examples/quitindicators_1.0.1.bb | 2 +-
recipes-qt/libconnman-qt/libconnman-qt5_git.bb | 2 +-
recipes-qt/meta/meta-toolchain-qt5.bb | 4 ++
recipes-qt/qt5/nativesdk-qttools_git.bb | 45 --------------
recipes-qt/qt5/qt3d_git.bb | 2 +-
recipes-qt/qt5/qtbase_git.bb | 6 +-
recipes-qt/qt5/qtconnectivity_git.bb | 2 +-
recipes-qt/qt5/qtdeclarative_git.bb | 4 +-
recipes-qt/qt5/qtenginio_git.bb | 2 +-
recipes-qt/qt5/qtgraphicaleffects_git.bb | 2 +-
recipes-qt/qt5/qtimageformats_git.bb | 2 +-
recipes-qt/qt5/qtlocation_git.bb | 5 +-
recipes-qt/qt5/qtmultimedia_git.bb | 2 +-
recipes-qt/qt5/qtquick1_git.bb | 2 +-
recipes-qt/qt5/qtquickcontrols_git.bb | 2 +-
recipes-qt/qt5/qtscript_git.bb | 2 +-
recipes-qt/qt5/qtsensors_git.bb | 2 +-
recipes-qt/qt5/qtserialport_git.bb | 2 +-
recipes-qt/qt5/qtsvg_git.bb | 2 +-
recipes-qt/qt5/qtsystems_git.bb | 2 +-
recipes-qt/qt5/qttools-native_git.bb | 26 --------
recipes-qt/qt5/qttools_git.bb | 11 +++-
recipes-qt/qt5/qttranslations_git.bb | 2 +-
recipes-qt/qt5/qtwayland_git.bb | 2 +-
recipes-qt/qt5/qtwebchannel_git.bb | 2 +-
.../0005-Generate-usable-qmake_extras.gypi.patch | 71 ++++++++++++++++++++++
recipes-qt/qt5/qtwebengine_git.bb | 3 +-
recipes-qt/qt5/qtwebkit-examples_git.bb | 2 +-
recipes-qt/qt5/qtwebkit_git.bb | 2 +-
recipes-qt/qt5/qtwebsockets_git.bb | 2 +-
recipes-qt/qt5/qtx11extras_git.bb | 2 +-
recipes-qt/qt5/qtxmlpatterns_git.bb | 4 +-
42 files changed, 183 insertions(+), 120 deletions(-)
rename recipes-qt/qt5/qt5.inc => classes/qt5-module.bbclass (86%)
delete mode 100644 recipes-qt/qt5/nativesdk-qttools_git.bb
delete mode 100644 recipes-qt/qt5/qttools-native_git.bb
create mode 100644 recipes-qt/qt5/qtwebengine/0005-Generate-usable-qmake_extras.gypi.patch
--
1.9.1
next reply other threads:[~2015-08-24 9:29 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-24 9:13 Samuli Piippo [this message]
2015-08-24 9:13 ` [meta-qt5][PATCH 01/11] qt5: make populate_sdk_qt5 reusable Samuli Piippo
2015-08-24 9:13 ` [meta-qt5][PATCH 02/11] qt5: improve Qt module package handling Samuli Piippo
2015-08-24 9:13 ` [meta-qt5][PATCH 03/11] qt5: improve support for native and nativesdk modules Samuli Piippo
2015-08-24 9:13 ` [meta-qt5][PATCH 04/11] qt5: add host paths to qt.conf Samuli Piippo
2015-08-24 9:13 ` [meta-qt5][PATCH 05/11] qt5: disable debian auto renaming Samuli Piippo
2015-08-24 9:13 ` [meta-qt5][PATCH 06/11] qt5: make qt5.inc reusable qt5-module.bbclass Samuli Piippo
2015-08-24 12:45 ` Martin Jansa
2015-08-25 7:20 ` Samuli Piippo
2015-10-14 12:47 ` Samuli Piippo
2015-10-14 12:50 ` Samuli Piippo
2015-08-24 9:13 ` [meta-qt5][PATCH 07/11] qttools: use one recipe for all compilations Samuli Piippo
2015-08-24 12:46 ` Martin Jansa
2015-08-24 9:13 ` [meta-qt5][PATCH 08/11] qtbase: remove dependency to sqlite Samuli Piippo
2015-08-24 9:13 ` [meta-qt5][PATCH 09/11] qtbase: PACKAGECONFIGs for libproxy and libinput Samuli Piippo
2015-08-24 9:13 ` [meta-qt5][PATCH 10/11] qtlocation: use correct dependencies Samuli Piippo
2015-08-24 9:13 ` [meta-qt5][PATCH 11/11] qtwebengine: fix problem with recursive qmake call Samuli Piippo
2015-08-24 12:42 ` [meta-qt5][PATCH 00/11] upstreaming Qt for Device Creation changes Martin Jansa
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1440407387.git.samuli.piippo@theqtcompany.com \
--to=samuli.piippo@theqtcompany.com \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.