BuildStream 2.5.0.dev1__tar.gz → 2.6.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.
Files changed (2497) hide show
  1. buildstream-2.6.0/NEWS +1130 -0
  2. buildstream-2.6.0/PKG-INFO +172 -0
  3. buildstream-2.6.0/README.rst +119 -0
  4. buildstream-2.6.0/doc/source/format_declaring.rst +756 -0
  5. buildstream-2.6.0/doc/source/hacking/grpc_protocols.rst +35 -0
  6. buildstream-2.6.0/doc/source/using_config.rst +1386 -0
  7. buildstream-2.6.0/requirements/cov-requirements.txt +12 -0
  8. buildstream-2.6.0/requirements/dev-requirements.in +9 -0
  9. buildstream-2.6.0/requirements/dev-requirements.txt +25 -0
  10. buildstream-2.6.0/requirements/requirements.in +12 -0
  11. buildstream-2.6.0/requirements/requirements.txt +16 -0
  12. buildstream-2.6.0/setup.py +387 -0
  13. buildstream-2.6.0/src/BuildStream.egg-info/PKG-INFO +172 -0
  14. buildstream-2.6.0/src/BuildStream.egg-info/SOURCES.txt +2402 -0
  15. buildstream-2.6.0/src/BuildStream.egg-info/requires.txt +14 -0
  16. buildstream-2.6.0/src/buildstream/_artifact.py +753 -0
  17. buildstream-2.6.0/src/buildstream/_artifactcache.py +464 -0
  18. buildstream-2.6.0/src/buildstream/_assetcache.py +473 -0
  19. buildstream-2.6.0/src/buildstream/_cas/casdprocessmanager.py +496 -0
  20. buildstream-2.6.0/src/buildstream/_cas/casremote.py +179 -0
  21. buildstream-2.6.0/src/buildstream/_context.py +823 -0
  22. buildstream-2.6.0/src/buildstream/_elementproxy.py +181 -0
  23. buildstream-2.6.0/src/buildstream/_frontend/cli.py +1670 -0
  24. buildstream-2.6.0/src/buildstream/_frontend/complete.py +369 -0
  25. buildstream-2.6.0/src/buildstream/_frontend/widget.py +1097 -0
  26. buildstream-2.6.0/src/buildstream/_loader/loadelement.c +18035 -0
  27. buildstream-2.6.0/src/buildstream/_loader/metasource.py +42 -0
  28. buildstream-2.6.0/src/buildstream/_loader/types.py +43 -0
  29. buildstream-2.6.0/src/buildstream/_pluginfactory/pluginoriginpip.py +110 -0
  30. buildstream-2.6.0/src/buildstream/_project.py +1202 -0
  31. buildstream-2.6.0/src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset_pb2.py +70 -0
  32. buildstream-2.6.0/src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset_pb2_grpc.py +391 -0
  33. buildstream-2.6.0/src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution_pb2.py +195 -0
  34. buildstream-2.6.0/src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution_pb2_grpc.py +1252 -0
  35. buildstream-2.6.0/src/buildstream/_protos/build/bazel/semver/semver_pb2.py +36 -0
  36. buildstream-2.6.0/src/buildstream/_protos/build/bazel/semver/semver_pb2_grpc.py +24 -0
  37. buildstream-2.6.0/src/buildstream/_protos/build/buildgrid/local_cas.proto +674 -0
  38. buildstream-2.6.0/src/buildstream/_protos/build/buildgrid/local_cas_pb2.py +102 -0
  39. buildstream-2.6.0/src/buildstream/_protos/build/buildgrid/local_cas_pb2.pyi +306 -0
  40. buildstream-2.6.0/src/buildstream/_protos/build/buildgrid/local_cas_pb2_grpc.py +687 -0
  41. buildstream-2.6.0/src/buildstream/_protos/buildstream/v2/artifact.proto +95 -0
  42. buildstream-2.6.0/src/buildstream/_protos/buildstream/v2/artifact_pb2.py +44 -0
  43. buildstream-2.6.0/src/buildstream/_protos/buildstream/v2/artifact_pb2.pyi +75 -0
  44. buildstream-2.6.0/src/buildstream/_protos/buildstream/v2/artifact_pb2_grpc.py +24 -0
  45. buildstream-2.6.0/src/buildstream/_protos/buildstream/v2/source_pb2.py +38 -0
  46. buildstream-2.6.0/src/buildstream/_protos/buildstream/v2/source_pb2_grpc.py +24 -0
  47. buildstream-2.6.0/src/buildstream/_protos/google/api/annotations_pb2.py +37 -0
  48. buildstream-2.6.0/src/buildstream/_protos/google/api/annotations_pb2_grpc.py +24 -0
  49. buildstream-2.6.0/src/buildstream/_protos/google/api/http_pb2.py +41 -0
  50. buildstream-2.6.0/src/buildstream/_protos/google/api/http_pb2_grpc.py +24 -0
  51. buildstream-2.6.0/src/buildstream/_protos/google/bytestream/bytestream_pb2.py +51 -0
  52. buildstream-2.6.0/src/buildstream/_protos/google/bytestream/bytestream_pb2_grpc.py +291 -0
  53. buildstream-2.6.0/src/buildstream/_protos/google/longrunning/operations_pb2.py +61 -0
  54. buildstream-2.6.0/src/buildstream/_protos/google/longrunning/operations_pb2_grpc.py +276 -0
  55. buildstream-2.6.0/src/buildstream/_protos/google/rpc/code_pb2.py +37 -0
  56. buildstream-2.6.0/src/buildstream/_protos/google/rpc/code_pb2_grpc.py +24 -0
  57. buildstream-2.6.0/src/buildstream/_protos/google/rpc/status_pb2.py +38 -0
  58. buildstream-2.6.0/src/buildstream/_protos/google/rpc/status_pb2_grpc.py +24 -0
  59. buildstream-2.6.0/src/buildstream/_remote.py +118 -0
  60. buildstream-2.6.0/src/buildstream/_remotespec.py +576 -0
  61. buildstream-2.6.0/src/buildstream/_scheduler/scheduler.py +540 -0
  62. buildstream-2.6.0/src/buildstream/_stream.py +2119 -0
  63. buildstream-2.6.0/src/buildstream/_types.c +12287 -0
  64. buildstream-2.6.0/src/buildstream/_utils.c +8760 -0
  65. buildstream-2.6.0/src/buildstream/_variables.c +19121 -0
  66. buildstream-2.6.0/src/buildstream/_version.py +21 -0
  67. buildstream-2.6.0/src/buildstream/_yaml.c +20797 -0
  68. buildstream-2.6.0/src/buildstream/_yaml.pyx +497 -0
  69. buildstream-2.6.0/src/buildstream/buildelement.py +440 -0
  70. buildstream-2.6.0/src/buildstream/element.py +3430 -0
  71. buildstream-2.6.0/src/buildstream/node.c +40674 -0
  72. buildstream-2.6.0/src/buildstream/plugins/sources/tar.py +275 -0
  73. buildstream-2.6.0/src/buildstream/sandbox/_config.py +169 -0
  74. buildstream-2.6.0/src/buildstream/sandbox/_reremote.py +79 -0
  75. buildstream-2.6.0/src/buildstream/sandbox/_sandboxbuildboxrun.py +281 -0
  76. buildstream-2.6.0/src/buildstream/sandbox/_sandboxreapi.py +317 -0
  77. buildstream-2.6.0/src/buildstream/sandbox/_sandboxremote.py +268 -0
  78. buildstream-2.6.0/src/buildstream/sandbox/sandbox.py +769 -0
  79. buildstream-2.6.0/src/buildstream/source.py +2058 -0
  80. buildstream-2.6.0/src/buildstream/types.py +448 -0
  81. buildstream-2.6.0/tests/conftest.py +162 -0
  82. buildstream-2.6.0/tests/frontend/show.py +816 -0
  83. buildstream-2.6.0/tests/frontend/source-info/elements/user-provenance.bst +9 -0
  84. buildstream-2.6.0/tests/integration/base/generate-debian-base.sh +38 -0
  85. buildstream-2.6.0/tests/integration/digest-environment.py +158 -0
  86. buildstream-2.6.0/tests/integration/project/elements/base/base-alpine.bst +17 -0
  87. buildstream-2.6.0/tests/integration/project/elements/base/base-debian.bst +12 -0
  88. buildstream-2.6.0/tests/integration/project/elements/digest-environment/base-buildtree.bst +12 -0
  89. buildstream-2.6.0/tests/integration/project/elements/digest-environment/base-plus-extra-dep.bst +14 -0
  90. buildstream-2.6.0/tests/integration/project/elements/digest-environment/base.bst +12 -0
  91. buildstream-2.6.0/tests/integration/project/elements/digest-environment/merge.bst +16 -0
  92. buildstream-2.6.0/tests/integration/project/elements/digest-environment/two.bst +17 -0
  93. buildstream-2.6.0/tests/integration/project/elements/recc/cacheonly.bst +29 -0
  94. buildstream-2.6.0/tests/integration/project/elements/recc/recc.bst +8 -0
  95. buildstream-2.6.0/tests/integration/project/elements/recc/remoteexecution.bst +26 -0
  96. buildstream-2.6.0/tests/integration/project/elements/sandbox/remote-apis-socket-ac-update.bst +14 -0
  97. buildstream-2.6.0/tests/integration/project/elements/sandbox/remote-apis-socket.bst +13 -0
  98. buildstream-2.6.0/tests/integration/project/project.conf +38 -0
  99. buildstream-2.6.0/tests/integration/pullbuildtrees.py +200 -0
  100. buildstream-2.6.0/tests/integration/recc.py +255 -0
  101. buildstream-2.6.0/tests/integration/sandbox.py +163 -0
  102. buildstream-2.6.0/tests/integration/shellbuildtrees.py +461 -0
  103. buildstream-2.6.0/tests/internals/yaml/roundtrip-test.yaml +57 -0
  104. buildstream-2.6.0/tests/sources/tar/symlinks/target.bst +5 -0
  105. buildstream-2.6.0/tests/sources/tar.py +608 -0
  106. buildstream-2.6.0/tests/testutils/bearer_http_server.py +116 -0
  107. buildstream-2.6.0/tests/testutils/ftp_server.py +43 -0
  108. buildstream-2.6.0/tests/testutils/http_server.py +122 -0
  109. buildstream-2.6.0/tests/testutils/site.py +43 -0
  110. buildstream-2.6.0/tox.ini +271 -0
  111. buildstream-2.5.0.dev1/NEWS +0 -1107
  112. buildstream-2.5.0.dev1/PKG-INFO +0 -171
  113. buildstream-2.5.0.dev1/README.rst +0 -119
  114. buildstream-2.5.0.dev1/doc/source/format_declaring.rst +0 -728
  115. buildstream-2.5.0.dev1/doc/source/hacking/grpc_protocols.rst +0 -41
  116. buildstream-2.5.0.dev1/doc/source/using_config.rst +0 -1374
  117. buildstream-2.5.0.dev1/requirements/cov-requirements.txt +0 -8
  118. buildstream-2.5.0.dev1/requirements/dev-requirements.in +0 -10
  119. buildstream-2.5.0.dev1/requirements/dev-requirements.txt +0 -24
  120. buildstream-2.5.0.dev1/requirements/requirements.in +0 -12
  121. buildstream-2.5.0.dev1/requirements/requirements.txt +0 -13
  122. buildstream-2.5.0.dev1/setup.py +0 -392
  123. buildstream-2.5.0.dev1/src/BuildStream.egg-info/PKG-INFO +0 -171
  124. buildstream-2.5.0.dev1/src/BuildStream.egg-info/SOURCES.txt +0 -2386
  125. buildstream-2.5.0.dev1/src/BuildStream.egg-info/requires.txt +0 -14
  126. buildstream-2.5.0.dev1/src/buildstream/_artifact.py +0 -723
  127. buildstream-2.5.0.dev1/src/buildstream/_artifactcache.py +0 -506
  128. buildstream-2.5.0.dev1/src/buildstream/_assetcache.py +0 -502
  129. buildstream-2.5.0.dev1/src/buildstream/_cas/casdprocessmanager.py +0 -484
  130. buildstream-2.5.0.dev1/src/buildstream/_cas/casremote.py +0 -188
  131. buildstream-2.5.0.dev1/src/buildstream/_context.py +0 -823
  132. buildstream-2.5.0.dev1/src/buildstream/_elementproxy.py +0 -180
  133. buildstream-2.5.0.dev1/src/buildstream/_frontend/cli.py +0 -1659
  134. buildstream-2.5.0.dev1/src/buildstream/_frontend/complete.py +0 -361
  135. buildstream-2.5.0.dev1/src/buildstream/_frontend/widget.py +0 -1095
  136. buildstream-2.5.0.dev1/src/buildstream/_loader/loadelement.c +0 -17889
  137. buildstream-2.5.0.dev1/src/buildstream/_loader/metasource.py +0 -39
  138. buildstream-2.5.0.dev1/src/buildstream/_loader/types.py +0 -42
  139. buildstream-2.5.0.dev1/src/buildstream/_pluginfactory/pluginoriginpip.py +0 -110
  140. buildstream-2.5.0.dev1/src/buildstream/_project.py +0 -1211
  141. buildstream-2.5.0.dev1/src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset_pb2.py +0 -70
  142. buildstream-2.5.0.dev1/src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset_pb2_grpc.py +0 -391
  143. buildstream-2.5.0.dev1/src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution_pb2.py +0 -195
  144. buildstream-2.5.0.dev1/src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution_pb2_grpc.py +0 -1252
  145. buildstream-2.5.0.dev1/src/buildstream/_protos/build/bazel/semver/semver_pb2.py +0 -36
  146. buildstream-2.5.0.dev1/src/buildstream/_protos/build/bazel/semver/semver_pb2_grpc.py +0 -24
  147. buildstream-2.5.0.dev1/src/buildstream/_protos/build/buildgrid/local_cas.proto +0 -590
  148. buildstream-2.5.0.dev1/src/buildstream/_protos/build/buildgrid/local_cas_pb2.py +0 -95
  149. buildstream-2.5.0.dev1/src/buildstream/_protos/build/buildgrid/local_cas_pb2.pyi +0 -268
  150. buildstream-2.5.0.dev1/src/buildstream/_protos/build/buildgrid/local_cas_pb2_grpc.py +0 -641
  151. buildstream-2.5.0.dev1/src/buildstream/_protos/buildstream/v2/artifact.proto +0 -88
  152. buildstream-2.5.0.dev1/src/buildstream/_protos/buildstream/v2/artifact_pb2.py +0 -42
  153. buildstream-2.5.0.dev1/src/buildstream/_protos/buildstream/v2/artifact_pb2.pyi +0 -64
  154. buildstream-2.5.0.dev1/src/buildstream/_protos/buildstream/v2/artifact_pb2_grpc.py +0 -24
  155. buildstream-2.5.0.dev1/src/buildstream/_protos/buildstream/v2/source_pb2.py +0 -38
  156. buildstream-2.5.0.dev1/src/buildstream/_protos/buildstream/v2/source_pb2_grpc.py +0 -24
  157. buildstream-2.5.0.dev1/src/buildstream/_protos/google/api/annotations_pb2.py +0 -37
  158. buildstream-2.5.0.dev1/src/buildstream/_protos/google/api/annotations_pb2_grpc.py +0 -24
  159. buildstream-2.5.0.dev1/src/buildstream/_protos/google/api/http_pb2.py +0 -41
  160. buildstream-2.5.0.dev1/src/buildstream/_protos/google/api/http_pb2_grpc.py +0 -24
  161. buildstream-2.5.0.dev1/src/buildstream/_protos/google/bytestream/bytestream_pb2.py +0 -51
  162. buildstream-2.5.0.dev1/src/buildstream/_protos/google/bytestream/bytestream_pb2_grpc.py +0 -291
  163. buildstream-2.5.0.dev1/src/buildstream/_protos/google/longrunning/operations_pb2.py +0 -61
  164. buildstream-2.5.0.dev1/src/buildstream/_protos/google/longrunning/operations_pb2_grpc.py +0 -276
  165. buildstream-2.5.0.dev1/src/buildstream/_protos/google/rpc/code_pb2.py +0 -37
  166. buildstream-2.5.0.dev1/src/buildstream/_protos/google/rpc/code_pb2_grpc.py +0 -24
  167. buildstream-2.5.0.dev1/src/buildstream/_protos/google/rpc/status_pb2.py +0 -38
  168. buildstream-2.5.0.dev1/src/buildstream/_protos/google/rpc/status_pb2_grpc.py +0 -24
  169. buildstream-2.5.0.dev1/src/buildstream/_remote.py +0 -129
  170. buildstream-2.5.0.dev1/src/buildstream/_remotespec.py +0 -592
  171. buildstream-2.5.0.dev1/src/buildstream/_scheduler/scheduler.py +0 -544
  172. buildstream-2.5.0.dev1/src/buildstream/_stream.py +0 -2117
  173. buildstream-2.5.0.dev1/src/buildstream/_types.c +0 -12079
  174. buildstream-2.5.0.dev1/src/buildstream/_utils.c +0 -8572
  175. buildstream-2.5.0.dev1/src/buildstream/_variables.c +0 -18995
  176. buildstream-2.5.0.dev1/src/buildstream/_version.py +0 -21
  177. buildstream-2.5.0.dev1/src/buildstream/_yaml.c +0 -20651
  178. buildstream-2.5.0.dev1/src/buildstream/_yaml.pyx +0 -495
  179. buildstream-2.5.0.dev1/src/buildstream/buildelement.py +0 -382
  180. buildstream-2.5.0.dev1/src/buildstream/element.py +0 -3386
  181. buildstream-2.5.0.dev1/src/buildstream/node.c +0 -40499
  182. buildstream-2.5.0.dev1/src/buildstream/plugins/sources/tar.py +0 -275
  183. buildstream-2.5.0.dev1/src/buildstream/sandbox/_config.py +0 -135
  184. buildstream-2.5.0.dev1/src/buildstream/sandbox/_sandboxbuildboxrun.py +0 -240
  185. buildstream-2.5.0.dev1/src/buildstream/sandbox/_sandboxreapi.py +0 -282
  186. buildstream-2.5.0.dev1/src/buildstream/sandbox/_sandboxremote.py +0 -384
  187. buildstream-2.5.0.dev1/src/buildstream/sandbox/sandbox.py +0 -739
  188. buildstream-2.5.0.dev1/src/buildstream/source.py +0 -1997
  189. buildstream-2.5.0.dev1/src/buildstream/types.py +0 -412
  190. buildstream-2.5.0.dev1/tests/conftest.py +0 -157
  191. buildstream-2.5.0.dev1/tests/frontend/show.py +0 -780
  192. buildstream-2.5.0.dev1/tests/integration/project/project.conf +0 -37
  193. buildstream-2.5.0.dev1/tests/integration/pullbuildtrees.py +0 -199
  194. buildstream-2.5.0.dev1/tests/integration/sandbox.py +0 -50
  195. buildstream-2.5.0.dev1/tests/integration/shellbuildtrees.py +0 -461
  196. buildstream-2.5.0.dev1/tests/internals/yaml/roundtrip-test.yaml +0 -55
  197. buildstream-2.5.0.dev1/tests/sources/project/elements/base/base-alpine.bst +0 -17
  198. buildstream-2.5.0.dev1/tests/sources/tar.py +0 -563
  199. buildstream-2.5.0.dev1/tests/testutils/bearer_http_server.py +0 -116
  200. buildstream-2.5.0.dev1/tests/testutils/ftp_server.py +0 -45
  201. buildstream-2.5.0.dev1/tests/testutils/http_server.py +0 -122
  202. buildstream-2.5.0.dev1/tests/testutils/setuptools.py +0 -55
  203. buildstream-2.5.0.dev1/tests/testutils/site.py +0 -43
  204. buildstream-2.5.0.dev1/tox.ini +0 -260
  205. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/.coveragerc +0 -0
  206. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/.pylintrc +0 -0
  207. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/COMMITTERS.rst +0 -0
  208. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/CONTRIBUTING.rst +0 -0
  209. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/LICENSE +0 -0
  210. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/MANIFEST.in +0 -0
  211. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/NOTICE +0 -0
  212. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/Makefile +0 -0
  213. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/badges.py +0 -0
  214. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/bst2html.py +0 -0
  215. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/autotools/elements/base/alpine.bst +0 -0
  216. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/autotools/elements/base.bst +0 -0
  217. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/autotools/elements/hello.bst +0 -0
  218. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/autotools/project.conf +0 -0
  219. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/elements/base/alpine.bst +0 -0
  220. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/elements/base.bst +0 -0
  221. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/elements/hello.bst +0 -0
  222. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/elements/libhello.bst +0 -0
  223. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/elements/runtime-only.bst +0 -0
  224. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/files/hello/Makefile +0 -0
  225. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/files/hello/hello.c +0 -0
  226. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/files/libhello/Makefile +0 -0
  227. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/files/libhello/libhello.c +0 -0
  228. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/files/libhello/libhello.h +0 -0
  229. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/composition/project.conf +0 -0
  230. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/developing/elements/base/alpine.bst +0 -0
  231. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/developing/elements/base.bst +0 -0
  232. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/developing/elements/hello.bst +0 -0
  233. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/developing/files/src/Makefile +0 -0
  234. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/developing/files/src/hello.c +0 -0
  235. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/developing/project.conf +0 -0
  236. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/developing/update.patch +0 -0
  237. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/directives/elements/base/alpine.bst +0 -0
  238. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/directives/elements/base.bst +0 -0
  239. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/directives/elements/hello.bst +0 -0
  240. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/directives/files/src/Makefile +0 -0
  241. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/directives/files/src/hello.c +0 -0
  242. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/directives/include/greeting.bst +0 -0
  243. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/directives/project.conf +0 -0
  244. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/elements/base/alpine.bst +0 -0
  245. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/elements/base.bst +0 -0
  246. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/elements/hello.bst +0 -0
  247. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/elements/libhello-filtered.bst +0 -0
  248. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/elements/libhello.bst +0 -0
  249. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/files/hello/Makefile +0 -0
  250. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/files/hello/hello.c +0 -0
  251. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/files/libhello/Makefile +0 -0
  252. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/files/libhello/default-person.txt +0 -0
  253. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/files/libhello/libhello.c +0 -0
  254. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/files/libhello/libhello.h +0 -0
  255. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/filtering/project.conf +0 -0
  256. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/first-project/elements/hello.bst +0 -0
  257. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/first-project/hello.world +0 -0
  258. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/first-project/project.conf +0 -0
  259. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/integration-commands/elements/base/alpine.bst +0 -0
  260. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/integration-commands/elements/base.bst +0 -0
  261. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/integration-commands/elements/hello.bst +0 -0
  262. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/integration-commands/elements/libhello.bst +0 -0
  263. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/integration-commands/files/hello/Makefile +0 -0
  264. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/integration-commands/files/hello/hello.c +0 -0
  265. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/integration-commands/files/libhello/Makefile +0 -0
  266. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/integration-commands/files/libhello/libhello.c +0 -0
  267. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/integration-commands/files/libhello/libhello.h +0 -0
  268. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/integration-commands/project.conf +0 -0
  269. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junction-includes/elements/hello.bst +0 -0
  270. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junction-includes/elements/subproject-junction.bst +0 -0
  271. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junction-includes/project.conf +0 -0
  272. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junction-includes/subproject/elements/base/alpine.bst +0 -0
  273. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junction-includes/subproject/elements/base.bst +0 -0
  274. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junction-includes/subproject/include/paths.bst +0 -0
  275. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junction-includes/subproject/project.conf +0 -0
  276. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junctions/autotools/elements/base/alpine.bst +0 -0
  277. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junctions/autotools/elements/base.bst +0 -0
  278. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junctions/autotools/elements/hello.bst +0 -0
  279. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junctions/autotools/project.conf +0 -0
  280. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junctions/elements/callHello.bst +0 -0
  281. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junctions/elements/hello-junction.bst +0 -0
  282. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junctions/files/callHello.sh +0 -0
  283. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/junctions/project.conf +0 -0
  284. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/elements/base/alpine.bst +0 -0
  285. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/elements/base.bst +0 -0
  286. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/elements/hello.bst +0 -0
  287. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/elements/libhello.bst +0 -0
  288. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/elements/runtime-only.bst +0 -0
  289. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/files/hello/Makefile +0 -0
  290. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/files/hello/hello.c +0 -0
  291. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/files/hello/hello.txt +0 -0
  292. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/files/libhello/Makefile +0 -0
  293. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/files/libhello/hello.txt +0 -0
  294. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/files/libhello/libhello.c +0 -0
  295. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/files/libhello/libhello.h +0 -0
  296. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/overlaps/project.conf +0 -0
  297. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/running-commands/elements/base/alpine.bst +0 -0
  298. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/running-commands/elements/base.bst +0 -0
  299. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/running-commands/elements/hello.bst +0 -0
  300. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/running-commands/files/src/Makefile +0 -0
  301. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/running-commands/files/src/hello.c +0 -0
  302. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/running-commands/project.conf +0 -0
  303. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/elements/base/alpine.bst +0 -0
  304. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/elements/base.bst +0 -0
  305. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/elements/hello-dynamic.bst +0 -0
  306. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/elements/hello-static.bst +0 -0
  307. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/elements/libhello.bst +0 -0
  308. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/files/hello/Makefile.dynamic +0 -0
  309. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/files/hello/Makefile.static +0 -0
  310. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/files/hello/hello.c +0 -0
  311. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/files/libhello/Makefile +0 -0
  312. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/files/libhello/libhello.c +0 -0
  313. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/files/libhello/libhello.h +0 -0
  314. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/project.conf +0 -0
  315. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/examples/strict-mode/update.patch +0 -0
  316. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/autotools.run +0 -0
  317. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/composition.run +0 -0
  318. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/developing.run +0 -0
  319. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/directives.run +0 -0
  320. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/filtering.run +0 -0
  321. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/first-project.run +0 -0
  322. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/integration-commands.run +0 -0
  323. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/junction-includes.run +0 -0
  324. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/junctions.run +0 -0
  325. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/overlaps.run +0 -0
  326. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/running-commands.run +0 -0
  327. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/sessions/strict-mode.run +0 -0
  328. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/CONTRIBUTING.rst +0 -0
  329. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/additional_docker.rst +0 -0
  330. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/arch_cachekeys.rst +0 -0
  331. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/arch_caches.rst +0 -0
  332. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/arch_data_model.rst +0 -0
  333. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/arch_dependency_model.rst +0 -0
  334. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/arch_overview.rst +0 -0
  335. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/arch_program_flow.rst +0 -0
  336. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/arch_remote_execution.rst +0 -0
  337. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/arch_sandboxing.rst +0 -0
  338. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/arch_scheduler.rst +0 -0
  339. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/conf.py +0 -0
  340. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/core_additional.rst +0 -0
  341. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/core_format.rst +0 -0
  342. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/core_framework.rst +0 -0
  343. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/core_plugins.rst +0 -0
  344. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/developing/strict-mode.rst +0 -0
  345. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/developing/workspaces.rst +0 -0
  346. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/examples/git-mirror.rst +0 -0
  347. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/examples/tar-mirror.rst +0 -0
  348. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/format_intro.rst +0 -0
  349. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/format_project.rst +0 -0
  350. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/format_project_refs.rst +0 -0
  351. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/format_public.rst +0 -0
  352. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/hacking/coding_guidelines.rst +0 -0
  353. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/hacking/making_releases.rst +0 -0
  354. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/hacking/managing_data_files.rst +0 -0
  355. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/hacking/measuring_performance.rst +0 -0
  356. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/hacking/ui.rst +0 -0
  357. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/hacking/updating_python_deps.rst +0 -0
  358. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/hacking/using_the_testsuite.rst +0 -0
  359. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/hacking/writing_documentation.rst +0 -0
  360. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/hacking/writing_plugins.rst +0 -0
  361. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/handling-files/composition.rst +0 -0
  362. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/handling-files/filtering.rst +0 -0
  363. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/handling-files/overlaps.rst +0 -0
  364. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-datamodel-context.odg +0 -0
  365. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-datamodel-element-composition.odg +0 -0
  366. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-datamodel-element.odg +0 -0
  367. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-datamodel-source-composition.odg +0 -0
  368. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-datamodel-source.odg +0 -0
  369. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-dependency-model-build.odg +0 -0
  370. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-dependency-model-runtime.odg +0 -0
  371. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-dependency-model.odg +0 -0
  372. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-overview.odg +0 -0
  373. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-program-flow.odg +0 -0
  374. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-remote-execution.odg +0 -0
  375. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-scheduler-job.odg +0 -0
  376. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-scheduler-queue-ports.odg +0 -0
  377. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-scheduler-queues.odg +0 -0
  378. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/image-sources/arch-scheduler-run.odg +0 -0
  379. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-datamodel-context.svg +0 -0
  380. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-datamodel-element-composition.svg +0 -0
  381. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-datamodel-element.svg +0 -0
  382. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-datamodel-source-composition.svg +0 -0
  383. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-datamodel-source.svg +0 -0
  384. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-dependency-model-build.svg +0 -0
  385. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-dependency-model-runtime.svg +0 -0
  386. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-dependency-model.svg +0 -0
  387. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-overview.svg +0 -0
  388. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-program-flow.svg +0 -0
  389. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-remote-execution.svg +0 -0
  390. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-scheduler-job.svg +0 -0
  391. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-scheduler-queue-ports.svg +0 -0
  392. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-scheduler-queues.svg +0 -0
  393. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/images/arch-scheduler-run.svg +0 -0
  394. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/index.rst +0 -0
  395. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/junctions/junction-elements.rst +0 -0
  396. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/junctions/junction-includes.rst +0 -0
  397. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/junctions/junction-workspaces.rst +0 -0
  398. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/main_about.rst +0 -0
  399. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/main_architecture.rst +0 -0
  400. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/main_core.rst +0 -0
  401. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/main_glossary.rst +0 -0
  402. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/main_install.rst +0 -0
  403. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/main_porting.rst +0 -0
  404. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/main_using.rst +0 -0
  405. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/plugin.rsttemplate +0 -0
  406. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/porting_command_line.rst +0 -0
  407. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/porting_project.rst +0 -0
  408. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/porting_user_configuration.rst +0 -0
  409. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sample_plugin/MANIFEST.in +0 -0
  410. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sample_plugin/setup.py +0 -0
  411. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/autotools-build.html +0 -0
  412. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/autotools-shell.html +0 -0
  413. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/autotools-show-variables.html +0 -0
  414. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/composition-build.html +0 -0
  415. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/composition-list-contents.html +0 -0
  416. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/composition-shell.html +0 -0
  417. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/developing-build-after-changes-workspace.html +0 -0
  418. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/developing-build-after-changes.html +0 -0
  419. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/developing-close-workspace.html +0 -0
  420. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/developing-discard-workspace.html +0 -0
  421. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/developing-reopen-workspace.html +0 -0
  422. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/developing-reset-workspace.html +0 -0
  423. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/developing-shell-after-changes.html +0 -0
  424. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/developing-soft-reset.html +0 -0
  425. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/developing-workspace-list.html +0 -0
  426. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/developing-workspace-open.html +0 -0
  427. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/directives-build-excited.html +0 -0
  428. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/directives-build-normal.html +0 -0
  429. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/directives-build-somber.html +0 -0
  430. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/directives-shell-excited.html +0 -0
  431. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/directives-shell-normal.html +0 -0
  432. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/directives-shell-somber.html +0 -0
  433. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/filtering-list-contents-libhello-filtered.html +0 -0
  434. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/filtering-list-contents-libhello.html +0 -0
  435. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/filtering-shell-with-filter.html +0 -0
  436. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/filtering-shell-without-filter.html +0 -0
  437. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/first-project-build.html +0 -0
  438. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/first-project-checkout.html +0 -0
  439. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/first-project-init.html +0 -0
  440. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/first-project-ls.html +0 -0
  441. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/first-project-show.html +0 -0
  442. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/first-project-touch.html +0 -0
  443. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/integration-commands-build.html +0 -0
  444. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/integration-commands-shell.html +0 -0
  445. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/junction-includes-build-funky.html +0 -0
  446. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/junction-includes-build-normal.html +0 -0
  447. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/junction-includes-shell-funky.html +0 -0
  448. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/junction-includes-shell-normal.html +0 -0
  449. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/junctions-build.html +0 -0
  450. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/junctions-shell.html +0 -0
  451. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/junctions-workspace-open-subproject.html +0 -0
  452. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/junctions-workspace-open.html +0 -0
  453. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/overlaps-build.html +0 -0
  454. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/running-commands-build.html +0 -0
  455. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/running-commands-shell.html +0 -0
  456. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/running-commands-show-after.html +0 -0
  457. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/running-commands-show-before.html +0 -0
  458. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/strict-mode-build-dynamic-no-strict.html +0 -0
  459. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/strict-mode-build-static-no-strict.html +0 -0
  460. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/strict-mode-run-dynamic-no-strict.html +0 -0
  461. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/strict-mode-run-static-no-strict.html +0 -0
  462. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/strict-mode-show-dynamic-no-strict.html +0 -0
  463. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/strict-mode-show-dynamic-strict.html +0 -0
  464. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/strict-mode-show-initial.html +0 -0
  465. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/strict-mode-show-static-no-strict.html +0 -0
  466. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/sessions-stored/strict-mode-workspace-open.html +0 -0
  467. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/tutorial/autotools.rst +0 -0
  468. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/tutorial/directives.rst +0 -0
  469. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/tutorial/first-project.rst +0 -0
  470. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/tutorial/integration-commands.rst +0 -0
  471. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/tutorial/running-commands.rst +0 -0
  472. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/using_commands.rst +0 -0
  473. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/using_configuring_cache_server.rst +0 -0
  474. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/using_configuring_remote_execution.rst +0 -0
  475. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/using_developing.rst +0 -0
  476. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/using_examples.rst +0 -0
  477. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/using_handling_files.rst +0 -0
  478. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/using_junctions.rst +0 -0
  479. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/doc/source/using_tutorial.rst +0 -0
  480. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-artifact-checkout.1 +0 -0
  481. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-artifact-delete.1 +0 -0
  482. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-artifact-list-contents.1 +0 -0
  483. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-artifact-log.1 +0 -0
  484. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-artifact-pull.1 +0 -0
  485. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-artifact-push.1 +0 -0
  486. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-artifact-server.1 +0 -0
  487. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-artifact-show.1 +0 -0
  488. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-artifact.1 +0 -0
  489. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-build.1 +0 -0
  490. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-help.1 +0 -0
  491. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-init.1 +0 -0
  492. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-shell.1 +0 -0
  493. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-show.1 +0 -0
  494. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-source-checkout.1 +0 -0
  495. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-source-fetch.1 +0 -0
  496. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-source-push.1 +0 -0
  497. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-source-track.1 +0 -0
  498. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-source.1 +0 -0
  499. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-workspace-close.1 +0 -0
  500. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-workspace-list.1 +0 -0
  501. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-workspace-open.1 +0 -0
  502. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-workspace-reset.1 +0 -0
  503. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst-workspace.1 +0 -0
  504. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/man/bst.1 +0 -0
  505. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/pyproject.toml +0 -0
  506. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/requirements/cov-requirements.in +0 -0
  507. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/setup.cfg +0 -0
  508. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/BuildStream.egg-info/dependency_links.txt +0 -0
  509. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/BuildStream.egg-info/entry_points.txt +0 -0
  510. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/BuildStream.egg-info/not-zip-safe +0 -0
  511. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/BuildStream.egg-info/top_level.txt +0 -0
  512. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/__init__.py +0 -0
  513. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/__main__.py +0 -0
  514. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_artifactelement.py +0 -0
  515. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_artifactproject.py +0 -0
  516. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_cachekey.py +0 -0
  517. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_cas/__init__.py +0 -0
  518. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_cas/cascache.py +0 -0
  519. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_cas/casserver.py +0 -0
  520. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_elementsources.py +0 -0
  521. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_elementsourcescache.py +0 -0
  522. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_exceptions.py +0 -0
  523. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_frontend/__init__.py +0 -0
  524. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_frontend/app.py +0 -0
  525. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_frontend/linuxapp.py +0 -0
  526. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_frontend/profile.py +0 -0
  527. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_frontend/status.py +0 -0
  528. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_includes.py +0 -0
  529. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_loader/__init__.py +0 -0
  530. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_loader/listsort.c +0 -0
  531. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_loader/loadcontext.py +0 -0
  532. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_loader/loadelement.pyi +0 -0
  533. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_loader/loadelement.pyx +0 -0
  534. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_loader/loader.py +0 -0
  535. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_message.py +0 -0
  536. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_messenger.py +0 -0
  537. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_options/__init__.py +0 -0
  538. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_options/option.py +0 -0
  539. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_options/optionarch.py +0 -0
  540. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_options/optionbool.py +0 -0
  541. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_options/optioneltmask.py +0 -0
  542. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_options/optionenum.py +0 -0
  543. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_options/optionflags.py +0 -0
  544. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_options/optionos.py +0 -0
  545. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_options/optionpool.py +0 -0
  546. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_overlapcollector.py +0 -0
  547. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_pipeline.py +0 -0
  548. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_platform/__init__.py +0 -0
  549. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_platform/platform.py +0 -0
  550. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_pluginfactory/__init__.py +0 -0
  551. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_pluginfactory/elementfactory.py +0 -0
  552. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_pluginfactory/pluginfactory.py +0 -0
  553. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_pluginfactory/pluginorigin.py +0 -0
  554. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_pluginfactory/pluginoriginjunction.py +0 -0
  555. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_pluginfactory/pluginoriginlocal.py +0 -0
  556. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_pluginfactory/sourcefactory.py +0 -0
  557. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_pluginfactory/sourcemirrorfactory.py +0 -0
  558. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_pluginproxy.py +0 -0
  559. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_profile.py +0 -0
  560. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_projectrefs.py +0 -0
  561. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/__init__.py +0 -0
  562. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/__init__.py +0 -0
  563. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/__init__.py +0 -0
  564. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/remote/__init__.py +0 -0
  565. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/remote/asset/__init__.py +0 -0
  566. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/remote/asset/v1/__init__.py +0 -0
  567. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset.proto +0 -0
  568. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset_pb2.pyi +0 -0
  569. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/remote/execution/__init__.py +0 -0
  570. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/remote/execution/v2/__init__.py +0 -0
  571. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution.proto +0 -0
  572. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution_pb2.pyi +0 -0
  573. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/semver/__init__.py +0 -0
  574. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/semver/semver.proto +0 -0
  575. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/bazel/semver/semver_pb2.pyi +0 -0
  576. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/build/buildgrid/__init__.py +0 -0
  577. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/buildstream/__init__.py +0 -0
  578. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/buildstream/v2/__init__.py +0 -0
  579. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/buildstream/v2/source.proto +0 -0
  580. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/buildstream/v2/source_pb2.pyi +0 -0
  581. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/__init__.py +0 -0
  582. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/api/__init__.py +0 -0
  583. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/api/annotations.proto +0 -0
  584. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/api/annotations_pb2.pyi +0 -0
  585. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/api/http.proto +0 -0
  586. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/api/http_pb2.pyi +0 -0
  587. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/bytestream/__init__.py +0 -0
  588. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/bytestream/bytestream.proto +0 -0
  589. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/bytestream/bytestream_pb2.pyi +0 -0
  590. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/longrunning/__init__.py +0 -0
  591. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/longrunning/operations.proto +0 -0
  592. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/longrunning/operations_pb2.pyi +0 -0
  593. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/rpc/__init__.py +0 -0
  594. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/rpc/code.proto +0 -0
  595. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/rpc/code_pb2.pyi +0 -0
  596. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/rpc/status.proto +0 -0
  597. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_protos/google/rpc/status_pb2.pyi +0 -0
  598. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/__init__.py +0 -0
  599. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/jobs/__init__.py +0 -0
  600. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/jobs/elementjob.py +0 -0
  601. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/jobs/job.py +0 -0
  602. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/queues/__init__.py +0 -0
  603. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/queues/artifactpushqueue.py +0 -0
  604. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/queues/buildqueue.py +0 -0
  605. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/queues/cachequeryqueue.py +0 -0
  606. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/queues/fetchqueue.py +0 -0
  607. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/queues/pullqueue.py +0 -0
  608. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/queues/queue.py +0 -0
  609. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/queues/sourcepushqueue.py +0 -0
  610. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/queues/trackqueue.py +0 -0
  611. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_scheduler/resources.py +0 -0
  612. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_signals.py +0 -0
  613. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_site.py +0 -0
  614. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_sourcecache.py +0 -0
  615. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_state.py +0 -0
  616. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/__init__.py +0 -0
  617. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_cachekeys.py +0 -0
  618. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_fixtures.py +0 -0
  619. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/__init__.py +0 -0
  620. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/build_checkout.py +0 -0
  621. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/conftest.py +0 -0
  622. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/fetch.py +0 -0
  623. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/mirror.py +0 -0
  624. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/base/base-alpine.bst +0 -0
  625. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/base.bst +0 -0
  626. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/import-bin.bst +0 -0
  627. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/import-dev.bst +0 -0
  628. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/dependency/horsey.bst +0 -0
  629. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/dependency/pony.bst +0 -0
  630. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/dependency/zebry.bst +0 -0
  631. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/0.bst +0 -0
  632. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/1.bst +0 -0
  633. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/2.bst +0 -0
  634. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/3.bst +0 -0
  635. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/4.bst +0 -0
  636. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/5.bst +0 -0
  637. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/6.bst +0 -0
  638. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/7.bst +0 -0
  639. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/8.bst +0 -0
  640. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/9.bst +0 -0
  641. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/elements/multiple_targets/order/run.bst +0 -0
  642. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/files/bar +0 -0
  643. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/files/bin-files/usr/bin/hello +0 -0
  644. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/files/dev-files/usr/include/pony.h +0 -0
  645. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/files/etc-files/etc/buildstream/config +0 -0
  646. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/files/foo +0 -0
  647. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/files/source-bundle/llamas.txt +0 -0
  648. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/files/sub-project/elements/import-etc.bst +0 -0
  649. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/files/sub-project/files/etc-files/etc/animal.conf +0 -0
  650. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/files/sub-project/project.conf +0 -0
  651. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/project/project.conf +0 -0
  652. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/source_determinism.py +0 -0
  653. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/track.py +0 -0
  654. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/track_cross_junction.py +0 -0
  655. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/utils.py +0 -0
  656. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_sourcetests/workspace.py +0 -0
  657. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_update_cachekeys.py +0 -0
  658. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_utils/__init__.py +0 -0
  659. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_utils/junction.py +0 -0
  660. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_utils/site.py +0 -0
  661. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/_yaml.py +0 -0
  662. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/integration.py +0 -0
  663. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/repo.py +0 -0
  664. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_testing/runcli.py +0 -0
  665. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_types.pyi +0 -0
  666. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_types.pyx +0 -0
  667. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_utils.pyi +0 -0
  668. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_utils.pyx +0 -0
  669. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_variables.pyi +0 -0
  670. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_variables.pyx +0 -0
  671. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_versions.py +0 -0
  672. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_workspaces.py +0 -0
  673. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/_yaml.pyi +0 -0
  674. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/data/bst +0 -0
  675. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/data/build-all.sh.in +0 -0
  676. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/data/build-module.sh.in +0 -0
  677. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/data/projectconfig.yaml +0 -0
  678. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/data/userconfig.yaml +0 -0
  679. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/downloadablefilesource.py +0 -0
  680. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/exceptions.py +0 -0
  681. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/node.pxd +0 -0
  682. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/node.pyi +0 -0
  683. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/node.pyx +0 -0
  684. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugin.py +0 -0
  685. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/__init__.py +0 -0
  686. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/compose.py +0 -0
  687. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/compose.yaml +0 -0
  688. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/filter.py +0 -0
  689. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/filter.yaml +0 -0
  690. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/import.py +0 -0
  691. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/import.yaml +0 -0
  692. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/junction.py +0 -0
  693. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/link.py +0 -0
  694. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/manual.py +0 -0
  695. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/manual.yaml +0 -0
  696. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/script.py +0 -0
  697. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/script.yaml +0 -0
  698. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/elements/stack.py +0 -0
  699. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/sourcemirrors/default.py +0 -0
  700. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/sources/__init__.py +0 -0
  701. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/sources/local.py +0 -0
  702. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/sources/remote.py +0 -0
  703. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/plugins/sources/workspace.py +0 -0
  704. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/py.typed +0 -0
  705. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/sandbox/__init__.py +0 -0
  706. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/sandbox/_sandboxdummy.py +0 -0
  707. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/scriptelement.py +0 -0
  708. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/sourcemirror.py +0 -0
  709. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/storage/__init__.py +0 -0
  710. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/storage/_casbaseddirectory.py +0 -0
  711. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/storage/_filebaseddirectory.py +0 -0
  712. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/storage/directory.py +0 -0
  713. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/src/buildstream/utils.py +0 -0
  714. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/__init__.py +0 -0
  715. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/__init__.py +0 -0
  716. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/capabilities.py +0 -0
  717. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/config.py +0 -0
  718. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/expiry/project.conf +0 -0
  719. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/expiry.py +0 -0
  720. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/junctions/parent/app.bst +0 -0
  721. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/junctions/parent/base/base-element.bst +0 -0
  722. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/junctions/parent/base/base.txt +0 -0
  723. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/junctions/parent/base/project.conf +0 -0
  724. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/junctions/parent/base.bst +0 -0
  725. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/junctions/parent/foo.txt +0 -0
  726. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/junctions/parent/project.conf +0 -0
  727. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/junctions/parent/target.bst +0 -0
  728. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/junctions.py +0 -0
  729. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/missing-certs/certificates/client.crt +0 -0
  730. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/missing-certs/certificates/client.key +0 -0
  731. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/missing-certs/element.bst +0 -0
  732. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/only-one/element.bst +0 -0
  733. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/project/elements/compose-all.bst +0 -0
  734. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/project/elements/import-bin.bst +0 -0
  735. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/project/elements/import-dev.bst +0 -0
  736. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/project/elements/target.bst +0 -0
  737. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/project/files/bin-files/usr/bin/hello +0 -0
  738. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/project/files/dev-files/usr/include/pony.h +0 -0
  739. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/project/project.conf +0 -0
  740. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/pull.py +0 -0
  741. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/artifactcache/push.py +0 -0
  742. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/__init__.py +0 -0
  743. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/cachekey.py +0 -0
  744. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/build1.bst +0 -0
  745. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/build1.expected +0 -0
  746. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/build2.bst +0 -0
  747. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/build2.expected +0 -0
  748. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/build3.bst +0 -0
  749. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/build3.expected +0 -0
  750. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/compose1.bst +0 -0
  751. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/compose1.expected +0 -0
  752. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/compose2.bst +0 -0
  753. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/compose2.expected +0 -0
  754. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/compose3.bst +0 -0
  755. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/compose3.expected +0 -0
  756. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/compose4.bst +0 -0
  757. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/compose4.expected +0 -0
  758. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/compose5.bst +0 -0
  759. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/compose5.expected +0 -0
  760. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/import1.bst +0 -0
  761. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/import1.expected +0 -0
  762. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/import2.bst +0 -0
  763. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/import2.expected +0 -0
  764. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/import3.bst +0 -0
  765. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/import3.expected +0 -0
  766. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/key-stability/aaa.bst +0 -0
  767. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/key-stability/t1.bst +0 -0
  768. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/key-stability/t2.bst +0 -0
  769. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/key-stability/top-level.bst +0 -0
  770. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/key-stability/zzz.bst +0 -0
  771. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/script1.bst +0 -0
  772. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/script1.expected +0 -0
  773. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort0.bst +0 -0
  774. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort0.expected +0 -0
  775. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort1.bst +0 -0
  776. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort1.expected +0 -0
  777. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort2.bst +0 -0
  778. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort2.expected +0 -0
  779. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort3.bst +0 -0
  780. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort3.expected +0 -0
  781. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort4.bst +0 -0
  782. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort4.expected +0 -0
  783. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort5.bst +0 -0
  784. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort5.expected +0 -0
  785. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort6.bst +0 -0
  786. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort6.expected +0 -0
  787. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort7.bst +0 -0
  788. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort7.expected +0 -0
  789. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort8.bst +0 -0
  790. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort8.expected +0 -0
  791. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort9.bst +0 -0
  792. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/sort9.expected +0 -0
  793. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/variables1.bst +0 -0
  794. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/elements/variables1.expected +0 -0
  795. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/files/local/etc/hello.conf +0 -0
  796. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/files/local/etc/ponystyle.conf +0 -0
  797. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/files/local/usr/bin/goodbye +0 -0
  798. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/files/local/usr/bin/hello +0 -0
  799. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/files/patches/patch.diff +0 -0
  800. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/project.conf +0 -0
  801. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/local1.bst +0 -0
  802. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/local1.expected +0 -0
  803. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/local2.bst +0 -0
  804. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/local2.expected +0 -0
  805. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/remote1.bst +0 -0
  806. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/remote1.expected +0 -0
  807. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/remote2.bst +0 -0
  808. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/remote2.expected +0 -0
  809. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/tar1.bst +0 -0
  810. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/tar1.expected +0 -0
  811. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/tar2.bst +0 -0
  812. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/sources/tar2.expected +0 -0
  813. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/target.bst +0 -0
  814. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/cachekey/project/target.expected +0 -0
  815. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/__init__.py +0 -0
  816. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/element_plugins/dynamic.py +0 -0
  817. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/deps-permitted.bst +0 -0
  818. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/forbidden-also-rdep.bst +0 -0
  819. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/forbidden-multi-bdep.bst +0 -0
  820. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/forbidden-no-bdep.bst +0 -0
  821. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/forbidden-source.bst +0 -0
  822. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/forbidden-stack-dep.bst +0 -0
  823. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/input-dynamic.bst +0 -0
  824. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/input-with-deps.bst +0 -0
  825. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/input.bst +0 -0
  826. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/no-pass-integration.bst +0 -0
  827. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/output-dynamic-include.bst +0 -0
  828. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/output-exclude.bst +0 -0
  829. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/output-include-nonexistent-domain.bst +0 -0
  830. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/output-include-with-indirect-deps.bst +0 -0
  831. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/output-include.bst +0 -0
  832. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/output-orphans.bst +0 -0
  833. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/pass-integration.bst +0 -0
  834. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/elements/stack.bst +0 -0
  835. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/files/bar +0 -0
  836. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/files/baz +0 -0
  837. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/files/foo +0 -0
  838. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter/basic/project.conf +0 -0
  839. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/elements/filter.py +0 -0
  840. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/examples/__init__.py +0 -0
  841. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/examples/autotools.py +0 -0
  842. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/examples/developing.py +0 -0
  843. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/examples/first-project.py +0 -0
  844. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/examples/integration-commands.py +0 -0
  845. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/examples/junctions.py +0 -0
  846. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/examples/running-commands.py +0 -0
  847. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/__init__.py +0 -0
  848. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/assertion/conditional-assertion.bst +0 -0
  849. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/assertion/ordered-assertion.bst +0 -0
  850. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/assertion/project.conf +0 -0
  851. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/assertion/raw-assertion.bst +0 -0
  852. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/assertion.py +0 -0
  853. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies.py +0 -0
  854. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/alldep.bst +0 -0
  855. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/builddep-list.bst +0 -0
  856. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/builddep.bst +0 -0
  857. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/circular-firstdep.bst +0 -0
  858. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/circular-seconddep.bst +0 -0
  859. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/circulartarget.bst +0 -0
  860. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/firstdep.bst +0 -0
  861. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/invaliddep.bst +0 -0
  862. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/invaliddeptype.bst +0 -0
  863. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/invalidnonstrict.bst +0 -0
  864. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/invalidstrict.bst +0 -0
  865. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/list-combine.bst +0 -0
  866. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/list-overlap.bst +0 -0
  867. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/runtimedep-list.bst +0 -0
  868. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/runtimedep.bst +0 -0
  869. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/seconddep.bst +0 -0
  870. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/shareddep.bst +0 -0
  871. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/shareddeptarget.bst +0 -0
  872. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/target-depdict.bst +0 -0
  873. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/target.bst +0 -0
  874. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/elements/thirddep.bst +0 -0
  875. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies1/project.conf +0 -0
  876. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies2/build-build.bst +0 -0
  877. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies2/build.bst +0 -0
  878. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies2/dep-one.bst +0 -0
  879. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies2/dep-two.bst +0 -0
  880. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies2/merge-separate-lists.bst +0 -0
  881. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies2/merge-single-list.bst +0 -0
  882. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies2/project.conf +0 -0
  883. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies2/run-build.bst +0 -0
  884. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies2/run.bst +0 -0
  885. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies2/target.bst +0 -0
  886. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/elements/dep.bst +0 -0
  887. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/elements/dep2.bst +0 -0
  888. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/elements/invalid-filenames.bst +0 -0
  889. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/elements/runtime-error.bst +0 -0
  890. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/elements/shorthand-config.bst +0 -0
  891. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/elements/shorthand-junction.bst +0 -0
  892. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/elements/subproject.bst +0 -0
  893. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/elements/supported1.bst +0 -0
  894. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/elements/supported2.bst +0 -0
  895. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/elements/unsupported.bst +0 -0
  896. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/plugins/configsupported.py +0 -0
  897. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/plugins/configunsupported.py +0 -0
  898. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/project.conf +0 -0
  899. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/subproject/project.conf +0 -0
  900. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/subproject/sub.txt +0 -0
  901. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/subproject/target-a.bst +0 -0
  902. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/dependencies3/subproject/target-b.bst +0 -0
  903. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/elementnames/bad-chars-dep.bst +0 -0
  904. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/elementnames/bad-suffix-dep.bst +0 -0
  905. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/elementnames/project.conf +0 -0
  906. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/elementnames.py +0 -0
  907. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional/element.bst +0 -0
  908. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional/extra_conf.yml +0 -0
  909. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional/project.conf +0 -0
  910. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-complex/element.bst +0 -0
  911. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-complex/enable_work_around.yml +0 -0
  912. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-complex/extra_conf.yml +0 -0
  913. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-complex/extra_conf_i586.yml +0 -0
  914. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-complex/extra_conf_x86_64.yml +0 -0
  915. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-complex/options.yml +0 -0
  916. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-complex/project.conf +0 -0
  917. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-complex/work_around.yml +0 -0
  918. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-element/element.bst +0 -0
  919. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-element/extra_conf.yml +0 -0
  920. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-element/project.conf +0 -0
  921. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-element/work_around.yml +0 -0
  922. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-options-included/element.bst +0 -0
  923. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-options-included/extra_conf.yml +0 -0
  924. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-options-included/options.yml +0 -0
  925. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-options-included/project.conf +0 -0
  926. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-options-included/work_around.yml +0 -0
  927. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-project/element.bst +0 -0
  928. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-project/extra_conf.yml +0 -0
  929. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-project/project.conf +0 -0
  930. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-project/work_around.yml +0 -0
  931. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-toplevel-precedence/element.bst +0 -0
  932. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-toplevel-precedence/extra_conf.yml +0 -0
  933. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-toplevel-precedence/project.conf +0 -0
  934. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/conditional-conflicts-toplevel-precedence/work_around.yml +0 -0
  935. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/eventual_overrides/element.bst +0 -0
  936. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/eventual_overrides/extra_conf.yml +0 -0
  937. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/eventual_overrides/extra_conf2.yml +0 -0
  938. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/eventual_overrides/project.conf +0 -0
  939. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/file/element.bst +0 -0
  940. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/file/extra_conf.yml +0 -0
  941. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/file/project.conf +0 -0
  942. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/file_with_subproject/element.bst +0 -0
  943. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/file_with_subproject/extra_conf.yml +0 -0
  944. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/file_with_subproject/project.bst +0 -0
  945. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/file_with_subproject/project.conf +0 -0
  946. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/file_with_subproject/subproject/project.conf +0 -0
  947. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/full_path/elements/element.bst +0 -0
  948. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/full_path/elements/invalid.bst +0 -0
  949. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/full_path/elements/subproject.bst +0 -0
  950. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/full_path/project.conf +0 -0
  951. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/full_path/subproject/elements/subsubproject-junction.bst +0 -0
  952. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/full_path/subproject/files/hello.txt +0 -0
  953. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/full_path/subproject/project.conf +0 -0
  954. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/full_path/subproject/sub.yaml +0 -0
  955. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/full_path/subproject/subsubproject/project.conf +0 -0
  956. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/full_path/subproject/subsubproject/subsub.yaml +0 -0
  957. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/inner/element.bst +0 -0
  958. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/inner/extra_conf.yml +0 -0
  959. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/inner/project.conf +0 -0
  960. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction/element.bst +0 -0
  961. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction/project.conf +0 -0
  962. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction/subproject/extra_conf.yml +0 -0
  963. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction/subproject/project.conf +0 -0
  964. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options/element.bst +0 -0
  965. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options/project.conf +0 -0
  966. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options/subproject/extra_conf.yml +0 -0
  967. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options/subproject/project.conf +0 -0
  968. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options_deep/element.bst +0 -0
  969. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options_deep/project.conf +0 -0
  970. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options_deep/subproject-1/extra_conf.yml +0 -0
  971. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options_deep/subproject-1/project.conf +0 -0
  972. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options_deep/subproject-2/extra_conf.yml +0 -0
  973. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options_deep/subproject-2/project.conf +0 -0
  974. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options_element/element.bst +0 -0
  975. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options_element/project.conf +0 -0
  976. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options_element/subproject/extra_conf.yml +0 -0
  977. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/junction_options_element/subproject/project.conf +0 -0
  978. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/local_to_junction/element.bst +0 -0
  979. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/local_to_junction/project.conf +0 -0
  980. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/local_to_junction/subproject/extra_conf.yml +0 -0
  981. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/local_to_junction/subproject/internal.yml +0 -0
  982. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/local_to_junction/subproject/project.conf +0 -0
  983. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/options/element.bst +0 -0
  984. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/options/extra_conf.yml +0 -0
  985. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/options/project.conf +0 -0
  986. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/overrides/element.bst +0 -0
  987. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/overrides/extra_conf.yml +0 -0
  988. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/overrides/extra_conf2.yml +0 -0
  989. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/overrides/project.conf +0 -0
  990. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/overrides/subproject/project.conf +0 -0
  991. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/overrides-junction/element.bst +0 -0
  992. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/overrides-junction/project.conf +0 -0
  993. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/overrides-junction/subproject/extra_conf.yml +0 -0
  994. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/overrides-junction/subproject/project.conf +0 -0
  995. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/recursive/element.bst +0 -0
  996. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/recursive/extra_conf.yml +0 -0
  997. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/recursive/extra_conf2.yml +0 -0
  998. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/recursive/project.conf +0 -0
  999. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/string/element.bst +0 -0
  1000. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/string/extra_conf.yml +0 -0
  1001. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/string/project.conf +0 -0
  1002. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/sub-include/element.bst +0 -0
  1003. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/sub-include/manual_conf.yml +0 -0
  1004. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include/sub-include/project.conf +0 -0
  1005. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include.py +0 -0
  1006. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/include_composition.py +0 -0
  1007. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/invalid-keys/included-source.bst +0 -0
  1008. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/invalid-keys/no-path-specified.bst +0 -0
  1009. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/invalid-keys/optional-source.bst +0 -0
  1010. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/invalid-keys/project.conf +0 -0
  1011. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/invalid-keys/somesource.yaml +0 -0
  1012. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/invalid_keys.py +0 -0
  1013. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/link-subsubsubproject.bst +0 -0
  1014. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/project.conf +0 -0
  1015. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/project.conf +0 -0
  1016. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/sub.txt +0 -0
  1017. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/subsubproject/project.conf +0 -0
  1018. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/subsubproject/subsub.txt +0 -0
  1019. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/subsubproject/subsubsubproject/project.conf +0 -0
  1020. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/subsubproject/subsubsubproject/subsubsub.txt +0 -0
  1021. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/subsubproject/subsubsubproject/target.bst +0 -0
  1022. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/subsubproject/subsubsubproject.bst +0 -0
  1023. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/subsubproject/target.bst +0 -0
  1024. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/subsubproject.bst +0 -0
  1025. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject/target.bst +0 -0
  1026. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject-overriden-with-circular-reference-link.bst +0 -0
  1027. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject-overriden-with-circular-reference.bst +0 -0
  1028. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/subproject.bst +0 -0
  1029. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/target-overridden-subsubproject-circular-link.bst +0 -0
  1030. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/circular-references/target-overridden-subsubproject-circular.bst +0 -0
  1031. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/include-conflict-target.bst +0 -0
  1032. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/include-conflict.bst +0 -0
  1033. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/nested-conflict-toplevel.bst +0 -0
  1034. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/override-conflict.bst +0 -0
  1035. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/plugin-conflict.bst +0 -0
  1036. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/project.conf +0 -0
  1037. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/simple-conflict.bst +0 -0
  1038. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/project.conf +0 -0
  1039. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/sub.txt +0 -0
  1040. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject/project.conf +0 -0
  1041. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject/subsub.txt +0 -0
  1042. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject/subsubsubproject/project.conf +0 -0
  1043. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject/subsubsubproject/subsubsub.txt +0 -0
  1044. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject/subsubsubproject/target.bst +0 -0
  1045. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject/subsubsubproject.bst +0 -0
  1046. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject/target.bst +0 -0
  1047. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject-conflict/deepsurprise.txt +0 -0
  1048. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject-conflict/project.conf +0 -0
  1049. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject-conflict/target.bst +0 -0
  1050. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject-conflict-target.bst +0 -0
  1051. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject-conflict.bst +0 -0
  1052. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/subsubproject.bst +0 -0
  1053. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject/target.bst +0 -0
  1054. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject-override-conflicting-path.bst +0 -0
  1055. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject.bst +0 -0
  1056. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject2/inc.yaml +0 -0
  1057. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject2/plugins/found.py +0 -0
  1058. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject2/project.conf +0 -0
  1059. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject2/sub2.txt +0 -0
  1060. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject2/target.bst +0 -0
  1061. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/conflicts/subproject2.bst +0 -0
  1062. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/project.conf +0 -0
  1063. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject/project.conf +0 -0
  1064. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject/subproject1/project.conf +0 -0
  1065. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject/subproject1/sub.txt +0 -0
  1066. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject/subproject1/target.bst +0 -0
  1067. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject/subproject1.bst +0 -0
  1068. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject/subproject2/project.conf +0 -0
  1069. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject/subproject2/sub2.txt +0 -0
  1070. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject/subproject2/target.bst +0 -0
  1071. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject/subproject2.bst +0 -0
  1072. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject.bst +0 -0
  1073. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject3/project.conf +0 -0
  1074. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject3/sub3.txt +0 -0
  1075. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject3/target.bst +0 -0
  1076. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/subproject3.bst +0 -0
  1077. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested/target.bst +0 -0
  1078. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/project.conf +0 -0
  1079. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject/project.conf +0 -0
  1080. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject1/project.conf +0 -0
  1081. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject1/sub.txt +0 -0
  1082. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject1/target.bst +0 -0
  1083. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject1.bst +0 -0
  1084. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject2/project.conf +0 -0
  1085. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject2/sub2.txt +0 -0
  1086. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject2/target.bst +0 -0
  1087. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject/subproject2.bst +0 -0
  1088. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject.bst +0 -0
  1089. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject3/project.conf +0 -0
  1090. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject3/sub3.txt +0 -0
  1091. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject3/target.bst +0 -0
  1092. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/subproject3.bst +0 -0
  1093. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-full-path/target.bst +0 -0
  1094. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/project.conf +0 -0
  1095. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/project.conf +0 -0
  1096. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject1/project.conf +0 -0
  1097. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject1/sub.txt +0 -0
  1098. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject1/target.bst +0 -0
  1099. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject1.bst +0 -0
  1100. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject2/project.conf +0 -0
  1101. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject2/sub2.txt +0 -0
  1102. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject2/target.bst +0 -0
  1103. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject/subproject2.bst +0 -0
  1104. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject.bst +0 -0
  1105. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject3/project.conf +0 -0
  1106. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject3/sub3.txt +0 -0
  1107. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject3/target.bst +0 -0
  1108. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/subproject3.bst +0 -0
  1109. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-incomplete/target.bst +0 -0
  1110. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/project.conf +0 -0
  1111. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject/project.conf +0 -0
  1112. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject1/project.conf +0 -0
  1113. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject1/sub.txt +0 -0
  1114. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject1/target.bst +0 -0
  1115. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject1-link.bst +0 -0
  1116. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject1.bst +0 -0
  1117. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject2/project.conf +0 -0
  1118. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject2/sub2.txt +0 -0
  1119. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject2/target.bst +0 -0
  1120. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject/subproject2.bst +0 -0
  1121. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject.bst +0 -0
  1122. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject3/project.conf +0 -0
  1123. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject3/sub3.txt +0 -0
  1124. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject3/target.bst +0 -0
  1125. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/subproject3.bst +0 -0
  1126. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link1/target.bst +0 -0
  1127. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/project.conf +0 -0
  1128. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject/project.conf +0 -0
  1129. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject1/project.conf +0 -0
  1130. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject1/sub.txt +0 -0
  1131. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject1/target.bst +0 -0
  1132. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject1.bst +0 -0
  1133. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject2/project.conf +0 -0
  1134. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject2/sub2.txt +0 -0
  1135. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject2/target.bst +0 -0
  1136. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject/subproject2.bst +0 -0
  1137. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject.bst +0 -0
  1138. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject2-link.bst +0 -0
  1139. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject3/project.conf +0 -0
  1140. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject3/sub3.txt +0 -0
  1141. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject3/target.bst +0 -0
  1142. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/subproject3.bst +0 -0
  1143. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-link2/target.bst +0 -0
  1144. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/project.conf +0 -0
  1145. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject/project.conf +0 -0
  1146. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject1/project.conf +0 -0
  1147. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject1/sub.txt +0 -0
  1148. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject1/target.bst +0 -0
  1149. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject1-link.bst +0 -0
  1150. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject1.bst +0 -0
  1151. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject2/project.conf +0 -0
  1152. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject2/sub2.txt +0 -0
  1153. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject2/target.bst +0 -0
  1154. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject/subproject2.bst +0 -0
  1155. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject.bst +0 -0
  1156. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject3/project.conf +0 -0
  1157. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject3/sub3.txt +0 -0
  1158. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject3/target.bst +0 -0
  1159. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/subproject3.bst +0 -0
  1160. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-nested-not-found/target.bst +0 -0
  1161. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/project.conf +0 -0
  1162. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject/project.conf +0 -0
  1163. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject1/project.conf +0 -0
  1164. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject1/sub.txt +0 -0
  1165. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject1/target.bst +0 -0
  1166. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject1.bst +0 -0
  1167. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject2/project.conf +0 -0
  1168. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject2/sub2.txt +0 -0
  1169. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject2/target.bst +0 -0
  1170. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject/subproject2.bst +0 -0
  1171. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject.bst +0 -0
  1172. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject3/project.conf +0 -0
  1173. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject3/sub3.txt +0 -0
  1174. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject3/target.bst +0 -0
  1175. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/subproject3.bst +0 -0
  1176. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-dup/target.bst +0 -0
  1177. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/duplicate/duplicate.txt +0 -0
  1178. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/duplicate/project.conf +0 -0
  1179. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/duplicate/target.bst +0 -0
  1180. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/duplicate.bst +0 -0
  1181. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/override/overridden-again.txt +0 -0
  1182. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/override/project.conf +0 -0
  1183. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/override/target.bst +0 -0
  1184. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/override.bst +0 -0
  1185. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/project.conf +0 -0
  1186. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/override/overridden.txt +0 -0
  1187. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/override/project.conf +0 -0
  1188. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/override/target.bst +0 -0
  1189. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/override.bst +0 -0
  1190. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/project.conf +0 -0
  1191. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject/project.conf +0 -0
  1192. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject/subsubsubproject/original.txt +0 -0
  1193. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject/subsubsubproject/project.conf +0 -0
  1194. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject/subsubsubproject/target.bst +0 -0
  1195. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject/subsubsubproject.bst +0 -0
  1196. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubproject.bst +0 -0
  1197. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject/subsubsubproject-link.bst +0 -0
  1198. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/subproject.bst +0 -0
  1199. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-override-twice-link/target.bst +0 -0
  1200. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple/project.conf +0 -0
  1201. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple/subproject1/project.conf +0 -0
  1202. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple/subproject1/sub.txt +0 -0
  1203. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple/subproject1/target.bst +0 -0
  1204. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple/subproject1.bst +0 -0
  1205. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple/subproject2/project.conf +0 -0
  1206. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple/subproject2/sub2.txt +0 -0
  1207. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple/subproject2/target.bst +0 -0
  1208. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple/subproject2.bst +0 -0
  1209. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple/target.bst +0 -0
  1210. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-incomplete/project.conf +0 -0
  1211. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-incomplete/subproject1/project.conf +0 -0
  1212. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-incomplete/subproject1/sub.txt +0 -0
  1213. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-incomplete/subproject1/target.bst +0 -0
  1214. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-incomplete/subproject1.bst +0 -0
  1215. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-incomplete/subproject2/project.conf +0 -0
  1216. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-incomplete/subproject2/sub2.txt +0 -0
  1217. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-incomplete/subproject2/target.bst +0 -0
  1218. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-incomplete/subproject2.bst +0 -0
  1219. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-incomplete/target.bst +0 -0
  1220. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/project.conf +0 -0
  1221. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/subproject1/project.conf +0 -0
  1222. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/subproject1/sub.txt +0 -0
  1223. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/subproject1/target.bst +0 -0
  1224. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/subproject1.bst +0 -0
  1225. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/subproject2/project.conf +0 -0
  1226. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/subproject2/sub2.txt +0 -0
  1227. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/subproject2/target.bst +0 -0
  1228. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/subproject2-link.bst +0 -0
  1229. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/subproject2.bst +0 -0
  1230. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-link/target.bst +0 -0
  1231. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-not-found/project.conf +0 -0
  1232. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-not-found/subproject1/project.conf +0 -0
  1233. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-not-found/subproject1/sub.txt +0 -0
  1234. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-not-found/subproject1/target.bst +0 -0
  1235. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-not-found/subproject1.bst +0 -0
  1236. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-not-found/subproject2/project.conf +0 -0
  1237. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-not-found/subproject2/sub2.txt +0 -0
  1238. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-not-found/subproject2/target.bst +0 -0
  1239. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-not-found/subproject2.bst +0 -0
  1240. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/duplicates-simple-not-found/target.bst +0 -0
  1241. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/element-full-path-notfound.bst +0 -0
  1242. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/element-full-path.bst +0 -0
  1243. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/junction-full-path-notfound.bst +0 -0
  1244. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/junction-full-path.bst +0 -0
  1245. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/project.conf +0 -0
  1246. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/project.conf +0 -0
  1247. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/sub.txt +0 -0
  1248. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/subsubproject/project.conf +0 -0
  1249. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/subsubproject/subsub.txt +0 -0
  1250. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/subsubproject/subsubsubproject/project.conf +0 -0
  1251. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/subsubproject/subsubsubproject/subsubsub.txt +0 -0
  1252. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/subsubproject/subsubsubproject/target.bst +0 -0
  1253. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/subsubproject/subsubsubproject.bst +0 -0
  1254. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/subsubproject/target.bst +0 -0
  1255. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/subsubproject.bst +0 -0
  1256. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject/target.bst +0 -0
  1257. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/full-path/subproject.bst +0 -0
  1258. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-complex/project.conf +0 -0
  1259. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-complex/subproject/include.yml +0 -0
  1260. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-complex/subproject/project.conf +0 -0
  1261. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-complex/subproject/target.bst +0 -0
  1262. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-complex/subproject.bst +0 -0
  1263. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-complex/target.bst +0 -0
  1264. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-vars/project.conf +0 -0
  1265. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-vars/subproject/include.yml +0 -0
  1266. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-vars/subproject/project.conf +0 -0
  1267. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-vars/subproject.bst +0 -0
  1268. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-vars/target.bst +0 -0
  1269. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-vars-optional/project.conf +0 -0
  1270. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-vars-optional/subproject/include.yml +0 -0
  1271. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-vars-optional/subproject/project.conf +0 -0
  1272. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-vars-optional/subproject.bst +0 -0
  1273. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/include-vars-optional/target.bst +0 -0
  1274. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/project.conf +0 -0
  1275. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subproject/project.conf +0 -0
  1276. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subproject/subsubproject/project.conf +0 -0
  1277. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subproject/subsubproject/subsub.txt +0 -0
  1278. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subproject/subsubproject/target.bst +0 -0
  1279. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subproject/subsubproject.bst +0 -0
  1280. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subproject/subtarget.bst +0 -0
  1281. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subproject.bst +0 -0
  1282. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subsubproject-again/project.conf +0 -0
  1283. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subsubproject-again/subsub-again.txt +0 -0
  1284. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subsubproject-again/target.bst +0 -0
  1285. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subsubproject-again.bst +0 -0
  1286. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subsubproject-conflict/project.conf +0 -0
  1287. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subsubproject-conflict/subsub-again.txt +0 -0
  1288. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subsubproject-conflict/target.bst +0 -0
  1289. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/subsubproject-conflict.bst +0 -0
  1290. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-and-conflict/target.bst +0 -0
  1291. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/project.conf +0 -0
  1292. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject1/project.conf +0 -0
  1293. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject1/subsubproject/project.conf +0 -0
  1294. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject1/subsubproject/subsub1.txt +0 -0
  1295. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject1/subsubproject/target.bst +0 -0
  1296. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject1/subsubproject.bst +0 -0
  1297. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject1/subtarget.bst +0 -0
  1298. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject1.bst +0 -0
  1299. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject2/project.conf +0 -0
  1300. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject2/subsubproject/project.conf +0 -0
  1301. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject2/subsubproject/subsub2.txt +0 -0
  1302. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject2/subsubproject/target.bst +0 -0
  1303. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject2/subsubproject.bst +0 -0
  1304. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject2/subtarget.bst +0 -0
  1305. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subproject2.bst +0 -0
  1306. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subsubproject-again/project.conf +0 -0
  1307. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subsubproject-again/subsub-again.txt +0 -0
  1308. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subsubproject-again/target.bst +0 -0
  1309. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/subsubproject-again.bst +0 -0
  1310. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-double/target.bst +0 -0
  1311. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/project.conf +0 -0
  1312. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subproject/project.conf +0 -0
  1313. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subproject/subsubproject/project.conf +0 -0
  1314. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subproject/subsubproject/subsub.txt +0 -0
  1315. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subproject/subsubproject/target.bst +0 -0
  1316. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subproject/subsubproject-link.bst +0 -0
  1317. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subproject/subsubproject.bst +0 -0
  1318. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subproject/subtarget.bst +0 -0
  1319. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subproject.bst +0 -0
  1320. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subsubproject-again/project.conf +0 -0
  1321. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subsubproject-again/subsub-again.txt +0 -0
  1322. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subsubproject-again/target.bst +0 -0
  1323. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/subsubproject-again.bst +0 -0
  1324. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-link/target.bst +0 -0
  1325. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/project.conf +0 -0
  1326. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subproject/project.conf +0 -0
  1327. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subproject/subsubproject/project.conf +0 -0
  1328. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subproject/subsubproject/subsub.txt +0 -0
  1329. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subproject/subsubproject/target.bst +0 -0
  1330. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subproject/subsubproject.bst +0 -0
  1331. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subproject/subtarget.bst +0 -0
  1332. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subproject.bst +0 -0
  1333. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subsubproject-again/project.conf +0 -0
  1334. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subsubproject-again/subsub-again.txt +0 -0
  1335. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subsubproject-again/target.bst +0 -0
  1336. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subsubproject-again.bst +0 -0
  1337. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subsubproject-override/project.conf +0 -0
  1338. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subsubproject-override/subsub-override.txt +0 -0
  1339. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subsubproject-override/target.bst +0 -0
  1340. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/subsubproject-override.bst +0 -0
  1341. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-override/target.bst +0 -0
  1342. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/project.conf +0 -0
  1343. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subproject/project.conf +0 -0
  1344. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subproject/subsubproject/project.conf +0 -0
  1345. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subproject/subsubproject/subsub.txt +0 -0
  1346. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subproject/subsubproject/target.bst +0 -0
  1347. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subproject/subsubproject.bst +0 -0
  1348. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subproject/subtarget.bst +0 -0
  1349. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subproject.bst +0 -0
  1350. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subsubproject-again/project.conf +0 -0
  1351. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subsubproject-again/subsub-again.txt +0 -0
  1352. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subsubproject-again/target.bst +0 -0
  1353. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/subsubproject-again.bst +0 -0
  1354. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/internal-simple/target.bst +0 -0
  1355. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/app.bst +0 -0
  1356. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/base/base.txt +0 -0
  1357. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/base/project.conf +0 -0
  1358. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/base/target.bst +0 -0
  1359. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/base-with-deps.bst +0 -0
  1360. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/base.bst +0 -0
  1361. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/foo.txt +0 -0
  1362. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/junction-dep.bst +0 -0
  1363. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/junction-with-deps.bst +0 -0
  1364. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/junctiondep-not-a-junction.bst +0 -0
  1365. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/project.conf +0 -0
  1366. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/subproject-self-override.bst +0 -0
  1367. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/invalid/target-self-override.bst +0 -0
  1368. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/bad-junction.bst +0 -0
  1369. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/junction-A.bst +0 -0
  1370. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/junctionA/bad-junction-target.bst +0 -0
  1371. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/junctionA/junction-B.bst +0 -0
  1372. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/junctionA/junctionB/project.conf +0 -0
  1373. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/junctionA/project.conf +0 -0
  1374. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/junctionA/target.bst +0 -0
  1375. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/project.conf +0 -0
  1376. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/sub-target-bad-junction.bst +0 -0
  1377. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/sub-target.bst +0 -0
  1378. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/missing-element/target.bst +0 -0
  1379. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/deeptarget.bst +0 -0
  1380. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/project.conf +0 -0
  1381. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/project.conf +0 -0
  1382. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/sub.txt +0 -0
  1383. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subsubproject/project.conf +0 -0
  1384. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subsubproject/subsub.txt +0 -0
  1385. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subsubproject/subsubsubproject/project.conf +0 -0
  1386. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subsubproject/subsubsubproject/subsubsub.txt +0 -0
  1387. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subsubproject/subsubsubproject/target.bst +0 -0
  1388. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subsubproject/subsubsubproject.bst +0 -0
  1389. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subsubproject/subtarget.bst +0 -0
  1390. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subsubproject/target.bst +0 -0
  1391. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subsubproject.bst +0 -0
  1392. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subsubtarget.bst +0 -0
  1393. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/subtarget.bst +0 -0
  1394. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject/target.bst +0 -0
  1395. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/subproject.bst +0 -0
  1396. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested/target.bst +0 -0
  1397. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/project.conf +0 -0
  1398. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/subproject/project.conf +0 -0
  1399. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/subproject/sub.txt +0 -0
  1400. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/subproject/subsubproject/include.yml +0 -0
  1401. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/subproject/subsubproject/project.conf +0 -0
  1402. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/subproject/subsubproject/subsub.txt +0 -0
  1403. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/subproject/subsubproject/target.bst +0 -0
  1404. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/subproject/subsubproject.bst +0 -0
  1405. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/subproject/subtarget.bst +0 -0
  1406. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/subproject/target.bst +0 -0
  1407. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/subproject.bst +0 -0
  1408. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/nested-include/target.bst +0 -0
  1409. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/base-default.bst +0 -0
  1410. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/base-explicit.bst +0 -0
  1411. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/base-propagate.bst +0 -0
  1412. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/options-base/horsy.txt +0 -0
  1413. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/options-base/pony.txt +0 -0
  1414. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/options-base/project.conf +0 -0
  1415. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/options-base/target.bst +0 -0
  1416. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/project.conf +0 -0
  1417. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/target-default.bst +0 -0
  1418. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/target-explicit.bst +0 -0
  1419. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/options/target-propagate.bst +0 -0
  1420. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/element.txt +0 -0
  1421. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/override-subproject-dep.bst +0 -0
  1422. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/override-subproject-element-using-link.bst +0 -0
  1423. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/override-subproject-element-with-link.bst +0 -0
  1424. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/override-subproject-element.bst +0 -0
  1425. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/override-subsubproject.bst +0 -0
  1426. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/project.conf +0 -0
  1427. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subdep-override.bst +0 -0
  1428. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subdep-override.txt +0 -0
  1429. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subelement-alternative-link.bst +0 -0
  1430. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subelement-override.bst +0 -0
  1431. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subelement-override.txt +0 -0
  1432. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/project.conf +0 -0
  1433. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/sub-alternative.txt +0 -0
  1434. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/sub.txt +0 -0
  1435. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subdep.txt +0 -0
  1436. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subdependency.bst +0 -0
  1437. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subelement-alternative.bst +0 -0
  1438. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subelement-link.bst +0 -0
  1439. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subelement.bst +0 -0
  1440. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subsubdep-override.bst +0 -0
  1441. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subsubdep-override.txt +0 -0
  1442. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subsubproject/project.conf +0 -0
  1443. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subsubproject/subsub.txt +0 -0
  1444. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subsubproject/subsubdep.txt +0 -0
  1445. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subsubproject/subsubdependency.bst +0 -0
  1446. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subsubproject/subsubelement.bst +0 -0
  1447. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject/subsubproject-override-dep.bst +0 -0
  1448. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject-override-dep.bst +0 -0
  1449. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject-override-element-using-link.bst +0 -0
  1450. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject-override-element-with-link.bst +0 -0
  1451. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject-override-element.bst +0 -0
  1452. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-element/subproject-override-subsubproject-element.bst +0 -0
  1453. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-self/alternative.bst +0 -0
  1454. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-self/project.conf +0 -0
  1455. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-self/self-junction.bst +0 -0
  1456. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-self/target.bst +0 -0
  1457. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/override/overridden-again.txt +0 -0
  1458. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/override/project.conf +0 -0
  1459. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/override/target.bst +0 -0
  1460. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/override.bst +0 -0
  1461. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/project.conf +0 -0
  1462. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/override/overridden.txt +0 -0
  1463. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/override/project.conf +0 -0
  1464. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/override/target.bst +0 -0
  1465. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/override.bst +0 -0
  1466. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/project.conf +0 -0
  1467. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/subsubproject/project.conf +0 -0
  1468. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/subsubproject/subsubsubproject/original.txt +0 -0
  1469. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/subsubproject/subsubsubproject/project.conf +0 -0
  1470. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/subsubproject/subsubsubproject/target.bst +0 -0
  1471. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/subsubproject/subsubsubproject.bst +0 -0
  1472. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject/subsubproject.bst +0 -0
  1473. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/subproject.bst +0 -0
  1474. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/override-twice/target.bst +0 -0
  1475. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/overridden-subsubproject.bst +0 -0
  1476. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/overridden-subsubsubproject.bst +0 -0
  1477. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/project.conf +0 -0
  1478. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/project.conf +0 -0
  1479. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/sub.txt +0 -0
  1480. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubproject/project.conf +0 -0
  1481. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubproject/subsub.txt +0 -0
  1482. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubproject/subsubsubproject/project.conf +0 -0
  1483. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubproject/subsubsubproject/subsubsub.txt +0 -0
  1484. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubproject/subsubsubproject/target.bst +0 -0
  1485. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubproject/subsubsubproject-link.bst +0 -0
  1486. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubproject/subsubsubproject.bst +0 -0
  1487. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubproject/target.bst +0 -0
  1488. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubproject-link.bst +0 -0
  1489. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubproject.bst +0 -0
  1490. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/subsubsubproject-indirect-link.bst +0 -0
  1491. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject/target.bst +0 -0
  1492. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject-overriden-with-deep-subproject.bst +0 -0
  1493. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject-with-deep-override-indirect-link.bst +0 -0
  1494. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject-with-deep-override-link.bst +0 -0
  1495. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject-with-deep-override.bst +0 -0
  1496. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject-with-overridden-link.bst +0 -0
  1497. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject-with-override.bst +0 -0
  1498. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/subproject.bst +0 -0
  1499. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/surpriseproject/deepsurpriseproject/deepsurprise.txt +0 -0
  1500. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/surpriseproject/deepsurpriseproject/project.conf +0 -0
  1501. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/surpriseproject/deepsurpriseproject/target.bst +0 -0
  1502. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/surpriseproject/deepsurpriseproject.bst +0 -0
  1503. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/surpriseproject/project.conf +0 -0
  1504. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/surpriseproject/surprise.txt +0 -0
  1505. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/surpriseproject/target.bst +0 -0
  1506. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/surpriseproject.bst +0 -0
  1507. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/target-overridden-subsubproject-link.bst +0 -0
  1508. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/target-overridden-subsubproject.bst +0 -0
  1509. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/target-overridden-subsubsubproject-indirect-link.bst +0 -0
  1510. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/target-overridden-subsubsubproject-link.bst +0 -0
  1511. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/target-overridden-subsubsubproject.bst +0 -0
  1512. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/overrides/target-overridden-with-deepsubproject.bst +0 -0
  1513. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/simple/project.conf +0 -0
  1514. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/simple/subproject/base.txt +0 -0
  1515. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/simple/subproject/project.conf +0 -0
  1516. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/simple/subproject/target.bst +0 -0
  1517. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/simple/subproject.bst +0 -0
  1518. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/simple/target.bst +0 -0
  1519. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/use-repo/baserepo/base.txt +0 -0
  1520. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/use-repo/baserepo/project.conf +0 -0
  1521. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/use-repo/baserepo/target.bst +0 -0
  1522. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/use-repo/project.conf +0 -0
  1523. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions/use-repo/target.bst +0 -0
  1524. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/junctions.py +0 -0
  1525. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional/elements/goodbye.bst +0 -0
  1526. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional/elements/hello.bst +0 -0
  1527. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional/elements/target-link.bst +0 -0
  1528. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional/elements/target.bst +0 -0
  1529. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional/files/goodbye.txt +0 -0
  1530. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional/files/hello.txt +0 -0
  1531. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional/project.conf +0 -0
  1532. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/elements/subproject.bst +0 -0
  1533. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/elements/subsubproject-link.bst +0 -0
  1534. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/elements/target.bst +0 -0
  1535. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/project.conf +0 -0
  1536. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/subproject/elements/hello.bst +0 -0
  1537. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/subproject/elements/subsubproject-goodbye-junction.bst +0 -0
  1538. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/subproject/elements/subsubproject-hello-junction.bst +0 -0
  1539. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/subproject/project.conf +0 -0
  1540. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/subproject/subsubproject-goodbye/elements/target.bst +0 -0
  1541. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/subproject/subsubproject-goodbye/files/goodbye.txt +0 -0
  1542. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/subproject/subsubproject-goodbye/project.conf +0 -0
  1543. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/subproject/subsubproject-hello/elements/target.bst +0 -0
  1544. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/subproject/subsubproject-hello/files/hello.txt +0 -0
  1545. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/conditional-junctions/subproject/subsubproject-hello/project.conf +0 -0
  1546. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/project.conf +0 -0
  1547. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject/project.conf +0 -0
  1548. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject/sub.txt +0 -0
  1549. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject/file.yml +0 -0
  1550. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject/project.conf +0 -0
  1551. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject/subsub.txt +0 -0
  1552. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject/subtarget.bst +0 -0
  1553. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject/target.bst +0 -0
  1554. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject/subsubproject.bst +0 -0
  1555. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject/subtarget.bst +0 -0
  1556. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject/target.bst +0 -0
  1557. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subproject.bst +0 -0
  1558. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/subsubproject.bst +0 -0
  1559. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/cross-link-junction-include/target.bst +0 -0
  1560. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/invalid/elements/base-file.bst +0 -0
  1561. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/invalid/elements/link-with-dependencies.bst +0 -0
  1562. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/invalid/elements/link-with-sources.bst +0 -0
  1563. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/invalid/elements/target-link-with-sources.bst +0 -0
  1564. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/invalid/project.conf +0 -0
  1565. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/depends-on-link-target.bst +0 -0
  1566. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/link-full-path.bst +0 -0
  1567. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/link-target.bst +0 -0
  1568. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/linked-local-junction-target.bst +0 -0
  1569. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/linked-local-junction.bst +0 -0
  1570. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/linked-nested-junction-target.bst +0 -0
  1571. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/linked-nested-junction.bst +0 -0
  1572. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/subproject-link-notfound.bst +0 -0
  1573. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/subproject-link.bst +0 -0
  1574. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/subproject.bst +0 -0
  1575. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/subsubproject-link-notfound.bst +0 -0
  1576. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/subsubproject-link.bst +0 -0
  1577. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/elements/target-full-path.bst +0 -0
  1578. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/project.conf +0 -0
  1579. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/subproject/elements/subsubproject-junction.bst +0 -0
  1580. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/subproject/project.conf +0 -0
  1581. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/notfound/subproject/subsubproject/project.conf +0 -0
  1582. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple/elements/hello-link.bst +0 -0
  1583. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple/elements/hello.bst +0 -0
  1584. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple/elements/target.bst +0 -0
  1585. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple/files/hello.txt +0 -0
  1586. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple/project.conf +0 -0
  1587. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/elements/full-path-link.bst +0 -0
  1588. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/elements/subproject-link.bst +0 -0
  1589. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/elements/subproject.bst +0 -0
  1590. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/elements/subsubproject-link.bst +0 -0
  1591. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/elements/target-full-path.bst +0 -0
  1592. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/elements/target-local.bst +0 -0
  1593. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/elements/target-nested.bst +0 -0
  1594. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/project.conf +0 -0
  1595. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/subproject/elements/hello.bst +0 -0
  1596. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/subproject/elements/subsubproject-junction.bst +0 -0
  1597. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/subproject/files/hello.txt +0 -0
  1598. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/subproject/project.conf +0 -0
  1599. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/subproject/subsubproject/elements/hello.bst +0 -0
  1600. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/subproject/subsubproject/files/hello.txt +0 -0
  1601. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link/simple-junctions/subproject/subsubproject/project.conf +0 -0
  1602. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/link.py +0 -0
  1603. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/list-directive-error-element/config.bst +0 -0
  1604. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/list-directive-error-element/environment.bst +0 -0
  1605. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/list-directive-error-element/project.conf +0 -0
  1606. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/list-directive-error-element/public.bst +0 -0
  1607. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/list-directive-error-element/variables.bst +0 -0
  1608. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/list-directive-error-project/element.bst +0 -0
  1609. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/list-directive-error-project/project.conf +0 -0
  1610. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/list-directive-type-error/element.bst +0 -0
  1611. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/list-directive-type-error/project.conf +0 -0
  1612. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/listdirectiveerrors.py +0 -0
  1613. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-arch/element.bst +0 -0
  1614. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-arch/project.conf +0 -0
  1615. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-arch-alias/element.bst +0 -0
  1616. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-arch-alias/project.conf +0 -0
  1617. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-arch-unknown/element.bst +0 -0
  1618. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-arch-unknown/project.conf +0 -0
  1619. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-bool/element-equals.bst +0 -0
  1620. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-bool/element-not-equals.bst +0 -0
  1621. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-bool/element-not.bst +0 -0
  1622. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-bool/element.bst +0 -0
  1623. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-bool/project.conf +0 -0
  1624. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-element-mask/giraffy.bst +0 -0
  1625. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-element-mask/horsy.bst +0 -0
  1626. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-element-mask/pony.bst +0 -0
  1627. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-element-mask/project.conf +0 -0
  1628. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-element-mask/zebry.bst +0 -0
  1629. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-element-mask-invalid/pony.bst +0 -0
  1630. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-element-mask-invalid/project.conf +0 -0
  1631. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-element-override/element.bst +0 -0
  1632. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-element-override/project.conf +0 -0
  1633. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-enum/element-compare.bst +0 -0
  1634. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-enum/element.bst +0 -0
  1635. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-enum/project.conf +0 -0
  1636. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-enum-missing/element.bst +0 -0
  1637. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-enum-missing/project.conf +0 -0
  1638. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-exports/element.bst +0 -0
  1639. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-exports/plugins/config.py +0 -0
  1640. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-exports/project.conf +0 -0
  1641. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-flags/element-in.bst +0 -0
  1642. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-flags/element.bst +0 -0
  1643. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-flags/project.conf +0 -0
  1644. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-flags-missing/element.bst +0 -0
  1645. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-flags-missing/project.conf +0 -0
  1646. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-list-directive/project.conf +0 -0
  1647. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-list-directive.py +0 -0
  1648. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-os/element.bst +0 -0
  1649. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-os/project.conf +0 -0
  1650. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-overrides/element.bst +0 -0
  1651. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-overrides/project.conf +0 -0
  1652. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-project-root/element.bst +0 -0
  1653. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-project-root/project.conf +0 -0
  1654. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-restricted-name/element.bst +0 -0
  1655. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-restricted-name/project.conf +0 -0
  1656. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-restricted-options/element.bst +0 -0
  1657. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/option-restricted-options/project.conf +0 -0
  1658. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/optionarch.py +0 -0
  1659. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/optionbool.py +0 -0
  1660. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/optioneltmask.py +0 -0
  1661. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/optionenum.py +0 -0
  1662. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/optionexports.py +0 -0
  1663. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/optionflags.py +0 -0
  1664. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/optionos.py +0 -0
  1665. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/optionoverrides.py +0 -0
  1666. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/optionprojectroot.py +0 -0
  1667. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/compound-and-condition/element.bst +0 -0
  1668. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/compound-and-condition/project.conf +0 -0
  1669. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/compound-or-condition/element.bst +0 -0
  1670. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/compound-or-condition/project.conf +0 -0
  1671. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/deep-nesting/element-deeper.bst +0 -0
  1672. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/deep-nesting/element.bst +0 -0
  1673. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/deep-nesting/project.conf +0 -0
  1674. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-condition/element.bst +0 -0
  1675. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-condition/project.conf +0 -0
  1676. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-expression/element.bst +0 -0
  1677. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-expression/project.conf +0 -0
  1678. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-name-dashes/element.bst +0 -0
  1679. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-name-dashes/project.conf +0 -0
  1680. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-name-leading-number/element.bst +0 -0
  1681. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-name-leading-number/project.conf +0 -0
  1682. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-name-plus/element.bst +0 -0
  1683. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-name-plus/project.conf +0 -0
  1684. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-name-spaces/element.bst +0 -0
  1685. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-name-spaces/project.conf +0 -0
  1686. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-type/element.bst +0 -0
  1687. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-type/project.conf +0 -0
  1688. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-variable-name-plus/element.bst +0 -0
  1689. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-variable-name-plus/project.conf +0 -0
  1690. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-variable-name-spaces/element.bst +0 -0
  1691. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/invalid-variable-name-spaces/project.conf +0 -0
  1692. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/nested-condition/element.bst +0 -0
  1693. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/nested-condition/project.conf +0 -0
  1694. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/simple-condition/element.bst +0 -0
  1695. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/simple-condition/project.conf +0 -0
  1696. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/undefined-variable/element.bst +0 -0
  1697. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options/undefined-variable/project.conf +0 -0
  1698. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/options.py +0 -0
  1699. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/default/manual.bst +0 -0
  1700. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/default/project.conf +0 -0
  1701. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/duplicate-plugins/bar/__init__.py +0 -0
  1702. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/duplicate-plugins/bar/foo.py +0 -0
  1703. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/duplicate-plugins/bar/frob.py +0 -0
  1704. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/duplicate-plugins/baz/__init__.py +0 -0
  1705. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/duplicate-plugins/baz/foo.py +0 -0
  1706. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/duplicate-plugins/baz/frob.py +0 -0
  1707. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/duplicate-plugins/element.bst +0 -0
  1708. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/duplicate-plugins/project.conf +0 -0
  1709. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/element-path/project.conf +0 -0
  1710. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/empty-depends/manual.bst +0 -0
  1711. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/empty-depends/project.conf +0 -0
  1712. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/emptyname/project.conf +0 -0
  1713. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/invalid-yaml/manual.bst +0 -0
  1714. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/invalid-yaml/project.conf +0 -0
  1715. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/invalidname/project.conf +0 -0
  1716. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/local-plugin/project.conf +0 -0
  1717. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/missing-element/manual.bst +0 -0
  1718. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/missing-element/project.conf +0 -0
  1719. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/missing-junction/manual.bst +0 -0
  1720. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/missing-junction/project.conf +0 -0
  1721. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/missingname/project.conf +0 -0
  1722. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/overridepath/manual.bst +0 -0
  1723. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/overridepath/project.conf +0 -0
  1724. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/plugin-no-load-ref/noloadref.bst +0 -0
  1725. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/plugin-no-load-ref/plugins/noloadref.py +0 -0
  1726. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/plugin-no-load-ref/project.refs +0 -0
  1727. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/plugin-preflight-error/error.bst +0 -0
  1728. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/plugin-preflight-error/errorplugin/__init__.py +0 -0
  1729. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/plugin-preflight-error/errorplugin/preflighterror.py +0 -0
  1730. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/plugin-preflight-error/project.conf +0 -0
  1731. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/project-from-subdir/manual.bst +0 -0
  1732. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/project-from-subdir/project.conf +0 -0
  1733. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/project-from-subdir/subdirectory/README +0 -0
  1734. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/project-refs-gap/file +0 -0
  1735. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/project-refs-gap/target.bst +0 -0
  1736. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/refs-options/project.conf +0 -0
  1737. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/refs-options/project.refs +0 -0
  1738. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/refs-options/target.bst +0 -0
  1739. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project/unsupported/project.conf +0 -0
  1740. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project-overrides/prepend-configure-commands/element.bst +0 -0
  1741. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project-overrides/prepend-configure-commands/project.conf +0 -0
  1742. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/project.py +0 -0
  1743. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/projectoverrides.py +0 -0
  1744. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/stack/elements/build-only-stack.bst +0 -0
  1745. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/stack/elements/dependency.bst +0 -0
  1746. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/stack/elements/runtime-only-stack.bst +0 -0
  1747. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/stack/project.conf +0 -0
  1748. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/stack.py +0 -0
  1749. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/substitutions.py +0 -0
  1750. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/userconfig.py +0 -0
  1751. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/cyclic_variables/cyclic.bst +0 -0
  1752. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/cyclic_variables/indirect-cyclic.bst +0 -0
  1753. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/cyclic_variables/project.conf +0 -0
  1754. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/cyclic_variables/self-reference.bst +0 -0
  1755. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/cyclic_variables/simple-cyclic.bst +0 -0
  1756. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/defaults/autotools.bst +0 -0
  1757. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/defaults/project.conf +0 -0
  1758. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/missing_variables/manual.bst +0 -0
  1759. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/missing_variables/manual2.bst +0 -0
  1760. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/missing_variables/manual3.bst +0 -0
  1761. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/missing_variables/project.conf +0 -0
  1762. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/notparallel/notparallel.bst +0 -0
  1763. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/notparallel/parallel.bst +0 -0
  1764. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/notparallel/plugins/custom.py +0 -0
  1765. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/notparallel/plugins/custom.yaml +0 -0
  1766. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/notparallel/project.conf +0 -0
  1767. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/overrides/autotools.bst +0 -0
  1768. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/overrides/project.conf +0 -0
  1769. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/partial_context/base/project.conf +0 -0
  1770. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/partial_context/base/vars.yml +0 -0
  1771. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/partial_context/base.bst +0 -0
  1772. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/partial_context/project.conf +0 -0
  1773. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/partial_context/test.bst +0 -0
  1774. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/protected-vars/foo.txt +0 -0
  1775. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/protected-vars/project.conf +0 -0
  1776. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/public_data_variables/project.conf +0 -0
  1777. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/public_data_variables/public.bst +0 -0
  1778. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/public_data_variables/public_unresolved.bst +0 -0
  1779. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/shared_variables/one.bst +0 -0
  1780. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/shared_variables/project.conf +0 -0
  1781. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/shared_variables/shared.yml +0 -0
  1782. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables/shared_variables/two.bst +0 -0
  1783. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/format/variables.py +0 -0
  1784. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/__init__.py +0 -0
  1785. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_checkout.py +0 -0
  1786. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_delete.py +0 -0
  1787. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_list_contents/elements/import-bin.bst +0 -0
  1788. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_list_contents/elements/import-links.bst +0 -0
  1789. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_list_contents/elements/target.bst +0 -0
  1790. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_list_contents/files/bin-files/usr/bin/hello +0 -0
  1791. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_list_contents/files/files-and-links/basicfile +0 -0
  1792. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_list_contents/files/files-and-links/basicfolder/subdir-file +0 -0
  1793. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_list_contents/project.conf +0 -0
  1794. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_list_contents.py +0 -0
  1795. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_log.py +0 -0
  1796. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_pull.py +0 -0
  1797. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/artifact_show.py +0 -0
  1798. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/buildcheckout.py +0 -0
  1799. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/no-element-path/compose-all.bst +0 -0
  1800. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/no-element-path/compose-exclude-dev.bst +0 -0
  1801. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/no-element-path/compose-include-bin.bst +0 -0
  1802. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/no-element-path/files/bin-files/usr/bin/hello +0 -0
  1803. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/no-element-path/files/dev-files/usr/include/pony.h +0 -0
  1804. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/no-element-path/import-bin.bst +0 -0
  1805. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/no-element-path/import-dev.bst +0 -0
  1806. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/no-element-path/project.conf +0 -0
  1807. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/no-element-path/target.bst +0 -0
  1808. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/project/elements/compose-all.bst +0 -0
  1809. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/project/elements/compose-exclude-dev.bst +0 -0
  1810. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/project/elements/compose-include-bin.bst +0 -0
  1811. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/project/elements/import-bin.bst +0 -0
  1812. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/project/elements/import-dev.bst +0 -0
  1813. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/project/elements/target.bst +0 -0
  1814. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/project/files/bin-files/usr/bin/hello +0 -0
  1815. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/project/files/dev-files/usr/include/pony.h +0 -0
  1816. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/project/project.conf +0 -0
  1817. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/sub-folders/base/unwanted.bst +0 -0
  1818. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/sub-folders/elements/base/wanted.bst +0 -0
  1819. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/sub-folders/elements/base.bst +0 -0
  1820. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/sub-folders/elements/hello.bst +0 -0
  1821. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions/sub-folders/project.conf +0 -0
  1822. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/completions.py +0 -0
  1823. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/compose_splits.py +0 -0
  1824. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/configurable_warnings.py +0 -0
  1825. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/configuredwarning/elements/corewarn.bst +0 -0
  1826. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/configuredwarning/elements/warninga.bst +0 -0
  1827. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/configuredwarning/elements/warningb.bst +0 -0
  1828. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/configuredwarning/plugins/corewarn.py +0 -0
  1829. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/configuredwarning/plugins/warninga.py +0 -0
  1830. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/configuredwarning/plugins/warningb.py +0 -0
  1831. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/configuredwarning/project.conf +0 -0
  1832. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/consistencyerror/__init__.py +0 -0
  1833. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/consistencyerror/bug.bst +0 -0
  1834. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/consistencyerror/error.bst +0 -0
  1835. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/consistencyerror/plugins/__init__.py +0 -0
  1836. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/consistencyerror/plugins/consistencybug.py +0 -0
  1837. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/consistencyerror/plugins/consistencyerror.py +0 -0
  1838. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/consistencyerror/project.conf +0 -0
  1839. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/cross_junction_workspace.py +0 -0
  1840. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/default-target/elements/dummy_1.bst +0 -0
  1841. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/default-target/elements/dummy_2.bst +0 -0
  1842. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/default-target/elements/dummy_3.bst +0 -0
  1843. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/default-target/elements/dummy_stack.bst +0 -0
  1844. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/default-target/files/sub-project/elements/dummy_subproject.bst +0 -0
  1845. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/default-target/files/sub-project/project.conf +0 -0
  1846. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/default-target/project.conf +0 -0
  1847. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/default_target.py +0 -0
  1848. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/build.bst +0 -0
  1849. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/first-level-1.bst +0 -0
  1850. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/first-level-2.bst +0 -0
  1851. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/fourth-level-1.bst +0 -0
  1852. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/fourth-level-2.bst +0 -0
  1853. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/fourth-level-3.bst +0 -0
  1854. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/project.conf +0 -0
  1855. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/second-level-1.bst +0 -0
  1856. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/third-level-1.bst +0 -0
  1857. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/third-level-2.bst +0 -0
  1858. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/third-level-3.bst +0 -0
  1859. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/unrelated-1.bst +0 -0
  1860. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/exceptions/unrelated-2.bst +0 -0
  1861. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/fetch.py +0 -0
  1862. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/help.py +0 -0
  1863. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/init.py +0 -0
  1864. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/interactive_init.py +0 -0
  1865. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/invalid_element_path/project.conf +0 -0
  1866. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/large_directory.py +0 -0
  1867. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/logging/elements/bar.bst +0 -0
  1868. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/logging/elements/foo.bst +0 -0
  1869. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/logging/elements/logtest.bst +0 -0
  1870. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/logging/files/bar +0 -0
  1871. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/logging/files/foo +0 -0
  1872. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/logging/plugins/logtest.py +0 -0
  1873. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/logging/project.conf +0 -0
  1874. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/logging.py +0 -0
  1875. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/main.py +0 -0
  1876. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/mirror.py +0 -0
  1877. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/order.py +0 -0
  1878. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/a/file1 +0 -0
  1879. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/a/file2 +0 -0
  1880. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/a-whitelisted.bst +0 -0
  1881. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/a.bst +0 -0
  1882. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/b/file2 +0 -0
  1883. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/b/file3 +0 -0
  1884. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/b-whitelisted.bst +0 -0
  1885. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/b.bst +0 -0
  1886. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/c/file1 +0 -0
  1887. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/c/file2 +0 -0
  1888. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/c/file3 +0 -0
  1889. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/c-whitelisted.bst +0 -0
  1890. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/c.bst +0 -0
  1891. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/collect-partially-whitelisted.bst +0 -0
  1892. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/collect-whitelisted.bst +0 -0
  1893. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/collect.bst +0 -0
  1894. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/directory-file/directory-file +0 -0
  1895. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/directory-file.bst +0 -0
  1896. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/multistage-overlap-error.bst +0 -0
  1897. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/multistage-overlap-ignore.bst +0 -0
  1898. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/multistage-overlap.bst +0 -0
  1899. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/plugins/overlap.py +0 -0
  1900. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/relocated-unstaged.bst +0 -0
  1901. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/relocated.bst +0 -0
  1902. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/script.bst +0 -0
  1903. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/sub-collect.bst +0 -0
  1904. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/sub-project/a-sub.bst +0 -0
  1905. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/sub-project/files/a/file3 +0 -0
  1906. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/sub-project/files/z/file1 +0 -0
  1907. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/sub-project/files/z/file2 +0 -0
  1908. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/sub-project/z-sub.bst +0 -0
  1909. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/subdir-a.bst +0 -0
  1910. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/unstaged.bst +0 -0
  1911. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/whitelist-undefined.bst +0 -0
  1912. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/with-directory/directory-file/file +0 -0
  1913. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps/with-directory.bst +0 -0
  1914. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/overlaps.py +0 -0
  1915. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/progress.py +0 -0
  1916. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/checkout-deps.bst +0 -0
  1917. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/compose-all.bst +0 -0
  1918. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/compose-exclude-dev.bst +0 -0
  1919. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/compose-include-bin.bst +0 -0
  1920. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/format-deps.bst +0 -0
  1921. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/import-bin.bst +0 -0
  1922. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/import-dev.bst +0 -0
  1923. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/import-large-directory.bst +0 -0
  1924. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/import-links.bst +0 -0
  1925. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/invalid-alias.bst +0 -0
  1926. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/manual.bst +0 -0
  1927. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/dependency/horsey.bst +0 -0
  1928. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/dependency/pony.bst +0 -0
  1929. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/dependency/zebry.bst +0 -0
  1930. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/0.bst +0 -0
  1931. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/1.bst +0 -0
  1932. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/2.bst +0 -0
  1933. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/3.bst +0 -0
  1934. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/4.bst +0 -0
  1935. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/5.bst +0 -0
  1936. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/6.bst +0 -0
  1937. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/7.bst +0 -0
  1938. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/8.bst +0 -0
  1939. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/9.bst +0 -0
  1940. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/multiple_targets/order/run.bst +0 -0
  1941. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/random.bst +0 -0
  1942. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/rebuild-target.bst +0 -0
  1943. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/source-bundle/source-bundle-hello.bst +0 -0
  1944. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/target-import.bst +0 -0
  1945. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/target.bst +0 -0
  1946. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/target.foo +0 -0
  1947. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/test.bst +0 -0
  1948. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/elements/unaliased-tar.bst +0 -0
  1949. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/bar +0 -0
  1950. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/bin-files/usr/bin/hello +0 -0
  1951. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/dev-files/usr/include/pony.h +0 -0
  1952. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/etc-files/etc/buildstream/config +0 -0
  1953. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/files-and-links/basicfile +0 -0
  1954. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/files-and-links/basicfolder/subdir-file +0 -0
  1955. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/foo +0 -0
  1956. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/source-bundle/llamas.txt +0 -0
  1957. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/sub-project/elements/import-etc.bst +0 -0
  1958. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/sub-project/files/deps.bst +0 -0
  1959. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/sub-project/files/etc-files/etc/animal.conf +0 -0
  1960. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/sub-project/project.conf +0 -0
  1961. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/sub2-project/elements/import-sub.bst +0 -0
  1962. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/sub2-project/files/etc-files/etc/animal.conf +0 -0
  1963. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/files/sub2-project/project.conf +0 -0
  1964. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/plugins/randomelement.py +0 -0
  1965. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/project.conf +0 -0
  1966. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/sourcemirrors/mirror.py +0 -0
  1967. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project/sources/fetch_source.py +0 -0
  1968. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project_fail/elements/compose-all.bst +0 -0
  1969. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project_fail/elements/import-dev.bst +0 -0
  1970. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project_fail/elements/target.bst +0 -0
  1971. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project_fail/files/dev-files/usr/include/pony.h +0 -0
  1972. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/project_fail/project.conf +0 -0
  1973. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/pull.py +0 -0
  1974. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/push.py +0 -0
  1975. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/rebuild.py +0 -0
  1976. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/remote-caches.py +0 -0
  1977. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest.py +0 -0
  1978. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/elements/dependencies.bst +0 -0
  1979. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/elements/import-basic-files.bst +0 -0
  1980. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/elements/import-executable-files.bst +0 -0
  1981. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/elements/import-symlinks.bst +0 -0
  1982. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/files/basic-files/basicfile +0 -0
  1983. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/files/basic-files/basicfolder/subdir-file +0 -0
  1984. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/files/executable-files/basicfile +0 -0
  1985. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/files/executable-files/basicfolder/subdir-file +0 -0
  1986. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/files/symlinks/symlink +0 -0
  1987. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/files/symlinks/target +0 -0
  1988. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/show_artifact_cas_digest_project/project.conf +0 -0
  1989. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/simple/elements/compose-all.bst +0 -0
  1990. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/simple/elements/import-bin.bst +0 -0
  1991. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/simple/elements/import-dev.bst +0 -0
  1992. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/simple/elements/subdir/target.bst +0 -0
  1993. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/simple/elements/target.bst +0 -0
  1994. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/simple/files/bin-files/usr/bin/hello +0 -0
  1995. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/simple/files/dev-files/usr/include/pony.h +0 -0
  1996. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/simple/project.conf +0 -0
  1997. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-fetch/apples.bst +0 -0
  1998. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-fetch/bananas.bst +0 -0
  1999. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-fetch/files/apples +0 -0
  2000. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-fetch/files/bananas +0 -0
  2001. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-fetch/files/oranges +0 -0
  2002. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-fetch/oranges.bst +0 -0
  2003. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-fetch/project.conf +0 -0
  2004. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/elements/extradata.bst +0 -0
  2005. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/elements/local.bst +0 -0
  2006. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/elements/tar-custom-version.bst +0 -0
  2007. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/elements/tar-explicit.bst +0 -0
  2008. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/elements/tar-no-micro.bst +0 -0
  2009. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/elements/tar.bst +0 -0
  2010. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/elements/testsource.bst +0 -0
  2011. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/files/testfile +0 -0
  2012. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/plugins/extradata.py +0 -0
  2013. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/plugins/testsource.py +0 -0
  2014. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info/project.conf +0 -0
  2015. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info-unimplemented/fatal/elements/unimplemented.bst +0 -0
  2016. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info-unimplemented/fatal/plugins/fatal_unimplemented.py +0 -0
  2017. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info-unimplemented/fatal/project.conf +0 -0
  2018. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info-unimplemented/non-fatal/elements/unimplemented.bst +0 -0
  2019. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info-unimplemented/non-fatal/plugins/non_fatal_unimplemented.py +0 -0
  2020. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-info-unimplemented/non-fatal/project.conf +0 -0
  2021. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-track/apples.bst +0 -0
  2022. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-track/bananas.bst +0 -0
  2023. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-track/comments.bst +0 -0
  2024. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-track/files/apples +0 -0
  2025. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-track/files/bananas +0 -0
  2026. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-track/files/oranges +0 -0
  2027. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source-track/oranges.bst +0 -0
  2028. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/source_checkout.py +0 -0
  2029. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/strict-depends/elements/base.bst +0 -0
  2030. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/strict-depends/elements/non-strict-depends.bst +0 -0
  2031. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/strict-depends/elements/strict-depends.bst +0 -0
  2032. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/strict-depends/files/hello.txt +0 -0
  2033. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/strict-depends/project.conf +0 -0
  2034. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/strict-scenario/elements/base.bst +0 -0
  2035. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/strict-scenario/elements/target.bst +0 -0
  2036. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/strict-scenario/files/base.txt +0 -0
  2037. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/strict-scenario/files/target.txt +0 -0
  2038. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/strict-scenario/project.conf +0 -0
  2039. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-cross-junction/files/usr/include/pony.h +0 -0
  2040. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-cross-junction/subproject/project.conf +0 -0
  2041. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-cross-junction/subproject-junction.bst +0 -0
  2042. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-cross-junction/subproject.bst +0 -0
  2043. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-optional-inline/files/usr/include/pony.h +0 -0
  2044. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-optional-inline/project.conf +0 -0
  2045. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-optional-inline/target.bst +0 -0
  2046. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-optional-project-refs/files/usr/include/pony.h +0 -0
  2047. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-optional-project-refs/project.conf +0 -0
  2048. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-optional-project-refs/project.refs +0 -0
  2049. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track-optional-project-refs/target.bst +0 -0
  2050. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/track.py +0 -0
  2051. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/version.py +0 -0
  2052. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspace.py +0 -0
  2053. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/elements/elem1.bst +0 -0
  2054. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/elements/elem2.bst +0 -0
  2055. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/elements/elem3.bst +0 -0
  2056. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/elements/elem4.bst +0 -0
  2057. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/elements/elem5.bst +0 -0
  2058. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/elements/stack.bst +0 -0
  2059. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/files/file1 +0 -0
  2060. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/files/file2 +0 -0
  2061. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/files/file3 +0 -0
  2062. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/files/file4 +0 -0
  2063. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-build-dep/project.conf +0 -0
  2064. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/elements/elem1.bst +0 -0
  2065. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/elements/elem2.bst +0 -0
  2066. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/elements/elem3.bst +0 -0
  2067. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/elements/elem4.bst +0 -0
  2068. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/elements/elem5.bst +0 -0
  2069. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/elements/stack.bst +0 -0
  2070. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/files/file1 +0 -0
  2071. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/files/file2 +0 -0
  2072. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/files/file3 +0 -0
  2073. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/files/file4 +0 -0
  2074. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/frontend/workspaced-runtime-dep/project.conf +0 -0
  2075. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/__init__.py +0 -0
  2076. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/artifact.py +0 -0
  2077. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/autotools.py +0 -0
  2078. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/base/generate-base.sh +0 -0
  2079. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/build-uid.py +0 -0
  2080. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/cached-fail/elements/base-also-fail.bst +0 -0
  2081. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/cached-fail/elements/base-fail.bst +0 -0
  2082. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/cached-fail/elements/base-success.bst +0 -0
  2083. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/cached-fail/elements/base.bst +0 -0
  2084. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/cached-fail/elements/depends-on-base-fail-expect-foo.bst +0 -0
  2085. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/cached-fail/elements/depends-on-two-failures.bst +0 -0
  2086. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/cached-fail/project.conf +0 -0
  2087. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/cachedfail.py +0 -0
  2088. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/compose-symlinks.py +0 -0
  2089. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/compose.py +0 -0
  2090. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/filter.py +0 -0
  2091. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/import.py +0 -0
  2092. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/interactive_build.py +0 -0
  2093. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/manual.py +0 -0
  2094. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/messages.py +0 -0
  2095. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/autotools/amhello-failure.bst +0 -0
  2096. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/autotools/amhello.bst +0 -0
  2097. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/autotools/amhelloconfroot.bst +0 -0
  2098. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/base.bst +0 -0
  2099. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/build-shell/buildtree-fail.bst +0 -0
  2100. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/build-shell/buildtree.bst +0 -0
  2101. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/build-shell/compose-dep-fail.bst +0 -0
  2102. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/build-shell/compose-dep-success.bst +0 -0
  2103. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/build-shell/compose-fail.bst +0 -0
  2104. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/build-shell/compose-success.bst +0 -0
  2105. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/build-shell/script.bst +0 -0
  2106. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/build-uid/build-uid-1023.bst +0 -0
  2107. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/build-uid/build-uid-default.bst +0 -0
  2108. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/build-uid/build-uid.bst +0 -0
  2109. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/compose/amhello.bst +0 -0
  2110. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/compose/test-integration.bst +0 -0
  2111. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/compose/test.bst +0 -0
  2112. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/compose-symlinks/base.bst +0 -0
  2113. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/compose-symlinks/compose.bst +0 -0
  2114. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/compose-symlinks/overlay.bst +0 -0
  2115. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/echo-env-var.bst +0 -0
  2116. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/echo-target.bst +0 -0
  2117. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/filter/filter.bst +0 -0
  2118. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/filter/parent.bst +0 -0
  2119. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/integration.bst +0 -0
  2120. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/interactive/failed-build.bst +0 -0
  2121. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/manual/import-file.bst +0 -0
  2122. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/manual/manual-stage-custom.bst +0 -0
  2123. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/sandbox/build-arch.bst +0 -0
  2124. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/sandbox/test-dev-shm.bst +0 -0
  2125. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/script/corruption-2.bst +0 -0
  2126. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/script/corruption-image.bst +0 -0
  2127. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/script/corruption-integration.bst +0 -0
  2128. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/script/corruption.bst +0 -0
  2129. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/script/marked-tmpdir.bst +0 -0
  2130. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/script/no-tmpdir.bst +0 -0
  2131. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/script/script-layout.bst +0 -0
  2132. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/script/script.bst +0 -0
  2133. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/script/tmpdir.bst +0 -0
  2134. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/sockets/make-builddir-socket.bst +0 -0
  2135. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/sockets/make-install-root-socket.bst +0 -0
  2136. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/stack/another-hi.bst +0 -0
  2137. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/stack/hi.bst +0 -0
  2138. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/stack/stack.bst +0 -0
  2139. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/symlinks/dangling-symlink-overlap.bst +0 -0
  2140. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/symlinks/dangling-symlink.bst +0 -0
  2141. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/symlinks/link-on-path-use.bst +0 -0
  2142. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/symlinks/link-on-path.bst +0 -0
  2143. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/symlinks/symlink-to-outside-sandbox-overlap.bst +0 -0
  2144. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/symlinks/symlink-to-outside-sandbox.bst +0 -0
  2145. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/workspace/workspace-commanddir.bst +0 -0
  2146. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/workspace/workspace-mount-fail.bst +0 -0
  2147. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/workspace/workspace-mount.bst +0 -0
  2148. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/workspace/workspace-updated-dependency-failed.bst +0 -0
  2149. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/workspace/workspace-updated-dependency-nested.bst +0 -0
  2150. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/elements/workspace/workspace-updated-dependency.bst +0 -0
  2151. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/amhello.tar.gz +0 -0
  2152. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/base-with-tmp/tmp/dummy +0 -0
  2153. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/canary +0 -0
  2154. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/compose-symlinks/base/usr/sbin/dummy +0 -0
  2155. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/compose-symlinks/overlay/sbin/init +0 -0
  2156. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/hello.tar.xz +0 -0
  2157. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/import-source/subdir/test.txt +0 -0
  2158. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/import-source/test.txt +0 -0
  2159. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/manual-element/root/hello +0 -0
  2160. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/manual-element/root/subdir/hello +0 -0
  2161. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/shell-mount/pony.txt +0 -0
  2162. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/test_shm.c +0 -0
  2163. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/workspace-configure-only-once/configure +0 -0
  2164. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/workspace-incremental/Makefile +0 -0
  2165. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/workspace-incremental/source +0 -0
  2166. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/workspace-mount-src/hello.c +0 -0
  2167. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/workspace-partial/Makefile +0 -0
  2168. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/workspace-partial/source1 +0 -0
  2169. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/workspace-partial/source2 +0 -0
  2170. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/workspace-updated-dependency/Makefile +0 -0
  2171. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/workspace-updated-dependency-failed/Makefile +0 -0
  2172. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/files/workspace-updated-dependency-nested/Makefile +0 -0
  2173. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/project/keys/gnome-sdk.gpg +0 -0
  2174. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/script.py +0 -0
  2175. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/shell.py +0 -0
  2176. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/sockets.py +0 -0
  2177. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/source-determinism.py +0 -0
  2178. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/stack.py +0 -0
  2179. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/symlinks.py +0 -0
  2180. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/integration/workspace.py +0 -0
  2181. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/__init__.py +0 -0
  2182. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/cascache.py +0 -0
  2183. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/context/malformed.yaml +0 -0
  2184. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/context/notdict.yaml +0 -0
  2185. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/context/userconf.yaml +0 -0
  2186. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/context.py +0 -0
  2187. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/loader/onefile/elements/badfile.bst +0 -0
  2188. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/loader/onefile/elements/badreference.bst +0 -0
  2189. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/loader/onefile/elements/invalidkey.bst +0 -0
  2190. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/loader/onefile/elements/invalidsourcekey.bst +0 -0
  2191. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/loader/onefile/elements/onefile.bst +0 -0
  2192. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/loader/onefile/project.conf +0 -0
  2193. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/loader.py +0 -0
  2194. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/empty/.gitkeep +0 -0
  2195. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-add/added +0 -0
  2196. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-add/root-file +0 -0
  2197. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-add/subdirectory/subdir-file +0 -0
  2198. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-base/root-file +0 -0
  2199. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-base/subdirectory/subdir-file +0 -0
  2200. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-buildtree/root-file +0 -0
  2201. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-buildtree/root-file.o +0 -0
  2202. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-buildtree/subdirectory/subdir-file +0 -0
  2203. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-buildtree/subdirectory/subdir-file.o +0 -0
  2204. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-link/link +0 -0
  2205. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-link/root-file +0 -0
  2206. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-link/subdirectory/subdir-file +0 -0
  2207. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-link-change/link +0 -0
  2208. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-link-change/root-file +0 -0
  2209. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-link-change/subdirectory/link +0 -0
  2210. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-link-change/subdirectory/subdir-file +0 -0
  2211. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-in-subdir-with-directory/root-file +0 -0
  2212. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-in-subdir-with-directory/root-file.o +0 -0
  2213. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-in-subdir-with-directory/subdirectory/subdir-file +0 -0
  2214. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-in-subdir-with-directory/subdirectory/subdir-file.o/test +0 -0
  2215. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-in-subdir-with-file/root-file +0 -0
  2216. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-in-subdir-with-file/root-file.o +0 -0
  2217. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-in-subdir-with-file/subdirectory/subdir-file +0 -0
  2218. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-in-subdir-with-file/subdirectory/subdir-file.o +0 -0
  2219. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-subdirectory/root-file +0 -0
  2220. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-subdirectory/root-file.o +0 -0
  2221. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-subdirectory/subdirectory +0 -0
  2222. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-with-directory/root-file +0 -0
  2223. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-with-directory/root-file.o/test +0 -0
  2224. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-with-directory/subdirectory/subdir-file +0 -0
  2225. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-with-directory/subdirectory/subdir-file.o +0 -0
  2226. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-with-file/root-file +0 -0
  2227. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-with-file/root-file.o +0 -0
  2228. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-with-file/subdirectory/subdir-file +0 -0
  2229. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-with-file/subdirectory/subdir-file.o +0 -0
  2230. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-with-new-subdirectory/root-file +0 -0
  2231. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-override-with-new-subdirectory/subdirectory +0 -0
  2232. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-properties/root-file +0 -0
  2233. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-properties/subdirectory/subdir-file +0 -0
  2234. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-remove/subdirectory/subdir-file +0 -0
  2235. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-replace/root-file +0 -0
  2236. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-replace/subdirectory/subdir-file +0 -0
  2237. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-subdirectory-add/root-file +0 -0
  2238. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-subdirectory-add/subdirectory/added +0 -0
  2239. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-subdirectory-add/subdirectory/subdir-file +0 -0
  2240. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-subdirectory-link/root-file +0 -0
  2241. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-subdirectory-link/subdirectory/link +0 -0
  2242. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-subdirectory-link/subdirectory/subdir-file +0 -0
  2243. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-subdirectory-remove/root-file +0 -0
  2244. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-subdirectory-remove/subdirectory/.gitkeep +0 -0
  2245. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-subdirectory-replace/root-file +0 -0
  2246. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/merge-subdirectory-replace/subdirectory/subdir-file +0 -0
  2247. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/original/bin/bash +0 -0
  2248. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/original/bin/hello +0 -0
  2249. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage/overlay/bin/bash +0 -0
  2250. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage.py +0 -0
  2251. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/storage_vdir_import.py +0 -0
  2252. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/utils_move_atomic.py +0 -0
  2253. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/utils_save_atomic.py +0 -0
  2254. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/basics.yaml +0 -0
  2255. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/composite.yaml +0 -0
  2256. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/convert_value_to_str.yaml +0 -0
  2257. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/dictionary.yaml +0 -0
  2258. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/implicitoverwrite.yaml +0 -0
  2259. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/invalid.yaml +0 -0
  2260. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/list-of-dict.yaml +0 -0
  2261. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/list-of-list.yaml +0 -0
  2262. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/listappend.yaml +0 -0
  2263. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/listappendprepend.yaml +0 -0
  2264. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/listoverwrite.yaml +0 -0
  2265. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/listoverwriteempty.yaml +0 -0
  2266. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/listprepend.yaml +0 -0
  2267. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/secondappend.yaml +0 -0
  2268. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/secondprepend.yaml +0 -0
  2269. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml/traversal.yaml +0 -0
  2270. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/internals/yaml.py +0 -0
  2271. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/__init__.py +0 -0
  2272. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/junction-with-junction/element.bst +0 -0
  2273. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/junction-with-junction/project.conf +0 -0
  2274. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/junction-with-junction/subproject/project.conf +0 -0
  2275. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/junction-with-junction/subproject/target.bst +0 -0
  2276. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/junction-with-junction/subproject/variables.yml +0 -0
  2277. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/elements/subproject-junction.bst +0 -0
  2278. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/not-found-elements.conf +0 -0
  2279. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/not-found-sources.conf +0 -0
  2280. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/elements/deprecated/deprecated.py +0 -0
  2281. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/elements/found/found.py +0 -0
  2282. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/elements/incompatiblemajor/incompatiblemajor.py +0 -0
  2283. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/elements/incompatibleminor/incompatibleminor.py +0 -0
  2284. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/elements/malformedminversion/badstring.py +0 -0
  2285. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/elements/malformedminversion/dict.py +0 -0
  2286. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/elements/malformedminversion/list.py +0 -0
  2287. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/elements/malformedminversion/number.py +0 -0
  2288. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/elements/nominversion/nominversion.py +0 -0
  2289. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/nosetup/nosetup.py +0 -0
  2290. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/setupnotfunction/setupnotfunction.py +0 -0
  2291. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/setupreturnsbadtype/setupreturnsbadtype.py +0 -0
  2292. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/setupreturnsnottype/setupreturnsnottype.py +0 -0
  2293. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/sources/deprecated/deprecated.py +0 -0
  2294. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/sources/found/found.py +0 -0
  2295. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/sources/incompatiblemajor/incompatiblemajor.py +0 -0
  2296. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/sources/incompatibleminor/incompatibleminor.py +0 -0
  2297. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/sources/malformedminversion/badstring.py +0 -0
  2298. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/sources/malformedminversion/dict.py +0 -0
  2299. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/sources/malformedminversion/list.py +0 -0
  2300. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/sources/malformedminversion/number.py +0 -0
  2301. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/plugins/sources/nominversion/nominversion.py +0 -0
  2302. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/project.conf +0 -0
  2303. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/subproject/elements/subsubproject-junction.bst +0 -0
  2304. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/subproject/project.conf +0 -0
  2305. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading/subproject/subsubproject/project.conf +0 -0
  2306. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/loading.py +0 -0
  2307. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/MANIFEST.in +0 -0
  2308. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/project.conf +0 -0
  2309. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/setup.py +0 -0
  2310. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/__init__.py +0 -0
  2311. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/elements/__init__.py +0 -0
  2312. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/elements/autotools.py +0 -0
  2313. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/elements/autotools.yaml +0 -0
  2314. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/elements/sample.py +0 -0
  2315. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/elements/sample.yaml +0 -0
  2316. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/sourcemirrors/__init__.py +0 -0
  2317. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/sourcemirrors/mirror.py +0 -0
  2318. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/sources/__init__.py +0 -0
  2319. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/sources/git.py +0 -0
  2320. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/sample-plugins/src/sample_plugins/sources/sample.py +0 -0
  2321. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/shadow/elements/manual.bst +0 -0
  2322. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/shadow/plugins/manual.py +0 -0
  2323. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/shadow/project.conf +0 -0
  2324. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/plugins/shadow.py +0 -0
  2325. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remotecache/__init__.py +0 -0
  2326. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remotecache/project/elements/autotools/amhello.bst +0 -0
  2327. {buildstream-2.5.0.dev1/tests/integration → buildstream-2.6.0/tests/remotecache}/project/elements/base/base-alpine.bst +0 -0
  2328. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remotecache/project/elements/base.bst +0 -0
  2329. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remotecache/project/elements/build-shell/buildtree-fail.bst +0 -0
  2330. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remotecache/project/elements/build-shell/buildtree.bst +0 -0
  2331. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remotecache/project/elements/no-runtime-deps.bst +0 -0
  2332. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remotecache/project/files/amhello.tar.gz +0 -0
  2333. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remotecache/project/files/dev-files/usr/include/pony.h +0 -0
  2334. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remotecache/project/project.conf +0 -0
  2335. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remotecache/simple.py +0 -0
  2336. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/__init__.py +0 -0
  2337. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/buildfail.py +0 -0
  2338. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/buildtree.py +0 -0
  2339. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/junction.py +0 -0
  2340. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/elements/autotools/amhello.bst +0 -0
  2341. {buildstream-2.5.0.dev1/tests/remotecache → buildstream-2.6.0/tests/remoteexecution}/project/elements/base/base-alpine.bst +0 -0
  2342. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/elements/base.bst +0 -0
  2343. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/elements/build-shell/buildtree-fail.bst +0 -0
  2344. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/elements/build-shell/buildtree.bst +0 -0
  2345. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/elements/no-runtime-deps.bst +0 -0
  2346. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/files/amhello.tar.gz +0 -0
  2347. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/files/dev-files/usr/include/pony.h +0 -0
  2348. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/files/sub-project/elements/autotools/amhello.bst +0 -0
  2349. {buildstream-2.5.0.dev1/tests/remoteexecution/project → buildstream-2.6.0/tests/remoteexecution/project/files/sub-project}/elements/base/base-alpine.bst +0 -0
  2350. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/files/sub-project/elements/base.bst +0 -0
  2351. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/files/sub-project/files/amhello.tar.gz +0 -0
  2352. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/files/sub-project/project.conf +0 -0
  2353. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/project/project.conf +0 -0
  2354. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/remotecache.py +0 -0
  2355. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/simple.py +0 -0
  2356. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/remoteexecution/workspace.py +0 -0
  2357. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/__init__.py +0 -0
  2358. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/missing-command/no-runtime.bst +0 -0
  2359. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/missing-command/project.conf +0 -0
  2360. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/missing-command.py +0 -0
  2361. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/missing-dependencies/elements/base.bst +0 -0
  2362. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/missing-dependencies/files/base/bin/sh +0 -0
  2363. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/missing-dependencies/project.conf +0 -0
  2364. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/missing_dependencies.py +0 -0
  2365. {buildstream-2.5.0.dev1/tests/remoteexecution/project/files/sub-project → buildstream-2.6.0/tests/sandboxes/project}/elements/base/base-alpine.bst +0 -0
  2366. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/project/elements/base.bst +0 -0
  2367. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/project/elements/import-file1.bst +0 -0
  2368. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/project/files/file1.txt +0 -0
  2369. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/project/project.conf +0 -0
  2370. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/remote-exec-config/missing-certs/certificates/client.crt +0 -0
  2371. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/remote-exec-config/missing-certs/certificates/client.key +0 -0
  2372. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/remote-exec-config/missing-certs/element.bst +0 -0
  2373. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/remote-exec-config/missing-certs/project.conf +0 -0
  2374. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/remote-exec-config.py +0 -0
  2375. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sandboxes/selection.py +0 -0
  2376. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/__init__.py +0 -0
  2377. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/cache.py +0 -0
  2378. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/capabilities.py +0 -0
  2379. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/config.py +0 -0
  2380. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/fetch.py +0 -0
  2381. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/missing-certs/certificates/client.crt +0 -0
  2382. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/missing-certs/certificates/client.key +0 -0
  2383. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/missing-certs/element.bst +0 -0
  2384. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/elements/compose-all.bst +0 -0
  2385. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/elements/import-bin.bst +0 -0
  2386. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/elements/import-dev.bst +0 -0
  2387. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/elements/source-with-patches-1.bst +0 -0
  2388. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/elements/source-with-patches-2.bst +0 -0
  2389. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/elements/source-without-patches.bst +0 -0
  2390. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/elements/target.bst +0 -0
  2391. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/files/bin-files/usr/bin/hello +0 -0
  2392. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/files/dev-files/usr/include/pony.h +0 -0
  2393. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/files/hello-patch.diff +0 -0
  2394. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/plugins/elements/always_fail.py +0 -0
  2395. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/plugins/elements/always_fail.yaml +0 -0
  2396. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/plugins/sources/patch.py +0 -0
  2397. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/project/project.conf +0 -0
  2398. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/push.py +0 -0
  2399. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/source-checkout.py +0 -0
  2400. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/staging.py +0 -0
  2401. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sourcecache/workspace.py +0 -0
  2402. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/__init__.py +0 -0
  2403. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/keytest.py +0 -0
  2404. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/basic/file.txt +0 -0
  2405. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/basic/project.conf +0 -0
  2406. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/basic/target.bst +0 -0
  2407. {buildstream-2.5.0.dev1/tests/sandboxes/project → buildstream-2.6.0/tests/sources/local/deterministic-umask}/elements/base/base-alpine.bst +0 -0
  2408. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/deterministic-umask/elements/base.bst +0 -0
  2409. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/directory/files/file.txt +0 -0
  2410. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/directory/files/subdir/anotherfile.txt +0 -0
  2411. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/directory/project.conf +0 -0
  2412. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/directory/target.bst +0 -0
  2413. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/file-exists/files/file.txt +0 -0
  2414. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/file-exists/project.conf +0 -0
  2415. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/file-exists/target.bst +0 -0
  2416. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/invalid-relative-path/file.txt +0 -0
  2417. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/invalid-relative-path/project.conf +0 -0
  2418. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/invalid-relative-path/target.bst +0 -0
  2419. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/symlink/files/file.txt +0 -0
  2420. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/symlink/project.conf +0 -0
  2421. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local/symlink/target.bst +0 -0
  2422. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/local.py +0 -0
  2423. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/no-fetch-cached/files/file +0 -0
  2424. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/no-fetch-cached/plugins/sources/always_cached.py +0 -0
  2425. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/no-fetch-cached/project.conf +0 -0
  2426. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/no_fetch_cached.py +0 -0
  2427. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/previous_source_access/elements/target.bst +0 -0
  2428. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/previous_source_access/files/file +0 -0
  2429. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/previous_source_access/plugins/sources/foo_transform.py +0 -0
  2430. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/previous_source_access/project.conf +0 -0
  2431. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/previous_source_access.py +0 -0
  2432. {buildstream-2.5.0.dev1/tests/sources/local/deterministic-umask → buildstream-2.6.0/tests/sources/project}/elements/base/base-alpine.bst +0 -0
  2433. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/project/elements/base.bst +0 -0
  2434. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/project_key_test/elements/key-test.bst +0 -0
  2435. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/project_key_test/plugins/sources/key-test.py +0 -0
  2436. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/project_key_test/project.conf +0 -0
  2437. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/missing-file/target.bst +0 -0
  2438. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/no-ref/file +0 -0
  2439. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/no-ref/target.bst +0 -0
  2440. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/path-in-filename/dir/file +0 -0
  2441. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/path-in-filename/target.bst +0 -0
  2442. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/single-file/dir/file +0 -0
  2443. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/single-file/target.bst +0 -0
  2444. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/single-file-custom-name/dir/file +0 -0
  2445. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/single-file-custom-name/target.bst +0 -0
  2446. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/unique-keys/dir/file +0 -0
  2447. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/unique-keys/target-custom-executable.bst +0 -0
  2448. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/unique-keys/target-custom.bst +0 -0
  2449. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote/unique-keys/target.bst +0 -0
  2450. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/remote.py +0 -0
  2451. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/contains-links/content/base-directory/subdir1/file.txt +0 -0
  2452. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/contains-links/target.bst +0 -0
  2453. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/explicit-basedir/content/a/b/d +0 -0
  2454. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/explicit-basedir/content/a/c +0 -0
  2455. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/explicit-basedir/target.bst +0 -0
  2456. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/fetch/content/a/b/d +0 -0
  2457. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/fetch/content/a/c +0 -0
  2458. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/fetch/sourcemirrors/bearermirror.py +0 -0
  2459. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/fetch/target-lz.bst +0 -0
  2460. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/fetch/target.bst +0 -0
  2461. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/no-basedir/content/a/b/d +0 -0
  2462. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/no-basedir/content/a/c +0 -0
  2463. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/no-basedir/target.bst +0 -0
  2464. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/no-ref/a/b/d +0 -0
  2465. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/no-ref/a/c +0 -0
  2466. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/no-ref/target.bst +0 -0
  2467. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/out-of-basedir-hardlinks/contents/elsewhere/a +0 -0
  2468. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/out-of-basedir-hardlinks/contents/elsewhere/malicious +0 -0
  2469. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/out-of-basedir-hardlinks/contents/to_extract/a +0 -0
  2470. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/out-of-basedir-hardlinks/malicious_target.bst +0 -0
  2471. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/out-of-basedir-hardlinks/target.bst +0 -0
  2472. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/read-only/content/a.tar.gz +0 -0
  2473. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/read-only/content/b.tar.gz +0 -0
  2474. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/read-only/content/c.tar.gz +0 -0
  2475. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/tar/read-only/target.bst +0 -0
  2476. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/variables/folder/file.txt +0 -0
  2477. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/variables/project.conf +0 -0
  2478. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/variables/target.bst +0 -0
  2479. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/variables/unresolveable-target.bst +0 -0
  2480. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/sources/variables.py +0 -0
  2481. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/__init__.py +0 -0
  2482. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/artifactshare.py +0 -0
  2483. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/casd.py +0 -0
  2484. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/constants.py +0 -0
  2485. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/context.py +0 -0
  2486. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/element_generators.py +0 -0
  2487. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/file_server.py +0 -0
  2488. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/filetypegenerator.py +0 -0
  2489. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/junction.py +0 -0
  2490. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/patch.py +0 -0
  2491. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/platform.py +0 -0
  2492. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/python_repo.py +0 -0
  2493. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/repo/__init__.py +0 -0
  2494. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/repo/git.py +0 -0
  2495. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/repo/tar.py +0 -0
  2496. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/tests/testutils/runner_integration.py +0 -0
  2497. {buildstream-2.5.0.dev1 → buildstream-2.6.0}/versioneer.py +0 -0
