diff options
Diffstat (limited to 'multimedia')
29 files changed, 95 insertions, 122 deletions
diff --git a/multimedia/AviSynthPlus/AviSynthPlus.SlackBuild b/multimedia/AviSynthPlus/AviSynthPlus.SlackBuild index 08f6025268..e9a0539fbb 100644 --- a/multimedia/AviSynthPlus/AviSynthPlus.SlackBuild +++ b/multimedia/AviSynthPlus/AviSynthPlus.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for AviSynthPlus -# Copyright 2022-2024 Vijay Marcel +# Copyright 2022-2025 Vijay Marcel # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=AviSynthPlus -VERSION=${VERSION:-3.7.3} +VERSION=${VERSION:-3.7.5} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -77,8 +77,6 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -mkdir -pv $TMP/$PRGNAM-$VERSION/distrib/docs/english/source/_static - cmake -B build -S $TMP/$PRGNAM-$VERSION \ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ @@ -93,25 +91,19 @@ cmake -B build -S $TMP/$PRGNAM-$VERSION \ make -C build make -C build install DESTDIR=$PKG -make -C $TMP/$PRGNAM-$VERSION/distrib/docs/english html - -rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la +rm -vf $PKG/usr/lib${LIBDIRSUFFIX}/*.la find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded --remove-section=.comment --remove-section=.note 2> /dev/null || true find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true -cd $TMP/$PRGNAM-$VERSION/distrib/Examples; find . -type f -exec install -Dm644 "{}" "$PKG/usr/share/$PRGNAM-$VERSION/Examples/{}" \; - -cd ../.. - mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a README.md $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README.md $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $TMP/$PRGNAM-$VERSION/distrib/docs/english/source/avisynthdoc $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $TMP/$PRGNAM-$VERSION/distrib/Examples $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -cd $TMP/$PRGNAM-$VERSION/distrib/docs/english/build/html; for i in $(find . -type f); do install -Dm644 "${i}" "$PKG/usr/doc/$PRGNAM-$VERSION/${i}"; done - -cd ../../../../.. +find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 0644 {} \+ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc diff --git a/multimedia/AviSynthPlus/AviSynthPlus.info b/multimedia/AviSynthPlus/AviSynthPlus.info index 147630d0db..fb0b8c4545 100644 --- a/multimedia/AviSynthPlus/AviSynthPlus.info +++ b/multimedia/AviSynthPlus/AviSynthPlus.info @@ -1,10 +1,10 @@ PRGNAM="AviSynthPlus" -VERSION="3.7.3" +VERSION="3.7.5" HOMEPAGE="https://avs-plus.net" -DOWNLOAD="https://github.com/AviSynth/AviSynthPlus/archive/v3.7.3/AviSynthPlus-3.7.3.tar.gz" -MD5SUM="e18f562c225aa04792f318a2d3039418" +DOWNLOAD="https://github.com/AviSynth/AviSynthPlus/archive/v3.7.5/AviSynthPlus-3.7.5.tar.gz" +MD5SUM="ef61480836576a9d8db3530f7aec040e" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="DevIL Sphinx" +REQUIRES="DevIL soundtouch" MAINTAINER="Vijay Marcel" EMAIL="vijaymarcel@outlook.com" diff --git a/multimedia/beets/README b/multimedia/beets/README index 4a0b108c90..3e26d5347a 100644 --- a/multimedia/beets/README +++ b/multimedia/beets/README @@ -26,3 +26,8 @@ shockingly simple if you know a little Python. Optional dependencies (now included by default): Flask, gst-python, pyacoustid, pylast. + +NOTE: beets now requires python3-numpy. While numpy will build without + it I highly suggest installing OpenBLAS before building numpy. I + would add it to the REQUIRES but it will not be in the proper + order for numpy to build against OpenBLAS. diff --git a/multimedia/beets/beets.SlackBuild b/multimedia/beets/beets.SlackBuild index fc701e5293..eb5b0a7428 100644 --- a/multimedia/beets/beets.SlackBuild +++ b/multimedia/beets/beets.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for beets -# Copyright 2022-2024 fourtysixandtwo <fourtysixandtwo@sliderr.net> +# Copyright 2022-2025 fourtysixandtwo <fourtysixandtwo@sliderr.net> # Copyright 2014-2019 Dimitris Zlatanidis Orestiada, Greece # All rights reserved. # @@ -25,11 +25,15 @@ # 20221016 46and2: Added bash/zsh completions. # 20221103 46and2: Rebuilt for python3-mediafile and python3-confuse. +# 20250412 46and2: Stick with github tagged source for 2.2.0 as there +# are issues with pypi sdist. The extra and docs dirs are not +# included. +# 20250508 46and2: Back to pypi tarball as 2.3.0 has the fixes for the above. cd $(dirname $0) ; CWD=$(pwd) PRGNAM=beets -VERSION=${VERSION:-2.1.0} +VERSION=${VERSION:-2.3.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -69,21 +73,14 @@ find -L . \ python3 -m build --no-isolation python3 -m installer -d "$PKG" dist/*.whl -# temp build man pages as missing from source with 2.1.0 -# switch to github from pypi for now as well -# https://github.com/beetbox/beets/issues/5513 -cd docs -make man -cd .. - mkdir -p $PKG/usr/share/bash-completion/completions install -m644 $CWD/beet $PKG/usr/share/bash-completion/completions/ mkdir -p $PKG/usr/share/zsh/site-functions install -m644 extra/_beet $PKG/usr/share/zsh/site-functions/ -install -D -m644 docs/_build/man/beet.1 $PKG/usr/man/man1/beet.1 -install -D -m644 docs/_build/man/beetsconfig.5 $PKG/usr/man/man5/beetsconfig.5 +install -D -m644 man/beet.1 $PKG/usr/man/man1/beet.1 +install -D -m644 man/beetsconfig.5 $PKG/usr/man/man5/beetsconfig.5 find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done diff --git a/multimedia/beets/beets.info b/multimedia/beets/beets.info index de5761569f..0ace6320dc 100644 --- a/multimedia/beets/beets.info +++ b/multimedia/beets/beets.info @@ -1,10 +1,10 @@ PRGNAM="beets" -VERSION="2.1.0" +VERSION="2.3.1" HOMEPAGE="http://beets.radbox.org" -DOWNLOAD="https://github.com/beetbox/beets/archive/v2.1.0/beets-2.1.0.tar.gz" -MD5SUM="9552ab1e24b54f92d488c4c5df2f1174" +DOWNLOAD="https://files.pythonhosted.org/packages/source/b/beets/beets-2.3.1.tar.gz" +MD5SUM="eeb7cf868c36a90e9ca045252bb7faee" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="Sphinx munkres Unidecode musicbrainzngs jellyfish python3-confuse python3-mediafile python3-py7zr pylast pyacoustid Flask gst-python python3-platformdirs" +REQUIRES="Sphinx munkres Unidecode musicbrainzngs jellyfish python3-confuse python3-mediafile python3-py7zr pylast pyacoustid Flask gst-python python3-platformdirs python3-lap" MAINTAINER="fourtysixandtwo" EMAIL="fourtysixandtwo@sliderr.net" diff --git a/multimedia/inputstream.adaptive/inputstream.adaptive.SlackBuild b/multimedia/inputstream.adaptive/inputstream.adaptive.SlackBuild index 7a6946f634..88a2f05628 100644 --- a/multimedia/inputstream.adaptive/inputstream.adaptive.SlackBuild +++ b/multimedia/inputstream.adaptive/inputstream.adaptive.SlackBuild @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=inputstream.adaptive CODNAM=Omega -VERSION=${VERSION:-21.5.9} +VERSION=${VERSION:-21.5.14} BENTO4VER=${BENTO4VER:-1.6.0-641-3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} diff --git a/multimedia/inputstream.adaptive/inputstream.adaptive.info b/multimedia/inputstream.adaptive/inputstream.adaptive.info index bb835ed43c..e0908d2efc 100644 --- a/multimedia/inputstream.adaptive/inputstream.adaptive.info +++ b/multimedia/inputstream.adaptive/inputstream.adaptive.info @@ -1,9 +1,9 @@ PRGNAM="inputstream.adaptive" -VERSION="21.5.9" +VERSION="21.5.14" HOMEPAGE="https://github.com/xbmc/inputstream.adaptive/" -DOWNLOAD="https://github.com/xbmc/inputstream.adaptive/archive/21.5.9-Omega/inputstream.adaptive-21.5.9-Omega.tar.gz \ +DOWNLOAD="https://github.com/xbmc/inputstream.adaptive/archive/21.5.14-Omega/inputstream.adaptive-21.5.14-Omega.tar.gz \ https://github.com/xbmc/Bento4/archive/refs/tags/1.6.0-641-3-Omega/Bento4-1.6.0-641-3-Omega.tar.gz" -MD5SUM="dd1cdc2e791c3ec88dd3f96e61815370 \ +MD5SUM="59ad02efd67b776015ebf72de9cd418c \ 7cefb139db93ab2417635f003cd7a7b5" DOWNLOAD_x86_64="" MD5SUM_x86_64="" diff --git a/multimedia/lsdvd/1000-log-to-stderr.patch b/multimedia/lsdvd/1000-log-to-stderr.patch deleted file mode 100644 index f88890e0eb..0000000000 --- a/multimedia/lsdvd/1000-log-to-stderr.patch +++ /dev/null @@ -1,30 +0,0 @@ -Description: Adjust use of libdvdread to log to stderr not stdout, - to avoid generating invalid json, xml, etc when not supporting encrypted DVD. -Author: Petter Reinholdtsen <pere@hungry.com> -Origin: commit:ceb584ef8e8c84e77b01bc2aab5d9cb912f2837e -Forwarded: not-needed -Last-Update: 2024-01-02 ---- ---- a/lsdvd.c -+++ b/lsdvd.c -@@ -424,7 +424,19 @@ int main(int argc, char *argv[]) - return 1; - } - -- dvd = DVDOpen(dvd_device); -+ /* Replacement logger to send output to stderr, ensuring -+ stdout is always understandable as xml, json, perl, python, -+ etc. Without this, the 'Encrypted DVD support unavailable' -+ message can show up in the generated files. */ -+ void dvdlogger(void *, dvd_logger_level_t, -+ const char *fmt, va_list list) -+ { -+ fprintf(stderr, "libdvdread: "); -+ vfprintf(stderr, fmt, list); -+ fprintf(stderr, "\n"); -+ } -+ dvd_logger_cb logcb = { dvdlogger }; -+ dvd = DVDOpen2(NULL, &logcb, dvd_device); - if( !dvd ) { - fprintf( stderr, "Can't open disc %s!\n", dvd_device); - return 2; diff --git a/multimedia/lsdvd/lsdvd.SlackBuild b/multimedia/lsdvd/lsdvd.SlackBuild index d740b70bf2..e52ecfcd7b 100644 --- a/multimedia/lsdvd/lsdvd.SlackBuild +++ b/multimedia/lsdvd/lsdvd.SlackBuild @@ -6,6 +6,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20250618 bkw: update for 0.20. # 20250125 bkw: update for 0.19. # I have no idea where Debian got the 0.19 sources (they list the SF # project as homepage, and it only goes to 0.17), but the fixes in 0.19 @@ -16,7 +17,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=lsdvd -VERSION=${VERSION:-0.19} +VERSION=${VERSION:-0.20} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -64,8 +65,6 @@ chown -R root:root . find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} + -o \ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} + -patch -p1 < $CWD/1000-log-to-stderr.patch - CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ diff --git a/multimedia/lsdvd/lsdvd.info b/multimedia/lsdvd/lsdvd.info index 222e9c2382..c5d7c2a221 100644 --- a/multimedia/lsdvd/lsdvd.info +++ b/multimedia/lsdvd/lsdvd.info @@ -1,8 +1,8 @@ PRGNAM="lsdvd" -VERSION="0.19" +VERSION="0.20" HOMEPAGE="https://sourceforge.net/projects/lsdvd/" -DOWNLOAD="http://deb.debian.org/debian/pool/main/l/lsdvd/lsdvd_0.19.orig.tar.gz" -MD5SUM="2812e7c2924d27fe24b22cd3e1093b87" +DOWNLOAD="http://deb.debian.org/debian/pool/main/l/lsdvd/lsdvd_0.20.orig.tar.gz" +MD5SUM="9a7bf8f9eeea8d857c9fd3f09ab473dd" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" diff --git a/multimedia/mediainfo/mediainfo.SlackBuild b/multimedia/mediainfo/mediainfo.SlackBuild index 07dd1f58c4..4955a9b73e 100644 --- a/multimedia/mediainfo/mediainfo.SlackBuild +++ b/multimedia/mediainfo/mediainfo.SlackBuild @@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=mediainfo -VERSION=${VERSION:-25.03} +VERSION=${VERSION:-25.04} SRCNAM=MediaInfo BUILD=${BUILD:-1} TAG=${TAG:-_SBo} diff --git a/multimedia/mediainfo/mediainfo.info b/multimedia/mediainfo/mediainfo.info index d462bb46a4..54ed24ec08 100644 --- a/multimedia/mediainfo/mediainfo.info +++ b/multimedia/mediainfo/mediainfo.info @@ -1,8 +1,8 @@ PRGNAM="mediainfo" -VERSION="25.03" +VERSION="25.04" HOMEPAGE="https://mediaarea.net/MediaInfo/" -DOWNLOAD="https://github.com/MediaArea/MediaInfo/archive/v25.03/MediaInfo-25.03.tar.gz" -MD5SUM="52ae0f966ab13c997c60699fb967ae67" +DOWNLOAD="https://github.com/MediaArea/MediaInfo/archive/v25.04/MediaInfo-25.04.tar.gz" +MD5SUM="8d2057bc570905297d36686699552fb6" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="libmediainfo" diff --git a/multimedia/pipe-viewer/pipe-viewer.SlackBuild b/multimedia/pipe-viewer/pipe-viewer.SlackBuild index 979f379731..1b4c00a094 100644 --- a/multimedia/pipe-viewer/pipe-viewer.SlackBuild +++ b/multimedia/pipe-viewer/pipe-viewer.SlackBuild @@ -6,6 +6,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20250430 bkw: update for v0.5.6. # 20250326 bkw, BUILD=2: add 9e2b980.diff from upstream to fix "Bad Request". # 20250205 bkw: update for v0.5.4, add perl-io-uncompress-brotli dep. # 20240910 bkw: update for v0.5.3. @@ -25,8 +26,8 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=pipe-viewer -VERSION=${VERSION:-0.5.4} -BUILD=${BUILD:-2} +VERSION=${VERSION:-0.5.6} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -73,7 +74,7 @@ echo "=== GTK=$GTK BUILD_GTK=$BUILD_GTK GTKOPT=$GTKOPT" # 20250326 bkw: this commit fixes the recent issue that causes: # Request error: 400 Bad Request -patch -p1 < $CWD/9e2b980.diff +[ "$VERSION" = "0.5.4" ] && patch -p1 < $CWD/9e2b980.diff # Upstream used to support mplayer (in the original youtube-viewer, # before the straw-viewer and pipe-viewer forks), then dropped it. diff --git a/multimedia/pipe-viewer/pipe-viewer.info b/multimedia/pipe-viewer/pipe-viewer.info index 970f3056a6..77fe6bc11c 100644 --- a/multimedia/pipe-viewer/pipe-viewer.info +++ b/multimedia/pipe-viewer/pipe-viewer.info @@ -1,8 +1,8 @@ PRGNAM="pipe-viewer" -VERSION="0.5.4" +VERSION="0.5.6" HOMEPAGE="https://github.com/trizen/pipe-viewer/" -DOWNLOAD="https://github.com/trizen/pipe-viewer/archive/0.5.4/pipe-viewer-0.5.4.tar.gz" -MD5SUM="cb31536c57746d778f614f01a5d68463" +DOWNLOAD="https://github.com/trizen/pipe-viewer/archive/0.5.6/pipe-viewer-0.5.6.tar.gz" +MD5SUM="d24400b81614d2b9e219a7b6e3ba69a4" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="perl-data-dump perl-JSON perl-LWP-Protocol-https perl-Module-Build perl-Term-ReadLine-Gnu perl-io-uncompress-brotli" diff --git a/multimedia/plexmediaserver/plexmediaserver.SlackBuild b/multimedia/plexmediaserver/plexmediaserver.SlackBuild index 01edc96c52..697ed5969d 100644 --- a/multimedia/plexmediaserver/plexmediaserver.SlackBuild +++ b/multimedia/plexmediaserver/plexmediaserver.SlackBuild @@ -36,7 +36,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=plexmediaserver -VERSION=${VERSION:-1.41.5.9522_a96edc606} +VERSION=${VERSION:-1.41.8.9834_071366d65} PKG_VERSION=$(echo $VERSION | tr _ -) BUILD=${BUILD:-1} TAG=${TAG:-_SBo} diff --git a/multimedia/plexmediaserver/plexmediaserver.info b/multimedia/plexmediaserver/plexmediaserver.info index 0e0b3f7029..c43feace4f 100644 --- a/multimedia/plexmediaserver/plexmediaserver.info +++ b/multimedia/plexmediaserver/plexmediaserver.info @@ -1,10 +1,10 @@ PRGNAM="plexmediaserver" -VERSION="1.41.5.9522_a96edc606" +VERSION="1.41.8.9834_071366d65" HOMEPAGE="https://plex.tv/" -DOWNLOAD="https://downloads.plex.tv/plex-media-server-new/1.41.5.9522-a96edc606/debian/plexmediaserver_1.41.5.9522-a96edc606_i386.deb" -MD5SUM="cdc27cf6a8d7adc6595b2b270c3933cd" -DOWNLOAD_x86_64="https://downloads.plex.tv/plex-media-server-new/1.41.5.9522-a96edc606/debian/plexmediaserver_1.41.5.9522-a96edc606_amd64.deb" -MD5SUM_x86_64="ccdd4f76f7d16aead0190ccb6134733d" +DOWNLOAD="https://downloads.plex.tv/plex-media-server-new/1.41.8.9834-071366d65/debian/plexmediaserver_1.41.8.9834-071366d65_i386.deb" +MD5SUM="50d9590acdac2348110844702fa39a0c" +DOWNLOAD_x86_64="https://downloads.plex.tv/plex-media-server-new/1.41.8.9834-071366d65/debian/plexmediaserver_1.41.8.9834-071366d65_amd64.deb" +MD5SUM_x86_64="c627829c4458b2de19f8310c7aab8d10" REQUIRES="" MAINTAINER="Stu Miller" EMAIL="slackbuilds@ssmbox.net" diff --git a/multimedia/smplayer/smplayer.SlackBuild b/multimedia/smplayer/smplayer.SlackBuild index 132e392fba..ffcdd04e84 100644 --- a/multimedia/smplayer/smplayer.SlackBuild +++ b/multimedia/smplayer/smplayer.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for SMPlayer -# Copyright 2023 Andrzej Telszewski, Koszalin +# Copyright 2025 Andrzej Telszewski, Koszalin # Copyright 2011-2015 Fridrich von Stauffenberg <cancellor2@gmail.com> # All rights reserved. # @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=smplayer -VERSION=${VERSION:-24.5.0} +VERSION=${VERSION:-25.6.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} diff --git a/multimedia/smplayer/smplayer.info b/multimedia/smplayer/smplayer.info index 55d6cf7b9c..d736d67d56 100644 --- a/multimedia/smplayer/smplayer.info +++ b/multimedia/smplayer/smplayer.info @@ -1,10 +1,10 @@ PRGNAM="smplayer" -VERSION="24.5.0" +VERSION="25.6.0" HOMEPAGE="https://www.smplayer.info/" -DOWNLOAD="https://github.com/smplayer-dev/smplayer/releases/download/v24.5.0/smplayer-24.5.0.tar.bz2 \ +DOWNLOAD="https://github.com/smplayer-dev/smplayer/releases/download/v25.6.0/smplayer-25.6.0.tar.bz2 \ https://github.com/smplayer-dev/smplayer-themes/releases/download/v20.11.0/smplayer-themes-20.11.0.tar.bz2 \ https://github.com/smplayer-dev/smplayer-skins/releases/download/v20.11.0/smplayer-skins-20.11.0.tar.bz2" -MD5SUM="d453e1f86ffc4183933bdf0ea9842ad7 \ +MD5SUM="b6896b5c848c9757c583d95148a5345f \ 2d2906945c066531c00197165125c754 \ 1bc677d1d21eea0946ad3bc603a3a2e6" DOWNLOAD_x86_64="" diff --git a/multimedia/svt-av1/svt-av1.SlackBuild b/multimedia/svt-av1/svt-av1.SlackBuild index fd11d8d2bc..0899a21951 100644 --- a/multimedia/svt-av1/svt-av1.SlackBuild +++ b/multimedia/svt-av1/svt-av1.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for SVT-AV1 -# Copyright 2022-2024 Vijay Marcel +# Copyright 2022-2025 Vijay Marcel # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -34,16 +34,18 @@ # 14/08/2024: Updated to version 2.1.2 # 04/09/2024: Updated to version 2.2.1 # 20/11/2024: Updated to version 2.3.0 +# 18/04/2025: updated to version 3.0.2 +# ----------------------------------------------------------------------- cd $(dirname $0) ; CWD=$(pwd) PRGNAM=svt-av1 -VERSION=${VERSION:-2.3.0} +VERSION=${VERSION:-3.0.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} -DIR=${DIR:-SVT-AV1-v2.3.0} +DIR=${DIR:-SVT-AV1-v3.0.2} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -93,15 +95,13 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -export LDFLAGS+='-Wl,-z,noexecstack' cmake -B build -S $TMP/$DIR \ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_BUILD_TYPE:STRING=Release \ -DCMAKE_INSTALL_PREFIX:PATH=/usr \ -DCMAKE_INSTALL_LIBDIR:PATH=/usr/lib${LIBDIRSUFFIX} \ - -Wno-dev + -DUSE_CPUINFO=SYSTEM make -C build make -C build install DESTDIR=$PKG @@ -110,7 +110,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \ | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded --remove-section=.comment --remove-section=.note 2> /dev/null || true # Don't ship .la files: -rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la +rm -f $PKG/usr/lib${LIBDIRSUFFIX}/*.la mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a CONTRIBUTING.md CHANGELOG.md PATENTS.md LICENSE.md LICENSE-BSD2.md STYLE.md README.md Docs $PKG/usr/doc/$PRGNAM-$VERSION diff --git a/multimedia/svt-av1/svt-av1.info b/multimedia/svt-av1/svt-av1.info index 685ab5c4f0..32e6c7f3c4 100644 --- a/multimedia/svt-av1/svt-av1.info +++ b/multimedia/svt-av1/svt-av1.info @@ -1,10 +1,10 @@ PRGNAM="svt-av1" -VERSION="2.3.0" +VERSION="3.0.2" HOMEPAGE="https://gitlab.com/AOMediaCodec/SVT-AV1/" -DOWNLOAD="https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v2.3.0/SVT-AV1-v2.3.0.tar.gz" -MD5SUM="34049e7613a4e4cf5b29d1903a93637b" +DOWNLOAD="https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v3.0.2/SVT-AV1-v3.0.2.tar.gz" +MD5SUM="2e9fc34ed253a4fea292b35b5f3f6aa2" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="" +REQUIRES="cpuinfo" MAINTAINER="Vijay Marcel" EMAIL="vijaymarcel@outlook.com" diff --git a/multimedia/videomass/videomass.SlackBuild b/multimedia/videomass/videomass.SlackBuild index 5a8d7057d7..e12c2b4f85 100644 --- a/multimedia/videomass/videomass.SlackBuild +++ b/multimedia/videomass/videomass.SlackBuild @@ -36,7 +36,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=videomass -VERSION=${VERSION:-5.0.25} +VERSION=${VERSION:-5.0.26} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} diff --git a/multimedia/videomass/videomass.info b/multimedia/videomass/videomass.info index 46fc4c8e18..f2143c9c9d 100644 --- a/multimedia/videomass/videomass.info +++ b/multimedia/videomass/videomass.info @@ -1,8 +1,8 @@ PRGNAM="videomass" -VERSION="5.0.25" +VERSION="5.0.26" HOMEPAGE="http://jeanslack.github.io/Videomass/" -DOWNLOAD="https://github.com/jeanslack/Videomass/archive/v5.0.25/Videomass-5.0.25.tar.gz" -MD5SUM="6aeed167f0744416b4f9bc033ea0e929" +DOWNLOAD="https://github.com/jeanslack/Videomass/archive/v5.0.26/Videomass-5.0.26.tar.gz" +MD5SUM="d68a98fb9ff49237c91bed114a5efecb" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="wxPython4 python3-pubsub python3-hatchling python3-babel" diff --git a/multimedia/vkeybd/vkeybd.SlackBuild b/multimedia/vkeybd/vkeybd.SlackBuild index c22bd9a692..2793e4fc8d 100644 --- a/multimedia/vkeybd/vkeybd.SlackBuild +++ b/multimedia/vkeybd/vkeybd.SlackBuild @@ -12,6 +12,15 @@ # of this script had no license. Modified version licensed under the # WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20250613 bkw: no change, just adding this note to myself: +# Do not upgrade to 0.1.18f, it doesn't work. When it's started +# with no args, it says: +# ERROR: invalid argument --addr subscriber +# ...and its MIDI capture port never gets created. +# The changes between 0.1.18e and 0.1.18f are minimal, I don't +# think we're missing anything by not upgrading. Will revisit +# this later at some point. + # 20240808 bkw: update for v0.1.18e. # 20230103 bkw: BUILD=4, new-style icons, fix .desktop file. diff --git a/multimedia/w_scan2/w_scan2.SlackBuild b/multimedia/w_scan2/w_scan2.SlackBuild index 0fd490fcb8..b49b13fb83 100644 --- a/multimedia/w_scan2/w_scan2.SlackBuild +++ b/multimedia/w_scan2/w_scan2.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=w_scan2 -VERSION=${VERSION:-1.0.16} +VERSION=${VERSION:-1.0.17} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} diff --git a/multimedia/w_scan2/w_scan2.info b/multimedia/w_scan2/w_scan2.info index 0ce9a8f38f..bff6fc5a66 100644 --- a/multimedia/w_scan2/w_scan2.info +++ b/multimedia/w_scan2/w_scan2.info @@ -1,8 +1,8 @@ PRGNAM="w_scan2" -VERSION="1.0.16" +VERSION="1.0.17" HOMEPAGE="https://github.com/stefantalpalaru/w_scan2/" -DOWNLOAD="https://github.com/stefantalpalaru/w_scan2/archive/1.0.16/w_scan2-1.0.16.tar.gz" -MD5SUM="d19ddc50c652cb130cd866ecac22522d" +DOWNLOAD="https://github.com/stefantalpalaru/w_scan2/archive/1.0.17/w_scan2-1.0.17.tar.gz" +MD5SUM="d829b8a0f3eb234871464bd9e3ee4943" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" diff --git a/multimedia/w_scan_cpp/w_scan_cpp.SlackBuild b/multimedia/w_scan_cpp/w_scan_cpp.SlackBuild index dd4c849fc6..968a56fe8c 100644 --- a/multimedia/w_scan_cpp/w_scan_cpp.SlackBuild +++ b/multimedia/w_scan_cpp/w_scan_cpp.SlackBuild @@ -26,10 +26,10 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=w_scan_cpp VERSION=${VERSION:-20231015} -VERSION_vdr=${VERSION_vdr:-2.7.4} +VERSION_vdr=${VERSION_vdr:-2.7.5} VERSION_satip=${VERSION_satip:-2.4.1} VERSION_wirbelscan=${VERSION_wirbelscan:-2024.09.15} -BUILD=${BUILD:-5} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} diff --git a/multimedia/w_scan_cpp/w_scan_cpp.info b/multimedia/w_scan_cpp/w_scan_cpp.info index e1e2d7850d..39f5514fe3 100644 --- a/multimedia/w_scan_cpp/w_scan_cpp.info +++ b/multimedia/w_scan_cpp/w_scan_cpp.info @@ -4,11 +4,11 @@ HOMEPAGE="https://www.gen2vdr.de/wirbel/w_scan_cpp/index2.html" DOWNLOAD="https://www.gen2vdr.de/wirbel/w_scan_cpp/w_scan_cpp-20231015.tar.bz2 \ https://www.gen2vdr.de/wirbel/wirbelscan/vdr-wirbelscan-2024.09.15.tgz \ https://github.com/rofafor/vdr-plugin-satip/archive/v2.4.1/vdr-plugin-satip-2.4.1.tar.gz \ - https://github.com/vdr-projects/vdr/archive/2.7.4/vdr-2.7.4.tar.gz" + https://github.com/vdr-projects/vdr/archive/2.7.5/vdr-2.7.5.tar.gz" MD5SUM="ac6bca5260c571f81648bf735c0731b8 \ 902f28b7ecefbe7c9cf211c126d4d8d3 \ cd9ff5d2b47c3e55d64dbc375f84a5a7 \ - cb882fa40885f45a5adbae50ff4c9249" + 2713b17feb30dba44a9bd0270510772e" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="pugixml librepfunc" diff --git a/multimedia/youtube-music/youtube-music.SlackBuild b/multimedia/youtube-music/youtube-music.SlackBuild index 8e1a41fa65..4c2c2e2bbe 100644 --- a/multimedia/youtube-music/youtube-music.SlackBuild +++ b/multimedia/youtube-music/youtube-music.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=youtube-music -VERSION=${VERSION:-3.8.0} +VERSION=${VERSION:-3.9.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} diff --git a/multimedia/youtube-music/youtube-music.info b/multimedia/youtube-music/youtube-music.info index c931cac1d4..06caae54f6 100644 --- a/multimedia/youtube-music/youtube-music.info +++ b/multimedia/youtube-music/youtube-music.info @@ -1,10 +1,10 @@ PRGNAM="youtube-music" -VERSION="3.8.0" +VERSION="3.9.0" HOMEPAGE="https://github.com/th-ch/youtube-music" DOWNLOAD="UNSUPPORTED" MD5SUM="" -DOWNLOAD_x86_64="https://github.com/th-ch/youtube-music/releases/download/v3.8.0/youtube-music_3.8.0_amd64.deb" -MD5SUM_x86_64="915a56f5eda669636e554c9371677dd1" +DOWNLOAD_x86_64="https://github.com/th-ch/youtube-music/releases/download/v3.9.0/youtube-music_3.9.0_amd64.deb" +MD5SUM_x86_64="84113fa71b8de40201a7ec252e833a54" REQUIRES="" MAINTAINER="Willy Sudiarto Raharjo" EMAIL="willysr@slackbuilds.org" |