diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2024-01-19 07:28:43 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2024-01-19 07:28:43 +0000 |
| commit | f63baf025e2b76cb1ae7aa84acaa8d66aef367a0 (patch) | |
| tree | 47ad3ee96a64becd266d03687de600a9ca4960df /dev-debug/peda | |
| parent | 3ee91b49159bb1569a20aa4596e51616147cbdb7 (diff) | |
| download | baldeagleos-repo-f63baf025e2b76cb1ae7aa84acaa8d66aef367a0.tar.gz baldeagleos-repo-f63baf025e2b76cb1ae7aa84acaa8d66aef367a0.tar.xz baldeagleos-repo-f63baf025e2b76cb1ae7aa84acaa8d66aef367a0.zip | |
Adding metadata
Diffstat (limited to 'dev-debug/peda')
| -rw-r--r-- | dev-debug/peda/Manifest | 1 | ||||
| -rw-r--r-- | dev-debug/peda/metadata.xml | 14 | ||||
| -rw-r--r-- | dev-debug/peda/peda-1.2.ebuild | 49 | ||||
| -rw-r--r-- | dev-debug/peda/peda-9999.ebuild | 49 |
4 files changed, 113 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..73424341778f --- /dev/null +++ b/dev-debug/peda/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>mario.haustein@hrz.tu-chemnitz.de</email> + <name>Mario Haustein</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + + <origin>gentoo-staging</origin> +</pkgmetadata>
\ No newline at end of file diff --git a/dev-debug/peda/peda-1.2.ebuild b/dev-debug/peda/peda-1.2.ebuild new file mode 100644 index 000000000000..5de9126fab72 --- /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_{8,9,10,11,12} ) + +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..5aedaf7ca728 --- /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_{8,9,10,11,12} ) + +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" +} |
