From owner-svn-ports-head@freebsd.org Tue Oct 16 18:48:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBA4610DD8D8; Tue, 16 Oct 2018 18:48:00 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7226F79EE6; Tue, 16 Oct 2018 18:48:00 +0000 (UTC) (envelope-from riggs@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 6CFCA207CA; Tue, 16 Oct 2018 18:48:00 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9GIm0EW068599; Tue, 16 Oct 2018 18:48:00 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9GIm01m068598; Tue, 16 Oct 2018 18:48:00 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201810161848.w9GIm01m068598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Tue, 16 Oct 2018 18:48:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482238 - in head/audio/musicpd: . files X-SVN-Group: ports-head X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in head/audio/musicpd: . files X-SVN-Commit-Revision: 482238 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.27 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: Tue, 16 Oct 2018 18:48:00 -0000 Author: riggs Date: Tue Oct 16 18:47:59 2018 New Revision: 482238 URL: https://svnweb.freebsd.org/changeset/ports/482238 Log: Fix SIGABRT in IsFileNotFound (e.g. when creating an empty database) While on it: - Add USES=gnome due to complaint in check-sanity PR: 232030 Reported by: korsani@free.fr MFH: 2018Q4 Added: head/audio/musicpd/files/patch-src_input_Error.hxx (contents, props changed) Modified: head/audio/musicpd/Makefile Modified: head/audio/musicpd/Makefile ============================================================================== --- head/audio/musicpd/Makefile Tue Oct 16 17:37:56 2018 (r482237) +++ head/audio/musicpd/Makefile Tue Oct 16 18:47:59 2018 (r482238) @@ -2,7 +2,7 @@ PORTNAME= musicpd PORTVERSION= 0.20.21 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio ipv6 MASTER_SITES= http://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} @@ -18,7 +18,7 @@ BROKEN_powerpc64= Does not build on powerpc64 LIB_DEPENDS= libboost_iostreams.so:devel/boost-libs \ libicudata.so:devel/icu -USES= compiler:c++14-lang gmake pkgconfig tar:xz +USES= compiler:c++14-lang gmake gnome pkgconfig tar:xz GNU_CONFIGURE= yes USE_GNOME= glib20 Added: head/audio/musicpd/files/patch-src_input_Error.hxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/musicpd/files/patch-src_input_Error.hxx Tue Oct 16 18:47:59 2018 (r482238) @@ -0,0 +1,10 @@ +--- src/input/Error.hxx.orig 2018-07-06 17:17:27 UTC ++++ src/input/Error.hxx +@@ -30,7 +30,6 @@ + * exist? This function attempts to recognize exceptions thrown by + * various input plugins. + */ +-gcc_pure + bool + IsFileNotFound(std::exception_ptr e); +