diff options
Diffstat (limited to 'dev-lang/python')
| -rw-r--r-- | dev-lang/python/python-3.13.0_rc3.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/dev-lang/python/python-3.13.0_rc3.ebuild b/dev-lang/python/python-3.13.0_rc3.ebuild index c97f9faaa41a..c71af7471360 100644 --- a/dev-lang/python/python-3.13.0_rc3.ebuild +++ b/dev-lang/python/python-3.13.0_rc3.ebuild @@ -120,7 +120,9 @@ declare -rA PYTHON_KERNEL_CHECKS=( ) pkg_pretend() { - use test && check-reqs_pkg_pretend + if use pgo || use test; then + check-reqs_pkg_pretend + fi if ! use gil || use jit; then ewarn "USE=-gil and USE=jit flags are considered experimental upstream. Using" @@ -134,8 +136,9 @@ pkg_pretend() { pkg_setup() { if [[ ${MERGE_TYPE} != binary ]]; then use jit && llvm-r1_pkg_setup - use test && check-reqs_pkg_setup if use test || use pgo; then + check-reqs_pkg_setup + local CONFIG_CHECK for f in "${!PYTHON_KERNEL_CHECKS[@]}"; do CONFIG_CHECK+="~${f} " |
