Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Oct 2020 05:53:56 +0000 (UTC)
From:      Rainer Hurling <rhurlin@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r552711 - in head/audio/ncmpc: . files
Message-ID:  <202010190553.09J5rujX035360@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rhurlin
Date: Mon Oct 19 05:53:56 2020
New Revision: 552711
URL: https://svnweb.freebsd.org/changeset/ports/552711

Log:
  audio/ncmpc: Update to 0.41
  
  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
  
  ncmpc 0.39 - (2020-08-21)
  * library page: skip tags when there is only one value
  * fix jumping cursor with large scroll-offset values
  * key bindigs page: fix crash bug
  * key bindigs page: eliminate bogus message "Did you forget to Apply your changes?"
  
  Changelog: https://github.com/MusicPlayerDaemon/ncmpc/blob/89af16cad451e51c304e705fbcb2488f5f7e2c10/NEWS
  
  PR:		250421
  Submitted by:	Laurent Cimon <laurent@nilio.ca> (maintainer)
  Approved by:	tcberner (mentor)
  Differential Revision:	https://reviews.freebsd.org/D26837

Added:
  head/audio/ncmpc/files/
  head/audio/ncmpc/files/patch-src_screen__utils.cxx   (contents, props changed)
  head/audio/ncmpc/files/patch-src_signals.cxx   (contents, props changed)
Modified:
  head/audio/ncmpc/Makefile
  head/audio/ncmpc/distinfo
  head/audio/ncmpc/pkg-plist

Modified: head/audio/ncmpc/Makefile
==============================================================================
--- head/audio/ncmpc/Makefile	Mon Oct 19 05:34:20 2020	(r552710)
+++ head/audio/ncmpc/Makefile	Mon Oct 19 05:53:56 2020	(r552711)
@@ -2,9 +2,9 @@
 # $FreeBSD$
 
 PORTNAME=	ncmpc
-PORTVERSION=	0.38
+PORTVERSION=	0.41
 CATEGORIES=	audio
-MASTER_SITES=	http://www.musicpd.org/download/ncmpc/0/
+MASTER_SITES=	https://www.musicpd.org/download/ncmpc/0/
 
 MAINTAINER=	laurent@nilio.ca
 COMMENT=	Ncurses client for the musicpd

Modified: head/audio/ncmpc/distinfo
==============================================================================
--- head/audio/ncmpc/distinfo	Mon Oct 19 05:34:20 2020	(r552710)
+++ head/audio/ncmpc/distinfo	Mon Oct 19 05:53:56 2020	(r552711)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1589327824
-SHA256 (ncmpc-0.38.tar.xz) = 2bc1aa38aacd23131895cd9aa3abd9d1ca5700857034d9f35209e13e061e27a2
-SIZE (ncmpc-0.38.tar.xz) = 241780
+TIMESTAMP = 1602960213
+SHA256 (ncmpc-0.41.tar.xz) = 8a732a58fbec8a634625372a1c5c39f40724d6ca59320300b36ac0f15bec13ac
+SIZE (ncmpc-0.41.tar.xz) = 269280

Added: head/audio/ncmpc/files/patch-src_screen__utils.cxx
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/ncmpc/files/patch-src_screen__utils.cxx	Mon Oct 19 05:53:56 2020	(r552711)
@@ -0,0 +1,10 @@
+--- src/screen_utils.cxx.orig	2020-10-17 18:44:29 UTC
++++ src/screen_utils.cxx
+@@ -31,6 +31,7 @@
+ #include "WaitUserInput.hxx"
+ #endif
+ 
++#include <errno.h>
+ #include <string.h>
+ 
+ void

Added: head/audio/ncmpc/files/patch-src_signals.cxx
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/ncmpc/files/patch-src_signals.cxx	Mon Oct 19 05:53:56 2020	(r552711)
@@ -0,0 +1,11 @@
+--- src/signals.cxx.orig	2020-10-17 18:45:52 UTC
++++ src/signals.cxx
+@@ -19,6 +19,8 @@
+ 
+ #include "Instance.hxx"
+ 
++#include <signal.h>
++
+ void
+ Instance::OnSigwinch() noexcept
+ {

Modified: head/audio/ncmpc/pkg-plist
==============================================================================
--- head/audio/ncmpc/pkg-plist	Mon Oct 19 05:34:20 2020	(r552710)
+++ head/audio/ncmpc/pkg-plist	Mon Oct 19 05:53:56 2020	(r552711)
@@ -1,6 +1,5 @@
 bin/ncmpc
 %%LYRICS%%lib/ncmpc/lyrics/10-hd.sh
-%%LYRICS%%lib/ncmpc/lyrics/20-lyricwiki.rb
 %%MANPAGES%%man/man1/ncmpc.1.gz
 %%NLS%%share/locale/cs/LC_MESSAGES/ncmpc.mo
 %%NLS%%share/locale/da/LC_MESSAGES/ncmpc.mo



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010190553.09J5rujX035360>