* [ptxdist] [PATCH 01/13] polkit: add license identifier
@ 2019-07-19 12:17 Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 02/13] portmap: " Christian Hermann
` (12 more replies)
0 siblings, 13 replies; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:17 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/polkit.make | 1 +
1 file changed, 1 insertion(+)
diff --git a/rules/polkit.make b/rules/polkit.make
index 76ab15bc0..977f43a14 100644
--- a/rules/polkit.make
+++ b/rules/polkit.make
@@ -21,6 +21,7 @@ POLKIT_SUFFIX := tar.gz
POLKIT_URL := https://www.freedesktop.org/software/polkit/releases/$(POLKIT).$(POLKIT_SUFFIX)
POLKIT_SOURCE := $(SRCDIR)/$(POLKIT).$(POLKIT_SUFFIX)
POLKIT_DIR := $(BUILDDIR)/$(POLKIT)
+POLKIT_LICENSE := GPL-2.0-or-later
# ----------------------------------------------------------------------------
# Prepare
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 02/13] portmap: add license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
@ 2019-07-19 12:17 ` Christian Hermann
2019-07-22 9:37 ` Roland Hieber
2019-07-19 12:17 ` [ptxdist] [PATCH 03/13] procps: fix " Christian Hermann
` (11 subsequent siblings)
12 siblings, 1 reply; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:17 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/portmap.make | 2 ++
1 file changed, 2 insertions(+)
diff --git a/rules/portmap.make b/rules/portmap.make
index bece1ea81..600a860b8 100644
--- a/rules/portmap.make
+++ b/rules/portmap.make
@@ -23,6 +23,8 @@ PORTMAP_SUFFIX := tgz
PORTMAP_URL := http://fossies.org/linux/misc/old/portmap-$(PORTMAP_VERSION).$(PORTMAP_SUFFIX)
PORTMAP_SOURCE := $(SRCDIR)/portmap-$(PORTMAP_VERSION).$(PORTMAP_SUFFIX)
PORTMAP_DIR := $(BUILDDIR)/$(PORTMAP)
+PORTMAP_LICENSE := BSD-4-Clause-UC
+PORTMAP_LICENSE_FILES := file://portmap.c;startline=1;endline=32;md5=3758c3c0222f2b08b0f4952dc734e071
# ----------------------------------------------------------------------------
# Compile
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 03/13] procps: fix license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 02/13] portmap: " Christian Hermann
@ 2019-07-19 12:17 ` Christian Hermann
2019-07-22 9:45 ` Roland Hieber
2019-07-19 12:17 ` [ptxdist] [PATCH 04/13] bash: " Christian Hermann
` (10 subsequent siblings)
12 siblings, 1 reply; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:17 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/procps.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/procps.make b/rules/procps.make
index 8d19e7b4a..9a042900d 100644
--- a/rules/procps.make
+++ b/rules/procps.make
@@ -24,7 +24,7 @@ PROCPS_SUFFIX := tar.xz
PROCPS_URL := $(call ptx/mirror, SF, procps-ng/Production/$(PROCPS).$(PROCPS_SUFFIX))
PROCPS_SOURCE := $(SRCDIR)/$(PROCPS).$(PROCPS_SUFFIX)
PROCPS_DIR := $(BUILDDIR)/$(PROCPS)
-PROCPS_LICENSE := GPL-2.0-only AND LGPL-2.0-only
+PROCPS_LICENSE := GPL-2.0-or-later AND LGPL-2.1-or-later
PROCPS_LICENSE_FILES := \
file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
file://COPYING.LIB;md5=4cf66a4984120007c9881cc871cf49db
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 04/13] bash: fix license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 02/13] portmap: " Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 03/13] procps: fix " Christian Hermann
@ 2019-07-19 12:17 ` Christian Hermann
2019-07-22 10:10 ` Roland Hieber
2019-07-19 12:17 ` [ptxdist] [PATCH 05/13] bc: " Christian Hermann
` (9 subsequent siblings)
12 siblings, 1 reply; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:17 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/bash.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/bash.make b/rules/bash.make
index d128a5ab7..6b69702d9 100644
--- a/rules/bash.make
+++ b/rules/bash.make
@@ -21,7 +21,7 @@ BASH_URL := $(call ptx/mirror, GNU, bash/$(BASH).$(BASH_SUFFIX))
BASH_SOURCE := $(SRCDIR)/$(BASH).$(BASH_SUFFIX)
BASH_DIR := $(BUILDDIR)/$(BASH)
BASH_MAKE_PAR := NO
-BASH_LICENSE := GPL-3.0-only
+BASH_LICENSE := GPL-3.0-or-later
# ----------------------------------------------------------------------------
# Prepare
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 05/13] bc: fix license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
` (2 preceding siblings ...)
2019-07-19 12:17 ` [ptxdist] [PATCH 04/13] bash: " Christian Hermann
@ 2019-07-19 12:17 ` Christian Hermann
2019-07-22 10:16 ` Roland Hieber
2019-07-19 12:17 ` [ptxdist] [PATCH 06/13] cifs-utils: " Christian Hermann
` (8 subsequent siblings)
12 siblings, 1 reply; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:17 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/bc.make | 1 +
1 file changed, 1 insertion(+)
diff --git a/rules/bc.make b/rules/bc.make
index 7db14ac67..d3f720063 100644
--- a/rules/bc.make
+++ b/rules/bc.make
@@ -22,6 +22,7 @@ BC_SUFFIX := tar.gz
BC_URL := $(call ptx/mirror, GNU, bc/$(BC).$(BC_SUFFIX))
BC_SOURCE := $(SRCDIR)/$(BC).$(BC_SUFFIX)
BC_DIR := $(BUILDDIR)/$(BC)
+BC_LICENSE := GPL-3.0-or-later
# ----------------------------------------------------------------------------
# Prepare
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 06/13] cifs-utils: fix license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
` (3 preceding siblings ...)
2019-07-19 12:17 ` [ptxdist] [PATCH 05/13] bc: " Christian Hermann
@ 2019-07-19 12:17 ` Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 07/13] ddrescue: " Christian Hermann
` (7 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:17 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/cifs-utils.make | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/rules/cifs-utils.make b/rules/cifs-utils.make
index 8f54aee1e..1ed3697a1 100644
--- a/rules/cifs-utils.make
+++ b/rules/cifs-utils.make
@@ -21,7 +21,8 @@ CIFS_UTILS_SUFFIX := tar.bz2
CIFS_UTILS_URL := https://ftp.samba.org/pub/linux-cifs/cifs-utils/$(CIFS_UTILS).$(CIFS_UTILS_SUFFIX)
CIFS_UTILS_SOURCE := $(SRCDIR)/$(CIFS_UTILS).$(CIFS_UTILS_SUFFIX)
CIFS_UTILS_DIR := $(BUILDDIR)/$(CIFS_UTILS)
-CIFS_UTILS_LICENSE := GPL-3.0-only
+CIFS_UTILS_LICENSE := GPL-3.0-or-later
+CIFS_UTILS_LICENSE_FILES := file://COPYING;md5=d32239bcb673463ab874e80d47fae504
#
# autoconf
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 07/13] ddrescue: fix license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
` (4 preceding siblings ...)
2019-07-19 12:17 ` [ptxdist] [PATCH 06/13] cifs-utils: " Christian Hermann
@ 2019-07-19 12:17 ` Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 08/13] diffutils: " Christian Hermann
` (6 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:17 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/ddrescue.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/ddrescue.make b/rules/ddrescue.make
index 91e3a4843..f553f1c3b 100644
--- a/rules/ddrescue.make
+++ b/rules/ddrescue.make
@@ -21,7 +21,7 @@ DDRESCUE_SUFFIX := tar.lz
DDRESCUE_URL := $(call ptx/mirror, GNU, ddrescue/$(DDRESCUE).$(DDRESCUE_SUFFIX))
DDRESCUE_SOURCE := $(SRCDIR)/$(DDRESCUE).$(DDRESCUE_SUFFIX)
DDRESCUE_DIR := $(BUILDDIR)/$(DDRESCUE)
-DDRESCUE_LICENSE := unknown
+DDRESCUE_LICENSE := GPL-2.0-or-later
# ----------------------------------------------------------------------------
# Prepare
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 08/13] diffutils: fix license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
` (5 preceding siblings ...)
2019-07-19 12:17 ` [ptxdist] [PATCH 07/13] ddrescue: " Christian Hermann
@ 2019-07-19 12:17 ` Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 09/13] fuse: fix license identifier (split) Christian Hermann
` (5 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:17 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/diffutils.make | 1 +
1 file changed, 1 insertion(+)
diff --git a/rules/diffutils.make b/rules/diffutils.make
index 1cd13c77e..34afb3a6d 100644
--- a/rules/diffutils.make
+++ b/rules/diffutils.make
@@ -21,6 +21,7 @@ DIFFUTILS_SUFFIX := tar.gz
DIFFUTILS_URL := $(call ptx/mirror, GNU, diffutils/$(DIFFUTILS).$(DIFFUTILS_SUFFIX))
DIFFUTILS_SOURCE := $(SRCDIR)/$(DIFFUTILS).$(DIFFUTILS_SUFFIX)
DIFFUTILS_DIR := $(BUILDDIR)/$(DIFFUTILS)
+DIFFUTILS_LICENSE := GPL-3.0-or-later
# ----------------------------------------------------------------------------
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 09/13] fuse: fix license identifier (split)
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
` (6 preceding siblings ...)
2019-07-19 12:17 ` [ptxdist] [PATCH 08/13] diffutils: " Christian Hermann
@ 2019-07-19 12:17 ` Christian Hermann
2019-07-19 12:18 ` [ptxdist] [PATCH 10/13] dosfstools: fix license identifier Christian Hermann
` (4 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:17 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/fuse.make | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/rules/fuse.make b/rules/fuse.make
index b3c55bfe5..88c6eae1e 100644
--- a/rules/fuse.make
+++ b/rules/fuse.make
@@ -21,7 +21,15 @@ FUSE_SUFFIX := tar.gz
FUSE_URL := https://github.com/libfuse/libfuse/releases/download/$(FUSE)/$(FUSE).$(FUSE_SUFFIX)
FUSE_SOURCE := $(SRCDIR)/$(FUSE).$(FUSE_SUFFIX)
FUSE_DIR := $(BUILDDIR)/$(FUSE)
-FUSE_LICENSE := GPL-2.0-only AND LGPL-2.1-only
+ifdef PTXCONF_FUSE_UTIL
+FUSE_LICENSE := GPL-2.0-only
+endif
+ifdef PTXCONF_FUSE_LIB
+ifdef FUSE_LICENSE
+FUSE_LICENSE += AND
+endif
+FUSE_LICENSE += LGPL-2.1-only
+endif
# ----------------------------------------------------------------------------
# Prepare
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 10/13] dosfstools: fix license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
` (7 preceding siblings ...)
2019-07-19 12:17 ` [ptxdist] [PATCH 09/13] fuse: fix license identifier (split) Christian Hermann
@ 2019-07-19 12:18 ` Christian Hermann
2019-07-19 12:18 ` [ptxdist] [PATCH 11/13] file: " Christian Hermann
` (3 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:18 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/dosfstools.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/dosfstools.make b/rules/dosfstools.make
index eb11644f3..b1ac565fe 100644
--- a/rules/dosfstools.make
+++ b/rules/dosfstools.make
@@ -23,7 +23,7 @@ DOSFSTOOLS_SRC := $(DOSFSTOOLS).$(DOSFSTOOLS_SUFFIX)
DOSFSTOOLS_URL := https://github.com/dosfstools/dosfstools/releases/download/v$(DOSFSTOOLS_VERSION)/$(DOSFSTOOLS_SRC)
DOSFSTOOLS_SOURCE := $(SRCDIR)/$(DOSFSTOOLS_SRC)
DOSFSTOOLS_DIR := $(BUILDDIR)/$(DOSFSTOOLS)
-DOSFSTOOLS_LICENSE := GPL-3.0-only
+DOSFSTOOLS_LICENSE := GPL-3.0-or-later
# ----------------------------------------------------------------------------
# Prepare (nothing to be done here)
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 11/13] file: fix license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
` (8 preceding siblings ...)
2019-07-19 12:18 ` [ptxdist] [PATCH 10/13] dosfstools: fix license identifier Christian Hermann
@ 2019-07-19 12:18 ` Christian Hermann
2019-07-19 12:18 ` [ptxdist] [PATCH 12/13] dnsmasq: add " Christian Hermann
` (2 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:18 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/file.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/file.make b/rules/file.make
index b721cf7e6..0a78669a3 100644
--- a/rules/file.make
+++ b/rules/file.make
@@ -21,7 +21,7 @@ FILE_SUFFIX := tar.gz
FILE_URL := ftp://ftp.astron.com/pub/file/$(FILE).$(FILE_SUFFIX)
FILE_SOURCE := $(SRCDIR)/$(FILE).$(FILE_SUFFIX)
FILE_DIR := $(BUILDDIR)/$(FILE)
-FILE_LICENSE := BSD AND 2-term BSD
+FILE_LICENSE := BSD-2-Clause
# ----------------------------------------------------------------------------
# Prepare
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 12/13] dnsmasq: add license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
` (9 preceding siblings ...)
2019-07-19 12:18 ` [ptxdist] [PATCH 11/13] file: " Christian Hermann
@ 2019-07-19 12:18 ` Christian Hermann
2019-07-19 12:18 ` [ptxdist] [PATCH 13/13] findutils: " Christian Hermann
2019-07-22 9:49 ` [ptxdist] [PATCH 01/13] polkit: " Roland Hieber
12 siblings, 0 replies; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:18 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/dnsmasq.make | 1 +
1 file changed, 1 insertion(+)
diff --git a/rules/dnsmasq.make b/rules/dnsmasq.make
index 7da9768ed..a5f7305f4 100644
--- a/rules/dnsmasq.make
+++ b/rules/dnsmasq.make
@@ -22,6 +22,7 @@ DNSMASQ_SUFFIX := tar.xz
DNSMASQ_URL := http://www.thekelleys.org.uk/dnsmasq/$(DNSMASQ).$(DNSMASQ_SUFFIX)
DNSMASQ_SOURCE := $(SRCDIR)/$(DNSMASQ).$(DNSMASQ_SUFFIX)
DNSMASQ_DIR := $(BUILDDIR)/$(DNSMASQ)
+DNSMASQ_LICENSE := GPL-2.0-only OR GPL-3.0-only
# ----------------------------------------------------------------------------
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* [ptxdist] [PATCH 13/13] findutils: add license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
` (10 preceding siblings ...)
2019-07-19 12:18 ` [ptxdist] [PATCH 12/13] dnsmasq: add " Christian Hermann
@ 2019-07-19 12:18 ` Christian Hermann
2019-07-22 9:49 ` [ptxdist] [PATCH 01/13] polkit: " Roland Hieber
12 siblings, 0 replies; 18+ messages in thread
From: Christian Hermann @ 2019-07-19 12:18 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
---
rules/findutils.make | 1 +
1 file changed, 1 insertion(+)
diff --git a/rules/findutils.make b/rules/findutils.make
index d3fcae684..302cab515 100644
--- a/rules/findutils.make
+++ b/rules/findutils.make
@@ -22,6 +22,7 @@ FINDUTILS_SUFFIX := tar.gz
FINDUTILS_URL := $(call ptx/mirror, GNU, findutils/$(FINDUTILS).$(FINDUTILS_SUFFIX))
FINDUTILS_SOURCE := $(SRCDIR)/$(FINDUTILS).$(FINDUTILS_SUFFIX)
FINDUTILS_DIR := $(BUILDDIR)/$(FINDUTILS)
+FINDUTILS_LICENSE := GPL-3.0-or-later
# ----------------------------------------------------------------------------
--
2.22.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [ptxdist] [PATCH 02/13] portmap: add license identifier
2019-07-19 12:17 ` [ptxdist] [PATCH 02/13] portmap: " Christian Hermann
@ 2019-07-22 9:37 ` Roland Hieber
0 siblings, 0 replies; 18+ messages in thread
From: Roland Hieber @ 2019-07-22 9:37 UTC (permalink / raw)
To: Christian Hermann; +Cc: ptxdist
On Fri, Jul 19, 2019 at 02:17:52PM +0200, Christian Hermann wrote:
> Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
> ---
> rules/portmap.make | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/rules/portmap.make b/rules/portmap.make
> index bece1ea81..600a860b8 100644
> --- a/rules/portmap.make
> +++ b/rules/portmap.make
> @@ -23,6 +23,8 @@ PORTMAP_SUFFIX := tgz
> PORTMAP_URL := http://fossies.org/linux/misc/old/portmap-$(PORTMAP_VERSION).$(PORTMAP_SUFFIX)
> PORTMAP_SOURCE := $(SRCDIR)/portmap-$(PORTMAP_VERSION).$(PORTMAP_SUFFIX)
> PORTMAP_DIR := $(BUILDDIR)/$(PORTMAP)
> +PORTMAP_LICENSE := BSD-4-Clause-UC
AND unknown
portmap.c and from_local.c contain some sort of old Sun RPC license,
which apparently don't have an SPDX identifier yet [1].
[1]: https://github.com/Distrotech/rpcbind/blob/master/src/pmap_svc.c
- Roland
> +PORTMAP_LICENSE_FILES := file://portmap.c;startline=1;endline=32;md5=3758c3c0222f2b08b0f4952dc734e071
>
> # ----------------------------------------------------------------------------
> # Compile
> --
> 2.22.0
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Roland Hieber | r.hieber@pengutronix.de |
Pengutronix e.K. | https://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim | Phone: +49-5121-206917-5086 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [ptxdist] [PATCH 03/13] procps: fix license identifier
2019-07-19 12:17 ` [ptxdist] [PATCH 03/13] procps: fix " Christian Hermann
@ 2019-07-22 9:45 ` Roland Hieber
0 siblings, 0 replies; 18+ messages in thread
From: Roland Hieber @ 2019-07-22 9:45 UTC (permalink / raw)
To: Christian Hermann; +Cc: ptxdist
Reviewed-by: Roland Hieber <rhi@pengutronix.de>
If you're going to send v2 of the series, please put a short sentence in
the commit message with a more verbose justification, like:
All files contain the "or (at your option) any later version"
clause of the GPL-2.0 or the LGPL-2.1 dedication.
- Roland
On Fri, Jul 19, 2019 at 02:17:53PM +0200, Christian Hermann wrote:
> Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
> ---
> rules/procps.make | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/rules/procps.make b/rules/procps.make
> index 8d19e7b4a..9a042900d 100644
> --- a/rules/procps.make
> +++ b/rules/procps.make
> @@ -24,7 +24,7 @@ PROCPS_SUFFIX := tar.xz
> PROCPS_URL := $(call ptx/mirror, SF, procps-ng/Production/$(PROCPS).$(PROCPS_SUFFIX))
> PROCPS_SOURCE := $(SRCDIR)/$(PROCPS).$(PROCPS_SUFFIX)
> PROCPS_DIR := $(BUILDDIR)/$(PROCPS)
> -PROCPS_LICENSE := GPL-2.0-only AND LGPL-2.0-only
> +PROCPS_LICENSE := GPL-2.0-or-later AND LGPL-2.1-or-later
> PROCPS_LICENSE_FILES := \
> file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> file://COPYING.LIB;md5=4cf66a4984120007c9881cc871cf49db
> --
> 2.22.0
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Roland Hieber | r.hieber@pengutronix.de |
Pengutronix e.K. | https://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim | Phone: +49-5121-206917-5086 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [ptxdist] [PATCH 01/13] polkit: add license identifier
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
` (11 preceding siblings ...)
2019-07-19 12:18 ` [ptxdist] [PATCH 13/13] findutils: " Christian Hermann
@ 2019-07-22 9:49 ` Roland Hieber
12 siblings, 0 replies; 18+ messages in thread
From: Roland Hieber @ 2019-07-22 9:49 UTC (permalink / raw)
To: ptxdist
Please add a LICENSE_FILES with md5sum for ./COPYING, and maybe also for
the relevant lines of src/polkitd/main.c.
- Roland
On Fri, Jul 19, 2019 at 02:17:51PM +0200, Christian Hermann wrote:
> Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
> ---
> rules/polkit.make | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/rules/polkit.make b/rules/polkit.make
> index 76ab15bc0..977f43a14 100644
> --- a/rules/polkit.make
> +++ b/rules/polkit.make
> @@ -21,6 +21,7 @@ POLKIT_SUFFIX := tar.gz
> POLKIT_URL := https://www.freedesktop.org/software/polkit/releases/$(POLKIT).$(POLKIT_SUFFIX)
> POLKIT_SOURCE := $(SRCDIR)/$(POLKIT).$(POLKIT_SUFFIX)
> POLKIT_DIR := $(BUILDDIR)/$(POLKIT)
> +POLKIT_LICENSE := GPL-2.0-or-later
>
> # ----------------------------------------------------------------------------
> # Prepare
> --
> 2.22.0
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Roland Hieber | r.hieber@pengutronix.de |
Pengutronix e.K. | https://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim | Phone: +49-5121-206917-5086 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [ptxdist] [PATCH 04/13] bash: fix license identifier
2019-07-19 12:17 ` [ptxdist] [PATCH 04/13] bash: " Christian Hermann
@ 2019-07-22 10:10 ` Roland Hieber
0 siblings, 0 replies; 18+ messages in thread
From: Roland Hieber @ 2019-07-22 10:10 UTC (permalink / raw)
To: Christian Hermann; +Cc: ptxdist
Same as above, but the change looks valid to me. Could you add a
BASH_LICENSE_FILES variable too please?
- Roland
On Fri, Jul 19, 2019 at 02:17:54PM +0200, Christian Hermann wrote:
> Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
> ---
> rules/bash.make | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/rules/bash.make b/rules/bash.make
> index d128a5ab7..6b69702d9 100644
> --- a/rules/bash.make
> +++ b/rules/bash.make
> @@ -21,7 +21,7 @@ BASH_URL := $(call ptx/mirror, GNU, bash/$(BASH).$(BASH_SUFFIX))
> BASH_SOURCE := $(SRCDIR)/$(BASH).$(BASH_SUFFIX)
> BASH_DIR := $(BUILDDIR)/$(BASH)
> BASH_MAKE_PAR := NO
> -BASH_LICENSE := GPL-3.0-only
> +BASH_LICENSE := GPL-3.0-or-later
>
> # ----------------------------------------------------------------------------
> # Prepare
> --
> 2.22.0
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Roland Hieber | r.hieber@pengutronix.de |
Pengutronix e.K. | https://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim | Phone: +49-5121-206917-5086 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [ptxdist] [PATCH 05/13] bc: fix license identifier
2019-07-19 12:17 ` [ptxdist] [PATCH 05/13] bc: " Christian Hermann
@ 2019-07-22 10:16 ` Roland Hieber
0 siblings, 0 replies; 18+ messages in thread
From: Roland Hieber @ 2019-07-22 10:16 UTC (permalink / raw)
To: Christian Hermann; +Cc: ptxdist
On Fri, Jul 19, 2019 at 02:17:55PM +0200, Christian Hermann wrote:
> Signed-off-by: Christian Hermann <christian.hermann@hytera.de>
> ---
> rules/bc.make | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/rules/bc.make b/rules/bc.make
> index 7db14ac67..d3f720063 100644
> --- a/rules/bc.make
> +++ b/rules/bc.make
> @@ -22,6 +22,7 @@ BC_SUFFIX := tar.gz
> BC_URL := $(call ptx/mirror, GNU, bc/$(BC).$(BC_SUFFIX))
> BC_SOURCE := $(SRCDIR)/$(BC).$(BC_SUFFIX)
> BC_DIR := $(BUILDDIR)/$(BC)
> +BC_LICENSE := GPL-3.0-or-later
Same here. (Also there is a COPYING.LIB in the source tree containing the
LGPL-2.0 text, but I couldn't find any source file referencing the
LGPL-2.0...)
- Roland
>
> # ----------------------------------------------------------------------------
> # Prepare
> --
> 2.22.0
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Roland Hieber | r.hieber@pengutronix.de |
Pengutronix e.K. | https://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim | Phone: +49-5121-206917-5086 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2019-07-22 10:16 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-19 12:17 [ptxdist] [PATCH 01/13] polkit: add license identifier Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 02/13] portmap: " Christian Hermann
2019-07-22 9:37 ` Roland Hieber
2019-07-19 12:17 ` [ptxdist] [PATCH 03/13] procps: fix " Christian Hermann
2019-07-22 9:45 ` Roland Hieber
2019-07-19 12:17 ` [ptxdist] [PATCH 04/13] bash: " Christian Hermann
2019-07-22 10:10 ` Roland Hieber
2019-07-19 12:17 ` [ptxdist] [PATCH 05/13] bc: " Christian Hermann
2019-07-22 10:16 ` Roland Hieber
2019-07-19 12:17 ` [ptxdist] [PATCH 06/13] cifs-utils: " Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 07/13] ddrescue: " Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 08/13] diffutils: " Christian Hermann
2019-07-19 12:17 ` [ptxdist] [PATCH 09/13] fuse: fix license identifier (split) Christian Hermann
2019-07-19 12:18 ` [ptxdist] [PATCH 10/13] dosfstools: fix license identifier Christian Hermann
2019-07-19 12:18 ` [ptxdist] [PATCH 11/13] file: " Christian Hermann
2019-07-19 12:18 ` [ptxdist] [PATCH 12/13] dnsmasq: add " Christian Hermann
2019-07-19 12:18 ` [ptxdist] [PATCH 13/13] findutils: " Christian Hermann
2019-07-22 9:49 ` [ptxdist] [PATCH 01/13] polkit: " Roland Hieber
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox