From patchwork Thu Nov 2 14:05:20 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 33454 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 3B51DC4332F for ; Thu, 2 Nov 2023 14:05:38 +0000 (UTC) Received: from mail-ed1-f46.google.com (mail-ed1-f46.google.com [209.85.208.46]) by mx.groups.io with SMTP id smtpd.web10.32023.1698933928272377095 for ; Thu, 02 Nov 2023 07:05:28 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@konsulko.com header.s=google header.b=fCHo39Je; spf=pass (domain: konsulko.com, ip: 209.85.208.46, mailfrom: leon.anavi@konsulko.com) Received: by mail-ed1-f46.google.com with SMTP id 4fb4d7f45d1cf-54394328f65so1611513a12.3 for ; Thu, 02 Nov 2023 07:05:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=konsulko.com; s=google; t=1698933926; x=1699538726; darn=lists.openembedded.org; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=pkiJPKCKWkcZD3o7uyuUfixRFooYOe7rOldgRdi1EHU=; b=fCHo39Jet7il/QTMC2nZ6k1jIQ5BBZ5m3Nz/JjYvDrxo/urUt8xgxJDCT2FjxWVK51 DxVVEoBqpFnB+wjFeY4yTSYRDjkY6tVQakC4lsMkM/nrOfdXYJ+xaWIgGH/u9NCknrcD r7T1ROdVMmQOuBTHRrytwCoxVCw5gLN/aYWpw= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1698933926; x=1699538726; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=pkiJPKCKWkcZD3o7uyuUfixRFooYOe7rOldgRdi1EHU=; b=qoZis9aq3Xxd4K72Lr5WdWvPdVwVZ8lC0tjtzHnkUr3hQ3EPGunl0xhwr3oNdMIEnr PIAfqdildXBSRKTKcDcJh2fcoi/TtEHmws3wKR/BDC61eWiRwZUS88KE7z9nygb4+FeQ rcsO0OJmFwqDlhju46k9aMjz5Ym9YyNsJZwtrIMgumWUT74BVDVm8zxnwJcv+dmGWufI 9BEc9C6WMb2OsTTigPAYQafp61mFgGBvp6g3G7Pi/T+KiaF2S9I4dyY2/QB1cQXbU5iC SCVHJAWGOoTM5tVC/n7PxWmXcilDFPnbl5g7bH1Xpp3qlZePNffQeySvGKVmMkKfLmUE tLVg== X-Gm-Message-State: AOJu0YygIv40DnNfPWCTJX6WHu+e53sIWBGeNx/0FUvc9y16VRnN0rtL 3w2QI8uJNeddP8bSQT3MAQJyEoh+/9NMLpV1EGA= X-Google-Smtp-Source: AGHT+IHe4CAWdwAU/rJ2W+Ww+EcMTGL8+Tzezlf4HF4rufGti7D4ouyD+ZMaEzc/mi0AzcSDHItVAg== X-Received: by 2002:a05:6402:22a9:b0:53f:25c4:357b with SMTP id cx9-20020a05640222a900b0053f25c4357bmr15109990edb.4.1698933926300; Thu, 02 Nov 2023 07:05:26 -0700 (PDT) Received: from tone.k.g (lan.nucleusys.com. [92.247.61.126]) by smtp.gmail.com with ESMTPSA id d5-20020a50f685000000b005401a4184ddsm2401763edn.27.2023.11.02.07.05.25 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 02 Nov 2023 07:05:25 -0700 (PDT) From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 1/4] python3-multivolumefile: add recipe Date: Thu, 2 Nov 2023 16:05:20 +0200 Message-Id: <20231102140523.3337713-1-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 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, 02 Nov 2023 14:05:38 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/105838 Add multivolumefile, a multi volume file wrapper library. Version 0.2.3 changelog: - implement readall() - lint with black This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi --- .../python/python3-multivolumefile_0.2.3.bb | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-multivolumefile_0.2.3.bb diff --git a/meta-python/recipes-devtools/python/python3-multivolumefile_0.2.3.bb b/meta-python/recipes-devtools/python/python3-multivolumefile_0.2.3.bb new file mode 100644 index 000000000..c82113101 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-multivolumefile_0.2.3.bb @@ -0,0 +1,21 @@ +SUMMARY = "Multi volume file wrapper library" +HOMEPAGE = "https://codeberg.org/miurahr/multivolume" +LICENSE = "LGPL-2.1-or-later" +SECTION = "devel/python" +LIC_FILES_CHKSUM = "file://LICENSE;md5=4fbd65380cdd255951079008b364516c" + +SRC_URI[sha256sum] = "a0648d0aafbc96e59198d5c17e9acad7eb531abea51035d08ce8060dcad709d6" + +inherit python_setuptools_build_meta pypi + +DEPENDS += " \ + ${PYTHON_PN}-setuptools-scm-native \ + ${PYTHON_PN}-toml-native \ + ${PYTHON_PN}-wheel-native \ +" + +RDEPENDS:${PN} += "\ + ${PYTHON_PN}-io \ + ${PYTHON_PN}-core \ + ${PYTHON_PN}-mmap \ +" From patchwork Thu Nov 2 14:05:21 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 33457 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 4208EC0018A for ; Thu, 2 Nov 2023 14:05:38 +0000 (UTC) Received: from mail-ed1-f53.google.com (mail-ed1-f53.google.com [209.85.208.53]) by mx.groups.io with SMTP id smtpd.web10.32024.1698933928887511587 for ; Thu, 02 Nov 2023 07:05:29 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@konsulko.com header.s=google header.b=pe7pvjsC; spf=pass (domain: konsulko.com, ip: 209.85.208.53, mailfrom: leon.anavi@konsulko.com) Received: by mail-ed1-f53.google.com with SMTP id 4fb4d7f45d1cf-54394328f65so1611538a12.3 for ; Thu, 02 Nov 2023 07:05:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=konsulko.com; s=google; t=1698933927; x=1699538727; darn=lists.openembedded.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=aG/iQsuQdzTOykuNwXanH8RefAqSscpfq9TFqk0YuEE=; b=pe7pvjsC8RGfb8Q280abaaz5alnUykzrf5E00EpdpatRSC4as47w+Y33woK0lRoWzR B3Tls7ITOnrZvknluc8lqfmizxXzo/lEccOEbjMZpblMmQaUqYYO2C6+qScOIm1ZuwNP TC+ex1Wziy+OiRipkUwljP6sfhjoCKdlXZhYc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1698933927; x=1699538727; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=aG/iQsuQdzTOykuNwXanH8RefAqSscpfq9TFqk0YuEE=; b=JujQulZzqQc3VBq5BA442pi84mvXUFq2gaN4DJ5lUnplrHXWTN74xWlYW9hKSKzpPN +Og8KjP2wIRDTvff01i/WTGVH5c6HDd95E6Jz8tuNSvbyFRvw6iq0VnGczYVQZlckHZQ FiccUY3zrWhCryV2MnYtZmG0L8QCCg1eNQ1+54vD0cFb+Zy5cQwGwCZZGl12tKIwx7Et vBnNss956GI+R+Cq1Qj/y2N7Td4F4er/MCX17pmRD0VkKs3st8nJG0j3Ph4uQ1QHqSD4 E0cBpOCJm773P9VfmtCodji2z4TMpMdA5STBYlUiDLyhm7vMvuIGadtYZh4tmTv0E1M7 i8eA== X-Gm-Message-State: AOJu0Yxu3nkKkmrUfJQki9rkhNY1P4ExZBe0iK2jJ5qqgWcG2OnE7ggL U7P1bzIWL+UY4A5gVM+Uj7Ox8sTQlzDRYexFusM= X-Google-Smtp-Source: AGHT+IFQoO43xDyG0O0VL9cioMauJohvhbRM6sTf34nBYqY5DB28j0/JbR29rJrLY3Y+J6U7+rKjbg== X-Received: by 2002:a05:6402:1bc4:b0:53e:3b8f:8a58 with SMTP id ch4-20020a0564021bc400b0053e3b8f8a58mr14670456edb.11.1698933927113; Thu, 02 Nov 2023 07:05:27 -0700 (PDT) Received: from tone.k.g (lan.nucleusys.com. [92.247.61.126]) by smtp.gmail.com with ESMTPSA id d5-20020a50f685000000b005401a4184ddsm2401763edn.27.2023.11.02.07.05.26 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 02 Nov 2023 07:05:26 -0700 (PDT) From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 2/4] python3-oletools: add recipe Date: Thu, 2 Nov 2023 16:05:21 +0200 Message-Id: <20231102140523.3337713-2-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20231102140523.3337713-1-leon.anavi@konsulko.com> References: <20231102140523.3337713-1-leon.anavi@konsulko.com> MIME-Version: 1.0 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, 02 Nov 2023 14:05:38 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/105839 Add oletools, Python tools to analyze security characteristics of MS Office and OLE files. Version 0.60.1 changelog: - olevba: fixed a bug when calling XLMMacroDeobfuscator removed keyword "sample" causing false positives - oleid: fixed OleID init issue - oleobj: added simple detection of CVE-2021-40444 initial stage added detection for customUI onLoad improved handling of incorrect filenames in OLE package - rtfobj: fixed code to find URLs in OLE2Link objects for Py3 - ftguess: added PowerPoint and XPS formats fixed issue with XPS and malformed documents added XLSB format - improved logging with common module log_helper This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi --- .../python/python3-oletools_0.60.1.bb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-oletools_0.60.1.bb diff --git a/meta-python/recipes-devtools/python/python3-oletools_0.60.1.bb b/meta-python/recipes-devtools/python/python3-oletools_0.60.1.bb new file mode 100644 index 000000000..fbb7955d6 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-oletools_0.60.1.bb @@ -0,0 +1,11 @@ +SUMMARY = "Python tools to analyze security characteristics of MS Office and OLE files" +HOMEPAGE = "https://github.com/decalage2/olefile" +LICENSE = "BSD-2-Clause" +LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=d7dd4b0d1f7153322a546e89b5a0a632" + +SRC_URI[sha256sum] = "67a796da4c4b8e2feb9a6b2495bef8798a3323a75512de4e5669d9dc9d1fae31" + +inherit pypi setuptools3 + +PYPI_PACKAGE = "oletools" +PYPI_PACKAGE_EXT = "zip" From patchwork Thu Nov 2 14:05:22 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 33456 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 4C51FC41535 for ; Thu, 2 Nov 2023 14:05:38 +0000 (UTC) Received: from mail-ed1-f51.google.com (mail-ed1-f51.google.com [209.85.208.51]) by mx.groups.io with SMTP id smtpd.web10.32025.1698933929619659558 for ; Thu, 02 Nov 2023 07:05:29 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@konsulko.com header.s=google header.b=JZVbLiok; spf=pass (domain: konsulko.com, ip: 209.85.208.51, mailfrom: leon.anavi@konsulko.com) Received: by mail-ed1-f51.google.com with SMTP id 4fb4d7f45d1cf-543456dbd7bso4054554a12.1 for ; Thu, 02 Nov 2023 07:05:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=konsulko.com; s=google; t=1698933928; x=1699538728; darn=lists.openembedded.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=0eiJ7jCNmGUdNMMGTOYQIAEqXKV5KoLx6utA/GJmXVY=; b=JZVbLiokDod03uqNzp69l0MVlkv9EadeAV77ffdrzAbWVjk0NlgV7rnkfa37TIRstT ++twAW9d+RQn2J4c0LItKntj4SRVkooDr//Gm8V04L6hpvvaQs1DCWwgXnHe/BOhgApn 6GcONNvo7nBW8Z/xuK51mIHDSOkGxZjiRjtfU= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1698933928; x=1699538728; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=0eiJ7jCNmGUdNMMGTOYQIAEqXKV5KoLx6utA/GJmXVY=; b=DsORbHqjxQbDsIr2eZ3XElTDF+ASjl4HQ0zj313ZK4tD26TNNPa0xvZvWpK/NRv+vi RtQpFCwL48w0lKRb+DF26RxAoVaEqw5asdC7Am0eR4EQ7NgUhn4dyGrGZu2lqDRzv6hw 7V65iXfwToC5e/00GYpYnaXFxlel0nAJMnU9SQsE9xURFYZqmNFUSo9ehV+apHi8IEw7 HnCHMqPT8ZRChKhQGW3ssf7rfSE6AFM1+nMH4Zpg/zciOcS5s5e2M45Jrkg+/0VYmstw yHSIJfEPrVaTcKLI+X0EZMG1XnAUS0yb501lq1btVB+8yfioOooln/YM0Ls7Uc9GiJqd gz4Q== X-Gm-Message-State: AOJu0YzY5BqrhHj+uONvqbDsI3oE9TXZnuqZ698eXoDAStJVlt2gtJBW bLr7DqiOfGgGuUzdCrtPzTrSZ4a+QLT3Tq2dYU8= X-Google-Smtp-Source: AGHT+IEUNMGFacKU9WkHv4Raxr4L+47PJaq11fa9O/aXuOSrBgADFAdpQ9z90HWF/vZbzqYwmvTHQQ== X-Received: by 2002:a50:9e05:0:b0:543:92cc:620a with SMTP id z5-20020a509e05000000b0054392cc620amr5251396ede.0.1698933927995; Thu, 02 Nov 2023 07:05:27 -0700 (PDT) Received: from tone.k.g (lan.nucleusys.com. [92.247.61.126]) by smtp.gmail.com with ESMTPSA id d5-20020a50f685000000b005401a4184ddsm2401763edn.27.2023.11.02.07.05.27 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 02 Nov 2023 07:05:27 -0700 (PDT) From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 3/4] python3-olefile: add recipe Date: Thu, 2 Nov 2023 16:05:22 +0200 Message-Id: <20231102140523.3337713-3-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20231102140523.3337713-1-leon.anavi@konsulko.com> References: <20231102140523.3337713-1-leon.anavi@konsulko.com> MIME-Version: 1.0 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, 02 Nov 2023 14:05:38 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/105840 Add olefile, a package to parse, read and write Microsoft OLE2 files. Version 0.46 changelog: - OleFileIO can now be used as a context manager (with...as), to close the file automatically (see doc). - Improved handling of malformed files. - Fixed several bugs. This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi --- .../python/python3-olefile_0.46.bb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-olefile_0.46.bb diff --git a/meta-python/recipes-devtools/python/python3-olefile_0.46.bb b/meta-python/recipes-devtools/python/python3-olefile_0.46.bb new file mode 100644 index 000000000..e29f30f6f --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-olefile_0.46.bb @@ -0,0 +1,17 @@ +SUMMARY = "Python package to parse, read and write Microsoft OLE2 files" +HOMEPAGE = "https://github.com/decalage2/olefile" +LICENSE = "BSD-2-Clause" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e21a06208415d5eb2001555d37851362" + +SRC_URI[sha256sum] = "133b031eaf8fd2c9399b78b8bc5b8fcbe4c31e85295749bb17a87cba8f3c3964" + +inherit pypi setuptools3 + +PYPI_PACKAGE = "olefile" +PYPI_PACKAGE_EXT = "zip" + +RDEPENDS:${PN} += "\ + ${PYTHON_PN}-core \ + ${PYTHON_PN}-datetime \ + ${PYTHON_PN}-logging \ +" From patchwork Thu Nov 2 14:05:23 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 33455 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 3CEA0C4167B for ; Thu, 2 Nov 2023 14:05:38 +0000 (UTC) Received: from mail-ed1-f45.google.com (mail-ed1-f45.google.com [209.85.208.45]) by mx.groups.io with SMTP id smtpd.web11.31697.1698933930867800326 for ; Thu, 02 Nov 2023 07:05:31 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@konsulko.com header.s=google header.b=L/2SHIaK; spf=pass (domain: konsulko.com, ip: 209.85.208.45, mailfrom: leon.anavi@konsulko.com) Received: by mail-ed1-f45.google.com with SMTP id 4fb4d7f45d1cf-5409bc907edso1577015a12.0 for ; Thu, 02 Nov 2023 07:05:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=konsulko.com; s=google; t=1698933929; x=1699538729; darn=lists.openembedded.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=snocGhNR7qg2HtShlTHqgWXGMIha++MSuYRIeSHrj4c=; b=L/2SHIaKD1CEJup/EQv++FieyVy8tDmHelvhExISC63r4h5MU5G8fz+yQ2UkMMr1OJ 87o9kIXRX06jmj3W/Zu1PY/syH5SXk57aeJD0XPwOeFLUUBNhk8Om+zfT0bvtvH8FFdX RZcKKdAK8em+ehx5StU4i9oZAeLnQBWBL+3aQ= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1698933929; x=1699538729; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=snocGhNR7qg2HtShlTHqgWXGMIha++MSuYRIeSHrj4c=; b=ATn5maZ+6SCGKv1d4lUXfj3r9LmBRwnjllc5HhkQPlWJW31E1blVtwVV2sqaFboC6F dKw9LyxuRqm3VFEgiZxMdDyyxcbWjpyeRPEtTCYZ+2vdCIUs2hF1a2KhK2e91EFfjdc/ ctU9RWEK+e5zBxVAtboejJzcdszUTySMNt1XWbcJFCcVVqAoGwX47Mye5rOabNKI92xC SfchAAPec90qt7XiA61voLgnqn9gXFTaRhNcBUMn++xnm8v3SFe+cDwtZPKFcD85TRV9 8MWJGy4xo3KvUjFBNul75MviHlomGYl+5wZ5bAXh9gT9vRdej7raIaXLPNza7QUPyLwX wKNg== X-Gm-Message-State: AOJu0Yylvzd9grOo+s6z//PsusI72MfV6mypcn0DVjAsArLjDQqmeP/i weROdbWgYvT1TuV1ZZD9pnhNsSVeta9+8obsAW0= X-Google-Smtp-Source: AGHT+IGd9dL5O7c0S1BLQLkpJwhFGg4MgnKzJ8JbZns4oZLCAA7Myi/4LiPEFtI7tibEz0SmhW/hFg== X-Received: by 2002:a50:aada:0:b0:543:75cb:2149 with SMTP id r26-20020a50aada000000b0054375cb2149mr5445910edc.38.1698933928836; Thu, 02 Nov 2023 07:05:28 -0700 (PDT) Received: from tone.k.g (lan.nucleusys.com. [92.247.61.126]) by smtp.gmail.com with ESMTPSA id d5-20020a50f685000000b005401a4184ddsm2401763edn.27.2023.11.02.07.05.28 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 02 Nov 2023 07:05:28 -0700 (PDT) From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 4/4] python3-pcodedmp: add recipe Date: Thu, 2 Nov 2023 16:05:23 +0200 Message-Id: <20231102140523.3337713-4-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20231102140523.3337713-1-leon.anavi@konsulko.com> References: <20231102140523.3337713-1-leon.anavi@konsulko.com> MIME-Version: 1.0 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, 02 Nov 2023 14:05:38 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/105841 Add pcodedmp, a VBA (Visual Basic for Applications; the macro programming language used in Microsoft Office) p-code disassembler version 1.2.6: - Some cosmetic changes - win_unicode_console not used when unavailable - win_unicode_console is now used only on Windows This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi --- .../python/python3-pcodedmp_1.2.6.bb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-pcodedmp_1.2.6.bb diff --git a/meta-python/recipes-devtools/python/python3-pcodedmp_1.2.6.bb b/meta-python/recipes-devtools/python/python3-pcodedmp_1.2.6.bb new file mode 100644 index 000000000..185597dea --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pcodedmp_1.2.6.bb @@ -0,0 +1,12 @@ +SUMMARY = "A VBA p-code disassembler" +HOMEPAGE = "https://github.com/bontchev/pcodedmp" +LICENSE = "GPL-3.0-only" +LIC_FILES_CHKSUM = "file://LICENSE;md5=84dcc94da3adb52b53ae4fa38fe49e5d" + +SRC_URI[sha256sum] = "025f8c809a126f45a082ffa820893e6a8d990d9d7ddb68694b5a9f0a6dbcd955" + +inherit pypi setuptools3 + +PYPI_PACKAGE="pcodedmp" + +BBCLASSEXTEND = "native nativesdk"