summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-08-29 18:55:59 +0000
committer Eric Hameleers <alien@slackware.com>2023-08-29 21:29:22 +0200
commit38c180f03785251a6371717428ee78f64ae64d50 (patch)
tree4e9b0d2216b0fd8ff7c45bb20de224a2cf6e56bd /source
parent568c271aef987a6cc0bdd7e8d61e9b268d96ffa5 (diff)
downloadcurrent-38c180f03785251a6371717428ee78f64ae64d50.tar.gz
current-38c180f03785251a6371717428ee78f64ae64d50.tar.xz
Tue Aug 29 18:55:59 UTC 202320230829185559
a/coreutils-9.4-x86_64-1.txz: Upgraded. d/cbindgen-0.25.0-x86_64-1.txz: Upgraded. l/ffmpeg-5.1.3-x86_64-2.txz: Rebuilt. Patched and recompiled against vulkan-sdk-1.3.250.0. Thanks to lucabon. l/pipewire-0.3.79-x86_64-1.txz: Upgraded. xfce/xfce4-whiskermenu-plugin-2.8.0-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source')
-rwxr-xr-xsource/a/coreutils/coreutils.SlackBuild2
-rw-r--r--source/a/coreutils/coreutils.wc.noavx2.diff27
-rwxr-xr-xsource/d/cbindgen/fetch-sources.sh2
-rwxr-xr-xsource/l/ffmpeg/ffmpeg.SlackBuild5
-rw-r--r--source/l/ffmpeg/ffmpeg.vulkan.diff15
-rwxr-xr-xsource/xfce/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.SlackBuild1
6 files changed, 32 insertions, 20 deletions
diff --git a/source/a/coreutils/coreutils.SlackBuild b/source/a/coreutils/coreutils.SlackBuild
index 16557086c..3d655f996 100755
--- a/source/a/coreutils/coreutils.SlackBuild
+++ b/source/a/coreutils/coreutils.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=coreutils
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | cut -d - -f 2 | rev | cut -f 3- -d . | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
diff --git a/source/a/coreutils/coreutils.wc.noavx2.diff b/source/a/coreutils/coreutils.wc.noavx2.diff
index 605757992..ccae18bb8 100644
--- a/source/a/coreutils/coreutils.wc.noavx2.diff
+++ b/source/a/coreutils/coreutils.wc.noavx2.diff
@@ -1,18 +1,11 @@
---- ./src/wc.c.orig 2023-04-10 05:14:08.000000000 -0500
-+++ ./src/wc.c 2023-08-26 14:22:10.058092456 -0500
-@@ -174,14 +174,7 @@
-
- if (avx_enabled)
- {
-- eax = ebx = ecx = edx = 0;
-- if (! __get_cpuid_count (7, 0, &eax, &ebx, &ecx, &edx))
-- getcpuid_ok = false;
-- else
-- {
-- if (! (ebx & bit_AVX2))
-- avx_enabled = false; /* Hardware doesn't support it. */
-- }
-+ avx_enabled = false; /* Never use AVX2. */
- }
-
+--- ./src/wc.c.orig 2023-08-29 06:39:27.000000000 -0500
++++ ./src/wc.c 2023-08-29 13:24:53.642035314 -0500
+@@ -147,7 +147,7 @@
+ static bool
+ avx2_supported (void)
+ {
+- bool avx_enabled = 0 < __builtin_cpu_supports ("avx2");
++ bool avx_enabled = 0;
+ if (debug)
+ error (0, 0, (avx_enabled
diff --git a/source/d/cbindgen/fetch-sources.sh b/source/d/cbindgen/fetch-sources.sh
index af3a9576b..3678e60ed 100755
--- a/source/d/cbindgen/fetch-sources.sh
+++ b/source/d/cbindgen/fetch-sources.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-VERSION=${VERSION:-0.24.6}
+VERSION=${VERSION:-0.25.0}
rm -rf cbindgen-*.tar.?z cargo-cbindgen*
diff --git a/source/l/ffmpeg/ffmpeg.SlackBuild b/source/l/ffmpeg/ffmpeg.SlackBuild
index d5a01a20c..e85d9982f 100755
--- a/source/l/ffmpeg/ffmpeg.SlackBuild
+++ b/source/l/ffmpeg/ffmpeg.SlackBuild
@@ -30,7 +30,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=ffmpeg
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -188,6 +188,9 @@ zcat $CWD/add-av_stream_get_first_dts-for-chromium.patch.gz | patch -p1 --verbos
# Upstream patch to build with binutils-2.41:
cat $CWD/effadce6c756247ea8bae32dc13bb3e6f464f0eb.patch | patch -p1 --verbose || exit 1
+# Build against recent Vulkan:
+zcat $CWD/ffmpeg.vulkan.diff.gz | patch -p1 --verbose || exit 1
+
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
diff --git a/source/l/ffmpeg/ffmpeg.vulkan.diff b/source/l/ffmpeg/ffmpeg.vulkan.diff
new file mode 100644
index 000000000..afd963664
--- /dev/null
+++ b/source/l/ffmpeg/ffmpeg.vulkan.diff
@@ -0,0 +1,15 @@
+--- ./configure.orig 2023-03-26 09:21:00.000000000 -0500
++++ ./configure 2023-08-29 13:13:08.176019532 -0500
+@@ -6551,10 +6551,10 @@
+ enabled libfreetype && require_pkg_config libfreetype freetype2 "ft2build.h FT_FREETYPE_H" FT_Init_FreeType
+ enabled libfribidi && require_pkg_config libfribidi fribidi fribidi.h fribidi_version_info
+ enabled libglslang && { check_lib spirv_compiler glslang/Include/glslang_c_interface.h glslang_initialize_process \
+- -lglslang -lMachineIndependent -lOSDependent -lHLSL -lOGLCompiler -lGenericCodeGen \
++ -lglslang -lMachineIndependent -lHLSL -lGenericCodeGen \
+ -lSPVRemapper -lSPIRV -lSPIRV-Tools-opt -lSPIRV-Tools -lpthread -lstdc++ -lm ||
+ require spirv_compiler glslang/Include/glslang_c_interface.h glslang_initialize_process \
+- -lglslang -lOSDependent -lHLSL -lOGLCompiler \
++ -lglslang -lHLSL \
+ -lSPVRemapper -lSPIRV -lSPIRV-Tools-opt -lSPIRV-Tools -lpthread -lstdc++ -lm; }
+ enabled libgme && { check_pkg_config libgme libgme gme/gme.h gme_new_emu ||
+ require libgme gme/gme.h gme_new_emu -lgme -lstdc++; }
diff --git a/source/xfce/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.SlackBuild b/source/xfce/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.SlackBuild
index 3f24a8ccc..be72b80e3 100755
--- a/source/xfce/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.SlackBuild
+++ b/source/xfce/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.SlackBuild
@@ -84,6 +84,7 @@ cd build
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib${LIBDIRSUFFIX} \
-DCMAKE_INSTALL_MANDIR=/usr/man \
+ -DENABLE_GTK_LAYER_SHELL=OFF \
-DCMAKE_BUILD_TYPE=Release ..
make $NUMJOBS || make || exit 1
make install DESTDIR=$PKG || exit 1