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 2CB24138334 for ; Fri, 13 Dec 2019 20:08:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B3C4E087D; Fri, 13 Dec 2019 20:08:10 +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 171E6E087D for ; Fri, 13 Dec 2019 20:08:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 82C2434D428 for ; Fri, 13 Dec 2019 20:08:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B6AC88B1 for ; Fri, 13 Dec 2019 20:08:06 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1576267672.b3dde4f2c84883516fffb7e46204fac4fd8db247.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/mda-lv2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/mda-lv2/mda-lv2-1.2.2.ebuild X-VCS-Directories: media-plugins/mda-lv2/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: b3dde4f2c84883516fffb7e46204fac4fd8db247 X-VCS-Branch: master Date: Fri, 13 Dec 2019 20:08:06 +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: eb6f0d4f-4afa-424b-a64a-5801a6a086f1 X-Archives-Hash: ea61f44547030911ce2b3d24d18c8f23 commit: b3dde4f2c84883516fffb7e46204fac4fd8db247 Author: David Seifert gentoo org> AuthorDate: Fri Dec 13 20:07:52 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Dec 13 20:07:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3dde4f2 media-plugins/mda-lv2: Port to EAPI 6 Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> media-plugins/mda-lv2/mda-lv2-1.2.2.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/media-plugins/mda-lv2/mda-lv2-1.2.2.ebuild b/media-plugins/mda-lv2/mda-lv2-1.2.2.ebuild index 2b587a9d9ef..ada4a963822 100644 --- a/media-plugins/mda-lv2/mda-lv2-1.2.2.ebuild +++ b/media-plugins/mda-lv2/mda-lv2-1.2.2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=6 -PYTHON_COMPAT=( python{2_7,3_5,3_6} ) +PYTHON_COMPAT=( python3_{5,6} ) PYTHON_REQ_USE='threads(+)' inherit python-any-r1 waf-utils @@ -15,11 +15,9 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" RDEPEND="media-libs/lv2" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" ${PYTHON_DEPS} virtual/pkgconfig" - -DOCS=( "README" )