dev-vcs/topgit: add 0.19.14

Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/40512
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Azamat H. Hackimov 2025-02-10 16:07:45 +03:00 committed by Arthur Zamarin
parent 124fb28d10
commit 875ca26705
No known key found for this signature in database
GPG Key ID: 02A0AF503D120504
2 changed files with 39 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST topgit-0.19.13.tar.gz 355721 BLAKE2B 0f70d7720d0ca2f7724fe5fa3bb100c7f812c0bb18fd9acb4897487d90f31da957bc0b4e47e9dcdd08594366fb31c4f46447cf78989f828f337edd8f8f231bf3 SHA512 8e477504c5f873651854c9412864c9dcb0ee35d0349b65e7c5d618a0add0fad3f749381edbe17195981bae3ff9f0e7323286abf7a5c6b744721ba2cc2a5d40d4
DIST topgit-0.19.14.tar.gz 358244 BLAKE2B 562e7ef42d662bb20e6da2dfeb960c3cb9d85378ac0fa6c9210cebc66b74aec63859639af9be075b8b8b432684be794b475645dc6517474d3151200a65d5ca6e SHA512 dabc511317211f5ad736675759f7920d3a5bb67c257bb8a0f3d9334e01fe1a60773c54b2f430a67a259bfe062e5741aaa33de213116d09a2193cfb8b7adf42de

View File

@ -0,0 +1,38 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1
DESCRIPTION="A different patch queue manager"
HOMEPAGE="https://mackyle.github.io/topgit/topgit.html https://github.com/mackyle/topgit"
SRC_URI="https://github.com/mackyle/${PN}/archive/${P}.tar.gz"
S=${WORKDIR}/${PN}-${P}
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND=">=dev-vcs/git-2.10.0"
BDEPEND="
dev-lang/perl
app-alternatives/awk
"
src_compile() {
# Needed because of "hardcoded" paths
emake prefix="/usr" sharedir="/usr/share/doc/${PF}"
}
src_test() {
# Needed to run tests properly (#739088)
emake T="" test
}
src_install() {
emake DESTDIR="${D}" prefix="/usr" sharedir="/usr/share/doc/${PF}" install
newbashcomp contrib/tg-completion.bash tg
dodoc README
}