summaryrefslogtreecommitdiffstats
path: root/build/vs/generate_yaml.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /build/vs/generate_yaml.py
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build/vs/generate_yaml.py')
-rwxr-xr-xbuild/vs/generate_yaml.py61
1 files changed, 61 insertions, 0 deletions
diff --git a/build/vs/generate_yaml.py b/build/vs/generate_yaml.py
new file mode 100755
index 0000000000..0427804806
--- /dev/null
+++ b/build/vs/generate_yaml.py
@@ -0,0 +1,61 @@
+#!/usr/bin/env python3
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+import sys
+
+import yaml
+from mozbuild.shellutil import quote as shellquote
+from vsdownload import (
+ getArgsParser,
+ getManifest,
+ getPackages,
+ getSelectedPackages,
+ lowercaseIgnores,
+ setPackageSelection,
+)
+
+if __name__ == "__main__":
+ parser = getArgsParser()
+ parser.add_argument("-o", dest="output", required=True, help="Output file")
+ parser.add_argument(
+ "--exclude", default=[], nargs="+", help="Patterns of file names to exclude"
+ )
+ args = parser.parse_args()
+ lowercaseIgnores(args)
+
+ packages = getPackages(getManifest(args))
+ setPackageSelection(args, packages)
+ selected = getSelectedPackages(packages, args)
+ reduced = []
+ # Filter-out data we won't be using.
+ for s in selected:
+ type = s["type"]
+ if type == "Component" or type == "Workload" or type == "Group":
+ continue
+ if type == "Vsix" or s["id"].startswith(("Win10SDK", "Win11SDK")):
+ filtered = {k: v for k, v in s.items() if k in ("type", "id", "version")}
+ filtered["payloads"] = [
+ {
+ k: v
+ for k, v in payload.items()
+ if k in ("fileName", "sha256", "size", "url")
+ }
+ for payload in s["payloads"]
+ if payload["fileName"].endswith((".cab", ".msi", ".vsix"))
+ and not any(e in payload["fileName"] for e in args.exclude)
+ ]
+ reduced.append(filtered)
+ with open(args.output, "w") as out:
+ print("# Generated with:", file=out)
+ print(
+ "# ./mach python --virtualenv build build/vs/generate_yaml.py \\", file=out
+ )
+ for i, arg_ in enumerate(sys.argv[1:]):
+ arg = shellquote(arg_)
+ if i < len(sys.argv) - 2:
+ print("# ", arg, "\\", file=out)
+ else:
+ print("# ", arg, file=out)
+ print(yaml.dump(reduced), file=out)