From owner-svn-ports-all@freebsd.org Sun Jan 31 00:59:56 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 732B3A73187; Sun, 31 Jan 2016 00:59:56 +0000 (UTC) (envelope-from danfe@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 mx1.freebsd.org (Postfix) with ESMTPS id 4AB51D3D; Sun, 31 Jan 2016 00:59:56 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V0xt3S039300; Sun, 31 Jan 2016 00:59:55 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0V0xsbp039296; Sun, 31 Jan 2016 00:59:54 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201601310059.u0V0xsbp039296@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sun, 31 Jan 2016 00:59:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407566 - in head/audio/flacon: . files X-SVN-Group: ports-head 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.20 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: Sun, 31 Jan 2016 00:59:56 -0000 Author: danfe Date: Sun Jan 31 00:59:54 2016 New Revision: 407566 URL: https://svnweb.freebsd.org/changeset/ports/407566 Log: - Update to version 2.0.0 - Fix a typo: QT5_CMAKE_ARGS -> QT5_CMAKE_ON Added: head/audio/flacon/files/patch-inputaudiofile.cpp (contents, props changed) Modified: head/audio/flacon/Makefile head/audio/flacon/distinfo head/audio/flacon/pkg-plist Modified: head/audio/flacon/Makefile ============================================================================== --- head/audio/flacon/Makefile Sun Jan 31 00:47:45 2016 (r407565) +++ head/audio/flacon/Makefile Sun Jan 31 00:59:54 2016 (r407566) @@ -3,7 +3,7 @@ PORTNAME= flacon DISTVERSIONPREFIX= v -DISTVERSION= 1.2.0 +DISTVERSION= 2.0.0 CATEGORIES= audio MAINTAINER= danfe@FreeBSD.org @@ -20,7 +20,7 @@ USES= cmake desktop-file-utils pkgconfi OPTIONS_DEFINE= QT5 QT5_DESC= Build against Qt 5 instead of Qt 4 -QT5_CMAKE_ARGS= -DUSE_QT5:BOOL=ON +QT5_CMAKE_ON= -DUSE_QT5:BOOL=ON # :ts, would be handy here but is not available in fmake(1) QT5_USE= QT5=${_QT5_DEPS},${_QT5_BDEPS:C/,/_build&/g:%=_build} QT5_USE_OFF= QT4=${_QT4_DEPS},${_QT4_BDEPS:C/,/_build&/g:%=_build} Modified: head/audio/flacon/distinfo ============================================================================== --- head/audio/flacon/distinfo Sun Jan 31 00:47:45 2016 (r407565) +++ head/audio/flacon/distinfo Sun Jan 31 00:59:54 2016 (r407566) @@ -1,2 +1,2 @@ -SHA256 (flacon-flacon-v1.2.0_GH0.tar.gz) = 2ebc83d733ea6d50f2bd4ad8c20c65368be5eaf351e0195c9b4d47a54957b8f8 -SIZE (flacon-flacon-v1.2.0_GH0.tar.gz) = 283187 +SHA256 (flacon-flacon-v2.0.0_GH0.tar.gz) = abd6420d8c686bc19f148d9f4b220474939a998d9a214106b5a9c1e2058107f3 +SIZE (flacon-flacon-v2.0.0_GH0.tar.gz) = 317343 Added: head/audio/flacon/files/patch-inputaudiofile.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/flacon/files/patch-inputaudiofile.cpp Sun Jan 31 00:59:54 2016 (r407566) @@ -0,0 +1,22 @@ +--- inputaudiofile.cpp.orig 2016-01-29 18:07:49 UTC ++++ inputaudiofile.cpp +@@ -135,8 +135,8 @@ bool InputAudioFile::load() + { + qWarning("------------------------------------"); + qWarning() << "Test audio command:" << (shntool + " " + args.join(" ")); +- qWarning() << "shntool info waitForFinished faild"; +- qWarning(proc.readAllStandardError()); ++ qWarning() << "shntool info waitForFinished failed"; ++ qWarning() << proc.readAllStandardError(); + qWarning("------------------------------------"); + return false; + } +@@ -147,7 +147,7 @@ bool InputAudioFile::load() + qWarning("------------------------------------"); + qWarning() << "Test audio command:" << (shntool + " " + args.join(" ")); + qWarning() << "shntool info nonzero exit code:" << proc.exitCode(); +- qWarning(proc.readAllStandardError()); ++ qWarning() << proc.readAllStandardError(); + qWarning("------------------------------------"); + mErrorString = QObject::tr("File %1 is not a supported audio file.
" + "
Verify that all required programs are installed and in your preferences.").arg(mFileName); Modified: head/audio/flacon/pkg-plist ============================================================================== --- head/audio/flacon/pkg-plist Sun Jan 31 00:47:45 2016 (r407565) +++ head/audio/flacon/pkg-plist Sun Jan 31 00:59:54 2016 (r407566) @@ -9,12 +9,14 @@ share/icons/hicolor/48x48/apps/flacon.pn %%DATADIR%%/translations/flacon_de.qm %%DATADIR%%/translations/flacon_es.qm %%DATADIR%%/translations/flacon_es_MX.qm +%%DATADIR%%/translations/flacon_et.qm %%DATADIR%%/translations/flacon_fr.qm %%DATADIR%%/translations/flacon_gl.qm %%DATADIR%%/translations/flacon_hu.qm %%DATADIR%%/translations/flacon_it.qm %%DATADIR%%/translations/flacon_ja_JP.qm %%DATADIR%%/translations/flacon_lt.qm +%%DATADIR%%/translations/flacon_nb.qm %%DATADIR%%/translations/flacon_pl.qm %%DATADIR%%/translations/flacon_pl_PL.qm %%DATADIR%%/translations/flacon_pt_BR.qm