All of lore.kernel.org
 help / color / mirror / Atom feed
From: Denys Dmytriyenko <denys@ti.com>
To: "Maupin, Chase" <chase.maupin@ti.com>
Cc: "meta-arago@arago-project.org" <meta-arago@arago-project.org>
Subject: Re: [PATCH] qt4-embedded-gles: skip package when sgx is not set in MACHINE_FEATURES
Date: Thu, 27 Mar 2014 11:36:25 -0400	[thread overview]
Message-ID: <20140327153625.GE12929@edge> (raw)
In-Reply-To: <7D46E86EC0A8354091174257B2FED1015CF5BE1B@DLEE11.ent.ti.com>

On Thu, Mar 27, 2014 at 02:55:05PM +0000, Maupin, Chase wrote:
> >-----Original Message-----
> >From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> >bounces@arago-project.org] On Behalf Of Denys Dmytriyenko
> >Sent: Wednesday, March 26, 2014 2:57 PM
> >To: meta-arago@arago-project.org
> >Subject: [meta-arago] [PATCH] qt4-embedded-gles: skip package when
> >sgx is not set in MACHINE_FEATURES
> >
> >From: Denys Dmytriyenko <denys@ti.com>
> >
> >qt4-embedded-gles depends on virtual/egl and libgles-omap3, but
> >the latter has
> >strict COMPATIBLE_MACHINE setting. Latest versions of BitBake
> >report these
> >missing dependencies as error during parsing, but treat as non-
> >critical error
> >and proceeds with the build. Unfortunately, the return code is
> >non-zero, even
> >though there were 0 build errors. One way to resolve this is to
> >set similar
> >COMPATIBLE_MACHINE list for qt4-embedded-gles recipe, or check for
> >"sgx" flag
> >in MACHINE_FEATURES.
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > .../recipes-qt/qt4/qt4-embedded-gles_4.8.5.bbappend         | 13
> >++++++++++++-
> > 1 file changed, 12 insertions(+), 1 deletion(-)
> >
> >diff --git a/meta-arago-distro/recipes-qt/qt4/qt4-embedded-
> >gles_4.8.5.bbappend b/meta-arago-distro/recipes-qt/qt4/qt4-
> >embedded-gles_4.8.5.bbappend
> >index f9e5810..e7a1dad 100644
> >--- a/meta-arago-distro/recipes-qt/qt4/qt4-embedded-
> >gles_4.8.5.bbappend
> >+++ b/meta-arago-distro/recipes-qt/qt4/qt4-embedded-
> >gles_4.8.5.bbappend
> >@@ -1,3 +1,14 @@
> > require arago-qt4.inc
> >
> >-PR := "${PR}.0"
> >+PR := "${PR}.1"
> >+
> >+# Some deps are missing when sgx is not set, skip this package
> >+python __anonymous() {
> >+    features = bb.data.getVar("MACHINE_FEATURES", d, 1)
> >+    if not features:
> >+        return
> >+    pkgn = bb.data.getVar("PN", d, 1)
> >+    pkgv = bb.data.getVar("PV", d, 1)
> 
> I like the solution, but what are pkgn and pkgv for?  Were you planning on 
> using these in the message below?

Indeed, those are leftovers from the versioned output. Don't need those now, I 
will remove them.


> >+    if "sgx" not in features:
> >+        raise bb.parse.SkipPackage('qt4-embedded-gles needs
> >dependencies derived from "sgx" in MACHINE_FEATURES')
> >+}
> >--
> >1.8.3.2
> >
> >_______________________________________________
> >meta-arago mailing list
> >meta-arago@arago-project.org
> >http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


      reply	other threads:[~2014-03-27 15:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-26 19:56 [PATCH] qt4-embedded-gles: skip package when sgx is not set in MACHINE_FEATURES Denys Dmytriyenko
2014-03-27 14:55 ` Maupin, Chase
2014-03-27 15:36   ` Denys Dmytriyenko [this message]

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=20140327153625.GE12929@edge \
    --to=denys@ti.com \
    --cc=chase.maupin@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.