Rename 'variant_name' to 'variant' and document it in autotools build system (#26064)
This commit is contained in:
parent
45ba4d94bd
commit
58663692a4
@ -324,8 +324,29 @@ options:
|
|||||||
|
|
||||||
--with-libfabric=</path/to/libfabric>
|
--with-libfabric=</path/to/libfabric>
|
||||||
|
|
||||||
|
"""""""""""""""""""""""
|
||||||
|
The ``variant`` keyword
|
||||||
|
"""""""""""""""""""""""
|
||||||
|
|
||||||
|
When Spack variants and configure flags do not correspond one-to-one, the
|
||||||
|
``variant`` keyword can be passed to ``with_or_without`` and
|
||||||
|
``enable_or_disable``. For example:
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
variant('debug_tools', default=False)
|
||||||
|
config_args += self.enable_or_disable('debug-tools', variant='debug_tools')
|
||||||
|
|
||||||
|
Or when one variant controls multiple flags:
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
variant('debug_tools', default=False)
|
||||||
|
config_args += self.with_or_without('memchecker', variant='debug_tools')
|
||||||
|
config_args += self.with_or_without('profiler', variant='debug_tools')
|
||||||
|
|
||||||
""""""""""""""""""""
|
""""""""""""""""""""
|
||||||
activation overrides
|
Activation overrides
|
||||||
""""""""""""""""""""
|
""""""""""""""""""""
|
||||||
|
|
||||||
Finally, the behavior of either ``with_or_without`` or
|
Finally, the behavior of either ``with_or_without`` or
|
||||||
|
@ -374,7 +374,7 @@ def _activate_or_not(
|
|||||||
activation_word,
|
activation_word,
|
||||||
deactivation_word,
|
deactivation_word,
|
||||||
activation_value=None,
|
activation_value=None,
|
||||||
variant_name=None
|
variant=None
|
||||||
):
|
):
|
||||||
"""This function contains the current implementation details of
|
"""This function contains the current implementation details of
|
||||||
:meth:`~spack.build_systems.autotools.AutotoolsPackage.with_or_without` and
|
:meth:`~spack.build_systems.autotools.AutotoolsPackage.with_or_without` and
|
||||||
@ -393,8 +393,8 @@ def _activate_or_not(
|
|||||||
|
|
||||||
The special value 'prefix' can also be assigned and will return
|
The special value 'prefix' can also be assigned and will return
|
||||||
``spec[name].prefix`` as activation parameter.
|
``spec[name].prefix`` as activation parameter.
|
||||||
variant_name (str): name of the variant that is being processed
|
variant (str): name of the variant that is being processed
|
||||||
(if different from option name)
|
(if different from option name)
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
||||||
@ -414,7 +414,7 @@ def _activate_or_not(
|
|||||||
'foo', 'with', 'without', activation_value='prefix'
|
'foo', 'with', 'without', activation_value='prefix'
|
||||||
)
|
)
|
||||||
_activate_or_not('bar', 'with', 'without')
|
_activate_or_not('bar', 'with', 'without')
|
||||||
_activate_or_not('ba-z', 'with', 'without', variant_name='ba_z')
|
_activate_or_not('ba-z', 'with', 'without', variant='ba_z')
|
||||||
|
|
||||||
will generate the following configuration options:
|
will generate the following configuration options:
|
||||||
|
|
||||||
@ -437,36 +437,35 @@ def _activate_or_not(
|
|||||||
if activation_value == 'prefix':
|
if activation_value == 'prefix':
|
||||||
activation_value = lambda x: spec[x].prefix
|
activation_value = lambda x: spec[x].prefix
|
||||||
|
|
||||||
if variant_name is None:
|
variant = variant or name
|
||||||
variant_name = name
|
|
||||||
|
|
||||||
# Defensively look that the name passed as argument is among
|
# Defensively look that the name passed as argument is among
|
||||||
# variants
|
# variants
|
||||||
if variant_name not in self.variants:
|
if variant not in self.variants:
|
||||||
msg = '"{0}" is not a variant of "{1}"'
|
msg = '"{0}" is not a variant of "{1}"'
|
||||||
raise KeyError(msg.format(variant_name, self.name))
|
raise KeyError(msg.format(variant, self.name))
|
||||||
|
|
||||||
# Create a list of pairs. Each pair includes a configuration
|
# Create a list of pairs. Each pair includes a configuration
|
||||||
# option and whether or not that option is activated
|
# option and whether or not that option is activated
|
||||||
if set(self.variants[variant_name].values) == set((True, False)):
|
if set(self.variants[variant].values) == set((True, False)):
|
||||||
# BoolValuedVariant carry information about a single option.
|
# BoolValuedVariant carry information about a single option.
|
||||||
# Nonetheless, for uniformity of treatment we'll package them
|
# Nonetheless, for uniformity of treatment we'll package them
|
||||||
# in an iterable of one element.
|
# in an iterable of one element.
|
||||||
condition = '+{name}'.format(name=variant_name)
|
condition = '+{name}'.format(name=variant)
|
||||||
options = [(name, condition in spec)]
|
options = [(name, condition in spec)]
|
||||||
else:
|
else:
|
||||||
condition = '{variant_name}={value}'
|
condition = '{variant}={value}'
|
||||||
# "feature_values" is used to track values which correspond to
|
# "feature_values" is used to track values which correspond to
|
||||||
# features which can be enabled or disabled as understood by the
|
# features which can be enabled or disabled as understood by the
|
||||||
# package's build system. It excludes values which have special
|
# package's build system. It excludes values which have special
|
||||||
# meanings and do not correspond to features (e.g. "none")
|
# meanings and do not correspond to features (e.g. "none")
|
||||||
feature_values = getattr(
|
feature_values = getattr(
|
||||||
self.variants[variant_name].values, 'feature_values', None
|
self.variants[variant].values, 'feature_values', None
|
||||||
) or self.variants[variant_name].values
|
) or self.variants[variant].values
|
||||||
|
|
||||||
options = [
|
options = [
|
||||||
(value,
|
(value,
|
||||||
condition.format(variant_name=variant_name,
|
condition.format(variant=variant,
|
||||||
value=value) in spec)
|
value=value) in spec)
|
||||||
for value in feature_values
|
for value in feature_values
|
||||||
]
|
]
|
||||||
@ -495,7 +494,7 @@ def _default_generator(is_activated):
|
|||||||
args.append(line_generator(activated))
|
args.append(line_generator(activated))
|
||||||
return args
|
return args
|
||||||
|
|
||||||
def with_or_without(self, name, activation_value=None, variant_name=None):
|
def with_or_without(self, name, activation_value=None, variant=None):
|
||||||
"""Inspects a variant and returns the arguments that activate
|
"""Inspects a variant and returns the arguments that activate
|
||||||
or deactivate the selected feature(s) for the configure options.
|
or deactivate the selected feature(s) for the configure options.
|
||||||
|
|
||||||
@ -522,9 +521,9 @@ def with_or_without(self, name, activation_value=None, variant_name=None):
|
|||||||
list of arguments to configure
|
list of arguments to configure
|
||||||
"""
|
"""
|
||||||
return self._activate_or_not(name, 'with', 'without', activation_value,
|
return self._activate_or_not(name, 'with', 'without', activation_value,
|
||||||
variant_name)
|
variant)
|
||||||
|
|
||||||
def enable_or_disable(self, name, activation_value=None, variant_name=None):
|
def enable_or_disable(self, name, activation_value=None, variant=None):
|
||||||
"""Same as
|
"""Same as
|
||||||
:meth:`~spack.build_systems.autotools.AutotoolsPackage.with_or_without`
|
:meth:`~spack.build_systems.autotools.AutotoolsPackage.with_or_without`
|
||||||
but substitute ``with`` with ``enable`` and ``without`` with ``disable``.
|
but substitute ``with`` with ``enable`` and ``without`` with ``disable``.
|
||||||
@ -542,7 +541,7 @@ def enable_or_disable(self, name, activation_value=None, variant_name=None):
|
|||||||
list of arguments to configure
|
list of arguments to configure
|
||||||
"""
|
"""
|
||||||
return self._activate_or_not(
|
return self._activate_or_not(
|
||||||
name, 'enable', 'disable', activation_value, variant_name
|
name, 'enable', 'disable', activation_value, variant
|
||||||
)
|
)
|
||||||
|
|
||||||
run_after('install')(PackageBase._run_default_install_time_test_callbacks)
|
run_after('install')(PackageBase._run_default_install_time_test_callbacks)
|
||||||
|
@ -169,7 +169,7 @@ def activate(value):
|
|||||||
options = pkg.with_or_without('bvv')
|
options = pkg.with_or_without('bvv')
|
||||||
assert '--with-bvv' in options
|
assert '--with-bvv' in options
|
||||||
|
|
||||||
options = pkg.with_or_without('lorem-ipsum', variant_name='lorem_ipsum')
|
options = pkg.with_or_without('lorem-ipsum', variant='lorem_ipsum')
|
||||||
assert '--without-lorem-ipsum' in options
|
assert '--without-lorem-ipsum' in options
|
||||||
|
|
||||||
def test_none_is_allowed(self):
|
def test_none_is_allowed(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user