Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (7836de6c07b33fd625119daa508cc83d174cebfb)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (7836de6c07b33fd625119daa508cc83d174cebfb)
  • Date: Sat, 3 Nov 2018 20:46:51 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

audio-players/mpd/CONFIGURE | 48 +++++-----
audio-players/mpd/DEPENDS | 208
++++++++++++++++++++++----------------------
audio-players/mpd/HISTORY | 3
3 files changed, 131 insertions(+), 128 deletions(-)

New commits:
commit 7836de6c07b33fd625119daa508cc83d174cebfb
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

audio-players/mpd: fixed meson flags in CONFIGURE and DEPENDS

diff --git a/audio-players/mpd/CONFIGURE b/audio-players/mpd/CONFIGURE
index be1b8b0..007687d 100755
--- a/audio-players/mpd/CONFIGURE
+++ b/audio-players/mpd/CONFIGURE
@@ -7,49 +7,49 @@ list_remove MPD_OPTS "--enable-oggflac" &&
list_remove MPD_OPTS "--disable-oggflac" &&

config_query_option MPD_OPTS "Enable IPv6 support?" y \
- "-Dipv6=true" \
- "-Dipv6=false" &&
+ "ipv6=true" \
+ "ipv6=false" &&

config_query_option MPD_OPTS "Enable writing to a FIFO?" y \
- "-Dfifo=true" \
- "-Dfifo=false" &&
+ "fifo=true" \
+ "fifo=false" &&

config_query_option MPD_OPTS "Enable support for clients connecting via
TCP?" y \
- "-Dtcp=true" \
- "-Dtcp=false" &&
+ "tcp=true" \
+ "tcp=false" &&

config_query_option MPD_OPTS "Enable support for clients connecting via unix
domain sockets?" y \
- "-Dlocal_socket=true" \
- "-Dlocal_socket=false" &&
+ "local_socket=true" \
+ "local_socket=false" &&

config_query_option MPD_OPTS "Enable writing to a pipe?" n \
- "-Dpipe=true" \
- "-Dpipe=false" &&
+ "pipe=true" \
+ "pipe=false" &&

config_query_option MPD_OPTS "Enable HTTP server output?" y \
- "-Dhttpd=true" \
- "-Dhttpd=false" &&
+ "httpd=true" \
+ "httpd=false" &&

config_query_option MPD_OPTS "Enable recorder file output plugin?" n \
- "-Drecorder=true" \
- "-Drecorder=false" &&
+ "recorder=true" \
+ "recorder=false" &&

config_query_option MPD_OPTS "Enable DSD file output plugin?" n \
- "-Ddsd=true" \
- "-Ddsd=false" &&
+ "dsd=true" \
+ "dsd=false" &&

config_query_option MPD_OPTS "Enable UPnP client support?" n \
- "-Dupnp=true" \
- "-Dupnp=false" &&
+ "upnp=true" \
+ "upnp=false" &&

config_query_option MPD_OPTS "Enable support for neighbor discovery?" n \
- "-Dneighbor=true" \
- "-Dneighbor=false" &&
+ "neighbor=true" \
+ "neighbor=false" &&

config_query_option MPD_OPTS "Enable support for CUE sheets?" n \
- "-Dcue=true" \
- "-Dcue=false" &&
+ "cue=true" \
+ "cue=false" &&

config_query_option MPD_OPTS "Enable support for Inotify automatic database
update?" y \
- "-Dinotify=true" \
- "-Dinotify=false"
+ "inotify=true" \
+ "inotify=false"
diff --git a/audio-players/mpd/DEPENDS b/audio-players/mpd/DEPENDS
index 105e5aa..d9e1c85 100755
--- a/audio-players/mpd/DEPENDS
+++ b/audio-players/mpd/DEPENDS
@@ -3,191 +3,191 @@ depends boost &&
depends meson &&

