From 3d74d60ffbb72dc63cdbc4c00aa319216d90a07b Mon Sep 17 00:00:00 2001 From: David Guglielmi Date: Sun, 6 Jun 2021 11:56:11 +0200 Subject: [PATCH] app-forensics/decompyle++: add ebuild --- app-forensics/decompyle++/Manifest | 2 ++ .../decompyle++-0_p20210412.ebuild | 24 +++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 app-forensics/decompyle++/Manifest create mode 100644 app-forensics/decompyle++/decompyle++-0_p20210412.ebuild diff --git a/app-forensics/decompyle++/Manifest b/app-forensics/decompyle++/Manifest new file mode 100644 index 0000000..4926974 --- /dev/null +++ b/app-forensics/decompyle++/Manifest @@ -0,0 +1,2 @@ +DIST decompyle++-0_p20210412.tar.gz 350571 BLAKE2B 2b72ecb8c0b6bcdf1f29f8e5976d75376fbf40f01726403756c68372e9571062c5be6c904c1bb33f12c06c669c7cc9f450f5ec0efc4bb960c79cb0c53a6e393d SHA512 9edcbada1b83153d5f214727b9d18d87765d48e24598fcecb37d5d28a5bd389db670652b3fceb86cc6dc99f7b14da6eaaf68fffad9dba255941c7bd8144742f0 +EBUILD decompyle++-0_p20210412.ebuild 555 BLAKE2B 2791f2b2f3b6f5e74281fa96fff85550caa9df32b4547f356cd6a40efa2866520105ac459368993eec5ca920f4e8c1a54e77ec6d576ab9633489fc8e924c6d77 SHA512 d6b981b1fe300bce97cf391d81e63643a570738d583acb1fb0d519771ad2a276b05c1be53646a33cdbe542d34304865b77af47f7b3bfb6fc967c3684a5be9f74 diff --git a/app-forensics/decompyle++/decompyle++-0_p20210412.ebuild b/app-forensics/decompyle++/decompyle++-0_p20210412.ebuild new file mode 100644 index 0000000..19aff0b --- /dev/null +++ b/app-forensics/decompyle++/decompyle++-0_p20210412.ebuild @@ -0,0 +1,24 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit cmake python-single-r1 + +EGIT_COMMIT="fbf9d24de3e5322d75658c0733afd5b139280ad8" + +DESCRIPTION="A Python Byte-code Disassembler/Decompiler" +HOMEPAGE="https://github.com/zrax/pycdc" +SRC_URI="https://github.com/zrax/pycdc/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="${PYTHON_DEPS}" + +S="${WORKDIR}/pycdc-${EGIT_COMMIT}"