diff options
author | Martin Väth <martin@mvath.de> | 2023-12-08 21:40:15 +0100 |
---|---|---|
committer | Martin Väth <martin@mvath.de> | 2023-12-08 21:40:15 +0100 |
commit | ee8ebfc3a7c3ced9ced14d388cdd9cee9ccf2c7a (patch) | |
tree | bf6a10433ab2fa36217891f73e7babeddf5bff10 | |
parent | gui-wm/wayfire: fix manpage, debugging. gui-apps/wcm: add for version bump (diff) | |
download | mv-ee8ebfc3a7c3ced9ced14d388cdd9cee9ccf2c7a.tar.gz mv-ee8ebfc3a7c3ced9ced14d388cdd9cee9ccf2c7a.tar.bz2 mv-ee8ebfc3a7c3ced9ced14d388cdd9cee9ccf2c7a.zip |
sys-apps/less: Revision bump
Signed-off-by: Martin Väth <martin@mvath.de>
-rw-r--r-- | sys-apps/less/files/lesspipe-r3.sh (renamed from sys-apps/less/files/lesspipe-r2.sh) | 58 | ||||
-rw-r--r-- | sys-apps/less/less-643-r1.ebuild (renamed from sys-apps/less/less-643.ebuild) | 5 |
2 files changed, 57 insertions, 6 deletions
diff --git a/sys-apps/less/files/lesspipe-r2.sh b/sys-apps/less/files/lesspipe-r3.sh index fc54d5b2..baec90dc 100644 --- a/sys-apps/less/files/lesspipe-r2.sh +++ b/sys-apps/less/files/lesspipe-r3.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Preprocessor for 'less'. Used when this environment variable is set: @@ -24,6 +24,42 @@ guesscompress() { esac } +crl_filter() { + if command -v certtool &>/dev/null; then + certtool --crl-info --text --infile "$1" + else + openssl crl -hash -text -noout -in "$1" + fi +} + +csr_filter() { + if command -v certtool &>/dev/null; then + certtool --crq-info --text --infile "$1" + else + openssl req -text -noout -in "$1" + fi +} + +crt_filter() { + if command -v certtool &>/dev/null; then + certtool --certificate-info --text --infile "$1" + else + openssl x509 -hash -text -noout -in "$1" + fi +} + +jks_filter() { + if command -v keytool &>/dev/null; then + keytool -list -keystore "$1" + else + cat "$1" + fi +} + +p12_filter() { + openssl pkcs12 -nokeys -info -in "$1" +} + lesspipe_file() { local out=$(file -L -- "$1") local suffix @@ -57,6 +93,16 @@ lesspipe() { ~/.lessfilter "$1" && exit 0 fi + # System filters + shopt -s nullglob + local f + for f in "${XDG_CONFIG_HOME:-~/.config}"/lessfilter.d/* /etc/lessfilter.d/* /usr/lib/lessfilter.d/*; do + if [[ -x ${f} ]]; then + "${f}" "$1" && exit 0 + fi + done + shopt -u nullglob + local ignore for ignore in ${LESSIGNORE} ; do [[ ${match} == *.${ignore} ]] && exit 0 @@ -199,9 +245,11 @@ lesspipe() { ;; ### Encryption stuff ### - *.crl) openssl crl -hash -text -noout -in "$1" ;; - *.csr) openssl req -text -noout -in "$1" ;; - *.crt|*.pem) openssl x509 -hash -text -noout -in "$1" ;; + *.crl) crl_filter "$1" ;; + *.csr) csr_filter "$1" ;; + *.crt|*.pem) crt_filter "$1" ;; + *.jks) jks_filter "$1" ;; + *.p12|*.pfx) p12_filter "$1" ;; # May not be such a good idea :) # ### Device nodes ### @@ -253,7 +301,7 @@ if [[ $# -eq 0 ]] ; then elif [[ $1 == "-V" || $1 == "--version" ]] ; then cat <<-EOF lesspipe (git) - Copyright 1999-2019 Gentoo Authors + Copyright 1999-2023 Gentoo Authors Mike Frysinger <vapier@gentoo.org> (with plenty of ideas stolen from other projects/distros) diff --git a/sys-apps/less/less-643.ebuild b/sys-apps/less/less-643-r1.ebuild index d1069ed9..0156255e 100644 --- a/sys-apps/less/less-643.ebuild +++ b/sys-apps/less/less-643-r1.ebuild @@ -86,7 +86,10 @@ src_install() { local a default - newbin "${FILESDIR}"/lesspipe-r2.sh lesspipe + keepdir /usr/lib/lessfilter.d + keepdir /etc/lessfilter.d + + newbin "${FILESDIR}"/lesspipe-r3.sh lesspipe if use original-gentoo then a="-R -M --shift 5" |