From patchwork Tue Jan 23 23:36:25 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Leitner X-Patchwork-Id: 38258 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 B6A51C47258 for ; Tue, 23 Jan 2024 23:37:04 +0000 (UTC) Received: from out-174.mta0.migadu.com (out-174.mta0.migadu.com [91.218.175.174]) by mx.groups.io with SMTP id smtpd.web10.10012.1706053015186864259 for ; Tue, 23 Jan 2024 15:36:55 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@g0hl1n.net header.s=key1 header.b=tzq6t6g9; spf=pass (domain: g0hl1n.net, ip: 91.218.175.174, 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=1706053012; 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; bh=9YaS75aBFz+6f5ENNx8U+Um4wdGenflSfVVH16iAms4=; b=tzq6t6g97iwpEH4fO6tK0/w7f0JjyU6xJuaNM9yUPJhLbbvnqc5TBKIisxj6c32ohYUhZb M8AdDWViasvDM3CcOrgjiUpl425xI8QCpV7oZO1b6KxlFDYDMN/DpNCE0QsH5CEaBrAYwe 766qM9g4Q1BHuCU2/q8aXDkBN3jHqJc= From: Richard Leitner To: openembedded-devel@lists.openembedded.org Cc: Richard Leitner Subject: [meta-python][PATCH] python3-janus: add recipe for v1.0.0 Date: Wed, 24 Jan 2024 00:36:25 +0100 Message-Id: <20240123233625.38469-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 ; Tue, 23 Jan 2024 23:37:04 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/108441 janus is a python library providing a mixed sync-async queue to interoperate between asyncio tasks and classic threads. This recipe uses pypi as source: https://pypi.org/project/janus/ Signed-off-by: Richard Leitner --- .../python/python3-janus_1.0.0.bb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-janus_1.0.0.bb diff --git a/meta-python/recipes-devtools/python/python3-janus_1.0.0.bb b/meta-python/recipes-devtools/python/python3-janus_1.0.0.bb new file mode 100644 index 000000000..be1f284d8 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-janus_1.0.0.bb @@ -0,0 +1,15 @@ +SUMMARY = "Mixed sync-async queue to interoperate between asyncio tasks and classic threads" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=23878c357ebb4c8ce1109be365043349" + +SRC_URI[sha256sum] = "df976f2cdcfb034b147a2d51edfc34ff6bfb12d4e2643d3ad0e10de058cb1612" + +inherit pypi setuptools3 + +RDEPENDS:${PN} += "\ + python3-asyncio \ + python3-threading \ +" + +BBCLASSEXTEND = "native nativesdk"