diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-11-25 22:39:15 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-11-25 22:39:15 +0000 |
commit | d934827bf44b7cfcf6711964418148fa60877668 (patch) | |
tree | 0625f358789b5e015e49db139cc1dbc9be00428f /app-misc/mtail | |
parent | 2e34d110f164bf74d55fced27fe0000201b3eec5 (diff) |
gentoo resync : 25.11.2020
Diffstat (limited to 'app-misc/mtail')
-rw-r--r-- | app-misc/mtail/Manifest | 7 | ||||
-rw-r--r-- | app-misc/mtail/files/mtail-1.1.1-remove-blanks.patch | 52 | ||||
-rw-r--r-- | app-misc/mtail/metadata.xml | 15 | ||||
-rw-r--r-- | app-misc/mtail/mtail-1.1.1-r3.ebuild | 30 | ||||
-rw-r--r-- | app-misc/mtail/mtail-1.2.0.ebuild | 34 |
5 files changed, 0 insertions, 138 deletions
diff --git a/app-misc/mtail/Manifest b/app-misc/mtail/Manifest deleted file mode 100644 index 94037b51bfa5..000000000000 --- a/app-misc/mtail/Manifest +++ /dev/null @@ -1,7 +0,0 @@ -AUX mtail-1.1.1-remove-blanks.patch 1850 BLAKE2B dfaffe1b7dbbe54c1db30a7e0ce9c3c50f51397d5c8dc1e5a64d32441907593e58e65ca84d5697043509342a99d86d628f131cfbe7d0617a207b30afc0b177bb SHA512 64720ec0253dfc88e58b0392bcb4c1eb2f367547d034f60722dc19b0093d5da3d40e847c69203080cd19126ab67f7fad3c2dccc7e6cc74f56c1d50f3dee805a4 -DIST mtail-1.1.1.tgz 9124 BLAKE2B 804ec168eb5dc5408ffd91fc80a6f080b0575dfb58bc667a3ff3d657cea955a4a697ff3f99470e86e59387e0bb2275cd2a0a6e5ee97bc88f28df4424a4c012b8 SHA512 987816ce5d12996192c881be1ac5a28c3457757e981ab35e657fb226c3980a22091c9fc85f68c13eb1c01939e08e492814b6a03c9b1f4f4bc1878c4f13ec8a0e -DIST mtail-1.2.0.tgz 10798 BLAKE2B ea822f5430ff67fdc153db5c7d79ecb40f0f9025434eef216e13789ffedf79c00ac3fae1f161805d4ee247f993ab984ffb2e44cb94817e06401ec48820a8272c SHA512 f63686a6b93788ec4e72f5dc59bbd0c5bc5c51cba0812cc894b5bd1af497fd0931f0d5834c0feb5c72a057d3f387e379de6fcd8e3a09c98fc77e5a76ee8da274 -DIST mtailrc-syslog.sample 1785 BLAKE2B d060e9baf750505a0908bb18533aad72675962be98875e9f1fed3c734a0339589122ebe2774cc585b05dfde61d8877e05a42184c966050e245bb57ed2dfe500b SHA512 d6bbaafa7c599f443c788697087ebef69a8e279b0715fa4e5b770531cbd254a646014fa98e5e5d444c48d23974201d36a856b34507a91e1b6abbb423f7015c75 -EBUILD mtail-1.1.1-r3.ebuild 765 BLAKE2B 08b63c97fe1f9a32b65f137ea07bcb1b5433819e3618b83b22c5f399a142fdadb268153c6df6e4121405dd684836abc6638afc80d3435d12a26fd2c35da7a966 SHA512 4839a05901eac284d0eefead304849d6188e5db65276f89455a340e9105e5cb500688bf0cf1e914f159c5b68e95de427bae1237faa7db3cdb5062bfe886397f2 -EBUILD mtail-1.2.0.ebuild 751 BLAKE2B 33f2720d407a7e3d5e4838b9cc5790aff3cccb5d11fee3b4cbd9b4e14fd44cd743b7038dc14c8647162296e55756e4faa4dec6f244801493685e086f90c016b0 SHA512 a1123a941be4071be97b408ac4c4cd11d85d1041fbbc54d81c92bd8c4c34435dc22ffc0651228558acc1675397c77d6acbfcb34eac8b410f386309126fc49917 -MISC metadata.xml 642 BLAKE2B 405817cdcf7d643b775f88848ad91930dcf712d65f5c53582ac41656f7d92095bed83add109070888134c074118c54d7ff79359a20d97d0e1459095923e12185 SHA512 7de4bfd79c4dbd929950e191faf4ff6ab90426a0f604fddbdcbaf65d21d21d9a5ec7fb382dc95751ccda8e463bd189dbc07b4d29d92c9dab90e7eb955ace8e19 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 deleted file mode 100644 index 9645e263deda..000000000000 --- a/app-misc/mtail/files/mtail-1.1.1-remove-blanks.patch +++ /dev/null @@ -1,52 +0,0 @@ ---- mtail.orig 2003-11-07 19:02:34.000000000 +0000 -+++ mtail 2003-11-07 19:19:18.000000000 +0000 -@@ -46,6 +46,7 @@ - verbose = 0 - silent = 0 - active = 0 -+remove_blanks = 0 - - # sets up the interrupt handler, calls processargs(), sets up and starts the - # tailers. -@@ -119,6 +120,8 @@ - if line[len(line)-1] == '\n': - line = line[:len(line)-1] - line = filter(line) -+ if remove_blanks and not line: -+ continue - lock.acquire() - try: - if (multiple or verbose) and (not silent) \ -@@ -138,12 +141,14 @@ - global verbose - global silent - global config_file -+ global remove_blanks - filenames = [] - lines = None - follow = 0 - try: - opts, pargs = getopt.getopt(sys.argv[1:], 'fn:?hvq', ["follow", -- "lines=", "help", "verbose", "quiet", "silent", "config="]) -+ "lines=", "help", "verbose", "quiet", "silent", "config=", -+ "remove-blanks"]) - except getopt.error: - print 'unrecognized option!' - print -@@ -163,6 +168,8 @@ - silent = 1 - elif opt[0] in ['--config']: - config_file = opt[1] -+ elif opt[0] in ['--remove-blanks']: -+ remove_blanks = 1 - if lines == None: - lines = 10 - for filename in pargs: -@@ -186,6 +193,7 @@ - print ' -v, --verbose always output headers giving file names' - print ' -q, --quiet, --silent never output headers giving file names' - print ' --config=FILE use config file FILE instead of ~/.mtailrc' -+ print ' --remove-blanks do not display blank lines' - print - print 'with more than one filename, mtail will precede each chunk from' - print 'each with a header giving the file name. if no filenames are given' diff --git a/app-misc/mtail/metadata.xml b/app-misc/mtail/metadata.xml deleted file mode 100644 index 1215b29430c5..000000000000 --- a/app-misc/mtail/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>shell-tools@gentoo.org</email> - <name>Gentoo Shell Tools Project</name> - </maintainer> - <longdescription lang="en"> - mtail is a small tail workalike that performs output coloring using - ansi escape sequences (although the sequences are overridable, so you - could cause it to output something else, e.g. html font tags, if you - really wanted to). mtail is written in python, is fairly small, and - should be relatively platform-independent. - </longdescription> -</pkgmetadata> diff --git a/app-misc/mtail/mtail-1.1.1-r3.ebuild b/app-misc/mtail/mtail-1.1.1-r3.ebuild deleted file mode 100644 index 7c30637230ef..000000000000 --- a/app-misc/mtail/mtail-1.1.1-r3.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) -inherit eutils python-single-r1 - -DESCRIPTION="Tail workalike, that performs output colourising" -HOMEPAGE="http://matt.immute.net/src/mtail/" -SRC_URI="http://matt.immute.net/src/mtail/mtail-${PV}.tgz - http://matt.immute.net/src/mtail/mtailrc-syslog.sample" - -LICENSE="HPND" -SLOT="0" -KEYWORDS="~alpha amd64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="" - -RDEPEND=${PYTHON_DEPS} -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -src_prepare() { - epatch "${FILESDIR}"/${P}-remove-blanks.patch - python_fix_shebang . -} - -src_install() { - dobin "${PN}" - dodoc CHANGES "${PN}rc.sample" README "${DISTDIR}"/mtailrc-syslog.sample -} diff --git a/app-misc/mtail/mtail-1.2.0.ebuild b/app-misc/mtail/mtail-1.2.0.ebuild deleted file mode 100644 index e6a4e3c5e34c..000000000000 --- a/app-misc/mtail/mtail-1.2.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 ) - -inherit python-single-r1 - -DESCRIPTION="Tail workalike, that performs output colourising" -HOMEPAGE="http://matt.immute.net/src/mtail/" -SRC_URI=" - http://matt.immute.net/src/mtail/mtail-${PV}.tgz - http://matt.immute.net/src/mtail/mtailrc-syslog.sample" - -LICENSE="HPND" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="" - -RDEPEND="${PYTHON_DEPS}" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DOCS=( CHANGES "${PN}rc.sample" README "${DISTDIR}"/mtailrc-syslog.sample ) - -src_prepare() { - default - python_fix_shebang . -} - -src_install() { - dobin "${PN}" - einstalldocs -} |