All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/23] Update BSD license
@ 2019-10-07 13:08 Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 01/23] libpcap: update license Christophe PRIOUZEAU
                   ` (23 more replies)
  0 siblings, 24 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

Some recipes use BSD as license while SPDX license reference : BSD-0-Clause,
BSD-1-Clause, BSD-2-Clause, BSD-3-Clause, BSD-4-Clause.
The goal of this request are to indicate the SPDX license euqivalent for recipes
which indicate "BSD" as license.

The following changes since commit 108ce1447ca5dcb838ef67ef6b9a9d25e993da1d:

  meson: update patch status (2019-10-04 09:06:31 +0100)

are available in the Git repository at:

  git://github.com/cpriouzeau/openembedded-core oe-license
  https://github.com/cpriouzeau/openembedded-core/tree/oe-license

Christophe Priouzeau (23):
  libpcap: update license
  wpa-supplicant: update license
  ovmf: update license
  cmake: update license
  file: update license
  flex: update license
  python-async: update license
  python-smmap: update license
  libarchive: update license
  libtirpc: update license
  lighttpd: update license
  pbzip2: update license
  rpcbind: update license
  tcp-wrappers: update license
  libxpm: update license
  libogg: update license
  libtheora: update license
  libvorbis: update license
  speex: update license
  speexdsp: update license
  libwebp: update license
  libpcre: update license
  p11-kit: update license

 meta/recipes-connectivity/libpcap/libpcap_1.9.0.bb             | 2 +-
 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.9.bb | 2 +-
 meta/recipes-core/ovmf/ovmf_git.bb                             | 2 +-
 meta/recipes-devtools/cmake/cmake.inc                          | 2 +-
 meta/recipes-devtools/file/file_5.37.bb                        | 2 +-
 meta/recipes-devtools/flex/flex_2.6.0.bb                       | 2 +-
 meta/recipes-devtools/python/python-async.inc                  | 2 +-
 meta/recipes-devtools/python/python-smmap.inc                  | 2 +-
 meta/recipes-extended/libarchive/libarchive_3.4.0.bb           | 2 +-
 meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb               | 2 +-
 meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb              | 2 +-
 meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb                  | 2 +-
 meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb                 | 2 +-
 meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb         | 2 +-
 meta/recipes-graphics/xorg-lib/libxpm_3.5.12.bb                | 2 +-
 meta/recipes-multimedia/libogg/libogg_1.3.4.bb                 | 2 +-
 meta/recipes-multimedia/libtheora/libtheora_1.1.1.bb           | 2 +-
 meta/recipes-multimedia/libvorbis/libvorbis_1.3.6.bb           | 2 +-
 meta/recipes-multimedia/speex/speex_1.2.0.bb                   | 2 +-
 meta/recipes-multimedia/speex/speexdsp_1.2rc3.bb               | 2 +-
 meta/recipes-multimedia/webp/libwebp_1.0.3.bb                  | 2 +-
 meta/recipes-support/libpcre/libpcre2_10.33.bb                 | 2 +-
 meta/recipes-support/libpcre/libpcre_8.43.bb                   | 2 +-
 meta/recipes-support/p11-kit/p11-kit_0.23.16.1.bb              | 2 +-
 24 files changed, 24 insertions(+), 24 deletions(-)

-- 
2.17.1


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

* [PATCH 01/23] libpcap: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 03/23] ovmf: " Christophe PRIOUZEAU
                   ` (22 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The License of libpcap is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-connectivity/libpcap/libpcap_1.9.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-connectivity/libpcap/libpcap_1.9.0.bb b/meta/recipes-connectivity/libpcap/libpcap_1.9.0.bb
index 77bc31af7e2..d74895cc1b0 100644
--- a/meta/recipes-connectivity/libpcap/libpcap_1.9.0.bb
+++ b/meta/recipes-connectivity/libpcap/libpcap_1.9.0.bb
@@ -5,7 +5,7 @@ security monitoring and network debugging."
 HOMEPAGE = "http://www.tcpdump.org/"
 BUGTRACKER = "http://sourceforge.net/tracker/?group_id=53067&atid=469577"
 SECTION = "libs/network"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5eb289217c160e2920d2e35bddc36453 \
                     file://pcap.h;beginline=1;endline=32;md5=39af3510e011f34b8872f120b1dc31d2"
 DEPENDS = "flex-native bison-native"
-- 
2.17.1


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

* [PATCH 03/23] ovmf: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 01/23] libpcap: update license Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 02/23] wpa-supplicant: " Christophe PRIOUZEAU
                   ` (21 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of ovmf is BSD-2-Clause

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-core/ovmf/ovmf_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/ovmf/ovmf_git.bb b/meta/recipes-core/ovmf/ovmf_git.bb
index b569b593fc2..3b5a05e51e6 100644
--- a/meta/recipes-core/ovmf/ovmf_git.bb
+++ b/meta/recipes-core/ovmf/ovmf_git.bb
@@ -2,7 +2,7 @@ SUMMARY = "OVMF - UEFI firmware for Qemu and KVM"
 DESCRIPTION = "OVMF is an EDK II based project to enable UEFI support for \
 Virtual Machines. OVMF contains sample UEFI firmware for QEMU and KVM"
 HOMEPAGE = "https://github.com/tianocore/tianocore.github.io/wiki/OVMF"
-LICENSE = "BSD"
+LICENSE = "BSD-2-Clause"
 LICENSE_class-target = "${@bb.utils.contains('PACKAGECONFIG', 'secureboot', 'BSD & OpenSSL', 'BSD', d)}"
 LIC_FILES_CHKSUM = "file://OvmfPkg/License.txt;md5=06357ddc23f46577c2aeaeaf7b776d65"
 
-- 
2.17.1


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

* [PATCH 02/23] wpa-supplicant: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 01/23] libpcap: update license Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 03/23] ovmf: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 06/23] flex: " Christophe PRIOUZEAU
                   ` (20 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of wpa-supplicant is BSD-3-Clause

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.9.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.9.bb b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.9.bb
index c16978cfe82..ad9e6ea4be1 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.9.bb
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.9.bb
@@ -2,7 +2,7 @@ SUMMARY = "Client for Wi-Fi Protected Access (WPA)"
 HOMEPAGE = "http://w1.fi/wpa_supplicant/"
 BUGTRACKER = "http://w1.fi/security/"
 SECTION = "network"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=279b4f5abb9c153c285221855ddb78cc \
                     file://README;beginline=1;endline=56;md5=e7d3dbb01f75f0b9799e192731d1e1ff \
                     file://wpa_supplicant/wpa_supplicant.c;beginline=1;endline=12;md5=0a8b56d3543498b742b9c0e94cc2d18b"
-- 
2.17.1


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

* [PATCH 04/23] cmake: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (4 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 05/23] file: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 07/23] python-async: " Christophe PRIOUZEAU
                   ` (17 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of cmake is BSD-3-Clause

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-devtools/cmake/cmake.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/cmake/cmake.inc b/meta/recipes-devtools/cmake/cmake.inc
index 35d78eea177..957448445e6 100644
--- a/meta/recipes-devtools/cmake/cmake.inc
+++ b/meta/recipes-devtools/cmake/cmake.inc
@@ -11,7 +11,7 @@ generation, code generation, and template instantiation."
 HOMEPAGE = "http://www.cmake.org/"
 BUGTRACKER = "http://public.kitware.com/Bug/my_view_page.php"
 SECTION = "console/utils"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://Copyright.txt;md5=622747147b46f22e1953876a7cba3323 \
                     file://Source/cmake.h;md5=4494dee184212fc89c469c3acd555a14;beginline=1;endline=3 \
                     "
-- 
2.17.1


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

* [PATCH 06/23] flex: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (2 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 02/23] wpa-supplicant: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 05/23] file: " Christophe PRIOUZEAU
                   ` (19 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of flex is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-devtools/flex/flex_2.6.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/flex/flex_2.6.0.bb b/meta/recipes-devtools/flex/flex_2.6.0.bb
index 12ce0cb461e..9bdd99c59f8 100644
--- a/meta/recipes-devtools/flex/flex_2.6.0.bb
+++ b/meta/recipes-devtools/flex/flex_2.6.0.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "Flex is a fast lexical analyser generator.  Flex is a tool for ge
 lexical patterns in text."
 HOMEPAGE = "http://sourceforge.net/projects/flex/"
 SECTION = "devel"
-LICENSE = "BSD"
+LICENSE = "BSD-2-Clause"
 
 DEPENDS = "${@bb.utils.contains('PTEST_ENABLED', '1', 'bison-native flex-native', '', d)}"
 BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [PATCH 05/23] file: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (3 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 06/23] flex: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 04/23] cmake: " Christophe PRIOUZEAU
                   ` (18 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of file is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-devtools/file/file_5.37.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/file/file_5.37.bb b/meta/recipes-devtools/file/file_5.37.bb
index 803aa9a271a..a840dbc012b 100644
--- a/meta/recipes-devtools/file/file_5.37.bb
+++ b/meta/recipes-devtools/file/file_5.37.bb
@@ -5,7 +5,7 @@ HOMEPAGE = "http://www.darwinsys.com/file/"
 SECTION = "console/utils"
 
 # two clause BSD
-LICENSE = "BSD"
+LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=0251eaec1188b20d9a72c502ecfdda1b"
 
 DEPENDS = "zlib file-replacement-native"
-- 
2.17.1


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

* [PATCH 07/23] python-async: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (5 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 04/23] cmake: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 08/23] python-smmap: " Christophe PRIOUZEAU
                   ` (16 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of python-async is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-devtools/python/python-async.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/python/python-async.inc b/meta/recipes-devtools/python/python-async.inc
index 139bf2c51c7..af887dc4e56 100644
--- a/meta/recipes-devtools/python/python-async.inc
+++ b/meta/recipes-devtools/python/python-async.inc
@@ -1,7 +1,7 @@
 SUMMARY = "Python framework to process interdependent tasks in a pool of workers"
 HOMEPAGE = "http://github.com/gitpython-developers/async"
 SECTION = "devel/python"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=88df8e78b9edfd744953862179f2d14e"
 
 inherit pypi
-- 
2.17.1


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

* [PATCH 08/23] python-smmap: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (6 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 07/23] python-async: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 10/23] libtirpc: " Christophe PRIOUZEAU
                   ` (15 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of python-smmap is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-devtools/python/python-smmap.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/python/python-smmap.inc b/meta/recipes-devtools/python/python-smmap.inc
index 1a2259e4b8e..b878b4b399c 100644
--- a/meta/recipes-devtools/python/python-smmap.inc
+++ b/meta/recipes-devtools/python/python-smmap.inc
@@ -4,7 +4,7 @@ help unifying memory mapped access on 32 and 64 bit systems and to help \
 managing resources more efficiently."
 HOMEPAGE = "http://github.com/gitpython-developers/GitPython"
 SECTION = "devel/python"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
 
 inherit pypi
-- 
2.17.1


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

* [PATCH 10/23] libtirpc: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (7 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 08/23] python-smmap: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 09/23] libarchive: " Christophe PRIOUZEAU
                   ` (14 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of libtirpc is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb b/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb
index 9c480b825f2..e73ffe7b17d 100644
--- a/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb
+++ b/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "Libtirpc is a port of Suns Transport-Independent RPC library to L
 SECTION = "libs/network"
 HOMEPAGE = "http://sourceforge.net/projects/libtirpc/"
 BUGTRACKER = "http://sourceforge.net/tracker/?group_id=183075&atid=903784"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=f835cce8852481e4b2bbbdd23b5e47f3 \
                     file://src/netname.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24"
 
-- 
2.17.1


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

* [PATCH 09/23] libarchive: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (8 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 10/23] libtirpc: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 13/23] rpcbind: " Christophe PRIOUZEAU
                   ` (13 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of libarchive is BSD-2-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-extended/libarchive/libarchive_3.4.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/libarchive/libarchive_3.4.0.bb b/meta/recipes-extended/libarchive/libarchive_3.4.0.bb
index c789cd44d21..9c0d5e26ec3 100644
--- a/meta/recipes-extended/libarchive/libarchive_3.4.0.bb
+++ b/meta/recipes-extended/libarchive/libarchive_3.4.0.bb
@@ -2,7 +2,7 @@ SUMMARY = "Support for reading various archive formats"
 DESCRIPTION = "C library and command-line tools for reading and writing tar, cpio, zip, ISO, and other archive formats"
 HOMEPAGE = "http://www.libarchive.org/"
 SECTION = "devel"
-LICENSE = "BSD"
+LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=fe01f5e02b1f0cc934d593a7b0ddceb6"
 
 DEPENDS = "e2fsprogs-native"
-- 
2.17.1


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

* [PATCH 12/23] pbzip2: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (11 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 11/23] lighttpd: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 15/23] libxpm: " Christophe PRIOUZEAU
                   ` (10 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of pbzip2 is BSD-4-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb b/meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb
index 7b1b0a117e5..1275cc00972 100644
--- a/meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb
+++ b/meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb
@@ -5,7 +5,7 @@ machines. The output of this version is fully compatible with bzip2 v1.0.2 or \
 newer (ie: anything compressed with pbzip2 can be decompressed with bzip2)."
 HOMEPAGE = "http://compression.ca/pbzip2/"
 SECTION = "console/utils"
-LICENSE = "BSD"
+LICENSE = "BSD-4-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=398b8832c6f840cfebd20ab2be6a3743"
 
 DEPENDS = "bzip2"
-- 
2.17.1


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

* [PATCH 11/23] lighttpd: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (10 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 13/23] rpcbind: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 12/23] pbzip2: " Christophe PRIOUZEAU
                   ` (11 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of lighttpd is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb
index 2e83c821a67..20ce6987293 100644
--- a/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb
+++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb
@@ -2,7 +2,7 @@ SUMMARY = "Lightweight high-performance web server"
 HOMEPAGE = "http://www.lighttpd.net/"
 BUGTRACKER = "http://redmine.lighttpd.net/projects/lighttpd/issues"
 
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579"
 
 SECTION = "net"
-- 
2.17.1


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

* [PATCH 13/23] rpcbind: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (9 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 09/23] libarchive: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 11/23] lighttpd: " Christophe PRIOUZEAU
                   ` (12 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of rpcbind is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb b/meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb
index 7c96aca36b7..19d778b6d14 100644
--- a/meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb
+++ b/meta/recipes-extended/rpcbind/rpcbind_1.2.5.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "http://sourceforge.net/projects/rpcbind/"
 BUGTRACKER = "http://sourceforge.net/tracker/?group_id=201237&atid=976751"
 DEPENDS = "libtirpc quota"
 
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b46486e4c4a416602693a711bb5bfa39 \
                     file://src/rpcinfo.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24"
 
-- 
2.17.1


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

* [PATCH 14/23] tcp-wrappers: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (13 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 15/23] libxpm: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 17/23] libtheora: " Christophe PRIOUZEAU
                   ` (8 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of tcp-wrappers is BSD-1-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb b/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb
index dd945c970f1..bd0c84c242a 100644
--- a/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb
+++ b/meta/recipes-extended/tcp-wrappers/tcp-wrappers_7.6.bb
@@ -4,7 +4,7 @@ DESCRIPTION = "Tools for monitoring and filtering incoming requests for tcp \
                services."
 SECTION = "console/network"
 
-LICENSE = "BSD"
+LICENSE = "BSD-1-Clause"
 LIC_FILES_CHKSUM = "file://DISCLAIMER;md5=071bd69cb78b18888ea5e3da5c3127fa"
 PR ="r10"
 
-- 
2.17.1


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

* [PATCH 15/23] libxpm: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (12 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 12/23] pbzip2: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 14/23] tcp-wrappers: " Christophe PRIOUZEAU
                   ` (9 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of libxpm is MIT.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-graphics/xorg-lib/libxpm_3.5.12.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/xorg-lib/libxpm_3.5.12.bb b/meta/recipes-graphics/xorg-lib/libxpm_3.5.12.bb
index 57b202cae3c..64d829b31eb 100644
--- a/meta/recipes-graphics/xorg-lib/libxpm_3.5.12.bb
+++ b/meta/recipes-graphics/xorg-lib/libxpm_3.5.12.bb
@@ -10,7 +10,7 @@ pixmap format, which is commonly used in legacy X applications.  XPM is \
 an extension of the monochrome XBM bitmap specificied in the X \
 protocol."
 
-LICENSE = "BSD"
+LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=51f4270b012ecd4ab1a164f5f4ed6cf7"
 DEPENDS += "libxext libsm libxt gettext-native"
 PE = "1"
-- 
2.17.1


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

* [PATCH 16/23] libogg: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (16 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 18/23] libvorbis: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 19/23] speex: " Christophe PRIOUZEAU
                   ` (5 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of libogg is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-multimedia/libogg/libogg_1.3.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/libogg/libogg_1.3.4.bb b/meta/recipes-multimedia/libogg/libogg_1.3.4.bb
index 8ca001079db..c4004619b93 100644
--- a/meta/recipes-multimedia/libogg/libogg_1.3.4.bb
+++ b/meta/recipes-multimedia/libogg/libogg_1.3.4.bb
@@ -5,7 +5,7 @@ necessary to codec libraries like libvorbis."
 HOMEPAGE = "http://xiph.org/"
 BUGTRACKER = "https://trac.xiph.org/newticket"
 SECTION = "libs"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=db1b7a668b2a6f47b2af88fb008ad555 \
                     file://include/ogg/ogg.h;beginline=1;endline=11;md5=eda812856f13a3b1326eb8f020cc3b0b"
 
-- 
2.17.1


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

* [PATCH 18/23] libvorbis: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (15 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 17/23] libtheora: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 16/23] libogg: " Christophe PRIOUZEAU
                   ` (6 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of libvorbis is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-multimedia/libvorbis/libvorbis_1.3.6.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/libvorbis/libvorbis_1.3.6.bb b/meta/recipes-multimedia/libvorbis/libvorbis_1.3.6.bb
index cbda6dc2fc0..1a3cdc22696 100644
--- a/meta/recipes-multimedia/libvorbis/libvorbis_1.3.6.bb
+++ b/meta/recipes-multimedia/libvorbis/libvorbis_1.3.6.bb
@@ -5,7 +5,7 @@ is the main vorbis codec library."
 HOMEPAGE = "http://www.vorbis.com/"
 BUGTRACKER = "https://trac.xiph.org"
 SECTION = "libs"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=70c7063491d2d9f76a098d62ed5134f1 \
                     file://include/vorbis/vorbisenc.h;beginline=1;endline=11;md5=d1c1d138863d6315131193d4046d81cb"
 DEPENDS = "libogg"
-- 
2.17.1


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

* [PATCH 17/23] libtheora: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (14 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 14/23] tcp-wrappers: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 18/23] libvorbis: " Christophe PRIOUZEAU
                   ` (7 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of libtheora is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-multimedia/libtheora/libtheora_1.1.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/libtheora/libtheora_1.1.1.bb b/meta/recipes-multimedia/libtheora/libtheora_1.1.1.bb
index 664d8480a22..178e1a9240f 100644
--- a/meta/recipes-multimedia/libtheora/libtheora_1.1.1.bb
+++ b/meta/recipes-multimedia/libtheora/libtheora_1.1.1.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "The libtheora reference implementation provides the standard enco
 HOMEPAGE = "http://xiph.org/"
 BUGTRACKER = "https://trac.xiph.org/newticket"
 SECTION = "libs"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=cf91718f59eb6a83d06dc7bcaf411132"
 DEPENDS = "libogg"
 
-- 
2.17.1


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

* [PATCH 19/23] speex: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (17 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 16/23] libogg: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 20/23] speexdsp: " Christophe PRIOUZEAU
                   ` (4 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of speex is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-multimedia/speex/speex_1.2.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/speex/speex_1.2.0.bb b/meta/recipes-multimedia/speex/speex_1.2.0.bb
index 19636bb202e..3a0911d6f83 100644
--- a/meta/recipes-multimedia/speex/speex_1.2.0.bb
+++ b/meta/recipes-multimedia/speex/speex_1.2.0.bb
@@ -2,7 +2,7 @@ SUMMARY = "Speech Audio Codec"
 DESCRIPTION = "Speex is an Open Source/Free Software patent-free audio compression format designed for speech."
 HOMEPAGE = "http://www.speex.org"
 SECTION = "libs"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=314649d8ba9dd7045dfb6683f298d0a8 \
                     file://include/speex/speex.h;beginline=1;endline=34;md5=ef8c8ea4f7198d71cf3509c6ed05ea50"
 DEPENDS = "libogg speexdsp"
-- 
2.17.1


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

* [PATCH 20/23] speexdsp: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (18 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 19/23] speex: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 21/23] libwebp: " Christophe PRIOUZEAU
                   ` (3 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of speexdsp is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-multimedia/speex/speexdsp_1.2rc3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/speex/speexdsp_1.2rc3.bb b/meta/recipes-multimedia/speex/speexdsp_1.2rc3.bb
index 6b1acedbef7..03c949be22e 100644
--- a/meta/recipes-multimedia/speex/speexdsp_1.2rc3.bb
+++ b/meta/recipes-multimedia/speex/speexdsp_1.2rc3.bb
@@ -2,7 +2,7 @@ SUMMARY = "A patent-free DSP library"
 DESCRIPTION = "SpeexDSP is a patent-free, Open Source/Free Software DSP library."
 HOMEPAGE = "http://www.speex.org"
 SECTION = "libs"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=314649d8ba9dd7045dfb6683f298d0a8"
 
 SRC_URI = "http://downloads.xiph.org/releases/speex/speexdsp-${PV}.tar.gz \
-- 
2.17.1


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

* [PATCH 23/23] p11-kit: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (21 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 22/23] libpcre: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-12  9:48 ` [PATCH 00/23] Update BSD license Richard Purdie
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of p11-kit is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-support/p11-kit/p11-kit_0.23.16.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/p11-kit/p11-kit_0.23.16.1.bb b/meta/recipes-support/p11-kit/p11-kit_0.23.16.1.bb
index 54455da1bb7..48bf027f479 100644
--- a/meta/recipes-support/p11-kit/p11-kit_0.23.16.1.bb
+++ b/meta/recipes-support/p11-kit/p11-kit_0.23.16.1.bb
@@ -1,5 +1,5 @@
 SUMMARY = "Provides a way to load and enumerate PKCS#11 modules"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=02933887f609807fbb57aa4237d14a50"
 
 inherit autotools gettext pkgconfig gtk-doc
