Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

system/sbotools: Updated for version 3.1. #9004

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions system/sbotools/README
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ are compatible, but some of the options are new. It may be convenient
to examine the new file for added options and annotation when upgrading
from version 2.7.

To blacklist scripts and notify sbotools of optional dependencies, see
/etc/sbotools/sbotools.hints.

Please note that sbotools-3.x is based on an actively-maintained fork
of the repository used for versions 1.9 through 2.7. A debt of gratitude
is owed to the original author, Jacob Pipkin, longtime maintainer
Expand Down
1 change: 1 addition & 0 deletions system/sbotools/doinst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ config() {
}

config etc/sbotools/sbotools.conf.new
config etc/sbotools/sbotools.hints.new
26 changes: 22 additions & 4 deletions system/sbotools/sbotools.SlackBuild
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,30 @@
# Slackware build script for sbotools
#
# Written by Jacob Pipkin <[email protected]>
# Altered by K. Eugene Carlson <[email protected]>
# Licensed under the WTFPL <http://sam.zoy.org/wtfpl/COPYING>
# Copyright 2024 K. Eugene Carlson <[email protected]>
# 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=sbotools
VERSION=${VERSION:-3.0}
VERSION=${VERSION:-3.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
Expand Down Expand Up @@ -73,7 +90,8 @@ for i in $MANS; do
done

mkdir -p $PKG/etc/sbotools
cp sbotools.conf $PKG/etc/sbotools/sbotools.conf.new
cp etc/sbotools.conf $PKG/etc/sbotools/sbotools.conf.new
cp etc/sbotools.hints $PKG/etc/sbotools/sbotools.hints.new

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
Expand Down
6 changes: 3 additions & 3 deletions system/sbotools/sbotools.info
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PRGNAM="sbotools"
VERSION="3.0"
VERSION="3.1"
HOMEPAGE="https://pghvlaans.github.io/sbotools/"
DOWNLOAD="https://pghvlaans.github.io/sbotools/downloads/sbotools-3.0.tar.gz"
MD5SUM="11a00ee87396bcd993c3cd1be8299f87"
DOWNLOAD="https://pghvlaans.github.io/sbotools/downloads/sbotools-3.1.tar.gz"
MD5SUM="49222b05184c7e9e0a9d5c53e715e0bd"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
Expand Down