From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 548C7158094 for ; Wed, 27 Jul 2022 08:43:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F757E110E; Wed, 27 Jul 2022 08:43:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6CA81E110E for ; Wed, 27 Jul 2022 08:43:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 68C17340EBD for ; Wed, 27 Jul 2022 08:43:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E670555 for ; Wed, 27 Jul 2022 08:43:40 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1658911398.14933f7a430140d5b82f110b584bf85cfa471ee7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/fmit/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/fmit/fmit-1.0.15-r3.ebuild X-VCS-Directories: media-sound/fmit/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 14933f7a430140d5b82f110b584bf85cfa471ee7 X-VCS-Branch: master Date: Wed, 27 Jul 2022 08:43:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: be9fdda4-34fa-4a52-a04d-d357fb0929c3 X-Archives-Hash: 4ac33021b9aa0389971772a68c03eabb commit: 14933f7a430140d5b82f110b584bf85cfa471ee7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Jul 25 17:55:20 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jul 27 08:43:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14933f7a media-sound/fmit: Move dev-qt/linguist-tools:5 to BDEPEND, EAPI-8 Bug: https://bugs.gentoo.org/544938 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/fmit/fmit-1.0.15-r3.ebuild | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/media-sound/fmit/fmit-1.0.15-r3.ebuild b/media-sound/fmit/fmit-1.0.15-r3.ebuild index 1d322a86d482..07d0f788fdab 100644 --- a/media-sound/fmit/fmit-1.0.15-r3.ebuild +++ b/media-sound/fmit/fmit-1.0.15-r3.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit qmake-utils @@ -27,21 +27,20 @@ RDEPEND=" jack? ( virtual/jack ) portaudio? ( media-libs/portaudio ) " -DEPEND="${RDEPEND} - dev-qt/linguist-tools:5 -" +DEPEND="${RDEPEND}" +BDEPEND="dev-qt/linguist-tools:5" src_prepare() { # Fix the path to readme file to prevent errors on start up sed -i "/QFile readmefile/c\QFile readmefile \ (\"/usr/share/doc/${PF}/README.txt\");" \ - src/main.cpp || die "README sed failed" + src/main.cpp || die # Fix the PREFIX location, insert real path. sed -i "/QString fmitprefix/c\QString fmitprefix(STR(/usr));" \ - src/main.cpp || die "PREFIX fix sed failed" + src/main.cpp || die # Fix the PREFIX location, insert real path. sed -i "/QString fmitprefix/c\QString fmitprefix(STR(/usr));" \ - src/modules/MicrotonalView.cpp || die "PREFIX fix sed failed" + src/modules/MicrotonalView.cpp || die default } @@ -51,7 +50,7 @@ src_configure() { use ${flag} && config+=" acs_${flag}" done - "$(qt5_get_bindir)"/lrelease fmit.pro || die "Running lrelease failed" + "$(qt5_get_bindir)"/lrelease fmit.pro || die eqmake5 CONFIG+="${config}" fmit.pro PREFIX="${D}"/usr \ PREFIXSHORTCUT="${D}"/usr DISTDIR=/usr