diff options
author | Dustin Metcalf <metcalf.nerd+SBo@gmail.com> | 2023-07-15 11:04:43 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-07-15 17:30:04 +0700 |
commit | 49044227a24a953d488e8c6a76a11fdcdae825b9 (patch) | |
tree | fe6b04207e2a0fae19b90b98f0dd3b790ea9ec80 /system | |
parent | 014dd434a1a602c43e533cfc83ec6a58c1a55425 (diff) |
system/colortail: Added (tail files with colors).
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/colortail/README | 12 | ||||
-rw-r--r-- | system/colortail/colortail.SlackBuild | 117 | ||||
-rw-r--r-- | system/colortail/colortail.info | 10 | ||||
-rw-r--r-- | system/colortail/doinst.sh | 14 | ||||
-rw-r--r-- | system/colortail/slack-desc | 19 |
5 files changed, 172 insertions, 0 deletions
diff --git a/system/colortail/README b/system/colortail/README new file mode 100644 index 000000000000..bad0d89b284b --- /dev/null +++ b/system/colortail/README @@ -0,0 +1,12 @@ +Colortail + +Colortail works like tail but can optionally read one or more config +files where it's specified which patterns results in which colors. + +Colortail uses regular expressions (see regex(7)) to determine which +lines and parts of lines to print in which colors. + +If you experience issues with color working, add the following line to +your .bashrc or /etc/profile + +alias colortail='colortail --config=/etc/colortail/default.conf' diff --git a/system/colortail/colortail.SlackBuild b/system/colortail/colortail.SlackBuild new file mode 100644 index 000000000000..3929f44c3509 --- /dev/null +++ b/system/colortail/colortail.SlackBuild @@ -0,0 +1,117 @@ +#!/bin/bash + +# Slackware build script for colortail + +# Copyright 2023 Dustin Metcalf - USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=colortail +VERSION=${VERSION:-0.3.3} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +elif [ "$ARCH" = "aarch64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +find $PKG -name perllocal.pod \ + -o -name ".packlist" \ + -o -name "*.bs" \ + | xargs rm -f + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +mkdir -p $PKG/etc/colortail +cp $TMP/$PRGNAM-$VERSION/example-conf/conf.messages $PKG/etc/colortail/colortail.conf.new + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/system/colortail/colortail.info b/system/colortail/colortail.info new file mode 100644 index 000000000000..7f7b71fa28f7 --- /dev/null +++ b/system/colortail/colortail.info @@ -0,0 +1,10 @@ +PRGNAM="colortail" +VERSION="0.3.3" +HOMEPAGE="https://github.com/joakim666/colortail" +DOWNLOAD="https://github.com/joakim666/colortail/releases/download/0.3.3/colortail-0.3.3.tar.gz" +MD5SUM="a6fc24230c0a2c7cd0313cd3b73f4a64" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Dustin Metcalf" +EMAIL="metcalf.nerd+SBo@gmail.com" diff --git a/system/colortail/doinst.sh b/system/colortail/doinst.sh new file mode 100644 index 000000000000..ef506ed046ca --- /dev/null +++ b/system/colortail/doinst.sh @@ -0,0 +1,14 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/colortail/colortail.conf.new diff --git a/system/colortail/slack-desc b/system/colortail/slack-desc new file mode 100644 index 000000000000..3f78600bc6a0 --- /dev/null +++ b/system/colortail/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +colortail: colortail (tail files with color) +colortail: +colortail: Colortail works like tail but can optionally read one or more config +colortail: files where it's specified which patterns results in which colors. +colortail: +colortail: Colortail uses regular expressions (see regex(7)) to determine which +colortail: lines and parts of lines to print in which colors. +colortail: +colortail: Homepage: https://github.com/joakim666/colortail +colortail: +colortail: |