From 9750986afb59123754a8a40ba7f361fe6bc349ae Mon Sep 17 00:00:00 2001 From: Tee KOBAYASHI Date: Thu, 24 Nov 2022 19:01:22 +0900 Subject: [PATCH] audacious-plugins: Bump to 4.2 --- x11-packages/audacious-plugins/build.sh | 12 ++++++----- .../src-ffaudio-ffaudio-core.cc.patch | 20 ------------------- 2 files changed, 7 insertions(+), 25 deletions(-) delete mode 100644 x11-packages/audacious-plugins/src-ffaudio-ffaudio-core.cc.patch diff --git a/x11-packages/audacious-plugins/build.sh b/x11-packages/audacious-plugins/build.sh index d7ec26edd9..d89c1be664 100644 --- a/x11-packages/audacious-plugins/build.sh +++ b/x11-packages/audacious-plugins/build.sh @@ -1,12 +1,14 @@ TERMUX_PKG_HOMEPAGE=https://audacious-media-player.org TERMUX_PKG_DESCRIPTION="Plugins for Audacious" -TERMUX_PKG_LICENSE="GPL-2.0" +# "The plugins themselves are distributed under their own distribution terms." +# Licenses: GPL-2.0, LGPL-2.1, GPL-3.0, BSD 2-Clause, BSD 3-Clause, MIT, ISC +TERMUX_PKG_LICENSE="custom" +TERMUX_PKG_LICENSE_FILE="COPYING" TERMUX_PKG_MAINTAINER="Simeon Huang " -TERMUX_PKG_VERSION=4.1 -TERMUX_PKG_REVISION=7 +TERMUX_PKG_VERSION=4.2 TERMUX_PKG_SRCURL=https://distfiles.audacious-media-player.org/audacious-plugins-${TERMUX_PKG_VERSION}.tar.bz2 -TERMUX_PKG_SHA256=dad6fc625055349d589e36e8e5c8ae7dfafcddfe96894806509696d82bb61d4c -TERMUX_PKG_DEPENDS="audacious, qt5-qtbase, qt5-qtmultimedia, qt5-qtx11extras, zlib, libflac, libcue, libcurl, mpg123, libogg, libsndfile, libsoxr, libvorbis, libxrender, libxcomposite, ffmpeg" +TERMUX_PKG_SHA256=6fa0f69c3a1041eb877c37109513ab4a2a0a56a77d9e8c13a1581cf1439a417f +TERMUX_PKG_DEPENDS="audacious, ffmpeg, fluidsynth, glib, libc++, libcue, libcurl, libflac, libmp3lame, libogg, libsndfile, libsoxr, libvorbis, libx11, libxml2, mpg123, pulseaudio, qt5-qtbase, qt5-qtmultimedia, qt5-qtx11extras, zlib" TERMUX_PKG_BUILD_DEPENDS="qt5-qtbase-cross-tools" TERMUX_PKG_BUILD_IN_SRC=true TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-gtk --disable-wavpack --disable-qtglspectrum --disable-neon" diff --git a/x11-packages/audacious-plugins/src-ffaudio-ffaudio-core.cc.patch b/x11-packages/audacious-plugins/src-ffaudio-ffaudio-core.cc.patch deleted file mode 100644 index 3978307cd1..0000000000 --- a/x11-packages/audacious-plugins/src-ffaudio-ffaudio-core.cc.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/src/ffaudio/ffaudio-core.cc -+++ b/src/ffaudio/ffaudio-core.cc -@@ -288,7 +288,7 @@ - AVProbeData d = {name, buf, filled}; - score = target; - -- f = av_probe_input_format2 (& d, true, & score); -+ f = const_cast (av_probe_input_format2 (& d, true, & score)); - if (f) - break; - -@@ -361,7 +361,7 @@ - #endif - if (stream && stream->codecpar && stream->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) - { -- AVCodec * codec = avcodec_find_decoder (stream->codecpar->codec_id); -+ AVCodec * codec = const_cast (avcodec_find_decoder (stream->codecpar->codec_id)); - - if (codec) - {