2021-07-03 19:48:15 +02:00
|
|
|
#!/bin/bash
|
2010-05-12 23:27:43 +02:00
|
|
|
|
|
|
|
# Slackware build script for wgetpaste
|
|
|
|
|
2022-06-08 18:25:55 +02:00
|
|
|
# Written by B. Watson (urchlay@slackware.uk)
|
2010-05-12 23:27:43 +02:00
|
|
|
|
2017-03-02 21:33:45 +01:00
|
|
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
2012-12-26 09:23:57 +01:00
|
|
|
|
2024-03-14 19:11:51 +01:00
|
|
|
# 20240314 bkw: update for v2.34.
|
2023-12-20 12:33:24 +01:00
|
|
|
# 20231220 bkw: update for v2.33. at least half of the services
|
|
|
|
# are working again, so update README and man page.
|
|
|
|
|
2023-07-05 04:33:41 +02:00
|
|
|
# 20230704 bkw: BUILD=2
|
|
|
|
# - Add doc dir. WTF was I smoking?
|
|
|
|
|
2020-10-24 21:05:11 +02:00
|
|
|
# 20201024 bkw: Attempted update for v2.30, but it appears to be
|
|
|
|
# broken. The default dpaste service works fine in 2.29 and not
|
|
|
|
# at all in 2.30. Only reason I'm "updating" the build is to add
|
|
|
|
# comments here and in the README.
|
|
|
|
|
2019-11-30 22:15:12 +01:00
|
|
|
# 20191130 bkw: update for v2.29. Currently only dpaste works.
|
|
|
|
|
2014-08-19 08:52:05 +02:00
|
|
|
# 20140818 bkw:
|
|
|
|
# - Updated to 2.25.
|
|
|
|
# - Rewrote man page in pod.
|
|
|
|
|
2015-01-26 18:20:11 +01:00
|
|
|
# 20150124 bkw:
|
|
|
|
# - Changed the default service from bpaste to dpaste, since bpaste
|
|
|
|
# seems to have stopped working.
|
|
|
|
# - Get rid of zlin.dk service, as it's gone away.
|
|
|
|
# - Tested all services. As of this writing, these services work:
|
|
|
|
# dpaste codepad gists poundpython
|
|
|
|
# These do NOT work:
|
|
|
|
# bpaste ca
|
|
|
|
# I haven't tried very hard to get the non-working ones to work, let me know
|
|
|
|
# if you manage it. I notice ca has captchas now, so it'll likely never
|
|
|
|
# work with a script.
|
|
|
|
# - Documented non-working services in man page.
|
|
|
|
# - Replaced no_gentooisms.diff with some sed stuff.
|
|
|
|
# - Bumped BUILD to 2.
|
|
|
|
|
2016-07-22 01:59:02 +02:00
|
|
|
# 20160721 bkw:
|
|
|
|
# - Updated to 2.28.
|
|
|
|
# - Leave default service as-is (it's now poundpython).
|
|
|
|
# - Really remove no_gentooisms.diff.
|
|
|
|
|
2021-07-04 11:41:06 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2010-05-12 23:27:43 +02:00
|
|
|
PRGNAM=wgetpaste
|
2024-03-14 19:11:51 +01:00
|
|
|
VERSION=${VERSION:-2.34}
|
|
|
|
BUILD=${BUILD:-1}
|
2010-05-12 23:27:43 +02:00
|
|
|
TAG=${TAG:-_SBo}
|
2021-07-04 12:23:38 +02:00
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
2010-05-12 23:27:43 +02:00
|
|
|
|
2011-06-18 03:30:13 +02:00
|
|
|
ARCH=noarch
|
|
|
|
|
|
|
|
ZSHDIR=/usr/share/zsh/site-functions
|
|
|
|
|
2021-07-04 12:23:38 +02:00
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2010-05-12 23:27:43 +02:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rm -rf $PKG
|
2012-12-26 09:23:57 +01:00
|
|
|
mkdir -p $TMP $OUTPUT $PKG/usr/bin $PKG/etc/$PRGNAM.d $PKG/usr/man/man1 $PKG/$ZSHDIR
|
2010-05-12 23:27:43 +02:00
|
|
|
cd $TMP
|
|
|
|
rm -rf $PRGNAM-$VERSION
|
2023-12-20 12:33:24 +01:00
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
2010-05-12 23:27:43 +02:00
|
|
|
cd $PRGNAM-$VERSION
|
2013-11-09 15:47:03 +01:00
|
|
|
chown -R root:root .
|
2020-10-24 21:05:11 +02:00
|
|
|
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
|
|
|
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
2010-05-12 23:27:43 +02:00
|
|
|
|
2015-01-26 18:20:11 +01:00
|
|
|
# Un-gentoo-ize the help and error messages, use wgetpaste_info for the
|
2016-07-22 01:59:02 +02:00
|
|
|
# -i and -I options.
|
|
|
|
|
2015-01-26 18:20:11 +01:00
|
|
|
sed -i \
|
|
|
|
-e 's,emerge --info,wgetpaste_info,g' \
|
|
|
|
-e 's,emerge x11-misc/,install ,g' \
|
|
|
|
-e 's,x11-misc/,,g' \
|
2023-12-20 12:33:24 +01:00
|
|
|
-e 's,app-text/,,g' \
|
2015-01-26 18:20:11 +01:00
|
|
|
-e '/^INFO_ARGS/s,"[^"]*","",' \
|
|
|
|
$PRGNAM
|
2010-05-12 23:27:43 +02:00
|
|
|
|
2016-07-22 01:59:02 +02:00
|
|
|
# used to do this:
|
|
|
|
## -e '/^DEFAULT_SERVICE/s,bpaste,dpaste,' \
|
|
|
|
## Set default paste service to something that works,
|
|
|
|
## since bpaste has stopped working.
|
2023-12-20 12:33:24 +01:00
|
|
|
# no longer needed as bpaste has started working again.
|
2016-07-22 01:59:02 +02:00
|
|
|
|
|
|
|
# No 'make install', do it manually:
|
2010-05-12 23:27:43 +02:00
|
|
|
install -groot -oroot -m0755 $PRGNAM $PKG/usr/bin
|
|
|
|
install -groot -oroot -m0644 _$PRGNAM $PKG/$ZSHDIR
|
|
|
|
install -groot -oroot -m0644 $CWD/$PRGNAM.example $PKG/etc/$PRGNAM.conf.sample
|
|
|
|
install -groot -oroot -m0755 $CWD/${PRGNAM}_info $PKG/usr/bin
|
|
|
|
|
2015-01-26 18:20:11 +01:00
|
|
|
# Man page made from --help output, by way of POD.
|
2010-05-12 23:27:43 +02:00
|
|
|
gzip -9c $CWD/$PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz
|
|
|
|
|
2023-07-05 04:33:41 +02:00
|
|
|
PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
mkdir -p $PKGDOC
|
|
|
|
cp -a LICENSE $PKGDOC
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild
|
|
|
|
|
2010-05-12 23:27:43 +02:00
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
2021-07-04 12:23:38 +02:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|