svn commit: r498057 - in branches/2019Q2/audio/musicpd: . files
Thomas Zander
riggs at FreeBSD.org
Sat Apr 6 06:43:55 UTC 2019
Author: riggs
Date: Sat Apr 6 06:43:53 2019
New Revision: 498057
URL: https://svnweb.freebsd.org/changeset/ports/498057
Log:
MFH: r498056
Update to upstream release 0.21.7
Details:
- Mostly bug fixes, see upstream changelog:
https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.21.7/NEWS
- Add NFS support via libnfs as non-default OPTION
Approved by: ports-secteam (riggs)
Added:
branches/2019Q2/audio/musicpd/files/patch-src_lib_nfs_Error.cxx
- copied unchanged from r498056, head/audio/musicpd/files/patch-src_lib_nfs_Error.cxx
Modified:
branches/2019Q2/audio/musicpd/Makefile
branches/2019Q2/audio/musicpd/distinfo
Directory Properties:
branches/2019Q2/ (props changed)
Modified: branches/2019Q2/audio/musicpd/Makefile
==============================================================================
--- branches/2019Q2/audio/musicpd/Makefile Sat Apr 6 06:40:43 2019 (r498056)
+++ branches/2019Q2/audio/musicpd/Makefile Sat Apr 6 06:43:53 2019 (r498057)
@@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= musicpd
-PORTVERSION= 0.21.6
-PORTREVISION= 1
+PORTVERSION= 0.21.7
CATEGORIES= audio ipv6
MASTER_SITES= https://www.musicpd.org/download/mpd/${PORTVERSION:R}/
DISTNAME= mpd-${PORTVERSION}
@@ -54,7 +53,8 @@ OPTIONS_MULTI_FILE_FORMAT= \
OPTIONS_GROUP= ACCESS PLAYBACK
-OPTIONS_GROUP_ACCESS= CDPARANOIA CURL MMS PLAYLISTS QOBUZ SMB SOUNDCLOUD TIDAL YAJL
+OPTIONS_GROUP_ACCESS= CDPARANOIA CURL MMS NFS PLAYLISTS QOBUZ \
+ SMB SOUNDCLOUD TIDAL YAJL
OPTIONS_GROUP_PLAYBACK= AO JACK OPENAL PULSEAUDIO \
SHOUTCAST SNDIO
@@ -76,8 +76,8 @@ WILDMIDI_DESC= WildMIDI support (MIDI files)
YAJL_DESC= JSON support via libyajl
ZZIP_DESC= Support for zzip archives
-OPTIONS_DEFAULT=AUDIOFILE CURL FFMPEG FLAC ID3TAG MAD PLAYLISTS SNDFILE \
- VORBIS VORBISENC
+OPTIONS_DEFAULT=AUDIOFILE CURL FFMPEG FLAC ID3TAG MAD \
+ PLAYLISTS SNDFILE VORBIS VORBISENC
# Decoder plugins
ADPLUG_MESON_ENABLED= adplug
@@ -106,7 +106,9 @@ MPG123_MESON_ENABLED= mpg123
MPG123_LIB_DEPENDS= libmpg123.so:audio/mpg123
MUSEPACK_MESON_ENABLED= mpcdec
MUSEPACK_LIB_DEPENDS= libmpcdec.so:audio/musepack
-OPUS_MESON_ENABLED= opus
+NFS_MESON_ENABLED= nfs
+NFS_LIB_DEPENDS= libnfs.so:net/libnfs
+OPUS_MESON_ENABLED= opus
OPUS_LIB_DEPENDS= libopus.so:audio/opus \
libogg.so:audio/libogg
PLAYLISTS_MESON_ENABLED=expat
Modified: branches/2019Q2/audio/musicpd/distinfo
==============================================================================
--- branches/2019Q2/audio/musicpd/distinfo Sat Apr 6 06:40:43 2019 (r498056)
+++ branches/2019Q2/audio/musicpd/distinfo Sat Apr 6 06:43:53 2019 (r498057)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1553120841
-SHA256 (mpd-0.21.6.tar.xz) = 8d4d116acc069872ba68741016d284885e93f8558a88d0c7ed246b8e1f40e59f
-SIZE (mpd-0.21.6.tar.xz) = 669272
+TIMESTAMP = 1554477669
+SHA256 (mpd-0.21.7.tar.xz) = 512062bc529bee04d4ccfaa2c6e720afc85bb071e49850a096b5ed518b3b412c
+SIZE (mpd-0.21.7.tar.xz) = 670268
Copied: branches/2019Q2/audio/musicpd/files/patch-src_lib_nfs_Error.cxx (from r498056, head/audio/musicpd/files/patch-src_lib_nfs_Error.cxx)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2019Q2/audio/musicpd/files/patch-src_lib_nfs_Error.cxx Sat Apr 6 06:43:53 2019 (r498057, copy of r498056, head/audio/musicpd/files/patch-src_lib_nfs_Error.cxx)
@@ -0,0 +1,19 @@
+--- src/lib/nfs/Error.cxx.orig 2019-04-03 10:23:57 UTC
++++ src/lib/nfs/Error.cxx
+@@ -33,12 +33,13 @@
+ #include "Error.hxx"
+ #include "util/StringFormat.hxx"
+
++#include <assert.h>
++#include <string.h>
++#include <sys/time.h>
++
+ extern "C" {
+ #include <nfsc/libnfs.h>
+ }
+-
+-#include <assert.h>
+-#include <string.h>
+
+ static StringBuffer<256>
+ FormatNfsClientError(struct nfs_context *nfs, const char *msg) noexcept
More information about the svn-ports-branches
mailing list