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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F28A613835B for ; Wed, 20 May 2020 13:19:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E842E0924; Wed, 20 May 2020 13:19:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2657CE0924 for ; Wed, 20 May 2020 13:19:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E606934F25A for ; Wed, 20 May 2020 13:19:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 878D724E for ; Wed, 20 May 2020 13:19:30 +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: <1589980755.c925faa04363e88b75db36a6ca39ddf9226c7fc6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/qmidiarp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/qmidiarp/qmidiarp-0.6.4-r1.ebuild X-VCS-Directories: media-sound/qmidiarp/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c925faa04363e88b75db36a6ca39ddf9226c7fc6 X-VCS-Branch: master Date: Wed, 20 May 2020 13:19:30 +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: 89689803-d474-4ace-b6fd-5e210ac5cca3 X-Archives-Hash: ebe8cffa8be95c352912cc3c8b10e0aa commit: c925faa04363e88b75db36a6ca39ddf9226c7fc6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed May 20 12:56:41 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed May 20 13:19:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c925faa0 media-sound/qmidiarp: EAPI-7 bump, fix BDEPENDs Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/qmidiarp/qmidiarp-0.6.4-r1.ebuild | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/media-sound/qmidiarp/qmidiarp-0.6.4-r1.ebuild b/media-sound/qmidiarp/qmidiarp-0.6.4-r1.ebuild index 14029ae8b0b..3e2094065a0 100644 --- a/media-sound/qmidiarp/qmidiarp-0.6.4-r1.ebuild +++ b/media-sound/qmidiarp/qmidiarp-0.6.4-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit flag-o-matic qmake-utils -DESCRIPTION="An arpeggiator, sequencer and MIDI LFO for ALSA" +DESCRIPTION="Arpeggiator, sequencer and MIDI LFO for ALSA" HOMEPAGE="http://qmidiarp.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" @@ -14,6 +14,9 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="nls lv2 osc" +BDEPEND=" + nls? ( dev-qt/linguist-tools:5 ) + virtual/pkgconfig" RDEPEND=" dev-qt/qtcore:5 dev-qt/qtgui:5 @@ -22,18 +25,18 @@ RDEPEND=" virtual/jack lv2? ( media-libs/lv2 ) osc? ( media-libs/liblo )" -DEPEND="${RDEPEND} - nls? ( dev-qt/qttranslations:5 ) - virtual/pkgconfig" +DEPEND="${RDEPEND}" src_configure() { export PATH="$(qt5_get_bindir):${PATH}" append-cxxflags -std=c++11 - econf \ - --enable-qt5 \ - $(use_enable lv2 lv2plugins) \ - $(use_enable nls translations) \ + local myeconfargs=( + --enable-qt5 + $(use_enable lv2 lv2plugins) + $(use_enable nls translations) $(use_enable osc nsm) + ) + econf "${myeconfargs[@]}" }