Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/lld/
Date: Wed, 27 Apr 2022 12:27:19
Message-Id: 1651062418.51bd9084243a191d3c6fe269a8d7870e367ff2ae.mgorny@gentoo
1 commit: 51bd9084243a191d3c6fe269a8d7870e367ff2ae
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 08:35:08 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 12:26:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51bd9084
7
8 sys-devel/lld: Modernize
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-devel/lld/lld-15.0.0.9999.ebuild | 13 +++++++++----
13 1 file changed, 9 insertions(+), 4 deletions(-)
14
15 diff --git a/sys-devel/lld/lld-15.0.0.9999.ebuild b/sys-devel/lld/lld-15.0.0.9999.ebuild
16 index b57382fbf22d..e9db4aa03dbe 100644
17 --- a/sys-devel/lld/lld-15.0.0.9999.ebuild
18 +++ b/sys-devel/lld/lld-15.0.0.9999.ebuild
19 @@ -1,7 +1,7 @@
20 # Copyright 1999-2022 Gentoo Authors
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=7
24 +EAPI=8
25
26 PYTHON_COMPAT=( python3_{8..10} )
27 inherit cmake flag-o-matic llvm llvm.org python-any-r1
28 @@ -15,13 +15,18 @@ KEYWORDS=""
29 IUSE="debug test"
30 RESTRICT="!test? ( test )"
31
32 -RDEPEND="~sys-devel/llvm-${PV}"
33 -DEPEND="${RDEPEND}"
34 +DEPEND="
35 + ~sys-devel/llvm-${PV}
36 +"
37 +RDEPEND="
38 + ${DEPEND}
39 +"
40 BDEPEND="
41 test? (
42 >=dev-util/cmake-3.16
43 $(python_gen_any_dep "~dev-python/lit-${PV}[\${PYTHON_USEDEP}]")
44 - )"
45 + )
46 +"
47
48 LLVM_COMPONENTS=( lld cmake libunwind/include/mach-o )
49 LLVM_TEST_COMPONENTS=( llvm/utils/{lit,unittest} )