development/checkbashisms: Updated for version 2.23.4.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
henesy 2024-11-09 21:03:54 -08:00 committed by Willy Sudiarto Raharjo
parent 34915fc43a
commit 0af2af89a5
2 changed files with 39 additions and 15 deletions

View file

@ -2,6 +2,7 @@
# Slackware build script for "checkbashisms". # Slackware build script for "checkbashisms".
# Copyright 2024 Sean Hinchee
# Copyright 2015-2016 Marcel Saegebarth <marc@mos6581.de> # Copyright 2015-2016 Marcel Saegebarth <marc@mos6581.de>
# All rights reserved. # All rights reserved.
# #
@ -25,12 +26,14 @@
cd $(dirname $0) ; CWD=$(pwd) cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=checkbashisms PRGNAM=checkbashisms
VERSION=${VERSION:-2.15.10} VERSION=${VERSION:-2.23.4}
REV=${REV:-00d3afd7eefe53371d07d7404caf6b862a32931e} #REV=${REV:-00d3afd7eefe53371d07d7404caf6b862a32931e}
ARCH=noarch ARCH=noarch
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz} PKGTYPE=${PKGTYPE:-tgz}
STEM="devscripts-2.23.4+deb12u2"
ARCHIVE="devscripts_2.23.4+deb12u2.tar.xz"
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what # 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 # the name of the created package would be, and then exit. This information
@ -48,16 +51,39 @@ set -e
rm -rf $PKG rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT mkdir -p $TMP $PKG $OUTPUT
cd $PKG cd $TMP
rm -rf $STEM
tar xvf $CWD/$ARCHIVE
cd $STEM
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 {} \;
### Build
mkdir -p $PKG/usr/bin mkdir -p $PKG/usr/bin
install -m 0755 "$CWD/$PRGNAM.pl?id=$REV" $PKG/usr/bin/$PRGNAM || \ cp scripts/$PRGNAM.pl $PKG/usr/bin/
install -m 0755 "$CWD/$PRGNAM.pl" $PKG/usr/bin/$PRGNAM
### Bash completions
mkdir -p $PKG/usr/share/bash-completion/completions
cp scripts/$PRGNAM.bash_completion $PKG/usr/share/bash-completion/completions/$PRGNAM
### Manual
mkdir -p $PKG/usr/man/man1 mkdir -p $PKG/usr/man/man1
cat "$CWD/$PRGNAM.1?id=$REV" > $PKG/usr/man/man1/$PRGNAM.1 || \ cp scripts/$PRGNAM.1 $PKG/usr/man/man1/
cat "$CWD/$PRGNAM.1" > $PKG/usr/man/man1/$PRGNAM.1
gzip -9 $PKG/usr/man/man1/$PRGNAM.1 ### Wrap up package
#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
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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

View file

@ -1,12 +1,10 @@
PRGNAM="checkbashisms" PRGNAM="checkbashisms"
VERSION="2.15.10" VERSION="2.23.4"
HOMEPAGE="https://packages.qa.debian.org/d/devscripts.html" HOMEPAGE="https://packages.qa.debian.org/d/devscripts.html"
DOWNLOAD="https://sourceforge.net/projects/slackbuildsdirectlinks/files/checkbashisms/checkbashisms.pl \ DOWNLOAD="http://deb.debian.org/debian/pool/main/d/devscripts/devscripts_2.23.4+deb12u2.tar.xz"
https://sourceforge.net/projects/slackbuildsdirectlinks/files/checkbashisms/checkbashisms.1" MD5SUM="492b78d67298e7eece0dc3552a01ffa9"
MD5SUM="b4ea752c37f0b01d381aaee98c98a085 \
f0f7c2c3a449c62579b666f3818d4ae4"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
REQUIRES="" REQUIRES=""
MAINTAINER="Marcel Saegebarth" MAINTAINER="Sean Hinchee"
EMAIL="marc@mos6581.de" EMAIL="henesy.dev@gmail.com"