All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Peter Kjellerstedt" <peter.kjellerstedt@axis.com>
To: Konrad Weihmann <kweihmann@outlook.com>,
	"openembedded-core@lists.openembedded.org"
	<openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core] [PATCH] create-spdx.bbclass: Search all license directories for licenses
Date: Wed, 15 Sep 2021 12:49:37 +0000	[thread overview]
Message-ID: <2f14ea499bd54a028f6a68d6946ddb8b@axis.com> (raw)
In-Reply-To: <AM9PR09MB464295BE11528525CCF2D962A8DA9@AM9PR09MB4642.eurprd09.prod.outlook.com>

> -----Original Message-----
> From: Konrad Weihmann <kweihmann@outlook.com>
> Sent: den 14 september 2021 20:25
> To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>; openembedded-
> core@lists.openembedded.org
> Subject: Re: [OE-core] [PATCH] create-spdx.bbclass: Search all license
> directories for licenses
> 
> On 14.09.21 20:11, Peter Kjellerstedt wrote:
> > Before, even if the code was seemingly written to search through all
> > licenses in ${COMMON_LICENSE_DIR} and ${LICENSE_PATH}, it would
> > actually bail out after only searching ${COMMON_LICENSE_DIR} due to
> > the exception handling.
> >
> > Also refrain from using f-strings.
> 
> Just out of interest: why that? - I think with the recent bump to python
> 3.6 as the minimum required version, there isn't any technical reason to
> avoid usage of f-strings in the class code

Well, it was mainly due to the discussions we have had about starting 
to use f-strings in OE-Core where RP has been reluctant to endorse it 
based on that it may cause problems when backporting code to Dunfell 
and Hardknott that still have older version of Python as minimum 
versions.

That said, create-spdx.bbclass is not likely to be backported to any 
older version of OE-Core so maybe it is ok to leave the use of 
f-strings as they were.

//Peter

> > Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> > ---
> >   meta/classes/create-spdx.bbclass | 13 ++++++++-----
> >   1 file changed, 8 insertions(+), 5 deletions(-)
> >
> > diff --git a/meta/classes/create-spdx.bbclass b/meta/classes/create-spdx.bbclass
> > index db85677d4c..3c73c21c04 100644
> > --- a/meta/classes/create-spdx.bbclass
> > +++ b/meta/classes/create-spdx.bbclass
> > @@ -67,6 +67,7 @@ def convert_license_to_spdx(lic, document, d, existing={}):
> >           extracted_info = oe.spdx.SPDXExtractedLicensingInfo()
> >           extracted_info.name = name
> >           extracted_info.licenseId = ident
> > +        extracted_info.extractedText = None
> >
> >           if name == "PD":
> >               # Special-case this.
> > @@ -78,10 +79,12 @@ def convert_license_to_spdx(lic, document, d, existing={}):
> >                       with (Path(directory) / name).open(errors="replace") as f:
> >                           extracted_info.extractedText = f.read()
> >                           break
> > -                except Exception as e:
> > -                    # Error out, as the license was in available_licenses so
> > -                    # should be on disk somewhere.
> > -                    bb.error(f"Cannot find text for license {name}: {e}")
> > +                except FileNotFoundError:
> > +                    pass
> > +            if extracted_info.extractedText is None:
> > +                # Error out, as the license was in available_licenses so should
> > +                # be on disk somewhere.
> > +                bb.error("Cannot find text for license %s" % name)
> >           else:
> >               # If it's not SPDX, or PD, or in available licenses, then NO_GENERIC_LICENSE must be set
> >               filename = d.getVarFlag('NO_GENERIC_LICENSE', name)
> > @@ -90,7 +93,7 @@ def convert_license_to_spdx(lic, document, d, existing={}):
> >                   with open(filename, errors="replace") as f:
> >                       extracted_info.extractedText = f.read()
> >               else:
> > -                bb.error(f"Cannot find any text for license {name}")
> > +                bb.error("Cannot find any text for license %s" % name)
> >
> >           extracted[name] = extracted_info
> >           document.hasExtractedLicensingInfos.append(extracted_info)


  reply	other threads:[~2021-09-15 12:49 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-14 18:11 [PATCH] create-spdx.bbclass: Search all license directories for licenses Peter Kjellerstedt
2021-09-14 18:24 ` [OE-core] " Konrad Weihmann
2021-09-15 12:49   ` Peter Kjellerstedt [this message]
2021-09-15 18:45 ` Joshua Watt

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=2f14ea499bd54a028f6a68d6946ddb8b@axis.com \
    --to=peter.kjellerstedt@axis.com \
    --cc=kweihmann@outlook.com \
    --cc=openembedded-core@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.