All of lore.kernel.org
 help / color / mirror / Atom feed
* [master][kirkstone][PATCH] license_image.bbclass: Make QA errors fail the build
@ 2022-04-21 21:11 Peter Kjellerstedt
  2022-04-28 17:35 ` [OE-core] " Steve Sakoman
  0 siblings, 1 reply; 5+ messages in thread
From: Peter Kjellerstedt @ 2022-04-21 21:11 UTC (permalink / raw)
  To: openembedded-core

If, e.g., license-file-missing is added to ERROR_QA, then the build
should fail if any licenses are missing.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---
 meta/classes/license_image.bbclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/classes/license_image.bbclass b/meta/classes/license_image.bbclass
index 7e1d0e08a9..3213ea758e 100644
--- a/meta/classes/license_image.bbclass
+++ b/meta/classes/license_image.bbclass
@@ -104,6 +104,8 @@ def write_license_files(d, license_manifest, pkg_dic, rootfs=True):
                                        "The license listed %s was not in the "\
                                        "licenses collected for recipe %s"
                                        % (lic, pkg_dic[pkg]["PN"]), d)
+    oe.qa.exit_if_errors(d)
+
     # Two options here:
     # - Just copy the manifest
     # - Copy the manifest and the license directories


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

* Re: [OE-core] [master][kirkstone][PATCH] license_image.bbclass: Make QA errors fail the build
  2022-04-21 21:11 [master][kirkstone][PATCH] license_image.bbclass: Make QA errors fail the build Peter Kjellerstedt
@ 2022-04-28 17:35 ` Steve Sakoman
  2022-04-29  8:10   ` Peter Kjellerstedt
       [not found]   ` <16EA4FAF914EDF73.11702@lists.openembedded.org>
  0 siblings, 2 replies; 5+ messages in thread
From: Steve Sakoman @ 2022-04-28 17:35 UTC (permalink / raw)
  To: Peter Kjellerstedt; +Cc: Patches and discussions about the oe-core layer

I haven't seen this patch hit master or master-next yet.  Were there
issues with it?

Just want to make sure I don't miss anything requested for kirkstone.

Steve

On Thu, Apr 21, 2022 at 11:11 AM Peter Kjellerstedt
<peter.kjellerstedt@axis.com> wrote:
>
> If, e.g., license-file-missing is added to ERROR_QA, then the build
> should fail if any licenses are missing.
>
> Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> ---
>  meta/classes/license_image.bbclass | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/meta/classes/license_image.bbclass b/meta/classes/license_image.bbclass
> index 7e1d0e08a9..3213ea758e 100644
> --- a/meta/classes/license_image.bbclass
> +++ b/meta/classes/license_image.bbclass
> @@ -104,6 +104,8 @@ def write_license_files(d, license_manifest, pkg_dic, rootfs=True):
>                                         "The license listed %s was not in the "\
>                                         "licenses collected for recipe %s"
>                                         % (lic, pkg_dic[pkg]["PN"]), d)
> +    oe.qa.exit_if_errors(d)
> +
>      # Two options here:
>      # - Just copy the manifest
>      # - Copy the manifest and the license directories
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#164766): https://lists.openembedded.org/g/openembedded-core/message/164766
> Mute This Topic: https://lists.openembedded.org/mt/90615582/3617601
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [sakoman@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* RE: [OE-core] [master][kirkstone][PATCH] license_image.bbclass: Make QA errors fail the build
  2022-04-28 17:35 ` [OE-core] " Steve Sakoman
@ 2022-04-29  8:10   ` Peter Kjellerstedt
       [not found]   ` <16EA4FAF914EDF73.11702@lists.openembedded.org>
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Kjellerstedt @ 2022-04-29  8:10 UTC (permalink / raw)
  To: Steve Sakoman; +Cc: Patches and discussions about the oe-core layer

> -----Original Message-----
> From: Steve Sakoman <steve@sakoman.com>
> Sent: den 28 april 2022 19:36
> To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> Cc: Patches and discussions about the oe-core layer <openembedded-
> core@lists.openembedded.org>
> Subject: Re: [OE-core] [master][kirkstone][PATCH] license_image.bbclass:
> Make QA errors fail the build
> 
> I haven't seen this patch hit master or master-next yet.  Were there
> issues with it?
> 
> Just want to make sure I don't miss anything requested for kirkstone.
> 
> Steve

It is in master-next now so I assume it will make it to master soon.

//Peter

> 
> On Thu, Apr 21, 2022 at 11:11 AM Peter Kjellerstedt
> <peter.kjellerstedt@axis.com> wrote:
> >
> > If, e.g., license-file-missing is added to ERROR_QA, then the build
> > should fail if any licenses are missing.
> >
> > Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> > ---
> >  meta/classes/license_image.bbclass | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/meta/classes/license_image.bbclass
> b/meta/classes/license_image.bbclass
> > index 7e1d0e08a9..3213ea758e 100644
> > --- a/meta/classes/license_image.bbclass
> > +++ b/meta/classes/license_image.bbclass
> > @@ -104,6 +104,8 @@ def write_license_files(d, license_manifest,
> pkg_dic, rootfs=True):
> >                                         "The license listed %s was not
> in the "\
> >                                         "licenses collected for recipe
> %s"
> >                                         % (lic, pkg_dic[pkg]["PN"]), d)
> > +    oe.qa.exit_if_errors(d)
> > +
> >      # Two options here:
> >      # - Just copy the manifest
> >      # - Copy the manifest and the license directories
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#164766):
> https://lists.openembedded.org/g/openembedded-core/message/164766
> > Mute This Topic: https://lists.openembedded.org/mt/90615582/3617601
> > Group Owner: openembedded-core+owner@lists.openembedded.org
> > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub
> [sakoman@gmail.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >

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

* RE: [OE-core] [master][kirkstone][PATCH] license_image.bbclass: Make QA errors fail the build
       [not found]   ` <16EA4FAF914EDF73.11702@lists.openembedded.org>
@ 2022-05-23 21:57     ` Peter Kjellerstedt
  2022-05-23 23:18       ` Steve Sakoman
  0 siblings, 1 reply; 5+ messages in thread
From: Peter Kjellerstedt @ 2022-05-23 21:57 UTC (permalink / raw)
  To: Steve Sakoman; +Cc: Patches and discussions about the oe-core layer

> -----Original Message-----
> From: openembedded-core@lists.openembedded.org <openembedded-
> core@lists.openembedded.org> On Behalf Of Peter Kjellerstedt
> Sent: den 29 april 2022 10:10
> To: Steve Sakoman <steve@sakoman.com>
> Cc: Patches and discussions about the oe-core layer <openembedded-
> core@lists.openembedded.org>
> Subject: Re: [OE-core] [master][kirkstone][PATCH] license_image.bbclass:
> Make QA errors fail the build
> 
> > -----Original Message-----
> > From: Steve Sakoman <steve@sakoman.com>
> > Sent: den 28 april 2022 19:36
> > To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> > Cc: Patches and discussions about the oe-core layer <openembedded-
> > core@lists.openembedded.org>
> > Subject: Re: [OE-core] [master][kirkstone][PATCH] license_image.bbclass:
> > Make QA errors fail the build
> >
> > I haven't seen this patch hit master or master-next yet.  Were there
> > issues with it?
> >
> > Just want to make sure I don't miss anything requested for kirkstone.
> >
> > Steve
> 
> It is in master-next now so I assume it will make it to master soon.
> 
> //Peter

I guess you missed it since it didn't make 4.0.1... ;)

//Peter

> > On Thu, Apr 21, 2022 at 11:11 AM Peter Kjellerstedt <peter.kjellerstedt@axis.com> wrote:
> > >
> > > If, e.g., license-file-missing is added to ERROR_QA, then the build
> > > should fail if any licenses are missing.
> > >
> > > Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> > > ---
> > >  meta/classes/license_image.bbclass | 2 ++
> > >  1 file changed, 2 insertions(+)
> > >
> > > diff --git a/meta/classes/license_image.bbclass b/meta/classes/license_image.bbclass
> > > index 7e1d0e08a9..3213ea758e 100644
> > > --- a/meta/classes/license_image.bbclass
> > > +++ b/meta/classes/license_image.bbclass
> > > @@ -104,6 +104,8 @@ def write_license_files(d, license_manifest, pkg_dic, rootfs=True):
> > >                                         "The license listed %s was not in the "\
> > >                                         "licenses collected for recipe %s"
> > >                                         % (lic, pkg_dic[pkg]["PN"]), d)
> > > +    oe.qa.exit_if_errors(d)
> > > +
> > >      # Two options here:
> > >      # - Just copy the manifest
> > >      # - Copy the manifest and the license directories


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

