audio/mpd: update to 0.23.16

ok landry@, kirill@
This commit is contained in:
lraab
2024-12-23 16:55:25 +00:00
parent ecbe1ff25d
commit b2afc3a7d3
7 changed files with 3 additions and 88 deletions
+1 -2
View File
@@ -1,8 +1,7 @@
BROKEN-hppa = no atomic ops
COMMENT = Music Player Daemon
VER = 0.23.15
VER = 0.23.16
DISTNAME = mpd-${VER}
REVISION = 0
EXTRACT_SUFX = .tar.xz
CATEGORIES = audio
HOMEPAGE = https://www.musicpd.org/
+2 -2
View File
@@ -1,2 +1,2 @@
SHA256 (mpd-0.23.15.tar.xz) = VQEyI5rRrPgsz4kFtWzBPcLIGkSJuW+6dzGzBJkHZho=
SIZE (mpd-0.23.15.tar.xz) = 778384
SHA256 (mpd-0.23.16.tar.xz) = lmjjbfgN5IVoPJYtAoRb8xTYoI5hQa96/v92QB4yssE=
SIZE (mpd-0.23.16.tar.xz) = 778572
-15
View File
@@ -1,15 +0,0 @@
Log: add missing include for std::back_inserter()
e380ae90ebb6325d1820b6f34e10bf3474710899
Index: src/Log.cxx
--- src/Log.cxx.orig
+++ src/Log.cxx
@@ -23,6 +23,8 @@
#include <fmt/format.h>
+#include <iterator> // for std::back_inserter()
+
static constexpr Domain exception_domain("exception");
void
@@ -1,15 +0,0 @@
lib/fmt: support build with libfmt-11.0.0
1402869715e3efca87942d79c3173a6b21a6925d
Index: src/lib/ffmpeg/LibFmt.hxx
--- src/lib/ffmpeg/LibFmt.hxx.orig
+++ src/lib/ffmpeg/LibFmt.hxx
@@ -29,7 +29,7 @@ template<>
struct fmt::formatter<AVSampleFormat> : formatter<string_view>
{
template<typename FormatContext>
- auto format(const AVSampleFormat format, FormatContext &ctx) {
+ auto format(const AVSampleFormat format, FormatContext &ctx) const {
const char *name = av_get_sample_fmt_name(format);
if (name == nullptr)
name = "?";
@@ -1,24 +0,0 @@
lib/fmt: support build with libfmt-11.0.0
3648475f871c33daa9e598c102a16e5a1a4d4dfc
Index: src/lib/fmt/AudioFormatFormatter.hxx
--- src/lib/fmt/AudioFormatFormatter.hxx.orig
+++ src/lib/fmt/AudioFormatFormatter.hxx
@@ -39,7 +39,7 @@ template<>
struct fmt::formatter<SampleFormat> : formatter<string_view>
{
template<typename FormatContext>
- auto format(const SampleFormat format, FormatContext &ctx) {
+ auto format(const SampleFormat format, FormatContext &ctx) const {
return formatter<string_view>::format(sample_format_to_string(format),
ctx);
}
@@ -49,7 +49,7 @@ template<>
struct fmt::formatter<AudioFormat> : formatter<string_view>
{
template<typename FormatContext>
- auto format(const AudioFormat &af, FormatContext &ctx) {
+ auto format(const AudioFormat &af, FormatContext &ctx) const {
return formatter<string_view>::format(ToString(af).c_str(),
ctx);
}
@@ -1,15 +0,0 @@
lib/fmt: support build with libfmt-11.0.0
1402869715e3efca87942d79c3173a6b21a6925d
Index: src/lib/fmt/ExceptionFormatter.hxx
--- src/lib/fmt/ExceptionFormatter.hxx.orig
+++ src/lib/fmt/ExceptionFormatter.hxx
@@ -38,7 +38,7 @@ template<>
struct fmt::formatter<std::exception_ptr> : formatter<string_view>
{
template<typename FormatContext>
- auto format(std::exception_ptr e, FormatContext &ctx) {
+ auto format(std::exception_ptr e, FormatContext &ctx) const {
return formatter<string_view>::format(GetFullMessage(e), ctx);
}
};
@@ -1,15 +0,0 @@
lib/fmt: support build with libfmt-11.0.0
1402869715e3efca87942d79c3173a6b21a6925d
Index: src/lib/fmt/PathFormatter.hxx
--- src/lib/fmt/PathFormatter.hxx.orig
+++ src/lib/fmt/PathFormatter.hxx
@@ -29,7 +29,7 @@ template<>
struct fmt::formatter<Path> : formatter<string_view>
{
template<typename FormatContext>
- auto format(Path path, FormatContext &ctx) {
+ auto format(Path path, FormatContext &ctx) const {
return formatter<string_view>::format(path.ToUTF8(), ctx);
}
};