diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-01-17 21:14:14 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-01-18 15:27:43 +0100 |
commit | 7d29b62f5901da3df5b9b31e17463021cff3df83 (patch) | |
tree | 4e9fd60c009c92ea9c9fd14cb17f23f52a09b417 /dev-debug | |
parent | Move {dev-util → dev-debug}/gef (diff) | |
download | gentoo-7d29b62f5901da3df5b9b31e17463021cff3df83.tar.gz gentoo-7d29b62f5901da3df5b9b31e17463021cff3df83.tar.bz2 gentoo-7d29b62f5901da3df5b9b31e17463021cff3df83.zip |
Move {dev-util → dev-debug}/peda
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/34873
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-debug')
-rw-r--r-- | dev-debug/peda/Manifest | 1 | ||||
-rw-r--r-- | dev-debug/peda/metadata.xml | 15 | ||||
-rw-r--r-- | dev-debug/peda/peda-1.2.ebuild | 49 | ||||
-rw-r--r-- | dev-debug/peda/peda-9999.ebuild | 49 |
4 files changed, 114 insertions, 0 deletions
diff --git a/dev-debug/peda/Manifest b/dev-debug/peda/Manifest new file mode 100644 index 000000000000..91865e140d1d --- /dev/null +++ b/dev-debug/peda/Manifest @@ -0,0 +1 @@ +DIST peda-1.2.tar.gz 65331 BLAKE2B 6942b99d714eb1114167b80ba202d86f6dee52cd47c8047b4cb78d4a91f45e1594521440a3318a968e35c5dc56a616393c0837d6f9db5ba41505641a385fb573 SHA512 e69844b8c3a51af96096d97ebfa4a67ac8ff16e4a9e0edb64bbb5e946b1ebeaa56260663718b90145f4191cc25762f3e351a8de92bf9b56f9f1d11389c563c43 diff --git a/dev-debug/peda/metadata.xml b/dev-debug/peda/metadata.xml new file mode 100644 index 000000000000..a4d70b1a53ea --- /dev/null +++ b/dev-debug/peda/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person" proxied="yes"> + <email>mario.haustein@hrz.tu-chemnitz.de</email> + <name>Mario Haustein</name> + </maintainer> + <maintainer type="project" proxied="proxy"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <upstream> + <remote-id type="github">longld/peda</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-debug/peda/peda-1.2.ebuild b/dev-debug/peda/peda-1.2.ebuild new file mode 100644 index 000000000000..9e889d8de922 --- /dev/null +++ b/dev-debug/peda/peda-1.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} ) + +inherit python-single-r1 wrapper + +DESCRIPTION="Python Exploit Development Assistance for GDB" +HOMEPAGE="https://github.com/longld/peda" + +if [[ ${PV} == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/longld/peda" +else + SRC_URI="https://github.com/longld/peda/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="amd64 x86" +fi + +LICENSE="CC-BY-NC-SA-3.0" +SLOT="0" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-debug/gdb[python,${PYTHON_SINGLE_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + ') +" + +src_install() { + insinto /usr/share/${PN} + doins -r lib/ *.py + + python_optimize "${ED}"/usr/share/${PN} + + make_wrapper "gdb-peda" \ + "gdb -x \"${EPREFIX}/usr/share/${PN}/peda.py\"" || die + + dodoc README{,.md} +} + +pkg_postinst() { + einfo "\nUsage:" + einfo " ~$ gdb-peda <program>\n" +} diff --git a/dev-debug/peda/peda-9999.ebuild b/dev-debug/peda/peda-9999.ebuild new file mode 100644 index 000000000000..dc8b77cb35cd --- /dev/null +++ b/dev-debug/peda/peda-9999.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} ) + +inherit python-single-r1 wrapper + +DESCRIPTION="Python Exploit Development Assistance for GDB" +HOMEPAGE="https://github.com/longld/peda" + +if [[ ${PV} == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/longld/peda" +else + SRC_URI="https://github.com/longld/peda/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="CC-BY-NC-SA-3.0" +SLOT="0" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-debug/gdb[python,${PYTHON_SINGLE_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + ') +" + +src_install() { + insinto /usr/share/${PN} + doins -r lib/ *.py + + python_optimize "${ED}"/usr/share/${PN} + + make_wrapper "gdb-peda" \ + "gdb -x \"${EPREFIX}/usr/share/${PN}/peda.py\"" || die + + dodoc README{,.md} +} + +pkg_postinst() { + einfo "\nUsage:" + einfo " ~$ gdb-peda <program>\n" +} |