summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glib-networking
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-05-15 14:29:53 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-05-22 10:53:48 +0100
commit411835b729c905745ff246c94a0c366a12948648 (patch)
tree6145a63921656dc31fbffab18f78a3807de3d314 /meta/recipes-core/glib-networking
parent04dd0ecc49c9fdcd424d86ab0aa80a478099b837 (diff)
downloadpoky-411835b729c905745ff246c94a0c366a12948648.tar.gz
glib-networking: fix LICENSE statement
The glib-networking license is LGPLv2.1 _or later_ and also has an additional exception if OpenSSL is being used. Add source comments to the checksum, and extend LICENSE if the openssl PACKAGECONFIG has been enabled. (From OE-Core rev: cdfeb38ffc8d15618be0dd768c9abf44ff23678e) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glib-networking')
-rw-r--r--meta/recipes-core/glib-networking/glib-networking_2.74.0.bb9
1 files changed, 7 insertions, 2 deletions
diff --git a/meta/recipes-core/glib-networking/glib-networking_2.74.0.bb b/meta/recipes-core/glib-networking/glib-networking_2.74.0.bb
index b3a88aca8d..ebf9e26050 100644
--- a/meta/recipes-core/glib-networking/glib-networking_2.74.0.bb
+++ b/meta/recipes-core/glib-networking/glib-networking_2.74.0.bb
@@ -3,8 +3,13 @@ DESCRIPTION = "glib-networking contains the implementations of certain GLib netw
3HOMEPAGE = "https://gitlab.gnome.org/GNOME/glib-networking/" 3HOMEPAGE = "https://gitlab.gnome.org/GNOME/glib-networking/"
4BUGTRACKER = "http://bugzilla.gnome.org" 4BUGTRACKER = "http://bugzilla.gnome.org"
5 5
6LICENSE = "LGPL-2.1-only" 6LICENSE = "LGPL-2.1-or-later"
7LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" 7LICENSE:append = "${@bb.utils.contains('PACKAGECONFIG', 'openssl', ' & Glib-Networking-OpenSSL-Exception', '', d)}"
8NO_GENERIC_LICENSE[Glib-Networking-OpenSSL-Exception] = "LICENSE_EXCEPTION"
9
10LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \
11 file://LICENSE_EXCEPTION;md5=0f5be697951b5e71aff00f4a4ce66be8 \
12 file://tls/base/gtlsconnection-base.c;beginline=7;endline=22;md5=ab641ac307f3337811008ea9afe7059f"
8 13
9SECTION = "libs" 14SECTION = "libs"
10DEPENDS = "glib-2.0-native glib-2.0" 15DEPENDS = "glib-2.0-native glib-2.0"