This is an automated email from the git hooks/post-receive script.
Ryan Arnold pushed a change to branch master in repository toolchain/tcwg-release-tools.
from 7552cee Runs tracking rc/rel tags need to checkout release branch adds d3848d1 Generate release notes with python scripting. adds 622da8d Re-organize python code to use a directory module layout adds 1dc9a5a Replace hardcoded GCC '5' with a variable for determining GCC [...] adds 4ae6f70 Remove non-conformant comments and add docstrings to proj.py. adds 9f955d2 Remove non-conformant comments and add docstrings to series.py. adds 0efe81a Remove class PV and make Vendor and Package baseclasses. adds 9dac4d4 Add --nopersist to rn.py. adds 737c797 Add support for generating 'release' release notes using tags. adds 897b858 Correct test expectations and remove spurious print statements. adds a52c1b3 Replaced Series __format__ with a cleaner implementation and [...] adds 2e634bb Move 'cd' context out of linaropy/git/gitrepo.py into linaropy/cd.py adds 86dce83 linaropy/series.py: Validate that 'rcN' is an integer when cr [...] adds 0c5d8bc rn.py: Fix rn_template.log() invocation. adds fefa752 rn.py: If jinja can't generate output, print exception and le [...] adds a4102e7 Move prompt for csv file out or rngen.py into rn.py. adds 3cde4a2 Reorder code so user is only asked once each iteration if the [...] adds c9d2c8e Merge branch 'master' of ssh://git.linaro.org/toolchain/tcwg- [...] adds c77e848 Set ${basis} based on original TAG or BRANCH, not resolved BRANCH. adds 26ba46c Run autopep8 with default settings adds 2218b1f Run autopep8 on the first level of --aggressive adds 3273532 Run autopep8 with level 2 of --aggressive adds 3e1cc00 Fix testrn.py adds 90277b8 Attempt to fix copy-pasted code adds 503ec19 Rename GitRepo::log's parameter to numcommits new 0a7e801 proj.py: add existing_proj to create a Proj in an existing di [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: .gitignore | 5 + linaropy/__init__.py | 1 + linaropy/cd.py | 24 + linaropy/git/__init__.py | 0 linaropy/git/clone.py | 348 +++++++++++ linaropy/git/gitrepo.py | 257 +++++++++ linaropy/git/workdir.py | 263 +++++++++ linaropy/handle_exit.py | 157 +++++ linaropy/proj.py | 196 +++++++ linaropy/rn/__init__.py | 0 linaropy/rn/custom_wordwrap.py | 33 ++ linaropy/rn/gccclone.py | 32 ++ linaropy/rn/linaroseries.py | 565 ++++++++++++++++++ linaropy/rn/rngen.py | 312 ++++++++++ linaropy/rn/rnseries.py | 210 +++++++ linaropy/rn/template.py | 118 ++++ linaropy/rninput.py | 40 ++ linaropy/series.py | 1246 ++++++++++++++++++++++++++++++++++++++++ linaropy/vers.py | 641 +++++++++++++++++++++ rn.py | 213 +++++++ tcwg-release.sh | 41 +- testrn.py | 27 + 22 files changed, 4717 insertions(+), 12 deletions(-) create mode 100644 .gitignore create mode 100644 linaropy/__init__.py create mode 100644 linaropy/cd.py create mode 100644 linaropy/git/__init__.py create mode 100644 linaropy/git/clone.py create mode 100644 linaropy/git/gitrepo.py create mode 100644 linaropy/git/workdir.py create mode 100644 linaropy/handle_exit.py create mode 100644 linaropy/proj.py create mode 100644 linaropy/rn/__init__.py create mode 100644 linaropy/rn/custom_wordwrap.py create mode 100644 linaropy/rn/gccclone.py create mode 100644 linaropy/rn/linaroseries.py create mode 100644 linaropy/rn/rngen.py create mode 100644 linaropy/rn/rnseries.py create mode 100644 linaropy/rn/template.py create mode 100644 linaropy/rninput.py create mode 100644 linaropy/series.py create mode 100644 linaropy/vers.py create mode 100644 rn.py create mode 100644 testrn.py