linux-spdx.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: add entry for LICENSES and SPDX stuff
@ 2019-08-27 17:25 Greg Kroah-Hartman
  2019-08-27 19:36 ` Thomas Gleixner
  2019-08-27 19:53 ` [PATCH v2] " Greg Kroah-Hartman
  0 siblings, 2 replies; 6+ messages in thread
From: Greg Kroah-Hartman @ 2019-08-27 17:25 UTC (permalink / raw)
  To: Thomas Gleixner, linux-kernel; +Cc: Darrick J. Wong, linux-spdx

Thomas and I seem to have become the "unofficial" maintainers for these
files and questions about SPDX things.  So let's make it official.

Reported-by: "Darrick J. Wong" <darrick.wong@oracle.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -9234,6 +9234,17 @@ F:	include/linux/nd.h
 F:	include/linux/libnvdimm.h
 F:	include/uapi/linux/ndctl.h
 
+LICENSES and SPDX stuff
+M:	Thomas Gleixner <tglx@linutronix.de>
+M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+L:	linux-spdx@vger.kernel.org
+S:	Maintained
+T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
+F:	COPYING
+F:	LICENSES/
+F:	scripts/spdxcheck-test.sh
+F:	scripts/spdxcheck.py
+
 LIGHTNVM PLATFORM SUPPORT
 M:	Matias Bjorling <mb@lightnvm.io>
 W:	http://github/OpenChannelSSD


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

* Re: [PATCH] MAINTAINERS: add entry for LICENSES and SPDX stuff
  2019-08-27 17:25 [PATCH] MAINTAINERS: add entry for LICENSES and SPDX stuff Greg Kroah-Hartman
@ 2019-08-27 19:36 ` Thomas Gleixner
  2019-08-27 19:52   ` Greg Kroah-Hartman
  2019-08-27 19:53 ` [PATCH v2] " Greg Kroah-Hartman
  1 sibling, 1 reply; 6+ messages in thread
From: Thomas Gleixner @ 2019-08-27 19:36 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-kernel, Darrick J. Wong, linux-spdx

On Tue, 27 Aug 2019, Greg Kroah-Hartman wrote:

> Thomas and I seem to have become the "unofficial" maintainers for these
> files and questions about SPDX things.  So let's make it official.
> 
> Reported-by: "Darrick J. Wong" <darrick.wong@oracle.com>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> 
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -9234,6 +9234,17 @@ F:	include/linux/nd.h
>  F:	include/linux/libnvdimm.h
>  F:	include/uapi/linux/ndctl.h
>  
> +LICENSES and SPDX stuff
> +M:	Thomas Gleixner <tglx@linutronix.de>
> +M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> +L:	linux-spdx@vger.kernel.org
> +S:	Maintained
> +T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
> +F:	COPYING
> +F:	LICENSES/
> +F:	scripts/spdxcheck-test.sh
> +F:	scripts/spdxcheck.py

We probably want to add Documentation/process/license-rules.rst as well.

Thanks,

	tglx

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

* Re: [PATCH] MAINTAINERS: add entry for LICENSES and SPDX stuff
  2019-08-27 19:36 ` Thomas Gleixner
@ 2019-08-27 19:52   ` Greg Kroah-Hartman
  0 siblings, 0 replies; 6+ messages in thread
From: Greg Kroah-Hartman @ 2019-08-27 19:52 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: linux-kernel, Darrick J. Wong, linux-spdx

On Tue, Aug 27, 2019 at 09:36:23PM +0200, Thomas Gleixner wrote:
> On Tue, 27 Aug 2019, Greg Kroah-Hartman wrote:
> 
> > Thomas and I seem to have become the "unofficial" maintainers for these
> > files and questions about SPDX things.  So let's make it official.
> > 
> > Reported-by: "Darrick J. Wong" <darrick.wong@oracle.com>
> > Cc: Thomas Gleixner <tglx@linutronix.de>
> > Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > 
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -9234,6 +9234,17 @@ F:	include/linux/nd.h
> >  F:	include/linux/libnvdimm.h
> >  F:	include/uapi/linux/ndctl.h
> >  
> > +LICENSES and SPDX stuff
> > +M:	Thomas Gleixner <tglx@linutronix.de>
> > +M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > +L:	linux-spdx@vger.kernel.org
> > +S:	Maintained
> > +T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
> > +F:	COPYING
> > +F:	LICENSES/
> > +F:	scripts/spdxcheck-test.sh
> > +F:	scripts/spdxcheck.py
> 
> We probably want to add Documentation/process/license-rules.rst as well.

Good idea, will go refresh this patch...

thanks,

greg k-h

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

* [PATCH v2] MAINTAINERS: add entry for LICENSES and SPDX stuff
  2019-08-27 17:25 [PATCH] MAINTAINERS: add entry for LICENSES and SPDX stuff Greg Kroah-Hartman
  2019-08-27 19:36 ` Thomas Gleixner
