Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/topgit/
Date: Fri, 15 Oct 2021 10:22:55
Message-Id: 1634293359.943371ecafe6ebc9972fe997c528ae5019a96c15.juippis@gentoo
1 commit: 943371ecafe6ebc9972fe997c528ae5019a96c15
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Mon Sep 27 20:05:12 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 15 10:22:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=943371ec
7
8 dev-vcs/topgit: update to 0.19.13
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 dev-vcs/topgit/Manifest | 1 +
15 dev-vcs/topgit/topgit-0.19.13.ebuild | 39 ++++++++++++++++++++++++++++++++++++
16 2 files changed, 40 insertions(+)
17
18 diff --git a/dev-vcs/topgit/Manifest b/dev-vcs/topgit/Manifest
19 index 4f0d3325a71..ba63fc8e6ad 100644
20 --- a/dev-vcs/topgit/Manifest
21 +++ b/dev-vcs/topgit/Manifest
22 @@ -1,2 +1,3 @@
23 DIST topgit-0.19.12.tar.gz 302492 BLAKE2B 5691823e58774883d33bc96e5d10b871a40224c97e3deb90f4fef051dbcecd6a7d3c979fe6b7e6c9aac64d485b9c4324b4d666a7ae64cb82cd325498d33e0cae SHA512 cb9245fbec7a4a15822a5b70d7052be200aa8b574b528dd929121597eb7dcec97532b0fd4d6a4d6bb63676194ed0ab2129e106fb88f63561187620ec431f9efb
24 +DIST topgit-0.19.13.tar.gz 355721 BLAKE2B 0f70d7720d0ca2f7724fe5fa3bb100c7f812c0bb18fd9acb4897487d90f31da957bc0b4e47e9dcdd08594366fb31c4f46447cf78989f828f337edd8f8f231bf3 SHA512 8e477504c5f873651854c9412864c9dcb0ee35d0349b65e7c5d618a0add0fad3f749381edbe17195981bae3ff9f0e7323286abf7a5c6b744721ba2cc2a5d40d4
25 DIST topgit-0.9.tar.gz 37025 BLAKE2B e28b0fd4cdf4cf063bad939c712fc9354ffc2d9c5e431f637e8306454d7a871268902253a1d2c59afa94406223b1fdc1627f3dda04586c88c0b609a72a1eaa87 SHA512 15b4ec44fb1711273155350924806f9ddce330251d3f300f5d2ecf445f4822c40b5c7309429876746ed8226c00f74292956f51f9126c8c359c3f4d589c73791c
26
27 diff --git a/dev-vcs/topgit/topgit-0.19.13.ebuild b/dev-vcs/topgit/topgit-0.19.13.ebuild
28 new file mode 100644
29 index 00000000000..4c973147e23
30 --- /dev/null
31 +++ b/dev-vcs/topgit/topgit-0.19.13.ebuild
32 @@ -0,0 +1,39 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit bash-completion-r1
39 +
40 +DESCRIPTION="A different patch queue manager"
41 +HOMEPAGE="https://mackyle.github.io/topgit/topgit.html https://github.com/mackyle/topgit"
42 +SRC_URI="https://github.com/mackyle/${PN}/archive/${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +BDEPEND="sys-apps/sed
49 + virtual/awk"
50 +RDEPEND=">=dev-vcs/git-2.10.0"
51 +IUSE="test"
52 +RESTRICT="!test? ( test )"
53 +
54 +S="${WORKDIR}/${PN}-${P}"
55 +
56 +src_compile() {
57 + # Needed because of "hardcoded" paths
58 + emake prefix="/usr" sharedir="/usr/share/doc/${PF}"
59 +}
60 +
61 +src_test() {
62 + # Needed to run tests properly (#739088)
63 + emake T="" test
64 +}
65 +
66 +src_install() {
67 + emake DESTDIR="${D}" prefix="/usr" sharedir="/usr/share/doc/${PF}" install
68 +
69 + newbashcomp contrib/tg-completion.bash tg
70 + dodoc README
71 +}