-- 
2.17.1


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

* [PATCH 21/23] libwebp: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (19 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 20/23] speexdsp: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 22/23] libpcre: " Christophe PRIOUZEAU
                   ` (2 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of libwebp is BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-multimedia/webp/libwebp_1.0.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/webp/libwebp_1.0.3.bb b/meta/recipes-multimedia/webp/libwebp_1.0.3.bb
index a4d1ae43d93..5082bf03748 100644
--- a/meta/recipes-multimedia/webp/libwebp_1.0.3.bb
+++ b/meta/recipes-multimedia/webp/libwebp_1.0.3.bb
@@ -9,7 +9,7 @@ DESCRIPTION = "WebP is a method of lossy and lossless compression that can be \
 HOMEPAGE = "https://developers.google.com/speed/webp/"
 SECTION = "libs"
 
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=6e8dee932c26f2dab503abf70c96d8bb \
                     file://PATENTS;md5=c6926d0cb07d296f886ab6e0cc5a85b7"
 
-- 
2.17.1


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

* [PATCH 22/23] libpcre: update license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (20 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 21/23] libwebp: " Christophe PRIOUZEAU
@ 2019-10-07 13:08 ` Christophe PRIOUZEAU
  2019-10-07 13:08 ` [PATCH 23/23] p11-kit: " Christophe PRIOUZEAU
  2019-10-12  9:48 ` [PATCH 00/23] Update BSD license Richard Purdie
  23 siblings, 0 replies; 25+ messages in thread
