dev-debug/gdb-dashboard: rm 0.17.3

Signed-off-by: NRK <nrk@disroot.org>
This commit is contained in:
NRK
2026-01-04 07:44:23 +00:00
parent 5b3dcd86e2
commit 1359696196
2 changed files with 0 additions and 54 deletions

View File

@@ -1,2 +1 @@
DIST gdb-dashboard-0.17.3.tar.gz 23288 BLAKE2B d7118e356d0c71dd77b887013eed42f31aa990ccef8c64caf351ace5c367031dd16e0b17116c89ff06d347907328b85199009ce0d66e4c338740da0378abe7c4 SHA512 7def8a8a0549397f1cc89f03e7c818d82d7ac02c0e81f535d061c6bca1b88708fb94c985261d0b5f3f7eeb22a89c0b42cb127efc0b1fb6338b9751b18cb03ebe
DIST gdb-dashboard-0.17.4.tar.gz 23332 BLAKE2B cf05fea4c3d722d1bafbc6ef4a26df88be555be6adf8dca313ef9b8b28cad533931d3d2da0cb2660c1233c3b3e744a518893698ecbb1e573e12812cebfc3e7c8 SHA512 9cce63be926d21aace0833b52b36266f115599fbbf426dcd7d8090a6861c1c9db26fe7d953bedcbec0b96b75c9b2b9af59666c0e80f5cdf55bd6d44523459dbd

View File

@@ -1,53 +0,0 @@
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
inherit python-single-r1 optfeature wrapper
DESCRIPTION="Modular visual interface for GDB in Python"
HOMEPAGE="https://github.com/cyrus-and/gdb-dashboard"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/cyrus-and/gdb-dashboard"
else
SRC_URI="https://github.com/cyrus-and/gdb-dashboard/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
RDEPEND="
dev-debug/gdb[python]
${PYTHON_DEPS}
"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
pkg_setup() {
python-single-r1_pkg_setup
}
src_install() {
insinto "/usr/share/${PN}"
newins .gdbinit "${PN}"
# install a convenient wrapper. disables any typical .gdbinit (-nh) to
# get a clean state without interference. -q to disable annoying
# copyright message at startup.
make_wrapper "$PN" "gdb -q -nh -iex 'source /usr/share/${PN}/${PN}'"
dodoc README.md
}
pkg_postinst() {
einfo "To use ${PN}:"
einfo " Either use the installed '${PN}' wrapper script directly."
einfo " Or put 'source /usr/share/${PN}/${PN}' in your .gdbinit file."
einfo ""
optfeature "syntax highlighting" "dev-python/pygments"
}