aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-06-14 15:36:16 -0700
committerDylan Baker <dylan@pnwbakers.com>2021-06-22 09:13:41 -0700
commitea3d85a1c0933f7b5b0588e3137c1dd8a50ce5f3 (patch)
tree893ca8571799acfe304e028836508b78ce7d7e9d
parenta551e7613728051a398f296cda40a4c8cf25dcbb (diff)
downloadmeson-ea3d85a1c0933f7b5b0588e3137c1dd8a50ce5f3.zip
meson-ea3d85a1c0933f7b5b0588e3137c1dd8a50ce5f3.tar.gz
meson-ea3d85a1c0933f7b5b0588e3137c1dd8a50ce5f3.tar.bz2
interpreter: use typed_kwargs for install_data
-rw-r--r--mesonbuild/interpreter/interpreter.py41
-rw-r--r--mesonbuild/interpreter/kwargs.py10
2 files changed, 25 insertions, 26 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py
index d5bfdb9..78a1420 100644
--- a/mesonbuild/interpreter/interpreter.py
+++ b/mesonbuild/interpreter/interpreter.py
@@ -1996,37 +1996,28 @@ This will become a hard error in the future.''' % kwargs['input'], location=self
'permissions arg to be a string or false')
return FileMode(*install_mode)
- @FeatureNewKwargs('install_data', '0.46.0', ['rename'])
- @FeatureNewKwargs('install_data', '0.38.0', ['install_mode'])
- @permittedKwargs({'install_dir', 'install_mode', 'rename', 'sources'})
@typed_pos_args('install_data', varargs=(str, mesonlib.File))
- def func_install_data(self, node: mparser.BaseNode, args: T.Tuple[T.List['mesonlib.FileOrString']],
- kwargs: T.Dict[str, T.Any]):
- kwsource = mesonlib.stringlistify(kwargs.get('sources', []))
- raw_sources = args[0] + kwsource
- sources: T.List[mesonlib.File] = []
- source_strings: T.List[str] = []
- for s in raw_sources:
- if isinstance(s, mesonlib.File):
- sources.append(s)
- elif isinstance(s, str):
- source_strings.append(s)
- else:
- raise InvalidArguments('Argument must be string or file.')
- sources += self.source_strings_to_files(source_strings)
- install_dir: T.Optional[str] = kwargs.get('install_dir', None)
- if install_dir is not None and not isinstance(install_dir, str):
- raise InvalidArguments('Keyword argument install_dir not a string.')
- install_mode = self._get_kwarg_install_mode(kwargs)
- rename: T.Optional[T.List[str]] = kwargs.get('rename', None)
- if rename is not None:
- rename = mesonlib.stringlistify(rename)
+ @typed_kwargs(
+ 'install_data',
+ KwargInfo('install_dir', str),
+ KwargInfo('sources', ContainerTypeInfo(list, (str, mesonlib.File)), listify=True, default=[]),
+ KwargInfo('rename', ContainerTypeInfo(list, str), default=[], listify=True, since='0.46.0'),
+ _INSTALL_MODE_KW.evolve(since='0.38.0'),
+ )
+ def func_install_data(self, node: mparser.BaseNode,
+ args: T.Tuple[T.List['mesonlib.FileOrString']],
+ kwargs: 'kwargs.FuncInstallData') -> build.Data:
+ sources = self.source_strings_to_files(args[0] + kwargs['sources'])
+ rename = kwargs['rename'] or None
+ if rename:
if len(rename) != len(sources):
raise InvalidArguments(
'"rename" and "sources" argument lists must be the same length if "rename" is given. '
f'Rename has {len(rename)} elements and sources has {len(sources)}.')
- data = build.Data(sources, install_dir, install_mode, self.subproject, rename)
+ data = build.Data(
+ sources, kwargs['install_dir'], kwargs['install_mode'],
+ self.subproject, rename)
self.build.data.append(data)
return data
diff --git a/mesonbuild/interpreter/kwargs.py b/mesonbuild/interpreter/kwargs.py
index e9042af..300bb1c 100644
--- a/mesonbuild/interpreter/kwargs.py
+++ b/mesonbuild/interpreter/kwargs.py
@@ -10,7 +10,7 @@ from typing_extensions import TypedDict, Literal
from .. import build
from .. import coredata
-from ..mesonlib import MachineChoice, File, FileMode
+from ..mesonlib import MachineChoice, File, FileMode, FileOrString
from .interpreterobjects import EnvironmentVariablesObject
@@ -110,3 +110,11 @@ class FuncInstallSubdir(TypedDict):
exclude_files: T.List[str]
exclude_directories: T.List[str]
install_mode: FileMode
+
+
+class FuncInstallData(TypedDict):
+
+ install_dir: str
+ sources: T.List[FileOrString]
+ rename: T.List[str]
+ install_mode: FileMode