You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by to...@apache.org on 2016/09/19 06:36:23 UTC

[1/6] buildr git commit: Stage using the dist.apache.org SVN repository

Repository: buildr
Updated Branches:
  refs/heads/master fdb80e8eb -> 74e4509a0


Stage using the dist.apache.org SVN repository


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

Branch: refs/heads/master
Commit: 0c2ddc34bfca0766d024eebd69ac7e8f2e04dc55
Parents: 0916a14
Author: Antoine Toulme <an...@lunar-ocean.com>
Authored: Fri Sep 16 22:59:12 2016 -0700
Committer: Antoine Toulme <an...@lunar-ocean.com>
Committed: Fri Sep 16 22:59:12 2016 -0700

----------------------------------------------------------------------
 rakelib/stage.rake | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/0c2ddc34/rakelib/stage.rake
----------------------------------------------------------------------
diff --git a/rakelib/stage.rake b/rakelib/stage.rake
index 043417b..43c9a1a 100644
--- a/rakelib/stage.rake
+++ b/rakelib/stage.rake
@@ -85,13 +85,6 @@ task 'prepare' do |task, args|
     sh 'prince --version'
     puts '[X] We have prince available'
   end.call
-  
-  # Need lftp to push the stage website to home.apache.org
-  lambda do
-    puts 'Checking that lftp is available...'
-    sh 'lftp --version'
-    puts '[X] We have lftp available'
-  end.call
 
   raise "Can not run stage process under jruby" if RUBY_PLATFORM[/java/]
   raise "Can not run staging process under older rubies" unless RUBY_VERSION >= '1.9'
