From owner-svn-ports-all@freebsd.org Sat May 2 11:46:07 2020 Return-Path: Delivered-To: svn-ports-all@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 27A992CD259; Sat, 2 May 2020 11:46:07 +0000 (UTC) (envelope-from mikael@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) server-signature RSA-PSS (4096 bits) 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 49DnPp6zzwz45wj; Sat, 2 May 2020 11:46:06 +0000 (UTC) (envelope-from mikael@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 E8BDB2127E; Sat, 2 May 2020 11:46:06 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 042Bk61h037710; Sat, 2 May 2020 11:46:06 GMT (envelope-from mikael@FreeBSD.org) Received: (from mikael@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 042Bk6Iv037708; Sat, 2 May 2020 11:46:06 GMT (envelope-from mikael@FreeBSD.org) Message-Id: <202005021146.042Bk6Iv037708@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mikael set sender to mikael@FreeBSD.org using -f From: Mikael Urankar Date: Sat, 2 May 2020 11:46:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533686 - in head/math/speedcrunch: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mikael X-SVN-Commit-Paths: in head/math/speedcrunch: . files X-SVN-Commit-Revision: 533686 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.29 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: Sat, 02 May 2020 11:46:07 -0000 Author: mikael Date: Sat May 2 11:46:06 2020 New Revision: 533686 URL: https://svnweb.freebsd.org/changeset/ports/533686 Log: math/speedcrunch: fix build with qt5.14 PR: 246033 Approved by: danfe (maintainer) Added: head/math/speedcrunch/files/ head/math/speedcrunch/files/patch-gui_syntaxhighlighter.cpp (contents, props changed) Modified: head/math/speedcrunch/Makefile Modified: head/math/speedcrunch/Makefile ============================================================================== --- head/math/speedcrunch/Makefile Sat May 2 11:21:36 2020 (r533685) +++ head/math/speedcrunch/Makefile Sat May 2 11:46:06 2020 (r533686) @@ -13,8 +13,6 @@ COMMENT= Keyboard-oriented desktop scientific calculat LICENSE= GPLv2+ -BROKEN= Does not build with Qt5-5.14 - BB_ACCOUNT= heldercorreia BB_PROJECT= ${PORTNAME} BB_COMMIT= c0fc9c68d292 Added: head/math/speedcrunch/files/patch-gui_syntaxhighlighter.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/speedcrunch/files/patch-gui_syntaxhighlighter.cpp Sat May 2 11:46:06 2020 (r533686) @@ -0,0 +1,11 @@ +--- gui/syntaxhighlighter.cpp.orig 2020-04-29 20:42:12 UTC ++++ gui/syntaxhighlighter.cpp +@@ -128,7 +128,7 @@ ColorScheme ColorScheme::loadFromFile(const QString& p + ColorScheme ColorScheme::loadByName(const QString& name) + { + for (auto& path : colorSchemeSearchPaths()) { +- auto fileName = QString("%1/%2.%3").arg(path, name, m_colorSchemeExtension); ++ auto fileName = QString("%1/%2.%3").arg(path).arg(name).arg(m_colorSchemeExtension); + auto colorScheme = loadFromFile(fileName); + if (colorScheme.isValid()) + return colorScheme;