It is not possible to whitelist packages, WHITELIST_<license> only takes recipe 
names. This seems like a shortcoming, and doesn’t match INCOMPATIBLE_LICENSE, 
which works with packages… I am not sure how to address that shortcoming 
though, as it wouldn’t be right to allow mixing of recipes and packages in 
WHITELIST_<license>, which means a new variable would need to be introduced for 
whitelisting individual packages, and I do not know if it is worth the trouble.

Setting INCOMPATIBLE_LICENSE per image is only available with master, so that 
is not yet an option (we’re currently at Warrior and won’t reach Dunfell till 
sometime this fall).

That said, I do not have any strong feelings about this patch. The issue was 
raised by some of our developers, and we have a corresponding patch locally, so 
I thought I’d just pass it along. If there is no interest in in, then just drop 
it.

//Peter

From: Alexander Kanavin <[email protected]>
Sent: den 22 december 2019 14:21
To: Peter Kjellerstedt <[email protected]>
Cc: [email protected]
Subject: Re: [OE-core] [master][zeus][PATCH] cairo: Adapt license for cairo-dbg 
and cairo-src based on contents

-dbg and -src packages are unlikely to be shipped to customers. How about 
either whitelisting them globally, or setting INCOMPABIBLE_LICENSE per image?

What the patch does with LICENSE-dbg/src feels hack-ish to be honest; also 
there are other recipes with a similar layout which would also need similar 
fixups.

Alex

On Sun, 22 Dec 2019 at 14:01, Peter Kjellerstedt 
<[email protected]<mailto:[email protected]>> wrote:
*ping*

//Peter

> -----Original Message-----
> From: 
> [email protected]<mailto:[email protected]>
>  <openembedded-core-
> [email protected]<mailto:[email protected]>> On 
> Behalf Of Peter Kjellerstedt
> Sent: den 5 december 2019 23:26
> To: 
> [email protected]<mailto:[email protected]>
> Subject: [OE-core] [master][zeus][PATCH] cairo: Adapt license for cairo-
> dbg and cairo-src based on contents
>
> Introduce a PACKAGECONFIG "trace" to disable cairo-trace (the only
> part of the code licensed as GPL-3.0, and which is normally packaged
> separately in cairo-perf-utils). By disabling this, we can adapt the
> licenses for cairo-dbg and cairo-src so that they do not include
> "GPLv3+" when trace is disabled and thus they can be used also when,
> e.g., GPL-3.0 is blacklisted in INCOMPATIBLE_LICENSE.
>
> The "trace" PACKAGECONFIG is enabled by default for backwards
> compatibility.
>
> Signed-off-by: Peter Kjellerstedt 
> <[email protected]<mailto:[email protected]>>
> ---
>  meta/recipes-graphics/cairo/cairo_1.16.0.bb<http://cairo_1.16.0.bb> | 8 
> +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git 
> a/meta/recipes-graphics/cairo/cairo_1.16.0.bb<http://cairo_1.16.0.bb> 
> b/meta/recipes-
> graphics/cairo/cairo_1.16.0.bb<http://cairo_1.16.0.bb>
> index e3de3f6164..36a7b3c180 100644
> --- a/meta/recipes-graphics/cairo/cairo_1.16.0.bb<http://cairo_1.16.0.bb>
> +++ b/meta/recipes-graphics/cairo/cairo_1.16.0.bb<http://cairo_1.16.0.bb>
> @@ -17,6 +17,10 @@ LICENSE_${PN}-doc = "MPL-1.1 | LGPLv2.1"
>  LICENSE_${PN}-gobject = "MPL-1.1 | LGPLv2.1"
>  LICENSE_${PN}-script-interpreter = "MPL-1.1 | LGPLv2.1"
>  LICENSE_${PN}-perf-utils = "GPLv3+"
> +# Adapt the licenses for cairo-dbg and cairo-src depending on whether
> +# cairo-trace is being built.
> +LICENSE_${PN}-dbg = "(MPL-1.1 |
> LGPLv2.1)${@bb.utils.contains('PACKAGECONFIG<mailto:$%[email protected]('PACKAGECONFIG>',
>  'trace', ' & GPLv3+', '',
> d)}"
> +LICENSE_${PN}-src = "(MPL-1.1 |
> LGPLv2.1)${@bb.utils.contains('PACKAGECONFIG<mailto:$%[email protected]('PACKAGECONFIG>',
>  'trace', ' & GPLv3+', '',
> d)}"
>
>  LIC_FILES_CHKSUM = "file://COPYING;md5=e73e999e0c72b5ac9012424fa157ad77"
>
> @@ -40,7 +44,8 @@ X11DEPENDS = "virtual/libx11 libsm libxrender libxext"
>
>  PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'directfb', d)}
> \
>                     ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11
> xcb', '', d)} \
> -                   ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl',
> 'opengl', '', 
> d)}<mailto:$%[email protected]('DISTRO_FEATURES',%20'directfb',%20d)%7d%0b%3e%20\%0b%3e
>  %20 %20 %20 %20 %20 %20 %20 %20 %20 %20 
> $%[email protected]('DISTRO_FEATURES',%20'x11',%20'x11%0b%3e%20xcb',%20'',%20d)%7d%20\%0b%3e%20-
>  %20 %20 %20 %20 %20 %20 %20 %20 %20 
> $%[email protected]('DISTRO_FEATURES',%20'x11%20opengl',%0b%3e%20'opengl',%20'',%20d)%7d>"
> +                   
> ${@bb.utils.contains('DISTRO_FEATURES<mailto:$%[email protected]('DISTRO_FEATURES>',
>  'x11 opengl',
> 'opengl', '', d)} \
> +                   trace"
>
>  PACKAGECONFIG[x11] = "--with-x=yes -enable-xlib,--with-x=no --disable-
> xlib,${X11DEPENDS}"
>  PACKAGECONFIG[xcb] = "--enable-xcb,--disable-xcb,libxcb"
> @@ -49,6 +54,7 @@ PACKAGECONFIG[valgrind] = "--enable-valgrind=yes,--
> disable-valgrind,valgrind"
>  PACKAGECONFIG[egl] = "--enable-egl=yes,--disable-egl,virtual/egl"
>  PACKAGECONFIG[glesv2] = "--enable-glesv2,--disable-
> glesv2,virtual/libgles2"
>  PACKAGECONFIG[opengl] = "--enable-gl,--disable-gl,virtual/libgl"
> +PACKAGECONFIG[trace] = "--enable-trace,--disable-trace"
>
>  EXTRA_OECONF += " \
>      
> ${@bb.utils.contains('TARGET_FPU<mailto:$%[email protected]('TARGET_FPU>', 
> 'soft', '--disable-some-floating-
> point', '', d)} \
> --
> 2.21.0
>
> --
> _______________________________________________
> Openembedded-core mailing list
> [email protected]<mailto:[email protected]>
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
_______________________________________________
Openembedded-core mailing list
[email protected]<mailto:[email protected]>
http://lists.openembedded.org/mailman/listinfo/openembedded-core
-- 
_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.openembedded.org/mailman/listinfo/openembedded-core

Reply via email to