@ 2019-08-27 19:53 ` Greg Kroah-Hartman
  2019-08-28 11:12   ` Thomas Gleixner
  2019-08-28 16:01   ` Darrick J. Wong
  1 sibling, 2 replies; 6+ messages in thread
From: Greg Kroah-Hartman @ 2019-08-27 19:53 UTC (permalink / raw)
  To: Thomas Gleixner, linux-kernel; +Cc: Darrick J. Wong, linux-spdx

Thomas and I seem to have become the "unofficial" maintainers for these
files and questions about SPDX things.  So let's make it official.

Reported-by: "Darrick J. Wong" <darrick.wong@oracle.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
v2:	add Documentation/process/license-rules.rst

 MAINTAINERS |   12 ++++++++++++
 1 file changed, 12 insertions(+)

--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -9234,6 +9234,18 @@ F:	include/linux/nd.h
 F:	include/linux/libnvdimm.h
 F:	include/uapi/linux/ndctl.h
 
+LICENSES and SPDX stuff
+M:	Thomas Gleixner <tglx@linutronix.de>
+M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+L:	linux-spdx@vger.kernel.org
+S:	Maintained
+T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
+F:	COPYING
+F:	Documentation/process/license-rules.rst
+F:	LICENSES/
+F:	scripts/spdxcheck-test.sh
+F:	scripts/spdxcheck.py
+
 LIGHTNVM PLATFORM SUPPORT
 M:	Matias Bjorling <mb@lightnvm.io>
 W:	http://github/OpenChannelSSD

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

* Re: [PATCH v2] MAINTAINERS: add entry for LICENSES and SPDX stuff
  2019-08-27 19:53 ` [PATCH v2] " Greg Kroah-Hartman
@ 2019-08-28 11:12   ` Thomas Gleixner
  2019-08-28 16:01   ` Darrick J. Wong
  1 sibling, 0 replies; 6+ messages in thread
From: Thomas Gleixner @ 2019-08-28 11:12 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-kernel, Darrick J. Wong, linux-spdx

On Tue, 27 Aug 2019, Greg Kroah-Hartman wrote:

> Thomas and I seem to have become the "unofficial" maintainers for these
> files and questions about SPDX things.  So let's make it official.
> 
> Reported-by: "Darrick J. Wong" <darrick.wong@oracle.com>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Grumpily-acked-by: Thomas Gleixner <tglx@linutronix.de>

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

* Re: [PATCH v2] MAINTAINERS: add entry for LICENSES and SPDX stuff
  2019-08-27 19:53 ` [PATCH v2] " Greg Kroah-Hartman
  2019-08-28 11:12   ` Thomas Gleixner
@ 2019-08-28 16:01   ` Darrick J. Wong
  1 sibling, 0 replies; 6+ messages in thread
From: Darrick J. Wong @ 2019-08-28 16:01 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: Thomas Gleixner, linux-kernel, linux-spdx

On Tue, Aug 27, 2019 at 09:53:10PM +0200, Greg Kroah-Hartman wrote:
> Thomas and I seem to have become the "unofficial" maintainers for these
> files and questions about SPDX things.  So let's make it official.
> 
> Reported-by: "Darrick J. Wong" <darrick.wong@oracle.com>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Acked-by: Darrick J. Wong <darrick.wong@oracle.com>

--D

> ---
> v2:	add Documentation/process/license-rules.rst
> 
>  MAINTAINERS |   12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -9234,6 +9234,18 @@ F:	include/linux/nd.h
>  F:	include/linux/libnvdimm.h
>  F:	include/uapi/linux/ndctl.h
>  
> +LICENSES and SPDX stuff
> +M:	Thomas Gleixner <tglx@linutronix.de>
> +M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> +L:	linux-spdx@vger.kernel.org
> +S:	Maintained
> +T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
> +F:	COPYING
> +F:	Documentation/process/license-rules.rst
> +F:	LICENSES/
> +F:	scripts/spdxcheck-test.sh
> +F:	scripts/spdxcheck.py
> +
>  LIGHTNVM PLATFORM SUPPORT
>  M:	Matias Bjorling <mb@lightnvm.io>
>  W:	http://github/OpenChannelSSD

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

end of thread, other threads:[~2019-08-28 16:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-27 17:25 [PATCH] MAINTAINERS: add entry for LICENSES and SPDX stuff Greg Kroah-Hartman
2019-08-27 19:36 ` Thomas Gleixner
2019-08-27 19:52   ` Greg Kroah-Hartman
2019-08-27 19:53 ` [PATCH v2] " Greg Kroah-Hartman
2019-08-28 11:12   ` Thomas Gleixner
2019-08-28 16:01   ` Darrick J. Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).