commit: 762624cdea56c0933f4027f1b0baf8b0a305c455 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org> AuthorDate: Wed Oct 15 22:01:55 2025 +0000 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org> CommitDate: Wed Oct 15 22:01:55 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=762624cd
dev-vcs/qgit: 2.13 Closes: https://bugs.gentoo.org/963593 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org> dev-vcs/qgit/Manifest | 1 + dev-vcs/qgit/qgit-2.13.ebuild | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/dev-vcs/qgit/Manifest b/dev-vcs/qgit/Manifest index df880553c0ce..58e25060851d 100644 --- a/dev-vcs/qgit/Manifest +++ b/dev-vcs/qgit/Manifest @@ -1 +1,2 @@ DIST qgit-2.12.tar.gz 1106508 BLAKE2B 67b67c95c27378fedc03b6898e55676272ca3072ad6c7123c4267cf17e5675400aeb51ddc3ac13d355723a15fc30e237e5742ec133a7948056539efbc29b3281 SHA512 637708922852d51a609fe9fc3055cd4722aebb7fb4a09e0531b719ff79a8cac2be4d85541e82368a55a71cd0c5150ac3b14e8fb4704ac3fa883f5fe8a32ac9c4 +DIST qgit-2.13.tar.gz 1106606 BLAKE2B baaf75755d8802f4c4d074435154c6bb39d6def17b2d24f3466064abdef458aa05ce4ca5185ee2b9293016c79269314dbdb731b843bfdc45e32c926b210fd21f SHA512 8e9f8b5c8e86c25bf101a00d87cef37ae9a2980e1bc1fbc5fbc782d334b0ef44416dcbbe85a5f168a36f3625bff3a875daecd7ebeea5723def00c5383ba94d2c diff --git a/dev-vcs/qgit/qgit-2.13.ebuild b/dev-vcs/qgit/qgit-2.13.ebuild new file mode 100644 index 000000000000..2595657501e2 --- /dev/null +++ b/dev-vcs/qgit/qgit-2.13.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +DESCRIPTION="Qt-based GUI for Git repositories" +HOMEPAGE="https://github.com/tibirna/qgit" +SRC_URI="https://github.com/tibirna/qgit/archive/${P}.tar.gz" +S="${WORKDIR}/${PN}-${P}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" + +DEPEND=" + dev-qt/qt5compat:6[gui] + dev-qt/qtbase:6[gui,widgets] +" +RDEPEND="${DEPEND} + dev-vcs/git +" + +DOCS=( README.adoc ) + +src_configure() { + local mycmakeargs=( + -DQT_PACKAGE=Qt6 + ) + cmake_src_configure +}