* Re: [OE-core] [master][kirkstone][PATCH] license_image.bbclass: Make QA errors fail the build
  2022-05-23 21:57     ` Peter Kjellerstedt
@ 2022-05-23 23:18       ` Steve Sakoman
  0 siblings, 0 replies; 5+ messages in thread
From: Steve Sakoman @ 2022-05-23 23:18 UTC (permalink / raw)
  To: Peter Kjellerstedt; +Cc: Patches and discussions about the oe-core layer

On Mon, May 23, 2022 at 11:57 AM Peter Kjellerstedt
<peter.kjellerstedt@axis.com> wrote:
>
> > -----Original Message-----
> > From: openembedded-core@lists.openembedded.org <openembedded-
> > core@lists.openembedded.org> On Behalf Of Peter Kjellerstedt
> > Sent: den 29 april 2022 10:10
> > To: Steve Sakoman <steve@sakoman.com>
> > Cc: Patches and discussions about the oe-core layer <openembedded-
> > core@lists.openembedded.org>
> > Subject: Re: [OE-core] [master][kirkstone][PATCH] license_image.bbclass:
> > Make QA errors fail the build
> >
> > > -----Original Message-----
> > > From: Steve Sakoman <steve@sakoman.com>
> > > Sent: den 28 april 2022 19:36
> > > To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> > > Cc: Patches and discussions about the oe-core layer <openembedded-
> > > core@lists.openembedded.org>
> > > Subject: Re: [OE-core] [master][kirkstone][PATCH] license_image.bbclass:
> > > Make QA errors fail the build
> > >
> > > I haven't seen this patch hit master or master-next yet.  Were there
> > > issues with it?
> > >
> > > Just want to make sure I don't miss anything requested for kirkstone.
> > >
> > > Steve
> >
> > It is in master-next now so I assume it will make it to master soon.
> >
> > //Peter
>
> I guess you missed it since it didn't make 4.0.1... ;)

I've got it now!  Thanks for the reminder.

Steve


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

end of thread, other threads:[~2022-05-23 23:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-21 21:11 [master][kirkstone][PATCH] license_image.bbclass: Make QA errors fail the build Peter Kjellerstedt
2022-04-28 17:35 ` [OE-core] " Steve Sakoman
2022-04-29  8:10   ` Peter Kjellerstedt
     [not found]   ` <16EA4FAF914EDF73.11702@lists.openembedded.org>
2022-05-23 21:57     ` Peter Kjellerstedt
2022-05-23 23:18       ` Steve Sakoman

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.