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: Tue, 05 Jun 2018 04:31:40
Message-Id: 1528173032.a82d27869816db4405651ebb4eed6473c1b932a3.radhermit@gentoo
1 commit: a82d27869816db4405651ebb4eed6473c1b932a3
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 5 04:28:00 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 5 04:30:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a82d2786
7
8 dev-vcs/tig: remove old
9
10 dev-vcs/tig/Manifest | 3 ---
11 dev-vcs/tig/tig-2.2.2.ebuild | 56 --------------------------------------------
12 dev-vcs/tig/tig-2.3.0.ebuild | 56 --------------------------------------------
13 dev-vcs/tig/tig-2.3.2.ebuild | 56 --------------------------------------------
14 4 files changed, 171 deletions(-)
15
16 diff --git a/dev-vcs/tig/Manifest b/dev-vcs/tig/Manifest
17 index 816a198a1ba..bf98bb0edb7 100644
18 --- a/dev-vcs/tig/Manifest
19 +++ b/dev-vcs/tig/Manifest
20 @@ -1,4 +1 @@
21 -DIST tig-2.2.2.tar.gz 1046910 BLAKE2B b88b48fd24257f32a5892a8a60cf13a51e553c4f0e18918e36fc6afea68befa6d12155f143bcebf37e1beab513cf1a39d50254ac76e406d97b5552389c048222 SHA512 e43cf8b4e7938342b581a1238222d5cbf62e242208cd65fc9b3261c4076b7c60c182f9a80613538fcf8b50187cc2844c22f6d1aeaaa8b23864670667a91dbfcd
22 -DIST tig-2.3.0.tar.gz 1080956 BLAKE2B 48eaa4803a189df8dd8456b58687d4a7cd3b13c003165fba3f705a3e15eb19d4d1e23f9cc1306c5463e21501ee547ce9551c2278d10a6b069cb49e7af93d449f SHA512 d5e8bf04689fdbeab4f2ee60eef1e8e7686827228dc2f87b20c40a3a1c31aa3476d5088423ba8bcb72616a9f0f211a2dbb631a72cc946553e41cb225ea60ab37
23 -DIST tig-2.3.2.tar.gz 1083036 BLAKE2B 382e17486e79348b72ec67b71db2c09276262b8a9b092e657814f9d3693f2c70c46dc54a7b05ef890497f55fbc41f2232603c936f16d26a0c4d9b73d0d9281fc SHA512 092e1ea876b077a5026ee7b820e908d1d7aaa340805eb4ff975791f88ba1983eab13af669f5e663b28dfdd9e014cb92ef8c164a335705b777be417e3a7d1d5fb
24 DIST tig-2.3.3.tar.gz 1082818 BLAKE2B 0e9bcd02726b004c233a5efd7f58e4fda478dc1d2b738a7f8c086a3d71807d319ac8bd296b0f7c7569ed69a5b2b1db18e5c957cc5ce890a67b8f6ee7ead29551 SHA512 1d1cdf7184eeb3fea301c1959023f4aa97c4f8e25fc96cd61933ca39cf7549b6c7e1d9517f7ffd45d212ae9542ea4be07370b41c623cf6d0db8d025634b1d6d1
25
26 diff --git a/dev-vcs/tig/tig-2.2.2.ebuild b/dev-vcs/tig/tig-2.2.2.ebuild
27 deleted file mode 100644
28 index 04cf7cfbec0..00000000000
29 --- a/dev-vcs/tig/tig-2.2.2.ebuild
30 +++ /dev/null
31 @@ -1,56 +0,0 @@
32 -# Copyright 1999-2017 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit bash-completion-r1
38 -
39 -if [[ ${PV} == "9999" ]] ; then
40 - EGIT_REPO_URI="https://github.com/jonas/tig.git"
41 - inherit git-r3 autotools
42 -else
43 - SRC_URI="https://github.com/jonas/tig/releases/download/${P}/${P}.tar.gz"
44 - KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
45 -fi
46 -
47 -DESCRIPTION="text mode interface for git"
48 -HOMEPAGE="https://jonas.github.io/tig/"
49 -
50 -LICENSE="GPL-2"
51 -SLOT="0"
52 -IUSE="unicode"
53 -
54 -DEPEND="
55 - sys-libs/ncurses:0=[unicode?]
56 - sys-libs/readline:0="
57 -RDEPEND="${DEPEND}
58 - dev-vcs/git"
59 -[[ ${PV} == "9999" ]] && DEPEND+=" app-text/asciidoc app-text/xmlto"
60 -
61 -src_prepare() {
62 - default
63 - [[ ${PV} == "9999" ]] && eautoreconf
64 -}
65 -
66 -src_configure() {
67 - econf $(use_with unicode ncursesw)
68 -}
69 -
70 -src_compile() {
71 - emake V=1
72 - [[ ${PV} == "9999" ]] && emake V=1 doc-man doc-html
73 -}
74 -
75 -src_test() {
76 - # workaround parallel test failures
77 - emake -j1 test
78 -}
79 -
80 -src_install() {
81 - emake DESTDIR="${D}" install install-doc-man
82 - dodoc doc/manual.html README.html NEWS.html
83 - newbashcomp contrib/tig-completion.bash ${PN}
84 -
85 - docinto examples
86 - dodoc contrib/*.tigrc
87 -}
88
89 diff --git a/dev-vcs/tig/tig-2.3.0.ebuild b/dev-vcs/tig/tig-2.3.0.ebuild
90 deleted file mode 100644
91 index 9f6f0769818..00000000000
92 --- a/dev-vcs/tig/tig-2.3.0.ebuild
93 +++ /dev/null
94 @@ -1,56 +0,0 @@
95 -# Copyright 1999-2017 Gentoo Foundation
96 -# Distributed under the terms of the GNU General Public License v2
97 -
98 -EAPI=6
99 -
100 -inherit bash-completion-r1
101 -
102 -if [[ ${PV} == "9999" ]] ; then
103 - EGIT_REPO_URI="https://github.com/jonas/tig.git"
104 - inherit git-r3 autotools
105 -else
106 - SRC_URI="https://github.com/jonas/tig/releases/download/${P}/${P}.tar.gz"
107 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
108 -fi
109 -
110 -DESCRIPTION="A text mode interface for git"
111 -HOMEPAGE="https://jonas.github.io/tig/"
112 -
113 -LICENSE="GPL-2"
114 -SLOT="0"
115 -IUSE="unicode"
116 -
117 -DEPEND="
118 - sys-libs/ncurses:0=[unicode?]
119 - sys-libs/readline:0="
120 -RDEPEND="${DEPEND}
121 - dev-vcs/git"
122 -[[ ${PV} == "9999" ]] && DEPEND+=" app-text/asciidoc app-text/xmlto"
123 -
124 -src_prepare() {
125 - default
126 - [[ ${PV} == "9999" ]] && eautoreconf
127 -}
128 -
129 -src_configure() {
130 - econf $(use_with unicode ncursesw)
131 -}
132 -
133 -src_compile() {
134 - emake V=1
135 - [[ ${PV} == "9999" ]] && emake V=1 doc-man doc-html
136 -}
137 -
138 -src_test() {
139 - # workaround parallel test failures
140 - emake -j1 test
141 -}
142 -
143 -src_install() {
144 - emake DESTDIR="${D}" install install-doc-man
145 - dodoc doc/manual.html README.html NEWS.html
146 - newbashcomp contrib/tig-completion.bash ${PN}
147 -
148 - docinto examples
149 - dodoc contrib/*.tigrc
150 -}
151
152 diff --git a/dev-vcs/tig/tig-2.3.2.ebuild b/dev-vcs/tig/tig-2.3.2.ebuild
153 deleted file mode 100644
154 index 9f6f0769818..00000000000
155 --- a/dev-vcs/tig/tig-2.3.2.ebuild
156 +++ /dev/null
157 @@ -1,56 +0,0 @@
158 -# Copyright 1999-2017 Gentoo Foundation
159 -# Distributed under the terms of the GNU General Public License v2
160 -
161 -EAPI=6
162 -
163 -inherit bash-completion-r1
164 -
165 -if [[ ${PV} == "9999" ]] ; then
166 - EGIT_REPO_URI="https://github.com/jonas/tig.git"
167 - inherit git-r3 autotools
168 -else
169 - SRC_URI="https://github.com/jonas/tig/releases/download/${P}/${P}.tar.gz"
170 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
171 -fi
172 -
173 -DESCRIPTION="A text mode interface for git"
174 -HOMEPAGE="https://jonas.github.io/tig/"
175 -
176 -LICENSE="GPL-2"
177 -SLOT="0"
178 -IUSE="unicode"
179 -
180 -DEPEND="
181 - sys-libs/ncurses:0=[unicode?]
182 - sys-libs/readline:0="
183 -RDEPEND="${DEPEND}
184 - dev-vcs/git"
185 -[[ ${PV} == "9999" ]] && DEPEND+=" app-text/asciidoc app-text/xmlto"
186 -
187 -src_prepare() {
188 - default
189 - [[ ${PV} == "9999" ]] && eautoreconf
190 -}
191 -
192 -src_configure() {
193 - econf $(use_with unicode ncursesw)
194 -}
195 -
196 -src_compile() {
197 - emake V=1
198 - [[ ${PV} == "9999" ]] && emake V=1 doc-man doc-html
199 -}
200 -
201 -src_test() {
202 - # workaround parallel test failures
203 - emake -j1 test
204 -}
205 -
206 -src_install() {
207 - emake DESTDIR="${D}" install install-doc-man
208 - dodoc doc/manual.html README.html NEWS.html
209 - newbashcomp contrib/tig-completion.bash ${PN}
210 -
211 - docinto examples
212 - dodoc contrib/*.tigrc
213 -}