From fcc5224904648a8e6eb528d7603154160a20022f Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 2 Feb 2022 01:39:05 +0000 Subject: gentoo resync : 02.02.2022 --- dev-util/gef/gef-2022.01.ebuild | 81 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 dev-util/gef/gef-2022.01.ebuild (limited to 'dev-util/gef/gef-2022.01.ebuild') diff --git a/dev-util/gef/gef-2022.01.ebuild b/dev-util/gef/gef-2022.01.ebuild new file mode 100644 index 000000000000..e29ca85b5b66 --- /dev/null +++ b/dev-util/gef/gef-2022.01.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..10} ) + +inherit python-single-r1 wrapper + +DESCRIPTION="A GDB Enhanced Features for exploit devs & reversers" +HOMEPAGE="https://github.com/hugsy/gef" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/hugsy/gef" +else + SRC_URI="https://github.com/hugsy/gef/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="doc test" +# Seem to hang right now? +RESTRICT="!test? ( test ) test" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + dev-util/ropper[${PYTHON_SINGLE_USEDEP}] + sys-devel/gdb[python,${PYTHON_SINGLE_USEDEP}] + $(python_gen_cond_dep ' + dev-libs/capstone[python,${PYTHON_USEDEP}] + dev-libs/keystone[python,${PYTHON_USEDEP}] + dev-python/pylint[${PYTHON_USEDEP}] + dev-util/unicorn[python,${PYTHON_USEDEP}] + ')" + +BDEPEND="doc? ( dev-python/mkdocs ) + test? ( + $(python_gen_cond_dep ' + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + ') + )" + +src_prepare() { + default + + sed -i -e '/pylint/d' requirements.txt || die +} + +src_compile() { + # Tries to compile tests + : +} + +src_install() { + insinto /usr/share/${PN} + doins -r *.py + + python_optimize "${ED}"/usr/share/${PN} + + make_wrapper "gdb-gef" \ + "gdb -ex \"source ${EPREFIX}/usr/share/${PN}/gef.py\"" || die + + if use doc; then + # TODO: docs.eclass? + mkdocs build -d html || die + + rm "${WORKDIR}"/${P}/html/sitemap.xml.gz || die + dodoc -r html/ + fi + + dodoc README.md +} + +pkg_postinst() { + einfo "\nUsage:" + einfo " ~$ gdb-gef \n" +} -- cgit v1.2.3