fixup
This commit is contained in:
parent
75f9940777
commit
36c14561a6
@ -10,6 +10,7 @@
|
|||||||
import spack.config
|
import spack.config
|
||||||
import spack.error
|
import spack.error
|
||||||
import spack.package_base
|
import spack.package_base
|
||||||
|
import spack.repo
|
||||||
import spack.spec
|
import spack.spec
|
||||||
from spack.config import get_mark_from_yaml_data
|
from spack.config import get_mark_from_yaml_data
|
||||||
|
|
||||||
@ -195,7 +196,17 @@ def reject_requirement_constraint(
|
|||||||
self, pkg_name: str, *, constraint: spack.spec.Spec, kind: RequirementKind
|
self, pkg_name: str, *, constraint: spack.spec.Spec, kind: RequirementKind
|
||||||
) -> bool:
|
) -> bool:
|
||||||
"""Returns True if a requirement constraint should be rejected"""
|
"""Returns True if a requirement constraint should be rejected"""
|
||||||
if kind == RequirementKind.DEFAULT:
|
# If it's a specific package requirement, it's never rejected
|
||||||
|
if kind != RequirementKind.DEFAULT:
|
||||||
|
return False
|
||||||
|
|
||||||
|
# Reject default requirements for runtimes and compilers
|
||||||
|
if pkg_name in spack.repo.PATH.packages_with_tags("runtime"):
|
||||||
|
return True
|
||||||
|
|
||||||
|
if pkg_name in spack.repo.PATH.packages_with_tags("compiler"):
|
||||||
|
return True
|
||||||
|
|
||||||
# Requirements under all: are applied only if they are satisfiable considering only
|
# Requirements under all: are applied only if they are satisfiable considering only
|
||||||
# package rules, so e.g. variants must exist etc. Otherwise, they are rejected.
|
# package rules, so e.g. variants must exist etc. Otherwise, they are rejected.
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user