From patchwork Sun Sep 8 11:16:02 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Niko Mauno X-Patchwork-Id: 48778 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 C6F12E6FE49 for ; Sun, 8 Sep 2024 11:16:54 +0000 (UTC) Received: from sinikuusama2.dnainternet.net (sinikuusama2.dnainternet.net [83.102.40.152]) by mx.groups.io with SMTP id smtpd.web10.28234.1725794211117572563 for ; Sun, 08 Sep 2024 04:16:51 -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.152, mailfrom: niko.mauno@vaisala.com) Received: from localhost (localhost [127.0.0.1]) by sinikuusama2.dnainternet.net (Postfix) with ESMTP id 92E3CDF0B; Sun, 8 Sep 2024 14:16:49 +0300 (EEST) X-Virus-Scanned: DNA Internet at dnainternet.net Received: from sinikuusama2.dnainternet.net ([83.102.40.152]) by localhost (sinikuusama2.dnainternet.net [127.0.0.1]) (DNA Internet, port 10041) with ESMTP id gzwb-p6SCoBU; Sun, 8 Sep 2024 14:16:49 +0300 (EEST) Received: from kirsikkapuu2.dnainternet.net (kirsikkapuu2.dnainternet.net [83.102.40.52]) by sinikuusama2.dnainternet.net (Postfix) with ESMTP id 5F8F7DF03; Sun, 8 Sep 2024 14:16:49 +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 15C543FFA; Sun, 8 Sep 2024 14:16:44 +0300 (EEST) From: Niko Mauno To: openembedded-devel@lists.openembedded.org Cc: Niko Mauno , Khem Raj Subject: [meta-python][scarthgap][PATCHv2 02/19] python3-ansi2html: Fix HOMEPAGE and LICENSE Date: Sun, 8 Sep 2024 14:16:02 +0300 Message-Id: <20240908111619.33645-2-niko.mauno@vaisala.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240908111619.33645-1-niko.mauno@vaisala.com> References: <20240908111619.33645-1-niko.mauno@vaisala.com> 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:54 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/112134 Update HOMEPAGE to the url which old homepage address redirects to, and change LICENSE value to match what is stated in the README file: https://github.com/pycontribs/ansi2html?tab=readme-ov-file#license as well as source code comment: https://github.com/pycontribs/ansi2html/blob/v1.9.1/src/ansi2html/converter.py#L9-L12 also LICENSE file is 'LESSER' variant: https://github.com/pycontribs/ansi2html/blob/v1.9.1/LICENSE#L1 Signed-off-by: Niko Mauno Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-ansi2html_1.9.1.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb b/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb index 6af898917..abe27c4d6 100644 --- a/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb +++ b/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb @@ -1,7 +1,7 @@ DESCRPTION = "ansi2html - Convert text with ANSI color codes to HTML or to LaTeX" -HOMEPAGE = "https://github.com/ralphbean/ansi2html" +HOMEPAGE = "https://github.com/pycontribs/ansi2html" LIC_FILES_CHKSUM = "file://LICENSE;md5=3000208d539ec061b899bce1d9ce9404" -LICENSE = "GPL-3.0-only" +LICENSE = "LGPL-3.0-or-later" PYPI_PACKAGE = "ansi2html"