mpd: Update to 0.23.13
authorTianling Shen <redacted>
Thu, 31 Aug 2023 08:34:04 +0000 (16:34 +0800)
committerRosen Penev <redacted>
Thu, 31 Aug 2023 16:14:14 +0000 (09:14 -0700)
ver 0.23.13 (2023/05/22)
* input
  - curl: fix busy loop after connection failed
  - curl: hide "404" log messages for non-existent ".mpdignore" files
* archive
  - zzip: fix crash bug
* database
  - simple: reveal hidden songs after deleting containing CUE
* decoder
  - ffmpeg: reorder to a lower priority than "gme"
  - gme: require GME 0.6 or later
* output
  - pipewire: fix corruption bug due to missing lock
* Linux
  - shut down if parent process dies in --no-daemon mode
  - determine systemd unit directories via pkg-config
* support libfmt 10

ver 0.23.12 (2023/01/17)
* input
  - curl: require CURL 7.55.0 or later
* decoder
  - mad: fix integer underflow with very small files
* tags
  - fix crash bug due to race condition
* output
  - pipewire: adjust to PipeWire 0.3.64 API change
* fix build failures with GCC 13

Removed upstreamed patch.

Signed-off-by: Tianling Shen <redacted>
sound/mpd/Makefile
sound/mpd/patches/010-gcc12.patch [deleted file]
sound/mpd/patches/030-no-avfilter.patch

index c46ed1a611f200b3b5a5ff86bdce3869bd6bec5a..fbbc6983914bba20409f45f3de3ce116378270dc 100644 (file)
@@ -6,12 +6,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=mpd
-PKG_VERSION:=0.23.11
+PKG_VERSION:=0.23.13
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=https://www.musicpd.org/download/mpd/0.23
-PKG_HASH:=edb4e7a8f9dff238b5610f9e2461940ea98c727a5462fafb1cdf836304dfdca9
+PKG_HASH:=a96b01e6fbbb7e8ab25eb7c15d5c811c62eb19b76d143a802f51674791f1d519
 
 PKG_MAINTAINER:=
 PKG_LICENSE:=GPL-2.0-or-later
diff --git a/sound/mpd/patches/010-gcc12.patch b/sound/mpd/patches/010-gcc12.patch
deleted file mode 100644 (file)
index a3b83b5..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-From e4b055eb6d08c5c8f8d85828ce4005d410e462cb Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
- <congdanhqx@gmail.com>
-Date: Thu, 1 Dec 2022 08:29:23 +0700
-Subject: [PATCH] v0.23.x: RemoteTagCache: add missing include
-
-Fix build with Boost 1.81.0. `<array>` was included by one of those boost headers,
-however, it's no longer included as of Boost 1.81.0.
-
-`master` doesn't use `std::array` in this file.
-
-While we're at it, add all necessary inclusion files.
----
- src/RemoteTagCache.hxx | 4 ++++
- 1 file changed, 4 insertions(+)
-
---- a/src/RemoteTagCache.hxx
-+++ b/src/RemoteTagCache.hxx
-@@ -28,7 +28,11 @@
- #include <boost/intrusive/list.hpp>
- #include <boost/intrusive/unordered_set.hpp>
-+#include <array>
-+#include <functional>
-+#include <memory>
- #include <string>
-+#include <utility>
- class RemoteTagCacheHandler;
index 233cf5077ec689ded11e877c4cd985e3beac1730..c9652ba4e867c92d36e095cb04ddb645f072b311 100644 (file)
@@ -11,4 +11,4 @@
 -endif
  conf.set('HAVE_LIBAVFILTER', libavfilter_dep.found())
  
- if not enable_ffmpeg
+ if not libavutil_dep.found()
git clone https://git.99rst.org/PROJECT