buildstream-2.6.0/NEWS ADDED
@@ -0,0 +1,1130 @@
1
+ =================
2
+ buildstream 2.6.0
3
+ =================
4
+
5
+ o Add the `remote-apis-socket` sandbox configuration to offer build tools
6
+ in the sandbox (e.g., recc or bazel) access to the Remote Execution API
7
+ for caching or (nested) remote execution (#2014, #2031, #2038)
8
+
9
+ o Add the `digest-environment` dependency configuration for use by
10
+ Remote Execution API clients running in the sandbox (#2036)
11
+
12
+ o Additional source provenance in SourceInfo (#2009)
13
+
14
+ o Allow showing the element kind in `bst show` (#2058)
15
+
16
+ o Accept pre-releases for plugins loaded from the `pip` origin (#2019)
17
+
18
+ o BuildStream now requires BuildBox 1.2.6 or later
19
+
20
+ o Support Python 3.13.4+ and 3.14 (#2039, #2064, #2067)
21
+
22
+ o Support protobuf 6+ (#2043) and Click 8.2+ (#2065)
23
+
24
+ =================
25
+ buildstream 2.5.0
26
+ =================
27
+
28
+ o Fix directory mtime to support latest buildbox-casd (#2001)
29
+
30
+ o Fix test cases to work with latest buildbox (#1999)
31
+
32
+ o Support gRPC retry and timeout configuration for all remote services (#1987)
33
+
34
+ o Fix our setup.py for surprise update of setuptools (#2007)
35
+
36
+ o Add Source.collect_source_info() and SourceFetcher.get_source_info() methods,
37
+ support showing introspected source provenance information in `bst show`,
38
+ make it possible for absence of implementations of these new methods be fatal,
39
+ and export some related utilities to help plugins support such (#1997, #2008, #2016, #2018)
40
+
41
+ o Some minor fixes to documentation (#1992)
42
+
43
+ o Support showing artifact content digests in `bst show` (#1994)
44
+
45
+ o Better support for parsing boolean configuration that is exported from
46
+ project options (#2011, #2006)
47
+
48
+ o Better error handling in remote execution if services do not support
49
+ required sandbox options (#2013)
50
+
51
+ o Fix pushing artifacts with remote caches (#2015)
52
+
53
+ o Fix build warnings stemming from using outdated grpcio tools (#2017)
54
+
55
+ o Fix additional jobs being scheduled after the user has asked to quit (#2005, #1787)
56
+
57
+ =================
58
+ buildstream 2.4.1
59
+ =================
60
+
61
+ o Update default min-version for bst init to 2.4 (#1978)
62
+
63
+ o Use subprocess umask support (#1754)
64
+
65
+ o Don't use `preexec_fn` on Python 3.11+ (#1980)
66
+
67
+ o contrib/bst-graph: Escape names when using as node_id (#1979)
68
+
69
+ o _loader: Use the sort algorithm from Python 3.12 for dependencies (#1993)
70
+
71
+ =================
72
+ buildstream 2.4.0
73
+ =================
74
+
75
+ o Add new user configuration for the cache (#1950)
76
+
77
+ o docs: fix link to docker install instructions (#1952)
78
+
79
+ o Fix console warnings in newer python versions (#1958)
80
+
81
+ o Update github CI workflow actions (#1957)
82
+
83
+ o Fix `bst artifact show --long` for artifacts with symlinks (#1959)
84
+
85
+ o Fix race condition in public data handling (#1955)
86
+
87
+ o Cleanup deadcode (#1954)
88
+
89
+ o Make remote execution directory fetching more robust (#1962)
90
+
91
+ o Disable logging for frequent cache query jobs (#1963)
92
+
93
+ o Improve performance when using `storage-service` (#1966)
94
+
95
+ o Fixed issues with nested junctions (#1891, #1969, #1975)
96
+
97
+ o Drop support for Python 3.8 and add support for Python 3.13 (#1971)
98
+
99
+ o Load time optimization for commands which don't require cache queries (#1965)
100
+
101
+ o Address deprecation warnings from deprecated pkg_resources (#1948)
102
+
103
+ =================
104
+ buildstream 2.3.0
105
+ =================
106
+
107
+ o Proxy remote asset and remote execution requests via buildbox-casd (#1922, #1926)
108
+
109
+ o Optimize bst show when no cached state is needed (#1923)
110
+
111
+ o Support %{description} in bst show commands
112
+
113
+ o Support HTTP Bearer authentication for remote API servers (#1925)
114
+
115
+ o Drop support for Python 3.7 (#1933, #1934, #1936)
116
+
117
+ o downloadablefilesource: Add 10 minutes timeout (#1928)
118
+
119
+ o tar.py: Always check member paths (#1932)
120
+
121
+ o Ensure blobs are available locally when using storage-service (#1938)
122
+
123
+ o Support loading source mirror plugins from pip and junction origins (#1931)
124
+
125
+ o Restore terminal after exiting a bst shell (#1786)
126
+
127
+ o Fail early if buildbox-run is present but non-functional (#1746)
128
+
129
+ =================
130
+ buildstream 2.2.1
131
+ =================
132
+
133
+ o Fix parsing of keepalive time (#1916)
134
+
135
+ o Fix alias mapping when using source mirror plugins (#1918)
136
+
137
+ o Fix typing of SourceFetcher.fetch() and Source.translate_url():
138
+ the `alias_override` parameter should be considered opaque.
139
+
140
+ o Update documentation regarding the buildbox merge (#1919)
141
+
142
+ =================
143
+ buildstream 2.2.0
144
+ =================
145
+
146
+ o Support Python 3.12 (#1881, #1884)
147
+
148
+ o Add suffix parameter to `Source.translate_url()` (#1899)
149
+
150
+ o Error out if a YAML mapping has duplicate keys (#1877)
151
+
152
+ o New configuration option to set the grpc keepalive time (#1879)
153
+
154
+ o Add SourceMirror plugins to allow more flexibility when defining mirrors (#1903)
155
+
156
+ o Use system-installed buildbox components over bundled ones if available (#1902)
157
+
158
+ o Support bearer authentication in DownloadableFileSource (#1911)
159
+
160
+ o Support mapping aliases from subprojects to parent project to ease mirroring (#1910)
161
+
162
+ =================
163
+ buildstream 2.1.0
164
+ =================
165
+
166
+ o Support new architecture name "la64v100" (#1811)
167
+
168
+ o Fix race condition when downloading sources (#1831)
169
+
170
+ o Properly handle partial download errors (#1846)
171
+
172
+ o Fix regressed ETag handling to prevent redundant file downloads (#1834)
173
+
174
+ o Fix parsing remotes specified on the command line (#1850)
175
+
176
+ o Fix bug when tracking ref-less sources (like local sources) when using project.refs (#1858)
177
+
178
+ o Follow semantic versioning more strictly (#1854)
179
+
180
+ o New `bst build --retry-failed` feature (#1849)
181
+
182
+ o Fix parsing override-project-caches configuration (#1861)
183
+
184
+ o Fix crashes when instructed to only download from mirrors, and
185
+ some sources have no mirrors defined (#1862)
186
+
187
+ o Drop unnecessary dependency on dateutil (#1867)
188
+
189
+ o Fix severe hangs when can occur when running out of disk
190
+ space specifically when attempting to open and write to
191
+ a new log file (#1865)
192
+
193
+ =================
194
+ buildstream 2.0.1
195
+ =================
196
+
197
+ o Stop including generated C code in releases (#1777)
198
+
199
+ o Support completions for Zsh shells (#558)
200
+
201
+ o Support Python 3.11 (#1782, #1806, #1815, #1759)
202
+
203
+ o Fix git submodule tests to work with recent git (#1816)
204
+
205
+ o Enable coverage collection in tests (#1817)
206
+
207
+ o Optimize file copies where possible (#1793)
208
+
209
+ o Some fixes for downloadable file sources (#1826, #1814)
210
+
211
+ o Various cleanups of deprecated code and documentation
212
+
213
+ =================
214
+ buildstream 2.0.0
215
+ =================
216
+
217
+ No changes since 1.95.6, releasing voted upon 2.0.0
218
+
219
+ ==================
220
+ buildstream 1.95.6
221
+ ==================
222
+
223
+ o Adding missing license headers to some files in the _testing module
224
+
225
+ ==================
226
+ buildstream 1.95.5
227
+ ==================
228
+
229
+ o Fixed remaining license header issues (in sources and also docs)
230
+
231
+ o Documenting how to prepare BuildStream for new python versions
232
+
233
+ o Remove generated GPL files from autotools test tarballs
234
+
235
+ o Update package metadata urls and author
236
+
237
+ ==================
238
+ buildstream 1.95.4
239
+ ==================
240
+
241
+ o Fixed license headers in source files
242
+
243
+ o Attribute third party licenses etc properly in the LICENCE
244
+ and NOTICE files and ensure they are included in source distributions
245
+
246
+ o Removed obsolete update_committers.py script in contrib
247
+
248
+ o Require at least the first cython version which properly supported python 3.10
249
+
250
+ o Update copyright year and attribution in generated documentation
251
+
252
+ ==================
253
+ buildstream 1.95.3
254
+ ==================
255
+
256
+ o Some fixes to the CI (#1736, #1737)
257
+
258
+ o Fix errors passing certs/keys to casd (#1748)
259
+
260
+ o Update installation instructions for 2.0 (#1741)
261
+
262
+ o Fix issues using `storage-service` (#1750)
263
+
264
+ o Revert to previous mirror ordering behavior when tracking (#1765)
265
+
266
+
267
+ ==================
268
+ buildstream 1.95.2
269
+ ==================
270
+
271
+ o Fix stack traces in tab completion of `bst artifact` commands (#1718)
272
+
273
+ o Document new link to obtain latest static buildbox binaries (#1721)
274
+
275
+ o Allow `bst shell --build` directly on artifacts without needing a project (#1711)
276
+
277
+ o Refactor out some unused methods (#781)
278
+
279
+ o Continue pushing build results if builds fail when --on-error=quit (#534)
280
+
281
+ o Fix issue which sometimes caused messages to get lost in the master log (#1728)
282
+
283
+ o Fix remaining ruamel.yaml deprecation warnings (#1731)
284
+
285
+ o Only print the last failure for retried failed elements (#517)
286
+
287
+ o Enhance BuildElement documentation (#1734)
288
+
289
+ o Automatically publish binary wheels which contain static BuildBox binaries when releasing (#1712)
290
+
291
+
292
+ ==================
293
+ buildstream 1.95.1
294
+ ==================
295
+
296
+ o Fixed issue loading refs from project.refs files in subprojects (#1655)
297
+
298
+ o Fixed `bst artifact checkout` on machines which do not support the
299
+ artifact's build architecture (#1352)
300
+
301
+ o Rebuild protos to support newer grpc versions (#1665)
302
+
303
+ o Support the RISC-V machine architecture name (#1577)
304
+
305
+ o Record date and buildstream version in all build logs (#184)
306
+
307
+ o Updated internals to be compliant with REAPI v2.2 (#1676)
308
+
309
+ o Avoid adding unnecessary data to CAS (#1677, #1678)
310
+
311
+ o Disable unneeded gRPC fork support which sometimes causes crashes (#1679)
312
+
313
+ o Added runtime version checks against buildbox-casd (#1189)
314
+
315
+ o Resolve variables in include files in the context of their project (#1485)
316
+
317
+ o Retry failed builds in non-strict mode (#1460)
318
+
319
+ o Optimize staging of sources (#1680)
320
+
321
+ o Fixed `bst artifact delete` in non-strict mode (#1461)
322
+
323
+ o Allow conditional statements in toplevel of project.conf (#1683)
324
+
325
+ o Fix crashes related to cross-project includes / plugin loading (#1686)
326
+
327
+ o Fix addressing of subproject elements on command line (#1455)
328
+
329
+ o Ensure CAS does not get corrupted on systems without buildbox-fuse (#1700)
330
+
331
+ o Optimization when importing files to/from CAS (#1697, #1698)
332
+
333
+ o Print errors in advance of the interactive prompt (#1394)
334
+
335
+ o Fixed Source.set_ref() code to behave as documented (#1685)
336
+
337
+ o Updated installation instructions (#1705, #1710)
338
+
339
+ o Support interactive build shells with all elements (#1263)
340
+
341
+ o Reduce information encoded in cache keys for elements which do not use the sandbox (#1687)
342
+
343
+
344
+ ==================
345
+ buildstream 1.95.0
346
+ ==================
347
+
348
+ Core
349
+ ----
350
+ o BuildStream now requires Python >= 3.7 and also supports Python 3.10.
351
+
352
+
353
+ API
354
+ ---
355
+ o BREAKING CHANGE: Removed SandboxFlags from public API, replaced this
356
+ with a `root_read_only` boolean parameter to relevant Sandbox APIs.
357
+
358
+
359
+ Format
360
+ ------
361
+ o BREAKING CHANGE: Element names must now bare the `.bst` suffix and not
362
+ contain invalid characters, as was already documented. Now the warning
363
+ is replaced by an unconditional error.
364
+
365
+ o User configuration now has the ability to override source mirrors defined
366
+ by project configuration.
367
+
368
+ o User configuration now has fetch source and track source configurations to
369
+ control what mirrors/URIs can be accessed to obtain sources.
370
+
371
+ CLI
372
+ ---
373
+ o BREAKING CHANGE: Removed `--deps plan` from all commands
374
+
375
+ o The `--pull` option is removed from the `bst shell` and `bst artifact checkout`
376
+ commands, which will now unconditionally try to pull required artifacts.
377
+
378
+ o BREAKING CHANGE: Now the artifact commands only accept element names if specified
379
+ with a `.bst` suffix (including wildcard expressions), and otherwise assumes the
380
+ command means to specify an artifact name.
381
+
382
+
383
+ ==================
384
+ buildstream 1.93.6
385
+ ==================
386
+
387
+ Format
388
+ ------
389
+ o The `script` element no longer has a `layout` configuration directly, and now
390
+ exposes a new `location` dependency configuration instead.
391
+
392
+ o The BuildElement now has a new `location` dependency configuration, allowing
393
+ BuildElement plugins to also stage dependencies into custom locations in
394
+ the sandbox.
395
+
396
+ o BREAKING CHANGE: Stack element dependencies are now hard required to be
397
+ both build and runtime dependencies.
398
+
399
+ o BREAKING CHANGE: The old and deprecated "remote-execution" configuration style
400
+ is no longer supported, one must now specify the "execution-service" block
401
+ and cannot specify a "url" in the "remote-execution" dictionary anymore.
402
+
403
+ o BREAKING CHANGE: Full redesign of remote cache configurations, junction
404
+ configurations related to artifact pulling/pushing policies have been
405
+ removed, users will need to view the new documentation and update
406
+ cache configuration accordingly.
407
+
408
+ Core
409
+ ----
410
+
411
+ o BuildStream now also supports Python 3.9.
412
+
413
+ o BREAKING CHANGE: Changed API signatures to remove Scope type from the API
414
+ - Element.dependencies()
415
+ - Element.stage_dependency_artifacts()
416
+ - Element.search()
417
+ Elements now can only ever see dependencies in their build scope.
418
+
419
+ * BREAKING CHANGE: Changed ScriptElement.layout_add() API to take Element instances
420
+ in place of Element names
421
+
422
+ CLI
423
+ ---
424
+
425
+ o BREAKING CHANGE: `bst shell --use-buildtree` is now a boolean flag.
426
+ `--use-buildtree=ask` and `--use-buildtree=try` are no longer supported.
427
+
428
+ o BREAKING CHANGE: `--remote` options removed, replaced by `--artifact-remote` or `--source-remote`
429
+
430
+ o BREAKING CHANGE: All old obsolete/deprecated commands removed, including:
431
+ - bst fetch (now bst source fetch)
432
+ - bst track (now bst source track)
433
+ - bst checkout (now bst artifact checkout)
434
+ - bst pull (now bst artifact pull)
435
+ - bst push (now bst artifact push)
436
+
437
+
438
+ ==================
439
+ buildstream 1.93.5
440
+ ==================
441
+
442
+ Format
443
+ ------
444
+
445
+ o BREAKING CHANGE: Some project.conf keys are no longer allowed to be specified outside
446
+ of the project.conf file (they cannot be specified in an include file), these include:
447
+ - name
448
+ - element-path
449
+ - min-version
450
+ - plugins
451
+
452
+ CLI
453
+ ---
454
+
455
+ o Add `bst source push` subcommand. This command pushes element sources to a
456
+ remote source cache.
457
+ o `bst source track` now also accepts "build" and "run" as inputs.
458
+
459
+ Artifacts
460
+ ---------
461
+
462
+ o BREAKING CHANGE: Use Remote Asset API for remote artifact and source caches.
463
+ Existing artifact servers are not compatible and need to be updated to the
464
+ latest version which will then allow them to be repopulated with new
465
+ artifacts.
466
+
467
+ Plugins
468
+ -------
469
+
470
+ o tar: filter out 'dev' nodes from the tar archives when extracting them
471
+
472
+ o `buildstream.testing` module now requires pytest >= 6.0.1.
473
+
474
+
475
+ ==================
476
+ buildstream 1.93.4
477
+ ==================
478
+
479
+ Core
480
+ ----
481
+
482
+ o The bwrap sandboxing backend and the SafeHardlinks FUSE filesystem
483
+ have been dropped. buildbox-run is now the only sandboxing backend.
484
+
485
+
486
+ CLI
487
+ ---
488
+
489
+ o `bst shell --build` will now automatically fetch missing sources.
490
+ o `bst build --deps` now also accepts "build" as an input.
491
+ o `bst source fetch --deps` now also accepts "build" and "run" as inputs.
492
+ o `bst artifact pull --deps` now also accepts "build" and "run" as inputs.
493
+ o `bst artifact push --deps` now also accepts "build" and "run" as inputs.
494
+ o Full paths can now be used to address elements across multiple junction boundaries
495
+
496
+
497
+ Format
498
+ ------
499
+
500
+ o BREAKING CHANGE: Now deprecation warnings are suppressed using the `allow-deprecated`
501
+ configuration with the plugin origins in project.conf, instead of on the
502
+ source/element overrides section (See issue #1291)
503
+ o BREAKING CHANGE: The `target` option of junctions has been completely removed,
504
+ Use `link` elements instead.
505
+ o Variables from an element can now be used in source configurations
506
+ o Full paths can now be used to address elements across multiple junction boundaries
507
+ o A new "junction" plugin origin allows loading of plugins across junction boundaries
508
+ o Support buildstream2.conf as a user configuration, allowing parallel installation
509
+ of bst 1 & bst 2
510
+
511
+
512
+ Plugins
513
+ -------
514
+
515
+ o Cache keys will change for all elements that have defined the
516
+ `command-subdir` variable. This is the result of fixing a bug where this
517
+ variable was not included in the cache key correctly.
518
+ o The `pip` element has been removed. Please use the one from bst-plugins-experimental
519
+ o Introduced new `link` element which can be used as a symbolic link to other
520
+ elements or junctions, in the local project or in subprojects.
521
+ o The DownloadableFileSource is now public API
522
+
523
+ API
524
+ ---
525
+
526
+ o `Element.node_subst_vars` and `Element.node_subst_sequence_vars` are now deprecated
527
+ and will get removed in the next version. All config entries are now resolved so there
528
+ is no need to use them anymore.
529
+
530
+
531
+ ==================
532
+ buildstream 1.93.3
533
+ ==================
534
+
535
+ o BREAKING CHANGE: Removed BST_REQUIRED_VERSION_[MAJOR/MINOR] from plugin base class,
536
+ this is now replaced with BST_MIN_VERSION which is now a hard requirement.
537
+
538
+ o BREAKING CHANGE: Removed BST_FORMAT_VERSION from plugin base class, this is no
539
+ longer supported.
540
+
541
+ o buildbox-run is now the default sandbox backend on all platforms
542
+
543
+
544
+ ==================
545
+ buildstream 1.93.2
546
+ ==================
547
+
548
+ Core
549
+ ----
550
+
551
+ o BuildStream now requires Python >= 3.6.
552
+
553
+ o BREAKING CHANGE: Conditional directives `(?)` from files included
554
+ through junctions are evaluated with the options defined in the
555
+ sub project the file comes from.
556
+
557
+ o BREAKING CHANGE: "format-version" is removed and replaced with "min-version",
558
+ which is now required to be specified in project.conf.
559
+
560
+ o Incremental workspace builds are supported again.
561
+
562
+ CLI
563
+ ---
564
+
565
+ o BREAKING CHANGE: `bst shell --sysroot` has been removed. This is no longer
566
+ needed now that we support caching buildtrees in CAS.
567
+
568
+ API
569
+ ---
570
+
571
+ o The `Directory` API has been extended to cover the use cases of more
572
+ element plugins.
573
+
574
+
575
+ ==================
576
+ buildstream 1.93.1
577
+ ==================
578
+
579
+ API
580
+ ---
581
+
582
+ o `ErrorDomain` and `LoadErrorReason` are now available in the public
583
+ `buildstream.exceptions` module for use in test suites of external plugins.
584
+
585
+ Plugins
586
+ -------
587
+
588
+ o The 'git' source will now only fetch a single revision when its ref is set
589
+ to an exact tag in git-describe format (...-0-g...).
590
+
591
+ o When a 'git' source has a ref in git-describe format, only the commit
592
+ ID is used when calculating the element's cache key. This means you can
593
+ change between ref formats without having to rebuild the element.
594
+
595
+
596
+ ==================
597
+ buildstream 1.93.0
598
+ ==================
599
+
600
+ CLI
601
+ ---
602
+
603
+ o BREAKING CHANGE: `bst show` will now output `junction` instead
604
+ of `buildable` for the state of junction elements, as they can't
605
+ be built.
606
+
607
+ API
608
+ ---
609
+
610
+ o BREAKING CHANGE: The entry point groups used for element and source plugins
611
+ are now separate. Elements must be defined in `buildstream.plugins.elements`
612
+ group, and sources in `buildstream.plugins.sources`.
613
+
614
+ o External plugins can now register a `buildstream.tests.source_plugins` entrypoint.
615
+ The entry point can have an arbitrary name, but its value should point to a module
616
+ containing a `register_sources()` method.
617
+ This method should call `register_repo_kind` for all sources you want to have
618
+ tested in BuildStream.
619
+ Plugins authors that do this and believe BuildStream should be testing that
620
+ part of their plugins should open an issue on BuildStream.
621
+
622
+ o BREAKING CHANGE: `Consistency` has been removed and
623
+ `Source.get_consistency()` has been replaced by `Source.is_resolved()`
624
+ and `Source.is_cached()`.
625
+
626
+ `Source.is_resolved()` has a default of `self.get_ref() is not None`,
627
+ so if the only thing your plugin requires for being resolved is to
628
+ have a valid ref, you don't need to do anything there.
629
+
630
+ `Source.is_cached()` is there to replace a `Consistency.CACHED`
631
+ implementation and will need to be implemented by plugin authors.
632
+
633
+ Core
634
+ ----
635
+
636
+ o BREAKING CHANGE: Once a source has been put in the internal BuildStream
637
+ cache, its content will not get checked for validity unless a workspace
638
+ is opened on it. If you see a warning that was not fatal as you fetch
639
+ your source and want to re-test it to make sure it's gone without changing
640
+ its ref (most plugins would handle that correctly), you will need to delete
641
+ the internal source cache first.
642
+
643
+ Plugins
644
+ -------
645
+
646
+ o BREAKING CHANGE: deb plugin have been moved to the bst-plugins-experimental
647
+ repository.
648
+
649
+ Miscellaneous
650
+ -------------
651
+
652
+ o By default the update rate of builstream console output
653
+ (e.g. messages & status updates) when executing a scheduler driven task is
654
+ restricted to once per second, known as the tick, with messages being batched
655
+ in the intervening periods if necessary. This restriction can be lifted with
656
+ `throttle-ui-updates: False` in user configuration. Logging behaviour remains
657
+ unaffected by this configuration.
658
+
659
+
660
+ ==================
661
+ buildstream 1.91.3
662
+ ==================
663
+
664
+ CLI
665
+ ---
666
+
667
+ o BREAKING CHANGE: Commands no longer accept any options related to
668
+ tracking. Please use `bst source track` separately prior to
669
+ running commands, if you need similar functionality. The full list
670
+ of removed options is as follows:
671
+
672
+ * `bst build --track`
673
+ * `bst build --track-all`
674
+ * `bst build --track-except`
675
+ * `bst build --track-cross-junctions` / `bst build -J`
676
+ * `bst build --track-save`
677
+ * `bst source fetch --track`
678
+ * `bst source fetch --track-cross-junctions` / `bst source fetch -J`
679
+ * `bst workspace open --track`
680
+ * `bst workspace reset --track`
681
+
682
+ Plugins
683
+ -------
684
+
685
+ o The 'git' source will now fetch submodules recursively when
686
+ its 'checkout-submodules' option is enabled.
687
+
688
+ API
689
+ ---
690
+
691
+ o Sources may force early staging to cache by advertising
692
+ `BST_KEY_REQUIRES_STAGE`. Sources setting this are staged to the cache to
693
+ generate unique keys. `WorkspaceSource` and `LocalSource` set this.
694
+
695
+ Core
696
+ ----
697
+
698
+ o BuildStream now supports Python 3.8. Note that due to a bug in the 3.8.0
699
+ series, BuildStream requires Python >= 3.8.1 when running on Python 3.8.
700
+
701
+ o BuildStream now also supports the following machine architectures:
702
+
703
+ * powerpc
704
+ * powerpc64
705
+ * powerpc64le
706
+ * sun4v
707
+
708
+
709
+ ==================
710
+ buildstream 1.91.2
711
+ ==================
712
+
713
+ o Various bug fixes.
714
+
715
+
716
+ ==================
717
+ buildstream 1.91.1
718
+ ==================
719
+
720
+ API
721
+ ---
722
+
723
+ o BREAKING CHANGE: 'Element.node_subst_member' has been removed. Please use
724
+ 'Element.node_subst_vars' instead.
725
+
726
+ o BREAKING CHANGE: 'Element.node_subst_list' has been removed. Please use
727
+ 'Element.node_subst_sequence_vars' instead.
728
+
729
+ o BREAKING CHANGE: Workspace incremental builds have been temporarily disabled
730
+
731
+ o A new 'Node.strip_node_info()' is available and allows getting the
732
+ underlying data structure for the given node.
733
+
734
+ o BuildStream now requires Buildbox-casd 0.0.3 at minimum
735
+
736
+
737
+ ==================
738
+ buildstream 1.91.0
739
+ ==================
740
+ This release is a development snapshot, without any compatibility guarantees.
741
+ (The list of changes is non-exhaustive)
742
+
743
+ CLI
744
+ ---
745
+
746
+ o BREAKING CHANGE: `bst track` and `bst fetch` commands are now obsolete.
747
+ Their functionality is provided by `bst source track` and
748
+ `bst source fetch` respectively.
749
+
750
+ o BREAKING CHANGE: The top level commands `checkout`, `push` and `pull` have
751
+ been moved to the `bst artifact` subcommand group and are now obsolete.
752
+ For example, you must now use `bst artifact pull hello.bst`.
753
+
754
+ The behaviour of `checkout` has changed. The previously mandatory LOCATION
755
+ argument should now be specified with the `--directory` option. In addition
756
+ to this, `--tar` is no longer a flag, it is a mutually incompatible option
757
+ to `--directory`. For example, `bst artifact checkout foo.bst --tar foo.tar.gz`.
758
+
759
+ o BREAKING CHANGE: `bst workspace open` now supports the creation of multiple
760
+ elements and allows the user to set a default location for their creation.
761
+ This has meant that the new CLI is no longer backwards compatible with
762
+ BuildStream 1.2.
763
+
764
+ o BREAKING CHANGE: The `bst build` command no longer accepts the `--all`
765
+ option. It now accepts `--deps` with a choice of 'plan' (default) and
766
+ 'all', for equivalent behaviour.
767
+
768
+ o BREAKING CHANGE: `bst init` no longer uses the `--directory` or `-C`
769
+ option. Instead, it (optionally) takes a directory as an argument.
770
+
771
+ o BREAKING CHANGE: The `bst source-bundle` command has been removed. The
772
+ functionality it provided has been replaced by the `--include-build-scripts`
773
+ option of the `bst source checkout` command. To produce a tarball containing
774
+ an element's sources and generated build scripts you can do the command
775
+ `bst source checkout --include-build-scripts --tar foo.tar foo.bst`.
776
+
777
+ A `--compression` option is also supported when using `--tar` which supports
778
+ xz, gz and bz2 compression.
779
+
780
+ o BREAKING CHANGE: The 'auto-init' functionality has been removed. This would
781
+ offer to create a project in the event that bst was run against a directory
782
+ without a project, to be friendly to new users. It has been replaced with
783
+ an error message and a hint instead, to avoid bothering folks that just
784
+ made a mistake.
785
+
786
+ o BREAKING CHANGE: The unconditional 'Are you sure?' prompts have been
787
+ removed. These would always ask you if you were sure when running
788
+ 'bst workspace close --remove-dir' or 'bst workspace reset'. They got in
789
+ the way too often.
790
+
791
+ o Added `bst artifact show` subcommand which shows the cached status
792
+ of an artifact. If project/user remotes are available, they are checked
793
+ for the target elements (and their deps, if specified). Artifacts available
794
+ in remotes are displayed as "available".
795
+
796
+ o Added `bst artifact list-contents` subcommand which can display the names
797
+ of files in artifacts in your artifact cache, either by element name
798
+ or by direct artifact reference. --long option can be used to display more
799
+ information; file type and size.
800
+
801
+ o Added `bst artifact delete` subcommand. This command removes artifacts from
802
+ the local cache. Multiple element names and artifact refs can be specified
803
+ as arguments.
804
+
805
+ o Added `bst artifact log` subcommand for viewing build logs.
806
+
807
+ o Added new `bst source checkout` command to checkout sources of an element.
808
+
809
+ o Running commands without elements specified will now attempt to use
810
+ the default targets defined in the project configuration.
811
+ If no default target is defined, all elements in the project will be used.
812
+
813
+ o bst 'build' now has '--remote, -r' option, inline with bst 'push' & 'pull'.
814
+ Providing a remote will limit build's pull/push remote actions to the given
815
+ remote specifically, ignoring those defined via user or project configuration.
816
+
817
+ o `bst shell --sysroot` now takes any directory that contains a sysroot,
818
+ instead of just a specially-formatted build-root with a `root` and `scratch`
819
+ subdirectory.
820
+
821
+ o Creating a build shell through the interactive mode or `bst shell --build`
822
+ will now use the cached build tree if available locally. It is now easier to
823
+ debug local build failures.
824
+
825
+
826
+ Plugins
827
+ -------
828
+
829
+ o BREAKING CHANGE: cmake, make, makemaker, meson, modulebuild and qmake
830
+ plugins have been moved to the bst-plugins-experimental repository.
831
+
832
+ o BREAKING CHANGE: The 'manual' element lost its default 'MAKEFLAGS' and 'V'
833
+ environment variables. There is already a 'make' element with the same
834
+ variables. Note that this is a breaking change, it will require users to
835
+ make changes to their .bst files if they are expecting these environment
836
+ variables to be set.
837
+
838
+ o BREAKING CHANGE: The `git` plugin does not create a local `.git`
839
+ repository by default. If `git describe` is required to work, the
840
+ plugin has now a tag tracking feature instead. This can be enabled
841
+ by setting 'track-tags'.
842
+
843
+ o Added new `pip` source plugin for downloading python packages using pip,
844
+ based on requirements files from previous sources.
845
+
846
+
847
+ API
848
+ ---
849
+
850
+ o BREAKING CHANGE: The yaml API has been rewritten entirely. When accessing
851
+ configuration from YAML, please use the new `Node` classes exposed in the
852
+ `buildstream` package. See the documentation for how to use it.
853
+
854
+ This change has also removed the need of a YAML cache as it proved to no
855
+ longer be of benefit.
856
+
857
+ o There is a new sandbox API for command batching. It is used for build,
858
+ script, and compose elements.
859
+
860
+ o Source plugins may now request access access to previous during track and
861
+ fetch by setting `BST_REQUIRES_PREVIOUS_SOURCES_TRACK` and/or
862
+ `BST_REQUIRES_PREVIOUS_SOURCES_FETCH` attributes.
863
+
864
+
865
+ Configuration Format
866
+ --------------------
867
+
868
+ o Elements may now specify 'build-depends' and 'runtime-depends' fields
869
+ to avoid having to specify the dependency type for every entry in
870
+ 'depends'.
871
+
872
+ o Junction elements may now specify another junction as their target, using
873
+ the `target` configuration option.
874
+
875
+ o Elements may now specify cross-junction dependencies as simple strings
876
+ using the format '{junction-name}:{element-name}'.
877
+
878
+
879
+ Core
880
+ ----
881
+
882
+ o BREAKING CHANGE: Reverted the default behaviour of junctions. Subproject
883
+ elements will no longer interact with the parent project's remote (by
884
+ default). To enable this behaviour, a new "cache-junction-elements" boolean
885
+ can be optionally declared as part of your junction element's configuration.
886
+ Additionally, a new "ignore-junction-remotes" option has also been
887
+ introduced. This allows you to completely ignore subproject remotes when
888
+ using the parent project.
889
+
890
+ o BREAKING CHANGE: Symlinks are no longer resolved during staging and absolute
891
+ symlinks are now preserved instead of being converted to relative symlinks.
892
+
893
+ o BREAKING CHANGE: Overlap whitelists now require absolute paths. This allows
894
+ use of variables such as %{prefix} and matches the documentation.
895
+
896
+ o BREAKING CHANGE: Default strip-commands have been removed as they are too
897
+ specific. Recommendation if you are building in Linux is to use the
898
+ ones being used in freedesktop-sdk project, for example
899
+
900
+ o All elements should now be suffixed with `.bst`.
901
+ Attempting to use an element that does not have the `.bst` extension,
902
+ will result in a warning.
903
+
904
+ o Failed builds are included in the cache as well.
905
+ `bst artifact checkout` will provide anything in `%{install-root}`.
906
+ A build including cached fails will cause any dependant elements
907
+ to not be scheduled and fail during artifact assembly,
908
+ and display the retry prompt during an interactive session.
909
+
910
+ o Added Basic support for the BuildBox sandbox. The sand box will only be
911
+ used if the environment variable BST_FORCE_SANDBOX is set to `buildbox`.
912
+ This is the first step in transitioning to only using BuildBox for local
913
+ sandboxing.
914
+
915
+
916
+ Artifacts
917
+ ---------
918
+
919
+ o BREAKING CHANGE: Artifact as a Proto. The caching of BuildStream artifacts
920
+ has changed from a reference based impelementation. Existing artifacts and
921
+ artifact servers are not compatible, as such remote artifact servers need to
922
+ be updated to the latest version which will then allow them to be repopulated
923
+ with new artifacts.
924
+
925
+ o BREAKING CHANGE: The project name of dependencies have been included when
926
+ calculating the cache key. This was required to keep inline with the
927
+ artifact proto. Additionally, for strict mode, the name of dependencies have
928
+ also been included in the calculation of the cache key. This is again to
929
+ keep inline with the proto, but also to maintain symmetry in the behaviour
930
+ between the strict and non-strict modes.
931
+
932
+ o Due to the element `build tree` being cached in the respective artifact their
933
+ size in some cases has significantly increased. In *most* cases the build trees
934
+ are not utilised when building targets, as such by default bst 'pull' & 'build'
935
+ will not fetch build trees from remotes. This behaviour can be overridden with
936
+ the cli main option '--pull-buildtrees', or the user configuration cache group
937
+ option 'pull-buildtrees = True'. The override will also add the build tree to
938
+ already cached artifacts. When attempting to populate an artifactcache server
939
+ with cached artifacts, only 'complete' elements can be pushed. If the element
940
+ is expected to have a populated build tree then it must be cached before pushing.
941
+
942
+ o Artifacts can now be cached explicitly with an empty `build tree` when built.
943
+ Element types without a build-root were already cached with an empty build tree
944
+ directory, this can now be extended to all or successful artifacts to save on cache
945
+ overheads. The cli main option '--cache-buildtrees' or the user configuration cache
946
+ group option 'cache-buildtrees' can be set as 'always', 'auto' or 'never', with
947
+ the default being 'auto'. Note, as the cache-key for the artifact is independent of
948
+ the cached build tree input it will remain unaltered, however the availbility of the
949
+ build tree content may differ.
950
+
951
+
952
+ Workspaces
953
+ ----------
954
+
955
+ o Due to enabling the use of relative workspaces, "Legacy" workspaces
956
+ may need to be closed and remade before the changes will affect them.
957
+ Downgrading after using this feature may result in workspaces
958
+ not functioning correctly
959
+
960
+ o Opening a workspace now creates a .bstproject.yaml file that allows BuildStream
961
+ commands to be run from a workspace that is not inside a project.
962
+
963
+ o Specifying an element is now optional for most commands when BuildStream is run
964
+ from inside a workspace. See CLI reference for more details.
965
+
966
+ o Added Documentation on how to create out of source builds. This includes the
967
+ new the `conf-root` variable to make the process easier. And there has been
968
+ a bug fix to workspaces so they can be build in workspaces too.
969
+
970
+
971
+ Miscellaneous
972
+ -------------
973
+
974
+ o Generate Docker images from built artifacts using
975
+ `contrib/bst-docker-import` script.
976
+
977
+
978
+ =================
979
+ buildstream 1.1.5
980
+ =================
981
+
982
+ o Added a `--tar` option to `bst checkout` which allows a tarball to be
983
+ created from the artifact contents.
984
+
985
+ o Fetching and tracking will consult mirrors defined in project config,
986
+ and the preferred mirror to fetch from can be defined in the command
987
+ line or user config.
988
+
989
+ o Added new `remote` source plugin for downloading file blobs
990
+
991
+ o Added support for the new include '(@)' directive in project.conf and .bst files
992
+
993
+
994
+ =================
995
+ buildstream 1.1.4
996
+ =================
997
+
998
+ o `bst workspace` commands and `bst track` will substitute their
999
+ source elements when performing those operations, e.g. performing
1000
+ `bst track` on a filter element will track the sources on the
1001
+ element that it depends on (if it has sources).
1002
+
1003
+ o Added new simple `make` element
1004
+
1005
+ o Switch to Remote Execution CAS-based artifact cache on all platforms.
1006
+
1007
+ Artifact servers need to be migrated.
1008
+
1009
+ o BuildStream now requires python version >= 3.5
1010
+
1011
+ o BuildStream will now automatically clean up old artifacts when it
1012
+ runs out of space. The exact behavior is configurable in the user's
1013
+ buildstream.conf.
1014
+
1015
+
1016
+ =================
1017
+ buildstream 1.1.3
1018
+ =================
1019
+
1020
+ o Added new `bst init` command to initialize a new project.
1021
+
1022
+ o Cross junction tracking is now disabled by default for projects
1023
+ which can support this by using project.refs ref-storage
1024
+
1025
+ New options have been added to explicitly enable cross-junction
1026
+ tracking.
1027
+
1028
+ o Failed jobs are now summarised at the end of a build.
1029
+
1030
+ Use `--verbose` and `--no-verbose` to adjust the amount of detail given.
1031
+
1032
+ o BuildElements' `configure-commands` are only run once for
1033
+ workspaces now, which allows for incremental builds.
1034
+
1035
+ Appropriate API for plugins is also exposed through
1036
+ `Element.prepare`.
1037
+
1038
+ o The `cmake` plugin now supports building with ninja with the
1039
+ newly added `generator` configuration option.
1040
+
1041
+ o `bst workspace close` and `bst workspace reset` now support multiple
1042
+ elements. All elements can be specified using `--all`.
1043
+
1044
+ o The elements whose cache keys had to be determined during the build
1045
+ are summarised at the end of the build.
1046
+
1047
+ o Fixed versioning introspection to be dynamic, many users use
1048
+ a developer install mode so they can update with git, now the
1049
+ version information is always up to date in logs.
1050
+
1051
+ This causes a minor API break: The --version output now only
1052
+ outputs the version.
1053
+
1054
+
1055
+ =================
1056
+ buildstream 1.1.2
1057
+ =================
1058
+
1059
+ o New ref-storage option allows one to store source refs, such
1060
+ as git shas, in one central project.refs file instead of inline
1061
+ with the source declarations.
1062
+
1063
+ o Deprecated `--track-save` optionality in `bst build`, this
1064
+ does not make sense to support now that we have project.refs.
1065
+
1066
+ o Added the `sandbox` configuration option which can be used in
1067
+ `project.conf` and elements, to control the user ID and group ID
1068
+ used in build sandboxes.
1069
+
1070
+ o Added new `deb` source implementation, for staging of downloaded
1071
+ deb package files.
1072
+
1073
+
1074
+ =================
1075
+ buildstream 1.1.1
1076
+ =================
1077
+
1078
+ o New project configuration controlling how the sandbox behaves
1079
+ when `bst shell` is used; allowing projects to provide a more
1080
+ functional shell environment.
1081
+
1082
+ o The `bst shell` command now has a `--mount` option allowing
1083
+ users to mount files and directories into the sandbox for
1084
+ testing purposes.
1085
+
1086
+ o Log lines are now configurable with the new "message-format"
1087
+ user configuration, allowing one to express optional fields
1088
+ such as microsecond precision and wallclock time.
1089
+
1090
+ o Newly added filter element
1091
+
1092
+ o Git source plugin now allows disabling of submodule checkouts
1093
+
1094
+ o In the same way we allow overriding element configurations
1095
+ by their 'kind' in project.conf, we now support the same
1096
+ for source plugin configurations.
1097
+
1098
+ o Tar and zip sources now automatically recall an `etag`
1099
+ from the http headers, optimizing tracking of tarballs
1100
+ significantly (issue #62)
1101
+
1102
+
1103
+ =================
1104
+ buildstream 1.1.0
1105
+ =================
1106
+
1107
+ o Multiple artifact caches are now supported in project and
1108
+ user configuration with a priority order (issue #85)
1109
+ o Add junction support for subprojects
1110
+ o Changes towards incremental builds in workspaces
1111
+ o `bst shell --build` now creates true build sandbox
1112
+ o Many bug fixes
1113
+
1114
+
1115
+ =================
1116
+ buildstream 1.0.0
1117
+ =================
1118
+ First stable release of BuildStream
1119
+
1120
+ BuildStream 1.0.0 is all about API stability - for the past months we
1121
+ have been reviewing our various API surfaces, implementing strategies
1122
+ for revisioning of our interfaces and cleaning up. Long term stability
1123
+ is very important for build reproducibility over time, and this release
1124
+ is the first promise we are making on any API surfaces.
1125
+
1126
+ Stable API surfaces include:
1127
+ o The command line interface
1128
+ o The YAML user configuration file format
1129
+ o The YAML project `.bst` file format
1130
+ o The core Python module imported by external plugins