From patchwork Tue Sep 26 07:36:14 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Micha=C5=82_Iwanicki?= X-Patchwork-Id: 31126 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 EFCA6E7D246 for ; Tue, 26 Sep 2023 07:36:39 +0000 (UTC) Received: from 17.mo581.mail-out.ovh.net (17.mo581.mail-out.ovh.net [188.165.35.227]) by mx.groups.io with SMTP id smtpd.web10.13813.1695713793985014167 for ; Tue, 26 Sep 2023 00:36:34 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=softfail (domain: 3mdeb.com, ip: 188.165.35.227, mailfrom: michal.iwanicki@3mdeb.com) Received: from director2.ghost.mail-out.ovh.net (unknown [10.108.20.52]) by mo581.mail-out.ovh.net (Postfix) with ESMTP id C6009274B3 for ; Tue, 26 Sep 2023 07:36:31 +0000 (UTC) Received: from ghost-submission-6684bf9d7b-2wrhx (unknown [10.110.171.76]) by director2.ghost.mail-out.ovh.net (Postfix) with ESMTPS id 38C5D1FE44; Tue, 26 Sep 2023 07:36:30 +0000 (UTC) Received: from 3mdeb.com ([37.59.142.103]) by ghost-submission-6684bf9d7b-2wrhx with ESMTPSA id E0yyCf6JEmW/IwAAS0d6Zw (envelope-from ); Tue, 26 Sep 2023 07:36:30 +0000 Authentication-Results: garm.ovh; auth=pass (GARM-103G0058ecbefce-55fc-4240-bef9-b90a15593e1e, F2EE7D885D6C68A6AA5B8BA59AA342426243BCF6) smtp.auth=michal.iwanicki@3mdeb.com X-OVh-ClientIp: 213.192.77.249 From: =?utf-8?q?Micha=C5=82_Iwanicki?= To: openembedded-devel@lists.openembedded.org Cc: =?utf-8?q?Micha=C5=82_Iwanicki?= Subject: [meta-python][PATCH] python3-pyu2f: add recipe Date: Tue, 26 Sep 2023 09:36:14 +0200 Message-ID: <20230926073613.43792-3-michal.iwanicki@3mdeb.com> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 X-Ovh-Tracer-Id: 9943666503787568734 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedviedrudelhedguddvtdcutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfqggfjpdevjffgvefmvefgnecuuegrihhlohhuthemucehtddtnecunecujfgurhephffvvefufffkofggtgfgsehtkeertdertdejnecuhfhrohhmpefoihgthhgrlhcukfifrghnihgtkhhiuceomhhitghhrghlrdhifigrnhhitghkihesfehmuggvsgdrtghomheqnecuggftrfgrthhtvghrnhepgefhffdvvedvgfekheefiedtheefieeuleeltdefheekiedufeeikedtieefueehnecuffhomhgrihhnpehgihhthhhusgdrtghomhenucfkphepuddvjedrtddrtddruddpvddufedrudelvddrjeejrddvgeelpdefjedrheelrddugedvrddutdefnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehinhgvthepuddvjedrtddrtddruddpmhgrihhlfhhrohhmpeeomhhitghhrghlrdhifigrnhhitghkihesfehmuggvsgdrtghomheqpdhnsggprhgtphhtthhopedupdhrtghpthhtohepohhpvghnvghmsggvugguvgguqdguvghvvghlsehlihhsthhsrdhophgvnhgvmhgsvgguuggvugdrohhrghdpoffvtefjohhsthepmhhoheekuddpmhhouggvpehsmhhtphhouhht 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, 26 Sep 2023 07:36:39 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/105139 Signed-off-by: MichaƂ Iwanicki --- .../python/python3-pyu2f_0.1.5.bb | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-pyu2f_0.1.5.bb diff --git a/meta-python/recipes-devtools/python/python3-pyu2f_0.1.5.bb b/meta-python/recipes-devtools/python/python3-pyu2f_0.1.5.bb new file mode 100644 index 000000000000..c58981a32799 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pyu2f_0.1.5.bb @@ -0,0 +1,20 @@ +SUMMARY = "U2F host library for interacting with a U2F device over USB." +HOMEPAGE = "https://github.com/google/pyu2f/" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" + +SRC_URI[sha256sum] = "a3caa3a11842fc7d5746376f37195e6af5f17c0a15737538bb1cebf656fb306b" + +inherit pypi setuptools3 + +RDEPENDS:${PN} += " \ + ${PYTHON_PN}-core \ + ${PYTHON_PN}-crypt \ + ${PYTHON_PN}-ctypes \ + ${PYTHON_PN}-io \ + ${PYTHON_PN}-json \ + ${PYTHON_PN}-logging \ + ${PYTHON_PN}-netclient \ + ${PYTHON_PN}-threading \ + ${PYTHON_PN}-six \ +"