This is an automated email from the ASF dual-hosted git repository.
tvb pushed a change to branch tristan/sboms
in repository https://gitbox.apache.org/repos/asf/buildstream.git
discard 091852812 local source: Implement collect_source_info()
discard 427975f25 downloadablefilesource.py: Implement collect_source_info()
discard 5e01c8ccc source.py: Add collect_source_info() abstract method.
discard 665ec350b source.py: Added missing documentation for AliasSubstitution
add 1da1533ee _loader: Use the sort algorithm from Python 3.12 for
dependencies
add e3c783dfd tests/cachekey: Cache key test in core no longer depends on
plugins
add 3831b5e60 tests/cachekey: Expand test project for cache key checks
add ba7005207 Merge pull request #1993 from apache/juerg/sort
add 4f91baa91 NEWS: prepare for 2.4.1
add be81ef294 ci: Update wheel name to normalized name
add de9f5052b Use fixed dependencies for generating the docs
add 70fa52356 Merge pull request #1996 from apache/abderrahim/2.4.1
add 86436120c source.py: Added missing documentation for AliasSubstitution
add 79cbf87a2 source.py: Add collect_source_info() abstract method.
add 73845384d downloadablefilesource.py: Implement collect_source_info()
add 680acae85 local source: Implement collect_source_info()
add 1c31343eb frontend: Support %{source-info} in `bst show`
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (091852812)
\
N -- N -- N refs/heads/tristan/sboms (1c31343eb)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/wheel-helpers/test-wheel-manylinux.sh | 2 +-
NEWS | 14 +
NOTICE | 5 +
src/buildstream/_frontend/cli.py | 1 +
src/buildstream/_frontend/widget.py | 17 +
src/buildstream/_loader/listsort.c | 1293 ++++++++++++++++++++
src/buildstream/_loader/loadelement.pyx | 12 +-
src/buildstream/downloadablefilesource.py | 2 +-
src/buildstream/plugins/sources/local.py | 2 +-
src/buildstream/source.py | 22 +
tests/cachekey/cachekey.py | 7 +-
tests/cachekey/project/elements/sort0.bst | 7 +
tests/cachekey/project/elements/sort0.expected | 1 +
.../project/elements/sort1.bst} | 2 +-
tests/cachekey/project/elements/sort1.expected | 1 +
.../project/elements/sort2.bst} | 2 +-
tests/cachekey/project/elements/sort2.expected | 1 +
.../project/elements/sort3.bst} | 2 +-
tests/cachekey/project/elements/sort3.expected | 1 +
.../project/elements/sort4.bst} | 2 +-
tests/cachekey/project/elements/sort4.expected | 1 +
.../project/elements/sort5.bst} | 2 +-
tests/cachekey/project/elements/sort5.expected | 1 +
.../project/elements/sort6.bst} | 2 +-
tests/cachekey/project/elements/sort6.expected | 1 +
.../project/elements/sort7.bst} | 2 +-
tests/cachekey/project/elements/sort7.expected | 1 +
.../project/elements/sort8.bst} | 1 +
tests/cachekey/project/elements/sort8.expected | 1 +
.../project/elements/sort9.bst} | 1 +
tests/cachekey/project/elements/sort9.expected | 1 +
tests/cachekey/project/target.bst | 10 +
tests/cachekey/project/target.expected | 2 +-
tox.ini | 6 +-
34 files changed, 1407 insertions(+), 21 deletions(-)
create mode 100644 src/buildstream/_loader/listsort.c
create mode 100644 tests/cachekey/project/elements/sort0.bst
create mode 100644 tests/cachekey/project/elements/sort0.expected
copy tests/{format/link/conditional/elements/target.bst =>
cachekey/project/elements/sort1.bst} (51%)
create mode 100644 tests/cachekey/project/elements/sort1.expected
copy tests/{format/link/conditional/elements/target.bst =>
cachekey/project/elements/sort2.bst} (51%)
create mode 100644 tests/cachekey/project/elements/sort2.expected
copy tests/{format/link/conditional/elements/target.bst =>
cachekey/project/elements/sort3.bst} (51%)
create mode 100644 tests/cachekey/project/elements/sort3.expected
copy tests/{format/link/conditional/elements/target.bst =>
cachekey/project/elements/sort4.bst} (51%)
create mode 100644 tests/cachekey/project/elements/sort4.expected
copy tests/{format/link/conditional/elements/target.bst =>
cachekey/project/elements/sort5.bst} (51%)
create mode 100644 tests/cachekey/project/elements/sort5.expected
copy tests/{format/link/conditional/elements/target.bst =>
cachekey/project/elements/sort6.bst} (51%)
create mode 100644 tests/cachekey/project/elements/sort6.expected
copy tests/{format/link/conditional/elements/target.bst =>
cachekey/project/elements/sort7.bst} (51%)
create mode 100644 tests/cachekey/project/elements/sort7.expected
copy tests/{frontend/default-target/elements/dummy_2.bst =>
cachekey/project/elements/sort8.bst} (92%)
create mode 100644 tests/cachekey/project/elements/sort8.expected
copy tests/{frontend/default-target/elements/dummy_2.bst =>
cachekey/project/elements/sort9.bst} (92%)
create mode 100644 tests/cachekey/project/elements/sort9.expected