* [PATCH 1/5] coreutils: Update to version 9.8
@ 2025-10-11 10:17 Adolf Belka
2025-10-11 10:17 ` [PATCH 2/5] core199: Ship coreutils Adolf Belka
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Adolf Belka @ 2025-10-11 10:17 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- Update from version 9.7 to 9.8
- Update of rootfile not required
- Changelog
9.8
Bug fixes
'b2sum' will diagnose --length values that are too big.
Previously it would have silently assumed 512 for any larger values.
[bug introduced in coreutils-9.6]
'base32' and 'base64' when decoding will again diagnose partially
padded data that ends with a newline.
[bug introduced in coreutils-9.5]
'basenc -d -i' will now strip '=' characters from the input
in encodings where padding characters are not valid.
[bug introduced with the basenc program in coreutils-8.31]
'cp -p' had spurious "Operation not supported" failures when
copying to non-NFS files from NFSv4 files with trivial ACLs.
[bug introduced in coreutils-9.6]
'cp --sparse=always' missed some opportunities to create holes.
That is, although the copies had the correct data, sometimes
data zeros used extents rather than holes.
[This bug was present in "the beginning".]
cp missed opportunities to create holes when copying from file
systems like squashfs that support SEEK_HOLE only trivially.
[bug introduced in coreutils-9.0]
cp, install, and mv now avoid possible data corruption on
glibc 2.41 and 2.42 systems when copy_file_range is used with ranges > 2GiB,
avoiding https://sourceware.org/PR33245
[bug triggered since coreutils-9.0]
'date' supports specifying multiple named formats with the last taking
precedence. Previously multiple specifications would induce an error.
[bug introduced in coreutils-5.90]
'dd oflag=seek_bytes' no longer mistakenly reports errors when the
output file exists on GNU/Hurd.
[bug introduced in coreutils-8.16]
'fold' no longer exhausts memory when processing large inputs
with a very large --width argument.
[This bug was present in "the beginning".]
'install -d' now produces the correct diagnostic upon failure
to create a directory. Previously it would have produced
a confusing error about changing permissions.
[This bug was present in "the beginning".]
"ls --size --block-size=\'k" could misalign output in locales
with multi-byte thousands grouping characters.
[This bug was present in "the beginning".]
'nohup' avoids implementation defined behavior setting umask,
avoiding a FORTIFY runtime failure on Bionic libc.
[This bug was present in "the beginning".]
'od --strings' with '-N' now works correctly. Previously od might
write a NUL byte after a heap buffer, or output invalid addresses.
[These bugs were present in "the beginning".]
'od -w0' will now issue a diagnostic and exit gracefully.
Previously it would have aborted.
[bug introduced in coreutils-9.3]
'od -w' no longer silently mishandles enormous widths like 3037000500.
Instead, it either outputs correctly or diagnoses a too-large width.
[This bug was present in "the beginning".]
'od +N.' (where N is a decimal number) works again as per POSIX.
[bug introduced in textutils-2.0]
'od /dev/null ++0' no longer mistakenly treats the ++0 as an offset.
[This bug was present in "the beginning".]
'sort' with key character offsets of SIZE_MAX, could induce
a read of 1 byte before an allocated heap buffer. For example:
'sort +0.18446744073709551615R input' on 64 bit systems.
[bug introduced in coreutils-7.2]
stdbuf now works on AIX. Previously it would have been ineffective.
[bug introduced with the stdbuf program in coreutils-7.5]
'tail -n NUM' no longer can output more than NUM lines if stdin
is a largish regular file with a nonzero initial offset, and grows
while 'tail' is reading it.
[This bug was present in "the beginning".]
'tail -f -n +NUM' no longer mishandles NUM values >= UINTMAX_MAX
when the input is seekable.
[bug introduced in coreutils-9.6]
'tail --pid' avoids some unlikely races if the kernel reuses PIDs.
[bug introduced in coreutils-9.5]
'tty' now exits with status 4 with a special diagnostic if ttyname
fails even though standard input is a tty. Formerly it quietly
pretended that standard input was not a tty.
[This bug was present in "the beginning".]
New Features
basenc supports the --base58 option to encode and decode
the visually unambiguous Base58 encoding.
'cksum -a' now supports the 'sha3' argument, to use the SHA3-224,
SHA3-256, SHA3-384, SHA3-512 message digest algorithms depending on
the argument passed to the required --length (-l) option.
'cksum -a' now supports the 'sha2' argument, as a more consistent
interface than the existing 'sha224', 'sha256', 'sha384', 'sha512'
arguments, which are now selected with the --length (-l) option.
'date' now outputs dates in the country's native calendar for the
Iranian locale (fa_IR) and for the Ethiopian locale (am_ET), and also
does so more consistently for the Thailand locale (th_TH.UTF-8).
fold now supports multi-byte characters, honoring their column width.
Also the --characters (-c) option was added to wrap at a certain
number of characters, similarly to --bytes in uni-byte locales.
nproc now honors any cgroup v2 configured CPU quotas,
which may reduce the effective number of processors available.
stty supports setting arbitrary baud rates on supported systems,
like Hurd, Linux with glibc >= 2.42, and some BSDs.
Also on other systems the full set of supported baud rates
is determined at build time if possible.
Commands that support hardware acceleration like cksum and wc
can now disable this acceleration at runtime through the
commonly used GLIBC_TUNABLES environment variable. For example
to disable the use of AVX512 instructions in cksum, you can:
export GLIBC_TUNABLES='glibc.cpu.hwcaps=-AVX512F'
Changes to conform better to POSIX.1-2024
readlink now defaults to being verbose if the POSIXLY_CORRECT
environment variable is set.
realpath now supports -E, which specifies the default behavior.
The corresponding long option is --canonicalize.
tsort now accepts and ignores -w.
Improvements
'factor' is now much faster at identifying large prime numbers,
and significantly faster on composite numbers greater than 2^128.
fold now exits immediately upon receiving a write error,
which is significant when reading large / unbounded inputs.
'seq' is more accurate with large integer start values.
Previously 'seq 18446744073709551617 inf | head -n1' would
output the number before the user specified start value.
Build-related
cksum was not compilable by Apple LLVM 10.0.0 x86-64, which
lacks support for checking for the VPCLMULQDQ instruction.
[bug introduced in coreutils-9.6]
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
lfs/coreutils | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/coreutils b/lfs/coreutils
index 424152649..8a59bfadb 100644
--- a/lfs/coreutils
+++ b/lfs/coreutils
@@ -24,7 +24,7 @@
include Config
-VER = 9.7
+VER = 9.8
THISAPP = coreutils-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -58,7 +58,7 @@ objects =$(DL_FILE)
$(DL_FILE)= $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = e5e5f7ec26c3952eb6a25988f78d3a1f8a70cf97a2fbc7b433dfcd1721cd38e6e0a8b9cb83f854a22df325bcb5ea8c4534c5a217273762cd5d575b381db69ee8
+$(DL_FILE)_BLAKE2 = a93e26c8dda875b11541808d82ff8d6537f521b9c44e2a9959ee8f452823a4df5aed2793ac32766e2d3f832606d7190f7f53ea5870419f585aa66429a9626d98
install : $(TARGET)
--
2.51.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/5] core199: Ship coreutils
2025-10-11 10:17 [PATCH 1/5] coreutils: Update to version 9.8 Adolf Belka
@ 2025-10-11 10:17 ` Adolf Belka
2025-10-11 10:17 ` [PATCH 3/5] mympd: Update to version 22.0.4 and work with coreutils-9.8 Adolf Belka
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Adolf Belka @ 2025-10-11 10:17 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
config/rootfiles/core/199/filelists/coreutils | 1 +
1 file changed, 1 insertion(+)
create mode 120000 config/rootfiles/core/199/filelists/coreutils
diff --git a/config/rootfiles/core/199/filelists/coreutils b/config/rootfiles/core/199/filelists/coreutils
new file mode 120000
index 000000000..7351ed2cf
--- /dev/null
+++ b/config/rootfiles/core/199/filelists/coreutils
@@ -0,0 +1 @@
+../../../common/coreutils
\ No newline at end of file
--
2.51.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 3/5] mympd: Update to version 22.0.4 and work with coreutils-9.8
2025-10-11 10:17 [PATCH 1/5] coreutils: Update to version 9.8 Adolf Belka
2025-10-11 10:17 ` [PATCH 2/5] core199: Ship coreutils Adolf Belka
@ 2025-10-11 10:17 ` Adolf Belka
2025-10-11 10:17 ` [PATCH 4/5] libmpdclient: Update to version 2.23 Adolf Belka
2025-10-11 10:18 ` [PATCH 5/5] mpd: Update to version 0.24.5 Adolf Belka
3 siblings, 0 replies; 5+ messages in thread
From: Adolf Belka @ 2025-10-11 10:17 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- Update from version 21.0.1 to 22.0.4
- Add config options to stop doc and man page creation.
- Add patch to fix working with coreutils-9.8
- Update of rootfile
- Changelog
22.0.4
- Upd: Restrict sticker names (forbid equal sign)
- Fix: Really shuffle the playlist #1455
- Fix: Relax search expression validation #1455
- Fix: Alpine packaging
- Fix: Detection of local playback features #1452
22.0.3
- Upd: Create cache und workdir in init script
- Upd: Feature detection for local playback output selection #1452
22.0.2
- Fix: MYMPD_API_JUKEBOX_RESTART requires MPD connection #1448
22.0.1
- Fix: Respect backgroundImage setting #1446
- Fix: Alpine packaging
22.0.0
Notes
- This release enables certificate checking for outgoing https connections.
The system CA cert store should be autodetected, open an issue if it fails.
- The startup process of myMPD was reworked. myMPD no longer drops privileges,
the included startup scripts are using now the init system to do this.
- The default listening ports are now 8080 for HTTP and 8443 for HTTPS.
API changes
- MYMPD_API_SCRIPT_VERIFY_SIG: new
- MYMPD_API_HOME_WIDGET_IFRAME_SAVE: new
- MYMPD_API_HOME_WIDGET_SCRIPT_SAVE: new
- MYMPD_API_HOME_WIDGET_SAVE: removed
Scripting changes
- Feat: `mympd.tblvalue_in_list()` - Checks a Lua table of tags against a comma separated list.
- Upd: Executing external scripts is now disabled by default.
Changelog
- Feat: iFrames for home screen #1429
- Feat: Feat: Add custom css and js #1428
- Feat: Use system provided ca store for ssl certificate checking #1427
- Feat: Sign and verify scripts from mympd-scripts repository #1426
- Feat: Add trigger `mympd_playlistart`, `mympd_folderart`
- Feat: Sort list of timers and triggers #1425
- Feat: Allow changing output device with local playback #1434
- Upd: Improve "Edit Script"-Layout
- Upd: Bootstrap v5.3.7
- Upd: Mongoose 7.18
- Upd: libmympdclient 1.0.34 (libmpdclient 2.24.0)
- Upd: Incbin
- Upd: Replaced mjson with mongoose implementation
- Fix: Improve MPD search expression validation #1435
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
config/rootfiles/packages/mympd | 8 -----
lfs/mympd | 10 ++++--
....4_Simplify_ending_newline_detection.patch | 32 +++++++++++++++++++
3 files changed, 39 insertions(+), 11 deletions(-)
create mode 100644 src/patches/mympd-22.0.4_Simplify_ending_newline_detection.patch
diff --git a/config/rootfiles/packages/mympd b/config/rootfiles/packages/mympd
index a07ccb3b3..215a55bb2 100644
--- a/config/rootfiles/packages/mympd
+++ b/config/rootfiles/packages/mympd
@@ -5,14 +5,6 @@ usr/bin/mympd-script
#usr/lib/systemd/system/mympd.service
#usr/lib/systemd/user
#usr/lib/systemd/user/mympd.service
-#usr/share/doc/mympd
-#usr/share/doc/mympd/CHANGELOG.md
-#usr/share/doc/mympd/LICENSE.md
-#usr/share/doc/mympd/README.md
-#usr/share/doc/mympd/SECURITY.md
-#usr/share/man/man1/mympd-config.1.gz
-#usr/share/man/man1/mympd-script.1.gz
-#usr/share/man/man1/mympd.1.gz
var/ipfire/backup/addons/includes/mympd
var/lib/mympd
#var/lib/mympd/config
diff --git a/lfs/mympd b/lfs/mympd
index a05cacf50..a0167ffa8 100644
--- a/lfs/mympd
+++ b/lfs/mympd
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = mympd
-PAK_VER = 14
+PAK_VER = 15
DEPS = mpd libmpdclient
@@ -81,14 +81,18 @@ $(subst %,%_BLAKE2,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
+ cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/mympd-22.0.4_Simplify_ending_newline_detection.patch
# Do not try to re-define _FORTIFY_SOURCE
cd $(DIR_APP) && sed -e "/D_FORTIFY_SOURCE/d" -i CMakeLists.txt
cd $(DIR_APP) && mkdir -p build
cd $(DIR_APP)/build && cmake -Wno-dev \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release ..
+ -D CMAKE_INSTALL_PREFIX=/usr \
+ -D MYMPD_DOC=OFF \
+ -D MYMPD_ENABLE_SYSTEMD=OFF \
+ -D MYMPD_MANPAGES=OFF \
+ -D CMAKE_BUILD_TYPE=Release ..
cd $(DIR_APP)/build && make $(MAKETUNING)
cd $(DIR_APP)/build && make install
diff --git a/src/patches/mympd-22.0.4_Simplify_ending_newline_detection.patch b/src/patches/mympd-22.0.4_Simplify_ending_newline_detection.patch
new file mode 100644
index 000000000..f8a5a3cf6
--- /dev/null
+++ b/src/patches/mympd-22.0.4_Simplify_ending_newline_detection.patch
@@ -0,0 +1,32 @@
+From c6eeec3614bd6e91f3313f37a723a2b37467ec6a Mon Sep 17 00:00:00 2001
+From: jcorporation <mail@jcgames.de>
+Date: Fri, 10 Oct 2025 15:45:06 +0200
+Subject: [PATCH] Fix: Simplify ending newline detection #1470
+
+---
+ build.sh | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/build.sh b/build.sh
+index 366e3e619..1f20fcdb0 100755
+--- a/build.sh
++++ b/build.sh
+@@ -217,7 +217,7 @@ createassets() {
+ [ "$F" = "js/long-press-event.js" ] && continue
+ [ "$F" = "js/version.js" ] && continue
+ JSSRCFILES="$JSSRCFILES htdocs/$F"
+- if tail -1 "htdocs/$F" | perl -npe 'exit 1 if m/\n/; exit 0'
++ if [ -n "$(tail -c 1 "htdocs/$F")" ]
+ then
+ echo_error "$F don't end with newline character"
+ exit 1
+@@ -241,7 +241,7 @@ createassets() {
+ JSFILES="$JSFILES $MYMPD_BUILDDIR/htdocs/js/*.min.js"
+ for F in $JSFILES
+ do
+- if tail -1 "$F" | perl -npe 'exit 1 if m/\n/; exit 0'
++ if [ -n "$(tail -c 1 "$F")" ]
+ then
+ echo_error "$F don't end with newline character"
+ exit 1
+
--
2.51.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 4/5] libmpdclient: Update to version 2.23
2025-10-11 10:17 [PATCH 1/5] coreutils: Update to version 9.8 Adolf Belka
2025-10-11 10:17 ` [PATCH 2/5] core199: Ship coreutils Adolf Belka
2025-10-11 10:17 ` [PATCH 3/5] mympd: Update to version 22.0.4 and work with coreutils-9.8 Adolf Belka
@ 2025-10-11 10:17 ` Adolf Belka
2025-10-11 10:18 ` [PATCH 5/5] mpd: Update to version 0.24.5 Adolf Belka
3 siblings, 0 replies; 5+ messages in thread
From: Adolf Belka @ 2025-10-11 10:17 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- Update from version 2.22 to 2.23
- Update of rootfile
- Changelog
2.23
* support MPD protocol 0.24.0
- allow window for listplaylist and listplaylistinfo
- command "playlistlength", "protocol", "stickertypes", "stickernamestypes",
"searchplaylist"
- tag "ShowMovement"
- new sticker find api
- new subcommands for "tagtypes": "available", "reset"
* Support open end for mpd_search_add_window
* format floating-point numbers with the POSIX localew
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
config/rootfiles/packages/libmpdclient | 3 ++-
lfs/libmpdclient | 12 +++++++-----
2 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/config/rootfiles/packages/libmpdclient b/config/rootfiles/packages/libmpdclient
index 1c9da51f9..412080013 100644
--- a/config/rootfiles/packages/libmpdclient
+++ b/config/rootfiles/packages/libmpdclient
@@ -11,6 +11,7 @@
#usr/include/mpd/directory.h
#usr/include/mpd/entity.h
#usr/include/mpd/error.h
+#usr/include/mpd/feature.h
#usr/include/mpd/fingerprint.h
#usr/include/mpd/idle.h
#usr/include/mpd/list.h
@@ -44,7 +45,7 @@
#usr/include/mpd/version.h
usr/lib/libmpdclient.so
usr/lib/libmpdclient.so.2
-usr/lib/libmpdclient.so.2.22
+usr/lib/libmpdclient.so.2.23
#usr/lib/pkgconfig/libmpdclient.pc
#usr/share/doc/libmpdclient
#usr/share/doc/libmpdclient/AUTHORS
diff --git a/lfs/libmpdclient b/lfs/libmpdclient
index 6335f1b4a..293236a04 100644
--- a/lfs/libmpdclient
+++ b/lfs/libmpdclient
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
+# Copyright (C) 2007-2025 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -26,7 +26,7 @@ include Config
SUMMARY = Library for interfacing the Music Player Daemon
-VER = 2.22
+VER = 2.23
THISAPP = libmpdclient-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = libmpdclient
-PAK_VER = 6
+PAK_VER = 7
DEPS =
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 2ff692baaeb8160ce757e754ae08db57aca803628989e4dc3616f88eb02ebf1823d269d5a17afaa32bf32c7a384da0342db1ef083199f85ea7e0687cae0e8455
+$(DL_FILE)_BLAKE2 = bd58d6616cd8fa0d58d58a8f464ac9d27c5151f7ca6db2574effddfe8e389dc110a7049a018e54c4c1ae06300f7906f96d33ee643afcb4f1b32e2e89ad78c515
install : $(TARGET)
@@ -82,7 +82,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
- cd $(DIR_APP) && meson --prefix=/usr builddir/
+ cd $(DIR_APP) && meson setup \
+ --prefix=/usr \
+ builddir/
cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING)
cd $(DIR_APP) && ninja -C builddir/ install
@rm -rf $(DIR_APP)
--
2.51.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 5/5] mpd: Update to version 0.24.5
2025-10-11 10:17 [PATCH 1/5] coreutils: Update to version 9.8 Adolf Belka
` (2 preceding siblings ...)
2025-10-11 10:17 ` [PATCH 4/5] libmpdclient: Update to version 2.23 Adolf Belka
@ 2025-10-11 10:18 ` Adolf Belka
3 siblings, 0 replies; 5+ messages in thread
From: Adolf Belka @ 2025-10-11 10:18 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- Update from version 0.24.4 to 0.24.5
- Update of rootfile not required
- Changelog
0.24.5
* database
- fix disappearing playlist files
* decoder
- ffmpeg: handle "*.aif" files
- mpg123: add option "full_scan"
- mpg123: support seeking on remote files
- mpg123: work around libmpg123 ID3 corruption bug
- sidplay: add support for PSID files
* output
- pipewire: fix resuming playback after it was paused by "single" mode
* Windows
- fix libfmt error "what(): invalid utf8"
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
lfs/mpd | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/mpd b/lfs/mpd
index 410208f4f..f49edbbfa 100644
--- a/lfs/mpd
+++ b/lfs/mpd
@@ -26,7 +26,7 @@ include Config
SUMMARY = Music Player Daemon
-VER = 0.24.4
+VER = 0.24.5
THISAPP = mpd-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/${THISAPP}
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = mpd
-PAK_VER = 45
+PAK_VER = 46
# SUP_ARCH = aarch64 x86_64
DEPS = alsa avahi faad2 ffmpeg flac lame libmad libshout libogg libid3tag libvorbis opus soxr fmt
@@ -49,7 +49,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = f373d19bec84bfe0f3d54ad5eb1966de51074333bb0bd822cae735819c2896b947d1fb4c7bb753d42a7781111b8787b4646f1ce6e89c8c57c3192071d3145424
+$(DL_FILE)_BLAKE2 = 482b317f28b714f1c3f423f481f8a58f392293d98bf13f93a857abe49a9dfdc6c3c08c8d57d5223789b222fcf549cbb35a3c1a5e52c2d4ccb429f1086ac60371
install : $(TARGET)
--
2.51.0
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-10-11 10:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-11 10:17 [PATCH 1/5] coreutils: Update to version 9.8 Adolf Belka
2025-10-11 10:17 ` [PATCH 2/5] core199: Ship coreutils Adolf Belka
2025-10-11 10:17 ` [PATCH 3/5] mympd: Update to version 22.0.4 and work with coreutils-9.8 Adolf Belka
2025-10-11 10:17 ` [PATCH 4/5] libmpdclient: Update to version 2.23 Adolf Belka
2025-10-11 10:18 ` [PATCH 5/5] mpd: Update to version 0.24.5 Adolf Belka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox