blob: 194a0bd18d6a4f7bc80769b76aaec8ed5191ceda [file] [log] [blame]
Lukacs T. Berkif8f3ba82021-06-09 12:45:21 +02001# CMD: Prints the module named $arg in a slightly more concise way
2
Lukacs T. Berki115b7542021-04-01 18:27:04 +02003include "library";
4
5def printModule($mod):
6 .[] | select(.Name == $mod) |
7 transformModuleReferences(emptyIfNull | removeLinkVariation | removeEmptyVariations) |
8 depDelta(.Variations) | depDelta(.DependencyVariations) |
9 transformModule(flattenVariations) |
10 deleteDependencyVariations |
11 .Deps |= map(deleteDependencyVariations) |
12 .Deps |= groupDeps
13;
14
15printModule($arg)