diff --git a/dev-util/dwarf-debugger/Manifest b/dev-util/dwarf-debugger/Manifest index 90a65db9f..c21efdce1 100644 --- a/dev-util/dwarf-debugger/Manifest +++ b/dev-util/dwarf-debugger/Manifest @@ -1 +1,2 @@ DIST dwarf_debugger-1.0.0.tar.gz 634783 BLAKE2B 981d04081c6e794e100985823541f63397fff5b317bbc76f18fc2f5d5eb7b07dcf70041ec3dbec8fec0a908d11aaed9408eca5e8ef94b46d099cf473f9c6c928 SHA512 4d2f1a1986e72fc882c6731971aef240880128cc7b989fe136cb71a35d4330313135cba4fee4c2c7c8308863fddb01060674863f656a395c3e34b48e4eb1f431 +DIST dwarf_debugger-1.0.1.tar.gz 634980 BLAKE2B 7650c8c81fc8d6ac415aa6beee99d476fa84c9dea6dfb49046fe2f6b580d4660fd42526c9185c0a2cae92e01988b389c1ad2399bbcac227a663225eca26e8dab SHA512 e4082674c58363d87e2af3961a7acfb9690bcf47fc6ce6c579173b7dbe03c5ff092e196fdbbe96717bb1a9d3697f4509bbe79cf3dad7710f7ddf1b4ff87eefd9 diff --git a/dev-util/dwarf-debugger/dwarf-debugger-1.0.1.ebuild b/dev-util/dwarf-debugger/dwarf-debugger-1.0.1.ebuild new file mode 100644 index 000000000..e85b63a6e --- /dev/null +++ b/dev-util/dwarf-debugger/dwarf-debugger-1.0.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +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} + dev-python/setuptools[${PYTHON_USEDEP}]" + +PATCHES=""${FILESDIR}"/dwart-disable-update.patch" + +S="${WORKDIR}/${MY_PN}-${PV}"