This is an automated email from the ASF dual-hosted git repository.

tvb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/buildstream.git


    from 961571320 Merge pull request #2007 from apache/abderrahim/setuptools
     add afcda2fc2 source.py: Added missing documentation for AliasSubstitution
     add 8b63240a0 source.py: Add collect_source_info() abstract method.
     add fcf4715a9 workspace source: Implement collect_source_info()
     add ef7b9b208 local source: Implement collect_source_info()
     add 258c703ee downloadablefilesource.py: Implement collect_source_info()
     add 1c51fb7d1 plugins/sources/tar.py: Documentation updates
     add 4dd5bc9b3 plugins/sources/remote.py: Documentation updates
     add 1387355b6 frontend: Support %{source-info} in `bst show`
     add 500810dc2 tests/frontend/show.py: Add tests for new %{source-info} 
format
     add 1152f151d tox.ini: Fix `tox -e man` manpage regeneration
     add b8f453277 man: Updated man pages because of changed `bst show` 
interface.
     new 47923cac4 Merge pull request #1997 from apache/tristan/sboms

The 1 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:
 doc/source/hacking/writing_documentation.rst       |   6 +-
 man/bst-artifact-checkout.1                        |   8 +-
 man/bst-artifact-delete.1                          |   2 +-
 man/bst-artifact-list-contents.1                   |   8 +-
 man/bst-artifact-log.1                             |   2 +-
 man/bst-artifact-pull.1                            |  32 +-
 man/bst-artifact-push.1                            |  32 +-
 man/bst-artifact-show.1                            |   2 +-
 man/bst-artifact.1                                 |  46 +-
 man/bst-build.1                                    |  28 +-
 man/bst-help.1                                     |   2 +-
 man/bst-init.1                                     |  14 +-
 man/bst-shell.1                                    |  30 +-
 man/bst-show.1                                     |  87 ++--
 man/bst-source-checkout.1                          |   8 +-
 man/bst-source-fetch.1                             |  30 +-
 man/bst-source-push.1                              |  30 +-
 man/bst-source-track.1                             |  30 +-
 man/bst-source.1                                   |   2 +-
 man/bst-workspace-close.1                          |   2 +-
 man/bst-workspace-list.1                           |   2 +-
 man/bst-workspace-open.1                           |   2 +-
 man/bst-workspace-reset.1                          |   2 +-
 man/bst-workspace.1                                |   2 +-
 man/bst.1                                          |   8 +-
 src/buildstream/__init__.py                        |  10 +-
 src/buildstream/_frontend/cli.py                   |   1 +
 src/buildstream/_frontend/widget.py                |  24 ++
 src/buildstream/downloadablefilesource.py          | 105 ++++-
 src/buildstream/plugins/sources/local.py           |  34 +-
 src/buildstream/plugins/sources/remote.py          |  12 +-
 src/buildstream/plugins/sources/tar.py             |  12 +-
 src/buildstream/plugins/sources/workspace.py       |  45 +-
 src/buildstream/source.py                          | 470 ++++++++++++++++++++-
 tests/frontend/show.py                             | 192 +++++++++
 .../source-info/elements/extradata.bst}            |   2 +-
 .../base.bst => source-info/elements/local.bst}    |   2 +-
 .../source-info/elements/tar-custom-version.bst    |   8 +
 .../frontend/source-info/elements/tar-explicit.bst |   7 +
 .../frontend/source-info/elements/tar-no-micro.bst |   6 +
 tests/frontend/source-info/elements/tar.bst        |   6 +
 .../source-info/elements/testsource.bst}           |   2 +-
 .../source-info/elements/unimplemented.bst}        |   2 +-
 tests/frontend/source-info/files/testfile          |   1 +
 .../source-info/plugins/extradata.py}              |  19 +-
 .../source-info/plugins/testsource.py}             |   8 +-
 .../source-info/plugins/unimplemented.py}          |   5 +-
 tests/frontend/source-info/project.conf            |  16 +
 tox.ini                                            |  11 +-
 49 files changed, 1162 insertions(+), 255 deletions(-)
 copy tests/{format/invalid-keys/no-path-specified.bst => 
frontend/source-info/elements/extradata.bst} (56%)
 copy tests/frontend/{strict-depends/elements/base.bst => 
source-info/elements/local.bst} (61%)
 create mode 100644 tests/frontend/source-info/elements/tar-custom-version.bst
 create mode 100644 tests/frontend/source-info/elements/tar-explicit.bst
 create mode 100644 tests/frontend/source-info/elements/tar-no-micro.bst
 create mode 100644 tests/frontend/source-info/elements/tar.bst
 copy tests/{format/invalid-keys/no-path-specified.bst => 
frontend/source-info/elements/testsource.bst} (54%)
 copy tests/{format/invalid-keys/no-path-specified.bst => 
frontend/source-info/elements/unimplemented.bst} (51%)
 create mode 100644 tests/frontend/source-info/files/testfile
 copy tests/{plugins/loading/plugins/sources/deprecated/deprecated.py => 
frontend/source-info/plugins/extradata.py} (52%)
 copy tests/{plugins/sample-plugins/src/sample_plugins/sources/sample.py => 
frontend/source-info/plugins/testsource.py} (67%)
 copy tests/{plugins/loading/plugins/sources/found/found.py => 
frontend/source-info/plugins/unimplemented.py} (88%)
 create mode 100644 tests/frontend/source-info/project.conf

Reply via email to