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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1AF9215808E for ; Wed, 27 Apr 2022 12:27:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28366E085A; Wed, 27 Apr 2022 12:27:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 05E3FE085A for ; Wed, 27 Apr 2022 12:27:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 42732341C08 for ; Wed, 27 Apr 2022 12:27:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A991743D for ; Wed, 27 Apr 2022 12:27:12 +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: <1651062416.30fb8e78eaa414bf0b486e5c21d9028f1c3dd5b1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/clang-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/clang-python/clang-python-15.0.0.9999.ebuild X-VCS-Directories: dev-python/clang-python/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 30fb8e78eaa414bf0b486e5c21d9028f1c3dd5b1 X-VCS-Branch: master Date: Wed, 27 Apr 2022 12:27:12 +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: 54612d89-c08d-4ee8-a5f0-a329f15be9e3 X-Archives-Hash: 74b8e71f795370b68085466188661e1f commit: 30fb8e78eaa414bf0b486e5c21d9028f1c3dd5b1 Author: Michał Górny gentoo org> AuthorDate: Wed Apr 27 08:35:05 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 27 12:26:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30fb8e78 dev-python/clang-python: Modernize Signed-off-by: Michał Górny gentoo.org> dev-python/clang-python/clang-python-15.0.0.9999.ebuild | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/dev-python/clang-python/clang-python-15.0.0.9999.ebuild b/dev-python/clang-python/clang-python-15.0.0.9999.ebuild index fb6456619641..9e000ace36bf 100644 --- a/dev-python/clang-python/clang-python-15.0.0.9999.ebuild +++ b/dev-python/clang-python/clang-python-15.0.0.9999.ebuild @@ -13,17 +13,23 @@ LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" SLOT="0" KEYWORDS="" IUSE="test" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" RESTRICT="!test? ( test )" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" # The module is opening libclang.so directly, and doing some blasphemy # on top of it. -RDEPEND=" +DEPEND=" >=sys-devel/clang-${PV}:* !sys-devel/llvm:0[clang(-),python(-)] !sys-devel/clang:0[python(-)] - ${PYTHON_DEPS}" -DEPEND="${RDEPEND}" +" +RDEPEND=" + ${DEPEND} + ${PYTHON_DEPS} +" +BDEPEND=" + ${PYTHON_DEPS} +" LLVM_COMPONENTS=( clang/bindings/python ) llvm.org_set_globals