From owner-svn-ports-all@freebsd.org Tue Oct 16 19:00:23 2018 Return-Path: Delivered-To: svn-ports-all@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 7B09410DDDEC; Tue, 16 Oct 2018 19:00:23 +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 312417A57F; Tue, 16 Oct 2018 19:00:23 +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 123BA2097C; Tue, 16 Oct 2018 19:00:23 +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 w9GJ0MUS073846; Tue, 16 Oct 2018 19:00:22 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9GJ0MNw073844; Tue, 16 Oct 2018 19:00:22 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201810161900.w9GJ0MNw073844@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 19:00:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r482239 - in branches/2018Q4/audio/musicpd: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in branches/2018Q4/audio/musicpd: . files X-SVN-Commit-Revision: 482239 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2018 19:00:23 -0000 Author: riggs Date: Tue Oct 16 19:00:22 2018 New Revision: 482239 URL: https://svnweb.freebsd.org/changeset/ports/482239 Log: MFH: r482042 r482238 Enable VORBISENC by default for httpd streaming with the default package Additionally: - Bump PORTREVISION - Pet portlint Reported by: bapt 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 Approved by: ports-secteam (riggs) Added: branches/2018Q4/audio/musicpd/files/patch-src_input_Error.hxx - copied unchanged from r482238, head/audio/musicpd/files/patch-src_input_Error.hxx Modified: branches/2018Q4/audio/musicpd/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/audio/musicpd/Makefile ============================================================================== --- branches/2018Q4/audio/musicpd/Makefile Tue Oct 16 18:47:59 2018 (r482238) +++ branches/2018Q4/audio/musicpd/Makefile Tue Oct 16 19:00:22 2018 (r482239) @@ -2,7 +2,7 @@ PORTNAME= musicpd PORTVERSION= 0.20.21 -PORTREVISION= 1 +PORTREVISION= 3 CATEGORIES= audio ipv6 MASTER_SITES= http://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} @@ -13,10 +13,13 @@ COMMENT= Remote-controllable music daemon LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +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 @@ -29,8 +32,6 @@ LDFLAGS+= -L${LOCALBASE}/lib -L${LOCALBASE}/lib/sidpla #Workaround (transient?) link error with libwrap CONFIGURE_ARGS+=--disable-libwrap -BROKEN_powerpc64= Does not build on powerpc64 - PORTDOCS= AUTHORS README.md NEWS SUB_FILES= pkg-message @@ -68,7 +69,8 @@ VORBISENC_DESC= Ogg Vorbis encoder WILDMIDI_DESC= WildMIDI support (MIDI files) YAJL_DESC= SoundCloud support via libyajl -OPTIONS_DEFAULT=HTTPD ID3TAG MAD OSS FLAC VORBIS WAV FFMPEG SNDFILE CURL +OPTIONS_DEFAULT=HTTPD ID3TAG MAD OSS FLAC VORBIS WAV FFMPEG SNDFILE \ + CURL VORBISENC AAC_CONFIGURE_ENABLE=aac AAC_LIB_DEPENDS=libfaad.so:audio/faad Copied: branches/2018Q4/audio/musicpd/files/patch-src_input_Error.hxx (from r482238, head/audio/musicpd/files/patch-src_input_Error.hxx) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q4/audio/musicpd/files/patch-src_input_Error.hxx Tue Oct 16 19:00:22 2018 (r482239, copy of r482238, head/audio/musicpd/files/patch-src_input_Error.hxx) @@ -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); +