summaryrefslogtreecommitdiff
path: root/audio/ncmpc
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2020-12-03 13:29:08 +0000
committernia <nia@pkgsrc.org>2020-12-03 13:29:08 +0000
commitabe93ce67737a4bb3d74a89df0b25c712ebe4545 (patch)
treec3d5cba1582ca55d4a408dbf3134e81d7e0cd9b2 /audio/ncmpc
parent8de07ca51e5c97ece47619c50d7435b8909b6bdf (diff)
downloadpkgsrc-abe93ce67737a4bb3d74a89df0b25c712ebe4545.tar.gz
ncmpc: Update to 0.42
ncmpc 0.42 - (2020-10-28) * file page: repaint after moving cursor with mouse * file page: handle mouse click on directory * library page: mouse support * suppor the mouse wheel * fix assertion failure on exit ncmpc 0.41 - (2020-10-16) * new main loop (copying code from MPD, replacing boost::asio) * library page: fix crash bug * lyrics: remove the "lyricwiki" plugin because the site is gone ncmpc 0.40 - (2020-10-07) * fix crash when range selection includes ".." * fix another crash with a very narrow terminal window * another jumping cursor fix for large scroll-offset values * show elapsed time of streams
Diffstat (limited to 'audio/ncmpc')
-rw-r--r--audio/ncmpc/Makefile4
-rw-r--r--audio/ncmpc/distinfo11
-rw-r--r--audio/ncmpc/patches/patch-src_signals.cxx14
3 files changed, 22 insertions, 7 deletions
diff --git a/audio/ncmpc/Makefile b/audio/ncmpc/Makefile
index 4a678eea321..994f1460434 100644
--- a/audio/ncmpc/Makefile
+++ b/audio/ncmpc/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.40 2020/08/30 12:09:31 nia Exp $
+# $NetBSD: Makefile,v 1.41 2020/12/03 13:29:08 nia Exp $
-DISTNAME= ncmpc-0.39
+DISTNAME= ncmpc-0.42
CATEGORIES= audio
MASTER_SITES= https://musicpd.org/download/ncmpc/0/
EXTRACT_SUFX= .tar.xz
diff --git a/audio/ncmpc/distinfo b/audio/ncmpc/distinfo
index 9244f4c9cd2..57d778062f0 100644
--- a/audio/ncmpc/distinfo
+++ b/audio/ncmpc/distinfo
@@ -1,10 +1,11 @@
-$NetBSD: distinfo,v 1.24 2020/08/30 12:09:31 nia Exp $
+$NetBSD: distinfo,v 1.25 2020/12/03 13:29:08 nia Exp $
-SHA1 (ncmpc-0.39.tar.xz) = 88988a6957ad3e4fbf1ccd32a3a73115a071653a
-RMD160 (ncmpc-0.39.tar.xz) = 2e35de36d1633fa2e69394fcbdf54757206c6b25
-SHA512 (ncmpc-0.39.tar.xz) = bfadc58bf8b66bff08608f561f689a50fd412b87975998ce23751fd312fa009eeba4b48b4afe96391b2ecb184c00c366262e9b96e24d2ce2ab2af6a4002721d9
-Size (ncmpc-0.39.tar.xz) = 242968 bytes
+SHA1 (ncmpc-0.42.tar.xz) = 071150e20ef9ea81ff78d7f3d697b653d6f472f3
+RMD160 (ncmpc-0.42.tar.xz) = 845a5c4832a876b9fb5ae295b849a9fd7e107098
+SHA512 (ncmpc-0.42.tar.xz) = fc232d501bea68d7a382eda7f532f62189233c49071f083dbc4f2fc188015c58dd247e84e998aef121f204059801cf09b0a2f1214deea785abea343217ce5798
+Size (ncmpc-0.42.tar.xz) = 271216 bytes
SHA1 (patch-doc_meson.build) = 5052b9eef5057f50dcbcea8d5bb46027263edb46
SHA1 (patch-meson.build) = b16babee9f8e5799a600bf029b3bb606e32a265a
SHA1 (patch-src_charset.cxx) = c8e06c936657819060c6539a3726e03fda7da54a
SHA1 (patch-src_ncu.cxx) = 93ab60c406f8ef29fe23ffe6099d5825ee12bc13
+SHA1 (patch-src_signals.cxx) = d9d07c5f478f7f4af51daae6849efc8c5d5fbef6
diff --git a/audio/ncmpc/patches/patch-src_signals.cxx b/audio/ncmpc/patches/patch-src_signals.cxx
new file mode 100644
index 00000000000..ba57c509ef9
--- /dev/null
+++ b/audio/ncmpc/patches/patch-src_signals.cxx
@@ -0,0 +1,14 @@
+$NetBSD: patch-src_signals.cxx,v 1.1 2020/12/03 13:29:08 nia Exp $
+
+NetBSD needs signal.h included before sigaction can be used
+
+--- src/signals.cxx.orig 2020-10-28 21:06:48.000000000 +0000
++++ src/signals.cxx
+@@ -18,6 +18,7 @@
+ */
+
+ #include "Instance.hxx"
++#include <signal.h>
+
+ void
+ Instance::OnSigwinch() noexcept