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 CB780138350 for ; Sun, 9 Feb 2020 16:25:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04DA6E0863; Sun, 9 Feb 2020 16:25:24 +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 D9FBAE086C for ; Sun, 9 Feb 2020 16:25:23 +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 E3DC034E8CE for ; Sun, 9 Feb 2020 16:25:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6916312F for ; Sun, 9 Feb 2020 16:25:19 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1581265307.383400c5b2396095f227b0e95a2b0df8604dc8c6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rr/rr-5.2.0-r1.ebuild dev-util/rr/rr-5.3.0-r1.ebuild dev-util/rr/rr-5.3.0.ebuild X-VCS-Directories: dev-util/rr/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 383400c5b2396095f227b0e95a2b0df8604dc8c6 X-VCS-Branch: master Date: Sun, 9 Feb 2020 16:25:19 +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: d65d0bd9-9588-4710-a29f-26e2f98e33ee X-Archives-Hash: 199d2605293524ff434661b421ed66d8 commit: 383400c5b2396095f227b0e95a2b0df8604dc8c6 Author: Michał Górny gentoo org> AuthorDate: Fri Feb 7 13:16:16 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 9 16:21:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=383400c5 dev-util/rr: Switch to PYTHON_MULTI_USEDEP API Signed-off-by: Michał Górny gentoo.org> dev-util/rr/rr-5.2.0-r1.ebuild | 6 ++++-- dev-util/rr/{rr-5.3.0.ebuild => rr-5.3.0-r1.ebuild} | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/dev-util/rr/rr-5.2.0-r1.ebuild b/dev-util/rr/rr-5.2.0-r1.ebuild index b98223d5136..b60628ad4ee 100644 --- a/dev-util/rr/rr-5.2.0-r1.ebuild +++ b/dev-util/rr/rr-5.2.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -27,7 +27,9 @@ RDEPEND="${DEPEND} # Add all the deps needed only at build/test time. DEPEND+=" test? ( - dev-python/pexpect[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/pexpect[${PYTHON_MULTI_USEDEP}] + ') sys-devel/gdb[xml] )" diff --git a/dev-util/rr/rr-5.3.0.ebuild b/dev-util/rr/rr-5.3.0-r1.ebuild similarity index 94% rename from dev-util/rr/rr-5.3.0.ebuild rename to dev-util/rr/rr-5.3.0-r1.ebuild index 10707860b4a..792f4f9768e 100644 --- a/dev-util/rr/rr-5.3.0.ebuild +++ b/dev-util/rr/rr-5.3.0-r1.ebuild @@ -27,7 +27,9 @@ RDEPEND="${DEPEND} # Add all the deps needed only at build/test time. DEPEND+=" test? ( - dev-python/pexpect[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/pexpect[${PYTHON_MULTI_USEDEP}] + ') sys-devel/gdb[xml] )"