aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter/kwargs.py
AgeCommit message (Collapse)AuthorFilesLines
2022-03-03interpreter: use typed_kwargs for subproject()Dylan Baker1-0/+15
2022-03-01interpreter: use typed_kwargs for configure_fileDylan Baker1-0/+18
2022-02-16flake8: fix wrong numbers of blank line separatorsEli Schwartz1-1/+0
2022-01-28build: replace kwargs in CustomTarget initializerDylan Baker1-3/+3
Because we don't want to pass the Interpreter kwargs into the build layer. This turned out to be a mega commit, as there's really on elegant way to make this change in an incremental way. On the nice side, mypy made this change super easy, as nearly all of the calls to `CustomTarget` are fully type checked! It also turns out that we're not handling install_tags in custom_target correctly, since we're not converting the boolean values into Optional values!
2022-01-28interpreter: use typed_kwargs for vcs_tagDylan Baker1-0/+10
2022-01-18interpreterobjects: use typed_* for configuration_data.set*Dylan Baker1-0/+5
This removes the ability to use ConfigurationData as a dict, but restricting the inputs to `str | int | bool`. This may be a little too soon for this, and we may want to wait on that part, it's only bee 8 months since we started warning about this.
2022-01-18interpreterobjects: use typed_kwargs for dependency.get_variableDylan Baker1-0/+11
2022-01-18interpreterobjects: use typed_kwargs for dependency.get_pkgconfig_variableDylan Baker1-0/+6
2022-01-18interpreterobjects: use typed_kwargs for FeatureOption.requireDylan Baker1-0/+5
2021-11-29interpreter: use typed_kwargs for run_commandDylan Baker1-0/+7
This also cleans up a couple of internal callers of the internal impl version that don't set the `check` argument, and therefore trigger a warning about not setting the check argument.
2021-11-22interpreter: use typed_kwargs for find_programDylan Baker1-0/+6
2021-11-22interpreter: use typed_* args for the summary functionDylan Baker1-0/+7
This also includes a few type annotation cleans for the Summary object. Getting the positional arguments exactly right is impossible, as this is really a function with two different signatures: ``` summary(value: dictionary): void summary(key: string, value: any): void ``` We can get close enough in the typed_pos_args by enforcing that there are two parameters, one required and one optional, and that the first must be either a dictionary or a string.
2021-11-22interpreter: add typed_kwargs to subdirDylan Baker1-1/+16
2021-11-22interpreter: use typed_kwargs for projectDylan Baker1-0/+9
2021-11-22interpreter: use typed_kwargs for add_test_setupDylan Baker1-0/+9
This also sets a few missing "new kwarg" warnings, as they're quite easy to set with typwed_kwargs
2021-09-30interpreter: Use typed_kwargs for func_custom_targetDylan Baker1-1/+25
This does not convert the build side, or remove any of the checking it does. We still need that for other callers of custom target. What we'll do for those is add an internal interface that defaults things, then we'll be able to have those callers do their own validation, and the CustomTarget validation machinary can be removed. Fixes #9096
2021-09-30interpreter: DEPFILE_KW should be Optional[str]Dylan Baker1-1/+1
2021-09-30interpreter: use typed_kwargs on func_run_targetDylan Baker1-0/+7
2021-08-30make EnvironmentVariablesObject a proper holderDylan Baker1-2/+1
Currently, EnvironmentVariablesObject is a strange holder-that's-not-a-holder. This has implicaitons for things that expect to get an EnvironmentVariables object, as we can't automatically unholder it, and instead have to to manually do so. Now we can automatically unholder it, which makes everything much nicer.
2021-08-30interperter/kwargs: narrow type checkingDylan Baker1-1/+1
Since the convertor has been added env, we are now only going to be an EnvironmentVariables object, nothing else.
2021-08-26Add typed_kwargs to add_languages()Tristan Partin1-0/+4
2021-08-16interpreterobjects: Add TypedDict annoations for `extract_search_dirs`Dylan Baker1-0/+10
This allows for more accurate type checking
2021-07-07interpreter: use typed_kwargs for include_directoriesDylan Baker1-0/+5
2021-06-30interpreter: add required and disabled to importDylan Baker1-0/+5
This is useful both from the perspective of optional functionality that requires a module, and also as I continue to progress with Meson++, which will probably not implement all of the modules that Meson itself does.
2021-06-22interpreter: use typed_kwargs for install_manDylan Baker1-0/+7
2021-06-22interpreter: use typed_kwargs for install_headersDylan Baker1-0/+7
2021-06-22interpreter: use typed_kwargs for install_dataDylan Baker1-1/+9
2021-06-22interpreter: use typed_kwargs for install_subdirDylan Baker1-2/+10
2021-06-18holders: Fix the remaining code to respect the holder changesDaniel Mensinger1-9/+21
2021-06-15interpreterobjects|build: use typed_kwargs for generator.processDylan Baker1-0/+8
2021-06-15interpreter: use typed_kwargs for func_generatorDylan Baker1-0/+11
Do the type checking in a nice tidy way
2021-06-15modules/qt: fully annotate and check qt.has_toolsDylan Baker1-1/+15
2021-06-14interpreter: use typed_*args for test and benchmarkDylan Baker1-2/+35
this also requires some changes to the Rust module, as it calls into the test code.
2021-06-08interpreter: use typed_kwargs for the add_*_arguments familyDylan Baker1-0/+26
This makes use of the new convertor and validator arguments, so that we can check that the languages passed are in fact vaild, and then convert the native boolean into a MachineChoice internally.