diff options
author | mef <mef@pkgsrc.org> | 2016-07-10 13:38:57 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2016-07-10 13:38:57 +0000 |
commit | ee4b5ede1e81968d1fe1af117eecc0ef025059f1 (patch) | |
tree | cc7fba407ab572c1eebc117ac97990ca19ffafb1 /audio/musicpd | |
parent | 35e9148485002713319881a36a9ff8953e17b5f9 (diff) | |
download | pkgsrc-ee4b5ede1e81968d1fe1af117eecc0ef025059f1.tar.gz |
Updated audio/musicpd to 0.19.17
--------------------------------
ver 0.19.17 (2016/07/09)
* decoder
- flac: fix assertion failure while seeking
- flac: fix stream duration indicator
- fix seek problems in several plugins
* fix spurious seek error "Failed to allocate silence buffer"
* replay gain: fix "replay_gain_handler mixer" setting
* DSD: use 0x69 as silence pattern
* fix use-after-free bug on "close" and "kill"
Diffstat (limited to 'audio/musicpd')
-rw-r--r-- | audio/musicpd/Makefile | 4 | ||||
-rw-r--r-- | audio/musicpd/distinfo | 12 | ||||
-rw-r--r-- | audio/musicpd/patches/patch-src_system_ByteOrder.hxx | 10 |
3 files changed, 17 insertions, 9 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile index e8586a9391c..22091471d1a 100644 --- a/audio/musicpd/Makefile +++ b/audio/musicpd/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.121 2016/07/05 00:19:59 maya Exp $ +# $NetBSD: Makefile,v 1.122 2016/07/10 13:38:57 mef Exp $ -DISTNAME= mpd-0.19.16 +DISTNAME= mpd-0.19.17 PKGNAME= ${DISTNAME:S/mpd/musicpd/} CATEGORIES= audio MASTER_SITES= http://www.musicpd.org/download/mpd/0.19/ diff --git a/audio/musicpd/distinfo b/audio/musicpd/distinfo index c0cc0e5ef3a..5a4f489fbd9 100644 --- a/audio/musicpd/distinfo +++ b/audio/musicpd/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.71 2016/06/19 20:34:38 wiz Exp $ +$NetBSD: distinfo,v 1.72 2016/07/10 13:38:57 mef Exp $ -SHA1 (mpd-0.19.16.tar.xz) = 2b110898c8365ce69a8cedd01db2404748c4c09c -RMD160 (mpd-0.19.16.tar.xz) = 2c8dfe04c2d81bc401e1dbf1c19c1f2950057da5 -SHA512 (mpd-0.19.16.tar.xz) = f1a733ed814ccee12528fa917865f713557b86056273a317564b8c98237afc0b46dc8391f44e5a8c6218c37d398b96eb1e5e7de5f9128d9ce7ad4e043324f5fa -Size (mpd-0.19.16.tar.xz) = 704660 bytes +SHA1 (mpd-0.19.17.tar.xz) = 88d98884a262af3be74e2791ae9e5eb898f6dfbb +RMD160 (mpd-0.19.17.tar.xz) = 23ef08686dcaae82428690b137c5447f0bcad164 +SHA512 (mpd-0.19.17.tar.xz) = 352f086efd8129e537be07a8a6fe121f94f19c83e3c4d4c5b8dca8f69776d5f92a6fff3e220169cfb9a21115de9c6198f847bcea80fc401fbfe80adf85ed193a +Size (mpd-0.19.17.tar.xz) = 704408 bytes SHA1 (patch-src_output_plugins_httpd_HttpdOutputPlugin.cxx) = b47d79cc49a27d732a7531e23d666bf9df748bec -SHA1 (patch-src_system_ByteOrder.hxx) = 955af2aacf1c0a98c4c57728e1283eba81b457e7 +SHA1 (patch-src_system_ByteOrder.hxx) = cb8b9b783d790671fb82760ee9ec740db7184df0 diff --git a/audio/musicpd/patches/patch-src_system_ByteOrder.hxx b/audio/musicpd/patches/patch-src_system_ByteOrder.hxx index 9de6502e4a9..4f7c5d354c8 100644 --- a/audio/musicpd/patches/patch-src_system_ByteOrder.hxx +++ b/audio/musicpd/patches/patch-src_system_ByteOrder.hxx @@ -1,4 +1,12 @@ -$NetBSD: patch-src_system_ByteOrder.hxx,v 1.4 2015/04/06 00:08:34 mrg Exp $ +$NetBSD: patch-src_system_ByteOrder.hxx,v 1.5 2016/07/10 13:38:58 mef Exp $ + +r 1.1 +patches/patch-src_system_ByteOrder.hxx: + Fix compilation error on Darwin/ppc + +r 1.4 +also look in <machine/endian.h> on netbsd for endian info (fixes +non x86, mipsel and armel builds.) --- 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 |