From patchwork Fri Dec 2 06:49:51 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Tomasz_=C5=BByjewski?= X-Patchwork-Id: 16326 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 DF279C4332F for ; Fri, 2 Dec 2022 06:50:19 +0000 (UTC) Received: from 9.mo581.mail-out.ovh.net (9.mo581.mail-out.ovh.net [46.105.60.248]) by mx.groups.io with SMTP id smtpd.web10.68983.1669963810567868104 for ; Thu, 01 Dec 2022 22:50:11 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=softfail (domain: 3mdeb.com, ip: 46.105.60.248, mailfrom: tomasz.zyjewski@3mdeb.com) Received: from player763.ha.ovh.net (unknown [10.110.103.168]) by mo581.mail-out.ovh.net (Postfix) with ESMTP id 5366A2430A for ; Fri, 2 Dec 2022 06:50:08 +0000 (UTC) Received: from 3mdeb.com (84-10-27-202.static.chello.pl [84.10.27.202]) (Authenticated sender: tomasz.zyjewski@3mdeb.com) by player763.ha.ovh.net (Postfix) with ESMTPSA id 7A51B3162E05F; Fri, 2 Dec 2022 06:50:06 +0000 (UTC) Authentication-Results: garm.ovh; auth=pass (GARM-104R00590d53e6f-895a-4bc3-b10c-50dee263f88c, 569EE6DD3EA88D17C65CC1D0BB657597EAC39E4A) smtp.auth=tomasz.zyjewski@3mdeb.com X-OVh-ClientIp: 84.10.27.202 From: =?utf-8?q?Tomasz_=C5=BByjewski?= To: openembedded-devel@lists.openembedded.org Cc: michal.kotyla@3mdeb.com Subject: [meta-python][PATCH V4] python3-uefi-firmware: add recipe for version 1.9 Date: Fri, 2 Dec 2022 07:49:51 +0100 Message-Id: <20221202064951.3121316-1-tomasz.zyjewski@3mdeb.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Ovh-Tracer-Id: 11537940773807954302 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedvhedrtdeigddutddvucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecuhedttdenucenucfjughrpefhvfevufffkffogggtgfesthekredtredtjeenucfhrhhomhepvfhomhgrshiiucjlhihjvgifshhkihcuoehtohhmrghsiidriiihjhgvfihskhhiseefmhguvggsrdgtohhmqeenucggtffrrghtthgvrhhnpedvffdthfdvgedtleegkeejtdeijeeigfduhefgvdekteeijeehhfeuvdehuefgjeenucffohhmrghinhepghhithhhuhgsrdgtohhmnecukfhppeduvdejrddtrddtrddupdekgedruddtrddvjedrvddtvdenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepihhnvghtpeduvdejrddtrddtrddupdhmrghilhhfrhhomhepoehtohhmrghsiidriiihjhgvfihskhhiseefmhguvggsrdgtohhmqedpnhgspghrtghpthhtohepuddprhgtphhtthhopehophgvnhgvmhgsvgguuggvugdquggvvhgvlheslhhishhtshdrohhpvghnvghmsggvugguvggurdhorhhgpdfovfetjfhoshhtpehmohehkedupdhmohguvgepshhmthhpohhuth 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 ; Fri, 02 Dec 2022 06:50:19 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/99909 Install uefi-firmware-parser tool The UEFI firmware parseer is a simple module and set of scripts for parsing, extracting, and recreating UEFI firmware volumes. Signed-off-by: Tomasz Żyjewski --- .../python/python3-uefi-firmware_1.9.bb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb diff --git a/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb b/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb new file mode 100644 index 000000000000..3837a17437b1 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-uefi-firmware_1.9.bb @@ -0,0 +1,17 @@ +SUMMARY = "Various data structures and parsing tools for UEFI firmware." +DESCRIPTION = "This package contains Python UEFI firmware parser tool. The \ +UEFI firmware parser is a simple module and set of scripts for parsing, \ +extracting, and recreating UEFI firmware volumes. This includes parsing \ +modules for BIOS, OptionROM, Intel ME and other formats too." +HOMEPAGE = "https://github.com/theopolis/uefi-firmware-parser" +AUTHOR = "Teddy Reed " +LICENSE = "BSD-2-Clause & BSD-3-Clause" +LIC_FILES_CHKSUM = "file://setup.py;md5=90fa5bae1547550f1c1993f651eda955" + +SRC_URI = "git://github.com/theopolis/uefi-firmware-parser;protocol=https;branch=master" + +SRCREV = "502f1bada1ed11fdd1792646fda0bfafb8fa57fb" + +S = "${WORKDIR}/git" + +inherit setuptools3