Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (6c12065a40bfa8acd805fee20b3e0c45a09e3129)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (6c12065a40bfa8acd805fee20b3e0c45a09e3129)
  • Date: Tue, 2 Sep 2014 06:38:08 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

audio-players/mpd/CONFIGURE | 8 ++++----
audio-players/mpd/DEPENDS | 24 +++++++++---------------
audio-players/mpd/DETAILS | 4 ++--
audio-players/mpd/HISTORY | 6 ++++++
4 files changed, 21 insertions(+), 21 deletions(-)

New commits:
commit 6c12065a40bfa8acd805fee20b3e0c45a09e3129
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

mpd: => 0.18.13

diff --git a/audio-players/mpd/CONFIGURE b/audio-players/mpd/CONFIGURE
index 6b59084..6c4d738 100755
--- a/audio-players/mpd/CONFIGURE
+++ b/audio-players/mpd/CONFIGURE
@@ -1,3 +1,7 @@
+# remove obsolete options
+list_remove MPD_OPTS "--enable-mvp" &&
+list_remove MPD_OPTS "--disable-mvp" &&
+
config_query_option MPD_OPTS "Enable IPv6 support?" y \
"--enable-ipv6" \
"--disable-ipv6" &&
@@ -26,10 +30,6 @@ config_query_option MPD_OPTS "Enable recorder file output
plugin?" n \
"--enable-recorder-output" \
"--disable-recorder-output" &&

-config_query_option MPD_OPTS "Enable support for Hauppauge Media MVP?" n \
- "--enable-mvp" \
- "--disable-mvp" &&
-
config_query_option MPD_OPTS "Enable support for Inotify automatic database
update?" y \
"--enable-inotify" \
"--disable-inotify" &&
diff --git a/audio-players/mpd/DEPENDS b/audio-players/mpd/DEPENDS
index 8e5f012..1515d8d 100755
--- a/audio-players/mpd/DEPENDS
+++ b/audio-players/mpd/DEPENDS
@@ -1,9 +1,12 @@
depends zlib &&
depends glib2 &&
+depends -sub CXX gcc &&

# TODO: missing libraries in grimoire:
# - libroar (--enable-roar) for RoarAudio support
# - libgme (--enable-gme) for Blargg's game music emulator plugin
+# - libadplug (--enable-adplug) for AdPlug decoder plugin
+# - libopus (--enable-opus) for Opus codec support
# - libiso9660 (--enable-iso9660) for iso9660 archive support
# - despotify (--enable-despotify) for despotify (spotify.com) support

@@ -12,16 +15,6 @@ optional_depends libao \
"--disable-ao" \
"for libao support" &&

-optional_depends libffado \
- "--enable-ffado" \
- "--disable-ffado" \
- "for libffado (FireWire) support" &&
-
-optional_depends liblastfm \
- "--enable-lastfm" \
- "--disable-lastfm" \
- "for last.fm radio support" &&
-
optional_depends yajl \
"--enable-soundcloud" \
"--disable-soundcloud" \
@@ -178,10 +171,16 @@ optional_depends LIBAVCODEC \
"--enable-ffmpeg" \
"--disable-ffmpeg" \
"for FFMPEG support" &&
+
if is_depends_enabled $SPELL ffmpeg; then
sub_depends ffmpeg STABLE
fi &&

+optional_depends libmpdclient \
+ "--enable-libmpdclient" \
+ "--disable-libmpdclient" \
+ "for MPD client support" &&
+
optional_depends OPENAL \
"--enable-openal" \
"--disable-openal" \
@@ -197,11 +196,6 @@ optional_depends libcdio-paranoia \
"--disable-cdio-paranoia" \
"for audio CD support" &&

-optional_depends libsoup \
- "--enable-soup" \
- "--disable-soup" \
- "for libsoup HTTP streaming support" &&
-
optional_depends avahi \
"--with-zeroconf=avahi" \
"--with-zeroconf=no" \
diff --git a/audio-players/mpd/DETAILS b/audio-players/mpd/DETAILS
index 03acd06..2151b61 100755
--- a/audio-players/mpd/DETAILS
+++ b/audio-players/mpd/DETAILS
@@ -1,10 +1,10 @@
SPELL=mpd
- VERSION=0.18.9
+ VERSION=0.18.13
BRANCH=`echo $VERSION | cut -d . -f 1,2`
SOURCE=$SPELL-$VERSION.tar.xz
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE_URL[0]=http://www.musicpd.org/download/$SPELL/$BRANCH/$SOURCE
-
SOURCE_HASH=sha512:12e45e14108cce0a3a993b6d17dfc05ed7d14ea99cce85f202904b9bf1624bfecadbd4d465e3c9057822691a1a245e67524229b160fceb2f72d27d6a8bd56479
+
SOURCE_HASH=sha512:f68f8faaa96493a30cbc7b8eedcdc05b2aafb7e29fe14678454b13fda34eff56351953df80df55a8e4df6fef7d0adad8534beb694056897971fca70c1db55d51
LICENSE[0]=GPL
KEYWORDS="music players audio"
WEB_SITE=http://www.musicpd.org/
diff --git a/audio-players/mpd/HISTORY b/audio-players/mpd/HISTORY
index da518dc..c61604a 100644
--- a/audio-players/mpd/HISTORY
+++ b/audio-players/mpd/HISTORY
@@ -1,3 +1,9 @@
+2014-09-02 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 0.18.13
+ * CONFIGURE: removed obsolete options
+ * DEPENDS: removed obsolete dependencies: libffado, lastfm, libsoup;
+ added missing dependencies: libmpdclient, gcc; updated TODO list
+
2014-03-26 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: version 0.18.9




  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (6c12065a40bfa8acd805fee20b3e0c45a09e3129), Vlad Glagolev, 09/02/2014

Archive powered by MHonArc 2.6.24.

Top of Page