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 6D7F915808E for ; Wed, 27 Apr 2022 12:27:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA6C6E086D; 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 8BC56E086D for ; Wed, 27 Apr 2022 12:27:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7526C341C03 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 D1AC2443 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: <1651062418.51bd9084243a191d3c6fe269a8d7870e367ff2ae.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/lld/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/lld/lld-15.0.0.9999.ebuild X-VCS-Directories: sys-devel/lld/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 51bd9084243a191d3c6fe269a8d7870e367ff2ae 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: db51a5e6-ae97-4062-bba0-c1e6f2e52f3f X-Archives-Hash: a8b8decb023ad146671879ea1bf869f1 commit: 51bd9084243a191d3c6fe269a8d7870e367ff2ae Author: Michał Górny gentoo org> AuthorDate: Wed Apr 27 08:35:08 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 27 12:26:58 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51bd9084 sys-devel/lld: Modernize Signed-off-by: Michał Górny gentoo.org> sys-devel/lld/lld-15.0.0.9999.ebuild | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/sys-devel/lld/lld-15.0.0.9999.ebuild b/sys-devel/lld/lld-15.0.0.9999.ebuild index b57382fbf22d..e9db4aa03dbe 100644 --- a/sys-devel/lld/lld-15.0.0.9999.ebuild +++ b/sys-devel/lld/lld-15.0.0.9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PYTHON_COMPAT=( python3_{8..10} ) inherit cmake flag-o-matic llvm llvm.org python-any-r1 @@ -15,13 +15,18 @@ KEYWORDS="" IUSE="debug test" RESTRICT="!test? ( test )" -RDEPEND="~sys-devel/llvm-${PV}" -DEPEND="${RDEPEND}" +DEPEND=" + ~sys-devel/llvm-${PV} +" +RDEPEND=" + ${DEPEND} +" BDEPEND=" test? ( >=dev-util/cmake-3.16 $(python_gen_any_dep "~dev-python/lit-${PV}[\${PYTHON_USEDEP}]") - )" + ) +" LLVM_COMPONENTS=( lld cmake libunwind/include/mach-o ) LLVM_TEST_COMPONENTS=( llvm/utils/{lit,unittest} )