summaryrefslogtreecommitdiffstats
path: root/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.22.bb
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2025-12-24 23:18:51 +0100
committerKhem Raj <raj.khem@gmail.com>2025-12-24 15:18:16 -0800
commita8f10b2aa0e246576b266dd6ea03c67fdf52afed (patch)
tree5cedd30366659eb920e2209bad1943f87cad9abb /meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.22.bb
parent0ecf2814b207cc25962a3949c8265d856a355ea0 (diff)
downloadmeta-openembedded-a8f10b2aa0e246576b266dd6ea03c67fdf52afed.tar.gz
libmpdclient: upgrade 2.22 -> 2.24
Though the original recipe claiumed to be v2.22, actually it was 2.20. The vala bindings have been dropped, so no need to delete them anymore. License-Update: The license itself hasn't changed between versions, but there are a couple of things to note: - Half of the source files are covered by 2-Clause-BSD, and other half by 3-Clause-BSD. This has been the case always, but until recently this was only specified in the source file headers, and there was a single license file with 3-Clause-BSD text. Now there is explicitly a 2-Clause- BSD file also. - The 3-Clase-BSD text was reformatted, and added placeholders for year and author. That is causing the hash change for this particular license. Changelog: 2.24: * fix missing "mpd_send_list_tag_types_available" in libmpdclient.ld * support MPD protocol 0.25 - stringnormalization 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 2.22: * drop the unmaintained Vala bindings * fix "version.h" conflicts when used as a Meson subproject * support MPD protocol 0.24.0 - command "save [create|replace|append]" 2.21: * meson.build: allow using as a Meson subproject * add mpd_recv_replay_gain_status() * support MPD protocol 0.24.0 - tag "Mood", "TitleSort" - "oneshot" consume state - allow range in "playlistmove" - commands "searchcount", "stickernames" - added attribute for songs - search: support constraint "added-since" Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.22.bb')
-rw-r--r--meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.22.bb21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.22.bb b/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.22.bb
deleted file mode 100644
index a9dae6073a..0000000000
--- a/meta-multimedia/recipes-multimedia/musicpd/libmpdclient_2.22.bb
+++ /dev/null
@@ -1,21 +0,0 @@
1SUMMARY = "C client library for the Music Player Daemon"
2LICENSE = "BSD-3-Clause"
3LIC_FILES_CHKSUM = "file://COPYING;md5=06b9dfd2f197dc514d8ef06549684b77"
4HOMEPAGE = "https://www.musicpd.org/libs/libmpdclient/"
5
6inherit meson
7
8SRC_URI = " \
9 git://github.com/MusicPlayerDaemon/libmpdclient;branch=master;protocol=https \
10"
11SRCREV = "7124a0ad4841a44db084bb785a6e7120bc8f0139"
12
13PACKAGECONFIG ??= "tcp"
14PACKAGECONFIG[tcp] = "-Dtcp=true,-Dtcp=false"
15
16do_install:append() {
17 # libmpdclient's Vala bindings are outdated and unmaintained; it
18 # is likely that nobody will ever use them, so let's not install
19 # them
20 rm -rf ${D}${datadir}/vala
21}