From: Christophe PRIOUZEAU @ 2019-10-07 13:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christophe PRIOUZEAU

The license of the two libraries are BSD-3-Clause.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
 meta/recipes-support/libpcre/libpcre2_10.33.bb | 2 +-
 meta/recipes-support/libpcre/libpcre_8.43.bb   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-support/libpcre/libpcre2_10.33.bb b/meta/recipes-support/libpcre/libpcre2_10.33.bb
index 50b26753b4f..87da3137696 100644
--- a/meta/recipes-support/libpcre/libpcre2_10.33.bb
+++ b/meta/recipes-support/libpcre/libpcre2_10.33.bb
@@ -7,7 +7,7 @@ not the original PCRE 8.x series."
 SUMMARY = "Perl Compatible Regular Expressions version 2"
 HOMEPAGE = "http://www.pcre.org"
 SECTION = "devel"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=b1588d3bb4cb0e1f5a597d908f8c5b37"
 
 SRC_URI = "https://ftp.pcre.org/pub/pcre/pcre2-${PV}.tar.bz2 \
diff --git a/meta/recipes-support/libpcre/libpcre_8.43.bb b/meta/recipes-support/libpcre/libpcre_8.43.bb
index b97af08b250..f9a22fee9df 100644
--- a/meta/recipes-support/libpcre/libpcre_8.43.bb
+++ b/meta/recipes-support/libpcre/libpcre_8.43.bb
@@ -5,7 +5,7 @@ to the POSIX regular expression API."
 SUMMARY = "Perl Compatible Regular Expressions"
 HOMEPAGE = "http://www.pcre.org"
 SECTION = "devel"
