[meta-cloud-services][PATCH] layer.conf: Update to kirkstone namespace
wangmy
Signed-off-by: Wang Mingyu <wangmy@...>
--- meta-openstack/conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-openstack/conf/layer.conf b/meta-openstack/conf/layer.conf index bd5a8ac7..b112030f 100644 --- a/meta-openstack/conf/layer.conf +++ b/meta-openstack/conf/layer.conf @@ -7,7 +7,7 @@ BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend" BBFILE_COLLECTIONS += "openstack-layer" BBFILE_PATTERN_openstack-layer := "^${LAYERDIR}/" BBFILE_PRIORITY_openstack-layer = "5" -LAYERSERIES_COMPAT_openstack-layer = "honister" +LAYERSERIES_COMPAT_openstack-layer = "kirkstone" BB_DANGLINGAPPENDS_WARNONLY ?= "true" LAYERDEPENDS_openstack-layer = " \ -- 2.25.1
|
|
[PATCH] libvirt: backport patch to fix compile error
kai
From: Kai Kang <kai.kang@...>
Backport patch to fix compile error of libvirt: | runtime error: file ../libvirt-7.2.0/docs/page.xsl line 217 element element | xsl:element: The effective name '' is not a valid QName. Signed-off-by: Kai Kang <kai.kang@...> --- ...cs-Fix-template-matching-in-page.xsl.patch | 64 +++++++++++++++++++ recipes-extended/libvirt/libvirt_7.2.0.bb | 1 + 2 files changed, 65 insertions(+) create mode 100644 recipes-extended/libvirt/libvirt/0001-docs-Fix-template-matching-in-page.xsl.patch diff --git a/recipes-extended/libvirt/libvirt/0001-docs-Fix-template-matching-in-page.xsl.patch b/recipes-extended/libvirt/libvirt/0001-docs-Fix-template-matching-in-page.xsl.patch new file mode 100644 index 0000000..9dd650e --- /dev/null +++ b/recipes-extended/libvirt/libvirt/0001-docs-Fix-template-matching-in-page.xsl.patch @@ -0,0 +1,64 @@ +Upstream-Status: Backport + +Signed-off-by: Kai Kang <kai.kang@...> + +From 54814c87f3706cc8eb894634ebef0f9cf7dabae6 Mon Sep 17 00:00:00 2001 +From: Martin Kletzander <mkletzan@...> +Date: Mon, 21 Feb 2022 09:26:13 +0100 +Subject: [PATCH] docs: Fix template matching in page.xsl + +Our last default template had a match of "node()" which incidentally matched +everything, including text nodes. Since this has the same priority according to +the XSLT spec, section 5.5: + + https://www.w3.org/TR/1999/REC-xslt-19991116#conflict + +this is an error. Also according to the same spec section, the XSLT processor +may signal the error or pick the last rule. + +This was uncovered with libxslt 1.1.35 which contains the following commit: + + https://gitlab.gnome.org/GNOME/libxslt/-/commit/b0074eeca3c6b21b4da14fdf712b853900c51635 + +which makes the build fail with: + + runtime error: file ../docs/page.xsl line 223 element element + xsl:element: The effective name '' is not a valid QName. + +because our last rule also matches text nodes and we are trying to extract the +node name out of them. + +To fix this we change the match to "*" which only matches elements and not all +the nodes, and to avoid any possible errors with different XSLT processors we +also bump the priority of the match="text()" rule a little higher, just in case +someone needs to use an XSLT processor that chooses signalling the error instead +of the optional recovery. + +https://bugs.gentoo.org/833586 + +Signed-off-by: Martin Kletzander <mkletzan@...> +--- + docs/page.xsl | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/docs/page.xsl b/docs/page.xsl +index fd67918d3b..72a6fa0842 100644 +--- a/docs/page.xsl ++++ b/docs/page.xsl +@@ -215,11 +215,11 @@ + </xsl:element> + </xsl:template> + +- <xsl:template match="text()" mode="copy"> ++ <xsl:template match="text()" mode="copy" priority="0"> + <xsl:value-of select="."/> + </xsl:template> + +- <xsl:template match="node()" mode="copy"> ++ <xsl:template match="*" mode="copy"> + <xsl:element name="{name()}"> + <xsl:copy-of select="./@*"/> + <xsl:apply-templates mode="copy" /> +-- +2.33.0 + diff --git a/recipes-extended/libvirt/libvirt_7.2.0.bb b/recipes-extended/libvirt/libvirt_7.2.0.bb index 5ad7d59..1fc55b8 100644 --- a/recipes-extended/libvirt/libvirt_7.2.0.bb +++ b/recipes-extended/libvirt/libvirt_7.2.0.bb @@ -31,6 +31,7 @@ SRC_URI = "http://libvirt.org/sources/libvirt-${PV}.tar.xz;name=libvirt \ file://0002-meson-Fix-compatibility-with-Meson-0.58.patch \ file://0001-security-fix-SELinux-label-generation-logic.patch \ file://0001-storage_driver-Unlock-object-on-ACL-fail-in-storageP.patch \ + file://0001-docs-Fix-template-matching-in-page.xsl.patch \ " SRC_URI[libvirt.md5sum] = "92044b629216e44adce63224970a54a3" -- 2.17.1
|
|
[PATCH] xen: Override CC and CPP in make command line
Bertrand Marquis
From: Michal Orzel <michal.orzel@...>
After 4.16 release, Xen build system has been changed significantly. When building latest status of Xen it was observed that commit 317c98cb91 broke the hypervisor build on arm32 due to the change in handling Rules.mk that xen.inc modifies to override CC and CPP. In order to fix the issue this patch moves overriding CC and CPP from Rules.mk to make command line by adding them to EXTRA_OEMAKE:arm. Take the opportunity to bump SRCREV of xen_git.bb and xen-tools_git.bb to the current status of master. Signed-off-by: Michal Orzel <michal.orzel@...> --- recipes-extended/xen/xen-hypervisor.inc | 8 ++++++++ recipes-extended/xen/xen-tools_git.bb | 4 ++-- recipes-extended/xen/xen.inc | 6 ------ recipes-extended/xen/xen_git.bb | 4 ++-- 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/recipes-extended/xen/xen-hypervisor.inc b/recipes-extended/x= en/xen-hypervisor.inc index 81e361f..6f3d24d 100644 --- a/recipes-extended/xen/xen-hypervisor.inc +++ b/recipes-extended/xen/xen-hypervisor.inc @@ -48,6 +48,14 @@ do_configure() { fi } =20 +# The hypervisor binary for arm must not be built with the hard floating= point +# ABI. Override CC and CPP when invoking make so that they do not contai= n +# TUNE_CCARGS. +EXTRA_OEMAKE:arm +=3D "CC=3D'${CCACHE}${HOST_PREFIX}gcc ${TOOLCHAIN_OPTI= ONS} \ + ${CC_REPRODUCIBLE_OPTIONS}' \ + CPP=3D'${CCACHE}${HOST_PREFIX}gcc -E ${TOOLCHAIN_OP= TIONS} \ + ${CC_REPRODUCIBLE_OPTIONS}'" + do_compile() { oe_runmake xen PYTHON=3D"${PYTHON}" \ EXTRA_CFLAGS_XEN_CORE=3D"${EXTRA_CFLAGS_XEN_CORE}" diff --git a/recipes-extended/xen/xen-tools_git.bb b/recipes-extended/xen= /xen-tools_git.bb index 8ff9c4c..e733f1d 100644 --- a/recipes-extended/xen/xen-tools_git.bb +++ b/recipes-extended/xen/xen-tools_git.bb @@ -1,5 +1,5 @@ -# master status on 2020-10-21 -SRCREV ?=3D "23ec1ebc8acbfd2bf06f6085a776f0db923f9fa9" +# master status on 2022-03-08 +SRCREV ?=3D "9d4a44380d273de22d5753883cbf5581795ff24d" =20 XEN_REL ?=3D "4.16" XEN_BRANCH ?=3D "master" diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc index 4df99bf..8b86de5 100644 --- a/recipes-extended/xen/xen.inc +++ b/recipes-extended/xen/xen.inc @@ -193,12 +193,6 @@ do_post_patch() { fi } =20 -do_post_patch:append:arm() { - # The hypervisor binary must not be built with the hard floating poi= nt ABI. - echo "CC :=3D \$(filter-out ${TUNE_CCARGS},\$(CC))" >> ${S}/xen/arch= /arm/Rules.mk - echo "CPP :=3D \$(filter-out ${TUNE_CCARGS},\$(CPP))" >> ${S}/xen/ar= ch/arm/Rules.mk -} - addtask post_patch after do_patch before do_configure =20 # Allow all hypervisor settings in a defconfig diff --git a/recipes-extended/xen/xen_git.bb b/recipes-extended/xen/xen_g= it.bb index e014733..2fbfb54 100644 --- a/recipes-extended/xen/xen_git.bb +++ b/recipes-extended/xen/xen_git.bb @@ -1,5 +1,5 @@ -# master status on 2020-10-21 -SRCREV ?=3D "23ec1ebc8acbfd2bf06f6085a776f0db923f9fa9" +# master status on 2022-03-08 +SRCREV ?=3D "9d4a44380d273de22d5753883cbf5581795ff24d" =20 XEN_REL ?=3D "4.16" XEN_BRANCH ?=3D "master" --=20 2.25.1
|
|
Re: nerdctl
Joakim Roubert
On 2022-03-04 16:48, Bruce Ashfield wrote:
It took several months, but:Really cool!!! The recipe isn't available yet, since this is using a huge amount ofExcellent news! BR, /Joakim -- Joakim Roubert Senior Engineer Axis Communications AB Emdalavägen 14, SE-223 69 Lund, Sweden Tel: +46 46 272 18 00, Tel (direct): +46 46 272 27 48 Fax: +46 46 13 61 30, www.axis.com
|
|
Re: nerdctl
Bruce Ashfield
On Mon, May 10, 2021 at 3:15 PM Bruce Ashfield via
lists.yoctoproject.org <bruce.ashfield=gmail.com@...> wrote: (resending with the list address fixed) It took several months, but: root@qemux86-64:~# uname -a Linux qemux86-64 5.17.0-rc6-yoctodev-standard #1 SMP PREEMPT Sun Feb 27 22:36:33 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux root@qemux86-64:~# nerdctl --version nerdctl version 0.17.0-10-gf2427ff.m root@qemux86-64:~# The recipe isn't available yet, since this is using a huge amount of fetched go dependencies, using some new scripts/tooling that I created .. but at least I know the approach is feasible! Bruce
-- - Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end - "Use the force Harry" - Gandalf, Star Trek II
|
|
Re: Docker-Compose
Joakim Roubert
On 2022-03-04 16:25, Florian Ortner wrote:
If I add IMAGE_INSTALL_append " python3-docker-compose"Just a stupid question from me: You did write IMAGE_INSTALL_append = " python3-docker-compose" in your file (with the equals sign), didn't you? BR, /Joakim -- Joakim Roubert Senior Engineer Axis Communications AB Emdalavägen 14, SE-223 69 Lund, Sweden Tel: +46 46 272 18 00, Tel (direct): +46 46 272 27 48 Fax: +46 46 13 61 30, www.axis.com
|
|
Docker-Compose
Florian Ortner
Hello,
I have a question about how to integrate docker-compose into my build. I already activated 'virtualization' and added IMAGE_INSTALL_append = " docker" to local.conf. Docker is working on target. If I add IMAGE_INSTALL_append " python3-docker-compose" nothing really happens after bitbake at least on my target. I guess something in receipe recipes-containers/docker-compose/python3-docker-compose_1.25.4.bb is missing like doInstall() method. I'm using dunfell branch. How can I add docker-compose to my build? Regards, Florian
|
|
Re: [m-c-s][PATCH] glusterfs: switch from distutils3 to setuptools3
Bruce Ashfield
merged.
toggle quoted messageShow quoted text
Bruce In message: [meta-virtualization][m-c-s][PATCH] glusterfs: switch from distutils3 to setuptools3 on 28/02/2022 Jeremy Puhlman wrote:
---
|
|
Re: [PATCH] xen-*image-minimal: Install *xen-acpi-processor package only for x86* machines
Bruce Ashfield
Looks fine to me, so we have some ARM servers that have the ACPI feature that
toggle quoted messageShow quoted text
are broken. I've queued it to master-next, and will wait a bit to hear frmo Christopher. Bruce In message: [meta-virtualization][PATCH] xen-*image-minimal: Install *xen-acpi-processor package only for x86* machines on 02/03/2022 Kamil Dziezyk wrote:
Kernel module xen_acpi_processor is built only for x86* architectures,
|
|
Re: [PATCH] python3-dtc: fix missing files in sysroot
Bruce Ashfield
queued to master-next along side of Tim's fixes.
toggle quoted messageShow quoted text
Bruce In message: [meta-virtualization] [PATCH] python3-dtc: fix missing files in sysroot on 01/03/2022 Ross Burton wrote:
There is a bug in SWIG/setuptools where 'pip install' doesn't build
|
|
Re: [PATCH 1/2] python3-dtc: fix wheel build
Bruce Ashfield
queued to master-next. I'm still seeing some issues on a couple of builders,
toggle quoted messageShow quoted text
but will take are of sorting that out. I'll push the changes when I've figured it out. Bruce In message: [meta-virtualization] [PATCH 1/2] python3-dtc: fix wheel build on 27/02/2022 Tim Orling wrote:
The wheel that is built is ${S}/dist/libfdt-1.6.2.dev39+g4048aed.d20220103-cp310-cp310-linux_x86_64.whl
|
|
[PATCH] xen-*image-minimal: Install *xen-acpi-processor package only for x86* machines
Kamil Dziezyk
Kernel module xen_acpi_processor is built only for x86* architectures,
therefore 'kernel-module-xen-acpi-processor' package is compatible only with x86* machines. Issue-Id: SCM-3892 Signed-off-by: Kamil Dziezyk <kamil.dziezyk@...> Change-Id: I8dde00e3c78a1f9eea50b19fbc1981f5e26df133 --- recipes-extended/images/xen-guest-image-minimal.bb | 6 +++++- recipes-extended/images/xen-image-minimal.bb | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/recipes-extended/images/xen-guest-image-minimal.bb b/recipes-extended/images/xen-guest-image-minimal.bb index ca111b4..fced763 100644 --- a/recipes-extended/images/xen-guest-image-minimal.bb +++ b/recipes-extended/images/xen-guest-image-minimal.bb @@ -4,9 +4,13 @@ inherit core-image features_check IMAGE_INSTALL += " \ packagegroup-core-boot \ - ${@bb.utils.contains('MACHINE_FEATURES', 'acpi', 'kernel-module-xen-acpi-processor', '', d)} \ + ${@bb.utils.contains('MACHINE_FEATURES', 'acpi', '${XEN_ACPI_PROCESSOR_MODULE}', '', d)} \ " +XEN_ACPI_PROCESSOR_MODULE = "" +XEN_ACPI_PROCESSOR_MODULE:x86 = "kernel-module-xen-acpi-processor" +XEN_ACPI_PROCESSOR_MODULE:x86-64 = "kernel-module-xen-acpi-processor" + IMAGE_INSTALL += "${@bb.utils.contains('IMAGE_FEATURES', 'x11', ' xf86-video-fbdev', '', d)}" # Install xf86-video-vesa on x86 platforms. diff --git a/recipes-extended/images/xen-image-minimal.bb b/recipes-extended/images/xen-image-minimal.bb index ea596ce..f6fa5ed 100644 --- a/recipes-extended/images/xen-image-minimal.bb +++ b/recipes-extended/images/xen-image-minimal.bb @@ -5,7 +5,7 @@ INITRD_IMAGE = "core-image-minimal-initramfs" XEN_KERNEL_MODULES ?= "kernel-module-xen-blkback kernel-module-xen-gntalloc \ kernel-module-xen-gntdev kernel-module-xen-netback kernel-module-xen-wdt \ ${@bb.utils.contains('MACHINE_FEATURES', 'pci', "${XEN_PCIBACK_MODULE}", '', d)} \ - ${@bb.utils.contains('MACHINE_FEATURES', 'acpi', 'kernel-module-xen-acpi-processor', '', d)} \ + ${@bb.utils.contains('MACHINE_FEATURES', 'acpi', '${XEN_ACPI_PROCESSOR_MODULE}', '', d)} \ " IMAGE_INSTALL += " \ @@ -28,6 +28,9 @@ IMAGE_INSTALL:append:x86-64 = "kernel-module-tun" XEN_PCIBACK_MODULE = "" XEN_PCIBACK_MODULE:x86 = "kernel-module-xen-pciback" XEN_PCIBACK_MODULE:x86-64 = "kernel-module-xen-pciback" +XEN_ACPI_PROCESSOR_MODULE = "" +XEN_ACPI_PROCESSOR_MODULE:x86 = "kernel-module-xen-acpi-processor" +XEN_ACPI_PROCESSOR_MODULE:x86-64 = "kernel-module-xen-acpi-processor" LICENSE = "MIT" -- 2.17.1 IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
|
|
[PATCH] python3-dtc: fix missing files in sysroot
Ross Burton <ross@...>
There is a bug in SWIG/setuptools where 'pip install' doesn't build
libfdt.py unless the build tree is already dirty, which makes using the library impossible. Bump the SRCREV to incorporate the upstream workaround for this issue. Signed-off-by: Ross Burton <ross.burton@...> --- recipes-kernel/dtc/python3-dtc_1.6.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-kernel/dtc/python3-dtc_1.6.1.bb b/recipes-kernel/dtc= /python3-dtc_1.6.1.bb index 671d280..a868bd0 100644 --- a/recipes-kernel/dtc/python3-dtc_1.6.1.bb +++ b/recipes-kernel/dtc/python3-dtc_1.6.1.bb @@ -14,7 +14,7 @@ UPSTREAM_CHECK_GITTAGREGEX =3D "v(?P<pver>\d+(\.\d+)+)" =20 LIC_FILES_CHKSUM =3D "file://pylibfdt/libfdt.i;beginline=3D1;endline=3D6= ;md5=3Dafda088c974174a29108c8d80b5dce90" =20 -SRCREV =3D "4048aed12b81c5a0154b9af438edc99ec7d2b6a1" +SRCREV =3D "c001fc01a43e7a06447c06ea3d50bd60641322b8" =20 PV =3D "1.6.1+git${SRCPV}" S =3D "${WORKDIR}/git" --=20 2.25.1
|
|
[m-c-s][PATCH] glusterfs: switch from distutils3 to setuptools3
---
recipes-extended/glusterfs/glusterfs.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-extended/glusterfs/glusterfs.inc b/recipes-extended/glusterfs/glusterfs.inc index 646b521f..5c960bca 100644 --- a/recipes-extended/glusterfs/glusterfs.inc +++ b/recipes-extended/glusterfs/glusterfs.inc @@ -27,7 +27,7 @@ LIC_FILES_CHKSUM = "file://COPYING-GPLV2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ file://COPYING-LGPLV3;md5=e6a600fd5e1d9cbde2d983680233ad02 \ file://contrib/fuse-util/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" -inherit autotools pkgconfig distutils3-base update-rc.d systemd +inherit autotools pkgconfig setuptools3-base update-rc.d systemd inherit python3-dir DEPENDS += "bison-native flex-native python3-native fuse libaio libtirpc libxml2 ncurses \ -- 2.24.1
|
|
[PATCH 2/2] lopper: fix wheel build
Tim Orling
The wheel that is built is:
lopper-1.0-py3-none-any.whl Set BASEVERSION to 1.0 and use this to set PV and the value for PYPA_WHEEL (the path to the wheel filename). Signed-off-by: Tim Orling <tim.orling@...> --- recipes-kernel/lopper/lopper_git.bb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/recipes-kernel/lopper/lopper_git.bb b/recipes-kernel/lopper/lopper_git.bb index 606dab6..e96bac7 100644 --- a/recipes-kernel/lopper/lopper_git.bb +++ b/recipes-kernel/lopper/lopper_git.bb @@ -7,7 +7,10 @@ SRC_URI = "git://github.com/devicetree-org/lopper.git;branch=master;protocol=htt SRCREV = "3c81fcce08eeb64cbbde1535abd83572985a8689" S = "${WORKDIR}/git" -PV="v1.0+git${SRCPV}" +BASEVERSION = "1.0" +PV="v${BASEVERSION}+git${SRCPV}" + +PYPA_WHEEL = "${PIP_INSTALL_DIST_PATH}/${BPN}-${BASEVERSION}-*.whl" LIC_FILES_CHKSUM = "file://LICENSE.md;md5=8e5f5f691f01c9fdfa7a7f2d535be619" -- 2.30.2
|
|
[PATCH 1/2] python3-dtc: fix wheel build
Tim Orling
The wheel that is built is ${S}/dist/libfdt-1.6.2.dev39+g4048aed.d20220103-cp310-cp310-linux_x86_64.whl
Set PYPA_WHEEL to match this. Signed-off-by: Tim Orling <tim.orling@...> --- recipes-kernel/dtc/python3-dtc_1.6.1.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-kernel/dtc/python3-dtc_1.6.1.bb b/recipes-kernel/dtc/python3-dtc_1.6.1.bb index 449d071..671d280 100644 --- a/recipes-kernel/dtc/python3-dtc_1.6.1.bb +++ b/recipes-kernel/dtc/python3-dtc_1.6.1.bb @@ -19,6 +19,8 @@ SRCREV = "4048aed12b81c5a0154b9af438edc99ec7d2b6a1" PV = "1.6.1+git${SRCPV}" S = "${WORKDIR}/git" +PYPA_WHEEL = "${S}/dist/libfdt-1.6.2*.whl" + inherit setuptools3 pkgconfig BBCLASSEXTEND = "native nativesdk" -- 2.30.2
|
|
Re: [PATCH] xvisor: Remove bb.error when builing for non-supported arch
Bruce Ashfield
merged!
toggle quoted messageShow quoted text
Bruce In message: [meta-virtualization] [PATCH] xvisor: Remove bb.error when builing for non-supported arch on 15/02/2022 Kasper wrote:
From: Kasper Revsbech <kasper.revsbech.ext@...>
|
|
Re: [m-c-s][PATCH 1/2] librdmacm: update LICENSE variant
Bruce Ashfield
merged.
toggle quoted messageShow quoted text
Bruce In message: [meta-virtualization][m-c-s][PATCH 1/2] librdmacm: update LICENSE variant on 18/02/2022 Changqing Li wrote:
From: Changqing Li <changqing.li@...>
|
|
[m-c-s][PATCH 1/2] librdmacm: update LICENSE variant
Changqing Li
From: Changqing Li <changqing.li@...>
Fix warning: WARNING: QA Issue: librdmacm: No generic license file exists for: BSD in any provider [license-exists] Signed-off-by: Changqing Li <changqing.li@...> --- recipes-extended/librdmacm/librdmacm_1.1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-extended/librdmacm/librdmacm_1.1.0.bb b/recipes-extended/librdmacm/librdmacm_1.1.0.bb index 2e18b0a9..a3271dfd 100644 --- a/recipes-extended/librdmacm/librdmacm_1.1.0.bb +++ b/recipes-extended/librdmacm/librdmacm_1.1.0.bb @@ -9,7 +9,7 @@ Also includes ACM (communication management assistant) service." HOMEPAGE = "http://www.openfabrics.org/downloads/rdmacm/" SECTION = "libs/devel" -LICENSE = "BSD" +LICENSE = "BSD-2-Clause | GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=39cc3044d68741f9005da73e9b92db95" DEPENDS = "virtual/libibverbs" -- 2.25.1
|
|
[m-c-s][PATCH 2/2] celt051: update LICENSE variant
Changqing Li
From: Changqing Li <changqing.li@...>
fix warning: WARNING: QA Issue: celt051: No generic license file exists for: BSD in any provider [license-exists] Signed-off-by: Changqing Li <changqing.li@...> --- recipes-support/celt051/celt051_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-support/celt051/celt051_git.bb b/recipes-support/celt051/celt051_git.bb index 6eab5669..52c7cf38 100644 --- a/recipes-support/celt051/celt051_git.bb +++ b/recipes-support/celt051/celt051_git.bb @@ -9,7 +9,7 @@ with high quality. Unlike these formats CELT imposes very little delay \ on the signal, even less than is typical for speech centric formats \ like Speex, GSM, or G.729." -LICENSE = "BSD" +LICENSE = "BSD-2-Clause" LIC_FILES_CHKSUM = "file://COPYING;md5=375f60ab360d17f0172737036ff155b2" PV = "0.5.1.3" -- 2.25.1
|
|