Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/wdiff/
Date: Wed, 23 Dec 2020 22:57:53
Message-Id: 1608764222.322fc1d4dbc8902ae2d51aa9b91237f20a900b42.sam@gentoo
1 commit: 322fc1d4dbc8902ae2d51aa9b91237f20a900b42
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 23 22:57:02 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 23 22:57:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=322fc1d4
7
8 app-text/wdiff: cleanup old (EAPI 5)
9
10 Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-text/wdiff/wdiff-1.2.2.ebuild | 34 ----------------------------------
14 1 file changed, 34 deletions(-)
15
16 diff --git a/app-text/wdiff/wdiff-1.2.2.ebuild b/app-text/wdiff/wdiff-1.2.2.ebuild
17 deleted file mode 100644
18 index 04b92d04f62..00000000000
19 --- a/app-text/wdiff/wdiff-1.2.2.ebuild
20 +++ /dev/null
21 @@ -1,34 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -DESCRIPTION="Create a diff disregarding formatting"
28 -HOMEPAGE="https://www.gnu.org/software/wdiff/"
29 -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
30 -
31 -LICENSE="GPL-3"
32 -SLOT="0"
33 -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
34 -IUSE="experimental test"
35 -RESTRICT="!test? ( test )"
36 -
37 -RDEPEND="
38 - sys-apps/diffutils
39 - sys-apps/less
40 - sys-libs/ncurses"
41 -DEPEND="${RDEPEND}
42 - test? ( app-misc/screen )"
43 -
44 -src_configure() {
45 - econf \
46 - $(use_enable experimental)
47 -}
48 -
49 -src_test() {
50 - # The test suite hangs in the '3: use pager' test
51 - # when an incompatible screenrc is found
52 - touch tests/screenrc || die
53 - export SYSSCREENRC=tests/screenrc SCREENRC=tests/screenrc
54 - default
55 -}