aboutsummaryrefslogtreecommitdiff
path: root/tools/gen_data.py
AgeCommit message (Collapse)AuthorFilesLines
2022-01-10port from embedded data to importlib.resourcesEli Schwartz1-140/+0
2021-06-29fix: Always explicitly set encoding for text files (fixes #8263)Daniel Mensinger1-2/+2
2021-01-13gen_data.py: even more sortingEli Schwartz1-1/+1
glob.glob() is not sorted, despite using shell-style wildcards, and the documentation does not mention this: https://bugs.python.org/issue21748 Recently, it does start mentioning "Whether or not the results are sorted depends on the file system." which does not really get to the heart of the matter... This is causing fuzz too.
2021-01-12gen_data.py: sort files when generating mesondataEli Schwartz1-1/+1
The current way this works is chaos since the tool might return files in any order and thus shuffle around the order of embedded files. This results in big diffs that cannot be easily reviewed. Also regenerate the data according to the, going forward, canonical ordering algorithm.
2020-11-20use real pathlib moduleDylan Baker1-1/+1
We added the _pathlib module to work around defeciencies in python 3.5's implementation, since we now rely on 3.6 lets drop this
2020-10-24cmake: Disable the new (CMake 3.16) PCH supportDaniel Mensinger1-1/+2
Subprojects that use the CMake PCH feature will cause compilation/linker errors. The CMake PCH support should thus be disabled until this can be properly translated to meson.
2020-07-16mdata: Generate mesondata.py from */data foldersDaniel Mensinger1-0/+139