@@ -182,10 +175,13 @@ p>. ("Release signing keys":#{official}/KEYS)
   end.call
 
 
-  # Move everything over to home.apache.org so we can vote on it.
+  # Move everything over to https://dist.apache.org/repos/dist/dev/buildr so we can vote on it.
   lambda do
     puts "Uploading _staged directory ..."
-    sh "lftp -e \"mirror -R _staged public_html/buildr/#{spec.version}; bye\" -u #{user} sftp://home.apache.org" 
+    sh "svn mkdir https://dist.apache.org/repos/dist/dev/buildr/#{spec.version}"
+    sh "svn checkout https://dist.apache.org/repos/dist/dev/buildr/#{spec.version} ."
+    sh "svn add *"
+     sh "svn commit -m 'Uploading Buildr RC #{spec.version}'"
     puts "[X] Uploaded _staged directory"
   end.call
 
@@ -194,7 +190,7 @@ p>. ("Release signing keys":#{official}/KEYS)
   # email for you and vote on it.
   lambda do
     # Need to know who you are on Apache, local user may be different (see .ssh/config).
-    base_url = "http://home.apache.org/~#{user}/buildr/#{spec.version}"
+    base_url = "https://dist.apache.org/repos/dist/dev/buildr/#{spec.version}"
     # Need changes for this release only.
     changelog = File.read('CHANGELOG').scan(/(^(\d+\.\d+(?:\.\d+)?)\s+\(\d{4}-\d{2}-\d{2}\)\s*((:?^[^\n]+\n)*))/)
     changes = changelog[0][2]


[5/6] buildr git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/buildr

Posted by to...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/buildr


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

Branch: refs/heads/master
Commit: 221e83d424fb938fb5c40ec20bb7ae8548d80686
Parents: a171b45 fdb80e8
Author: Antoine Toulme <an...@lunar-ocean.com>
Authored: Sun Sep 18 22:31:51 2016 -0700
Committer: Antoine Toulme <an...@lunar-ocean.com>
Committed: Sun Sep 18 22:31:51 2016 -0700

----------------------------------------------------------------------
 lib/buildr/core/test.rb | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------



[3/6] buildr git commit: Add a comment to the mkdir command to stage the release

Posted by to...@apache.org.
Add a comment to the mkdir command to stage the release


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

Branch: refs/heads/master
Commit: 94f77ead1290500a934122383e0185459cc12199
Parents: 3526a36
Author: Antoine Toulme <an...@lunar-ocean.com>
Authored: Fri Sep 16 23:08:03 2016 -0700
Committer: Antoine Toulme <an...@lunar-ocean.com>
Committed: Fri Sep 16 23:12:03 2016 -0700

----------------------------------------------------------------------
 rakelib/stage.rake | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/94f77ead/rakelib/stage.rake
----------------------------------------------------------------------
diff --git a/rakelib/stage.rake b/rakelib/stage.rake
index 43c9a1a..2187427 100644
--- a/rakelib/stage.rake
+++ b/rakelib/stage.rake
@@ -178,10 +178,10 @@ p>. ("Release signing keys":#{official}/KEYS)
   # Move everything over to https://dist.apache.org/repos/dist/dev/buildr so we can vote on it.
   lambda do
     puts "Uploading _staged directory ..."
-    sh "svn mkdir https://dist.apache.org/repos/dist/dev/buildr/#{spec.version}"
-    sh "svn checkout https://dist.apache.org/repos/dist/dev/buildr/#{spec.version} ."
-    sh "svn add *"
-     sh "svn commit -m 'Uploading Buildr RC #{spec.version}'"
+    sh "svn mkdir https://dist.apache.org/repos/dist/dev/buildr/#{spec.version} -m 'Creating Buildr release candidate #{spec.version}'"
+    sh "cd _staged; svn checkout https://dist.apache.org/repos/dist/dev/buildr/#{spec.version} ."
+    sh "cd _staged; svn add *"
+     sh "cd _staged; svn commit -m 'Uploading Buildr RC #{spec.version}'"
     puts "[X] Uploaded _staged directory"
   end.call
 


[4/6] buildr git commit: separate 1.5.0 from 1.4.25 more

Posted by to...@apache.org.
separate 1.5.0 from 1.4.25 more


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

Branch: refs/heads/master
Commit: a171b4597b23ca8d66b2f7b75796e21ba50d3939
Parents: 94f77ea
Author: Antoine Toulme <an...@lunar-ocean.com>
Authored: Fri Sep 16 23:21:01 2016 -0700
Committer: Antoine Toulme <an...@lunar-ocean.com>
Committed: Fri Sep 16 23:21:01 2016 -0700

----------------------------------------------------------------------
 CHANGELOG            |  1 +
 doc/download.textile | 24 ++++++++++++++++++------
 2 files changed, 19 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/a171b459/CHANGELOG
----------------------------------------------------------------------
diff --git a/CHANGELOG b/CHANGELOG
index e9cd082..d0a12c1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -52,6 +52,7 @@
           all transitive dependencies. This is required as buildr dependencies are not
           transitive while Maven's dependencies are transitive by default.
 * Change: Remove the BND aqute maven repository, as it was decomissioned. Use Maven Central instead.
+
 1.4.25 (2016-04-18)
 * Change: BUILDR-712 Update jruby-openssl dependency version or support a range of versions
 * Change: Update gwt addon to add the GWT artifacts to project dependencies as specs rather

http://git-wip-us.apache.org/repos/asf/buildr/blob/a171b459/doc/download.textile
----------------------------------------------------------------------
diff --git a/doc/download.textile b/doc/download.textile
index a54255c..743ef76 100644
--- a/doc/download.textile
+++ b/doc/download.textile
@@ -18,16 +18,28 @@ The source code is included in both source and binary distribution, the Gem dist
 
 h2(#dist).  Binaries and Source Code
 
+h3. buildr 1.5.0 (2016-09-16)
+
+|_. Package |_. MD5 Checksum |_. PGP |
+| "buildr-1.5.0-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.0/buildr-1.5.0-java.gem | "c3ac21f11a09d6bfc4b390bd20d10ae6":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0-java.gem.asc |
+| "buildr-1.5.0-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.0/buildr-1.5.0-x86-mswin32.gem | "8d2e5eebef6aa41f9fd52895a28a1564":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0-x86-mswin32.gem.asc |
+| "buildr-1.5.0.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.0/buildr-1.5.0.gem | "b94e86a215764d66f85d2009258c85d2":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.gem.asc |
+| "buildr-1.5.0.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.5.0/buildr-1.5.0.tgz | "61fbfcbadc43e146a362a581f7e7b8da":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.tgz.asc |
+| "buildr-1.5.0.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.5.0/buildr-1.5.0.zip | "efbc527597b143df2415b291b1c17b83":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.zip.asc |
+
+p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.5.0/KEYS)
+
+
 h3. buildr 1.4.25 (2016-04-18)
 
 |_. Package |_. MD5 Checksum |_. PGP |
-| "buildr-1.4.25-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.25/buildr-1.4.25-java.gem | "eecba636a7ba96863667473dbd012511":http://www.apache.org/dist/buildr/1.4.25/buildr-1.4.25-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.25/buildr-1.4.25-java.gem.asc |
-| "buildr-1.4.25-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.25/buildr-1.4.25-x86-mswin32.gem | "139544a50c180cbcf90c542cf3c49b84":http://www.apache.org/dist/buildr/1.4.25/buildr-1.4.25-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.25/buildr-1.4.25-x86-mswin32.gem.asc |
-| "buildr-1.4.25.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.25/buildr-1.4.25.gem | "81347fb7fcee450f90933b73caf07344":http://www.apache.org/dist/buildr/1.4.25/buildr-1.4.25.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.25/buildr-1.4.25.gem.asc |
-| "buildr-1.4.25.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.4.25/buildr-1.4.25.tgz | "020aadc399401b4138a53008d6632d7c":http://www.apache.org/dist/buildr/1.4.25/buildr-1.4.25.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.25/buildr-1.4.25.tgz.asc |
-| "buildr-1.4.25.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.4.25/buildr-1.4.25.zip | "7ca869a18fe79cc661eee40a23915806":http://www.apache.org/dist/buildr/1.4.25/buildr-1.4.25.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.25/buildr-1.4.25.zip.asc |
+| "buildr-1.4.25-java.gem":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-java.gem | "eecba636a7ba96863667473dbd012511":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-java.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-java.gem.asc |
+| "buildr-1.4.25-x86-mswin32.gem":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-x86-mswin32.gem | "139544a50c180cbcf90c542cf3c49b84":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-x86-mswin32.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-x86-mswin32.gem.asc |
+| "buildr-1.4.25.gem":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.gem | "81347fb7fcee450f90933b73caf07344":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.gem.asc |
+| "buildr-1.4.25.tgz":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.tgz | "020aadc399401b4138a53008d6632d7c":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.tgz.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.tgz.asc |
+| "buildr-1.4.25.zip":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.zip | "7ca869a18fe79cc661eee40a23915806":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.zip.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.zip.asc |
 
-p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.4.25/KEYS)
+p>. ("Release signing keys":http://archive.apache.org/dist/buildr/1.4.25/KEYS)
 
 
 h3. buildr 1.4.24 (2016-03-19)


[6/6] buildr git commit: fix the release task to use the dev SVN

Posted by to...@apache.org.
fix the release task to use the dev SVN


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

Branch: refs/heads/master
Commit: 74e4509a072ba6212b9be57df69135f1a542836c
Parents: 221e83d
Author: Antoine Toulme <an...@lunar-ocean.com>
Authored: Sun Sep 18 23:36:12 2016 -0700
Committer: Antoine Toulme <an...@lunar-ocean.com>
Committed: Sun Sep 18 23:36:12 2016 -0700

----------------------------------------------------------------------
 rakelib/release.rake | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/74e4509a/rakelib/release.rake
----------------------------------------------------------------------
diff --git a/rakelib/release.rake b/rakelib/release.rake
index 91e369f..6872324 100644
--- a/rakelib/release.rake
+++ b/rakelib/release.rake
@@ -20,9 +20,9 @@ task 'release' do |task, args|
   # First, we need to get all the staged files from Apache to _release.
   mkpath '_release'
   lambda do
-    url = "home.apache.org:~/public_html/#{spec.name}/#{spec.version}"
+    url = "https://dist.apache.org/repos/dist/dev/buildr/#{spec.version}"
     puts "Populating _release directory from #{url} ..."
-    sh "lftp -e \"mirror public_html/#{spec.name}/#{spec.version} _release/#{spec.version}; bye\" -u #{user} sftp://home.apache.org" 
+    sh "svn co #{url} _release/#{spec.version}" 
     puts '[X] Staged files are now in _release'
   end.call
 


[2/6] buildr git commit: Prepare release 1.5.0

Posted by to...@apache.org.
Prepare release 1.5.0


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

Branch: refs/heads/master
Commit: 3526a36926f9d32cba1d641a438c5feadb4bfe97
Parents: 0c2ddc3
Author: Antoine Toulme <an...@lunar-ocean.com>
Authored: Fri Sep 16 23:00:36 2016 -0700
Committer: Antoine Toulme <an...@lunar-ocean.com>
Committed: Fri Sep 16 23:04:21 2016 -0700

----------------------------------------------------------------------
 CHANGELOG             |  2 +-
 doc/index.textile     | 38 ++++++++++++++++----------------------
 lib/buildr/version.rb |  2 +-
 3 files changed, 18 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/3526a369/CHANGELOG
----------------------------------------------------------------------
diff --git a/CHANGELOG b/CHANGELOG
index 5ee7723..e9cd082 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-1.5.0 (Pending)
+1.5.0 (2016-09-16)
 * Change: Update RJB to 1.5.4
 * Change: Update rubyzip to 1.2.0
 * Change: Update hoe to 3.15.0

http://git-wip-us.apache.org/repos/asf/buildr/blob/3526a369/doc/index.textile
----------------------------------------------------------------------
diff --git a/doc/index.textile b/doc/index.textile
index d10f9f8..8662840 100644
--- a/doc/index.textile
+++ b/doc/index.textile
@@ -46,28 +46,22 @@ So let's get started.  You can "read the documentation online":quick_start.html,
 
 h2(#news).  What's New
 
-Highlights from Buildr 1.4.25 (2016-04-18)
-* Change: BUILDR-712 Update jruby-openssl dependency version or support a range of versions
-* Change: Update gwt addon to add the GWT artifacts to project dependencies as specs rather
-          than files.
-* Change: Support the project.root_project utility method to retrieve the top level project.
-
-Highlights from Buildr 1.4.24 (2016-03-19)
-* Added:  Support the :no_invoke parameter being passed to Buildr.project() and
-          Buildr.projects() to avoid attempting to call invoke when retrieving the projects.
-* Added:  Add `exclude_paths` setting to pmd addon to allow paths to be explicitly excluded.
-* Fixed:  Update jDepend addon to ensure target directories are invoked prior to attempting
-          to analyze directories.
-* Added:  Add jdepend.additional_project_names configuration to jDepend addon to
-          ease merging in the source paths from multiple projects into one jDepend task.
-* Added:  Add findbugs.additional_project_names configuration to Findbugs addon to
-          ease merging in the source paths from multiple projects into one Findbugs task.
-* Added:  Add checkstyle.additional_project_names configuration to Checkstyle addon to
-          ease merging in the source paths from multiple projects into one Checkstyle task.
-* Added:  Add pmd.additional_project_names configuration to PMD addon to ease merging in
-          the source paths from multiple projects into one PMD task.
-* Change: Update the default GWT version used in the GWT addon to the latest release 2.7.0.
-* Change: Update the checkstyle addon to use checkstyle 6.12.1.
+Highlights from Buildr 1.5.0 (2016-09-16)
+* Change: Move to default on Scala 2.11.
+* Added:  BUILDR-577 Allow remote repo to be added with http basic auth support. Submitted by Michael Guymon.
+* Added:  BUILDR-572 Allow to upload unique version (timestamp based) snapshot artifacts to a repository. Submitted by Brice Figureau.
+* Added:  BUILDR-703 release: allow THIS_VERSION to be defined in another file
+* Fixed:  BUILDR-565 resources are not included in the war if defined after package call
+* Fixed:  BUILDR-621 ZipTask creates zip file with entries not sorted by path causing very slow unzipping.
+* Fixed:  BUILDR-695 transitive doesn't support ${project.parent.version} in POM.
+* Fixed:  BUILDR-653 Using Eclipse compiler (ECJ)
+* Fixed:  BUILDR-476 Buildr doesn't respect company repository manager
+* Fixed:  BUILDR-454 Definition-level parent-child references-by-name fail in 1.4.0 but not in 1.3.5. Submitted by Rhett Sutphin.
+* Fixed:  BUILDR-620 resources.filter should not run on non-text files
+* Fixed:  BUILDR-486 Buildr-generated poms should include dependencies
+* Change: Update the custom_pom addon to generate poms with exclusions section that excludes
+          all transitive dependencies. This is required as buildr dependencies are not
+          transitive while Maven's dependencies are transitive by default.
 
 This is a partial list -- see the "CHANGELOG":CHANGELOG for full details.
 

http://git-wip-us.apache.org/repos/asf/buildr/blob/3526a369/lib/buildr/version.rb
----------------------------------------------------------------------
diff --git a/lib/buildr/version.rb b/lib/buildr/version.rb
index 7da5242..d11af15 100644
--- a/lib/buildr/version.rb
+++ b/lib/buildr/version.rb
@@ -14,5 +14,5 @@
 # the License.
 
 module Buildr #:nodoc:
-  VERSION = '1.5.0.dev'.freeze
+  VERSION = '1.5.0'.freeze
 end