-LICENSE = "BSD"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=91bee59d1b327eb1599b4c673e2fb3d1"
 SRC_URI = "https://ftp.pcre.org/pub/pcre/pcre-${PV}.tar.bz2 \
            file://fix-pcre-name-collision.patch \
-- 
2.17.1


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

* Re: [PATCH 00/23] Update BSD license
  2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
                   ` (22 preceding siblings ...)
  2019-10-07 13:08 ` [PATCH 23/23] p11-kit: " Christophe PRIOUZEAU
@ 2019-10-12  9:48 ` Richard Purdie
  23 siblings, 0 replies; 25+ messages in thread
From: Richard Purdie @ 2019-10-12  9:48 UTC (permalink / raw)
  To: Christophe PRIOUZEAU, openembedded-core

On Mon, 2019-10-07 at 13:08 +0000, Christophe PRIOUZEAU wrote:
> Some recipes use BSD as license while SPDX license reference : BSD-0-
> Clause,
> BSD-1-Clause, BSD-2-Clause, BSD-3-Clause, BSD-4-Clause.
> The goal of this request are to indicate the SPDX license euqivalent
> for recipes
> which indicate "BSD" as license.
> 
> The following changes since commit
> 108ce1447ca5dcb838ef67ef6b9a9d25e993da1d:

Thanks for this. In future if there are more of these I'd like to have
one tweak, specifically the commit message being "Clarify BSD license
variant" rather than "update license" which is a little less specific.

For this series I've just tweaked the commit messages to save reposting
them.

It is good to have these clarified!

Cheers,

Richard



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

end of thread, other threads:[~2019-10-12  9:48 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-07 13:08 [PATCH 00/23] Update BSD license Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 01/23] libpcap: update license Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 03/23] ovmf: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 02/23] wpa-supplicant: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 06/23] flex: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 05/23] file: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 04/23] cmake: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 07/23] python-async: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 08/23] python-smmap: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 10/23] libtirpc: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 09/23] libarchive: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 13/23] rpcbind: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 11/23] lighttpd: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 12/23] pbzip2: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 15/23] libxpm: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 14/23] tcp-wrappers: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 17/23] libtheora: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 18/23] libvorbis: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 16/23] libogg: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 19/23] speex: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 20/23] speexdsp: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 21/23] libwebp: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 22/23] libpcre: " Christophe PRIOUZEAU
2019-10-07 13:08 ` [PATCH 23/23] p11-kit: " Christophe PRIOUZEAU
2019-10-12  9:48 ` [PATCH 00/23] Update BSD license Richard Purdie

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.