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 678CD138351 for ; Sun, 9 Feb 2020 16:11:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8793FE086A; Sun, 9 Feb 2020 16:11:10 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 28431E0869 for ; Sun, 9 Feb 2020 16:11: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 8426E34E754 for ; Sun, 9 Feb 2020 16:11:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DBE22A for ; Sun, 9 Feb 2020 16:11:06 +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: <1581264637.4071e16cf23353fff5f26798dd167e801626590a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen-tools/xen-tools-4.11.3-r1.ebuild app-emulation/xen-tools/xen-tools-4.11.3.ebuild app-emulation/xen-tools/xen-tools-4.12.1-r1.ebuild app-emulation/xen-tools/xen-tools-4.12.1-r2.ebuild app-emulation/xen-tools/xen-tools-4.13.0.ebuild X-VCS-Directories: app-emulation/xen-tools/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4071e16cf23353fff5f26798dd167e801626590a X-VCS-Branch: master Date: Sun, 9 Feb 2020 16:11: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: 65a745a5-d536-4b77-b728-0102dac26078 X-Archives-Hash: ecd85be481bd5bc75b52adc2a1e12b31 commit: 4071e16cf23353fff5f26798dd167e801626590a Author: Michał Górny gentoo org> AuthorDate: Fri Feb 7 09:05:00 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 9 16:10:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4071e16c app-emulation/xen-tools: Switch to PYTHON_MULTI_USEDEP API Signed-off-by: Michał Górny gentoo.org> .../{xen-tools-4.11.3.ebuild => xen-tools-4.11.3-r1.ebuild} | 12 ++++++++---- ...xen-tools-4.12.1-r1.ebuild => xen-tools-4.12.1-r2.ebuild} | 12 ++++++++---- app-emulation/xen-tools/xen-tools-4.13.0.ebuild | 12 ++++++++---- 3 files changed, 24 insertions(+), 12 deletions(-) diff --git a/app-emulation/xen-tools/xen-tools-4.11.3.ebuild b/app-emulation/xen-tools/xen-tools-4.11.3-r1.ebuild similarity index 98% rename from app-emulation/xen-tools/xen-tools-4.11.3.ebuild rename to app-emulation/xen-tools/xen-tools-4.11.3-r1.ebuild index a089de2905e..72913356f07 100644 --- a/app-emulation/xen-tools/xen-tools-4.11.3.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.11.3-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 @@ -81,11 +81,13 @@ COMMON_DEPEND=" DEPEND="${COMMON_DEPEND} >=sys-kernel/linux-headers-4.11 - dev-python/lxml[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/lxml[${PYTHON_MULTI_USEDEP}] + pam? ( dev-python/pypam[${PYTHON_MULTI_USEDEP}] ) + ') x86? ( sys-devel/dev86 sys-firmware/ipxe[qemu] sys-power/iasl ) - pam? ( dev-python/pypam[${PYTHON_USEDEP}] ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( @@ -103,7 +105,9 @@ DEPEND="${COMMON_DEPEND} doc? ( app-text/ghostscript-gpl app-text/pandoc - dev-python/markdown[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/markdown[${PYTHON_MULTI_USEDEP}] + ') dev-texlive/texlive-latexextra media-gfx/transfig ) diff --git a/app-emulation/xen-tools/xen-tools-4.12.1-r1.ebuild b/app-emulation/xen-tools/xen-tools-4.12.1-r2.ebuild similarity index 98% rename from app-emulation/xen-tools/xen-tools-4.12.1-r1.ebuild rename to app-emulation/xen-tools/xen-tools-4.12.1-r2.ebuild index 83c7552e06e..86248c171f5 100644 --- a/app-emulation/xen-tools/xen-tools-4.12.1-r1.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.12.1-r2.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 @@ -87,11 +87,13 @@ COMMON_DEPEND=" DEPEND="${COMMON_DEPEND} >=sys-kernel/linux-headers-4.11 - dev-python/lxml[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/lxml[${PYTHON_MULTI_USEDEP}] + pam? ( dev-python/pypam[${PYTHON_MULTI_USEDEP}] ) + ') x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) - pam? ( dev-python/pypam[${PYTHON_USEDEP}] ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( @@ -108,7 +110,9 @@ DEPEND="${COMMON_DEPEND} doc? ( app-text/ghostscript-gpl app-text/pandoc - dev-python/markdown[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/markdown[${PYTHON_MULTI_USEDEP}] + ') dev-texlive/texlive-latexextra media-gfx/transfig ) diff --git a/app-emulation/xen-tools/xen-tools-4.13.0.ebuild b/app-emulation/xen-tools/xen-tools-4.13.0.ebuild index 0b4a116929c..47d3fb3608e 100644 --- a/app-emulation/xen-tools/xen-tools-4.13.0.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.13.0.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 @@ -91,11 +91,13 @@ COMMON_DEPEND=" DEPEND="${COMMON_DEPEND} >=sys-kernel/linux-headers-4.11 - dev-python/lxml[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/lxml[${PYTHON_MULTI_USEDEP}] + pam? ( dev-python/pypam[${PYTHON_MULTI_USEDEP}] ) + ') x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) - pam? ( dev-python/pypam[${PYTHON_USEDEP}] ) api? ( dev-libs/libxml2 net-misc/curl ) @@ -113,7 +115,9 @@ DEPEND="${COMMON_DEPEND} doc? ( app-text/ghostscript-gpl app-text/pandoc - dev-python/markdown[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/markdown[${PYTHON_MULTI_USEDEP}] + ') dev-texlive/texlive-latexextra media-gfx/transfig )