# TODO: missing libraries in grimoire:
-# - libgme (-Dgme=true) for Blargg's game music emulator plugin
-# - libadplug (-Dadplug=true) for AdPlug decoder plugin
+# - libgme (gme=enabled) for Blargg's game music emulator plugin
+# - libadplug (adplug=enabled) for AdPlug decoder plugin

optional_depends icu \
- "-Dicu=true" \
- "-Dicu=false" \
+ "icu=enabled" \
+ "icu=disabled" \
"for Unicode support" &&

optional_depends libao \
- "-Dao=true" \
- "-Dao=false" \
+ "ao=enabled" \
+ "ao=disabled" \
"for libao support" &&

optional_depends yajl \
- "-Dsoundcloud=true" \
- "-Dsoundcloud=false" \
+ "soundcloud=enabled" \
+ "soundcloud=disabled" \
"for soundcloud.com support" &&

optional_depends zlib \
- "-Dzlib=true" \
- "-Dzlib=false" \
+ "zlib=enabled" \
+ "zlib=disabled" \
"for zlib support" &&

optional_depends bzip2 \
- "-Dbzip2=true" \
- "-Dbzip2=false" \
+ "bzip2=enabled" \
+ "bzip2=disabled" \
"for bzip2 archive support" &&

optional_depends zziplib \
- "-Dzzip=true" \
- "-Dzzip=false" \
+ "zzip=enabled" \
+ "zzip=disabled" \
"for zip archive support" &&

optional_depends libvorbis \
- "-Dvorbis=true" \
- "-Dvorbis=false" \
+ "vorbis=enabled" \
+ "vorbis=disabled" \
"for Ogg Vorbis support" &&

if is_depends_enabled $SPELL libvorbis; then
depends libogg &&

config_query_option MPD_OPTS "Enable Ogg Vorbis encoder support?" y \
- "-Dvorbisenc=true" \
- "-Dvorbisenc=false"
+ "vorbisenc=enabled" \
+ "vorbisenc=disabled"
fi &&

optional_depends sidplay-libs \
- "-Dsidplay=true" \
- "-Dsidplay=false" \
+ "sidplay=enabled" \
+ "sidplay=disabled" \
"for C64 SID support" &&

#optional_depends libmpcdec \
-# "-Dmpc=true" \
-# "-Dmpc=false" \
+# "mpc=enabled" \
+# "mpc=disabled" \
# "for musepack support" &&

optional_depends flac \
- "-Dflac=true" \
- "-Dflac=false" \
+ "flac=enabled" \
+ "flac=disabled" \
"for FLAC support" &&

optional_depends faad2 \
- "-Dfaad=true" \
- "-Dfaad=false" \
+ "faad=enabled" \
+ "faad=disabled" \
"for MP4/AAC audio support" &&

optional_depends audiofile \
- "-Daudiofile=true" \
- "-Daudiofile=false" \
+ "audiofile=enabled" \
+ "audiofile=disabled" \
"for WAVE, AIFF and AU file support" &&

if is_depends_enabled $SPELL audiofile; then
config_query_option MPD_OPTS "Enable WAVE encoder support?" y \
- "-Dwave_encoder=true" \
- "-Dwave_encoder=false"
+ "wave_encoder=enabled" \
+ "wave_encoder=disabled"
fi &&

optional_depends libsndfile \
- "-Dsndfile=true" \
- "-Dsndfile=false" \
+ "sndfile=enabled" \
+ "sndfile=disabled" \
"for sndfile support" &&

optional_depends alsa-lib \
- "-Dalsa=true" \
- "-Dalsa=false" \
+ "alsa=enabled" \
+ "alsa=disabled" \
"for alsa mixer support" &&

optional_depends oss \
- "-Doss=true" \
- "-Doss=false" \
+ "oss=enabled" \
+ "oss=disabled" \
"for Open Sound System support" &&

