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 507CD138334 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 36D5FE086E; Sun, 14 Oct 2018 15:50:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0A43FE086E 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 F3FAE335CCB for ; Sun, 14 Oct 2018 15:50:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BBA53E1 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: <1539532202.5b9167ad661399d0a24fe4ebb3a843612b664b3a.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: 5b9167ad661399d0a24fe4ebb3a843612b664b3a 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: 5144c64c-c04c-479b-9373-ef5cfef74c85 X-Archives-Hash: c52a5496ef7f2ebb76b3e1ad244d4fa3 commit: 5b9167ad661399d0a24fe4ebb3a843612b664b3a Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 14 15:14:03 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 14 15:50:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b9167ad media-libs/portmidi: Sort DEPENDs, CDEPEND -> COMMON_DEPEND Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 media-libs/portmidi/portmidi-217-r1.ebuild | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/media-libs/portmidi/portmidi-217-r1.ebuild b/media-libs/portmidi/portmidi-217-r1.ebuild index a515367b7ec..4096932f872 100644 --- a/media-libs/portmidi/portmidi-217-r1.ebuild +++ b/media-libs/portmidi/portmidi-217-r1.ebuild @@ -1,11 +1,10 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" PYTHON_COMPAT=( python2_7 ) DISTUTILS_OPTIONAL=1 - inherit cmake-utils distutils-r1 eutils multilib java-pkg-opt-2 DESCRIPTION="A library for real time MIDI input and output" @@ -17,21 +16,23 @@ SLOT="0" KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~sparc x86" IUSE="debug doc java python static-libs test-programs" -CDEPEND="media-libs/alsa-lib +COMMON_DEPEND=" + media-libs/alsa-lib python? ( ${PYTHON_DEPS} )" -RDEPEND="${CDEPEND} +RDEPEND="${COMMON_DEPEND} java? ( >=virtual/jre-1.6 )" -DEPEND="${CDEPEND} +DEPEND="${COMMON_DEPEND} app-arch/unzip - java? ( >=virtual/jdk-1.6 ) - python? ( >=dev-python/cython-0.12.1[${PYTHON_USEDEP}] ) doc? ( app-doc/doxygen + dev-tex/xcolor dev-texlive/texlive-fontsrecommended dev-texlive/texlive-latexextra - dev-tex/xcolor virtual/latex-base - )" + ) + java? ( >=virtual/jdk-1.6 ) + python? ( >=dev-python/cython-0.12.1[${PYTHON_USEDEP}] ) +" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"