Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, app-misc/mtail/files/, app-misc/mtail/
Date: Fri, 09 Oct 2020 07:53:57
Message-Id: 1602229972.a68262d6a270e1d53665a1da703383a0f60580ab.mgorny@gentoo
1 commit: a68262d6a270e1d53665a1da703383a0f60580ab
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 9 07:52:52 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 9 07:52:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a68262d6
7
8 app-misc/mtail: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/735232
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 app-misc/mtail/Manifest | 3 --
14 .../mtail/files/mtail-1.1.1-remove-blanks.patch | 52 ----------------------
15 app-misc/mtail/metadata.xml | 15 -------
16 app-misc/mtail/mtail-1.1.1-r3.ebuild | 30 -------------
17 app-misc/mtail/mtail-1.2.0.ebuild | 34 --------------
18 profiles/package.mask | 1 -
19 6 files changed, 135 deletions(-)
20
21 diff --git a/app-misc/mtail/Manifest b/app-misc/mtail/Manifest
22 deleted file mode 100644
23 index f2ac569f349..00000000000
24 --- a/app-misc/mtail/Manifest
25 +++ /dev/null
26 @@ -1,3 +0,0 @@
27 -DIST mtail-1.1.1.tgz 9124 BLAKE2B 804ec168eb5dc5408ffd91fc80a6f080b0575dfb58bc667a3ff3d657cea955a4a697ff3f99470e86e59387e0bb2275cd2a0a6e5ee97bc88f28df4424a4c012b8 SHA512 987816ce5d12996192c881be1ac5a28c3457757e981ab35e657fb226c3980a22091c9fc85f68c13eb1c01939e08e492814b6a03c9b1f4f4bc1878c4f13ec8a0e
28 -DIST mtail-1.2.0.tgz 10798 BLAKE2B ea822f5430ff67fdc153db5c7d79ecb40f0f9025434eef216e13789ffedf79c00ac3fae1f161805d4ee247f993ab984ffb2e44cb94817e06401ec48820a8272c SHA512 f63686a6b93788ec4e72f5dc59bbd0c5bc5c51cba0812cc894b5bd1af497fd0931f0d5834c0feb5c72a057d3f387e379de6fcd8e3a09c98fc77e5a76ee8da274
29 -DIST mtailrc-syslog.sample 1785 BLAKE2B d060e9baf750505a0908bb18533aad72675962be98875e9f1fed3c734a0339589122ebe2774cc585b05dfde61d8877e05a42184c966050e245bb57ed2dfe500b SHA512 d6bbaafa7c599f443c788697087ebef69a8e279b0715fa4e5b770531cbd254a646014fa98e5e5d444c48d23974201d36a856b34507a91e1b6abbb423f7015c75
30
31 diff --git a/app-misc/mtail/files/mtail-1.1.1-remove-blanks.patch b/app-misc/mtail/files/mtail-1.1.1-remove-blanks.patch
32 deleted file mode 100644
33 index 9645e263ded..00000000000
34 --- a/app-misc/mtail/files/mtail-1.1.1-remove-blanks.patch
35 +++ /dev/null
36 @@ -1,52 +0,0 @@
37 ---- mtail.orig 2003-11-07 19:02:34.000000000 +0000
38 -+++ mtail 2003-11-07 19:19:18.000000000 +0000
39 -@@ -46,6 +46,7 @@
40 - verbose = 0
41 - silent = 0
42 - active = 0
43 -+remove_blanks = 0
44 -
45 - # sets up the interrupt handler, calls processargs(), sets up and starts the
46 - # tailers.
47 -@@ -119,6 +120,8 @@
48 - if line[len(line)-1] == '\n':
49 - line = line[:len(line)-1]
50 - line = filter(line)
51 -+ if remove_blanks and not line:
52 -+ continue
53 - lock.acquire()
54 - try:
55 - if (multiple or verbose) and (not silent) \
56 -@@ -138,12 +141,14 @@
57 - global verbose
58 - global silent
59 - global config_file
60 -+ global remove_blanks
61 - filenames = []
62 - lines = None
63 - follow = 0
64 - try:
65 - opts, pargs = getopt.getopt(sys.argv[1:], 'fn:?hvq', ["follow",
66 -- "lines=", "help", "verbose", "quiet", "silent", "config="])
67 -+ "lines=", "help", "verbose", "quiet", "silent", "config=",
68 -+ "remove-blanks"])
69 - except getopt.error:
70 - print 'unrecognized option!'
71 - print
72 -@@ -163,6 +168,8 @@
73 - silent = 1
74 - elif opt[0] in ['--config']:
75 - config_file = opt[1]
76 -+ elif opt[0] in ['--remove-blanks']:
77 -+ remove_blanks = 1
78 - if lines == None:
79 - lines = 10
80 - for filename in pargs:
81 -@@ -186,6 +193,7 @@
82 - print ' -v, --verbose always output headers giving file names'
83 - print ' -q, --quiet, --silent never output headers giving file names'
84 - print ' --config=FILE use config file FILE instead of ~/.mtailrc'
85 -+ print ' --remove-blanks do not display blank lines'
86 - print
87 - print 'with more than one filename, mtail will precede each chunk from'
88 - print 'each with a header giving the file name. if no filenames are given'
89
90 diff --git a/app-misc/mtail/metadata.xml b/app-misc/mtail/metadata.xml
91 deleted file mode 100644
92 index 1215b29430c..00000000000
93 --- a/app-misc/mtail/metadata.xml
94 +++ /dev/null
95 @@ -1,15 +0,0 @@
96 -<?xml version="1.0" encoding="UTF-8"?>
97 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
98 -<pkgmetadata>
99 - <maintainer type="project">
100 - <email>shell-tools@g.o</email>
101 - <name>Gentoo Shell Tools Project</name>
102 - </maintainer>
103 - <longdescription lang="en">
104 - mtail is a small tail workalike that performs output coloring using
105 - ansi escape sequences (although the sequences are overridable, so you
106 - could cause it to output something else, e.g. html font tags, if you
107 - really wanted to). mtail is written in python, is fairly small, and
108 - should be relatively platform-independent.
109 - </longdescription>
110 -</pkgmetadata>
111
112 diff --git a/app-misc/mtail/mtail-1.1.1-r3.ebuild b/app-misc/mtail/mtail-1.1.1-r3.ebuild
113 deleted file mode 100644
114 index 7c30637230e..00000000000
115 --- a/app-misc/mtail/mtail-1.1.1-r3.ebuild
116 +++ /dev/null
117 @@ -1,30 +0,0 @@
118 -# Copyright 1999-2020 Gentoo Authors
119 -# Distributed under the terms of the GNU General Public License v2
120 -
121 -EAPI=5
122 -
123 -PYTHON_COMPAT=( python2_7 )
124 -inherit eutils python-single-r1
125 -
126 -DESCRIPTION="Tail workalike, that performs output colourising"
127 -HOMEPAGE="http://matt.immute.net/src/mtail/"
128 -SRC_URI="http://matt.immute.net/src/mtail/mtail-${PV}.tgz
129 - http://matt.immute.net/src/mtail/mtailrc-syslog.sample"
130 -
131 -LICENSE="HPND"
132 -SLOT="0"
133 -KEYWORDS="~alpha amd64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
134 -IUSE=""
135 -
136 -RDEPEND=${PYTHON_DEPS}
137 -REQUIRED_USE=${PYTHON_REQUIRED_USE}
138 -
139 -src_prepare() {
140 - epatch "${FILESDIR}"/${P}-remove-blanks.patch
141 - python_fix_shebang .
142 -}
143 -
144 -src_install() {
145 - dobin "${PN}"
146 - dodoc CHANGES "${PN}rc.sample" README "${DISTDIR}"/mtailrc-syslog.sample
147 -}
148
149 diff --git a/app-misc/mtail/mtail-1.2.0.ebuild b/app-misc/mtail/mtail-1.2.0.ebuild
150 deleted file mode 100644
151 index e6a4e3c5e34..00000000000
152 --- a/app-misc/mtail/mtail-1.2.0.ebuild
153 +++ /dev/null
154 @@ -1,34 +0,0 @@
155 -# Copyright 1999-2018 Gentoo Foundation
156 -# Distributed under the terms of the GNU General Public License v2
157 -
158 -EAPI=7
159 -
160 -PYTHON_COMPAT=( python2_7 )
161 -
162 -inherit python-single-r1
163 -
164 -DESCRIPTION="Tail workalike, that performs output colourising"
165 -HOMEPAGE="http://matt.immute.net/src/mtail/"
166 -SRC_URI="
167 - http://matt.immute.net/src/mtail/mtail-${PV}.tgz
168 - http://matt.immute.net/src/mtail/mtailrc-syslog.sample"
169 -
170 -LICENSE="HPND"
171 -SLOT="0"
172 -KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
173 -IUSE=""
174 -
175 -RDEPEND="${PYTHON_DEPS}"
176 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
177 -
178 -DOCS=( CHANGES "${PN}rc.sample" README "${DISTDIR}"/mtailrc-syslog.sample )
179 -
180 -src_prepare() {
181 - default
182 - python_fix_shebang .
183 -}
184 -
185 -src_install() {
186 - dobin "${PN}"
187 - einstalldocs
188 -}
189
190 diff --git a/profiles/package.mask b/profiles/package.mask
191 index d68f8e29797..c8dacadb9e5 100644
192 --- a/profiles/package.mask
193 +++ b/profiles/package.mask
194 @@ -498,7 +498,6 @@ dev-util/setconf
195 # port them to Python 3.
196 # Removal in 30 days. Please find relevant bugs on tracker bug #694800.
197 app-misc/mswinurl_launcher
198 -app-misc/mtail
199 dev-vcs/gitstats
200 games-strategy/0ad