summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rwxr-xr-xsource/a/file/file.SlackBuild6
-rw-r--r--source/a/file/upstream.mute-debug-warning.patch27
-rwxr-xr-xsource/l/mozilla-nss/mozilla-nss.SlackBuild2
-rw-r--r--source/l/pipewire/193384b26aba3917d086ac3f009aa2cab9d197d2.patch26
-rwxr-xr-xsource/l/pipewire/pipewire.SlackBuild4
5 files changed, 3 insertions, 62 deletions
diff --git a/source/a/file/file.SlackBuild b/source/a/file/file.SlackBuild
index d42a44f6a..0a4d05e03 100755
--- a/source/a/file/file.SlackBuild
+++ b/source/a/file/file.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=file
VERSION=${VERSION:-$(echo file-*.tar.?z* | cut -d - -f 2 | rev | cut -f 3- -d . | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
@@ -100,10 +100,6 @@ zcat $CWD/file.crdaregbin.magic.gz >> magic/Magdir/crdaregbin
# Add some regression fixes from upstream:
# (none currently)
-# Quell this debug message: mozes@kitt $ file /lib/firmware/lgs8g75.fw
-#lhs/off overflow 4294967295 0
-#/lib/firmware/lgs8g75.fw: data
-xzcat $CWD/upstream.mute-debug-warning.patch.xz | patch --verbose -p1 || exit 1
# This is needed after the default data directory patch above:
autoreconf -vif || exit 1
diff --git a/source/a/file/upstream.mute-debug-warning.patch b/source/a/file/upstream.mute-debug-warning.patch
deleted file mode 100644
index 74ba3f1fd..000000000
--- a/source/a/file/upstream.mute-debug-warning.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-http://deb.debian.org/debian/pool/main/f/file/file_5.44-3.debian.tar.xz
-
-Subject: Disable debug messages
-Author: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
-Date: 2022-12-20
-Forwarded: https://mailman.astron.com/pipermail/file/2022-December/001018.html
-
---- a/src/softmagic.c
-+++ b/src/softmagic.c
-@@ -1461,7 +1461,7 @@
- // On purpose not INTMAX_MAX
- if (lhs >= UINT_MAX || lhs <= INT_MIN ||
- off >= UINT_MAX || off <= INT_MIN) {
-- fprintf(stderr, "lhs/off overflow %jd %jd\n", lhs, off);
-+/* fprintf(stderr, "lhs/off overflow %jd %jd\n", lhs, off); */
- return 1;
- }
-
-@@ -1497,7 +1497,7 @@
- if (m->in_op & FILE_OPINVERSE)
- offset = ~offset;
- if (offset >= UINT_MAX) {
-- fprintf(stderr, "offset overflow %jd\n", offset);
-+/* fprintf(stderr, "offset overflow %jd\n", offset); */
- return 1;
- }
- *rv = CAST(uint32_t, offset);
diff --git a/source/l/mozilla-nss/mozilla-nss.SlackBuild b/source/l/mozilla-nss/mozilla-nss.SlackBuild
index 26cbab3b6..8a2727136 100755
--- a/source/l/mozilla-nss/mozilla-nss.SlackBuild
+++ b/source/l/mozilla-nss/mozilla-nss.SlackBuild
@@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=mozilla-nss
SRCNAM=nss
-VERSION=${VERSION:-3.91}
+VERSION=${VERSION:-3.92}
NSPR=${NSPR:-4.35}
BUILD=${BUILD:-1}
diff --git a/source/l/pipewire/193384b26aba3917d086ac3f009aa2cab9d197d2.patch b/source/l/pipewire/193384b26aba3917d086ac3f009aa2cab9d197d2.patch
deleted file mode 100644
index cff767889..000000000
--- a/source/l/pipewire/193384b26aba3917d086ac3f009aa2cab9d197d2.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 193384b26aba3917d086ac3f009aa2cab9d197d2 Mon Sep 17 00:00:00 2001
-From: "Tom A. Wagner" <tom.a.wagner@protonmail.com>
-Date: Mon, 24 Jul 2023 12:48:33 +0200
-Subject: [PATCH] pipewire: add missing stdbool.h include to version.h.in
-
-The header file only works when included in a file where stdbool.h was already included otherwise.
----
- src/pipewire/version.h.in | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/src/pipewire/version.h.in b/src/pipewire/version.h.in
-index 87fc0cfad..94c645b3a 100644
---- a/src/pipewire/version.h.in
-+++ b/src/pipewire/version.h.in
-@@ -11,6 +11,8 @@
- extern "C" {
- #endif
-
-+#include <stdbool.h>
-+
- /** Return the version of the header files. Keep in mind that this is
- a macro and not a function, so it is impossible to get the pointer of
- it. */
---
-GitLab
-
diff --git a/source/l/pipewire/pipewire.SlackBuild b/source/l/pipewire/pipewire.SlackBuild
index 5f60da985..08762cdb5 100755
--- a/source/l/pipewire/pipewire.SlackBuild
+++ b/source/l/pipewire/pipewire.SlackBuild
@@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=pipewire
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
@@ -92,8 +92,6 @@ find . \
# Add lua (with pipewire patches):
( cd subprojects ; tar xf $CWD/lua-5.4.4.tar.lz )
-cat $CWD/193384b26aba3917d086ac3f009aa2cab9d197d2.patch | patch -p1 --verbose || exit 1
-
# Configure, build, and install:
export CFLAGS="$SLKCFLAGS"
export CXXFLAGS="$SLKCFLAGS"