-optional_depends JACK-DRIVER \
- "-Djack=true" \
- "-Djack=false" \
+optional_depends JACKRIVER \
+ "jack=enabled" \
+ "jack=disabled" \
"for JACK output support" &&

optional_depends pulseaudio \
- "-Dpulse=true" \
- "-Dpulse=false" \
+ "pulse=enabled" \
+ "pulse=disabled" \
"for pulseaudio output support" &&

optional_depends libmad \
- "-Dmad=true" \
- "-Dmad=false" \
+ "mad=enabled" \
+ "mad=disabled" \
"for mp3 files support (libmad)" &&

optional_depends mpg123 \
- "-Dmpg123=true" \
- "-Dmpg123=false" \
+ "mpg123=enabled" \
+ "mpg123=disabled" \
"for mp3 files support (libmpg123)" &&

optional_depends libopus \
- "-Dopus=true" \
- "-Dopus=false" \
+ "opus=enabled" \
+ "opus=disabled" \
"for opus decoder support" &&

optional_depends libid3tag \
- "-Did3tag=true" \
- "-Did3tag=false" \
+ "id3tag=enabled" \
+ "id3tag=disabled" \
"to use id3 tags" &&

optional_depends chromaprint \
- "-Dchromaprint=true" \
- "-Dchromaprint=false" \
+ "chromaprint=enabled" \
+ "chromaprint=disabled" \
"for ChromaPrint/AcoustID support" &&

optional_depends libmikmod \
- "-Dmikmod=true" \
- "-Dmikmod=false" \
+ "mikmod=enabled" \
+ "mikmod=disabled" \
"for mod file support (libmikmod)" &&

optional_depends libmodplug \
- "-Dmodplug=true" \
- "-Dmodplug=false" \
+ "modplug=enabled" \
+ "modplug=disabled" \
"for mod file support (libmodplug)" &&

optional_depends wildmidi \
- "-Dwildmidi=true" \
- "-Dwildmidi=false" \
+ "wildmidi=enabled" \
+ "wildmidi=disabled" \
"for MIDI support via wildmidi" &&

optional_depends fluidsynth \
- "-Dfluidsynth=true" \
- "-Dfluidsynth=false" \
+ "fluidsynth=enabled" \
+ "fluidsynth=disabled" \
"for MIDI support via fluidsynth" &&

optional_depends libsamplerate \
- "-Dlibsamplerate=true" \
- "-Dlibsamplerate=false" \
+ "libsamplerate=enabled" \
+ "libsamplerate=disabled" \
"for samplerate conversions" &&

optional_depends libshout \
- "-Dshout=true" \
- "-Dshout=false" \
+ "shout=enabled" \
+ "shout=disabled" \
"for shoutcast streaming output support" &&

optional_depends wavpack \
- "-Dwavpack=true" \
- "-Dwavpack=false" \
+ "wavpack=enabled" \
+ "wavpack=disabled" \
"for WavPack support" &&

optional_depends lame \
- "-Dlame=true" \
- "-Dlame=false" \
+ "lame=enabled" \
+ "lame=disabled" \
"for LAME encoder support" &&

optional_depends twolame \
- "-Dtwolame=true" \
- "-Dtwolame=false" \
+ "twolame=enabled" \
+ "twolame=disabled" \
"for TwoLAME mp2 encoder support" &&

optional_depends curl \
- "-Dcurl=true" \
- "-Dcurl=false" \
+ "curl=enabled" \
+ "curl=disabled" \
"for obtaining song data via HTTP support" &&

optional_depends sqlite \
- "-Dsqlite=true" \
- "-Dsqlite=false" \
+ "sqlite=enabled" \
+ "sqlite=disabled" \
"for SQLite database support" &&

optional_depends LIBAVCODEC \
- "-Dffmpeg=true" \
- "-Dffmpeg=false" \
+ "ffmpeg=enabled" \
+ "ffmpeg=disabled" \
"for FFMPEG support" &&

