From patchwork Thu Dec 1 08:34:55 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: 16232 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 735E0C43217 for ; Thu, 1 Dec 2022 08:35:30 +0000 (UTC) Received: from 6.mo576.mail-out.ovh.net (6.mo576.mail-out.ovh.net [46.105.50.107]) by mx.groups.io with SMTP id smtpd.web11.37946.1669883726821340015 for ; Thu, 01 Dec 2022 00:35:27 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=softfail (domain: 3mdeb.com, ip: 46.105.50.107, mailfrom: tomasz.zyjewski@3mdeb.com) Received: from player797.ha.ovh.net (unknown [10.110.171.96]) by mo576.mail-out.ovh.net (Postfix) with ESMTP id D588524E56 for ; Thu, 1 Dec 2022 08:35:24 +0000 (UTC) Received: from 3mdeb.com (84-10-27-202.static.chello.pl [84.10.27.202]) (Authenticated sender: tomasz.zyjewski@3mdeb.com) by player797.ha.ovh.net (Postfix) with ESMTPSA id 3116D2D3EA515; Thu, 1 Dec 2022 08:35:22 +0000 (UTC) Authentication-Results: garm.ovh; auth=pass (GARM-102R0041cbfa7c1-49d9-4e87-9d5c-f990170d6be6, CD9E635A71B48C9C013169077C1BC37D21AD11CE) 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 V3 1/2] python3-binwalk: add recipe for version 2.3.3 Date: Thu, 1 Dec 2022 09:34:55 +0100 Message-Id: <20221201083456.1573628-1-tomasz.zyjewski@3mdeb.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Ovh-Tracer-Id: 7443324285146012030 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedvhedrtdeggdduvdegucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecuhedttdenucenucfjughrpefhvfevufffkffogggtgfesthekredtredtjeenucfhrhhomhepvfhomhgrshiiucjlhihjvgifshhkihcuoehtohhmrghsiidriiihjhgvfihskhhiseefmhguvggsrdgtohhmqeenucggtffrrghtthgvrhhnpedvffdthfdvgedtleegkeejtdeijeeigfduhefgvdekteeijeehhfeuvdehuefgjeenucffohhmrghinhepghhithhhuhgsrdgtohhmnecukfhppeduvdejrddtrddtrddupdekgedruddtrddvjedrvddtvdenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepihhnvghtpeduvdejrddtrddtrddupdhmrghilhhfrhhomhepoehtohhmrghsiidriiihjhgvfihskhhiseefmhguvggsrdgtohhmqedpnhgspghrtghpthhtohepuddprhgtphhtthhopehophgvnhgvmhgsvgguuggvugdquggvvhgvlheslhhishhtshdrohhpvghnvghmsggvugguvggurdhorhhgpdfovfetjfhoshhtpehmohehjeeipdhmohguvgepshhmthhpohhuth 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 ; Thu, 01 Dec 2022 08:35:30 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/99882 Install binwalk utility. Binwalk is a fast, easy to use tool for analyzing, reverse engineering, and extracting firmware images. Signed-off-by: Tomasz Żyjewski --- .../python/python3-binwalk_2.3.3.bb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb diff --git a/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb new file mode 100644 index 000000000000..362efa275148 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-binwalk_2.3.3.bb @@ -0,0 +1,17 @@ +SUMMARY = "Firmware analysis tool" +DESCRIPTION = "This package contains Python Binwalk tool. Binwalk is a fast, \ +easy to use tool for analyzing, reverse engineering, and extracting firmware \ +images." +HOMEPAGE = "https://github.com/ReFirmLabs/binwalk" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=65bbee055d3ea3bfc475f07aecf4de64" + +SRC_URI = "git://github.com/ReFirmLabs/binwalk;protocol=https;branch=master" + +SRCREV = "fa0c0bd59b8588814756942fe4cb5452e76c1dcd" + +S = "${WORKDIR}/git" + +inherit setuptools3 + +RDEPENDS:${PN} += "python3-core" From patchwork Thu Dec 1 08:34:56 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: 16231 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 74221C47088 for ; Thu, 1 Dec 2022 08:35:30 +0000 (UTC) Received: from 1.mo560.mail-out.ovh.net (1.mo560.mail-out.ovh.net [46.105.63.121]) by mx.groups.io with SMTP id smtpd.web10.37935.1669883729277959788 for ; Thu, 01 Dec 2022 00:35:29 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=softfail (domain: 3mdeb.com, ip: 46.105.63.121, mailfrom: tomasz.zyjewski@3mdeb.com) Received: from player797.ha.ovh.net (unknown [10.111.172.33]) by mo560.mail-out.ovh.net (Postfix) with ESMTP id 704FD24E70 for ; Thu, 1 Dec 2022 08:35:27 +0000 (UTC) Received: from 3mdeb.com (84-10-27-202.static.chello.pl [84.10.27.202]) (Authenticated sender: tomasz.zyjewski@3mdeb.com) by player797.ha.ovh.net (Postfix) with ESMTPSA id BAEE32D3EA556; Thu, 1 Dec 2022 08:35:24 +0000 (UTC) Authentication-Results: garm.ovh; auth=pass (GARM-102R004f57db619-2669-4fcf-9320-9aa72499d7da, CD9E635A71B48C9C013169077C1BC37D21AD11CE) 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 V3 2/2] python3-uefi-firmware: add recipe for version 1.9 Date: Thu, 1 Dec 2022 09:34:56 +0100 Message-Id: <20221201083456.1573628-2-tomasz.zyjewski@3mdeb.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20221201083456.1573628-1-tomasz.zyjewski@3mdeb.com> References: <20221201083456.1573628-1-tomasz.zyjewski@3mdeb.com> MIME-Version: 1.0 X-Ovh-Tracer-Id: 7444168711459150206 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedvhedrtdeggdduvdegucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecuhedttdenucenucfjughrpefhvfevufffkffojghfgggtgfesthekredtredtjeenucfhrhhomhepvfhomhgrshiiucjlhihjvgifshhkihcuoehtohhmrghsiidriiihjhgvfihskhhiseefmhguvggsrdgtohhmqeenucggtffrrghtthgvrhhnpeekleevffelieffvdfhkedtueegiedvtefgkeelleeiuedvjefgheeiueejveeiueenucffohhmrghinhepghhithhhuhgsrdgtohhmnecukfhppeduvdejrddtrddtrddupdekgedruddtrddvjedrvddtvdenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepihhnvghtpeduvdejrddtrddtrddupdhmrghilhhfrhhomhepoehtohhmrghsiidriiihjhgvfihskhhiseefmhguvggsrdgtohhmqedpnhgspghrtghpthhtohepuddprhgtphhtthhopehophgvnhgvmhgsvgguuggvugdquggvvhgvlheslhhishhtshdrohhpvghnvghmsggvugguvggurdhorhhgpdfovfetjfhoshhtpehmohehiedtpdhmohguvgepshhmthhpohhuth 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 ; Thu, 01 Dec 2022 08:35:30 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/99883 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