From patchwork Sun Jun 19 21:25:19 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 9365 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 84919C43334 for ; Sun, 19 Jun 2022 21:25:28 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.12821.1655673924440918260 for ; Sun, 19 Jun 2022 14:25:24 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 96A771042; Sun, 19 Jun 2022 14:25:23 -0700 (PDT) Received: from oss-tx204.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id F336D3F5A1; Sun, 19 Jun 2022 14:25:22 -0700 (PDT) From: Ross Burton To: openembedded-core@lists.openembedded.org Cc: nd@arm.com Subject: [PATCH 2/3] python3-hatch-vcs: add new recipe Date: Sun, 19 Jun 2022 22:25:19 +0100 Message-Id: <20220619212520.4158865-2-ross.burton@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220619212520.4158865-1-ross.burton@arm.com> References: <20220619212520.4158865-1-ross.burton@arm.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, 19 Jun 2022 21:25:28 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/167076 This recipe (a VCS plugin for Hatch) is needed by the new python3-jsonschema to build. Signed-off-by: Ross Burton --- meta/conf/distro/include/maintainers.inc | 1 + .../python/python3-hatch-vcs_0.2.0.bb | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 meta/recipes-devtools/python/python3-hatch-vcs_0.2.0.bb diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc index c6ad3ac678c..a3394a823cb 100644 --- a/meta/conf/distro/include/maintainers.inc +++ b/meta/conf/distro/include/maintainers.inc @@ -612,6 +612,7 @@ RECIPE_MAINTAINER:pn-python3-flit-core = "Tim Orling " RECIPE_MAINTAINER:pn-python3-git = "Oleksandr Kravchuk " RECIPE_MAINTAINER:pn-python3-gitdb = "Oleksandr Kravchuk " RECIPE_MAINTAINER:pn-python3-hatchling = "Ross Burton " +RECIPE_MAINTAINER:pn-python3-hatch-vcs = "Ross Burton " RECIPE_MAINTAINER:pn-python3-hypothesis = "Tim Orling " RECIPE_MAINTAINER:pn-python3-idna = "Bruce Ashfield " RECIPE_MAINTAINER:pn-python3-imagesize = "Tim Orling " diff --git a/meta/recipes-devtools/python/python3-hatch-vcs_0.2.0.bb b/meta/recipes-devtools/python/python3-hatch-vcs_0.2.0.bb new file mode 100644 index 00000000000..100099c130c --- /dev/null +++ b/meta/recipes-devtools/python/python3-hatch-vcs_0.2.0.bb @@ -0,0 +1,12 @@ +SUMMARY = "Hatch plugin for versioning with your preferred VCS" +HOMEPAGE = "https://pypi.org/project/hatch-vcs/" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=26501cfd0bbddf830ee820e95551fa3d" + +inherit pypi python_hatchling + +PYPI_PACKAGE = "hatch_vcs" + +SRC_URI[sha256sum] = "9913d733b34eec9bb0345d0626ca32165a4ad2de15d1ce643c36d09ca908abff" + +BBCLASSEXTEND = "native nativesdk"