You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2019/01/31 18:05:10 UTC

[mynewt-newt] branch master updated (9bc6d19 -> 6ccb3a1)

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

ccollins pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-newt.git.


    from 9bc6d19  newt: Remove "imposter packages" from build graph
     new 7149632  Support the `$import <array-of-filenames>` syntax
     new 3816732  ycfg: Store file origin in each node
     new 543bd46  Move conversion to YAML string: newtutil->ycfg
     new 6ccb3a1  Start using the new `config` package for YAML cfg.

The 1346 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:
 newt/cli/vars.go           |   7 +-
 newt/config/config.go      | 205 +++++++++++++++++++++++++++++++++++++++++++++
 newt/config/tree.go        |  91 ++++++++++++++++++++
 newt/mfg/misc.go           |   5 +-
 newt/newtutil/newtutil.go  |  35 +-------
 newt/pkg/bsp_package.go    |   4 +-
 newt/pkg/localpackage.go   |  15 ++--
 newt/project/project.go    |   4 +-
 newt/repo/repo.go          |   4 +-
 newt/repo/version.go       |   3 +-
 newt/settings/settings.go  |  11 ++-
 newt/target/target.go      |   6 +-
 newt/toolchain/compiler.go |   4 +-
 newt/ycfg/ycfg.go          |  95 +++++++++++++++++----
 util/fileinfo.go           |  43 ++++++++++
 15 files changed, 453 insertions(+), 79 deletions(-)
 create mode 100644 newt/config/config.go
 create mode 100644 newt/config/tree.go
 create mode 100644 util/fileinfo.go