View | Details | Raw Unified | Return to bug 256827
Collapse All | Expand All

(-)databases/mariadb103-server/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# Created by: Bernard Spil <brnrd@FreeBSD.org>
1
# Created by: Bernard Spil <brnrd@FreeBSD.org>
2
2
3
PORTNAME?=	mariadb
3
PORTNAME?=	mariadb
4
PORTVERSION=	10.3.29
4
PORTVERSION=	10.3.30
5
PORTREVISION?=	0
5
PORTREVISION?=	0
6
CATEGORIES=	databases
6
CATEGORIES=	databases
7
MASTER_SITES=	http://mirrors.supportex.net/${SITESDIR}/ \
7
MASTER_SITES=	http://mirrors.supportex.net/${SITESDIR}/ \
(-)databases/mariadb103-server/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1620455361
1
TIMESTAMP = 1624605956
2
SHA256 (mariadb-10.3.29.tar.gz) = 304a9e94c50636b591ac7cbfe459cb341d345c4bd0ef5e45fb9a692268e6db38
2
SHA256 (mariadb-10.3.30.tar.gz) = bd8735c65bdb7ebcd5d779fb9d3de3f2fcd319ad6482278d73dfe7301ad4ae1b
3
SIZE (mariadb-10.3.29.tar.gz) = 73261682
3
SIZE (mariadb-10.3.30.tar.gz) = 73266479
(-)databases/mariadb103-server/files/patch-scripts_wsrep__sst__mariabackup.sh (-10 / +10 lines)
Lines 1-11 Link Here
1
--- scripts/wsrep_sst_mariabackup.sh.orig	2019-12-11 19:29:57 UTC
1
--- scripts/wsrep_sst_mariabackup.sh.orig	2021-06-09 14:23:11.000000000 +0200
2
+++ scripts/wsrep_sst_mariabackup.sh
2
+++ scripts/wsrep_sst_mariabackup.sh
3
@@ -605,7 +605,7 @@ recv_joiner()
3
@@ -696,7 +696,7 @@
4
     set +e
4
     local ltcmd="$tcmd"
5
 
5
     if [ $tmt -gt 0 ]; then
6
     if [[ $tmt -gt 0 ]] && command -v timeout >/dev/null;then
6
         if [ -n "$(command -v timeout)" ]; then
7
-        if timeout --help | grep -q -- '-k';then 
7
-            if timeout --help | grep -qw -- '-k'; then
8
+        if timeout --help 2>&1 | grep -q -- '-k';then 
8
+            if timeout --help 2>&1 | grep -qw -- '-k'; then
9
             ltcmd="timeout -k $(( tmt+10 )) $tmt $tcmd"
9
                 ltcmd="timeout -k $(( tmt+10 )) $tmt $tcmd"
10
         else 
10
             else
11
             ltcmd="timeout -s9 $tmt $tcmd"
11
                 ltcmd="timeout -s9 $tmt $tcmd"

Return to bug 256827