Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/multitail/
Date: Sat, 26 Sep 2020 19:40:42
Message-Id: 1601149221.d3f04f9f47f889372834a81e9a71083727ea0dcd.bman@gentoo
1 commit: d3f04f9f47f889372834a81e9a71083727ea0dcd
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 26 19:31:08 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 26 19:40:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f04f9f
7
8 app-text/multitail: drop old EAPI=5
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 app-text/multitail/Manifest | 1 -
13 app-text/multitail/multitail-6.4.1.ebuild | 66 -------------------------------
14 2 files changed, 67 deletions(-)
15
16 diff --git a/app-text/multitail/Manifest b/app-text/multitail/Manifest
17 index 4fb3292abbc..3b7bdb9651a 100644
18 --- a/app-text/multitail/Manifest
19 +++ b/app-text/multitail/Manifest
20 @@ -1,2 +1 @@
21 -DIST multitail-6.4.1.tgz 155717 BLAKE2B 621e511c74f774681de95c7ad85bac12d528ffac1808ff22b5824c3b97c64397db2d084697a2d4f11a87eab3d4ff29715632d51afa7f7338178a9e89ccdf6e1c SHA512 14d4785df257aaac8b3c1a5de8aa48a0b6c3e7829867e1fbc8d458636ecafcf506e09b12581cf562e1f503218b1729e47e9197f541bede90dc0a4d5e916b1c8b
22 DIST multitail-6.4.2.tgz 155757 BLAKE2B aba6fea993e0d91071bddcf6d06767773ad6ea6054436dbd8a7163553b1cdfc03040362b87e9b2d31f8fe2165f213c718904f9295d3ab2076707cabf423ae681 SHA512 668c453372ba1e4013aa5191c697bdcaad82c84732841c120a506bee063d2134941e93aed63f96e5aeeb6045829a13aba012f9514dbd9520ab4f1b9b75b42dbd
23
24 diff --git a/app-text/multitail/multitail-6.4.1.ebuild b/app-text/multitail/multitail-6.4.1.ebuild
25 deleted file mode 100644
26 index 9b88ebb4680..00000000000
27 --- a/app-text/multitail/multitail-6.4.1.ebuild
28 +++ /dev/null
29 @@ -1,66 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -inherit epatch eutils flag-o-matic optfeature toolchain-funcs
35 -
36 -DESCRIPTION="Tail with multiple windows"
37 -HOMEPAGE="http://www.vanheusden.com/multitail/"
38 -SRC_URI="http://www.vanheusden.com/multitail/${P}.tgz"
39 -
40 -LICENSE="GPL-2"
41 -SLOT="0"
42 -KEYWORDS="amd64 hppa ~ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
43 -IUSE="debug examples unicode"
44 -
45 -RDEPEND="
46 - sys-libs/ncurses:0=[unicode?]
47 -"
48 -DEPEND="
49 - ${RDEPEND}
50 - virtual/pkgconfig
51 -"
52 -RESTRICT="test" # bug #492270
53 -
54 -src_prepare() {
55 - epatch \
56 - "${FILESDIR}"/${PN}-6.4.1-gentoo.patch
57 -
58 - sed \
59 - -e "/^DESTDIR/s:=.*$:=${EROOT}:g" \
60 - -i Makefile || die
61 -
62 - sed \
63 - -e "s:/usr/bin/xclip:${EPREFIX}/usr/bin/xclip:g" \
64 - -i xclip.c ${PN}.conf || die
65 -
66 - tc-export CC PKG_CONFIG
67 -
68 - use debug && append-flags "-D_DEBUG"
69 -}
70 -
71 -src_compile() {
72 - emake UTF8_SUPPORT=$(usex unicode)
73 -}
74 -
75 -src_install() {
76 - dobin multitail
77 -
78 - insinto /etc
79 - doins multitail.conf
80 -
81 - DOCS=( readme.txt thanks.txt )
82 - HTML_DOCS=( manual.html )
83 - einstalldocs
84 -
85 - doman multitail.1
86 -
87 - if use examples; then
88 - docinto examples
89 - dodoc conversion-scripts/colors-example.{pl,sh} conversion-scripts/convert-{geoip,simple}.pl
90 - fi
91 -}
92 -
93 -pkg_postinst() {
94 - optfeature "send a buffer to the X clipboard" x11-misc/xclip
95 -}