From patchwork Sun Sep 8 11:16:01 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Niko Mauno X-Patchwork-Id: 48777 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id DFC0CCD4F4C for ; Sun, 8 Sep 2024 11:16:44 +0000 (UTC) Received: from tulikuusama2.dnainternet.net (tulikuusama2.dnainternet.net [83.102.40.151]) by mx.groups.io with SMTP id smtpd.web10.28231.1725794200845580534 for ; Sun, 08 Sep 2024 04:16:41 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=permerror, err=parse error for token &{10 18 spf3.vaisala.com}: parse error for token &{10 18 _spf-dc57.sapsf.eu}: limit exceeded (domain: vaisala.com, ip: 83.102.40.151, mailfrom: niko.mauno@vaisala.com) Received: from localhost (localhost [127.0.0.1]) by tulikuusama2.dnainternet.net (Postfix) with ESMTP id 92EE5206AB; Sun, 8 Sep 2024 14:16:38 +0300 (EEST) X-Virus-Scanned: DNA Internet at dnainternet.net Received: from tulikuusama2.dnainternet.net ([83.102.40.151]) by localhost (tulikuusama2.dnainternet.net [127.0.0.1]) (DNA Internet, port 10041) with ESMTP id NQ5QWHmegc-C; Sun, 8 Sep 2024 14:16:38 +0300 (EEST) Received: from kirsikkapuu2.dnainternet.net (kirsikkapuu2.dnainternet.net [83.102.40.52]) by tulikuusama2.dnainternet.net (Postfix) with ESMTP id 2AE0A20623; Sun, 8 Sep 2024 14:16:38 +0300 (EEST) Received: from localhost.localdomain (82-181-238-66.bb.dnainternet.fi [82.181.238.66]) by kirsikkapuu2.dnainternet.net (Postfix) with ESMTP id C54453FF5; Sun, 8 Sep 2024 14:16:34 +0300 (EEST) From: Niko Mauno To: openembedded-devel@lists.openembedded.org Cc: Niko Mauno , Khem Raj Subject: [meta-python][scarthgap][PATCHv2 01/19] python3-xlsxwriter: Fix LICENSE Date: Sun, 8 Sep 2024 14:16:01 +0300 Message-Id: <20240908111619.33645-1-niko.mauno@vaisala.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sun, 08 Sep 2024 11:16:44 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/112133 According to homepage https://xlsxwriter.readthedocs.io/license.html and pypi page https://pypi.org/project/XlsxWriter/ as well as https://github.com/jmcnamara/XlsxWriter/blob/RELEASE_3.1.9/LICENSE.txt the module is licensed under BSD-2-Clause. Signed-off-by: Niko Mauno Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.9.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.9.bb b/meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.9.bb index ee7dab35c..4e23feebb 100644 --- a/meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.9.bb +++ b/meta-python/recipes-devtools/python/python3-xlsxwriter_3.1.9.bb @@ -1,7 +1,7 @@ SUMMARY = "Python 2 and 3 compatibility library" HOMEPAGE = "https://xlsxwriter.readthedocs.io" SECTION = "devel/python" -LICENSE = "MIT" +LICENSE = "BSD-2-Clause" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=12d9fac1f0049be71ab5aa4a78da02b0" inherit pypi setuptools3