You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by jc...@apache.org on 2016/01/05 17:55:56 UTC

aurora git commit: Upgrade to pants 0.0.66.

Repository: aurora
Updated Branches:
  refs/heads/master 227a3a6e1 -> 56334789c


Upgrade to pants 0.0.66.

The changelog can be read here:
  http://pantsbuild.github.io/changelog.html

Of note for aurora is the ability to kill BUILD.tools.

Additionally, add the pants generated .pids/ dir to .gitignore and
normalize all directory ignore to omit the redundant *.

Reviewed at https://reviews.apache.org/r/41899/


Project: http://git-wip-us.apache.org/repos/asf/aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/56334789
Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/56334789
Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/56334789

Branch: refs/heads/master
Commit: 56334789cdc30d3690d693dac854193daf8433a4
Parents: 227a3a6
Author: John Sirois <jo...@gmail.com>
Authored: Tue Jan 5 08:55:13 2016 -0800
Committer: Joshua Cohen <jc...@apache.org>
Committed: Tue Jan 5 08:55:13 2016 -0800

----------------------------------------------------------------------
 .gitignore  | 29 +++++++++++++++--------------
 BUILD.tools | 18 ------------------
 pants.ini   |  2 +-
 3 files changed, 16 insertions(+), 33 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/56334789/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 12eff83..1af09a2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,25 +6,26 @@
 *~
 .gradle
 /.coverage
-/.idea/*
+/.idea/
 /.pants.*
-/.vagrant/*
-/api/dist/*
-/api/out/*
+/.pids/
+/.vagrant/
+/api/dist/
+/api/out/
 /atlassian-ide-plugin.xml
 /build-support/*.pex
 /build-support/*.venv
 /build-support/python/*.venv
 /build-support/virtualenv-*
-/build/*
-/buildSrc/build/*
-/buildSrc/dist/*
-/commons-args/dist/*
-/commons-args/out/*
-/commons/dist/*
-/commons/out/*
-/dist/*
+/build/
+/buildSrc/build/
+/buildSrc/dist/
+/commons-args/dist/
+/commons-args/out/
+/commons/dist/
+/commons/out/
+/dist/
 /gradle-app.setting
-/out/*
+/out/
 /requirements.txt
-/third_party/*
+/third_party/

http://git-wip-us.apache.org/repos/asf/aurora/blob/56334789/BUILD.tools
----------------------------------------------------------------------
diff --git a/BUILD.tools b/BUILD.tools
deleted file mode 100644
index 2e237c4..0000000
--- a/BUILD.tools
+++ /dev/null
@@ -1,18 +0,0 @@
-# TODO(jsirois) Remove this once https://github.com/pantsbuild/pants/issues/867 is solved.
-
-# JVM artifacts that Pants itself depends on.
-# http://pantsbuild.github.io/dev_tasks.html#jvm-tool-bootstrapping
-
-jar_library(name='scala-compiler',
-            jars=[
-              jar(org='org.scala-lang', name='scala-compiler', rev='2.10.6'),
-            ])
-
-jar_library(name='scala-repl',
-            jars=[
-              jar(org='org.scala-lang', name='jline', rev='2.10.6', intransitive=True),
-            ],
-            dependencies=[
-              ':scala-compiler',
-            ])
-

http://git-wip-us.apache.org/repos/asf/aurora/blob/56334789/pants.ini
----------------------------------------------------------------------
diff --git a/pants.ini b/pants.ini
index 579d86c..3893234 100644
--- a/pants.ini
+++ b/pants.ini
@@ -12,7 +12,7 @@
 # limitations under the License.
 
 [DEFAULT]
-pants_version: 0.0.64
+pants_version: 0.0.66
 
 plugins: [
     'pantsbuild.pants.contrib.python.checks==%(pants_version)s',