This is an automated email from the ASF dual-hosted git repository.
akitouni pushed a change to branch abderrahim/junction-aliases
in repository https://gitbox.apache.org/repos/asf/buildstream.git
omit f3578aa88 Add automatic mapping of subproject aliases
omit b76297d40 fixup! Support mapping subproject aliases to aliases of the
parent project
omit b448e4c11 Support mapping subproject aliases to aliases of the parent
project
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
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 (f3578aa88)
\
N -- N -- N refs/heads/abderrahim/junction-aliases (cf2fc83c7)
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/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 +
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/pluginfactory.py | 5 +
src/buildstream/_pluginfactory/pluginorigin.py | 9 +-
.../{sourcefactory.py => sourcemirrorfactory.py} | 40 +++--
src/buildstream/_project.py | 75 ++++++---
src/buildstream/_site.py | 3 +
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 +++++
20 files changed, 502 insertions(+), 96 deletions(-)
copy src/buildstream/_pluginfactory/{sourcefactory.py =>
sourcemirrorfactory.py} (54%)
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