From patchwork Thu Aug 27 16:21:27 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Peter Marko X-Patchwork-Id: 96576 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 13B0FC61DC4 for ; Thu, 27 Aug 2026 16:21:47 +0000 (UTC) Received: from mta-65-227.siemens.flowmailer.net (mta-65-227.siemens.flowmailer.net [185.136.65.227]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.343.1787847705240591835 for ; Thu, 27 Aug 2026 09:21:46 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=peter.marko@siemens.com header.s=fm2 header.b=JF0m5nwK; spf=pass (domain: rts-flowmailer.siemens.com, ip: 185.136.65.227, mailfrom: fm-256628-2026082716214286a690994600020741-r8zm_1@rts-flowmailer.siemens.com) Received: by mta-65-227.siemens.flowmailer.net with ESMTPSA id 2026082716214286a690994600020741 for ; Thu, 27 Aug 2026 18:21:42 +0200 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; s=fm2; d=siemens.com; i=peter.marko@siemens.com; h=Date:From:Subject:To:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:Cc; bh=AuggHpjqHEorDmciyyu43dVozRvzr/+HMbKTEhKqgpE=; b=JF0m5nwKQZUY+FLQxd4miz3ST4xO4W0kcgZW9vH+hWBG+TZRR+BeUUZphXgLAARPuzTW4e BrGBzcBaJoo9htxWurFv7hYJlru4ZnKmHmPNxd399wgV6Dwslel7tld0X+RsNdMEgUuMM7y7 q1tNzMI4xWTnM90/TQpW36lYoMS4i1zYxzxNCgwxhv5JskYZ9Wf4lg+nStQXn3ZANZhzbaNn oEe+hYFbMuRJtH3Ldk3ojmxI+uG55F59oatQyMquIDGtTIx9QIzmeStdEIYj8Bu8x6Ovbwkn 5xxTBRot64bCnHRmxZxaE+iEANhP+25VchKcfqeuLefzhnQTXzk4etvw==; From: Peter Marko To: openembedded-devel@lists.openembedded.org Cc: Peter Marko Subject: [meta-python][PATCH] recipes: correct homepage Date: Thu, 27 Aug 2026 18:21:27 +0200 Message-ID: <20260827162129.16469-1-peter.marko@siemens.com> MIME-Version: 1.0 X-Flowmailer-Platform: Siemens Feedback-ID: 519:519-256628:519-21489:flowmailer List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 27 Aug 2026 16:21:47 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/129534 From: Peter Marko Leading space leads to SPDX document validation errors for url in some tools. Signed-off-by: Peter Marko --- .../recipes-devtools/python/python3-beautifulsoup4_4.15.0.bb | 2 +- meta-python/recipes-devtools/python/python3-colorzero_2.0.bb | 2 +- .../recipes-devtools/python/python3-flask-login_0.6.3.bb | 2 +- .../recipes-devtools/python/python3-flask-mail_0.10.0.bb | 2 +- .../recipes-devtools/python/python3-flask-user_0.6.19.bb | 2 +- meta-python/recipes-devtools/python/python3-pyexpect_1.0.22.bb | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.15.0.bb b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.15.0.bb index 743f9b4c7a..f47a157031 100644 --- a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.15.0.bb +++ b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.15.0.bb @@ -1,5 +1,5 @@ SUMMARY = "Screen-scraping library" -HOMEPAGE = " https://www.crummy.com/software/BeautifulSoup/bs4" +HOMEPAGE = "https://www.crummy.com/software/BeautifulSoup/bs4" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=96e0034f7c9443910c486773aa1ed9ac" diff --git a/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb b/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb index fc1615e670..4f0706f8f4 100644 --- a/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb +++ b/meta-python/recipes-devtools/python/python3-colorzero_2.0.bb @@ -2,7 +2,7 @@ SUMMARY = "colorzero is a color manipulation library for Python" DESCRIPTION = "colorzero is a color manipulation library for Python \ (yes, another one) which aims to be reasonably simple to use and \ "pythonic" in nature." -HOMEPAGE = " https://github.com/waveform80/colorzero " +HOMEPAGE = "https://github.com/waveform80/colorzero " LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ae6c62710c0646f3c60d1ad812ea9bf9" diff --git a/meta-python/recipes-devtools/python/python3-flask-login_0.6.3.bb b/meta-python/recipes-devtools/python/python3-flask-login_0.6.3.bb index f197119bbc..a50f82abc4 100644 --- a/meta-python/recipes-devtools/python/python3-flask-login_0.6.3.bb +++ b/meta-python/recipes-devtools/python/python3-flask-login_0.6.3.bb @@ -2,7 +2,7 @@ SUMMARY = "User session management for Flask" DESCRIPTION = "Flask-Login provides user session management for Flask. \ It handles the common tasks of logging in, logging out, and remembering \ your users’ sessions over extended periods of time." -HOMEPAGE = " https://github.com/maxcountryman/flask-login" +HOMEPAGE = "https://github.com/maxcountryman/flask-login" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=8aa87a1cd9fa41d969ad32cfdac2c596" diff --git a/meta-python/recipes-devtools/python/python3-flask-mail_0.10.0.bb b/meta-python/recipes-devtools/python/python3-flask-mail_0.10.0.bb index d825831b4a..53d3333b95 100644 --- a/meta-python/recipes-devtools/python/python3-flask-mail_0.10.0.bb +++ b/meta-python/recipes-devtools/python/python3-flask-mail_0.10.0.bb @@ -1,6 +1,6 @@ SUMMARY = "Flask extension for sending email" DESCRIPTION = "A Flask extension for sending email" -HOMEPAGE = " https://github.com/rduplain/flask-email" +HOMEPAGE = "https://github.com/rduplain/flask-email" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=201f2b80112efa61b78515bd54e9f138" diff --git a/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb b/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb index c05c74b5c4..9ec9249339 100644 --- a/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb +++ b/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb @@ -2,7 +2,7 @@ SUMMARY = "Customizable user account management for Flask" DESCRIPTION = "Customizable User Account Management for Flask; Register \ Confirm email, Login, Change username, Change password, Forgot Password \ and more." -HOMEPAGE = " https://github.com/lingthio/Flask-User" +HOMEPAGE = "https://github.com/lingthio/Flask-User" LICENSE = "BSD-2-Clause" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=97de97cd9d6e23c88129d884588ce71a" diff --git a/meta-python/recipes-devtools/python/python3-pyexpect_1.0.22.bb b/meta-python/recipes-devtools/python/python3-pyexpect_1.0.22.bb index 1cbd2384a3..f1f1bc538c 100644 --- a/meta-python/recipes-devtools/python/python3-pyexpect_1.0.22.bb +++ b/meta-python/recipes-devtools/python/python3-pyexpect_1.0.22.bb @@ -1,7 +1,7 @@ SUMMARY = "Python expectaton library" DESCRIPTION = "Minimal but very flexible implementation of the expect pattern" SECTION = "devel/python" -HOMEPAGE = " https://bitbucket.org/dwt/pyexpect" +HOMEPAGE = "https://bitbucket.org/dwt/pyexpect" LICENSE = "ISC" LIC_FILES_CHKSUM = "file://README.md;md5=a6aa1e7097aca5955f9a2e1c8b0ce158"