Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/tig/
Date: Wed, 12 Apr 2017 07:51:46
Message-Id: 1491983429.62e661517a2e9110bf0a7027dcd1aad1ffdb5cf0.radhermit@gentoo
1 commit: 62e661517a2e9110bf0a7027dcd1aad1ffdb5cf0
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 12 07:48:30 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 12 07:50:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62e66151
7
8 dev-vcs/tig: remove old
9
10 dev-vcs/tig/tig-2.2.1.ebuild | 58 --------------------------------------------
11 1 file changed, 58 deletions(-)
12
13 diff --git a/dev-vcs/tig/tig-2.2.1.ebuild b/dev-vcs/tig/tig-2.2.1.ebuild
14 deleted file mode 100644
15 index 8eef3cb7bca..00000000000
16 --- a/dev-vcs/tig/tig-2.2.1.ebuild
17 +++ /dev/null
18 @@ -1,58 +0,0 @@
19 -# Copyright 1999-2017 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=6
23 -
24 -inherit autotools bash-completion-r1
25 -
26 -if [[ ${PV} == "9999" ]] ; then
27 - EGIT_REPO_URI="https://github.com/jonas/tig.git"
28 - inherit git-r3 autotools
29 -else
30 - SRC_URI="https://github.com/jonas/tig/releases/download/${P}/${P}.tar.gz"
31 - KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
32 -fi
33 -
34 -DESCRIPTION="text mode interface for git"
35 -HOMEPAGE="https://jonas.github.io/tig/"
36 -
37 -LICENSE="GPL-2"
38 -SLOT="0"
39 -IUSE="unicode"
40 -
41 -DEPEND="
42 - sys-libs/ncurses:0=[unicode?]
43 - sys-libs/readline:0="
44 -RDEPEND="${DEPEND}
45 - dev-vcs/git"
46 -[[ ${PV} == "9999" ]] && DEPEND+=" app-text/asciidoc"
47 -
48 -PATCHES=( "${FILESDIR}"/${P}-tinfo.patch )
49 -
50 -src_prepare() {
51 - default
52 - eautoreconf
53 -}
54 -
55 -src_configure() {
56 - econf $(use_with unicode ncursesw)
57 -}
58 -
59 -src_compile() {
60 - emake V=1
61 - [[ ${PV} == "9999" ]] && emake V=1 doc-man doc-html
62 -}
63 -
64 -src_test() {
65 - # workaround parallel test failures
66 - emake -j1 test
67 -}
68 -
69 -src_install() {
70 - emake DESTDIR="${D}" install install-doc-man
71 - dodoc doc/manual.html README.html NEWS.html
72 - newbashcomp contrib/tig-completion.bash ${PN}
73 -
74 - docinto examples
75 - dodoc contrib/*.tigrc
76 -}