# HG changeset patch # User Hans-G?nter Theisgen # Date 1647013792 -3600 # Node ID 33363047bf07687e37ca79ad01e969b700c935ee # Parent 63f5ba2b74dca069d12efc6eb38865d76e28df9b updated inxi (3.0.37 -> 3.3.13) diff -r 63f5ba2b74dc -r 33363047bf07 inxi/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/inxi/description.txt Fri Mar 11 16:49:52 2022 +0100 @@ -0,0 +1,13 @@ +Inxi is a command line system information script built for console +and IRC. +It is also used as a debugging tool for forum technical support to +quickly ascertain users' system configurations and hardware. +Inxi shows system hardware, CPU, drivers, Xorg, Desktop, Kernel, +gcc version(s), Processes, RAM usage, and a wide variety of other +useful information. + +Inxi output varies depending on whether it is being used on CLI or +IRC, with some default filters and color options applied only for +IRC use. Script colors can be turned off if desired with -c 0, or +changed using the -c color options listed in the STANDARD OPTIONS +section. diff -r 63f5ba2b74dc -r 33363047bf07 inxi/receipt --- a/inxi/receipt Fri Mar 11 16:27:56 2022 +0100 +++ b/inxi/receipt Fri Mar 11 16:49:52 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="inxi" -VERSION="3.0.37" +VERSION="3.3.13" CATEGORY="utilities" TAGS="system-information" SHORT_DESC="Full featured CLI system information tool." @@ -12,7 +12,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/smxi/$PACKAGE/archive/$VERSION-1.tar.gz" -DEPENDS="perl coreutils-disk pciutils procps" +DEPENDS="bash coreutils-disk gawk pciutils perl procps sed" current_version() { @@ -24,10 +24,8 @@ genpkg_rules() { mkdir -p $fs/usr/bin - mkdir -p $fs/usr/share/man/man1 install -m0755 $src/inxi $fs/usr/bin - install -m0644 $src/inxi.1 $fs/usr/share/man/man1 # Configure inxi to work with SliTaz @@ -35,33 +33,22 @@ sed -i 's|/var/run/dmesg.boot|/var/log/dmesg.log|' \ $inxi # SliTaz packages - sed -i 's|df:coreutils|df:coreutils-disk|' \ - $inxi - sed -i 's|readlink:coreutils|readlink:coreutils-file-special|' \ - $inxi - sed -i 's|tr:coreutils|tr:coreutils-character|' \ - $inxi - sed -i 's|uname:uname|uname:coreutils-context-system|' \ - $inxi - sed -i 's|wc:coreutils|wc:coreutils-file-summarize|' \ - $inxi - sed -i 's|glxinfo:mesa-utils|glxinfo:mesa-demos|' \ - $inxi - sed -i 's|xdpyinfo:X11-utils|xdpyinfo:xorg-xdpyinfo|' \ - $inxi - sed -i 's|xprop:X11-utils|xprop:xorg-xprop|' \ - $inxi - sed -i 's|xrandr:x11-xserver-utils|xrandr:xorg-xrandr|' \ - $inxi - sed -i 's|dig:dnsutils|dig:bind-client|' \ + sed -i -e 's|df:coreutils|df:coreutils-disk|' \ + -e 's|readlink:coreutils|readlink:coreutils-file-special|' \ + -e 's|tr:coreutils|tr:coreutils-character|' \ + -e 's|uname:uname|uname:coreutils-context-system|' \ + -e 's|wc:coreutils|wc:coreutils-file-summarize|' \ + -e 's|glxinfo:mesa-utils|glxinfo:mesa-demos|' \ + -e 's|xdpyinfo:X11-utils|xdpyinfo:xorg-xdpyinfo|' \ + -e 's|xprop:X11-utils|xprop:xorg-xprop|' \ + -e 's|xrandr:x11-xserver-utils|xrandr:xorg-xrandr|' \ + -e 's|dig:dnsutils|dig:bind-client|' \ $inxi sed -i 's|hddtemp:hddtemp|hddtemp:|' \ $inxi # no package - sed -i 's|ip:iproute|ip:iproute2|' \ - $inxi - sed -i 's|strings:binutils|strings:busybox|' \ - $inxi - sed -i 's|runlevel:sysvinit|runlevel:|' \ + sed -i -e 's|ip:iproute|ip:iproute2|' \ + -e 's|strings:binutils|strings:busybox|' \ + -e 's|runlevel:sysvinit|runlevel:|' \ $inxi # no package sed -i 's|print_lines_basic "0" "" "Debian/Ubuntu:.*$|print_lines_basic "0" "" "SliTaz:^$package_deb"|' \ $inxi