pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/audio/musicpd



Module Name:    pkgsrc
Committed By:   triaxx
Date:           Mon Oct 17 07:45:13 UTC 2022

Modified Files:
        pkgsrc/audio/musicpd: Makefile distinfo
Added Files:
        pkgsrc/audio/musicpd/patches: patch-src_archive_plugins_meson.build

Log Message:
musicpd: Update to 0.23.10

pkgsrc changes:
---------------
  * Fix archive plugins building error on MacOS when bzip2 and zziplib are
    disabled.

upstream changes:
-----------------
ver 0.23.10 (2022/10/14)
* storage
  - curl: fix file time stamps
* decoder
  - ffmpeg: fix libfmt 9 compiler warning
* encoder
  - flac: fix failure when libFLAC is built without Ogg support
* output
  - alsa: fix crash bug
* Windows
  - log to stdout by default, don't require "log_file" setting


To generate a diff of this commit:
cvs rdiff -u -r1.277 -r1.278 pkgsrc/audio/musicpd/Makefile
cvs rdiff -u -r1.141 -r1.142 pkgsrc/audio/musicpd/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/audio/musicpd/patches/patch-src_archive_plugins_meson.build

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/audio/musicpd/Makefile
diff -u pkgsrc/audio/musicpd/Makefile:1.277 pkgsrc/audio/musicpd/Makefile:1.278
--- pkgsrc/audio/musicpd/Makefile:1.277 Sun Sep 11 12:51:20 2022
+++ pkgsrc/audio/musicpd/Makefile       Mon Oct 17 07:45:13 2022
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.277 2022/09/11 12:51:20 wiz Exp $
+# $NetBSD: Makefile,v 1.278 2022/10/17 07:45:13 triaxx Exp $
 
-DISTNAME=      mpd-0.23.9
+DISTNAME=      mpd-0.23.10
 PKGNAME=       ${DISTNAME:S/mpd/musicpd/}
-PKGREVISION=   1
 CATEGORIES=    audio
 MASTER_SITES=  https://www.musicpd.org/download/mpd/${PKGVERSION_NOREV:R}/
 EXTRACT_SUFX=  .tar.xz

Index: pkgsrc/audio/musicpd/distinfo
diff -u pkgsrc/audio/musicpd/distinfo:1.141 pkgsrc/audio/musicpd/distinfo:1.142
--- pkgsrc/audio/musicpd/distinfo:1.141 Mon Aug 22 10:59:45 2022
+++ pkgsrc/audio/musicpd/distinfo       Mon Oct 17 07:45:13 2022
@@ -1,9 +1,10 @@
-$NetBSD: distinfo,v 1.141 2022/08/22 10:59:45 wiz Exp $
+$NetBSD: distinfo,v 1.142 2022/10/17 07:45:13 triaxx Exp $
 
-BLAKE2s (mpd-0.23.9.tar.xz) = 3e1cfa083da618d6bc5a8a67ab282e997dd8e81d9feb288e447c8e3085e9bda1
-SHA512 (mpd-0.23.9.tar.xz) = 67db093e35693f79267f955463ecaa284773b5e47a38f1548a0d16c9ba82aecc3434fd805e224b78782c5978c07e16d26f7632823e536f5304f557985f028d6e
-Size (mpd-0.23.9.tar.xz) = 774156 bytes
+BLAKE2s (mpd-0.23.10.tar.xz) = d5a0293945c3932381fad5418c1b554a0a82d1eed08e5c5b492c2995de79517a
+SHA512 (mpd-0.23.10.tar.xz) = 15e51a1fab2e187529141ebb25f0bb6cc9c2ad5127c1a9f4c40d1a944ed5bc4e7e76b26eb71f659ddd8a5ce448089e6d3dcf0c302ced8a4d08951ef1b1f09c49
+Size (mpd-0.23.10.tar.xz) = 774196 bytes
 SHA1 (patch-doc_mpd.conf.5.rst) = ee22092564075cdf7917e4e66687f6ab98b5817c
+SHA1 (patch-src_archive_plugins_meson.build) = 6405df1516b765051a9c09d644ebde882a2dca9f
 SHA1 (patch-src_decoder_plugins_meson.build) = 8033d6e19da05f472f14f3562a5dfc2f410da98b
 SHA1 (patch-src_net_IPv6Address.hxx) = f89b838ad5e946c5db8d95a6dd560e02bdccae29
 SHA1 (patch-src_util_WStringAPI.hxx) = 92f39096770943c26d8aaae8a7581d4daca2d233

Added files:

Index: pkgsrc/audio/musicpd/patches/patch-src_archive_plugins_meson.build
diff -u /dev/null pkgsrc/audio/musicpd/patches/patch-src_archive_plugins_meson.build:1.1
--- /dev/null   Mon Oct 17 07:45:13 2022
+++ pkgsrc/audio/musicpd/patches/patch-src_archive_plugins_meson.build  Mon Oct 17 07:45:13 2022
@@ -0,0 +1,21 @@
+$NetBSD: patch-src_archive_plugins_meson.build,v 1.1 2022/10/17 07:45:13 triaxx Exp $
+
+Fix building on MacOS when bzip2 and zziplib are disabled. The libarchive
+plugin cannot be created since ar doesn't seem to want to create empty library.
+Patch submitted upstream: https://github.com/MusicPlayerDaemon/MPD/issues/1650
+
+--- src/archive/plugins/meson.build.orig       2022-10-14 21:51:41.000000000 +0000
++++ src/archive/plugins/meson.build
+@@ -22,6 +22,7 @@ if libzzip_dep.found()
+   found_archive_plugin = true
+ endif
+ 
++if libiso9660_dep.found() or libbz2_dep.found() or libzzip_dep.found()
+ archive_plugins = static_library(
+   'archive_plugins',
+   archive_plugins_sources,
+@@ -40,3 +41,4 @@ archive_plugins_dep = declare_dependency
+     input_glue_dep,
+   ],
+ )
++endif



Home | Main Index | Thread Index | Old Index