commit: 5487673c657b11136e262230cfe294fa2796a7d1 Author: David Roman <davidroman96 <AT> gmail <DOT> com> AuthorDate: Tue Jun 17 12:31:06 2025 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Tue Jun 17 12:31:06 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5487673c
dev-debug/gdbgui: add missing dependencies on flask-socketio & pygdbmi Closes: https://bugs.gentoo.org/958316 Bug: https://bugs.gentoo.org/653614 Signed-off-by: David Roman <davidroman96 <AT> gmail.com> dev-debug/gdbgui/Manifest | 1 + dev-debug/gdbgui/gdbgui-0.15.2.0-r1.ebuild | 31 ++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/dev-debug/gdbgui/Manifest b/dev-debug/gdbgui/Manifest index 13fedafb1a..54dd5711f4 100644 --- a/dev-debug/gdbgui/Manifest +++ b/dev-debug/gdbgui/Manifest @@ -1 +1,2 @@ +DIST gdbgui-0.15.2.0.gh.tar.gz 4950845 BLAKE2B ffdce1923aead7d5cf202aa6954bbedcfa55cb27351b7635dd9636a8b398e4d9d8baa1c59789ba47e80ae581fa6510cae2017d0639cc7f9137d8ce5e0324172b SHA512 b1aef477f87b04016f594fe38581b646a0179bf9fd2441c6af3a534a817fc0b43a89f22016e252dffca775ab2b6a4e9cd7962f6f347be9295aee0af798a033b3 DIST gdbgui-0.15.2.0.tar.gz 1292007 BLAKE2B 32adaef906d0fa94de76d7009c3a0c37e9596403b8a10b3b75b798627141627d7d7196399d61b4252512c6707a2ac8ec71958bb22432155ef8d11b3681aa89c2 SHA512 e678494efe6ef3a1e65dc167b0620cffd219a9fa3c2dcf5c127229042bb9e0f3a7ccba0cbf5c70689bb4ec1ec3f3c36be75a2b6024ea615758928205e584ecb8 diff --git a/dev-debug/gdbgui/gdbgui-0.15.2.0-r1.ebuild b/dev-debug/gdbgui/gdbgui-0.15.2.0-r1.ebuild new file mode 100644 index 0000000000..0ef7f7e3c0 --- /dev/null +++ b/dev-debug/gdbgui/gdbgui-0.15.2.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{11..13} ) + +inherit distutils-r1 + +DESCRIPTION="Browser-based frontend to gdb" +HOMEPAGE="https://www.gdbgui.com/ https://github.com/cs01/gdbgui" +SRC_URI="https://github.com/cs01/gdbgui/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-python/bidict[${PYTHON_USEDEP}] + dev-python/flask[${PYTHON_USEDEP}] + dev-python/flask-compress[${PYTHON_USEDEP}] + dev-python/flask-socketio[${PYTHON_USEDEP}] + dev-python/pygdbmi[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/python-engineio[${PYTHON_USEDEP}] +" + +RDEPEND="${DEPEND}" + +distutils_enable_tests pytest
