From patchwork Mon Jun 26 11:45:32 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jasper Orschulko X-Patchwork-Id: 26405 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 9D86DEB64D7 for ; Mon, 26 Jun 2023 12:03:53 +0000 (UTC) Received: from mx.walter.deinstapel.de (mx.walter.deinstapel.de [62.176.232.99]) by mx.groups.io with SMTP id smtpd.web10.5683.1687780023213215727 for ; Mon, 26 Jun 2023 04:47:03 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@fancydomain.eu header.s=mail header.b=IKBSSsZ9; spf=pass (domain: fancydomain.eu, ip: 62.176.232.99, mailfrom: jasper@fancydomain.eu) From: "Jasper Orschulko" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=fancydomain.eu; s=mail; t=1687780021; bh=Sb2Jpzq+RW3YGkYcMJmlRH7DjsjDXxrf7x5c/xec1NU=; h=From:To:Cc:Subject:In-Reply-To:References; b=IKBSSsZ9V/euOssRk96xD5KjvjMUjpN3XXBv4qD7leMDT5x4rmqeew3onUtnO5Bz+ h8xZhTbBRbasdmghBVN80qfVBq6LUIm4cqSmPOJhws5Qlq/65oMYaLdZhrUmft44Sq hNpzJ3WaBleqmVYi5rNOwmBKneaiyxgm912uNmQrl4kaoZOZYY4jfTEG/frvZ5egMq 3IrM4dKq/hlsLdmc3eW0ZmzQES4hKktx7VgxVrqdoIM9bPBjuJ+nDN0Tg4kfLMDakz ltMHTqyVnFTyyPPJjN2Obi9uZinbiG7mIFjAAuaSMqHhtKBWLOb3N3pzWXp6Y1qR/n 2QjqvsZGPzZWQ== To: openembedded-devel@lists.openembedded.org Cc: Jasper Orschulko Subject: [meta-python][PATCH 4/5] python3-pyproject-api: Add initial recipe 1.5.1 Date: Mon, 26 Jun 2023 13:45:32 +0200 Message-ID: <20230626114533.221953-4-jasper@fancydomain.eu> In-Reply-To: <20230626114533.221953-1-jasper@fancydomain.eu> References: <20230626114533.221953-1-jasper@fancydomain.eu> 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 ; Mon, 26 Jun 2023 12:03:53 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/103577 Dependency for python3-tox Signed-off-by: Jasper Orschulko --- .../python/python3-pyproject-api_1.5.1.bb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-pyproject-api_1.5.1.bb diff --git a/meta-python/recipes-devtools/python/python3-pyproject-api_1.5.1.bb b/meta-python/recipes-devtools/python/python3-pyproject-api_1.5.1.bb new file mode 100644 index 0000000000..1b458fa2df --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pyproject-api_1.5.1.bb @@ -0,0 +1,23 @@ +# SPDX-License-Identifier: MIT +# Copyright (C) 2023 iris-GmbH infrared & intelligent sensors + +SUMMARY = "pyproject-api aims to abstract away interaction with pyproject.toml style projects in a flexible way." +HOMEPAGE = "https://pyproject-api.readthedocs.io" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=11610a9d8fd95649cf8159be12b98cb7" + +SRC_URI[sha256sum] = "435f46547a9ff22cf4208ee274fca3e2869aeb062a4834adfc99a4dd64af3cf9" + +PYPI_PACKAGE = "pyproject_api" + +BBCLASSEXTEND = "native nativesdk" +inherit pypi python_hatchling + +DEPENDS += "\ + ${PYTHON_PN}-hatch-vcs-native \ +" + +RDEPENDS:${PN} += "\ + ${PYTHON_PN}-packaging \ + ${PYTHON_PN}-tomli \ +"