diff options
author | Sam James <sam@gentoo.org> | 2022-08-11 11:25:38 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-08-11 11:25:44 +0100 |
commit | 53d4fc037913fb51b51d93b29d5b25ae365fb354 (patch) | |
tree | 229cdd5d51482ade68eafadd454cfd2db3831514 /sys-libs | |
parent | sys-devel/lld: fix mismatch between python_gen_any_dep and python_check_deps (diff) | |
download | gentoo-53d4fc037913fb51b51d93b29d5b25ae365fb354.tar.gz gentoo-53d4fc037913fb51b51d93b29d5b25ae365fb354.tar.bz2 gentoo-53d4fc037913fb51b51d93b29d5b25ae365fb354.zip |
sys-libs/compiler-rt: fix mismatch between python_gen_any_dep and python_check_deps
We need to check the exact version given it's slotted. Also, while at it,
change to python_has_version.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-libs')
6 files changed, 6 insertions, 6 deletions
diff --git a/sys-libs/compiler-rt/compiler-rt-13.0.1.ebuild b/sys-libs/compiler-rt/compiler-rt-13.0.1.ebuild index 08e7c073204b..6de6eb7c2d78 100644 --- a/sys-libs/compiler-rt/compiler-rt-13.0.1.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-13.0.1.ebuild @@ -36,7 +36,7 @@ llvm.org_set_globals python_check_deps() { use test || return 0 - has_version "dev-python/lit[${PYTHON_USEDEP}]" + python_has_version ">=dev-python/lit-9.0.1[${PYTHON_USEDEP}]" } pkg_pretend() { diff --git a/sys-libs/compiler-rt/compiler-rt-14.0.6-r1.ebuild b/sys-libs/compiler-rt/compiler-rt-14.0.6-r1.ebuild index 10bb65dc8a01..4ce8bbb484a7 100644 --- a/sys-libs/compiler-rt/compiler-rt-14.0.6-r1.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-14.0.6-r1.ebuild @@ -38,7 +38,7 @@ llvm.org_set_globals python_check_deps() { use test || return 0 - has_version "dev-python/lit[${PYTHON_USEDEP}]" + python_has_version ">=dev-python/lit-9.0.1[${PYTHON_USEDEP}]" } pkg_pretend() { diff --git a/sys-libs/compiler-rt/compiler-rt-14.0.6.ebuild b/sys-libs/compiler-rt/compiler-rt-14.0.6.ebuild index 6e15bd7327b0..f6cf92a36424 100644 --- a/sys-libs/compiler-rt/compiler-rt-14.0.6.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-14.0.6.ebuild @@ -38,7 +38,7 @@ llvm.org_set_globals python_check_deps() { use test || return 0 - has_version "dev-python/lit[${PYTHON_USEDEP}]" + python_has_version ">=dev-python/lit-9.0.1[${PYTHON_USEDEP}]" } pkg_pretend() { diff --git a/sys-libs/compiler-rt/compiler-rt-15.0.0.9999.ebuild b/sys-libs/compiler-rt/compiler-rt-15.0.0.9999.ebuild index 9330ad9834cf..5063f18091f9 100644 --- a/sys-libs/compiler-rt/compiler-rt-15.0.0.9999.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-15.0.0.9999.ebuild @@ -38,7 +38,7 @@ llvm.org_set_globals python_check_deps() { use test || return 0 - has_version "dev-python/lit[${PYTHON_USEDEP}]" + python_has_version ">=dev-python/lit-15[${PYTHON_USEDEP}]" } pkg_pretend() { diff --git a/sys-libs/compiler-rt/compiler-rt-15.0.0_rc2.ebuild b/sys-libs/compiler-rt/compiler-rt-15.0.0_rc2.ebuild index 15ea5aaaa3f2..d41092a0cf32 100644 --- a/sys-libs/compiler-rt/compiler-rt-15.0.0_rc2.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-15.0.0_rc2.ebuild @@ -38,7 +38,7 @@ llvm.org_set_globals python_check_deps() { use test || return 0 - has_version "dev-python/lit[${PYTHON_USEDEP}]" + python_has_version ">=dev-python/lit-15[${PYTHON_USEDEP}]" } pkg_pretend() { diff --git a/sys-libs/compiler-rt/compiler-rt-16.0.0.9999.ebuild b/sys-libs/compiler-rt/compiler-rt-16.0.0.9999.ebuild index 9330ad9834cf..5063f18091f9 100644 --- a/sys-libs/compiler-rt/compiler-rt-16.0.0.9999.ebuild +++ b/sys-libs/compiler-rt/compiler-rt-16.0.0.9999.ebuild @@ -38,7 +38,7 @@ llvm.org_set_globals python_check_deps() { use test || return 0 - has_version "dev-python/lit[${PYTHON_USEDEP}]" + python_has_version ">=dev-python/lit-15[${PYTHON_USEDEP}]" } pkg_pretend() { |