aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSlack Coder <slackcoder@server.ky>2024-10-01 15:31:55 -0500
committerSlack Coder <slackcoder@server.ky>2024-10-07 16:00:42 -0500
commitc983a7f11401015fb845d9d757da619498490ac3 (patch)
treedadb37df23551e9229bdf435e73ac63b713d22da
parent97baf94615ba2ea028f51d207ea6cc974062c986 (diff)
downloadslackbuilds-c983a7f11401015fb845d9d757da619498490ac3.tar.xz
taler: bump all to 0.13.0
-rw-r--r--gnunet/gnunet.SlackBuild2
-rw-r--r--gnunet/gnunet.info6
-rw-r--r--libeufin/libeufin.SlackBuild2
-rw-r--r--libeufin/libeufin.info6
-rw-r--r--libeufin/root/etc/rc.d/rc.libeufin.new50
-rw-r--r--taler-exchange/patch/1-remove-header.patch45
-rw-r--r--taler-exchange/patch/2-remove-double-constant.patch42
-rw-r--r--taler-exchange/taler-exchange.SlackBuild25
-rw-r--r--taler-exchange/taler-exchange.info6
-rw-r--r--taler-merchant/taler-merchant.SlackBuild2
-rw-r--r--taler-merchant/taler-merchant.info6
11 files changed, 167 insertions, 25 deletions
diff --git a/gnunet/gnunet.SlackBuild b/gnunet/gnunet.SlackBuild
index f74b188..b321c9d 100644
--- a/gnunet/gnunet.SlackBuild
+++ b/gnunet/gnunet.SlackBuild
@@ -25,7 +25,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=gnunet
-VERSION=${VERSION:-0.21.2}
+VERSION=${VERSION:-0.22.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
PKGTYPE=${PKGTYPE:-txz}
diff --git a/gnunet/gnunet.info b/gnunet/gnunet.info
index 51fdc90..205d17b 100644
--- a/gnunet/gnunet.info
+++ b/gnunet/gnunet.info
@@ -1,8 +1,8 @@
PRGNAM="gnunet"
-VERSION="0.21.2"
+VERSION="0.22.0"
HOMEPAGE="https://gnunet.org"
-DOWNLOAD="https://ftpmirror.gnu.org/gnu/gnunet/gnunet-0.21.2.tar.gz"
-MD5SUM="8fd850e4a28fffdd8f9086f08b76244b"
+DOWNLOAD="https://ftpmirror.gnu.org/gnu/gnunet/gnunet-0.22.0.tar.gz"
+MD5SUM="1491b09098d2b3ffe3e74a32037eeefa"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="libmicrohttpd postgresql"
diff --git a/libeufin/libeufin.SlackBuild b/libeufin/libeufin.SlackBuild
index 2516687..56aada0 100644
--- a/libeufin/libeufin.SlackBuild
+++ b/libeufin/libeufin.SlackBuild
@@ -3,7 +3,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=libeufin
-VERSION=${VERSION:-0.11.2}
+VERSION=${VERSION:-0.13.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
PKGTYPE=${PKGTYPE:-txz}
diff --git a/libeufin/libeufin.info b/libeufin/libeufin.info
index 2c6079c..4bc3512 100644
--- a/libeufin/libeufin.info
+++ b/libeufin/libeufin.info
@@ -1,8 +1,8 @@
PRGNAM="libeufin"
-VERSION="0.11.2"
+VERSION="0.13.0"
HOMEPAGE="https://taler.net"
-DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/libeufin-0.11.2-sources.tar.gz"
-MD5SUM="78b98f3559e27266220688ad91d6ef63"
+DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/libeufin-0.13.0-sources.tar.gz"
+MD5SUM="be28bf3e59904300520b8e61d45cbba6"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="zulu-openjdk17"
diff --git a/libeufin/root/etc/rc.d/rc.libeufin.new b/libeufin/root/etc/rc.d/rc.libeufin.new
new file mode 100644
index 0000000..42e9c3e
--- /dev/null
+++ b/libeufin/root/etc/rc.d/rc.libeufin.new
@@ -0,0 +1,50 @@
+#!/bin/sh
+#
+# Startup/shutdown script for GNU Taler's libeufin bank.
+#
+
+export USERPROFILE=/var/lib/libeufin
+
+create_run_dir() {
+ if [ ! -d /run/libeufin-bank/ ]; then
+ mkdir -p /run/libeufin-bank
+ chown libeufin-bank:libeufin-bank /run/libeufin-bank
+ chmod g+wX /run/libeufin-bank
+ fi
+}
+
+start() {
+ echo "Starting Libeufin Bank"
+ create_run_dir
+
+ daemon \
+ --name=libeufin-bank \
+ --user=libeufin-bank \
+ --pidfiles=/run/libeufin-bank \
+ --output=/var/log/taler/libeufin-bank.log \
+ -- libeufin-bank serve --config /etc/libeufin/libeufin-bank.conf
+}
+
+stop() {
+ echo "Stopping Libeufin Bank"
+ /usr/bin/daemon --name=libeufin-bank --pidfiles=/run/libeufin-bank --stop
+}
+
+status() {
+ /usr/bin/daemon --name=libeufin-bank --pidfiles=/run/libeufin-bank --running --verbose
+}
+
+case "$1" in
+start)
+ start
+ ;;
+stop)
+ stop
+ ;;
+status)
+ status
+ ;;
+*)
+ echo "Usage: $0 {start|stop|status}"
+ exit 1
+esac
diff --git a/taler-exchange/patch/1-remove-header.patch b/taler-exchange/patch/1-remove-header.patch
new file mode 100644
index 0000000..20e8f30
--- /dev/null
+++ b/taler-exchange/patch/1-remove-header.patch
@@ -0,0 +1,45 @@
+Only in b/src/exchange: sedjui6lB
+diff -ru a/src/exchange/taler-exchange-httpd_kyc-wallet.c b/src/exchange/taler-exchange-httpd_kyc-wallet.c
+--- a/src/exchange/taler-exchange-httpd_kyc-wallet.c 2024-08-19 03:08:33.447317541 -0500
++++ b/src/exchange/taler-exchange-httpd_kyc-wallet.c 2024-10-01 14:36:38.206822705 -0500
+@@ -30,7 +30,6 @@
+ #include "taler-exchange-httpd_common_kyc.h"
+ #include "taler-exchange-httpd_kyc-wallet.h"
+ #include "taler-exchange-httpd_responses.h"
+-#include "taler-exchange-httpd_withdraw.h"
+
+
+ /**
+diff -ru a/src/exchange/taler-exchange-httpd_purses_merge.c b/src/exchange/taler-exchange-httpd_purses_merge.c
+--- a/src/exchange/taler-exchange-httpd_purses_merge.c 2024-08-19 03:08:33.447317541 -0500
++++ b/src/exchange/taler-exchange-httpd_purses_merge.c 2024-10-01 14:36:38.213822705 -0500
+@@ -33,7 +33,6 @@
+ #include "taler-exchange-httpd_common_kyc.h"
+ #include "taler-exchange-httpd_purses_merge.h"
+ #include "taler-exchange-httpd_responses.h"
+-#include "taler-exchange-httpd_withdraw.h"
+ #include "taler_exchangedb_lib.h"
+ #include "taler-exchange-httpd_keys.h"
+
+diff -ru a/src/exchange/taler-exchange-httpd_reserves_close.c b/src/exchange/taler-exchange-httpd_reserves_close.c
+--- a/src/exchange/taler-exchange-httpd_reserves_close.c 2024-08-19 03:08:33.448317541 -0500
++++ b/src/exchange/taler-exchange-httpd_reserves_close.c 2024-10-01 14:36:38.215822705 -0500
+@@ -30,7 +30,6 @@
+ #include "taler-exchange-httpd_common_kyc.h"
+ #include "taler-exchange-httpd_keys.h"
+ #include "taler-exchange-httpd_reserves_close.h"
+-#include "taler-exchange-httpd_withdraw.h"
+ #include "taler-exchange-httpd_responses.h"
+
+
+diff -ru a/src/exchange/taler-exchange-httpd_reserves_purse.c b/src/exchange/taler-exchange-httpd_reserves_purse.c
+--- a/src/exchange/taler-exchange-httpd_reserves_purse.c 2024-08-26 12:13:30.709771927 -0500
++++ b/src/exchange/taler-exchange-httpd_reserves_purse.c 2024-10-01 14:36:38.217822705 -0500
+@@ -32,7 +32,6 @@
+ #include "taler-exchange-httpd_common_kyc.h"
+ #include "taler-exchange-httpd_reserves_purse.h"
+ #include "taler-exchange-httpd_responses.h"
+-#include "taler-exchange-httpd_withdraw.h"
+ #include "taler_exchangedb_lib.h"
+ #include "taler-exchange-httpd_keys.h"
+
diff --git a/taler-exchange/patch/2-remove-double-constant.patch b/taler-exchange/patch/2-remove-double-constant.patch
new file mode 100644
index 0000000..2ed21fd
--- /dev/null
+++ b/taler-exchange/patch/2-remove-double-constant.patch
@@ -0,0 +1,42 @@
+diff -ru a/src/benchmark/taler-exchange-benchmark.c b/src/benchmark/taler-exchange-benchmark.c
+--- a/src/benchmark/taler-exchange-benchmark.c 2024-10-01 14:48:00.588810485 -0500
++++ b/src/benchmark/taler-exchange-benchmark.c 2024-10-01 14:49:16.372809128 -0500
+@@ -296,7 +296,7 @@
+ GNUNET_TIME_UNIT_ZERO,
+ amount_1,
+ MHD_HTTP_OK));
+- if (eval_probability (refresh_rate / 100.0d))
++ if (eval_probability (refresh_rate / 100.0))
+ {
+ char *melt_label;
+ char *reveal_label;
+@@ -630,7 +630,7 @@
+ " * Reserve=%u * Parallel=%u, operations in %s\n",
+ howmany_coins,
+ howmany_coins,
+- howmany_coins * (refresh_rate / 100.0d),
++ howmany_coins * (refresh_rate / 100.0),
+ howmany_reserves,
+ howmany_clients,
+ GNUNET_STRINGS_relative_time_to_string (
+diff -ru a/src/lib/exchange_api_stefan.c b/src/lib/exchange_api_stefan.c
+--- a/src/lib/exchange_api_stefan.c 2024-10-01 14:48:00.564810485 -0500
++++ b/src/lib/exchange_api_stefan.c 2024-10-01 14:49:16.396809127 -0500
+@@ -125,7 +125,7 @@
+ min = get_unit (keys);
+ if (NULL == min)
+ return GNUNET_SYSERR;
+- if (1.0d <= keys->stefan_lin)
++ if (1.0 <= keys->stefan_lin)
+ {
+ /* This cannot work, linear STEFAN fee estimate always
+ exceed any gross amount. */
+@@ -273,7 +273,7 @@
+ min = get_unit (keys);
+ if (NULL == min)
+ return GNUNET_SYSERR;
+- if (1.0d <= keys->stefan_lin)
++ if (1.0 <= keys->stefan_lin)
+ {
+ /* This cannot work, linear STEFAN fee estimate always
+ exceed any gross amount. */
diff --git a/taler-exchange/taler-exchange.SlackBuild b/taler-exchange/taler-exchange.SlackBuild
index 2c262a2..ac8b215 100644
--- a/taler-exchange/taler-exchange.SlackBuild
+++ b/taler-exchange/taler-exchange.SlackBuild
@@ -3,7 +3,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=taler-exchange
-VERSION=${VERSION:-0.11.2}
+VERSION=${VERSION:-0.13.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
PKGTYPE=${PKGTYPE:-txz}
@@ -44,9 +44,9 @@ set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
-rm -rf $PRGNAM-0.11.2
-tar xvf $CWD/$PRGNAM-0.11.2.tar.gz
-cd $PRGNAM-0.11.2
+rm -rf $PRGNAM-0.13.0
+tar xvf $CWD/$PRGNAM-0.13.0.tar.gz
+cd $PRGNAM-0.13.0
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
@@ -54,13 +54,18 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+for p in $CWD/patch/*.patch; do
+ echo "applying patch $p"
+ patch -p1 <"$p"
+done
+
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-0.11.2 \
+ --docdir=/usr/doc/$PRGNAM-0.13.0 \
--disable-static \
--build=$ARCH-slackware-linux
make
@@ -69,9 +74,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.11.2
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-0.11.2/$PRGNAM.SlackBuild
-cat $CWD/README > $PKG/usr/doc/$PRGNAM-0.11.2/README_slackware.txt
+mkdir -p $PKG/usr/doc/$PRGNAM-0.13.0
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-0.13.0/$PRGNAM.SlackBuild
+cat $CWD/README > $PKG/usr/doc/$PRGNAM-0.13.0/README_slackware.txt
cp -a \
AUTHORS \
COPYING \
@@ -80,7 +85,7 @@ cp -a \
NEWS \
README \
README.1st \
- $PKG/usr/doc/$PRGNAM-0.11.2
+ $PKG/usr/doc/$PRGNAM-0.13.0
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
@@ -98,4 +103,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.11.2-$ARCH-$BUILD$TAG.$PKGTYPE
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-0.13.0-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/taler-exchange/taler-exchange.info b/taler-exchange/taler-exchange.info
index 16d1a82..2602dee 100644
--- a/taler-exchange/taler-exchange.info
+++ b/taler-exchange/taler-exchange.info
@@ -1,8 +1,8 @@
PRGNAM="taler-exchange"
-VERSION="0.11.2"
+VERSION="0.13.0"
HOMEPAGE="https://taler.net"
-DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/taler-exchange-0.11.2.tar.gz"
-MD5SUM="d163c6f07ee23d8ae974262ebadf802e"
+DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/taler-exchange-0.13.0.tar.gz"
+MD5SUM="67889315a20300af3f9220d69e16106a"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="gnunet jq postgresql"
diff --git a/taler-merchant/taler-merchant.SlackBuild b/taler-merchant/taler-merchant.SlackBuild
index 8d49d07..8ed3915 100644
--- a/taler-merchant/taler-merchant.SlackBuild
+++ b/taler-merchant/taler-merchant.SlackBuild
@@ -3,7 +3,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=taler-merchant
-VERSION=${VERSION:-0.11.3}
+VERSION=${VERSION:-0.13.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_slackcoder}
PKGTYPE=${PKGTYPE:-txz}
diff --git a/taler-merchant/taler-merchant.info b/taler-merchant/taler-merchant.info
index 89eb9d8..1fdc10f 100644
--- a/taler-merchant/taler-merchant.info
+++ b/taler-merchant/taler-merchant.info
@@ -1,8 +1,8 @@
PRGNAM="taler-merchant"
-VERSION="0.11.3"
+VERSION="0.13.0"
HOMEPAGE="https://taler.net"
-DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/taler-merchant-0.11.3.tar.gz"
-MD5SUM="3711b58806f3198b1c384e138a19be2c"
+DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/taler-merchant-0.13.0.tar.gz"
+MD5SUM="bf768c4ff26660fc7e3d23adaabe99dd"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="gnunet taler-exchange"