BuildStream 2.6.0.dev0__tar.gz → 2.7.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- buildstream-2.7.0/.pylintrc +548 -0
- buildstream-2.7.0/NEWS +1153 -0
- buildstream-2.7.0/PKG-INFO +174 -0
- buildstream-2.7.0/README.rst +123 -0
- buildstream-2.7.0/doc/source/core_plugins.rst +73 -0
- buildstream-2.7.0/doc/source/main_install.rst +286 -0
- buildstream-2.7.0/doc/source/using_config.rst +1387 -0
- buildstream-2.7.0/pyproject.toml +62 -0
- buildstream-2.7.0/requirements/cov-requirements.txt +12 -0
- buildstream-2.7.0/requirements/dev-requirements.txt +25 -0
- buildstream-2.7.0/requirements/requirements.in +11 -0
- buildstream-2.7.0/requirements/requirements.txt +14 -0
- buildstream-2.7.0/setup.cfg +42 -0
- buildstream-2.7.0/setup.py +386 -0
- buildstream-2.7.0/src/BuildStream.egg-info/PKG-INFO +174 -0
- buildstream-2.7.0/src/BuildStream.egg-info/SOURCES.txt +2425 -0
- buildstream-2.7.0/src/BuildStream.egg-info/requires.txt +11 -0
- buildstream-2.7.0/src/buildstream/_artifact.py +760 -0
- buildstream-2.7.0/src/buildstream/_artifactcache.py +475 -0
- buildstream-2.7.0/src/buildstream/_assetcache.py +473 -0
- buildstream-2.7.0/src/buildstream/_cas/cascache.py +791 -0
- buildstream-2.7.0/src/buildstream/_cas/casremote.py +161 -0
- buildstream-2.7.0/src/buildstream/_context.py +823 -0
- buildstream-2.7.0/src/buildstream/_frontend/cli.py +1688 -0
- buildstream-2.7.0/src/buildstream/_frontend/complete.py +375 -0
- buildstream-2.7.0/src/buildstream/_loader/loadelement.c +18374 -0
- buildstream-2.7.0/src/buildstream/_loader/loadelement.pyx +628 -0
- buildstream-2.7.0/src/buildstream/_loader/loader.py +1089 -0
- buildstream-2.7.0/src/buildstream/_pluginfactory/pluginoriginpip.py +108 -0
- buildstream-2.7.0/src/buildstream/_project.py +1214 -0
- buildstream-2.7.0/src/buildstream/_protos/buildstream/v2/artifact.proto +96 -0
- buildstream-2.7.0/src/buildstream/_protos/buildstream/v2/artifact_pb2.py +44 -0
- buildstream-2.7.0/src/buildstream/_protos/buildstream/v2/artifact_pb2.pyi +77 -0
- buildstream-2.7.0/src/buildstream/_stream.py +2157 -0
- buildstream-2.7.0/src/buildstream/_types.c +12392 -0
- buildstream-2.7.0/src/buildstream/_utils.c +9039 -0
- buildstream-2.7.0/src/buildstream/_variables.c +18923 -0
- buildstream-2.7.0/src/buildstream/_version.py +21 -0
- buildstream-2.7.0/src/buildstream/_yaml.c +20641 -0
- buildstream-2.7.0/src/buildstream/data/projectconfig.yaml +190 -0
- buildstream-2.7.0/src/buildstream/data/userconfig.yaml +159 -0
- buildstream-2.7.0/src/buildstream/element.py +3443 -0
- buildstream-2.7.0/src/buildstream/exceptions.py +162 -0
- buildstream-2.7.0/src/buildstream/node.c +40368 -0
- buildstream-2.7.0/src/buildstream/node.pyi +131 -0
- buildstream-2.7.0/src/buildstream/sandbox/_reremote.py +78 -0
- buildstream-2.7.0/src/buildstream/sandbox/_sandboxbuildboxrun.py +280 -0
- buildstream-2.7.0/src/buildstream/sandbox/_sandboxremote.py +268 -0
- buildstream-2.7.0/src/buildstream/source.py +2122 -0
- buildstream-2.7.0/src/buildstream/types.py +412 -0
- buildstream-2.7.0/tests/artifactcache/pull.py +227 -0
- buildstream-2.7.0/tests/artifactcache/push.py +132 -0
- buildstream-2.7.0/tests/conftest.py +157 -0
- buildstream-2.7.0/tests/format/link/multiple-links-same-target/elements/hello-link-2.bst +4 -0
- buildstream-2.7.0/tests/format/link/multiple-links-same-target/elements/target.bst +5 -0
- buildstream-2.7.0/tests/format/link/multiple-links-same-target/project.conf +4 -0
- buildstream-2.7.0/tests/format/link/simple/elements/hello-link.bst +4 -0
- buildstream-2.7.0/tests/format/link/simple/elements/hello.bst +5 -0
- buildstream-2.7.0/tests/format/link.py +220 -0
- buildstream-2.7.0/tests/frontend/artifact_show.py +271 -0
- buildstream-2.7.0/tests/frontend/project/elements/manual.bst +9 -0
- buildstream-2.7.0/tests/frontend/pull.py +631 -0
- buildstream-2.7.0/tests/frontend/show.py +846 -0
- buildstream-2.7.0/tests/frontend/show_artifact_cas_digest_project/project.conf +10 -0
- buildstream-2.7.0/tests/frontend/simple/elements/target.bst +8 -0
- buildstream-2.7.0/tests/frontend/source-info/elements/multisource.bst +4 -0
- buildstream-2.7.0/tests/frontend/source-info/plugins/multisource.py +48 -0
- buildstream-2.7.0/tests/frontend/source-info/project.conf +17 -0
- buildstream-2.7.0/tests/integration/shellbuildtrees.py +490 -0
- buildstream-2.7.0/tests/sourcecache/project/elements/compose-all.bst +12 -0
- buildstream-2.7.0/tests/sourcecache/project/elements/import-bin.bst +4 -0
- buildstream-2.7.0/tests/sourcecache/project/elements/import-dev.bst +4 -0
- buildstream-2.7.0/tests/sourcecache/project/files/bin-files/usr/bin/hello +3 -0
- buildstream-2.7.0/tests/sourcecache/project/files/dev-files/usr/include/pony.h +12 -0
- buildstream-2.7.0/tests/sources/source_provenance_attributes/elements/target.bst +7 -0
- buildstream-2.7.0/tests/sources/source_provenance_attributes/elements/target_a.bst +7 -0
- buildstream-2.7.0/tests/sources/source_provenance_attributes/elements/target_b.bst +7 -0
- buildstream-2.7.0/tests/sources/source_provenance_attributes/files/file +1 -0
- buildstream-2.7.0/tests/sources/source_provenance_attributes/plugins/multisource-plugin.py +36 -0
- buildstream-2.7.0/tests/sources/source_provenance_attributes/project.conf +17 -0
- buildstream-2.7.0/tests/sources/source_provenance_attributes.py +159 -0
- buildstream-2.7.0/tests/sources/tar/out-of-basedir-hardlinks/contents/to_extract/a +1 -0
- buildstream-2.7.0/tox.ini +271 -0
- buildstream-2.6.0.dev0/.pylintrc +0 -552
- buildstream-2.6.0.dev0/NEWS +0 -1130
- buildstream-2.6.0.dev0/PKG-INFO +0 -172
- buildstream-2.6.0.dev0/README.rst +0 -119
- buildstream-2.6.0.dev0/doc/source/core_plugins.rst +0 -73
- buildstream-2.6.0.dev0/doc/source/main_install.rst +0 -286
- buildstream-2.6.0.dev0/doc/source/using_config.rst +0 -1386
- buildstream-2.6.0.dev0/pyproject.toml +0 -66
- buildstream-2.6.0.dev0/requirements/cov-requirements.txt +0 -12
- buildstream-2.6.0.dev0/requirements/dev-requirements.txt +0 -25
- buildstream-2.6.0.dev0/requirements/requirements.in +0 -12
- buildstream-2.6.0.dev0/requirements/requirements.txt +0 -16
- buildstream-2.6.0.dev0/setup.cfg +0 -39
- buildstream-2.6.0.dev0/setup.py +0 -387
- buildstream-2.6.0.dev0/src/BuildStream.egg-info/PKG-INFO +0 -172
- buildstream-2.6.0.dev0/src/BuildStream.egg-info/SOURCES.txt +0 -2402
- buildstream-2.6.0.dev0/src/BuildStream.egg-info/requires.txt +0 -14
- buildstream-2.6.0.dev0/src/buildstream/_artifact.py +0 -753
- buildstream-2.6.0.dev0/src/buildstream/_artifactcache.py +0 -464
- buildstream-2.6.0.dev0/src/buildstream/_assetcache.py +0 -473
- buildstream-2.6.0.dev0/src/buildstream/_cas/cascache.py +0 -818
- buildstream-2.6.0.dev0/src/buildstream/_cas/casremote.py +0 -179
- buildstream-2.6.0.dev0/src/buildstream/_context.py +0 -823
- buildstream-2.6.0.dev0/src/buildstream/_frontend/cli.py +0 -1670
- buildstream-2.6.0.dev0/src/buildstream/_frontend/complete.py +0 -369
- buildstream-2.6.0.dev0/src/buildstream/_loader/loadelement.c +0 -18035
- buildstream-2.6.0.dev0/src/buildstream/_loader/loadelement.pyx +0 -628
- buildstream-2.6.0.dev0/src/buildstream/_loader/loader.py +0 -1083
- buildstream-2.6.0.dev0/src/buildstream/_pluginfactory/pluginoriginpip.py +0 -110
- buildstream-2.6.0.dev0/src/buildstream/_project.py +0 -1202
- buildstream-2.6.0.dev0/src/buildstream/_protos/buildstream/v2/artifact.proto +0 -95
- buildstream-2.6.0.dev0/src/buildstream/_protos/buildstream/v2/artifact_pb2.py +0 -44
- buildstream-2.6.0.dev0/src/buildstream/_protos/buildstream/v2/artifact_pb2.pyi +0 -75
- buildstream-2.6.0.dev0/src/buildstream/_stream.py +0 -2119
- buildstream-2.6.0.dev0/src/buildstream/_types.c +0 -12287
- buildstream-2.6.0.dev0/src/buildstream/_utils.c +0 -8760
- buildstream-2.6.0.dev0/src/buildstream/_variables.c +0 -19121
- buildstream-2.6.0.dev0/src/buildstream/_version.py +0 -21
- buildstream-2.6.0.dev0/src/buildstream/_yaml.c +0 -20797
- buildstream-2.6.0.dev0/src/buildstream/data/projectconfig.yaml +0 -184
- buildstream-2.6.0.dev0/src/buildstream/data/userconfig.yaml +0 -159
- buildstream-2.6.0.dev0/src/buildstream/element.py +0 -3430
- buildstream-2.6.0.dev0/src/buildstream/exceptions.py +0 -157
- buildstream-2.6.0.dev0/src/buildstream/node.c +0 -40674
- buildstream-2.6.0.dev0/src/buildstream/node.pyi +0 -130
- buildstream-2.6.0.dev0/src/buildstream/sandbox/_reremote.py +0 -79
- buildstream-2.6.0.dev0/src/buildstream/sandbox/_sandboxbuildboxrun.py +0 -281
- buildstream-2.6.0.dev0/src/buildstream/sandbox/_sandboxremote.py +0 -268
- buildstream-2.6.0.dev0/src/buildstream/source.py +0 -2058
- buildstream-2.6.0.dev0/src/buildstream/types.py +0 -448
- buildstream-2.6.0.dev0/tests/artifactcache/pull.py +0 -222
- buildstream-2.6.0.dev0/tests/artifactcache/push.py +0 -188
- buildstream-2.6.0.dev0/tests/conftest.py +0 -162
- buildstream-2.6.0.dev0/tests/format/link.py +0 -200
- buildstream-2.6.0.dev0/tests/frontend/artifact_show.py +0 -186
- buildstream-2.6.0.dev0/tests/frontend/pull.py +0 -627
- buildstream-2.6.0.dev0/tests/frontend/show.py +0 -816
- buildstream-2.6.0.dev0/tests/frontend/source-info/project.conf +0 -16
- buildstream-2.6.0.dev0/tests/integration/shellbuildtrees.py +0 -461
- buildstream-2.6.0.dev0/tox.ini +0 -271
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/.coveragerc +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/COMMITTERS.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/CONTRIBUTING.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/LICENSE +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/MANIFEST.in +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/NOTICE +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/badges.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/bst2html.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/autotools/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/autotools/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/autotools/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/autotools/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/elements/libhello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/elements/runtime-only.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/files/hello/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/files/hello/hello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/files/libhello/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/files/libhello/libhello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/files/libhello/libhello.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/composition/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/developing/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/developing/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/developing/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/developing/files/src/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/developing/files/src/hello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/developing/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/developing/update.patch +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/directives/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/directives/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/directives/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/directives/files/src/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/directives/files/src/hello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/directives/include/greeting.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/directives/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/elements/libhello-filtered.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/elements/libhello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/files/hello/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/files/hello/hello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/files/libhello/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/files/libhello/default-person.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/files/libhello/libhello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/files/libhello/libhello.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/filtering/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/first-project/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/first-project/hello.world +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/first-project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/integration-commands/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/integration-commands/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/integration-commands/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/integration-commands/elements/libhello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/integration-commands/files/hello/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/integration-commands/files/hello/hello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/integration-commands/files/libhello/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/integration-commands/files/libhello/libhello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/integration-commands/files/libhello/libhello.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/integration-commands/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junction-includes/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junction-includes/elements/subproject-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junction-includes/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junction-includes/subproject/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junction-includes/subproject/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junction-includes/subproject/include/paths.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junction-includes/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junctions/autotools/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junctions/autotools/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junctions/autotools/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junctions/autotools/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junctions/elements/callHello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junctions/elements/hello-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junctions/files/callHello.sh +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/junctions/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/elements/libhello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/elements/runtime-only.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/files/hello/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/files/hello/hello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/files/hello/hello.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/files/libhello/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/files/libhello/hello.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/files/libhello/libhello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/files/libhello/libhello.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/overlaps/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/running-commands/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/running-commands/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/running-commands/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/running-commands/files/src/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/running-commands/files/src/hello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/running-commands/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/elements/base/alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/elements/hello-dynamic.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/elements/hello-static.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/elements/libhello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/files/hello/Makefile.dynamic +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/files/hello/Makefile.static +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/files/hello/hello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/files/libhello/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/files/libhello/libhello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/files/libhello/libhello.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/examples/strict-mode/update.patch +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/autotools.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/composition.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/developing.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/directives.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/filtering.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/first-project.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/integration-commands.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/junction-includes.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/junctions.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/overlaps.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/running-commands.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/sessions/strict-mode.run +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/CONTRIBUTING.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/additional_docker.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/arch_cachekeys.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/arch_caches.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/arch_data_model.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/arch_dependency_model.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/arch_overview.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/arch_program_flow.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/arch_remote_execution.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/arch_sandboxing.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/arch_scheduler.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/conf.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/core_additional.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/core_format.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/core_framework.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/developing/strict-mode.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/developing/workspaces.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/examples/git-mirror.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/examples/tar-mirror.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/format_declaring.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/format_intro.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/format_project.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/format_project_refs.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/format_public.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/hacking/coding_guidelines.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/hacking/grpc_protocols.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/hacking/making_releases.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/hacking/managing_data_files.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/hacking/measuring_performance.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/hacking/ui.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/hacking/updating_python_deps.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/hacking/using_the_testsuite.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/hacking/writing_documentation.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/hacking/writing_plugins.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/handling-files/composition.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/handling-files/filtering.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/handling-files/overlaps.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-datamodel-context.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-datamodel-element-composition.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-datamodel-element.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-datamodel-source-composition.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-datamodel-source.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-dependency-model-build.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-dependency-model-runtime.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-dependency-model.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-overview.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-program-flow.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-remote-execution.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-scheduler-job.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-scheduler-queue-ports.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-scheduler-queues.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/image-sources/arch-scheduler-run.odg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-datamodel-context.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-datamodel-element-composition.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-datamodel-element.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-datamodel-source-composition.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-datamodel-source.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-dependency-model-build.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-dependency-model-runtime.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-dependency-model.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-overview.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-program-flow.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-remote-execution.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-scheduler-job.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-scheduler-queue-ports.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-scheduler-queues.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/images/arch-scheduler-run.svg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/index.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/junctions/junction-elements.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/junctions/junction-includes.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/junctions/junction-workspaces.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/main_about.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/main_architecture.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/main_core.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/main_glossary.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/main_porting.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/main_using.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/plugin.rsttemplate +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/porting_command_line.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/porting_project.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/porting_user_configuration.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sample_plugin/MANIFEST.in +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sample_plugin/setup.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/autotools-build.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/autotools-shell.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/autotools-show-variables.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/composition-build.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/composition-list-contents.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/composition-shell.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/developing-build-after-changes-workspace.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/developing-build-after-changes.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/developing-close-workspace.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/developing-discard-workspace.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/developing-reopen-workspace.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/developing-reset-workspace.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/developing-shell-after-changes.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/developing-soft-reset.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/developing-workspace-list.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/developing-workspace-open.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/directives-build-excited.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/directives-build-normal.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/directives-build-somber.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/directives-shell-excited.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/directives-shell-normal.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/directives-shell-somber.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/filtering-list-contents-libhello-filtered.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/filtering-list-contents-libhello.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/filtering-shell-with-filter.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/filtering-shell-without-filter.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/first-project-build.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/first-project-checkout.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/first-project-init.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/first-project-ls.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/first-project-show.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/first-project-touch.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/integration-commands-build.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/integration-commands-shell.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/junction-includes-build-funky.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/junction-includes-build-normal.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/junction-includes-shell-funky.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/junction-includes-shell-normal.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/junctions-build.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/junctions-shell.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/junctions-workspace-open-subproject.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/junctions-workspace-open.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/overlaps-build.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/running-commands-build.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/running-commands-shell.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/running-commands-show-after.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/running-commands-show-before.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/strict-mode-build-dynamic-no-strict.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/strict-mode-build-static-no-strict.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/strict-mode-run-dynamic-no-strict.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/strict-mode-run-static-no-strict.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/strict-mode-show-dynamic-no-strict.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/strict-mode-show-dynamic-strict.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/strict-mode-show-initial.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/strict-mode-show-static-no-strict.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/sessions-stored/strict-mode-workspace-open.html +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/tutorial/autotools.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/tutorial/directives.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/tutorial/first-project.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/tutorial/integration-commands.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/tutorial/running-commands.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/using_commands.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/using_configuring_cache_server.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/using_configuring_remote_execution.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/using_developing.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/using_examples.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/using_handling_files.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/using_junctions.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/doc/source/using_tutorial.rst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-artifact-checkout.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-artifact-delete.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-artifact-list-contents.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-artifact-log.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-artifact-pull.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-artifact-push.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-artifact-server.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-artifact-show.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-artifact.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-build.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-help.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-init.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-shell.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-show.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-source-checkout.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-source-fetch.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-source-push.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-source-track.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-source.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-workspace-close.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-workspace-list.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-workspace-open.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-workspace-reset.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst-workspace.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/man/bst.1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/requirements/cov-requirements.in +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/requirements/dev-requirements.in +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/BuildStream.egg-info/dependency_links.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/BuildStream.egg-info/entry_points.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/BuildStream.egg-info/not-zip-safe +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/BuildStream.egg-info/top_level.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/__main__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_artifactelement.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_artifactproject.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_cachekey.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_cas/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_cas/casdprocessmanager.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_cas/casserver.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_elementproxy.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_elementsources.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_elementsourcescache.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_exceptions.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_frontend/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_frontend/app.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_frontend/linuxapp.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_frontend/profile.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_frontend/status.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_frontend/widget.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_includes.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_loader/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_loader/listsort.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_loader/loadcontext.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_loader/loadelement.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_loader/metasource.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_loader/types.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_message.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_messenger.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_options/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_options/option.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_options/optionarch.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_options/optionbool.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_options/optioneltmask.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_options/optionenum.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_options/optionflags.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_options/optionos.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_options/optionpool.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_overlapcollector.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_pipeline.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_platform/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_platform/platform.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_pluginfactory/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_pluginfactory/elementfactory.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_pluginfactory/pluginfactory.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_pluginfactory/pluginorigin.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_pluginfactory/pluginoriginjunction.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_pluginfactory/pluginoriginlocal.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_pluginfactory/sourcefactory.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_pluginfactory/sourcemirrorfactory.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_pluginproxy.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_profile.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_projectrefs.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/asset/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/asset/v1/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/execution/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/execution/v2/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/semver/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/semver/semver.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/semver/semver_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/semver/semver_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/bazel/semver/semver_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/buildgrid/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/buildgrid/local_cas.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/buildgrid/local_cas_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/buildgrid/local_cas_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/build/buildgrid/local_cas_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/buildstream/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/buildstream/v2/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/buildstream/v2/artifact_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/buildstream/v2/source.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/buildstream/v2/source_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/buildstream/v2/source_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/buildstream/v2/source_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/api/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/api/annotations.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/api/annotations_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/api/annotations_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/api/annotations_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/api/http.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/api/http_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/api/http_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/api/http_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/bytestream/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/bytestream/bytestream.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/bytestream/bytestream_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/bytestream/bytestream_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/bytestream/bytestream_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/longrunning/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/longrunning/operations.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/longrunning/operations_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/longrunning/operations_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/longrunning/operations_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/rpc/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/rpc/code.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/rpc/code_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/rpc/code_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/rpc/code_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/rpc/status.proto +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/rpc/status_pb2.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/rpc/status_pb2.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_protos/google/rpc/status_pb2_grpc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_remote.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_remotespec.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/jobs/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/jobs/elementjob.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/jobs/job.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/queues/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/queues/artifactpushqueue.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/queues/buildqueue.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/queues/cachequeryqueue.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/queues/fetchqueue.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/queues/pullqueue.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/queues/queue.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/queues/sourcepushqueue.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/queues/trackqueue.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/resources.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_scheduler/scheduler.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_signals.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_site.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_sourcecache.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_state.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_cachekeys.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_fixtures.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/build_checkout.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/conftest.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/fetch.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/mirror.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/base/base-alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/import-bin.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/import-dev.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/dependency/horsey.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/dependency/pony.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/dependency/zebry.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/0.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/4.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/5.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/6.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/7.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/8.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/9.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/run.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/files/bar +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/files/bin-files/usr/bin/hello +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/files/dev-files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/files/etc-files/etc/buildstream/config +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/files/foo +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/files/source-bundle/llamas.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/files/sub-project/elements/import-etc.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/files/sub-project/files/etc-files/etc/animal.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/files/sub-project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/source_determinism.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/track.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/track_cross_junction.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/utils.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_sourcetests/workspace.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_update_cachekeys.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_utils/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_utils/junction.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_utils/site.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/_yaml.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/integration.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/repo.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_testing/runcli.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_types.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_types.pyx +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_utils.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_utils.pyx +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_variables.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_variables.pyx +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_versions.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_workspaces.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_yaml.pyi +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/_yaml.pyx +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/buildelement.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/data/bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/data/build-all.sh.in +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/data/build-module.sh.in +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/downloadablefilesource.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/node.pxd +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/node.pyx +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugin.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/compose.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/compose.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/filter.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/filter.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/import.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/import.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/junction.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/link.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/manual.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/manual.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/script.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/script.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/elements/stack.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/sourcemirrors/default.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/sources/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/sources/local.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/sources/remote.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/sources/tar.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/plugins/sources/workspace.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/py.typed +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/sandbox/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/sandbox/_config.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/sandbox/_sandboxdummy.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/sandbox/_sandboxreapi.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/sandbox/sandbox.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/scriptelement.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/sourcemirror.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/storage/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/storage/_casbaseddirectory.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/storage/_filebaseddirectory.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/storage/directory.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/src/buildstream/utils.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/capabilities.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/config.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/expiry/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/expiry.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/junctions/parent/app.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/junctions/parent/base/base-element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/junctions/parent/base/base.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/junctions/parent/base/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/junctions/parent/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/junctions/parent/foo.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/junctions/parent/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/junctions/parent/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/junctions.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/missing-certs/certificates/client.crt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/missing-certs/certificates/client.key +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/missing-certs/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/only-one/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/project/elements/compose-all.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/project/elements/import-bin.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/project/elements/import-dev.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/project/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/project/files/bin-files/usr/bin/hello +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/project/files/dev-files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/artifactcache/project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/cachekey.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/build1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/build1.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/build2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/build2.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/build3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/build3.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/compose1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/compose1.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/compose2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/compose2.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/compose3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/compose3.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/compose4.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/compose4.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/compose5.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/compose5.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/import1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/import1.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/import2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/import2.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/import3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/import3.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/key-stability/aaa.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/key-stability/t1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/key-stability/t2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/key-stability/top-level.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/key-stability/zzz.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/script1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/script1.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort0.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort0.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort1.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort2.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort3.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort4.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort4.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort5.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort5.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort6.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort6.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort7.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort7.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort8.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort8.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort9.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/sort9.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/variables1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/elements/variables1.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/files/local/etc/hello.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/files/local/etc/ponystyle.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/files/local/usr/bin/goodbye +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/files/local/usr/bin/hello +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/files/patches/patch.diff +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/local1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/local1.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/local2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/local2.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/remote1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/remote1.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/remote2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/remote2.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/tar1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/tar1.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/tar2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/sources/tar2.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/cachekey/project/target.expected +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/element_plugins/dynamic.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/deps-permitted.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/forbidden-also-rdep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/forbidden-multi-bdep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/forbidden-no-bdep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/forbidden-source.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/forbidden-stack-dep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/input-dynamic.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/input-with-deps.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/input.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/no-pass-integration.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/output-dynamic-include.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/output-exclude.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/output-include-nonexistent-domain.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/output-include-with-indirect-deps.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/output-include.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/output-orphans.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/pass-integration.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/elements/stack.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/files/bar +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/files/baz +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/files/foo +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter/basic/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/elements/filter.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/examples/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/examples/autotools.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/examples/developing.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/examples/first-project.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/examples/integration-commands.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/examples/junctions.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/examples/running-commands.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/assertion/conditional-assertion.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/assertion/ordered-assertion.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/assertion/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/assertion/raw-assertion.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/assertion.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/alldep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/builddep-list.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/builddep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/circular-firstdep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/circular-seconddep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/circulartarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/firstdep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/invaliddep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/invaliddeptype.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/invalidnonstrict.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/invalidstrict.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/list-combine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/list-overlap.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/runtimedep-list.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/runtimedep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/seconddep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/shareddep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/shareddeptarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/target-depdict.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/elements/thirddep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies2/build-build.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies2/build.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies2/dep-one.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies2/dep-two.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies2/merge-separate-lists.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies2/merge-single-list.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies2/run-build.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies2/run.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/elements/dep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/elements/dep2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/elements/invalid-filenames.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/elements/runtime-error.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/elements/shorthand-config.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/elements/shorthand-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/elements/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/elements/supported1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/elements/supported2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/elements/unsupported.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/plugins/configsupported.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/plugins/configunsupported.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/subproject/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/subproject/target-a.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/dependencies3/subproject/target-b.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/elementnames/bad-chars-dep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/elementnames/bad-suffix-dep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/elementnames/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/elementnames.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-complex/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-complex/enable_work_around.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-complex/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-complex/extra_conf_i586.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-complex/extra_conf_x86_64.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-complex/options.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-complex/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-complex/work_around.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-element/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-element/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-element/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-element/work_around.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-options-included/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-options-included/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-options-included/options.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-options-included/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-options-included/work_around.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-project/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-project/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-project/work_around.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-toplevel-precedence/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-toplevel-precedence/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-toplevel-precedence/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/conditional-conflicts-toplevel-precedence/work_around.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/eventual_overrides/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/eventual_overrides/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/eventual_overrides/extra_conf2.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/eventual_overrides/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/file/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/file/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/file/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/file_with_subproject/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/file_with_subproject/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/file_with_subproject/project.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/file_with_subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/file_with_subproject/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/full_path/elements/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/full_path/elements/invalid.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/full_path/elements/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/full_path/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/full_path/subproject/elements/subsubproject-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/full_path/subproject/files/hello.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/full_path/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/full_path/subproject/sub.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/full_path/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/full_path/subproject/subsubproject/subsub.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/inner/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/inner/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/inner/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction/subproject/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options/subproject/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options_deep/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options_deep/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options_deep/subproject-1/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options_deep/subproject-1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options_deep/subproject-2/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options_deep/subproject-2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options_element/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options_element/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options_element/subproject/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/junction_options_element/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/local_to_junction/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/local_to_junction/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/local_to_junction/subproject/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/local_to_junction/subproject/internal.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/local_to_junction/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/options/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/options/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/options/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/overrides/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/overrides/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/overrides/extra_conf2.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/overrides/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/overrides/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/overrides-junction/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/overrides-junction/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/overrides-junction/subproject/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/overrides-junction/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/recursive/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/recursive/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/recursive/extra_conf2.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/recursive/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/string/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/string/extra_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/string/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/sub-include/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/sub-include/manual_conf.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include/sub-include/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/include_composition.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/invalid-keys/included-source.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/invalid-keys/no-path-specified.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/invalid-keys/optional-source.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/invalid-keys/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/invalid-keys/somesource.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/invalid_keys.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/link-subsubsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/subsubproject/subsubsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/subsubproject/subsubsubproject/subsubsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/subsubproject/subsubsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/subsubproject/subsubsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject-overriden-with-circular-reference-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject-overriden-with-circular-reference.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/target-overridden-subsubproject-circular-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/circular-references/target-overridden-subsubproject-circular.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/include-conflict-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/include-conflict.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/nested-conflict-toplevel.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/override-conflict.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/plugin-conflict.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/simple-conflict.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject/subsubsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject/subsubsubproject/subsubsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject/subsubsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject/subsubsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject-conflict/deepsurprise.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject-conflict/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject-conflict/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject-conflict-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject-conflict.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject-override-conflicting-path.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject2/inc.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject2/plugins/found.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/conflicts/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject3/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject3/sub3.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject3/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/subproject3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject3/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject3/sub3.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject3/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/subproject3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-full-path/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject3/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject3/sub3.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject3/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/subproject3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-incomplete/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject1-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject3/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject3/sub3.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject3/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/subproject3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject2-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject3/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject3/sub3.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject3/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/subproject3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-link2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject1-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject3/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject3/sub3.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject3/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/subproject3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-nested-not-found/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject3/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject3/sub3.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject3/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/subproject3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-dup/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/duplicate/duplicate.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/duplicate/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/duplicate/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/duplicate.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/override/overridden-again.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/override/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/override/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/override/overridden.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/override/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/override/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject/subsubsubproject/original.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject/subsubsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject/subsubsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject/subsubsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubsubproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-override-twice-link/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-incomplete/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-incomplete/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-incomplete/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-incomplete/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-incomplete/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-incomplete/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-incomplete/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-incomplete/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-incomplete/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-incomplete/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/subproject2-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-link/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-not-found/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-not-found/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-not-found/subproject1/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-not-found/subproject1/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-not-found/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-not-found/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-not-found/subproject2/sub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-not-found/subproject2/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-not-found/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/duplicates-simple-not-found/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/element-full-path-notfound.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/element-full-path.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/junction-full-path-notfound.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/junction-full-path.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/subsubproject/subsubsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/subsubproject/subsubsubproject/subsubsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/subsubproject/subsubsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/subsubproject/subsubsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/full-path/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-complex/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-complex/subproject/include.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-complex/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-complex/subproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-complex/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-complex/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-vars/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-vars/subproject/include.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-vars/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-vars/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-vars/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-vars-optional/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-vars-optional/subproject/include.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-vars-optional/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-vars-optional/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/include-vars-optional/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subproject/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subsubproject-again/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subsubproject-again/subsub-again.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subsubproject-again/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subsubproject-again.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subsubproject-conflict/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subsubproject-conflict/subsub-again.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subsubproject-conflict/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/subsubproject-conflict.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-and-conflict/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject1/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject1/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject1/subsubproject/subsub1.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject1/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject1/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject1/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject2/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject2/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject2/subsubproject/subsub2.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject2/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject2/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject2/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subproject2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subsubproject-again/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subsubproject-again/subsub-again.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subsubproject-again/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/subsubproject-again.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-double/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subproject/subsubproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subproject/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subsubproject-again/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subsubproject-again/subsub-again.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subsubproject-again/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/subsubproject-again.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-link/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subproject/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subsubproject-again/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subsubproject-again/subsub-again.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subsubproject-again/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subsubproject-again.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subsubproject-override/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subsubproject-override/subsub-override.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subsubproject-override/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/subsubproject-override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-override/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subproject/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subsubproject-again/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subsubproject-again/subsub-again.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subsubproject-again/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/subsubproject-again.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/internal-simple/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/app.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/base/base.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/base/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/base/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/base-with-deps.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/foo.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/junction-dep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/junction-with-deps.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/junctiondep-not-a-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/subproject-self-override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/invalid/target-self-override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/bad-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/junction-A.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/junctionA/bad-junction-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/junctionA/junction-B.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/junctionA/junctionB/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/junctionA/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/junctionA/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/sub-target-bad-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/sub-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/missing-element/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/deeptarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subsubproject/subsubsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subsubproject/subsubsubproject/subsubsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subsubproject/subsubsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subsubproject/subsubsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subsubproject/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subsubtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/subproject/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/subproject/subsubproject/include.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/subproject/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/subproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/nested-include/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/base-default.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/base-explicit.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/base-propagate.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/options-base/horsy.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/options-base/pony.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/options-base/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/options-base/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/target-default.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/target-explicit.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/options/target-propagate.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/element.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/override-subproject-dep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/override-subproject-element-using-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/override-subproject-element-with-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/override-subproject-element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/override-subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subdep-override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subdep-override.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subelement-alternative-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subelement-override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subelement-override.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/sub-alternative.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subdep.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subdependency.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subelement-alternative.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subelement-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subelement.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subsubdep-override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subsubdep-override.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subsubproject/subsubdep.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subsubproject/subsubdependency.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subsubproject/subsubelement.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject/subsubproject-override-dep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject-override-dep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject-override-element-using-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject-override-element-with-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject-override-element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-element/subproject-override-subsubproject-element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-self/alternative.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-self/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-self/self-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-self/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/override/overridden-again.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/override/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/override/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/override/overridden.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/override/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/override/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/subsubproject/subsubsubproject/original.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/subsubproject/subsubsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/subsubproject/subsubsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/subsubproject/subsubsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/override-twice/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/overridden-subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/overridden-subsubsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubproject/subsubsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubproject/subsubsubproject/subsubsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubproject/subsubsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubproject/subsubsubproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubproject/subsubsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/subsubsubproject-indirect-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject-overriden-with-deep-subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject-with-deep-override-indirect-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject-with-deep-override-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject-with-deep-override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject-with-overridden-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject-with-override.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/surpriseproject/deepsurpriseproject/deepsurprise.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/surpriseproject/deepsurpriseproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/surpriseproject/deepsurpriseproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/surpriseproject/deepsurpriseproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/surpriseproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/surpriseproject/surprise.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/surpriseproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/surpriseproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/target-overridden-subsubproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/target-overridden-subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/target-overridden-subsubsubproject-indirect-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/target-overridden-subsubsubproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/target-overridden-subsubsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/overrides/target-overridden-with-deepsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/simple/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/simple/subproject/base.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/simple/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/simple/subproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/simple/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/simple/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/use-repo/baserepo/base.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/use-repo/baserepo/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/use-repo/baserepo/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/use-repo/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions/use-repo/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/junctions.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional/elements/goodbye.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional/elements/target-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional/files/goodbye.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional/files/hello.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/elements/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/elements/subsubproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/subproject/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/subproject/elements/subsubproject-goodbye-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/subproject/elements/subsubproject-hello-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/subproject/subsubproject-goodbye/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/subproject/subsubproject-goodbye/files/goodbye.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/subproject/subsubproject-goodbye/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/subproject/subsubproject-hello/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/subproject/subsubproject-hello/files/hello.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/conditional-junctions/subproject/subsubproject-hello/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject/sub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject/file.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject/subsub.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject/subtarget.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/subsubproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/cross-link-junction-include/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/invalid/elements/base-file.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/invalid/elements/link-with-dependencies.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/invalid/elements/link-with-sources.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/invalid/elements/target-link-with-sources.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/invalid/project.conf +0 -0
- /buildstream-2.6.0.dev0/tests/format/link/simple/elements/hello-link.bst → /buildstream-2.7.0/tests/format/link/multiple-links-same-target/elements/hello-link-1.bst +0 -0
- {buildstream-2.6.0.dev0/tests/format/link/simple-junctions/subproject → buildstream-2.7.0/tests/format/link/multiple-links-same-target}/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0/tests/format/link/simple-junctions/subproject → buildstream-2.7.0/tests/format/link/multiple-links-same-target}/files/hello.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/depends-on-link-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/link-full-path.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/link-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/linked-local-junction-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/linked-local-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/linked-nested-junction-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/linked-nested-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/subproject-link-notfound.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/subproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/subsubproject-link-notfound.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/subsubproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/elements/target-full-path.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/subproject/elements/subsubproject-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/notfound/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple/elements/target.bst +0 -0
- /buildstream-2.6.0.dev0/tests/sources/tar/out-of-basedir-hardlinks/contents/elsewhere/a → /buildstream-2.7.0/tests/format/link/simple/files/hello.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/elements/full-path-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/elements/subproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/elements/subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/elements/subsubproject-link.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/elements/target-full-path.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/elements/target-local.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/elements/target-nested.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/project.conf +0 -0
- {buildstream-2.6.0.dev0/tests/format/link/simple-junctions/subproject/subsubproject → buildstream-2.7.0/tests/format/link/simple-junctions/subproject}/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/subproject/elements/subsubproject-junction.bst +0 -0
- {buildstream-2.6.0.dev0/tests/format/link/simple-junctions/subproject/subsubproject → buildstream-2.7.0/tests/format/link/simple-junctions/subproject}/files/hello.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0/tests/format/link/simple → buildstream-2.7.0/tests/format/link/simple-junctions/subproject/subsubproject}/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0/tests/format/link/simple → buildstream-2.7.0/tests/format/link/simple-junctions/subproject/subsubproject}/files/hello.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/link/simple-junctions/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/list-directive-error-element/config.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/list-directive-error-element/environment.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/list-directive-error-element/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/list-directive-error-element/public.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/list-directive-error-element/variables.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/list-directive-error-project/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/list-directive-error-project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/list-directive-type-error/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/list-directive-type-error/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/listdirectiveerrors.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-arch/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-arch/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-arch-alias/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-arch-alias/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-arch-unknown/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-arch-unknown/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-bool/element-equals.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-bool/element-not-equals.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-bool/element-not.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-bool/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-bool/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-element-mask/giraffy.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-element-mask/horsy.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-element-mask/pony.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-element-mask/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-element-mask/zebry.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-element-mask-invalid/pony.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-element-mask-invalid/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-element-override/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-element-override/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-enum/element-compare.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-enum/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-enum/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-enum-missing/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-enum-missing/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-exports/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-exports/plugins/config.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-exports/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-flags/element-in.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-flags/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-flags/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-flags-missing/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-flags-missing/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-list-directive/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-list-directive.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-os/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-os/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-overrides/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-overrides/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-project-root/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-project-root/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-restricted-name/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-restricted-name/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-restricted-options/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/option-restricted-options/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/optionarch.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/optionbool.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/optioneltmask.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/optionenum.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/optionexports.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/optionflags.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/optionos.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/optionoverrides.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/optionprojectroot.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/compound-and-condition/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/compound-and-condition/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/compound-or-condition/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/compound-or-condition/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/deep-nesting/element-deeper.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/deep-nesting/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/deep-nesting/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-condition/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-condition/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-expression/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-expression/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-name-dashes/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-name-dashes/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-name-leading-number/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-name-leading-number/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-name-plus/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-name-plus/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-name-spaces/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-name-spaces/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-type/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-type/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-variable-name-plus/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-variable-name-plus/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-variable-name-spaces/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/invalid-variable-name-spaces/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/nested-condition/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/nested-condition/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/simple-condition/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/simple-condition/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/undefined-variable/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options/undefined-variable/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/options.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/default/manual.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/default/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/duplicate-plugins/bar/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/duplicate-plugins/bar/foo.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/duplicate-plugins/bar/frob.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/duplicate-plugins/baz/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/duplicate-plugins/baz/foo.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/duplicate-plugins/baz/frob.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/duplicate-plugins/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/duplicate-plugins/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/element-path/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/empty-depends/manual.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/empty-depends/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/emptyname/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/invalid-yaml/manual.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/invalid-yaml/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/invalidname/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/local-plugin/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/missing-element/manual.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/missing-element/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/missing-junction/manual.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/missing-junction/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/missingname/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/overridepath/manual.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/overridepath/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/plugin-no-load-ref/noloadref.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/plugin-no-load-ref/plugins/noloadref.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/plugin-no-load-ref/project.refs +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/plugin-preflight-error/error.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/plugin-preflight-error/errorplugin/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/plugin-preflight-error/errorplugin/preflighterror.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/plugin-preflight-error/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/project-from-subdir/manual.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/project-from-subdir/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/project-from-subdir/subdirectory/README +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/project-refs-gap/file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/project-refs-gap/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/refs-options/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/refs-options/project.refs +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/refs-options/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project/unsupported/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project-overrides/prepend-configure-commands/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project-overrides/prepend-configure-commands/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/project.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/projectoverrides.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/stack/elements/build-only-stack.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/stack/elements/dependency.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/stack/elements/runtime-only-stack.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/stack/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/stack.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/substitutions.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/userconfig.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/cyclic_variables/cyclic.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/cyclic_variables/indirect-cyclic.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/cyclic_variables/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/cyclic_variables/self-reference.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/cyclic_variables/simple-cyclic.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/defaults/autotools.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/defaults/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/missing_variables/manual.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/missing_variables/manual2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/missing_variables/manual3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/missing_variables/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/notparallel/notparallel.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/notparallel/parallel.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/notparallel/plugins/custom.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/notparallel/plugins/custom.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/notparallel/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/overrides/autotools.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/overrides/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/partial_context/base/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/partial_context/base/vars.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/partial_context/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/partial_context/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/partial_context/test.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/protected-vars/foo.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/protected-vars/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/public_data_variables/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/public_data_variables/public.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/public_data_variables/public_unresolved.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/shared_variables/one.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/shared_variables/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/shared_variables/shared.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables/shared_variables/two.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/format/variables.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/__init__.py +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/no-element-path → buildstream-2.7.0/tests/frontend/artifact-show/elements}/compose-all.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/artifact_list_contents → buildstream-2.7.0/tests/frontend/artifact-show}/elements/import-bin.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/no-element-path → buildstream-2.7.0/tests/frontend/artifact-show/elements}/import-dev.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/project → buildstream-2.7.0/tests/frontend/artifact-show}/elements/manual.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/no-element-path → buildstream-2.7.0/tests/frontend/artifact-show/elements}/target.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/artifact_list_contents → buildstream-2.7.0/tests/frontend/artifact-show}/files/bin-files/usr/bin/hello +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/no-element-path → buildstream-2.7.0/tests/frontend/artifact-show}/files/dev-files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/artifact_list_contents → buildstream-2.7.0/tests/frontend/artifact-show}/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/artifact_checkout.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/artifact_delete.py +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/no-element-path → buildstream-2.7.0/tests/frontend/artifact_list_contents/elements}/import-bin.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/artifact_list_contents/elements/import-links.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/artifact_list_contents/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/no-element-path → buildstream-2.7.0/tests/frontend/artifact_list_contents}/files/bin-files/usr/bin/hello +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/artifact_list_contents/files/files-and-links/basicfile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/artifact_list_contents/files/files-and-links/basicfolder/subdir-file +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/project → buildstream-2.7.0/tests/frontend/artifact_list_contents}/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/artifact_list_contents.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/artifact_log.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/artifact_pull.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/buildcheckout.py +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/project/elements → buildstream-2.7.0/tests/frontend/completions/no-element-path}/compose-all.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/no-element-path/compose-exclude-dev.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/no-element-path/compose-include-bin.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/project → buildstream-2.7.0/tests/frontend/completions/no-element-path}/files/bin-files/usr/bin/hello +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/project → buildstream-2.7.0/tests/frontend/completions/no-element-path}/files/dev-files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/project/elements → buildstream-2.7.0/tests/frontend/completions/no-element-path}/import-bin.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/project/elements → buildstream-2.7.0/tests/frontend/completions/no-element-path}/import-dev.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/no-element-path/project.conf +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/completions/project/elements → buildstream-2.7.0/tests/frontend/completions/no-element-path}/target.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend → buildstream-2.7.0/tests/frontend/completions}/project/elements/compose-all.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/project/elements/compose-exclude-dev.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/project/elements/compose-include-bin.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend → buildstream-2.7.0/tests/frontend/completions}/project/elements/import-bin.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend → buildstream-2.7.0/tests/frontend/completions}/project/elements/import-dev.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend → buildstream-2.7.0/tests/frontend/completions}/project/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend → buildstream-2.7.0/tests/frontend/completions}/project/files/bin-files/usr/bin/hello +0 -0
- {buildstream-2.6.0.dev0/tests/frontend → buildstream-2.7.0/tests/frontend/completions}/project/files/dev-files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/sub-folders/base/unwanted.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/sub-folders/elements/base/wanted.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/sub-folders/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/sub-folders/elements/hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions/sub-folders/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/completions.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/compose_splits.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/configurable_warnings.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/configuredwarning/elements/corewarn.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/configuredwarning/elements/warninga.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/configuredwarning/elements/warningb.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/configuredwarning/plugins/corewarn.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/configuredwarning/plugins/warninga.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/configuredwarning/plugins/warningb.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/configuredwarning/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/consistencyerror/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/consistencyerror/bug.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/consistencyerror/error.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/consistencyerror/plugins/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/consistencyerror/plugins/consistencybug.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/consistencyerror/plugins/consistencyerror.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/consistencyerror/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/cross_junction_workspace.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/default-target/elements/dummy_1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/default-target/elements/dummy_2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/default-target/elements/dummy_3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/default-target/elements/dummy_stack.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/default-target/files/sub-project/elements/dummy_subproject.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/default-target/files/sub-project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/default-target/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/default_target.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/build.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/first-level-1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/first-level-2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/fourth-level-1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/fourth-level-2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/fourth-level-3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/second-level-1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/third-level-1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/third-level-2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/third-level-3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/unrelated-1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/exceptions/unrelated-2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/fetch.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/help.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/init.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/interactive_init.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/invalid_element_path/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/large_directory.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/logging/elements/bar.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/logging/elements/foo.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/logging/elements/logtest.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/logging/files/bar +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/logging/files/foo +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/logging/plugins/logtest.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/logging/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/logging.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/main.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/mirror.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/order.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/a/file1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/a/file2 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/a-whitelisted.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/a.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/b/file2 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/b/file3 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/b-whitelisted.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/b.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/c/file1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/c/file2 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/c/file3 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/c-whitelisted.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/c.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/collect-partially-whitelisted.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/collect-whitelisted.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/collect.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/directory-file/directory-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/directory-file.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/multistage-overlap-error.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/multistage-overlap-ignore.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/multistage-overlap.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/plugins/overlap.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/relocated-unstaged.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/relocated.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/script.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/sub-collect.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/sub-project/a-sub.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/sub-project/files/a/file3 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/sub-project/files/z/file1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/sub-project/files/z/file2 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/sub-project/z-sub.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/subdir-a.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/unstaged.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/whitelist-undefined.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/with-directory/directory-file/file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps/with-directory.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/overlaps.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/progress.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/checkout-deps.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/simple → buildstream-2.7.0/tests/frontend/project}/elements/compose-all.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/compose-exclude-dev.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/compose-include-bin.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/format-deps.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/simple → buildstream-2.7.0/tests/frontend/project}/elements/import-bin.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/project_fail → buildstream-2.7.0/tests/frontend/project}/elements/import-dev.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/import-large-directory.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/import-links.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/invalid-alias.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/dependency/horsey.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/dependency/pony.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/dependency/zebry.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/0.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/4.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/5.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/6.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/7.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/8.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/9.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/multiple_targets/order/run.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/random.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/rebuild-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/source-bundle/source-bundle-hello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/target-import.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/simple → buildstream-2.7.0/tests/frontend/project}/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/target.foo +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/test.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/elements/unaliased-tar.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/bar +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/simple → buildstream-2.7.0/tests/frontend/project}/files/bin-files/usr/bin/hello +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/project_fail → buildstream-2.7.0/tests/frontend/project}/files/dev-files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/etc-files/etc/buildstream/config +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/files-and-links/basicfile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/files-and-links/basicfolder/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/foo +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/source-bundle/llamas.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/sub-project/elements/import-etc.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/sub-project/files/deps.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/sub-project/files/etc-files/etc/animal.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/sub-project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/sub2-project/elements/import-sub.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/sub2-project/files/etc-files/etc/animal.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/files/sub2-project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/plugins/randomelement.py +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/show_artifact_cas_digest_project → buildstream-2.7.0/tests/frontend/project}/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/sourcemirrors/mirror.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project/sources/fetch_source.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project_fail/elements/compose-all.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/simple → buildstream-2.7.0/tests/frontend/project_fail}/elements/import-dev.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project_fail/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/simple → buildstream-2.7.0/tests/frontend/project_fail}/files/dev-files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/project_fail/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/push.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/rebuild.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/remote-caches.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest_project/elements/dependencies.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest_project/elements/import-basic-files.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest_project/elements/import-executable-files.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest_project/elements/import-symlinks.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest_project/files/basic-files/basicfile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest_project/files/basic-files/basicfolder/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest_project/files/executable-files/basicfile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest_project/files/executable-files/basicfolder/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest_project/files/symlinks/symlink +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/show_artifact_cas_digest_project/files/symlinks/target +0 -0
- {buildstream-2.6.0.dev0/tests/sourcecache/project → buildstream-2.7.0/tests/frontend/simple}/elements/compose-all.bst +0 -0
- {buildstream-2.6.0.dev0/tests/sourcecache/project → buildstream-2.7.0/tests/frontend/simple}/elements/import-bin.bst +0 -0
- {buildstream-2.6.0.dev0/tests/sourcecache/project → buildstream-2.7.0/tests/frontend/simple}/elements/import-dev.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/simple/elements/subdir/target.bst +0 -0
- {buildstream-2.6.0.dev0/tests/sourcecache/project → buildstream-2.7.0/tests/frontend/simple}/files/bin-files/usr/bin/hello +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/track-cross-junction/files → buildstream-2.7.0/tests/frontend/simple/files/dev-files}/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/simple/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-fetch/apples.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-fetch/bananas.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-fetch/files/apples +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-fetch/files/bananas +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-fetch/files/oranges +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-fetch/oranges.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-fetch/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/elements/extradata.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/elements/local.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/elements/tar-custom-version.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/elements/tar-explicit.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/elements/tar-no-micro.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/elements/tar.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/elements/testsource.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/elements/user-provenance.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/files/testfile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/plugins/extradata.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info/plugins/testsource.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info-unimplemented/fatal/elements/unimplemented.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info-unimplemented/fatal/plugins/fatal_unimplemented.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info-unimplemented/fatal/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info-unimplemented/non-fatal/elements/unimplemented.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info-unimplemented/non-fatal/plugins/non_fatal_unimplemented.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-info-unimplemented/non-fatal/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-track/apples.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-track/bananas.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-track/comments.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-track/files/apples +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-track/files/bananas +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-track/files/oranges +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source-track/oranges.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/source_checkout.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/strict-depends/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/strict-depends/elements/non-strict-depends.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/strict-depends/elements/strict-depends.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/strict-depends/files/hello.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/strict-depends/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/strict-scenario/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/strict-scenario/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/strict-scenario/files/base.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/strict-scenario/files/target.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/strict-scenario/project.conf +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/track-optional-inline → buildstream-2.7.0/tests/frontend/track-cross-junction}/files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/track-cross-junction/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/track-cross-junction/subproject-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/track-cross-junction/subproject.bst +0 -0
- {buildstream-2.6.0.dev0/tests/frontend/track-optional-project-refs → buildstream-2.7.0/tests/frontend/track-optional-inline}/files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/track-optional-inline/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/track-optional-inline/target.bst +0 -0
- {buildstream-2.6.0.dev0/tests/remotecache/project/files/dev-files → buildstream-2.7.0/tests/frontend/track-optional-project-refs/files}/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/track-optional-project-refs/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/track-optional-project-refs/project.refs +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/track-optional-project-refs/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/track.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/version.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspace.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/elements/elem1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/elements/elem2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/elements/elem3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/elements/elem4.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/elements/elem5.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/elements/stack.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/files/file1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/files/file2 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/files/file3 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/files/file4 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-build-dep/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/elements/elem1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/elements/elem2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/elements/elem3.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/elements/elem4.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/elements/elem5.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/elements/stack.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/files/file1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/files/file2 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/files/file3 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/files/file4 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/frontend/workspaced-runtime-dep/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/artifact.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/autotools.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/base/generate-base.sh +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/base/generate-debian-base.sh +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/build-uid.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/cached-fail/elements/base-also-fail.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/cached-fail/elements/base-fail.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/cached-fail/elements/base-success.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/cached-fail/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/cached-fail/elements/depends-on-base-fail-expect-foo.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/cached-fail/elements/depends-on-two-failures.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/cached-fail/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/cachedfail.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/compose-symlinks.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/compose.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/digest-environment.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/filter.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/import.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/interactive_build.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/manual.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/messages.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/autotools/amhello-failure.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/autotools/amhello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/autotools/amhelloconfroot.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/base/base-alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/base/base-debian.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/build-shell/buildtree-fail.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/build-shell/buildtree.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/build-shell/compose-dep-fail.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/build-shell/compose-dep-success.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/build-shell/compose-fail.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/build-shell/compose-success.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/build-shell/script.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/build-uid/build-uid-1023.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/build-uid/build-uid-default.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/build-uid/build-uid.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/compose/amhello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/compose/test-integration.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/compose/test.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/compose-symlinks/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/compose-symlinks/compose.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/compose-symlinks/overlay.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/digest-environment/base-buildtree.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/digest-environment/base-plus-extra-dep.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/digest-environment/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/digest-environment/merge.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/digest-environment/two.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/echo-env-var.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/echo-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/filter/filter.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/filter/parent.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/integration.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/interactive/failed-build.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/manual/import-file.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/manual/manual-stage-custom.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/recc/cacheonly.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/recc/recc.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/recc/remoteexecution.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/sandbox/build-arch.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/sandbox/remote-apis-socket-ac-update.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/sandbox/remote-apis-socket.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/sandbox/test-dev-shm.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/script/corruption-2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/script/corruption-image.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/script/corruption-integration.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/script/corruption.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/script/marked-tmpdir.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/script/no-tmpdir.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/script/script-layout.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/script/script.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/script/tmpdir.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/sockets/make-builddir-socket.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/sockets/make-install-root-socket.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/stack/another-hi.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/stack/hi.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/stack/stack.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/symlinks/dangling-symlink-overlap.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/symlinks/dangling-symlink.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/symlinks/link-on-path-use.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/symlinks/link-on-path.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/symlinks/symlink-to-outside-sandbox-overlap.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/symlinks/symlink-to-outside-sandbox.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/workspace/workspace-commanddir.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/workspace/workspace-mount-fail.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/workspace/workspace-mount.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/workspace/workspace-updated-dependency-failed.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/workspace/workspace-updated-dependency-nested.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/elements/workspace/workspace-updated-dependency.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/amhello.tar.gz +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/base-with-tmp/tmp/dummy +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/canary +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/compose-symlinks/base/usr/sbin/dummy +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/compose-symlinks/overlay/sbin/init +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/hello.tar.xz +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/import-source/subdir/test.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/import-source/test.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/manual-element/root/hello +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/manual-element/root/subdir/hello +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/shell-mount/pony.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/test_shm.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/workspace-configure-only-once/configure +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/workspace-incremental/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/workspace-incremental/source +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/workspace-mount-src/hello.c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/workspace-partial/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/workspace-partial/source1 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/workspace-partial/source2 +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/workspace-updated-dependency/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/workspace-updated-dependency-failed/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/files/workspace-updated-dependency-nested/Makefile +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/keys/gnome-sdk.gpg +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/pullbuildtrees.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/recc.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/sandbox.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/script.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/shell.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/sockets.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/source-determinism.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/stack.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/symlinks.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/integration/workspace.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/cascache.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/context/malformed.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/context/notdict.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/context/userconf.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/context.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/loader/onefile/elements/badfile.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/loader/onefile/elements/badreference.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/loader/onefile/elements/invalidkey.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/loader/onefile/elements/invalidsourcekey.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/loader/onefile/elements/onefile.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/loader/onefile/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/loader.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/empty/.gitkeep +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-add/added +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-add/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-add/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-base/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-base/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-buildtree/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-buildtree/root-file.o +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-buildtree/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-buildtree/subdirectory/subdir-file.o +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-link/link +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-link/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-link/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-link-change/link +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-link-change/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-link-change/subdirectory/link +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-link-change/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-in-subdir-with-directory/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-in-subdir-with-directory/root-file.o +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-in-subdir-with-directory/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-in-subdir-with-directory/subdirectory/subdir-file.o/test +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-in-subdir-with-file/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-in-subdir-with-file/root-file.o +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-in-subdir-with-file/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-in-subdir-with-file/subdirectory/subdir-file.o +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-subdirectory/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-subdirectory/root-file.o +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-subdirectory/subdirectory +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-with-directory/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-with-directory/root-file.o/test +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-with-directory/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-with-directory/subdirectory/subdir-file.o +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-with-file/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-with-file/root-file.o +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-with-file/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-with-file/subdirectory/subdir-file.o +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-with-new-subdirectory/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-override-with-new-subdirectory/subdirectory +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-properties/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-properties/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-remove/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-replace/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-replace/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-subdirectory-add/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-subdirectory-add/subdirectory/added +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-subdirectory-add/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-subdirectory-link/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-subdirectory-link/subdirectory/link +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-subdirectory-link/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-subdirectory-remove/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-subdirectory-remove/subdirectory/.gitkeep +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-subdirectory-replace/root-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/merge-subdirectory-replace/subdirectory/subdir-file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/original/bin/bash +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/original/bin/hello +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage/overlay/bin/bash +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/storage_vdir_import.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/utils_move_atomic.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/utils_save_atomic.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/basics.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/composite.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/convert_value_to_str.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/dictionary.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/implicitoverwrite.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/invalid.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/list-of-dict.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/list-of-list.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/listappend.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/listappendprepend.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/listoverwrite.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/listoverwriteempty.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/listprepend.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/roundtrip-test.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/secondappend.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/secondprepend.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml/traversal.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/internals/yaml.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/junction-with-junction/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/junction-with-junction/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/junction-with-junction/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/junction-with-junction/subproject/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/junction-with-junction/subproject/variables.yml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/elements/subproject-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/not-found-elements.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/not-found-sources.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/elements/deprecated/deprecated.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/elements/found/found.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/elements/incompatiblemajor/incompatiblemajor.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/elements/incompatibleminor/incompatibleminor.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/elements/malformedminversion/badstring.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/elements/malformedminversion/dict.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/elements/malformedminversion/list.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/elements/malformedminversion/number.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/elements/nominversion/nominversion.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/nosetup/nosetup.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/setupnotfunction/setupnotfunction.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/setupreturnsbadtype/setupreturnsbadtype.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/setupreturnsnottype/setupreturnsnottype.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/sources/deprecated/deprecated.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/sources/found/found.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/sources/incompatiblemajor/incompatiblemajor.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/sources/incompatibleminor/incompatibleminor.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/sources/malformedminversion/badstring.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/sources/malformedminversion/dict.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/sources/malformedminversion/list.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/sources/malformedminversion/number.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/plugins/sources/nominversion/nominversion.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/subproject/elements/subsubproject-junction.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/subproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading/subproject/subsubproject/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/loading.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/MANIFEST.in +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/setup.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/elements/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/elements/autotools.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/elements/autotools.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/elements/sample.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/elements/sample.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/sourcemirrors/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/sourcemirrors/mirror.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/sources/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/sources/git.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/sample-plugins/src/sample_plugins/sources/sample.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/shadow/elements/manual.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/shadow/plugins/manual.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/shadow/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/plugins/shadow.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remotecache/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remotecache/project/elements/autotools/amhello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remotecache/project/elements/base/base-alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remotecache/project/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remotecache/project/elements/build-shell/buildtree-fail.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remotecache/project/elements/build-shell/buildtree.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remotecache/project/elements/no-runtime-deps.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remotecache/project/files/amhello.tar.gz +0 -0
- {buildstream-2.6.0.dev0/tests/remoteexecution → buildstream-2.7.0/tests/remotecache}/project/files/dev-files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remotecache/project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remotecache/simple.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/buildfail.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/buildtree.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/junction.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/elements/autotools/amhello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/elements/base/base-alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/elements/build-shell/buildtree-fail.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/elements/build-shell/buildtree.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/elements/no-runtime-deps.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/files/amhello.tar.gz +0 -0
- {buildstream-2.6.0.dev0/tests/sourcecache → buildstream-2.7.0/tests/remoteexecution}/project/files/dev-files/usr/include/pony.h +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/files/sub-project/elements/autotools/amhello.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/files/sub-project/elements/base/base-alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/files/sub-project/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/files/sub-project/files/amhello.tar.gz +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/files/sub-project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/remotecache.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/simple.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/remoteexecution/workspace.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/missing-command/no-runtime.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/missing-command/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/missing-command.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/missing-dependencies/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/missing-dependencies/files/base/bin/sh +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/missing-dependencies/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/missing_dependencies.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/project/elements/base/base-alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/project/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/project/elements/import-file1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/project/files/file1.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/remote-exec-config/missing-certs/certificates/client.crt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/remote-exec-config/missing-certs/certificates/client.key +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/remote-exec-config/missing-certs/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/remote-exec-config/missing-certs/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/remote-exec-config.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sandboxes/selection.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/cache.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/capabilities.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/config.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/fetch.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/missing-certs/certificates/client.crt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/missing-certs/certificates/client.key +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/missing-certs/element.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/project/elements/source-with-patches-1.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/project/elements/source-with-patches-2.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/project/elements/source-without-patches.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/project/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/project/files/hello-patch.diff +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/project/plugins/elements/always_fail.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/project/plugins/elements/always_fail.yaml +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/project/plugins/sources/patch.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/project/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/push.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/source-checkout.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/staging.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sourcecache/workspace.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/keytest.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/basic/file.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/basic/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/basic/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/deterministic-umask/elements/base/base-alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/deterministic-umask/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/directory/files/file.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/directory/files/subdir/anotherfile.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/directory/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/directory/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/file-exists/files/file.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/file-exists/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/file-exists/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/invalid-relative-path/file.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/invalid-relative-path/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/invalid-relative-path/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/symlink/files/file.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/symlink/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local/symlink/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/local.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/no-fetch-cached/files/file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/no-fetch-cached/plugins/sources/always_cached.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/no-fetch-cached/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/no_fetch_cached.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/previous_source_access/elements/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/previous_source_access/files/file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/previous_source_access/plugins/sources/foo_transform.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/previous_source_access/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/previous_source_access.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/project/elements/base/base-alpine.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/project/elements/base.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/project_key_test/elements/key-test.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/project_key_test/plugins/sources/key-test.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/project_key_test/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/missing-file/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/no-ref/file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/no-ref/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/path-in-filename/dir/file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/path-in-filename/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/single-file/dir/file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/single-file/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/single-file-custom-name/dir/file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/single-file-custom-name/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/unique-keys/dir/file +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/unique-keys/target-custom-executable.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/unique-keys/target-custom.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote/unique-keys/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/remote.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/contains-links/content/base-directory/subdir1/file.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/contains-links/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/explicit-basedir/content/a/b/d +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/explicit-basedir/content/a/c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/explicit-basedir/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/fetch/content/a/b/d +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/fetch/content/a/c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/fetch/sourcemirrors/bearermirror.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/fetch/target-lz.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/fetch/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/no-basedir/content/a/b/d +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/no-basedir/content/a/c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/no-basedir/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/no-ref/a/b/d +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/no-ref/a/c +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/no-ref/target.bst +0 -0
- {buildstream-2.6.0.dev0/tests/sources/tar/out-of-basedir-hardlinks/contents/to_extract → buildstream-2.7.0/tests/sources/tar/out-of-basedir-hardlinks/contents/elsewhere}/a +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/out-of-basedir-hardlinks/contents/elsewhere/malicious +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/out-of-basedir-hardlinks/malicious_target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/out-of-basedir-hardlinks/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/read-only/content/a.tar.gz +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/read-only/content/b.tar.gz +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/read-only/content/c.tar.gz +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/read-only/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar/symlinks/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/tar.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/variables/folder/file.txt +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/variables/project.conf +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/variables/target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/variables/unresolveable-target.bst +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/sources/variables.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/artifactshare.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/bearer_http_server.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/casd.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/constants.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/context.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/element_generators.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/file_server.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/filetypegenerator.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/ftp_server.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/http_server.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/junction.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/patch.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/platform.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/python_repo.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/repo/__init__.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/repo/git.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/repo/tar.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/runner_integration.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/tests/testutils/site.py +0 -0
- {buildstream-2.6.0.dev0 → buildstream-2.7.0}/versioneer.py +0 -0
|
@@ -0,0 +1,548 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
3
|
+
# you may not use this file except in compliance with the License.
|
|
4
|
+
# You may obtain a copy of the License at
|
|
5
|
+
#
|
|
6
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
#
|
|
8
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
# See the License for the specific language governing permissions and
|
|
12
|
+
# limitations under the License.
|
|
13
|
+
#
|
|
14
|
+
[MAIN]
|
|
15
|
+
|
|
16
|
+
# A comma-separated list of package or module names from where C extensions may
|
|
17
|
+
# be loaded. Extensions are loading into the active Python interpreter and may
|
|
18
|
+
# run arbitrary code
|
|
19
|
+
extension-pkg-whitelist=
|
|
20
|
+
buildstream.node,
|
|
21
|
+
buildstream._loader.loadelement,
|
|
22
|
+
buildstream._loader.types,
|
|
23
|
+
buildstream._types,
|
|
24
|
+
buildstream._utils,
|
|
25
|
+
buildstream._variables,
|
|
26
|
+
buildstream._yaml,
|
|
27
|
+
ujson
|
|
28
|
+
|
|
29
|
+
# Add files or directories to the blacklist. They should be base names, not
|
|
30
|
+
# paths.
|
|
31
|
+
ignore=CVS,doc
|
|
32
|
+
|
|
33
|
+
# Add files or directories matching the regex patterns to the blacklist. The
|
|
34
|
+
# regex matches against base names, not paths.
|
|
35
|
+
ignore-patterns=.*_pb2.py,.*_pb2_grpc.py,.*.pyi
|
|
36
|
+
|
|
37
|
+
# Python code to execute, usually for sys.path manipulation such as
|
|
38
|
+
# pygtk.require().
|
|
39
|
+
#init-hook=
|
|
40
|
+
|
|
41
|
+
# Use multiple processes to speed up Pylint.
|
|
42
|
+
jobs=1
|
|
43
|
+
|
|
44
|
+
# List of plugins (as comma separated values of python modules names) to load,
|
|
45
|
+
# usually to register additional checkers.
|
|
46
|
+
load-plugins=
|
|
47
|
+
|
|
48
|
+
# Pickle collected data for later comparisons.
|
|
49
|
+
persistent=yes
|
|
50
|
+
|
|
51
|
+
# Specify a configuration file.
|
|
52
|
+
#rcfile=
|
|
53
|
+
|
|
54
|
+
# Add paths to the list of the source roots. Supports globbing patterns. The
|
|
55
|
+
# source root is an absolute path or a path relative to the current working
|
|
56
|
+
# directory used to determine a package namespace for modules located under the
|
|
57
|
+
# source root.
|
|
58
|
+
source-roots=src
|
|
59
|
+
|
|
60
|
+
# Allow loading of arbitrary C extensions. Extensions are imported into the
|
|
61
|
+
# active Python interpreter and may run arbitrary code.
|
|
62
|
+
unsafe-load-any-extension=no
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
[MESSAGES CONTROL]
|
|
66
|
+
|
|
67
|
+
# Only show warnings with the listed confidence levels. Leave empty to show
|
|
68
|
+
# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED
|
|
69
|
+
confidence=
|
|
70
|
+
|
|
71
|
+
# Disable the message, report, category or checker with the given id(s). You
|
|
72
|
+
# can either give multiple identifiers separated by comma (,) or put this
|
|
73
|
+
# option multiple times (only on the command line, not in the configuration
|
|
74
|
+
# file where it should appear only once).You can also use "--disable=all" to
|
|
75
|
+
# disable everything first and then reenable specific checks. For example, if
|
|
76
|
+
# you want to run only the similarities checker, you can use "--disable=all
|
|
77
|
+
# --enable=similarities". If you want to run only the classes checker, but have
|
|
78
|
+
# no Warning level messages displayed, use"--disable=all --enable=classes
|
|
79
|
+
# --disable=W"
|
|
80
|
+
|
|
81
|
+
# We have three groups of disabled messages:
|
|
82
|
+
#
|
|
83
|
+
# 1) Messages that are of no use to us
|
|
84
|
+
# This is either because we don't follow the convention
|
|
85
|
+
# (missing-docstring and protected-access come to mind), or because
|
|
86
|
+
# it's not very useful in CI (too-many-arguments, for example)
|
|
87
|
+
#
|
|
88
|
+
# 2) Messages that we would like to enable at some point
|
|
89
|
+
# We introduced linting quite late into the project, so there are
|
|
90
|
+
# some issues that just grew out of control. Resolving these would
|
|
91
|
+
# be nice, but too much work atm.
|
|
92
|
+
#
|
|
93
|
+
# 3) Messages related to code formatting
|
|
94
|
+
# Since we use Black to format code automatically, there's no need for
|
|
95
|
+
# pylint to also check for those things.
|
|
96
|
+
#
|
|
97
|
+
|
|
98
|
+
disable=,
|
|
99
|
+
#####################################
|
|
100
|
+
# Messages that are of no use to us #
|
|
101
|
+
#####################################
|
|
102
|
+
consider-using-f-string,
|
|
103
|
+
fixme,
|
|
104
|
+
missing-docstring,
|
|
105
|
+
no-else-return,
|
|
106
|
+
protected-access,
|
|
107
|
+
too-few-public-methods,
|
|
108
|
+
too-many-arguments,
|
|
109
|
+
too-many-boolean-expressions,
|
|
110
|
+
too-many-branches,
|
|
111
|
+
too-many-instance-attributes,
|
|
112
|
+
too-many-lines,
|
|
113
|
+
too-many-locals,
|
|
114
|
+
too-many-nested-blocks,
|
|
115
|
+
too-many-positional-arguments,
|
|
116
|
+
too-many-public-methods,
|
|
117
|
+
too-many-statements,
|
|
118
|
+
too-many-return-statements,
|
|
119
|
+
too-many-ancestors,
|
|
120
|
+
|
|
121
|
+
#######################################################
|
|
122
|
+
# Messages that we would like to enable at some point #
|
|
123
|
+
#######################################################
|
|
124
|
+
# We have many circular imports that need breaking
|
|
125
|
+
import-outside-toplevel,
|
|
126
|
+
|
|
127
|
+
duplicate-code,
|
|
128
|
+
|
|
129
|
+
# Some invalid names are alright, we should configure pylint
|
|
130
|
+
# to accept them, and curb the others
|
|
131
|
+
invalid-name,
|
|
132
|
+
|
|
133
|
+
unused-argument,
|
|
134
|
+
|
|
135
|
+
# This is good to get context on exceptions, we should enable that
|
|
136
|
+
# at some point
|
|
137
|
+
raise-missing-from,
|
|
138
|
+
|
|
139
|
+
# We can probably enable this soon, it is a bit experimental
|
|
140
|
+
# for the moment and current releases of pylint (August 2021) raise
|
|
141
|
+
# a lot of false positives.
|
|
142
|
+
unused-private-member,
|
|
143
|
+
|
|
144
|
+
##################################################
|
|
145
|
+
# Formatting-related messages, enforced by Black #
|
|
146
|
+
##################################################
|
|
147
|
+
|
|
148
|
+
line-too-long,
|
|
149
|
+
superfluous-parens,
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
# Enable the message, report, category or checker with the given id(s). You can
|
|
153
|
+
# either give multiple identifier separated by comma (,) or put this option
|
|
154
|
+
# multiple time (only on the command line, not in the configuration file where
|
|
155
|
+
# it should appear only once). See also the "--disable" option for examples.
|
|
156
|
+
enable=c-extension-no-member
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
[REPORTS]
|
|
160
|
+
|
|
161
|
+
# Python expression which should return a note less than 10 (10 is the highest
|
|
162
|
+
# note). You have access to the variables errors warning, statement which
|
|
163
|
+
# respectively contain the number of errors / warnings messages and the total
|
|
164
|
+
# number of statements analyzed. This is used by the global evaluation report
|
|
165
|
+
# (RP0004).
|
|
166
|
+
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
|
|
167
|
+
|
|
168
|
+
# Template used to display messages. This is a python new-style format string
|
|
169
|
+
# used to format the message information. See doc for all details
|
|
170
|
+
#msg-template=
|
|
171
|
+
|
|
172
|
+
# Set the output format. Available formats are text, parseable, colorized, json
|
|
173
|
+
# and msvs (visual studio).You can also give a reporter class, eg
|
|
174
|
+
# mypackage.mymodule.MyReporterClass.
|
|
175
|
+
output-format=colorized
|
|
176
|
+
|
|
177
|
+
# Tells whether to display a full report or only the messages
|
|
178
|
+
reports=no
|
|
179
|
+
|
|
180
|
+
# Activate the evaluation score.
|
|
181
|
+
score=yes
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
[REFACTORING]
|
|
185
|
+
|
|
186
|
+
# Maximum number of nested blocks for function / method body
|
|
187
|
+
max-nested-blocks=5
|
|
188
|
+
|
|
189
|
+
# Complete name of functions that never returns. When checking for
|
|
190
|
+
# inconsistent-return-statements if a never returning function is called then
|
|
191
|
+
# it will be considered as an explicit return statement and no message will be
|
|
192
|
+
# printed.
|
|
193
|
+
never-returning-functions=optparse.Values,sys.exit
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
[TYPECHECK]
|
|
197
|
+
|
|
198
|
+
# List of decorators that produce context managers, such as
|
|
199
|
+
# contextlib.contextmanager. Add to this list to register other decorators that
|
|
200
|
+
# produce valid context managers.
|
|
201
|
+
contextmanager-decorators=contextlib.contextmanager
|
|
202
|
+
|
|
203
|
+
# List of members which are set dynamically and missed by pylint inference
|
|
204
|
+
# system, and so shouldn't trigger E1101 when accessed. Python regular
|
|
205
|
+
# expressions are accepted.
|
|
206
|
+
generated-members=__enter__
|
|
207
|
+
|
|
208
|
+
# Tells whether missing members accessed in mixin class should be ignored. A
|
|
209
|
+
# mixin class is detected if its name ends with "mixin" (case insensitive).
|
|
210
|
+
ignore-mixin-members=yes
|
|
211
|
+
|
|
212
|
+
# This flag controls whether pylint should warn about no-member and similar
|
|
213
|
+
# checks whenever an opaque object is returned when inferring. The inference
|
|
214
|
+
# can return multiple potential results while evaluating a Python object, but
|
|
215
|
+
# some branches might not be evaluated, which results in partial inference. In
|
|
216
|
+
# that case, it might be useful to still emit no-member and other checks for
|
|
217
|
+
# the rest of the inferred objects.
|
|
218
|
+
ignore-on-opaque-inference=yes
|
|
219
|
+
|
|
220
|
+
# List of class names for which member attributes should not be checked (useful
|
|
221
|
+
# for classes with dynamically set attributes). This supports the use of
|
|
222
|
+
# qualified names.
|
|
223
|
+
ignored-classes=optparse.Values,thread._local,_thread._local,contextlib.closing,gi.repository.GLib.GError,pathlib.PurePath
|
|
224
|
+
|
|
225
|
+
# List of module names for which member attributes should not be checked
|
|
226
|
+
# (useful for modules/projects where namespaces are manipulated during runtime
|
|
227
|
+
# and thus existing member attributes cannot be deduced by static analysis. It
|
|
228
|
+
# supports qualified module names, as well as Unix pattern matching.
|
|
229
|
+
ignored-modules=pkg_resources,gi.repository,grpc,buildstream._protos.*,google.protobuf.*
|
|
230
|
+
|
|
231
|
+
# Show a hint with possible names when a member name was not found. The aspect
|
|
232
|
+
# of finding the hint is based on edit distance.
|
|
233
|
+
missing-member-hint=yes
|
|
234
|
+
|
|
235
|
+
# The minimum edit distance a name should have in order to be considered a
|
|
236
|
+
# similar match for a missing member name.
|
|
237
|
+
missing-member-hint-distance=1
|
|
238
|
+
|
|
239
|
+
# The total number of similar names that should be taken in consideration when
|
|
240
|
+
# showing a hint for a missing member.
|
|
241
|
+
missing-member-max-choices=1
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
[BASIC]
|
|
245
|
+
|
|
246
|
+
# Naming style matching correct argument names
|
|
247
|
+
argument-naming-style=snake_case
|
|
248
|
+
|
|
249
|
+
# Regular expression matching correct argument names. Overrides argument-
|
|
250
|
+
# naming-style
|
|
251
|
+
#argument-rgx=
|
|
252
|
+
|
|
253
|
+
# Naming style matching correct attribute names
|
|
254
|
+
attr-naming-style=snake_case
|
|
255
|
+
|
|
256
|
+
# Regular expression matching correct attribute names. Overrides attr-naming-
|
|
257
|
+
# style
|
|
258
|
+
#attr-rgx=
|
|
259
|
+
|
|
260
|
+
# Bad variable names which should always be refused, separated by a comma
|
|
261
|
+
bad-names=foo,
|
|
262
|
+
bar,
|
|
263
|
+
baz,
|
|
264
|
+
toto,
|
|
265
|
+
tutu,
|
|
266
|
+
tata
|
|
267
|
+
|
|
268
|
+
# Naming style matching correct class attribute names
|
|
269
|
+
class-attribute-naming-style=any
|
|
270
|
+
|
|
271
|
+
# Regular expression matching correct class attribute names. Overrides class-
|
|
272
|
+
# attribute-naming-style
|
|
273
|
+
#class-attribute-rgx=
|
|
274
|
+
|
|
275
|
+
# Naming style matching correct class names
|
|
276
|
+
class-naming-style=PascalCase
|
|
277
|
+
|
|
278
|
+
# Regular expression matching correct class names. Overrides class-naming-style
|
|
279
|
+
#class-rgx=
|
|
280
|
+
|
|
281
|
+
# Naming style matching correct constant names
|
|
282
|
+
const-naming-style=UPPER_CASE
|
|
283
|
+
|
|
284
|
+
# Regular expression matching correct constant names. Overrides const-naming-
|
|
285
|
+
# style
|
|
286
|
+
#const-rgx=
|
|
287
|
+
|
|
288
|
+
# Minimum line length for functions/classes that require docstrings, shorter
|
|
289
|
+
# ones are exempt.
|
|
290
|
+
docstring-min-length=-1
|
|
291
|
+
|
|
292
|
+
# Naming style matching correct function names
|
|
293
|
+
function-naming-style=snake_case
|
|
294
|
+
|
|
295
|
+
# Regular expression matching correct function names. Overrides function-
|
|
296
|
+
# naming-style
|
|
297
|
+
#function-rgx=
|
|
298
|
+
|
|
299
|
+
# Good variable names which should always be accepted, separated by a comma
|
|
300
|
+
good-names=i,j,k,ex,Run,_,e,f
|
|
301
|
+
|
|
302
|
+
# Include a hint for the correct naming format with invalid-name
|
|
303
|
+
include-naming-hint=no
|
|
304
|
+
|
|
305
|
+
# Naming style matching correct inline iteration names
|
|
306
|
+
inlinevar-naming-style=any
|
|
307
|
+
|
|
308
|
+
# Regular expression matching correct inline iteration names. Overrides
|
|
309
|
+
# inlinevar-naming-style
|
|
310
|
+
#inlinevar-rgx=
|
|
311
|
+
|
|
312
|
+
# Naming style matching correct method names
|
|
313
|
+
method-naming-style=snake_case
|
|
314
|
+
|
|
315
|
+
# Regular expression matching correct method names. Overrides method-naming-
|
|
316
|
+
# style
|
|
317
|
+
#method-rgx=
|
|
318
|
+
|
|
319
|
+
# Naming style matching correct module names
|
|
320
|
+
module-naming-style=snake_case
|
|
321
|
+
|
|
322
|
+
# Regular expression matching correct module names. Overrides module-naming-
|
|
323
|
+
# style
|
|
324
|
+
#module-rgx=
|
|
325
|
+
|
|
326
|
+
# Colon-delimited sets of names that determine each other's naming style when
|
|
327
|
+
# the name regexes allow several styles.
|
|
328
|
+
name-group=
|
|
329
|
+
|
|
330
|
+
# Regular expression which should only match function or class names that do
|
|
331
|
+
# not require a docstring.
|
|
332
|
+
no-docstring-rgx=^_
|
|
333
|
+
|
|
334
|
+
# List of decorators that produce properties, such as abc.abstractproperty. Add
|
|
335
|
+
# to this list to register other decorators that produce valid properties.
|
|
336
|
+
property-classes=abc.abstractproperty
|
|
337
|
+
|
|
338
|
+
# Naming style matching correct variable names
|
|
339
|
+
variable-naming-style=snake_case
|
|
340
|
+
|
|
341
|
+
# Regular expression matching correct variable names. Overrides variable-
|
|
342
|
+
# naming-style
|
|
343
|
+
#variable-rgx=
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
[VARIABLES]
|
|
347
|
+
|
|
348
|
+
# List of additional names supposed to be defined in builtins. Remember that
|
|
349
|
+
# you should avoid to define new builtins when possible.
|
|
350
|
+
additional-builtins=
|
|
351
|
+
|
|
352
|
+
# Tells whether unused global variables should be treated as a violation.
|
|
353
|
+
allow-global-unused-variables=yes
|
|
354
|
+
|
|
355
|
+
# List of strings which can identify a callback function by name. A callback
|
|
356
|
+
# name must start or end with one of those strings.
|
|
357
|
+
callbacks=cb_,
|
|
358
|
+
_cb
|
|
359
|
+
|
|
360
|
+
# A regular expression matching the name of dummy variables (i.e. expectedly
|
|
361
|
+
# not used).
|
|
362
|
+
dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
|
|
363
|
+
|
|
364
|
+
# Argument names that match this expression will be ignored. Default to name
|
|
365
|
+
# with leading underscore
|
|
366
|
+
ignored-argument-names=_.*|^ignored_|^unused_
|
|
367
|
+
|
|
368
|
+
# Tells whether we should check for unused import in __init__ files.
|
|
369
|
+
init-import=no
|
|
370
|
+
|
|
371
|
+
# List of qualified module names which can have objects that can redefine
|
|
372
|
+
# builtins.
|
|
373
|
+
redefining-builtins-modules=six.moves,past.builtins,future.builtins
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
[LOGGING]
|
|
377
|
+
|
|
378
|
+
# Logging modules to check that the string format arguments are in logging
|
|
379
|
+
# function parameter format
|
|
380
|
+
logging-modules=logging
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
[SPELLING]
|
|
384
|
+
|
|
385
|
+
# Limits count of emitted suggestions for spelling mistakes
|
|
386
|
+
max-spelling-suggestions=4
|
|
387
|
+
|
|
388
|
+
# Spelling dictionary name. Available dictionaries: none. To make it working
|
|
389
|
+
# install python-enchant package.
|
|
390
|
+
spelling-dict=
|
|
391
|
+
|
|
392
|
+
# List of comma separated words that should not be checked.
|
|
393
|
+
spelling-ignore-words=
|
|
394
|
+
|
|
395
|
+
# A path to a file that contains private dictionary; one word per line.
|
|
396
|
+
spelling-private-dict-file=
|
|
397
|
+
|
|
398
|
+
# Tells whether to store unknown words to indicated private dictionary in
|
|
399
|
+
# --spelling-private-dict-file option instead of raising a message.
|
|
400
|
+
spelling-store-unknown-words=no
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
[MISCELLANEOUS]
|
|
404
|
+
|
|
405
|
+
# List of note tags to take in consideration, separated by a comma.
|
|
406
|
+
notes=FIXME,
|
|
407
|
+
XXX,
|
|
408
|
+
TODO
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
[SIMILARITIES]
|
|
412
|
+
|
|
413
|
+
# Ignore comments when computing similarities.
|
|
414
|
+
ignore-comments=yes
|
|
415
|
+
|
|
416
|
+
# Ignore docstrings when computing similarities.
|
|
417
|
+
ignore-docstrings=yes
|
|
418
|
+
|
|
419
|
+
# Ignore imports when computing similarities.
|
|
420
|
+
ignore-imports=no
|
|
421
|
+
|
|
422
|
+
# Minimum lines number of a similarity.
|
|
423
|
+
min-similarity-lines=4
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
[FORMAT]
|
|
427
|
+
|
|
428
|
+
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
|
|
429
|
+
expected-line-ending-format=
|
|
430
|
+
|
|
431
|
+
# Regexp for a line that is allowed to be longer than the limit.
|
|
432
|
+
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
|
|
433
|
+
|
|
434
|
+
# Number of spaces of indent required inside a hanging or continued line.
|
|
435
|
+
indent-after-paren=4
|
|
436
|
+
|
|
437
|
+
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
|
|
438
|
+
# tab).
|
|
439
|
+
indent-string=' '
|
|
440
|
+
|
|
441
|
+
# Maximum number of characters on a single line.
|
|
442
|
+
max-line-length=119
|
|
443
|
+
|
|
444
|
+
# Maximum number of lines in a module
|
|
445
|
+
max-module-lines=1000
|
|
446
|
+
|
|
447
|
+
# Allow the body of a class to be on the same line as the declaration if body
|
|
448
|
+
# contains single statement.
|
|
449
|
+
single-line-class-stmt=no
|
|
450
|
+
|
|
451
|
+
# Allow the body of an if to be on the same line as the test if there is no
|
|
452
|
+
# else.
|
|
453
|
+
single-line-if-stmt=no
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
[IMPORTS]
|
|
457
|
+
|
|
458
|
+
# Allow wildcard imports from modules that define __all__.
|
|
459
|
+
allow-wildcard-with-all=no
|
|
460
|
+
|
|
461
|
+
# Analyse import fallback blocks. This can be used to support both Python 2 and
|
|
462
|
+
# 3 compatible code, which means that the block might have code that exists
|
|
463
|
+
# only in one or another interpreter, leading to false positives when analysed.
|
|
464
|
+
analyse-fallback-blocks=no
|
|
465
|
+
|
|
466
|
+
# Deprecated modules which should not be used, separated by a comma
|
|
467
|
+
deprecated-modules=optparse,tkinter.tix
|
|
468
|
+
|
|
469
|
+
# Create a graph of external dependencies in the given file (report RP0402 must
|
|
470
|
+
# not be disabled)
|
|
471
|
+
ext-import-graph=
|
|
472
|
+
|
|
473
|
+
# Create a graph of every (i.e. internal and external) dependencies in the
|
|
474
|
+
# given file (report RP0402 must not be disabled)
|
|
475
|
+
import-graph=
|
|
476
|
+
|
|
477
|
+
# Create a graph of internal dependencies in the given file (report RP0402 must
|
|
478
|
+
# not be disabled)
|
|
479
|
+
int-import-graph=
|
|
480
|
+
|
|
481
|
+
# Force import order to recognize a module as part of the standard
|
|
482
|
+
# compatibility libraries.
|
|
483
|
+
known-standard-library=
|
|
484
|
+
|
|
485
|
+
# Force import order to recognize a module as part of a third party library.
|
|
486
|
+
known-third-party=enchant
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
[DESIGN]
|
|
490
|
+
|
|
491
|
+
# Maximum number of arguments for function / method
|
|
492
|
+
max-args=5
|
|
493
|
+
|
|
494
|
+
# Maximum number of attributes for a class (see R0902).
|
|
495
|
+
max-attributes=7
|
|
496
|
+
|
|
497
|
+
# Maximum number of boolean expressions in a if statement
|
|
498
|
+
max-bool-expr=5
|
|
499
|
+
|
|
500
|
+
# Maximum number of branch for function / method body
|
|
501
|
+
max-branches=12
|
|
502
|
+
|
|
503
|
+
# Maximum number of locals for function / method body
|
|
504
|
+
max-locals=15
|
|
505
|
+
|
|
506
|
+
# Maximum number of parents for a class (see R0901).
|
|
507
|
+
max-parents=7
|
|
508
|
+
|
|
509
|
+
# Maximum number of public methods for a class (see R0904).
|
|
510
|
+
max-public-methods=20
|
|
511
|
+
|
|
512
|
+
# Maximum number of return / yield for function / method body
|
|
513
|
+
max-returns=6
|
|
514
|
+
|
|
515
|
+
# Maximum number of statements in function / method body
|
|
516
|
+
max-statements=50
|
|
517
|
+
|
|
518
|
+
# Minimum number of public methods for a class (see R0903).
|
|
519
|
+
min-public-methods=2
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
[CLASSES]
|
|
523
|
+
|
|
524
|
+
# List of method names used to declare (i.e. assign) instance attributes.
|
|
525
|
+
defining-attr-methods=__init__,
|
|
526
|
+
__new__,
|
|
527
|
+
setUp
|
|
528
|
+
|
|
529
|
+
# List of member names, which should be excluded from the protected access
|
|
530
|
+
# warning.
|
|
531
|
+
exclude-protected=_asdict,
|
|
532
|
+
_fields,
|
|
533
|
+
_replace,
|
|
534
|
+
_source,
|
|
535
|
+
_make
|
|
536
|
+
|
|
537
|
+
# List of valid names for the first argument in a class method.
|
|
538
|
+
valid-classmethod-first-arg=cls
|
|
539
|
+
|
|
540
|
+
# List of valid names for the first argument in a metaclass class method.
|
|
541
|
+
valid-metaclass-classmethod-first-arg=mcs
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
[EXCEPTIONS]
|
|
545
|
+
|
|
546
|
+
# Exceptions that will emit a warning when being caught. Defaults to
|
|
547
|
+
# "Exception"
|
|
548
|
+
overgeneral-exceptions=builtins.Exception
|