diff options
| author | Danilo M. <danix@danix.xyz> | 2026-06-10 12:39:46 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-06-10 12:39:46 +0200 |
| commit | 414bc83665e679a43922036d8b367b793d1b6a42 (patch) | |
| tree | 8008280b79babeb904f53160965a99ae187a6057 /btop | |
| parent | 85c8acbae12efa575c77691bdf8fe6f2d180f2d1 (diff) | |
| download | my-slackbuilds-414bc83665e679a43922036d8b367b793d1b6a42.tar.gz my-slackbuilds-414bc83665e679a43922036d8b367b793d1b6a42.zip | |
btop: remove (no xe driver support for Arc Battlemage)main
btop 1.4.6 GPU collector only reads i915 sysfs interface. Arc B580
(Battlemage) requires the xe driver, which exposes a different sysfs
layout, so the card is never detected.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'btop')
| -rw-r--r-- | btop/README | 8 | ||||
| -rw-r--r-- | btop/btop.SlackBuild | 100 | ||||
| -rw-r--r-- | btop/btop.info | 10 | ||||
| -rw-r--r-- | btop/doinst.sh | 11 | ||||
| -rw-r--r-- | btop/slack-desc | 19 |
5 files changed, 0 insertions, 148 deletions
diff --git a/btop/README b/btop/README deleted file mode 100644 index 024acbf..0000000 --- a/btop/README +++ /dev/null @@ -1,8 +0,0 @@ -Resource monitor that shows usage and stats for processor, memory, -disks, network and processes. -C++ version and continuation of bashtop and bpytop. - -lowdown is an optional dependency to generate the program's man page. - -Added `make setcap` in the SlackBuild to work with Intel iGPU - diff --git a/btop/btop.SlackBuild b/btop/btop.SlackBuild deleted file mode 100644 index 87835df..0000000 --- a/btop/btop.SlackBuild +++ /dev/null @@ -1,100 +0,0 @@ -#!/bin/bash - -# Slackware build script for btop - -# Copyright 2022-2026 Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy -# 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. - -# 20230203 bkw: fix PRINT_PACKAGE_NAME, add doinst.sh for desktop/icons. - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=btop -VERSION=${VERSION:-1.4.6} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i686 ;; - 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" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" -else - SLKCFLAGS="-O2" -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 {} \+ - -sed -i "s|-O2|$SLKCFLAGS|" Makefile || exit 1 -sed -i "s|share/man|man|" Makefile || exit 1 -LDFLAGS=-ldl make PREFIX=/usr all -make PREFIX=/usr install DESTDIR=$PKG -make PREFIX=/usr setcap - -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 - -if [ -d $PKG/usr/man ]; then - find $PKG/usr/man -type f -exec gzip -9 {} \; - for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -fi - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a LICENSE README.md CHANGELOG.md $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/btop/btop.info b/btop/btop.info deleted file mode 100644 index 0335045..0000000 --- a/btop/btop.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="btop" -VERSION="1.4.6" -HOMEPAGE="https://github.com/aristocratos/btop/" -DOWNLOAD="https://github.com/aristocratos/btop/archive/v1.4.6/btop-1.4.6.tar.gz" -MD5SUM="6e7c9b1fe7e1894d1e66c5557e1abf62" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Matteo Bernardini" -EMAIL="ponce@slackbuilds.org" diff --git a/btop/doinst.sh b/btop/doinst.sh deleted file mode 100644 index e3d6e86..0000000 --- a/btop/doinst.sh +++ /dev/null @@ -1,11 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - -if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then - if [ -x /usr/bin/gtk-update-icon-cache ]; then - /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi - -/sbin/setcap cap_perfmon=+ep usr/bin/btop diff --git a/btop/slack-desc b/btop/slack-desc deleted file mode 100644 index 9771f3d..0000000 --- a/btop/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -btop: btop (system resources monitor) -btop: -btop: Resource monitor that shows usage and stats for processor, memory, -btop: disks, network and processes. -btop: C++ version and continuation of bashtop and bpytop. -btop: -btop: homepage: https://github.com/aristocratos/btop/ -btop: -btop: -btop: -btop: |
