You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2021/02/19 10:40:09 UTC

[buildstream] branch master updated (a7fd921 -> d4cb3be)

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 a7fd921  Merge pull request #1444 from apache/tristan/fix-remote-execution-tests
     add 77f2f48  _frontend/cli.py: Removing support for deprecated commands.
     add b05dd1f  _remotespec.py: Adding RemoteSpec.new_from_string()
     add 4b90394  Moving HostMount from _project.py -> types.py
     add 97deb41  Moving some cython functions into _utils.pyx
     add d2c9c89  Support specifying remotes on the command line.
     add f0e2e79  doc: Documenting how to specify remotes on the command line.
     add a292743  NEWS: Updating with some new breaking changes
     new d4cb3be  Merge pull request #1438 from apache/tristan/remote-cli-options

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:
 .pylintrc                                |   2 -
 NEWS                                     |   9 +
 doc/source/using_commands.rst            |  71 ++++++
 doc/source/using_config.rst              |  20 +-
 setup.py                                 |   2 -
 src/buildstream/_context.py              | 157 +++++++-----
 src/buildstream/_frontend/app.py         |   2 +-
 src/buildstream/_frontend/cli.py         | 412 +++++++++++++++++-------------
 src/buildstream/_loader/_loader.pyi      |   1 -
 src/buildstream/_loader/_loader.pyx      |  52 ----
 src/buildstream/_loader/loader.py        |   4 +-
 src/buildstream/_project.py              |  31 +--
 src/buildstream/_remotespec.py           | 128 +++++++++-
 src/buildstream/_scheduler/jobs/_job.pyi |   1 -
 src/buildstream/_scheduler/jobs/_job.pyx |  15 --
 src/buildstream/_scheduler/jobs/job.py   |   2 +-
 src/buildstream/_stream.py               | 422 ++++++++++++++++++++-----------
 src/buildstream/_utils.pyi               |   2 +
 src/buildstream/_utils.pyx               |  50 ++++
 src/buildstream/types.py                 |  22 +-
 tests/frontend/completions.py            |  13 +-
 tests/frontend/help.py                   |   4 +-
 tests/frontend/pull.py                   |  12 +-
 tests/frontend/push.py                   |  35 ++-
 tests/sourcecache/fetch.py               |   4 +-
 25 files changed, 969 insertions(+), 504 deletions(-)
 delete mode 100644 src/buildstream/_loader/_loader.pyi
 delete mode 100644 src/buildstream/_loader/_loader.pyx
 delete mode 100644 src/buildstream/_scheduler/jobs/_job.pyi
 delete mode 100644 src/buildstream/_scheduler/jobs/_job.pyx


[buildstream] 01/01: Merge pull request #1438 from apache/tristan/remote-cli-options

Posted by tv...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit d4cb3be3bd51fa710218d434643c87d37b686b6c
Merge: a7fd921 a292743
Author: Tristan Van Berkom <tr...@codethink.co.uk>
AuthorDate: Fri Feb 19 19:40:01 2021 +0900

    Merge pull request #1438 from apache/tristan/remote-cli-options
    
    Tristan/remote cli options

 .pylintrc                                |   2 -
 NEWS                                     |   9 +
 doc/source/using_commands.rst            |  71 ++++++
 doc/source/using_config.rst              |  20 +-
 setup.py                                 |   2 -
 src/buildstream/_context.py              | 157 +++++++-----
 src/buildstream/_frontend/app.py         |   2 +-
 src/buildstream/_frontend/cli.py         | 412 +++++++++++++++++-------------
 src/buildstream/_loader/_loader.pyi      |   1 -
 src/buildstream/_loader/_loader.pyx      |  52 ----
 src/buildstream/_loader/loader.py        |   4 +-
 src/buildstream/_project.py              |  31 +--
 src/buildstream/_remotespec.py           | 128 +++++++++-
 src/buildstream/_scheduler/jobs/_job.pyi |   1 -
 src/buildstream/_scheduler/jobs/_job.pyx |  15 --
 src/buildstream/_scheduler/jobs/job.py   |   2 +-
 src/buildstream/_stream.py               | 422 ++++++++++++++++++++-----------
 src/buildstream/_utils.pyi               |   2 +
 src/buildstream/_utils.pyx               |  50 ++++
 src/buildstream/types.py                 |  22 +-
 tests/frontend/completions.py            |  13 +-
 tests/frontend/help.py                   |   4 +-
 tests/frontend/pull.py                   |  12 +-
 tests/frontend/push.py                   |  35 ++-
 tests/sourcecache/fetch.py               |   4 +-
 25 files changed, 969 insertions(+), 504 deletions(-)