aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/programs.py
AgeCommit message (Collapse)AuthorFilesLines
2022-06-17ExternalProgram: Make get_version() work without interpreterXavier Claessens1-6/+15
2021-11-29interpreter: use typed_kwargs for run_commandDylan Baker1-3/+4
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-29interpreter: use typed_pos_args for run_commandDylan Baker1-2/+1
2021-10-10Fix typos discovered by codespellChristian Clauss1-1/+1
2021-10-04condense linesEli Schwartz1-4/+2
2021-10-04f-stringsEli Schwartz1-4/+4
2021-09-20during executable lookup, do not search PATH if a directory component is givenEli Schwartz1-0/+3
This will always be wrong, because when a directory component is provided we need to match an exact filename on a manual search path, for example find_program with dirs: or the current meson.build subdir. If we ever get this far, shutil.which will do the same "is there a dirname, if so just check whether the filename exists relative to cwd"... except that the documented meson lookup path is that we check relative to meson.build subdir, not relative to the cwd, and the cwd could be anything, but is probably the root sourcedir. Since internally, meson does not actually os.chdir into the sourcedir, it could be absolutely anything at all, though. ... The actual returned name for shutil.which(name) given a literal pathname with a directory component is "return name" without adding the absolute path, which means that this is double-broken. Not only does it find things we didn't expect, the resulting ExternalProgram object doesn't have the correct path to the program, so it will report "found" and then fail to actually run when the current directory is changed, for example by ninja -C. Fixes #9262
2021-06-29fix: Always explicitly set encoding for text files (fixes #8263)Daniel Mensinger1-1/+1
2021-06-18holders: Move get_version from directly to ExternalProgramDaniel Mensinger1-1/+22
2021-06-18holders: Introduce HoldableObjectDaniel Mensinger1-1/+1
2021-03-19Move OverrideProgram to programsDylan Baker1-0/+5
2021-03-19programs: add type annotationsDylan Baker1-21/+27
2021-03-19split program related classes and functions out of dependenciesDylan Baker1-0/+351
Dependencies is already a large and complicated package without adding programs to the list. This also allows us to untangle a bit of spaghetti that we have.