diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-12-31 10:16:25 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-01-09 09:09:07 +0100 |
commit | 348d59c6d8fc23042077364580d399337be6e5fb (patch) | |
tree | 1cf290592fd1265f965dde26cfca55da8d6dbb97 /eclass/tests | |
parent | python-utils-r1.eclass: Bump minimal Python versions (diff) | |
download | gentoo-348d59c6d8fc23042077364580d399337be6e5fb.tar.gz gentoo-348d59c6d8fc23042077364580d399337be6e5fb.tar.bz2 gentoo-348d59c6d8fc23042077364580d399337be6e5fb.zip |
python*-r1.eclass: Remove explicit dep on python-exec
The dev-lang/python-exec dependency is now enforced through
dev-lang/python, remove the explicit dep to reduce the metadata size
and make dependency resolution lighter.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/tests')
-rwxr-xr-x | eclass/tests/distutils-r1.sh | 2 | ||||
-rwxr-xr-x | eclass/tests/distutils-r1_single.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/eclass/tests/distutils-r1.sh b/eclass/tests/distutils-r1.sh index a582bd9bbee7..cd768066bf37 100755 --- a/eclass/tests/distutils-r1.sh +++ b/eclass/tests/distutils-r1.sh @@ -97,7 +97,7 @@ tend einfo distutils_enable_tests eindent BASE_IUSE="python_targets_python3_8" -BASE_DEPS="python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?]" +BASE_DEPS="python_targets_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 )" TEST_RESTRICT="!test? ( test )" einfo "empty RDEPEND" diff --git a/eclass/tests/distutils-r1_single.sh b/eclass/tests/distutils-r1_single.sh index 8d07eebb133f..fdeba2e2b9b2 100755 --- a/eclass/tests/distutils-r1_single.sh +++ b/eclass/tests/distutils-r1_single.sh @@ -77,7 +77,7 @@ inherit distutils-r1 einfo distutils_enable_tests eindent BASE_IUSE="+python_single_target_python3_8" -BASE_DEPS="python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] )" +BASE_DEPS="python_single_target_python3_8? ( >=dev-lang/python-3.8.12_p1-r1:3.8 )" TEST_RESTRICT="!test? ( test )" einfo "empty RDEPEND" |