]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
libmpdclient: Update to version 2.23
authorAdolf Belka <adolf.belka@ipfire.org>
Sat, 11 Oct 2025 10:17:59 +0000 (12:17 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 11 Oct 2025 13:04:47 +0000 (13:04 +0000)
- 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>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/rootfiles/packages/libmpdclient
lfs/libmpdclient

index 1c9da51f9ad1bfdf796aae3940b5c003575ecf0a..4120800136f993036f6d4d43b31886f82a878a2c 100644 (file)
@@ -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
index 6335f1b4a1590c8a36d1e580cc0ce573a98a69e5..293236a048758380640c264dee7e81c4ad198b17 100644 (file)
@@ -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)