diff options
author | Thomas Zander <riggs@FreeBSD.org> | 2021-06-27 12:00:54 +0000 |
---|---|---|
committer | Thomas Zander <riggs@FreeBSD.org> | 2021-06-29 04:29:25 +0000 |
commit | 603f5e784d1b2b57583722fac4d06a9386ad535b (patch) | |
tree | debc85cdef6279f0ee2aae21e206618c84773017 | |
parent | de0f70ed2f4f87a3e464443703e060077d40a722 (diff) | |
download | ports-603f5e784d1b2b57583722fac4d06a9386ad535b.tar.gz ports-603f5e784d1b2b57583722fac4d06a9386ad535b.zip |
audio/musicpd: Update to upstream version 0.22.9.
Details:
- Bugfix release, see
https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.22.9/NEWS
-rw-r--r-- | audio/musicpd/Makefile | 2 | ||||
-rw-r--r-- | audio/musicpd/distinfo | 6 | ||||
-rw-r--r-- | audio/musicpd/files/patch-meson.build | 26 |
3 files changed, 17 insertions, 17 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile index 832ed89b8bbe..b9b78abf0bb7 100644 --- a/audio/musicpd/Makefile +++ b/audio/musicpd/Makefile @@ -1,5 +1,5 @@ PORTNAME= musicpd -PORTVERSION= 0.22.8 +PORTVERSION= 0.22.9 CATEGORIES= audio MASTER_SITES= https://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} diff --git a/audio/musicpd/distinfo b/audio/musicpd/distinfo index 5f27a804ba35..2685e051fc31 100644 --- a/audio/musicpd/distinfo +++ b/audio/musicpd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1621766947 -SHA256 (mpd-0.22.8.tar.xz) = 9617ed08c9ffafcf5f925819251f6b90df3f4f73cf2838c41033e1962104286d -SIZE (mpd-0.22.8.tar.xz) = 737368 +TIMESTAMP = 1624793348 +SHA256 (mpd-0.22.9.tar.xz) = f937403297c2240bd4a569f4b937ee7ab17398a5284ba9df4d6d4c3a0512bc64 +SIZE (mpd-0.22.9.tar.xz) = 738432 diff --git a/audio/musicpd/files/patch-meson.build b/audio/musicpd/files/patch-meson.build index 8301949a8f5e..588e13b10505 100644 --- a/audio/musicpd/files/patch-meson.build +++ b/audio/musicpd/files/patch-meson.build @@ -1,22 +1,22 @@ ---- meson.build.orig 2020-11-06 15:12:54 UTC +--- meson.build.orig 2021-06-23 18:56:13 UTC +++ meson.build -@@ -79,10 +79,14 @@ test_cxxflags = test_common_flags + [ - '-Wno-non-virtual-dtor', - ] +@@ -28,6 +28,14 @@ elif compiler.get_id() == 'clang' and compiler.version + warning('Your clang version is too old. You need at least version 7.') + endif +test_ldflags = [ +] + - if compiler.get_id() == 'clang' - # Workaround for clang bug - # https://bugs.llvm.org/show_bug.cgi?id=32611 - test_cxxflags += '-funwind-tables' ++if compiler.get_id() == 'clang' ++ # This can probably go away after FreeBSD 11 is EOL'd + test_ldflags += '-fuse-ld=%%MPD_CLANG_LD%%' - endif - - test_cflags = test_common_flags + [ -@@ -95,7 +99,7 @@ test_cflags = test_common_flags + [ - '-pedantic', ++endif ++ + version_conf = configuration_data() + version_conf.set_quoted('PACKAGE', meson.project_name()) + version_conf.set_quoted('PACKAGE_NAME', meson.project_name()) +@@ -102,7 +110,7 @@ test_cflags = test_common_flags + [ + '-Wwrite-strings', ] -test_ldflags = [ |