This is an automated email from the ASF dual-hosted git repository.
juergbi pushed a change to branch juerg/junction-aliases
in repository https://gitbox.apache.org/repos/asf/buildstream.git
omit 1cb4c9fb9 Support mapping subproject aliases to aliases of the parent
project
add fe3201f78 _sourcetests/mirror.py: Remove
test_mirror_junction_from_includes()
add bda3a6829 Merge pull request #1904 from apache/abderrahim/drop-test
add 3712e6920 _pluginfactory: Additional type checking
add cf5893578 Merge pull request #1905 from apache/abderrahim/type-checking
add 5c0803f71 ci: use docker compose v2
add 9e84d3de2 Remove unused 'default' values for bst init
add 782c53a6c Update default version for bst init
add e77ef8cdd Merge pull request #1907 from
apache/abderrahim/docker-compose
add 2fe4c7bd1 Adding source mirror plugins
add 4e342c576 _project.py: Use SourceMirror objects
add 6602afcae doc/source/core_framework.rst: Add SourceMirror to the index
add 196374745 tests/frontend/mirror.py: Added test for source mirror
plugins
add 434691fbd Source/SourceMirror: Extend API with extra_data
add 217bbbae1 Merge pull request #1903 from
apache/abderrahim/mirror-plugins
add a7436e830 ci: Update cibuildwheel for releases
add 23147f2e4 Merge pull request #1908 from apache/abderrahim/fix-release
add e68b3087c Deprioritize search_subprojects_dir
add 2ea9e7e25 Merge pull request #1902 from nanonyme/buildbox-priority
add dca2ac445 Support mapping subproject aliases to aliases of the parent
project
add f279b94bf fixup! Support mapping subproject aliases to aliases of the
parent project
add cf2fc83c7 Add automatic mapping of subproject aliases
new 05d4c14fb fixup! fixup! Support mapping subproject aliases to aliases
of the parent project
new 3d210e3c7 doc: Document `disallow-subproject-uris`
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 (1cb4c9fb9)
\
N -- N -- N refs/heads/juerg/junction-aliases (3d210e3c7)
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.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/run-ci.sh | 12 +-
.github/workflows/ci.yml | 2 +-
.github/workflows/merge.yml | 2 +-
.github/workflows/release.yml | 4 +-
doc/source/core_framework.rst | 1 +
doc/source/format_project.rst | 31 ++++
src/buildstream/__init__.py | 1 +
src/buildstream/_frontend/app.py | 21 +--
src/buildstream/_frontend/cli.py | 2 +-
src/buildstream/_pluginfactory/__init__.py | 1 +
src/buildstream/_pluginfactory/elementfactory.py | 16 +-
src/buildstream/_pluginfactory/pluginfactory.py | 13 +-
src/buildstream/_pluginfactory/pluginorigin.py | 9 +-
src/buildstream/_pluginfactory/sourcefactory.py | 18 ++-
.../_pluginfactory/sourcemirrorfactory.py | 69 +++++++++
src/buildstream/_project.py | 97 ++++++++----
src/buildstream/_site.py | 3 +
src/buildstream/_testing/_sourcetests/mirror.py | 55 -------
src/buildstream/element.py | 6 +-
src/buildstream/plugins/elements/junction.py | 14 +-
src/buildstream/plugins/sourcemirrors/default.py | 44 ++++++
src/buildstream/source.py | 92 +++++++----
src/buildstream/sourcemirror.py | 168 +++++++++++++++++++++
src/buildstream/utils.py | 2 +-
tests/frontend/mirror.py | 78 ++++++++++
tests/frontend/project/sourcemirrors/mirror.py | 36 +++++
26 files changed, 635 insertions(+), 162 deletions(-)
create mode 100644 src/buildstream/_pluginfactory/sourcemirrorfactory.py
create mode 100644 src/buildstream/plugins/sourcemirrors/default.py
create mode 100644 src/buildstream/sourcemirror.py
create mode 100644 tests/frontend/project/sourcemirrors/mirror.py