musicbrainz v1 API was removed in 2018, glyr itself is more or less
abandoned upstream in 2016, but some metadata providers still work fine
(mostly lastfm, musicbrainz, lyrix & elyrics)
required to update audio/gmpc to a less deprecated version and somewhat
retain metadata fetching..
Major update from 3.31.8 to 4.1.2.
CMake 4.0 introduces a breaking change: compatibility with versions older than
3.5 has been removed. Projects calling cmake_minimum_required() or
cmake_policy() with versions < 3.5 now error out.
To maintain compatibility with existing ports during the transition, the cmake
module now provides MODCMAKE_POLICY_VERSION_OVERRIDE (idea from sthen@)
support:
- MODCMAKE_POLICY_VERSION_OVERRIDE ?= No
- MODCMAKE_POLICY_VERSION_OVERRIDE_VER ?= 3.5
When MODCMAKE_POLICY_VERSION_OVERRIDE is set to "yes", CMake is instructed to
accept policy versions down to the specified minimum (default 3.5) via
-DCMAKE_POLICY_VERSION_MINIMUM. This allows older ports to build while
acknowledging they may use deprecated features.
https://cmake.org/cmake/help/latest/release/4.0.htmlhttps://cmake.org/cmake/help/latest/release/4.1.html
OK sthen@
Glyr is a search engine for music-related metadata. It comes both in a
commandline interface tool and as a C library, both with an easy to use
interface. The sort of metadata glyr is searching (and downloading) is
usually the data you see in your musicplayer.
ok ajacoutot@