This is an automated email from the ASF dual-hosted git repository.
bbannier pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git.
from 9333717 Included new Python CLI in distribution tarball.
new 2232d48 Moved cpplint configuration into dedicated file.
new 526043b Added check script to check for license headers.
new cbaca81 Added gitlint config.
new a138c2b Added separate script to install developer setup.
new 454661d Switched commit hooks to pre-commit.
new 37d76ff Removed old mesos-style and references.
new 3478e40 Revert "Updated cpplint.py to be less verbose when there is
no linting issue."
new 2af3396 Revert "Updated cpplint to be compatible with Python 3."
new fb467a0 Enabled a number of additional pre-commit checks.
The 9 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:
bootstrap | 70 ---
docs/advanced-contribution.md | 5 +-
docs/beginner-contribution.md | 2 +-
docs/c++-style-guide.md | 2 +-
docs/clang-format.md | 5 +-
support/CPPLINT.cfg | 2 +
support/build-virtualenv | 72 ---
.../cli/__init__.py => support/check-license.py | 20 +-
support/cpplint.py | 34 +-
support/gitignore | 11 +-
support/gitlint | 48 ++
support/hooks/commit-msg | 46 --
support/hooks/post-rewrite | 40 --
support/hooks/pre-commit | 41 --
support/llvm/README.md | 14 +-
support/mesos-split.py | 2 -
support/mesos-style.py | 581 +--------------------
support/pre-commit-config.yaml | 54 ++
bootstrap.bat => support/setup-dev.bat | 28 +-
support/setup-dev.sh | 68 +++
20 files changed, 251 insertions(+), 894 deletions(-)
create mode 100644 support/CPPLINT.cfg
delete mode 100755 support/build-virtualenv
copy src/python/cli_new/lib/cli/__init__.py => support/check-license.py (69%)
mode change 100644 => 100755
create mode 100644 support/gitlint
delete mode 100755 support/hooks/commit-msg
delete mode 100755 support/hooks/post-rewrite
delete mode 100755 support/hooks/pre-commit
create mode 100644 support/pre-commit-config.yaml
rename bootstrap.bat => support/setup-dev.bat (83%)
create mode 100755 support/setup-dev.sh