summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2022-08-22 10:59:45 +0000
committerwiz <wiz@pkgsrc.org>2022-08-22 10:59:45 +0000
commite2ba5aff98c9feea1233298cb9cf5553eb5cf6db (patch)
tree34fb8a109463dd360ef38294223192997b19a77c
parentd0156cb2e389625a13b2b4aee69a0406c83e0e86 (diff)
downloadpkgsrc-e2ba5aff98c9feea1233298cb9cf5553eb5cf6db.tar.gz
musicpd: update to 0.23.9.
ver 0.23.9 (2022/08/18) * input - cdio_paranoia: add options "mode" and "skip" * decoder - ffmpeg: support FFmpeg 5.1 * filter - replay gain: fix delayed volume display with handler=mixer * output - pipewire: set app icon * fix bogus volume levels with multiple partitions * improve iconv detection * macOS: fix macOS 10 build problem (0.23.8 regression) * Android - load mpd.conf from app data directory
-rw-r--r--audio/musicpd/Makefile5
-rw-r--r--audio/musicpd/distinfo9
-rw-r--r--audio/musicpd/patches/patch-src_decoder_plugins_FfmpegIo.cxx22
3 files changed, 6 insertions, 30 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile
index 7dbcef879d9..afbab052715 100644
--- a/audio/musicpd/Makefile
+++ b/audio/musicpd/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.275 2022/08/11 05:08:03 gutteridge Exp $
+# $NetBSD: Makefile,v 1.276 2022/08/22 10:59:45 wiz Exp $
-DISTNAME= mpd-0.23.8
+DISTNAME= mpd-0.23.9
PKGNAME= ${DISTNAME:S/mpd/musicpd/}
-PKGREVISION= 5
CATEGORIES= audio
MASTER_SITES= https://www.musicpd.org/download/mpd/${PKGVERSION_NOREV:R}/
EXTRACT_SUFX= .tar.xz
diff --git a/audio/musicpd/distinfo b/audio/musicpd/distinfo
index 2f96539b770..4e5935b64f2 100644
--- a/audio/musicpd/distinfo
+++ b/audio/musicpd/distinfo
@@ -1,10 +1,9 @@
-$NetBSD: distinfo,v 1.140 2022/07/27 09:42:45 wiz Exp $
+$NetBSD: distinfo,v 1.141 2022/08/22 10:59:45 wiz Exp $
-BLAKE2s (mpd-0.23.8.tar.xz) = f7573d127356d7e8a2042086abdd4b65eedd9eea85b80505a26277a7a892a898
-SHA512 (mpd-0.23.8.tar.xz) = 62f7571de29a329b8ef1fc6f7c338125e70895e06fca134eb9ade19635498ec13da00511870bfadabc5a9ccb090c44543d3101361ffe109e4fadce66435b37ab
-Size (mpd-0.23.8.tar.xz) = 773280 bytes
+BLAKE2s (mpd-0.23.9.tar.xz) = 3e1cfa083da618d6bc5a8a67ab282e997dd8e81d9feb288e447c8e3085e9bda1
+SHA512 (mpd-0.23.9.tar.xz) = 67db093e35693f79267f955463ecaa284773b5e47a38f1548a0d16c9ba82aecc3434fd805e224b78782c5978c07e16d26f7632823e536f5304f557985f028d6e
+Size (mpd-0.23.9.tar.xz) = 774156 bytes
SHA1 (patch-doc_mpd.conf.5.rst) = ee22092564075cdf7917e4e66687f6ab98b5817c
-SHA1 (patch-src_decoder_plugins_FfmpegIo.cxx) = 01a0dede40448c1b145f2465531fd063550bd360
SHA1 (patch-src_decoder_plugins_meson.build) = 8033d6e19da05f472f14f3562a5dfc2f410da98b
SHA1 (patch-src_net_IPv6Address.hxx) = f89b838ad5e946c5db8d95a6dd560e02bdccae29
SHA1 (patch-src_util_WStringAPI.hxx) = 92f39096770943c26d8aaae8a7581d4daca2d233
diff --git a/audio/musicpd/patches/patch-src_decoder_plugins_FfmpegIo.cxx b/audio/musicpd/patches/patch-src_decoder_plugins_FfmpegIo.cxx
deleted file mode 100644
index f9bc7dc73f4..00000000000
--- a/audio/musicpd/patches/patch-src_decoder_plugins_FfmpegIo.cxx
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-src_decoder_plugins_FfmpegIo.cxx,v 1.1 2022/07/27 09:42:45 wiz Exp $
-
-Fix build with ffmpeg 5.1.
-https://github.com/MusicPlayerDaemon/MPD/commit/59792cb0b801854ee41be72d33db9542735df754
-
---- src/decoder/plugins/FfmpegIo.cxx.orig 2022-07-08 23:05:38.000000000 +0000
-+++ src/decoder/plugins/FfmpegIo.cxx
-@@ -21,10 +21,13 @@
- #define __STDC_CONSTANT_MACROS
-
- #include "FfmpegIo.hxx"
--#include "libavutil/mem.h"
- #include "../DecoderAPI.hxx"
- #include "input/InputStream.hxx"
-
-+extern "C" {
-+#include "libavutil/mem.h"
-+}
-+
- AvioStream::~AvioStream()
- {
- if (io != nullptr) {