summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2016-08-24 10:04:54 +0000
committerwiz <wiz@pkgsrc.org>2016-08-24 10:04:54 +0000
commit89cfd25ea39baa0b51070f3ea1c4eb675d7acb7a (patch)
tree56be570d8cb1d9795930b846407b3fe07f5b5e12 /audio
parent2c83bbde9fa00ddfcdf2a5f392cfcb0077f319c4 (diff)
downloadpkgsrc-89cfd25ea39baa0b51070f3ea1c4eb675d7acb7a.tar.gz
Updated musicpd to 0.19.19.
ver 0.19.19 (2016/08/23) * decoder - ffmpeg: bug fix for FFmpeg 3.1 support - wildmidi: support libWildMidi 0.4 * output - pulse: support 32 bit, 24 bit and floating point playback * support non-x86 NetBSD * fix clang 3.9 warnings
Diffstat (limited to 'audio')
-rw-r--r--audio/musicpd/Makefile5
-rw-r--r--audio/musicpd/distinfo11
-rw-r--r--audio/musicpd/patches/patch-src_system_ByteOrder.hxx17
3 files changed, 7 insertions, 26 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile
index 4f8ddc5927b..e4f471ee09a 100644
--- a/audio/musicpd/Makefile
+++ b/audio/musicpd/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.128 2016/08/20 10:20:03 wiz Exp $
+# $NetBSD: Makefile,v 1.129 2016/08/24 10:04:54 wiz Exp $
-DISTNAME= mpd-0.19.18
+DISTNAME= mpd-0.19.19
PKGNAME= ${DISTNAME:S/mpd/musicpd/}
-PKGREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://www.musicpd.org/download/mpd/0.19/
#MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=musicpd/}
diff --git a/audio/musicpd/distinfo b/audio/musicpd/distinfo
index 2c240c01752..33dd5612062 100644
--- a/audio/musicpd/distinfo
+++ b/audio/musicpd/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.73 2016/08/19 13:52:39 wiz Exp $
+$NetBSD: distinfo,v 1.74 2016/08/24 10:04:54 wiz Exp $
-SHA1 (mpd-0.19.18.tar.xz) = 41065043589208db1100c5a3f3c15fbd3ac87669
-RMD160 (mpd-0.19.18.tar.xz) = 55897faeed50c6b8d151aa4196dc723c3d242ba2
-SHA512 (mpd-0.19.18.tar.xz) = 9674a8e9d2086373c59d3ce66bddb70e914f863dc384a283071ac8003ddae304d7020fc654db72c6f4aa30cb18e67dadd3d0a62069538a7ec666c3076e7bc1f8
-Size (mpd-0.19.18.tar.xz) = 707252 bytes
+SHA1 (mpd-0.19.19.tar.xz) = 8c281b823825cab6677cb142b564acbf09a2874d
+RMD160 (mpd-0.19.19.tar.xz) = ecaf3952fda5f3aaec92d38c9fd3aac33397bf5c
+SHA512 (mpd-0.19.19.tar.xz) = 949bfab2aa5dffb4089ce2023accc934648091d36768f8e4c75f62b4038e21db1e2ef3bb07a0f1cf6a91d0532cac8e7146be948d84dc4d7cdc5b252b7d815b64
+Size (mpd-0.19.19.tar.xz) = 707356 bytes
SHA1 (patch-src_output_plugins_httpd_HttpdOutputPlugin.cxx) = b47d79cc49a27d732a7531e23d666bf9df748bec
-SHA1 (patch-src_system_ByteOrder.hxx) = b951d17e3120bbff82b76f4cbaba9a3206b04688
diff --git a/audio/musicpd/patches/patch-src_system_ByteOrder.hxx b/audio/musicpd/patches/patch-src_system_ByteOrder.hxx
deleted file mode 100644
index 0f03801a36d..00000000000
--- a/audio/musicpd/patches/patch-src_system_ByteOrder.hxx
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-src_system_ByteOrder.hxx,v 1.6 2016/08/19 13:52:39 wiz Exp $
-
-also look in <machine/endian.h> on netbsd for endian info (fixes
-non x86, mipsel and armel builds.)
-https://bugs.musicpd.org/view.php?id=4569
-
---- src/system/ByteOrder.hxx.orig 2014-08-23 05:29:55.000000000 -0700
-+++ src/system/ByteOrder.hxx 2015-04-05 16:29:48.000000000 -0700
-@@ -40,7 +40,7 @@
- /* well-known big-endian */
- # define IS_LITTLE_ENDIAN false
- # define IS_BIG_ENDIAN true
--#elif defined(__APPLE__)
-+#elif defined(__APPLE__) || defined(__NetBSD__)
- /* compile-time check for MacOS */
- # include <machine/endian.h>
- # if BYTE_ORDER == LITTLE_ENDIAN