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 159EB138335 for ; Sun, 14 Oct 2018 15:50:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08A49E086A; Sun, 14 Oct 2018 15:50:21 +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 CA7D6E0869 for ; Sun, 14 Oct 2018 15:50:20 +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 334CE335CDA for ; Sun, 14 Oct 2018 15:50:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 505C043B for ; Sun, 14 Oct 2018 15:50:17 +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: <1539532203.c543544e52effacf305b7ae3390f42c5b65965d7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/portmidi/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/portmidi/portmidi-217-r1.ebuild X-VCS-Directories: media-libs/portmidi/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c543544e52effacf305b7ae3390f42c5b65965d7 X-VCS-Branch: master Date: Sun, 14 Oct 2018 15:50:17 +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-Archives-Salt: ea51af14-f55e-4b9a-8aff-2b6370da77c6 X-Archives-Hash: 2e30efc78cedc012d580a8cf80e50c8e commit: c543544e52effacf305b7ae3390f42c5b65965d7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 14 15:30:48 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 14 15:50:03 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c543544e media-libs/portmidi: EAPI-6 bump Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 media-libs/portmidi/portmidi-217-r1.ebuild | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/media-libs/portmidi/portmidi-217-r1.ebuild b/media-libs/portmidi/portmidi-217-r1.ebuild index 4096932f872..0adb4d32f4b 100644 --- a/media-libs/portmidi/portmidi-217-r1.ebuild +++ b/media-libs/portmidi/portmidi-217-r1.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=6 PYTHON_COMPAT=( python2_7 ) DISTUTILS_OPTIONAL=1 -inherit cmake-utils distutils-r1 eutils multilib java-pkg-opt-2 +inherit cmake-utils desktop distutils-r1 java-pkg-opt-2 -DESCRIPTION="A library for real time MIDI input and output" +DESCRIPTION="Library for real time MIDI input and output" HOMEPAGE="http://portmedia.sourceforge.net/" SRC_URI="mirror://sourceforge/portmedia/${PN}-src-${PV}.zip" @@ -16,6 +16,8 @@ SLOT="0" KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~sparc x86" IUSE="debug doc java python static-libs test-programs" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + COMMON_DEPEND=" media-libs/alsa-lib python? ( ${PYTHON_DEPS} )" @@ -34,9 +36,7 @@ DEPEND="${COMMON_DEPEND} python? ( >=dev-python/cython-0.12.1[${PYTHON_USEDEP}] ) " -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -S=${WORKDIR}/${PN} +S="${WORKDIR}/${PN}" PATCHES=( # fix parallel make failures, fix java support, and allow optional @@ -73,9 +73,9 @@ src_configure() { fi local mycmakeargs=( - $(cmake-utils_use java PORTMIDI_ENABLE_JAVA) - $(cmake-utils_use static-libs PORTMIDI_ENABLE_STATIC) - $(cmake-utils_use test-programs PORTMIDI_ENABLE_TEST) + -DPORTMIDI_ENABLE_JAVA=$(usex java) + -DPORTMIDI_ENABLE_STATIC=$(usex static-libs) + -DPORTMIDI_ENABLE_TEST=$(usex test-programs) ) if use java ; then