diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-06-01 09:20:27 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-06-01 09:20:27 +0700 |
commit | d5136ca8ce99b9cd545ce221558e5a31547d38c6 (patch) | |
tree | ab24470f734eebd6e935ca1806f9a34c5c95774a /system/kbfs | |
parent | bc431ef794acd9983384a2188e4d02bdf64c35c2 (diff) |
system/kbfs: Removed.
I have not used this for some time and nobody seems to use it.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/kbfs')
-rw-r--r-- | system/kbfs/README | 15 | ||||
-rw-r--r-- | system/kbfs/README.SBo | 15 | ||||
-rw-r--r-- | system/kbfs/doinst.sh | 13 | ||||
-rw-r--r-- | system/kbfs/kbfs.SlackBuild | 126 | ||||
-rw-r--r-- | system/kbfs/kbfs.info | 10 | ||||
-rw-r--r-- | system/kbfs/slack-desc | 19 |
6 files changed, 0 insertions, 198 deletions
diff --git a/system/kbfs/README b/system/kbfs/README deleted file mode 100644 index 5db48ae5761ee..0000000000000 --- a/system/kbfs/README +++ /dev/null @@ -1,15 +0,0 @@ -The Keybase Go Client, filesystem and GUI - -This script package the whole bundle, not just the client app. -Choose one between kbfs or keybase. Do not install both. - -You will need to create a new user keybasehelper before building -this package. - -groupadd -g 352 keybasehelper -useradd -u 352 -g keybasehelper \ - -c "keybase helper user" -s /bin/false keybasehelper - -NOTE: Read README.SBo for more instructions!! - -google-go-lang is a runtime dependency. diff --git a/system/kbfs/README.SBo b/system/kbfs/README.SBo deleted file mode 100644 index ce49c6cb45c63..0000000000000 --- a/system/kbfs/README.SBo +++ /dev/null @@ -1,15 +0,0 @@ -Post installation: -- Run run_keybase as local user - A new .desktop file will be created by the service on first launch - in ~/.config/autostart/ to invoke this script. - -NOTE: - Since upstream is using Debian as base distribution, they are using - sudo for most of their operations. While Slackware also support sudo - it's not commonly used. Thus, when running run_keybase for the first - time and you get prompted for a password, it will fail. You just need - to execute run_keybase again and it will work. - -PS: You need to execute run_keybase after new installation or -upgrade from previous version. This script will stop existing -services and re-mount everything again. diff --git a/system/kbfs/doinst.sh b/system/kbfs/doinst.sh deleted file mode 100644 index aea0f894eb32b..0000000000000 --- a/system/kbfs/doinst.sh +++ /dev/null @@ -1,13 +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 [ -x /usr/bin/update-mime-database ]; then - /usr/bin/update-mime-database usr/share/mime >/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 -f usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi diff --git a/system/kbfs/kbfs.SlackBuild b/system/kbfs/kbfs.SlackBuild deleted file mode 100644 index f2096c9550ceb..0000000000000 --- a/system/kbfs/kbfs.SlackBuild +++ /dev/null @@ -1,126 +0,0 @@ -#!/bin/bash - -# Slackware build script for kbfs - -# Copyright 2017-2022 Willy Sudiarto Raharjo <willysr@slackbuilds.org> -# 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=kbfs -SRCNAM=keybase -VERSION=${VERSION:-5.9.3_20220216215910} -COMMITVER=c82d65a685 -SRCVER=$(echo $VERSION | tr _ - ) -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -KBFS_USER=${KBFS_USER:-keybasehelper} -KBFS_UID=${KBFS_UID:-352} -KBFS_GROUP=${KBFS_GROUP:-keybasehelper} -KBFS_GID=${KBFS_GID:-352} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -bailout() { - echo " You must have a $KBFS_USER user and $KBFS_GROUP group to run this script. " - echo " # groupadd -g $KBFS_GID $KBFS_GROUP " - echo " # useradd -u $KBFS_UID -g $KBFS_GID -c \"keybase helper user\" -s /bin/false $KBFS_USER " - exit 1 -} - -# Bail if user and/or group isn't valid on your system -if ! grep -q "^$KBFS_USER:" /etc/passwd; then - bailout -elif ! grep -q "^$KBFS_GROUP:" /etc/group; then - bailout -fi - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -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="" - DEBARCH=i386 -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" - DEBARCH=i386 -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" - DEBARCH=amd64 -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" - DEBARCH=i386 -fi - -set -e - - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $PKG -ar p $CWD/${SRCNAM}_${SRCVER}.${COMMITVER}_${DEBARCH}.deb data.tar.xz | tar xJv -cd $PKG -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 {} \; - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -# This is used only by Ubuntu/Debian derivatives -rm -rf $PKG/etc/cron.daily/ - -mkdir -p $PKG/var/lib/keybase/ -( - ln -s /opt/keybase/mount-readme $PKG/var/lib/keybase/mount1 - chown $KBFS_USER:$KBFS_GROUP $PKG/var/lib/keybase - ln -s /var/lib/keybase/mount1 $PKG/keybase -) - -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/system/kbfs/kbfs.info b/system/kbfs/kbfs.info deleted file mode 100644 index 4d78da850e485..0000000000000 --- a/system/kbfs/kbfs.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="kbfs" -VERSION="5.9.3_20220216215910" -HOMEPAGE="https://github.com/keybase/client" -DOWNLOAD="https://prerelease.keybase.io/linux_binaries/deb/keybase_5.9.3-20220216215910.c82d65a685_i386.deb" -MD5SUM="cfaa9403914c28fb259b4162a6d6d82f" -DOWNLOAD_x86_64="https://prerelease.keybase.io/linux_binaries/deb/keybase_5.9.3-20220216215910.c82d65a685_amd64.deb" -MD5SUM_x86_64="d363c1db05fd49aca260bcf5ca50b31d" -REQUIRES="google-go-lang" -MAINTAINER="Willy Sudiarto Raharjo" -EMAIL="willysr@slackbuilds.org" diff --git a/system/kbfs/slack-desc b/system/kbfs/slack-desc deleted file mode 100644 index ef45ff447d55f..0000000000000 --- a/system/kbfs/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------------------------------------------------------| -kbfs: kbfs (Keybase File System) -kbfs: -kbfs: The Keybase Go Client, filesystem and GUI -kbfs: This script package the whole bundle, not just the client app. -kbfs: -kbfs: -kbfs: -kbfs: -kbfs: Project URL: https://github.com/keybase/client -kbfs: -kbfs: |