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: Sat, 29 Aug 2015 18:18:45
Message-Id: 1440872215.92d7a907db60739fd3fca99bfbcbcb1e6c46a30a.radhermit@gentoo
1 commit: 92d7a907db60739fd3fca99bfbcbcb1e6c46a30a
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 18:16:55 2015 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 18:16:55 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92d7a907
7
8 dev-vcs/tig: remove old
9
10 dev-vcs/tig/Manifest | 2 --
11 dev-vcs/tig/tig-2.0.3.ebuild | 46 ------------------------------------------
12 dev-vcs/tig/tig-2.1.ebuild | 48 --------------------------------------------
13 3 files changed, 96 deletions(-)
14
15 diff --git a/dev-vcs/tig/Manifest b/dev-vcs/tig/Manifest
16 index 157c19c..4b4a8db 100644
17 --- a/dev-vcs/tig/Manifest
18 +++ b/dev-vcs/tig/Manifest
19 @@ -1,3 +1 @@
20 -DIST tig-2.0.3.tar.gz 605513 SHA256 faac0fd80cb771cf34ae0aa9b2fedba1cc0f8aa70731d400661660c8d48f96c4 SHA512 0d16c4ec68d7b846b8cb990756ff683584eaf7eea89f9853d3803c86ef7544e2b80e1376a0e441082d7d23a2496fb7bcf8b5d987fe026b3d85e777064351fa15 WHIRLPOOL 6e63b1622aa593e7ee30db5356f438ef536f428a30f917b1bce43204a4c27b7b21b3268b5c97fde5c6518b4a1fd81a85f2168138e94aab7b8673176c01b0265f
21 DIST tig-2.1.1.tar.gz 641710 SHA256 50c5179fd564b829b6b2cec087e66f10cf8799601de19350df0772ae77e4852f SHA512 be55ece813e1af938e3c4d805d4f034e78f75c1fcda7f4b5bc02de8b228d6d76b9f4921f6dc079485b8c13a3acc5ea2d146a0c437d28add45d50137ae6545f10 WHIRLPOOL 869012b9e5d47eaa24d7939202819bcf85c44ed4d2de742d7770d8610f3e86dfae43588f626de2785f10e78293c21151272b81b0f196163844ea8b76cce5d01c
22 -DIST tig-2.1.tar.gz 635114 SHA256 306287f684f57563a53abf1cf46149e0d30c6b500fbc0c39e9bc059506373cb0 SHA512 d21d263b62675721467aca35cf2f7fbe41e0042ac295516bd67e348039030df53de30f5dea3059c4b13188e450921972920c014f0381729826c727dcdd7f6804 WHIRLPOOL 9a5ea63fd985764c0d06660bc58d3ffe11bb9242ab92ec8dc7d638e1e5f5693e342577fc1bceb7e899386f96baaa467506bfb9a3fc5ff52231c24f317c9cb68d
23
24 diff --git a/dev-vcs/tig/tig-2.0.3.ebuild b/dev-vcs/tig/tig-2.0.3.ebuild
25 deleted file mode 100644
26 index 699158b..0000000
27 --- a/dev-vcs/tig/tig-2.0.3.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -inherit bash-completion-r1 toolchain-funcs
37 -
38 -DESCRIPTION="text mode interface for git"
39 -HOMEPAGE="http://jonas.nitro.dk/tig/"
40 -SRC_URI="http://jonas.nitro.dk/tig/releases/${P}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
45 -IUSE="unicode"
46 -
47 -DEPEND="
48 - sys-libs/ncurses:0=[unicode?]
49 - sys-libs/readline:0="
50 -RDEPEND="${DEPEND}
51 - dev-vcs/git"
52 -
53 -src_prepare() {
54 - # pre-generated manpages are in the root directory
55 - sed -i '/^MANDOC/s#doc/##g' Makefile || die
56 -}
57 -
58 -src_configure() {
59 - econf $(use_with unicode ncursesw)
60 -}
61 -
62 -src_compile() {
63 - emake V=1
64 -}
65 -
66 -src_test() {
67 - # workaround parallel test failures
68 - emake -j1 test
69 -}
70 -
71 -src_install() {
72 - emake DESTDIR="${D}" install install-doc-man
73 - dohtml manual.html README.html NEWS.html
74 - newbashcomp contrib/tig-completion.bash ${PN}
75 -}
76
77 diff --git a/dev-vcs/tig/tig-2.1.ebuild b/dev-vcs/tig/tig-2.1.ebuild
78 deleted file mode 100644
79 index d2b9190..0000000
80 --- a/dev-vcs/tig/tig-2.1.ebuild
81 +++ /dev/null
82 @@ -1,48 +0,0 @@
83 -# Copyright 1999-2015 Gentoo Foundation
84 -# Distributed under the terms of the GNU General Public License v2
85 -# $Id$
86 -
87 -EAPI=5
88 -
89 -inherit bash-completion-r1 toolchain-funcs
90 -
91 -DESCRIPTION="text mode interface for git"
92 -HOMEPAGE="http://jonas.nitro.dk/tig/"
93 -SRC_URI="http://jonas.nitro.dk/tig/releases/${P}.tar.gz"
94 -
95 -LICENSE="GPL-2"
96 -SLOT="0"
97 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
98 -IUSE="unicode"
99 -
100 -DEPEND="sys-libs/ncurses:0=[unicode?]
101 - sys-libs/readline:0="
102 -RDEPEND="${DEPEND}
103 - dev-vcs/git"
104 -
105 -src_prepare() {
106 - # pre-generated manpages are in the root directory
107 - sed -i '/^MANDOC/s#doc/##g' Makefile || die
108 -}
109 -
110 -src_configure() {
111 - econf $(use_with unicode ncursesw)
112 -}
113 -
114 -src_compile() {
115 - emake V=1
116 -}
117 -
118 -src_test() {
119 - # workaround parallel test failures
120 - emake -j1 test
121 -}
122 -
123 -src_install() {
124 - emake DESTDIR="${D}" install install-doc-man
125 - dohtml manual.html README.html NEWS.html
126 - newbashcomp contrib/tig-completion.bash ${PN}
127 -
128 - docinto examples
129 - dodoc contrib/*.tigrc
130 -}