summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-07-03 20:19:22 +0000
committer Eric Hameleers <alien@slackware.com>2023-07-03 22:58:10 +0200
commitb115c47a0d84f2a452b07378718c2bbd05cee40b (patch)
tree7b2046a22ae5a282782b67adfb0bf7238b760b7e /source
parentb79e734e0991c0a16d6488d6514ce02273632d04 (diff)
downloadcurrent-b115c47a0d84f2a452b07378718c2bbd05cee40b.tar.gz
current-b115c47a0d84f2a452b07378718c2bbd05cee40b.tar.xz
Mon Jul 3 20:19:22 UTC 202320230703201922
a/hwdata-0.372-noarch-1.txz: Upgraded. ap/vim-9.0.1672-x86_64-1.txz: Upgraded. Patched (should be merged upstream soon) to build against perl-5.38.0. d/perl-5.38.0-x86_64-1.txz: Upgraded. Upgraded: IO-Socket-SSL-2.083, URI-5.19. d/subversion-1.14.2-x86_64-5.txz: Rebuilt. Recompiled against perl-5.38.0. l/imagemagick-7.1.1_12-x86_64-2.txz: Rebuilt. Recompiled against perl-5.38.0. l/libnss_nis-3.2-x86_64-1.txz: Upgraded. l/libqalculate-4.7.0-x86_64-1.txz: Upgraded. n/epic5-2.1.12-x86_64-5.txz: Rebuilt. Recompiled against perl-5.38.0. n/irssi-1.4.4-x86_64-2.txz: Rebuilt. Recompiled against perl-5.38.0. n/net-snmp-5.9.3-x86_64-4.txz: Rebuilt. Recompiled against perl-5.38.0. n/ntp-4.2.8p17-x86_64-3.txz: Rebuilt. Recompiled against perl-5.38.0. n/openldap-2.6.4-x86_64-4.txz: Rebuilt. Recompiled against perl-5.38.0. x/wayland-protocols-1.32-noarch-1.txz: Upgraded. xap/hexchat-2.16.1-x86_64-4.txz: Rebuilt. Recompiled against perl-5.38.0. xap/rxvt-unicode-9.26-x86_64-6.txz: Rebuilt. Recompiled against perl-5.38.0. xap/vim-gvim-9.0.1672-x86_64-1.txz: Upgraded. Patched (should be merged upstream soon) to build against perl-5.38.0.
Diffstat (limited to 'source')
-rw-r--r--source/ap/vim/12575.patch239
-rwxr-xr-xsource/ap/vim/vim-gvim.SlackBuild3
-rwxr-xr-xsource/ap/vim/vim.SlackBuild3
-rwxr-xr-xsource/d/perl/perl.SlackBuild6
-rwxr-xr-xsource/d/subversion/subversion.SlackBuild2
-rwxr-xr-xsource/l/imagemagick/imagemagick.SlackBuild2
-rwxr-xr-xsource/l/libnss_nis/libnss_nis.SlackBuild2
-rwxr-xr-xsource/n/epic5/epic5.SlackBuild2
-rwxr-xr-xsource/n/irssi/irssi.SlackBuild2
-rwxr-xr-xsource/n/net-snmp/net-snmp.SlackBuild2
-rwxr-xr-xsource/n/ntp/ntp.SlackBuild2
-rwxr-xr-xsource/n/openldap/openldap.SlackBuild2
-rw-r--r--source/x/wayland-protocols/wayland-protocols.url2
-rwxr-xr-xsource/xap/hexchat/hexchat.SlackBuild2
-rwxr-xr-xsource/xap/rxvt-unicode/rxvt-unicode.SlackBuild2
15 files changed, 259 insertions, 14 deletions
diff --git a/source/ap/vim/12575.patch b/source/ap/vim/12575.patch
new file mode 100644
index 000000000..46f6000b4
--- /dev/null
+++ b/source/ap/vim/12575.patch
@@ -0,0 +1,239 @@
+From 51230c2eeb53a752b652a727c041dc82b0e95ac8 Mon Sep 17 00:00:00 2001
+From: Philip H <47042125+pheiduck@users.noreply.github.com>
+Date: Thu, 22 Jun 2023 08:55:47 +0200
+Subject: [PATCH 1/9] if_perl.xs: define version for a workaround
+
+---
+ src/if_perl.xs | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/if_perl.xs b/src/if_perl.xs
+index c69ed9ef1fb9..a86fda4d6c0f 100644
+--- a/src/if_perl.xs
++++ b/src/if_perl.xs
+@@ -40,7 +40,7 @@
+ /* Work around for perl-5.18.
+ * Don't include "perl\lib\CORE\inline.h" for now,
+ * include it after Perl_sv_free2 is defined. */
+-#ifdef DYNAMIC_PERL
++#if (PERL_REVISION == 5) && (PERL_VERSION == 18)
+ # define PERL_NO_INLINE_FUNCTIONS
+ #endif
+
+
+From c363deb7bf404c5c3ea8f4cb41ab8234b3e0626b Mon Sep 17 00:00:00 2001
+From: Philip H <47042125+pheiduck@users.noreply.github.com>
+Date: Thu, 22 Jun 2023 09:49:54 +0200
+Subject: [PATCH 2/9] fixup: more build errors with Perl 5.37.x
+
+---
+ src/if_perl.xs | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/src/if_perl.xs b/src/if_perl.xs
+index a86fda4d6c0f..7200e8a0b362 100644
+--- a/src/if_perl.xs
++++ b/src/if_perl.xs
+@@ -56,6 +56,7 @@
+ #ifdef __GNUC__
+ # pragma GCC diagnostic push
+ # pragma GCC diagnostic ignored "-Wunused-variable"
++# pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
+ #endif
+
+ #include <EXTERN.h>
+@@ -710,7 +711,7 @@ S_POPMARK(pTHX)
+ # endif
+
+ /* perl-5.34 needs Perl_SvTRUE_common; used in SvTRUE_nomg_NN */
+-# if (PERL_REVISION == 5) && (PERL_VERSION >= 34)
++# if (PERL_REVISION == 5) && (PERL_VERSION == 34)
+ PERL_STATIC_INLINE bool
+ Perl_SvTRUE_common(pTHX_ SV * sv, const bool sv_2bool_is_fallback)
+ {
+@@ -737,7 +738,7 @@ Perl_SvTRUE_common(pTHX_ SV * sv, const bool sv_2bool_is_fallback)
+ # endif
+
+ /* perl-5.32 needs Perl_SvTRUE */
+-# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
++# if (PERL_REVISION == 5) && (PERL_VERSION == 32)
+ PERL_STATIC_INLINE bool
+ Perl_SvTRUE(pTHX_ SV *sv) {
+ if (!LIKELY(sv))
+
+From e8329c517704e3bb5cc8c4c5d4907f710a45a897 Mon Sep 17 00:00:00 2001
+From: Philip H <47042125+pheiduck@users.noreply.github.com>
+Date: Thu, 22 Jun 2023 10:14:00 +0200
+Subject: [PATCH 3/9] CI: use latest Perl provided by homebrew
+
+---
+ .github/workflows/ci.yml | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
+index 4e6f23ba80c1..cdef7127c1e5 100644
+--- a/.github/workflows/ci.yml
++++ b/.github/workflows/ci.yml
+@@ -275,7 +275,6 @@ jobs:
+ run: |
+ brew install lua
+ echo "LUA_PREFIX=/usr/local" >> $GITHUB_ENV
+- brew uninstall perl
+
+ - name: Set up environment
+ run: |
+
+From 59a5820047bf2ea98caf28337d8496914dfe1ece Mon Sep 17 00:00:00 2001
+From: Philip H <47042125+pheiduck@users.noreply.github.com>
+Date: Thu, 22 Jun 2023 10:20:30 +0200
+Subject: [PATCH 4/9] use --enable-perlinterp=dynamic
+
+It's needed on newer Perl Versions, static not working
+---
+ .github/workflows/ci.yml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
+index cdef7127c1e5..a8e4afeba6dc 100644
+--- a/.github/workflows/ci.yml
++++ b/.github/workflows/ci.yml
+@@ -288,7 +288,7 @@ jobs:
+ normal)
+ ;;
+ huge)
+- echo "CONFOPT=--enable-perlinterp --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
++ echo "CONFOPT=--enable-perlinterp=dynamic --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
+ ;;
+ esac
+ ) >> $GITHUB_ENV
+
+From 6db6bed75f48c016d0346edf90ac539a57d5cc5c Mon Sep 17 00:00:00 2001
+From: Philip H <47042125+pheiduck@users.noreply.github.com>
+Date: Thu, 22 Jun 2023 10:30:03 +0200
+Subject: [PATCH 5/9] avoid "-Werror" and "-Wshadow" on macOS
+
+---
+ src/if_perl.xs | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/if_perl.xs b/src/if_perl.xs
+index 7200e8a0b362..6ed41e9d797b 100644
+--- a/src/if_perl.xs
++++ b/src/if_perl.xs
+@@ -57,6 +57,8 @@
+ # pragma GCC diagnostic push
+ # pragma GCC diagnostic ignored "-Wunused-variable"
+ # pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
++# pragma GCC diagnostic ignored "-Werror"
++# pragma GCC diagnostic ignored "-Wshadow"
+ #endif
+
+ #include <EXTERN.h>
+
+From c76e323263a9b5c7ca807c18bf026d2ca2af81aa Mon Sep 17 00:00:00 2001
+From: Philip H <47042125+pheiduck@users.noreply.github.com>
+Date: Thu, 22 Jun 2023 10:36:01 +0200
+Subject: [PATCH 6/9] Remove unknown "pragma GCC diagnostic ignored"
+
+---
+ src/if_perl.xs | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/src/if_perl.xs b/src/if_perl.xs
+index 6ed41e9d797b..57ea34aaf7cd 100644
+--- a/src/if_perl.xs
++++ b/src/if_perl.xs
+@@ -57,7 +57,6 @@
+ # pragma GCC diagnostic push
+ # pragma GCC diagnostic ignored "-Wunused-variable"
+ # pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
+-# pragma GCC diagnostic ignored "-Werror"
+ # pragma GCC diagnostic ignored "-Wshadow"
+ #endif
+
+
+From 9551bbfe3c1cdfad115c00a6e35585a2684e328e Mon Sep 17 00:00:00 2001
+From: Philip H <47042125+pheiduck@users.noreply.github.com>
+Date: Thu, 22 Jun 2023 10:42:29 +0200
+Subject: [PATCH 7/9] use --enable-perlinterp again
+
+should work now
+---
+ .github/workflows/ci.yml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
+index a8e4afeba6dc..cdef7127c1e5 100644
+--- a/.github/workflows/ci.yml
++++ b/.github/workflows/ci.yml
+@@ -288,7 +288,7 @@ jobs:
+ normal)
+ ;;
+ huge)
+- echo "CONFOPT=--enable-perlinterp=dynamic --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
++ echo "CONFOPT=--enable-perlinterp --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
+ ;;
+ esac
+ ) >> $GITHUB_ENV
+
+From 6abf8cdab0bf03ea05cec19d538d4387d730a933 Mon Sep 17 00:00:00 2001
+From: Philip H <47042125+pheiduck@users.noreply.github.com>
+Date: Fri, 23 Jun 2023 08:22:23 +0000
+Subject: [PATCH 8/9] fixup: move to right place PERL_CFLAGS; workaround for
+ perl-5.18 and later.
+
+---
+ ci/config.mk.sed | 2 +-
+ src/if_perl.xs | 4 +---
+ 2 files changed, 2 insertions(+), 4 deletions(-)
+
+diff --git a/ci/config.mk.sed b/ci/config.mk.sed
+index 51e7ec903d99..d27a03bee7c5 100644
+--- a/ci/config.mk.sed
++++ b/ci/config.mk.sed
+@@ -1,3 +1,3 @@
+ /^CFLAGS[[:blank:]]*=/s/$/ -Wall -Wextra -Wshadow -Werror/
+-/^PERL_CFLAGS_EXTRA[[:blank:]]*=/s/$/ -Wno-error=unused-function/
++/^PERL_CFLAGS_EXTRA[[:blank:]]*=/s/$/ -Wno-error=unused-function -Wincompatible-pointer-types -Wshadow/
+ /^RUBY_CFLAGS_EXTRA[[:blank:]]*=/s/$/ -Wno-error=unused-parameter/
+diff --git a/src/if_perl.xs b/src/if_perl.xs
+index 57ea34aaf7cd..804531a2adb3 100644
+--- a/src/if_perl.xs
++++ b/src/if_perl.xs
+@@ -40,7 +40,7 @@
+ /* Work around for perl-5.18.
+ * Don't include "perl\lib\CORE\inline.h" for now,
+ * include it after Perl_sv_free2 is defined. */
+-#if (PERL_REVISION == 5) && (PERL_VERSION == 18)
++#if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
+ # define PERL_NO_INLINE_FUNCTIONS
+ #endif
+
+@@ -56,8 +56,6 @@
+ #ifdef __GNUC__
+ # pragma GCC diagnostic push
+ # pragma GCC diagnostic ignored "-Wunused-variable"
+-# pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
+-# pragma GCC diagnostic ignored "-Wshadow"
+ #endif
+
+ #include <EXTERN.h>
+
+From 9e9e45a9cb8245d06add5bfa3179821e8c8a0c00 Mon Sep 17 00:00:00 2001
+From: Philip H <47042125+pheiduck@users.noreply.github.com>
+Date: Fri, 23 Jun 2023 10:28:33 +0200
+Subject: [PATCH 9/9] config.mk.sed: use -Wno-shadow
+
+---
+ ci/config.mk.sed | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/ci/config.mk.sed b/ci/config.mk.sed
+index d27a03bee7c5..f672edd9e438 100644
+--- a/ci/config.mk.sed
++++ b/ci/config.mk.sed
+@@ -1,3 +1,3 @@
+ /^CFLAGS[[:blank:]]*=/s/$/ -Wall -Wextra -Wshadow -Werror/
+-/^PERL_CFLAGS_EXTRA[[:blank:]]*=/s/$/ -Wno-error=unused-function -Wincompatible-pointer-types -Wshadow/
++/^PERL_CFLAGS_EXTRA[[:blank:]]*=/s/$/ -Wno-error=unused-function -Wno-shadow/
+ /^RUBY_CFLAGS_EXTRA[[:blank:]]*=/s/$/ -Wno-error=unused-parameter/
diff --git a/source/ap/vim/vim-gvim.SlackBuild b/source/ap/vim/vim-gvim.SlackBuild
index 0c9462b41..9db541193 100755
--- a/source/ap/vim/vim-gvim.SlackBuild
+++ b/source/ap/vim/vim-gvim.SlackBuild
@@ -111,6 +111,9 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \+
+# Patch for perl-5.38.0:
+cat $CWD/12575.patch | patch -p1 --verbose || exit 1
+
config_vim --with-x --enable-gui=gtk3 || exit 1
make $NUMJOBS || make || exit 1
make install DESTDIR=$PKG || exit 1
diff --git a/source/ap/vim/vim.SlackBuild b/source/ap/vim/vim.SlackBuild
index 580b44a24..28efb9dbd 100755
--- a/source/ap/vim/vim.SlackBuild
+++ b/source/ap/vim/vim.SlackBuild
@@ -152,6 +152,9 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \+
+# Patch for perl-5.38.0:
+cat $CWD/12575.patch | patch -p1 --verbose || exit 1
+
config_vim --without-x --disable-gui || exit 1
make $NUMJOBS || make || exit 1
make install DESTDIR=$PKG || exit 1
diff --git a/source/d/perl/perl.SlackBuild b/source/d/perl/perl.SlackBuild
index 8f55fb933..d60e20647 100755
--- a/source/d/perl/perl.SlackBuild
+++ b/source/d/perl/perl.SlackBuild
@@ -26,7 +26,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=perl
-VERSION=5.36.1
+VERSION=5.38.0
BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
@@ -68,7 +68,7 @@ GETTEXT=1.07
# https://metacpan.org/release/TermReadKey
TERMREADKEY=2.38
# https://metacpan.org/release/URI
-URI=5.17
+URI=5.19
# https://metacpan.org/release/XML-Parser
XMLPARSER=2.46
# https://metacpan.org/release/XML-Simple
@@ -78,7 +78,7 @@ AUTHENSASL=2.16
# https://metacpan.org/release/MIME-Base64
MIMEBASE64=3.16
# https://metacpan.org/release/IO-Socket-SSL
-IOSOCKETSSL=2.081
+IOSOCKETSSL=2.083
# https://metacpan.org/release/Net-SSLeay
NETSSLEAY=1.92
# https://metacpan.org/release/libnet
diff --git a/source/d/subversion/subversion.SlackBuild b/source/d/subversion/subversion.SlackBuild
index 8725ddbaa..a297f08b8 100755
--- a/source/d/subversion/subversion.SlackBuild
+++ b/source/d/subversion/subversion.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=subversion
VERSION=${VERSION:-$(echo subversion-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-4}
+BUILD=${BUILD:-5}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
diff --git a/source/l/imagemagick/imagemagick.SlackBuild b/source/l/imagemagick/imagemagick.SlackBuild
index 21e77f538..254d9c7ea 100755
--- a/source/l/imagemagick/imagemagick.SlackBuild
+++ b/source/l/imagemagick/imagemagick.SlackBuild
@@ -23,7 +23,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=imagemagick
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
# NOTE: This is to cope with ImageMagick version numbers such as 5.4.7-4,
# which occur fairly often (but not always). If these numbers are all the same,
diff --git a/source/l/libnss_nis/libnss_nis.SlackBuild b/source/l/libnss_nis/libnss_nis.SlackBuild
index d64e85ee3..bc5e9862e 100755
--- a/source/l/libnss_nis/libnss_nis.SlackBuild
+++ b/source/l/libnss_nis/libnss_nis.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=libnss_nis
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-4}
+BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
diff --git a/source/n/epic5/epic5.SlackBuild b/source/n/epic5/epic5.SlackBuild
index 64256c6fa..a737086e0 100755
--- a/source/n/epic5/epic5.SlackBuild
+++ b/source/n/epic5/epic5.SlackBuild
@@ -26,7 +26,7 @@ PKGNAM=epic5
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
EPICVER=5
HELPFILE=current
-BUILD=${BUILD:-4}
+BUILD=${BUILD:-5}
## Default to no Ruby support, since it seems that ruby-2.7.0 is not compatible.
## Patches to fix this are welcome, otherwise we'll keep an eye on upstream.
diff --git a/source/n/irssi/irssi.SlackBuild b/source/n/irssi/irssi.SlackBuild
index db34640da..4437ed256 100755
--- a/source/n/irssi/irssi.SlackBuild
+++ b/source/n/irssi/irssi.SlackBuild
@@ -28,7 +28,7 @@ PKG=$TMP/package-irssi
VERSION=${VERSION:-$(echo irssi-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
DIRCD=${VERSION}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
diff --git a/source/n/net-snmp/net-snmp.SlackBuild b/source/n/net-snmp/net-snmp.SlackBuild
index 5ba2de270..55e7147eb 100755
--- a/source/n/net-snmp/net-snmp.SlackBuild
+++ b/source/n/net-snmp/net-snmp.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=net-snmp
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-3}
+BUILD=${BUILD:-4}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
diff --git a/source/n/ntp/ntp.SlackBuild b/source/n/ntp/ntp.SlackBuild
index 1383d7df6..a340bf508 100755
--- a/source/n/ntp/ntp.SlackBuild
+++ b/source/n/ntp/ntp.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=ntp
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-3}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
diff --git a/source/n/openldap/openldap.SlackBuild b/source/n/openldap/openldap.SlackBuild
index e16cd1fab..e476e4e21 100755
--- a/source/n/openldap/openldap.SlackBuild
+++ b/source/n/openldap/openldap.SlackBuild
@@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=openldap
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-3}
+BUILD=${BUILD:-4}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
diff --git a/source/x/wayland-protocols/wayland-protocols.url b/source/x/wayland-protocols/wayland-protocols.url
index 12a0ebba3..bc2351cac 100644
--- a/source/x/wayland-protocols/wayland-protocols.url
+++ b/source/x/wayland-protocols/wayland-protocols.url
@@ -1,2 +1,2 @@
https://wayland.freedesktop.org/releases.html
-https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/1.31/downloads/wayland-protocols-1.31.tar.xz
+https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/1.32/downloads/wayland-protocols-1.32.tar.xz
diff --git a/source/xap/hexchat/hexchat.SlackBuild b/source/xap/hexchat/hexchat.SlackBuild
index 0450388c7..eedc918f5 100755
--- a/source/xap/hexchat/hexchat.SlackBuild
+++ b/source/xap/hexchat/hexchat.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=hexchat
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-3}
+BUILD=${BUILD:-4}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
diff --git a/source/xap/rxvt-unicode/rxvt-unicode.SlackBuild b/source/xap/rxvt-unicode/rxvt-unicode.SlackBuild
index 7cf8a4948..f25189882 100755
--- a/source/xap/rxvt-unicode/rxvt-unicode.SlackBuild
+++ b/source/xap/rxvt-unicode/rxvt-unicode.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=rxvt-unicode
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-5}
+BUILD=${BUILD:-6}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then