From: Denys Dmytriyenko <denys@ti.com>
To: "Cooper Jr., Franklin" <fcooper@ti.com>
Cc: "meta-arago@arago-project.org" <meta-arago@arago-project.org>
Subject: Re: [PATCH 3/7] packagegroup-arago-tisdk-qt: Make packagegroup generic
Date: Mon, 25 Nov 2013 11:43:53 -0500 [thread overview]
Message-ID: <20131125164353.GK690@edge> (raw)
In-Reply-To: <8F29D6B095ED194EA1980491A5E029710C5C288B@DFLE08.ent.ti.com>
On Mon, Nov 25, 2013 at 11:35:54AM -0500, Cooper Jr., Franklin wrote:
>
>
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Monday, November 25, 2013 10:22 AM
> > To: Cooper Jr., Franklin
> > Cc: meta-arago@arago-project.org
> > Subject: Re: [meta-arago] [PATCH 3/7] packagegroup-arago-tisdk-qt: Make
> > packagegroup generic
> >
> > On Mon, Nov 25, 2013 at 10:53:58AM -0600, Franklin S. Cooper Jr wrote:
> > > * Update packagegroup so it applies to Qt 5 users along with Qt 4 users.
> > > * To reflect this change also rename recipe top reflect that its a generic qt
> > > packagegroup.
> > >
> > > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > > ---
> > > .../packagegroups/packagegroup-arago-tisdk-qt.bb | 27
> > ++++++++++++++++++++
> > > .../packagegroups/packagegroup-arago-tisdk-qte.bb | 19 --------------
> > > 2 files changed, 27 insertions(+), 19 deletions(-) create mode
> > > 100644
> > > meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-
> > > qt.bb delete mode 100644
> > > meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-
> > > qte.bb
> > >
> > > diff --git
> > > a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisd
> > > k-qt.bb
> > > b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisd
> > > k-qt.bb
> > > new file mode 100644
> > > index 0000000..c981f9e
> > > --- /dev/null
> > > +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-
> > > +++ tisdk-qt.bb
> > > @@ -0,0 +1,27 @@
> > > +DESCRIPTION = "Task to add Qt embedded related packages"
> > > +LICENSE = "MIT"
> > > +PR = "r0"
> > > +
> > > +inherit packagegroup
> > > +
> > > +PACKAGE_ARCH = "${MACHINE_ARCH}"
> > > +
> > > +QT4_DEMOS = "\
> > > + qt4-embedded-examples \
> > > + qt4-embedded-demos \
> > > + ${@base_conditional('ARAGO_QT_PROVIDER', 'qt4-embedded-gles',
> > > +'quick-playground', '', d)} \
> >
> > BTW, should we drop ARAGO_QT_PROVIDER?
> [Franklin] Yeah I think we should. But should we drop QT_PROVIDER and use
> ARAGO_QT_PROVIDER instead since this is Arago specific? Or were you planning
> on pushing that up to meta-qt5?
That was my plan and hope...
> No matter what choice we make would you want to make this change before this
> patchset, after this patchset or after my remaining Qt 5 patches that I have
> yet to send?
I have few comments for this patchset and I'm realizing that I want to do
couple of things here differently. So, if you don't mind holding on this set
for a bit longer, let's cleanup and restructure few things before anything
else, Ok?
> > We now have QT_PROVIDER for qt4 vs qt5 (can possibly extend it to cover qt4-
> > gles too) Otherwise, we started using "sgx" in MACHINE_FEATURES to
> > determine whether to enable gles or not.
> [Franklin] We would still need to check for sgx in MACHINE_FEATURES since we
> don't have a concept of qt5-gles.
> So, if we unify on that, we can drop
Yeah, extending and combining QT_PROVIDER to cover qt4, qt4-gles, qt5,
qt5-gles (and hopefully we'll support x11/wayland one day) is probably too
much. So, as I was trying to say, let's drop ARAGO_QT_PROVIDER as a way to
check for gles and unify on MACHINE_FEATURES containing "sgx".
> > ARAGO_QT_PROVIDER to avoid confusion with QT_PROVIDER.
> >
> >
> > > +"
> > > +
> > > +QT5_DEMOS = "\
> > > + qtwebkit-examples-examples \
> > > +"
> > > +
> > > +QT_DEMOS = "\
> > > + ${@base_conditional('QT_PROVIDER', 'qt5', '${QT5_DEMOS}',
> > '${QT4_DEMOS}', d)} \
> > > + qt-tstat \
> > > +"
> > > +
> > > +RDEPENDS_${PN} = "\
> > > + ${@base_conditional('QT_PROVIDER', 'qt5', 'packagegroup-arago-qt5',
> > 'packagegroup-arago-qte', d)} \
> > > + ${QT_DEMOS} \
> > > +"
> > > diff --git
> > > a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisd
> > > k-qte.bb
> > > b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisd
> > > k-qte.bb
> > > deleted file mode 100644
> > > index 10187a6..0000000
> > > ---
> > > a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisd
> > > k-qte.bb
> > > +++ /dev/null
> > > @@ -1,19 +0,0 @@
> > > -DESCRIPTION = "Task to add Qt embedded related packages"
> > > -LICENSE = "MIT"
> > > -PR = "r4"
> > > -
> > > -inherit packagegroup
> > > -
> > > -PACKAGE_ARCH = "${MACHINE_ARCH}"
> > > -
> > > -QT_DEMOS = "\
> > > - qt4-embedded-examples \
> > > - qt4-embedded-demos \
> > > - qt-tstat \
> > > - ${@base_conditional('ARAGO_QT_PROVIDER', 'qt4-embedded-gles',
> > 'quick-playground', '', d)} \
> > > -"
> > > -
> > > -RDEPENDS_${PN} = "\
> > > - packagegroup-arago-qte \
> > > - ${QT_DEMOS} \
> > > -"
> > > --
> > > 1.7.0.4
> > >
> > > _______________________________________________
> > > meta-arago mailing list
> > > meta-arago@arago-project.org
> > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
next prev parent reply other threads:[~2013-11-25 16:43 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-25 16:53 [PATCH 1/7] qtbase: Fix runtime issues Franklin S. Cooper Jr
2013-11-25 16:53 ` [PATCH 2/7] packagegroup-arago-qt5: Create Qt5 target package group Franklin S. Cooper Jr
2013-11-25 16:19 ` Denys Dmytriyenko
2013-11-25 16:32 ` Denys Dmytriyenko
2013-11-25 16:39 ` Cooper Jr., Franklin
2013-11-25 16:53 ` [PATCH 3/7] packagegroup-arago-tisdk-qt: Make packagegroup generic Franklin S. Cooper Jr
2013-11-25 16:22 ` Denys Dmytriyenko
2013-11-25 16:35 ` Cooper Jr., Franklin
2013-11-25 16:43 ` Denys Dmytriyenko [this message]
2013-11-25 16:47 ` Cooper Jr., Franklin
2013-11-25 16:53 ` [PATCH 4/7] packagegroup-arago-tisdk-qt-sdk-host: " Franklin S. Cooper Jr
2013-11-25 16:54 ` [PATCH 5/7] packagegroup-arago-qt5-toolchain-target: Only include qt3D when using SGX Franklin S. Cooper Jr
2013-11-25 16:54 ` [PATCH 6/7] packagegroup-arago-toolchain-tisdk-target: Select packagegroup depending on Qt Franklin S. Cooper Jr
2013-11-25 16:54 ` [PATCH 7/7] images: Update images to reflect packagegroup renaming Franklin S. Cooper Jr
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=20131125164353.GK690@edge \
--to=denys@ti.com \
--cc=fcooper@ti.com \
--cc=meta-arago@arago-project.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.