From owner-svn-ports-head@freebsd.org Mon Oct 19 05:53:57 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A87DA445A3C; Mon, 19 Oct 2020 05:53:57 +0000 (UTC) (envelope-from rhurlin@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CF5Y13z0Mz476Q; Mon, 19 Oct 2020 05:53:57 +0000 (UTC) (envelope-from rhurlin@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6BAFE1EBE7; Mon, 19 Oct 2020 05:53:57 +0000 (UTC) (envelope-from rhurlin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09J5rvU6035364; Mon, 19 Oct 2020 05:53:57 GMT (envelope-from rhurlin@FreeBSD.org) Received: (from rhurlin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09J5rujX035360; Mon, 19 Oct 2020 05:53:56 GMT (envelope-from rhurlin@FreeBSD.org) Message-Id: <202010190553.09J5rujX035360@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rhurlin set sender to rhurlin@FreeBSD.org using -f From: Rainer Hurling Date: Mon, 19 Oct 2020 05:53:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r552711 - in head/audio/ncmpc: . files X-SVN-Group: ports-head X-SVN-Commit-Author: rhurlin X-SVN-Commit-Paths: in head/audio/ncmpc: . files X-SVN-Commit-Revision: 552711 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Oct 2020 05:53:57 -0000 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 (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 + #include + + 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 ++ + 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