wok rev 24669

updated inxi (3.0.37 -> 3.3.13)
author Hans-G?nter Theisgen
date Fri Mar 11 16:49:52 2022 +0100 (2022-03-11)
parents 63f5ba2b74dc
children 6a20a6709dd5
files inxi/description.txt inxi/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/inxi/description.txt	Fri Mar 11 16:49:52 2022 +0100
     1.3 @@ -0,0 +1,13 @@
     1.4 +Inxi is a command line system information script built for console
     1.5 +and IRC.
     1.6 +It is also used as a debugging tool for forum technical support to
     1.7 +quickly ascertain users' system configurations and hardware.
     1.8 +Inxi shows system hardware, CPU, drivers, Xorg, Desktop, Kernel,
     1.9 +gcc version(s), Processes, RAM usage, and a wide variety of other
    1.10 +useful information.
    1.11 +
    1.12 +Inxi output varies depending on whether it is being used on CLI or
    1.13 +IRC, with some default filters and color options applied only for
    1.14 +IRC use. Script colors can be turned off if desired with -c 0, or
    1.15 +changed using the -c color options listed in the STANDARD OPTIONS
    1.16 +section.
     2.1 --- a/inxi/receipt	Fri Mar 11 16:27:56 2022 +0100
     2.2 +++ b/inxi/receipt	Fri Mar 11 16:49:52 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="inxi"
     2.7 -VERSION="3.0.37"
     2.8 +VERSION="3.3.13"
     2.9  CATEGORY="utilities"
    2.10  TAGS="system-information"
    2.11  SHORT_DESC="Full featured CLI system information tool."
    2.12 @@ -12,7 +12,7 @@
    2.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.14  WGET_URL="https://github.com/smxi/$PACKAGE/archive/$VERSION-1.tar.gz"
    2.15  
    2.16 -DEPENDS="perl coreutils-disk pciutils procps"
    2.17 +DEPENDS="bash coreutils-disk gawk pciutils perl procps sed"
    2.18  
    2.19  current_version()
    2.20  {
    2.21 @@ -24,10 +24,8 @@
    2.22  genpkg_rules()
    2.23  {
    2.24  	mkdir -p $fs/usr/bin
    2.25 -	mkdir -p $fs/usr/share/man/man1
    2.26  
    2.27  	install -m0755 $src/inxi	$fs/usr/bin
    2.28 -	install -m0644 $src/inxi.1	$fs/usr/share/man/man1
    2.29  
    2.30  	# Configure inxi to work with SliTaz
    2.31  
    2.32 @@ -35,33 +33,22 @@
    2.33  	sed -i 's|/var/run/dmesg.boot|/var/log/dmesg.log|' \
    2.34  		$inxi
    2.35  	# SliTaz packages
    2.36 -	sed -i 's|df:coreutils|df:coreutils-disk|' \
    2.37 -		$inxi
    2.38 -	sed -i 's|readlink:coreutils|readlink:coreutils-file-special|' \
    2.39 -		$inxi
    2.40 -	sed -i 's|tr:coreutils|tr:coreutils-character|' \
    2.41 -		$inxi
    2.42 -	sed -i 's|uname:uname|uname:coreutils-context-system|' \
    2.43 -		$inxi
    2.44 -	sed -i 's|wc:coreutils|wc:coreutils-file-summarize|' \
    2.45 -		$inxi
    2.46 -	sed -i 's|glxinfo:mesa-utils|glxinfo:mesa-demos|' \
    2.47 -		$inxi
    2.48 -	sed -i 's|xdpyinfo:X11-utils|xdpyinfo:xorg-xdpyinfo|' \
    2.49 -		$inxi
    2.50 -	sed -i 's|xprop:X11-utils|xprop:xorg-xprop|' \
    2.51 -		$inxi
    2.52 -	sed -i 's|xrandr:x11-xserver-utils|xrandr:xorg-xrandr|' \
    2.53 -		$inxi
    2.54 -	sed -i 's|dig:dnsutils|dig:bind-client|' \
    2.55 +	sed -i	-e 's|df:coreutils|df:coreutils-disk|' \
    2.56 +		-e 's|readlink:coreutils|readlink:coreutils-file-special|' \
    2.57 +		-e 's|tr:coreutils|tr:coreutils-character|' \
    2.58 +		-e 's|uname:uname|uname:coreutils-context-system|' \
    2.59 +		-e 's|wc:coreutils|wc:coreutils-file-summarize|' \
    2.60 +		-e 's|glxinfo:mesa-utils|glxinfo:mesa-demos|' \
    2.61 +		-e 's|xdpyinfo:X11-utils|xdpyinfo:xorg-xdpyinfo|' \
    2.62 +		-e 's|xprop:X11-utils|xprop:xorg-xprop|' \
    2.63 +		-e 's|xrandr:x11-xserver-utils|xrandr:xorg-xrandr|' \
    2.64 +		-e 's|dig:dnsutils|dig:bind-client|' \
    2.65  		$inxi
    2.66  	sed -i 's|hddtemp:hddtemp|hddtemp:|' \
    2.67  		$inxi # no package
    2.68 -	sed -i 's|ip:iproute|ip:iproute2|' \
    2.69 -		$inxi
    2.70 -	sed -i 's|strings:binutils|strings:busybox|' \
    2.71 -		$inxi
    2.72 -	sed -i 's|runlevel:sysvinit|runlevel:|' \
    2.73 +	sed -i	-e 's|ip:iproute|ip:iproute2|' \
    2.74 +		-e 's|strings:binutils|strings:busybox|' \
    2.75 +		-e 's|runlevel:sysvinit|runlevel:|' \
    2.76  		$inxi # no package
    2.77  	sed -i 's|print_lines_basic "0" "" "Debian/Ubuntu:.*$|print_lines_basic "0" "" "SliTaz:^$package_deb"|' \
    2.78  		$inxi