aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dendrite/dendrite.SlackBuild33
-rw-r--r--dendrite/dendrite.info2
-rw-r--r--dendrite/slack-desc16
-rw-r--r--efi-sync/README19
-rw-r--r--efi-sync/doinst.sh25
-rw-r--r--efi-sync/efi-sync.SlackBuild62
-rw-r--r--efi-sync/efi-sync.info10
-rw-r--r--efi-sync/files/rc.efi-sync.new60
-rw-r--r--efi-sync/slack-desc19
-rw-r--r--[-rwxr-xr-x]gnunet/gnunet.SlackBuild19
-rw-r--r--gnunet/gnunet.info8
-rw-r--r--gnunet/slack-desc15
-rw-r--r--[-rwxr-xr-x]libeufin/libeufin.SlackBuild29
-rw-r--r--libeufin/libeufin.info8
-rw-r--r--libeufin/slack-desc15
-rw-r--r--mautrix-whatsapp/mautrix-whatsapp.SlackBuild27
-rw-r--r--mautrix-whatsapp/mautrix-whatsapp.info2
-rw-r--r--mautrix-whatsapp/slack-desc15
-rw-r--r--[-rwxr-xr-x]pkgtools-go/pkgtools-go.SlackBuild23
-rw-r--r--pkgtools-go/slack-desc16
-rw-r--r--taler-exchange/slack-desc15
-rw-r--r--[-rwxr-xr-x]taler-exchange/taler-exchange.SlackBuild31
-rw-r--r--taler-exchange/taler-exchange.info8
-rw-r--r--taler-merchant/slack-desc9
-rw-r--r--[-rwxr-xr-x]taler-merchant/taler-merchant.SlackBuild35
-rw-r--r--taler-merchant/taler-merchant.info8
26 files changed, 406 insertions, 123 deletions
diff --git a/dendrite/dendrite.SlackBuild b/dendrite/dendrite.SlackBuild
index b94bc92..366d58e 100644
--- a/dendrite/dendrite.SlackBuild
+++ b/dendrite/dendrite.SlackBuild
@@ -1,9 +1,12 @@
-#!/bin/sh
+#!/bin/bash
+
+cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=dendrite
VERSION=${VERSION:-0.13.7}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
+PKGTYPE=${PKGTYPE:-txz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -13,33 +16,23 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+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=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
-rm -rf $PRGNAM-0.13.7
-tar xvf $CWD/v0.13.7.tar.gz
-cd $PRGNAM-0.13.7
+rm -rf $PRGNAM-$VERSION
+tar xvf $CWD/v$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 \
@@ -78,4 +71,4 @@ mkdir -p "$PKG/var/log/dendrite"
chmod u=rwX,g=rX,o= "$PKG/var/log/dendrite"
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-0.13.7-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/dendrite/dendrite.info b/dendrite/dendrite.info
index b00d8cb..9c82446 100644
--- a/dendrite/dendrite.info
+++ b/dendrite/dendrite.info
@@ -3,6 +3,8 @@ VERSION="0.13.7"
HOMEPAGE="https://github.com/matrix-org/dendrite"
DOWNLOAD="https://github.com/matrix-org/dendrite/archive/refs/tags/v0.13.7.tar.gz"
MD5SUM="48eda1ded8f326dc20682a658f0c23ce"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
REQUIRES="google-go-lang postgresql"
MAINTAINER="Slack Coder"
EMAIL="slackcoder@server.ky"
diff --git a/dendrite/slack-desc b/dendrite/slack-desc
index c23e028..0550265 100644
--- a/dendrite/slack-desc
+++ b/dendrite/slack-desc
@@ -1,7 +1,19 @@
+# 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------------------------------------------------------|
-dendrite: dendrite
+dendrite: dendrite (Matrix home server)
dendrite:
-dendrite: Dendrite is a second-generation Matrix homeserver written in Go. It
+dendrite: Dendrite is a second-generation Matrix home server written in Go. It
dendrite: intends to provide an efficient, reliable and scalable alternative to
dendrite: Synapse.
dendrite:
+dendrite:
+dendrite:
+dendrite:
+dendrite:
+dendrite:
diff --git a/efi-sync/README b/efi-sync/README
new file mode 100644
index 0000000..71a5cef
--- /dev/null
+++ b/efi-sync/README
@@ -0,0 +1,19 @@
+efi-sync is a program which will update your efi when your kernel or its
+related files are updated.
+
+To have efi-sync to start and stop with your host, add to the beginning of
+/etc/rc.d/rc.local:
+
+ if [ -x /etc/rc.d/rc.efi-sync ]; then
+ /etc/rc.d/rc.efi-sync start
+ fi
+
+and to /etc/rc.d/rc.local_shutdown (creating it if needed):
+
+ if [ -x /etc/rc.d/rc.efi-sync ]; then
+ /etc/rc.d/rc.efi-sync stop
+ fi
+
+Also ensure your EFI is mounted on boot by having its entry configured in
+/etc/fstab. For more instructions, refer to the project's README in this
+packages documentation under /usr/doc.
diff --git a/efi-sync/doinst.sh b/efi-sync/doinst.sh
new file mode 100644
index 0000000..519c0d5
--- /dev/null
+++ b/efi-sync/doinst.sh
@@ -0,0 +1,25 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ # If there's no config file by that name, mv it over:
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ # toss the redundant copy
+ rm $NEW
+ fi
+ # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+preserve_perms() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ if [ -e $OLD ]; then
+ cp -a $OLD ${NEW}.incoming
+ cat $NEW > ${NEW}.incoming
+ mv ${NEW}.incoming $NEW
+ fi
+ config $NEW
+}
+
+preserve_perms etc/rc.d/rc.efi-sync.new
diff --git a/efi-sync/efi-sync.SlackBuild b/efi-sync/efi-sync.SlackBuild
new file mode 100644
index 0000000..b7bee98
--- /dev/null
+++ b/efi-sync/efi-sync.SlackBuild
@@ -0,0 +1,62 @@
+#!/bin/bash
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PRGNAM=efi-sync
+VERSION=${VERSION:-0.2.0}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_slackcoder}
+PKGTYPE=${PKGTYPE:-txz}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i586 ;;
+ 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}
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $PRGNAM-$VERSION
+tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
+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 {} \;
+
+mkdir -p $PKG/usr/sbin
+cp efi-sync $PKG/usr/sbin/
+chmod +x $PKG/usr/sbin/efi-sync
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+cp -a \
+ README.md \
+ $PKG/usr/doc/$PRGNAM-$VERSION
+cp "$CWD/README" "$PKG/usr/doc/$PRGNAM-$VERSION/README_slackware.md"
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+cat $CWD/doinst.sh > $PKG/install/doinst.sh
+
+mkdir -p "$PKG/etc/rc.d"
+cp -R "$CWD/files/rc.efi-sync.new" "$PKG/etc/rc.d/"
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-0.2.0-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/efi-sync/efi-sync.info b/efi-sync/efi-sync.info
new file mode 100644
index 0000000..166c307
--- /dev/null
+++ b/efi-sync/efi-sync.info
@@ -0,0 +1,10 @@
+PRGNAM="efi-sync"
+VERSION="0.2.0"
+HOMEPAGE="https://git.server.ky/slackcoder/efi-sync"
+DOWNLOAD="https://git.server.ky/slackcoder/efi-sync/snapshot/efi-sync-0.2.0.tar.xz"
+MD5SUM="9da8ebe6f6bcf30e0b8304c641c72396"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES=""
+MAINTAINER="Slack Coder"
+EMAIL="slackcoder@server.ky"
diff --git a/efi-sync/files/rc.efi-sync.new b/efi-sync/files/rc.efi-sync.new
new file mode 100644
index 0000000..727c93b
--- /dev/null
+++ b/efi-sync/files/rc.efi-sync.new
@@ -0,0 +1,60 @@
+#!/bin/sh
+#
+# Startup/shutdown script for GNU Taler's exchange.
+#
+
+# Seconds to wait for daemon to shutdown.
+SHUTDOWN_WAIT=60
+
+mkdir -p /run/efi-sync
+
+start() {
+ echo "Starting EFI Sync"
+
+ daemon \
+ --name=efi-sync \
+ --pidfiles=/run/efi-sync \
+ --output=/var/log/efi-sync.log \
+ -- efi-sync watch
+}
+
+stop() {
+ echo "Stopping EFI Sync"
+
+ if /usr/bin/daemon --pidfiles=/run/efi-sync --name=efi-sync --running ; then
+ /usr/bin/daemon --pidfiles=/run/efi-sync --name=efi-sync --stop
+ fi
+
+ # Wait for daemon to politely shutdown.
+ sleep 1
+ if /usr/bin/daemon --pidfiles=/run/efi-sync --name=efi-sync --running; then
+ echo "Waiting up to ${SHUTDOWN_WAIT} to stop..."
+
+ let "count = 0"
+ while /usr/bin/daemon --pidfiles=/run/efi-sync --name=efi-sync --running && [[ $count -lt 60 ]]; do
+ sleep 1
+ let "count = $count + 1"
+ done
+ fi
+}
+
+status() {
+ if /usr/bin/daemon --pidfiles=/run/efi-sync --name=efi-sync --running ; then
+ /usr/bin/daemon --pidfiles=/run/efi-sync --name=efi-sync --running --verbose
+ fi
+}
+
+case "$1" in
+start)
+ start
+ ;;
+stop)
+ stop
+ ;;
+status)
+ status
+ ;;
+*)
+ echo $"Usage: $0 {start|stop|status}"
+ exit 1
+esac
diff --git a/efi-sync/slack-desc b/efi-sync/slack-desc
new file mode 100644
index 0000000..1c4590c
--- /dev/null
+++ b/efi-sync/slack-desc
@@ -0,0 +1,19 @@
+# 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------------------------------------------------------|
+efi-sync: efi-sync (Kernel EFI installer)
+efi-sync:
+efi-sync: Automatically install your kernel into the EFI on updates.
+efi-sync:
+efi-sync:
+efi-sync:
+efi-sync:
+efi-sync:
+efi-sync:
+efi-sync:
+efi-sync:
diff --git a/gnunet/gnunet.SlackBuild b/gnunet/gnunet.SlackBuild
index 89b906d..f411b97 100755..100644
--- a/gnunet/gnunet.SlackBuild
+++ b/gnunet/gnunet.SlackBuild
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for gnunet
@@ -22,10 +22,13 @@
# 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=gnunet
-VERSION=${VERSION:-0.21.0}
+VERSION=${VERSION:-0.21.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
+PKGTYPE=${PKGTYPE:-txz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -35,25 +38,25 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
- SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
set -e
rm -rf $PKG
@@ -93,4 +96,4 @@ mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/gnunet/gnunet.info b/gnunet/gnunet.info
index a22e14e..3d43402 100644
--- a/gnunet/gnunet.info
+++ b/gnunet/gnunet.info
@@ -1,8 +1,10 @@
PRGNAM="gnunet"
-VERSION="0.21.0"
+VERSION="0.21.1"
HOMEPAGE="https://gnunet.org"
-DOWNLOAD="https://ftpmirror.gnu.org/gnu/gnunet/gnunet-0.21.0.tar.gz"
-MD5SUM="bea71cd62208138c69977db8fd96e8e1"
+DOWNLOAD="https://ftpmirror.gnu.org/gnu/gnunet/gnunet-0.21.1.tar.gz"
+MD5SUM="82ef9b824dde34c9daca7d87d1fa3aa0"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
REQUIRES="libmicrohttpd postgresql"
MAINTAINER="Slack Coder"
EMAIL="slackcoder@server.ky"
diff --git a/gnunet/slack-desc b/gnunet/slack-desc
index de3dd1e..7afba71 100644
--- a/gnunet/slack-desc
+++ b/gnunet/slack-desc
@@ -1,6 +1,19 @@
+# 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------------------------------------------------------|
-gnunet: gnunet
+gnunet: gnunet (GNUnet is a network stack for decentralized apps)
gnunet:
gnunet: GNUnet is a software framework for decentralized, peer-to-peer
gnunet: networking.
gnunet:
+gnunet:
+gnunet:
+gnunet:
+gnunet:
+gnunet:
+gnunet:
diff --git a/libeufin/libeufin.SlackBuild b/libeufin/libeufin.SlackBuild
index 88bdb82..aa55eb5 100755..100644
--- a/libeufin/libeufin.SlackBuild
+++ b/libeufin/libeufin.SlackBuild
@@ -1,9 +1,12 @@
-#!/bin/sh
+#!/bin/bash
+
+cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=libeufin
-VERSION=${VERSION:-0.9.4a}
+VERSION=${VERSION:-0.10.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
+PKGTYPE=${PKGTYPE:-txz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -13,25 +16,15 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+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=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
set -e
rm -rf $PKG
@@ -80,4 +73,4 @@ cat $CWD/doinst.sh > $PKG/install/doinst.sh
(cd $CWD/root && find . -type f -not -path . -exec install -D -m 755 {} "$PKG/{}" \; )
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/libeufin/libeufin.info b/libeufin/libeufin.info
index f3eb95d..adfaf02 100644
--- a/libeufin/libeufin.info
+++ b/libeufin/libeufin.info
@@ -1,8 +1,10 @@
PRGNAM="libeufin"
-VERSION="0.9.4a"
+VERSION="0.10.1"
HOMEPAGE="https://taler.net"
-DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/libeufin-0.9.4a-sources.tar.gz"
-MD5SUM="326b152030353c1cbd5a90c927118666"
+DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/libeufin-0.10.1-sources.tar.gz"
+MD5SUM="cc06b04ea17042fc2840d682ff5b6e80"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
REQUIRES="zulu-openjdk17"
MAINTAINER="Slack Coder"
EMAIL="slackcoder@server.ky"
diff --git a/libeufin/slack-desc b/libeufin/slack-desc
index 70f03c5..6f4a8be 100644
--- a/libeufin/slack-desc
+++ b/libeufin/slack-desc
@@ -1,6 +1,19 @@
+# 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------------------------------------------------------|
-libeufin: libeufin
+libeufin: libeufin (software tooling for European FinTech)
libeufin:
libeufin: LibEuFin is a project providing free software tooling for European
libeufin: FinTech.
libeufin:
+libeufin:
+libeufin:
+libeufin:
+libeufin:
+libeufin:
+libeufin:
diff --git a/mautrix-whatsapp/mautrix-whatsapp.SlackBuild b/mautrix-whatsapp/mautrix-whatsapp.SlackBuild
index 49709b0..c6d994f 100644
--- a/mautrix-whatsapp/mautrix-whatsapp.SlackBuild
+++ b/mautrix-whatsapp/mautrix-whatsapp.SlackBuild
@@ -1,9 +1,12 @@
-#!/bin/sh
+#!/bin/bash
+
+cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=mautrix-whatsapp
VERSION=${VERSION:-0.10.5}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
+PKGTYPE=${PKGTYPE:-txz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -13,25 +16,15 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+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=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
set -e
rm -rf $PKG
@@ -85,4 +78,4 @@ mkdir -p "$PKG/var/log/$PRGNAM"
chmod u=rwX,g=rX,o= "$PKG/var/log/$PRGNAM"
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/mautrix-whatsapp/mautrix-whatsapp.info b/mautrix-whatsapp/mautrix-whatsapp.info
index a1e051e..2bc7360 100644
--- a/mautrix-whatsapp/mautrix-whatsapp.info
+++ b/mautrix-whatsapp/mautrix-whatsapp.info
@@ -3,6 +3,8 @@ VERSION="0.10.5"
HOMEPAGE="https://github.com/mautrix/whatsapp"
DOWNLOAD="https://github.com/mautrix/whatsapp/archive/refs/tags/v0.10.5.tar.gz"
MD5SUM="b49f34cafecc56653ff402b7bafd8816"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
REQUIRES="olm postgresql"
MAINTAINER="Slack Coder"
EMAIL="slackcoder@server.ky"
diff --git a/mautrix-whatsapp/slack-desc b/mautrix-whatsapp/slack-desc
index 0c7b7f5..5574046 100644
--- a/mautrix-whatsapp/slack-desc
+++ b/mautrix-whatsapp/slack-desc
@@ -1,6 +1,19 @@
+# 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------------------------------------------------------|
-mautrix-whatsapp: mautrix-whatsapp
+mautrix-whatsapp: mautrix-whatsapp (Matrix-WhatsApp puppeting bridge)
mautrix-whatsapp:
mautrix-whatsapp: A Matrix-WhatsApp puppeting bridge based on whatsmeow.
mautrix-whatsapp:
mautrix-whatsapp:
+mautrix-whatsapp:
+mautrix-whatsapp:
+mautrix-whatsapp:
+mautrix-whatsapp:
+mautrix-whatsapp:
+mautrix-whatsapp:
diff --git a/pkgtools-go/pkgtools-go.SlackBuild b/pkgtools-go/pkgtools-go.SlackBuild
index 52bac4f..3d3dc2b 100755..100644
--- a/pkgtools-go/pkgtools-go.SlackBuild
+++ b/pkgtools-go/pkgtools-go.SlackBuild
@@ -1,11 +1,12 @@
-#!/bin/sh
+#!/bin/bash
-# Slackware build script for pkgtools
+cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=pkgtools-go
VERSION=${VERSION:-0.0.5}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
+PKGTYPE=${PKGTYPE:-txz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -15,21 +16,15 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD="$(pwd)"
+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
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- LIBDIRSUFFIX="64"
-else
- LIBDIRSUFFIX=""
-fi
-
set -e
rm -rf "$PKG"
@@ -64,5 +59,5 @@ mkdir -p "$PKG/install"
cat "$CWD/slack-desc" > "$PKG/install/slack-desc"
cd "$PKG"
-/sbin/makepkg -l y -c n "$OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}"
+/sbin/makepkg -l y -c n "$OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/pkgtools-go/slack-desc b/pkgtools-go/slack-desc
index df9aa37..e30f441 100644
--- a/pkgtools-go/slack-desc
+++ b/pkgtools-go/slack-desc
@@ -1,5 +1,19 @@
+# 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------------------------------------------------------|
-pkgtools-go: pkgtools-go
+pkgtools-go: pkgtools-go (pkgtools but in Golang)
pkgtools-go:
pkgtools-go: An alternative set of slackware package management tools.
pkgtools-go:
+pkgtools-go:
+pkgtools-go:
+pkgtools-go:
+pkgtools-go:
+pkgtools-go:
+pkgtools-go:
+pkgtools-go:
diff --git a/taler-exchange/slack-desc b/taler-exchange/slack-desc
index 712c373..3994f72 100644
--- a/taler-exchange/slack-desc
+++ b/taler-exchange/slack-desc
@@ -1,6 +1,19 @@
+# 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------------------------------------------------------|
-taler-exchange: taler-exchange
+taler-exchange: taler-exchange (exchange for Taler payment system)
taler-exchange:
taler-exchange: The exchange for the Taler payment system.
taler-exchange:
taler-exchange:
+taler-exchange:
+taler-exchange:
+taler-exchange:
+taler-exchange:
+taler-exchange:
+taler-exchange:
diff --git a/taler-exchange/taler-exchange.SlackBuild b/taler-exchange/taler-exchange.SlackBuild
index 3b76dd1..b730222 100755..100644
--- a/taler-exchange/taler-exchange.SlackBuild
+++ b/taler-exchange/taler-exchange.SlackBuild
@@ -1,9 +1,12 @@
-#!/bin/sh
+#!/bin/bash
+
+cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=taler-exchange
-VERSION=${VERSION:-0.9.4a}
+VERSION=${VERSION:-0.10.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
+PKGTYPE=${PKGTYPE:-_slackcoder}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -13,7 +16,11 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+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}
@@ -37,9 +44,9 @@ set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
-rm -rf $PRGNAM-0.9.4a
-tar xvf $CWD/$PRGNAM-0.9.4a.tar.gz
-cd $PRGNAM-0.9.4a
+rm -rf $PRGNAM-0.10.2
+tar xvf $CWD/$PRGNAM-0.10.2.tar.gz
+cd $PRGNAM-0.10.2
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
@@ -53,7 +60,7 @@ find -L . \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-0.9.4a \
+ --docdir=/usr/doc/$PRGNAM-0.10.2 \
--disable-static \
--build=$ARCH-slackware-linux
make
@@ -62,9 +69,9 @@ make DESTDIR="$PKG" install
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
-mkdir -p $PKG/usr/doc/$PRGNAM-0.9.4a
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-0.9.4a/$PRGNAM.SlackBuild
-cat $CWD/README > $PKG/usr/doc/$PRGNAM-0.9.4a/README_slackware.txt
+mkdir -p $PKG/usr/doc/$PRGNAM-0.10.2
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-0.10.2/$PRGNAM.SlackBuild
+cat $CWD/README > $PKG/usr/doc/$PRGNAM-0.10.2/README_slackware.txt
cp -a \
AUTHORS \
COPYING \
@@ -73,7 +80,7 @@ cp -a \
NEWS \
README \
README.1st \
- $PKG/usr/doc/$PRGNAM-0.9.4a
+ $PKG/usr/doc/$PRGNAM-0.10.2
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
@@ -91,4 +98,4 @@ chmod g+w $PKG/var/log/taler
chmod -R u=rwX,g=rX,o= $PKG/etc/taler/secrets/*
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-0.9.4a-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-0.10.2-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/taler-exchange/taler-exchange.info b/taler-exchange/taler-exchange.info
index 0a1558a..74a8642 100644
--- a/taler-exchange/taler-exchange.info
+++ b/taler-exchange/taler-exchange.info
@@ -1,8 +1,10 @@
PRGNAM="taler-exchange"
-VERSION="0.9.4a"
+VERSION="0.10.2"
HOMEPAGE="https://taler.net"
-DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/taler-exchange-0.9.4a.tar.gz"
-MD5SUM="04705ee8fc210ec161b5ba5e4b007d3b"
+DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/taler-exchange-0.10.2.tar.gz"
+MD5SUM="ff67fdf2bf2f8eeeaa1860a924b3e69f"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
REQUIRES="gnunet jq postgresql"
MAINTAINER="Slack Coder"
EMAIL="slackcoder@server.ky"
diff --git a/taler-merchant/slack-desc b/taler-merchant/slack-desc
index 6071631..69fb14b 100644
--- a/taler-merchant/slack-desc
+++ b/taler-merchant/slack-desc
@@ -1,5 +1,12 @@
+# 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------------------------------------------------------|
-taler-merchant: taler-merchant
+taler-merchant: taler-merchant (Taler payment system merchant)
taler-merchant:
taler-merchant: The merchant for the Taler payment system.
taler-merchant:
diff --git a/taler-merchant/taler-merchant.SlackBuild b/taler-merchant/taler-merchant.SlackBuild
index bfeb870..2b40578 100755..100644
--- a/taler-merchant/taler-merchant.SlackBuild
+++ b/taler-merchant/taler-merchant.SlackBuild
@@ -1,9 +1,12 @@
-#!/bin/sh
+#!/bin/bash
+
+cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=taler-merchant
-VERSION=${VERSION:-0.9.4b}
+VERSION=${VERSION:-0.10.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
+PKGTYPE=${PKGTYPE:-txz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -13,8 +16,12 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
-TMP=${TMP:-/tmp/sky}
+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}
@@ -37,9 +44,9 @@ set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
-rm -rf $PRGNAM-0.9.4b
-tar xvf $CWD/$PRGNAM-0.9.4b.tar.gz
-cd $PRGNAM-0.9.4b
+rm -rf $PRGNAM-0.10.2
+tar xvf $CWD/$PRGNAM-0.10.2.tar.gz
+cd $PRGNAM-0.10.2
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
@@ -53,7 +60,7 @@ find -L . \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-0.9.4b \
+ --docdir=/usr/doc/$PRGNAM-0.10.2 \
--disable-static \
--build=$ARCH-slackware-linux
make
@@ -62,17 +69,17 @@ make DESTDIR="$PKG" install
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
-mkdir -p $PKG/usr/doc/$PRGNAM-0.9.4b
-cp -a COPYING COPYING.* README $PKG/usr/doc/$PRGNAM-0.9.4b
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-0.9.4b/$PRGNAM.SlackBuild
-cat $CWD/README > $PKG/usr/doc/$PRGNAM-0.9.4b/README_slackware.txt
+mkdir -p $PKG/usr/doc/$PRGNAM-0.10.2
+cp -a COPYING COPYING.* README $PKG/usr/doc/$PRGNAM-0.10.2
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-0.10.2/$PRGNAM.SlackBuild
+cat $CWD/README > $PKG/usr/doc/$PRGNAM-0.10.2/README_slackware.txt
cp -a \
AUTHORS \
COPYING* \
ChangeLog \
NEWS \
README \
- $PKG/usr/doc/$PRGNAM-0.9.4b
+ $PKG/usr/doc/$PRGNAM-0.10.2
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
@@ -90,4 +97,4 @@ chmod g+w $PKG/var/log/taler
chmod -R u=rwX,g=rX,o= $PKG/etc/taler/secrets
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-0.9.4b-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-0.10.2-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/taler-merchant/taler-merchant.info b/taler-merchant/taler-merchant.info
index f93b314..3ff936f 100644
--- a/taler-merchant/taler-merchant.info
+++ b/taler-merchant/taler-merchant.info
@@ -1,8 +1,10 @@
PRGNAM="taler-merchant"
-VERSION="0.9.4b"
+VERSION="0.10.2"
HOMEPAGE="https://taler.net"
-DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/taler-merchant-0.9.4b.tar.gz"
-MD5SUM="6762ff93cbbe55b452ea9a213b935585"
+DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/taler-merchant-0.10.2.tar.gz"
+MD5SUM="fd492bbb3652b6b8cce7d5d7bdc3d6bc"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
REQUIRES="gnunet taler-exchange"
MAINTAINER="Slack Coder"
EMAIL="slackcoder@server.ky"