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 D3F68138350 for ; Sun, 9 Feb 2020 16:18:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 965B1E0872; Sun, 9 Feb 2020 16:18:23 +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 6AF1CE0872 for ; Sun, 9 Feb 2020 16:18: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 4507B34E8BA for ; Sun, 9 Feb 2020 16:18:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB721145 for ; Sun, 9 Feb 2020 16:18:18 +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: <1581265070.88e8781cc0915cf4fe87a279d1352c28b16429e5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libarcus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libarcus/libarcus-3.4.1.ebuild dev-libs/libarcus/libarcus-3.6.0.ebuild dev-libs/libarcus/libarcus-4.2.0.ebuild dev-libs/libarcus/libarcus-4.3.0-r1.ebuild dev-libs/libarcus/libarcus-4.3.0.ebuild X-VCS-Directories: dev-libs/libarcus/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 88e8781cc0915cf4fe87a279d1352c28b16429e5 X-VCS-Branch: master Date: Sun, 9 Feb 2020 16:18:18 +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: 11017a53-7230-4b62-a252-595b85da6f56 X-Archives-Hash: 2335512ceb09fa4869a281a40e67a3d5 commit: 88e8781cc0915cf4fe87a279d1352c28b16429e5 Author: Michał Górny gentoo org> AuthorDate: Fri Feb 7 12:54:34 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 9 16:17:50 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88e8781c dev-libs/libarcus: Switch to PYTHON_MULTI_USEDEP API Signed-off-by: Michał Górny gentoo.org> dev-libs/libarcus/libarcus-3.4.1.ebuild | 6 ++++-- dev-libs/libarcus/libarcus-3.6.0.ebuild | 6 ++++-- dev-libs/libarcus/libarcus-4.2.0.ebuild | 6 ++++-- .../libarcus/{libarcus-4.3.0.ebuild => libarcus-4.3.0-r1.ebuild} | 6 ++++-- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/dev-libs/libarcus/libarcus-3.4.1.ebuild b/dev-libs/libarcus/libarcus-3.4.1.ebuild index ced7f6897f9..120cd382001 100644 --- a/dev-libs/libarcus/libarcus-3.4.1.ebuild +++ b/dev-libs/libarcus/libarcus-3.4.1.ebuild @@ -20,9 +20,11 @@ IUSE="examples python static-libs" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND="${PYTHON_DEPS} - dev-python/sip[${PYTHON_USEDEP}] dev-libs/protobuf - python? ( dev-python/protobuf-python[${PYTHON_USEDEP}] )" + $(python_gen_cond_dep ' + dev-python/sip[${PYTHON_MULTI_USEDEP}] + python? ( dev-python/protobuf-python[${PYTHON_MULTI_USEDEP}] ) + ')" DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_PN}-${PV}" diff --git a/dev-libs/libarcus/libarcus-3.6.0.ebuild b/dev-libs/libarcus/libarcus-3.6.0.ebuild index ced7f6897f9..120cd382001 100644 --- a/dev-libs/libarcus/libarcus-3.6.0.ebuild +++ b/dev-libs/libarcus/libarcus-3.6.0.ebuild @@ -20,9 +20,11 @@ IUSE="examples python static-libs" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND="${PYTHON_DEPS} - dev-python/sip[${PYTHON_USEDEP}] dev-libs/protobuf - python? ( dev-python/protobuf-python[${PYTHON_USEDEP}] )" + $(python_gen_cond_dep ' + dev-python/sip[${PYTHON_MULTI_USEDEP}] + python? ( dev-python/protobuf-python[${PYTHON_MULTI_USEDEP}] ) + ')" DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_PN}-${PV}" diff --git a/dev-libs/libarcus/libarcus-4.2.0.ebuild b/dev-libs/libarcus/libarcus-4.2.0.ebuild index deb2605d564..0dbed3da3dd 100644 --- a/dev-libs/libarcus/libarcus-4.2.0.ebuild +++ b/dev-libs/libarcus/libarcus-4.2.0.ebuild @@ -20,9 +20,11 @@ IUSE="examples python static-libs" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND="${PYTHON_DEPS} - dev-python/sip[${PYTHON_USEDEP}] dev-libs/protobuf - python? ( dev-python/protobuf-python[${PYTHON_USEDEP}] )" + $(python_gen_cond_dep ' + dev-python/sip[${PYTHON_MULTI_USEDEP}] + python? ( dev-python/protobuf-python[${PYTHON_MULTI_USEDEP}] ) + ')" DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_PN}-${PV}" diff --git a/dev-libs/libarcus/libarcus-4.3.0.ebuild b/dev-libs/libarcus/libarcus-4.3.0-r1.ebuild similarity index 90% rename from dev-libs/libarcus/libarcus-4.3.0.ebuild rename to dev-libs/libarcus/libarcus-4.3.0-r1.ebuild index 0869769e8f5..f949a913e19 100644 --- a/dev-libs/libarcus/libarcus-4.3.0.ebuild +++ b/dev-libs/libarcus/libarcus-4.3.0-r1.ebuild @@ -20,9 +20,11 @@ IUSE="examples python static-libs" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RDEPEND="${PYTHON_DEPS} - dev-python/sip[${PYTHON_USEDEP}] dev-libs/protobuf - python? ( dev-python/protobuf-python[${PYTHON_USEDEP}] )" + $(python_gen_cond_dep ' + dev-python/sip[${PYTHON_MULTI_USEDEP}] + python? ( dev-python/protobuf-python[${PYTHON_MULTI_USEDEP}] ) + ')" DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_PN}-${PV}"