diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2024-02-13 19:19:24 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2024-02-13 21:00:01 +0100 |
commit | 8712cd5e26b89d3da1afc87615d64a902101faa3 (patch) | |
tree | 3f21def271764c5ccd337afa55e6c52c5be28a7e /source/l/wireplumber | |
parent | adcf8dd38215601024979abcee28b82997193788 (diff) | |
download | current-8712cd5e26b89d3da1afc87615d64a902101faa3.tar.gz current-8712cd5e26b89d3da1afc87615d64a902101faa3.tar.xz |
Tue Feb 13 19:19:24 UTC 202420240213191924
ap/tmux-3.4-x86_64-1.txz: Upgraded.
d/lua-5.4.6-x86_64-5.txz: Rebuilt.
Search paths under /usr/local in addition to /usr.
Thanks to Arch for the patch.
l/gst-plugins-bad-free-1.22.10-x86_64-1.txz: Upgraded.
l/gst-plugins-base-1.22.10-x86_64-1.txz: Upgraded.
l/gst-plugins-good-1.22.10-x86_64-1.txz: Upgraded.
l/gst-plugins-libav-1.22.10-x86_64-1.txz: Upgraded.
l/gstreamer-1.22.10-x86_64-1.txz: Upgraded.
l/wireplumber-0.4.17-x86_64-3.txz: Rebuilt.
Build against system lua.
n/bind-9.18.24-x86_64-1.txz: Upgraded.
This update fixes bugs and security issues:
Specific DNS answers could cause a denial-of-service condition due to DNS
validation taking a long time.
Restore DNS64 state when handling a serve-stale timeout.
Specific queries could trigger an assertion check with nxdomain-redirect
enabled.
Speed up parsing of DNS messages with many different names.
For more information, see:
https://kb.isc.org/docs/cve-2023-50387
https://www.cve.org/CVERecord?id=CVE-2023-50387
https://kb.isc.org/docs/cve-2023-5679
https://www.cve.org/CVERecord?id=CVE-2023-5679
https://kb.isc.org/docs/cve-2023-5517
https://www.cve.org/CVERecord?id=CVE-2023-5517
https://kb.isc.org/docs/cve-2023-4408
https://www.cve.org/CVERecord?id=CVE-2023-4408
(* Security fix *)
n/ipset-7.21-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/l/wireplumber')
-rwxr-xr-x | source/l/wireplumber/fetch-lua.sh | 51 | ||||
-rwxr-xr-x | source/l/wireplumber/wireplumber.SlackBuild | 6 |
2 files changed, 2 insertions, 55 deletions
diff --git a/source/l/wireplumber/fetch-lua.sh b/source/l/wireplumber/fetch-lua.sh deleted file mode 100755 index 5e621779e..000000000 --- a/source/l/wireplumber/fetch-lua.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh - -# Copyright 2023 Patrick J. Volkerding, Sebeka, Minnesota, USA -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -set -o errexit - -LUA_VERSION=5.4.4 - -# Clear download area: -rm -rf lua-* - -# Download: -lftpget https://www.lua.org/ftp/lua-${LUA_VERSION}.tar.gz - -# Extract: -tar xf lua-${LUA_VERSION}.tar.gz -rm lua-${LUA_VERSION}.tar.gz - -# Apply pipewire patch: -lftpget https://wrapdb.mesonbuild.com/v2/lua_${LUA_VERSION}-1/get_patch -mv get_patch lua-patch.zip -unzip lua-patch.zip -rm lua-patch.zip - -# Recompress: -tar cf lua-${LUA_VERSION}.tar lua-${LUA_VERSION} -plzip -9 lua-${LUA_VERSION}.tar -rm -r lua-${LUA_VERSION} - -echo -echo "lua source downloaded and patched." -echo - diff --git a/source/l/wireplumber/wireplumber.SlackBuild b/source/l/wireplumber/wireplumber.SlackBuild index 035b7781e..eb27d9d1a 100755 --- a/source/l/wireplumber/wireplumber.SlackBuild +++ b/source/l/wireplumber/wireplumber.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=wireplumber 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 @@ -86,9 +86,6 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \+ -# Add lua (with pipewire patches): -( cd subprojects ; tar xf $CWD/lua-5.4.4.tar.lz ) - # Configure, build, and install: export CFLAGS="$SLKCFLAGS" export CXXFLAGS="$SLKCFLAGS" @@ -106,6 +103,7 @@ cd meson-build --sysconfdir=/etc \ --localstatedir=/var \ --buildtype=release \ + -Dsystem-lua=true \ .. || exit 1 "${NINJA:=ninja}" $NUMJOBS || exit 1 DESTDIR=$PKG $NINJA install || exit 1 |