From patchwork Mon Feb 5 12:58:26 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Leitner X-Patchwork-Id: 38839 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 DDE73C4828D for ; Mon, 5 Feb 2024 12:58:46 +0000 (UTC) Received: from out-175.mta0.migadu.com (out-175.mta0.migadu.com [91.218.175.175]) by mx.groups.io with SMTP id smtpd.web11.61801.1707137924890271732 for ; Mon, 05 Feb 2024 04:58:45 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@g0hl1n.net header.s=key1 header.b=ryPw/4H7; spf=pass (domain: g0hl1n.net, ip: 91.218.175.175, mailfrom: dev@g0hl1n.net) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=g0hl1n.net; s=key1; t=1707137923; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=XfAvYp76devZQc3OKkJCFAGm1s+XIAkjA0wrzpUCF/s=; b=ryPw/4H7ajqXLDRnpyIPd0lIE1Y3Fy0XKaRJLyJdR2DTMbkK+xq3KB/+gVcxnbdZlkR9DL jtt00B89Wh7Y3ycqLG1b4Vff1hU/5q2too+dlf6V0eiNpzsQDDp8RM45Nk1Aqa3wcLpgCi VSf1Ap0JN0P1VleK4GVcS2hMUcVLTTw= From: Richard Leitner To: openembedded-devel@lists.openembedded.org Cc: Richard Leitner Subject: [meta-python][PATCH 2/5] python3-anyio: add recipe for v4.2.0 Date: Mon, 5 Feb 2024 13:58:26 +0100 Message-Id: <20240205125829.152301-3-dev@g0hl1n.net> In-Reply-To: <20240205125829.152301-1-dev@g0hl1n.net> References: <20240205125829.152301-1-dev@g0hl1n.net> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT 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, 05 Feb 2024 12:58:46 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108569 High level compatibility layer for multiple asynchronous event loop implementations. This recipe is currently provided without trio support, as the author has no use for it and it would require to add a new python3-trio recipe. This recipe uses pypi as source: https://pypi.org/project/anyio Signed-off-by: Richard Leitner --- .../python/python3-anyio_4.2.0.bb | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-anyio_4.2.0.bb diff --git a/meta-python/recipes-devtools/python/python3-anyio_4.2.0.bb b/meta-python/recipes-devtools/python/python3-anyio_4.2.0.bb new file mode 100644 index 000000000..0bf907de7 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-anyio_4.2.0.bb @@ -0,0 +1,23 @@ +SUMMARY = "High level compatibility layer for multiple asynchronous event loop implementations" +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=c0a769411d2af7894099e8ff75058c9f" + +inherit pypi python_setuptools_build_meta + +SRC_URI[sha256sum] = "e1875bb4b4e2de1669f4bc7869b6d3f54231cdced71605e6e64c9be77e3be50f" + +DEPENDS += " \ + python3-setuptools-scm-native \ +" + +# Don't provide "trio" PACKAGECONFIG as nothing provides "python3-trio" currently. +# If somebody needs this please feel free to add python3-trio and enable the +# packageconfig below: +#PACKAGECONFIG ??= "" +#PACKAGECONFIG[trio] = ",,,python3-trio" + +RDEPENDS:${PN} += "\ + python3-idna \ + python3-sniffio \ +"