if is_depends_enabled $SPELL ffmpeg; then
@@ -195,77 +195,77 @@ if is_depends_enabled $SPELL ffmpeg; then
fi &&

optional_depends libmpdclient \
- "-Dlibmpdclient=true" \
- "-Dlibmpdclient=false" \
+ "libmpdclient=enabled" \
+ "libmpdclient=disabled" \
"for MPD client support" &&

optional_depends OPENAL \
- "-Dopenal=true" \
- "-Dopenal=false" \
+ "openal=enabled" \
+ "openal=disabled" \
"for OpenAL support" &&

optional_depends libmms \
- "-Dmms=true" \
- "-Dmms=false" \
+ "mms=enabled" \
+ "mms=disabled" \
"for MMS protocol support" &&

optional_depends libnfs \
- "-Dnfs=true" \
- "-Dnfs=false" \
+ "nfs=enabled" \
+ "nfs=disabled" \
"for NFS protocol support" &&

optional_depends samba4 \
- "-Dsmbclient=true" \
- "-Dsmbclient=false" \
+ "smbclient=enabled" \
+ "smbclient=disabled" \
"for SMB protocol support" &&

optional_depends libcdio \
- "-Diso9660=true" \
- "-Diso9660=false" \
+ "iso9660=enabled" \
+ "iso9660=disabled" \
"for libiso9660 archive plugin" &&

optional_depends libcdio-paranoia \
- "-Dcdio_paranoia=true" \
- "-Dcdio_paranoia=false" \
+ "cdio_paranoia=enabled" \
+ "cdio_paranoia=disabled" \
"for audio CD support" &&

optional_depends avahi \
- "-Dzeroconf=avahi" \
- "-Dzeroconf=no" \
+ "zeroconf=avahi" \
+ "zeroconf=disabled" \
"for Zeroconf service discovery support" &&

optional_depends SYSTEM-LOGGER \
- "-Dsyslog=true" \
- "-Dsyslog=false" \
+ "syslog=enabled" \
+ "syslog=disabled" \
"for syslog support" &&

optional_depends systemd \
- "-Dsystemd=true" \
- "-Dsystemd=false" \
+ "systemd=enabled" \
+ "systemd=disabled" \
"to use the systemd daemon library" &&

optional_depends tcp_wrappers \
- "-Dlibwrap=true" \
- "-Dlibwrap=false" \
+ "libwrap=enabled" \
+ "libwrap=disabled" \
"to use libwrap" &&

optional_depends udisks2 \
- "-Dudisks=true" \
- "-Dudisks=false" \
+ "udisks=enabled" \
+ "udisks=disabled" \
"for removable media support" &&

optional_depends expat \
- "-Dwebdav=true" \
- "-Dwebdav=false" \
- "for WebDAV support" &&
+ "webdav=enabled" \
+ "webdav=disabled" \
+ "for WebDAV support" &&

if is_depends_enabled $SPELL expat; then
depends curl
fi &&

optional_depends xmlto \
- "-Ddocumentation=true" \
- "-Ddocumentation=false" \
+ "documentation=true" \
+ "documentation=false" \
"to build documentation" &&

# Xmlto is not enough.
diff --git a/audio-players/mpd/HISTORY b/audio-players/mpd/HISTORY
index d1bdab3..d352e4c 100644
--- a/audio-players/mpd/HISTORY
+++ b/audio-players/mpd/HISTORY
@@ -1,3 +1,6 @@
+2018-11-03 Pavel Vinogradov <public AT sourcemage.org>
+ * CONFIGURE, DEPENDS: fixed meson flags
+
2018-11-03 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: version 0.21
* CONFIGURE, DEPENDS, DETAILS, BUILD: switch to meson



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (7836de6c07b33fd625119daa508cc83d174cebfb), Pavel Vinogradov, 11/03/2018

Archive powered by MHonArc 2.6.24.

Top of Page