pentoo-overlay/dev-util/dwarf-debugger/dwarf-debugger-1.0.9.ebuild
2020-06-21 16:34:38 +02:00

31 lines
842 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
MY_PN="dwarf_debugger"
DESCRIPTION="Full featured multi arch/os debugger built on top of PyQt5 and frida"
HOMEPAGE="https://github.com/iGio90/Dwarf"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="${PYTHON_DEPS}
>=dev-libs/capstone-4.0.1[python,${PYTHON_USEDEP}]
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
>=dev-python/frida-python-12.8.0[${PYTHON_USEDEP}]
>=dev-python/PyQt5-5.11.3[${PYTHON_USEDEP}]
>=dev-python/pyperclip-1.7.0[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
PATCHES=""${FILESDIR}"/dwart-disable-update.patch"
S="${WORKDIR}/${MY_PN}-${PV}"