You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2019/02/16 09:13:22 UTC

[buildr] branch master updated (a573c68 -> 28e857a)

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

donaldp pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git.


    from a573c68  Remove mailouts to individuals now that TravisCI integration actually works and instead rely on the mail out to the commit list
     new 93828f0  Use method reference
     new 9b862f5  SImplify conditionals
     new 98471fe  Prefer %W syntax
     new 8d9ac97  Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/buildr
     new b0db8bb  Bump version in preparation for release
     new 08ef373  Specify release date
     new e754167  Note down highlights for next release
     new fbbdac3  Update release links
     new 01fa505  Record last release
     new 58c3057  Prepare for next development iteration
     new 28e857a  Avoid generating an email to announce as it no longer seems possible

The 11 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:
 CHANGELOG                |  4 +++-
 doap.rdf                 | 29 +++++++++++++++++++++++++++++
 doc/download.textile     | 24 ++++++++++++++++++------
 doc/index.textile        | 18 ++++++++++++++++++
 lib/buildr/java/tests.rb |  8 ++++----
 lib/buildr/version.rb    |  2 +-
 rakelib/release.rake     |  2 +-
 7 files changed, 74 insertions(+), 13 deletions(-)


[buildr] 02/11: SImplify conditionals

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit 9b862f59c7d730ab53d94d665f82e7f87657eced
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Wed Jan 2 15:58:58 2019 +1100

    SImplify conditionals
---
 lib/buildr/java/tests.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/buildr/java/tests.rb b/lib/buildr/java/tests.rb
index 2cb9ee5..6c1bc99 100644
--- a/lib/buildr/java/tests.rb
+++ b/lib/buildr/java/tests.rb
@@ -309,11 +309,11 @@ module Buildr #:nodoc:
       cmd_args << '-log' << '2'
       cmd_args << '-d' << task.report_to.to_s
       exclude_args = options[:excludegroups] || []
-      if !exclude_args.empty?
+      unless exclude_args.empty?
         cmd_args << '-excludegroups' << exclude_args.join(',')
       end
       groups_args = options[:groups] || []
-      if !groups_args.empty?
+      unless groups_args.empty?
         cmd_args << '-groups' << groups_args.join(',')
       end
       # run all tests in the same suite


[buildr] 10/11: Prepare for next development iteration

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit 58c3057193a2c09c00a473bb1f130ae28a2c6551
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Sat Feb 16 20:12:41 2019 +1100

    Prepare for next development iteration
---
 CHANGELOG             | 2 ++
 lib/buildr/version.rb | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG b/CHANGELOG
index 135816d..a4d325c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,5 @@
+1.5.8 (Pending)
+
 1.5.7 (2019-02-16)
 * Fixed:  The fix that allowed special characters in usernames and passwords was only partially applied
           in the `1.5.6` release. The complete fix that correctly decoded usernames and passwords before
diff --git a/lib/buildr/version.rb b/lib/buildr/version.rb
index 9147037..1b68d1c 100644
--- a/lib/buildr/version.rb
+++ b/lib/buildr/version.rb
@@ -14,5 +14,5 @@
 # the License.
 
 module Buildr #:nodoc:
-  VERSION = '1.5.7'.freeze
+  VERSION = '1.5.8.dev'.freeze
 end


[buildr] 06/11: Specify release date

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit 08ef373bbe73906916844f9395ad5ac8edb936ea
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Sat Feb 16 13:46:09 2019 +1100

    Specify release date
---
 CHANGELOG | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CHANGELOG b/CHANGELOG
index 1265efd..135816d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-1.5.7 (Pending)
+1.5.7 (2019-02-16)
 * Fixed:  The fix that allowed special characters in usernames and passwords was only partially applied
           in the `1.5.6` release. The complete fix that correctly decoded usernames and passwords before
           passing them to HTTP library is now been applied.


[buildr] 05/11: Bump version in preparation for release

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit b0db8bb8c8cf5a729a7431ae98a08ca971d6ac6c
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Sat Feb 16 13:45:33 2019 +1100

    Bump version in preparation for release
---
 lib/buildr/version.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/buildr/version.rb b/lib/buildr/version.rb
index 2dbe42c..9147037 100644
--- a/lib/buildr/version.rb
+++ b/lib/buildr/version.rb
@@ -14,5 +14,5 @@
 # the License.
 
 module Buildr #:nodoc:
-  VERSION = '1.5.7.dev'.freeze
+  VERSION = '1.5.7'.freeze
 end


[buildr] 07/11: Note down highlights for next release

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit e75416772076d963d18f7e506bd1d475db18b524
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Sat Feb 16 13:47:24 2019 +1100

    Note down highlights for next release
---
 doc/index.textile | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/doc/index.textile b/doc/index.textile
index b7b5412..dc7c7ce 100644
--- a/doc/index.textile
+++ b/doc/index.textile
@@ -46,6 +46,24 @@ So let's get started.  You can "read the documentation online":quick_start.html,
 
 h2(#news).  What's New
 
+Highlights from Buildr 1.5.7 (2019-02-16)
+* Fixed:  The fix that allowed special characters in usernames and passwords was only partially applied
+          in the `1.5.6` release. The complete fix that correctly decoded usernames and passwords before
+          passing them to HTTP library is now been applied.
+* Change: GWT Addon: Added support for `:skip_merge_gwt_dependencies` parameter that makes it possible to
+          avoid adding GWT dependencies to the project directly and thus the associated POM. This will be
+          required to support GWT3.x and GWT2.x simultaneously as well as making it easier to manage
+          dependencies in the POMs.
+* Change: Javadoc: If the user does not supply an explicit `:sourcepath` to the doc/javadoc tool then
+          default the value to `project.compile.sources`. This will stop javadoc from scanning the classpath
+          for `*.java` files which can cause issues with projects that include `sources` classifier artifacts
+          on the classpath. This is particularly relevant for GWT based projects that include artifacts with
+          source embedded in the artifacts. This change also made it possible to remove an ugly hack in the
+          GWT addon that removed the gwt artifacts from the javadoc path.
+* Change: Drop deprecated Gem::Specification#has_rdoc= (no replacement) method. Submitted by Olle Jonsson.
+* Change: Use https protocol to access Gem metadata. Submitted by Olle Jonsson.
+* Change: Change RSpec shared_context usage to avoid warnings. Submitted by Olle Jonsson.
+
 Highlights from Buildr 1.5.6 (2018-05-10)
 * Fixed:  Ensure that the username and passwords declared for repositories are correctly url encoded for
           the upload repositories when converted to a URL. (i.e. Ensure `Buildr.repositories.release_to`


[buildr] 01/11: Use method reference

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit 93828f0944e49b4b78a9b17f1014c5cf116b031a
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Wed Jan 2 15:58:48 2019 +1100

    Use method reference
---
 lib/buildr/java/tests.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/buildr/java/tests.rb b/lib/buildr/java/tests.rb
index 68dda34..2cb9ee5 100644
--- a/lib/buildr/java/tests.rb
+++ b/lib/buildr/java/tests.rb
@@ -376,7 +376,7 @@ module Buildr #:nodoc:
     def dependencies #:nodoc:
       unless @dependencies
         @dependencies = TestFramework::Java.dependencies
-        @dependencies += @frameworks.map { |f| f.dependencies }.flatten
+        @dependencies += @frameworks.map(&:dependencies).flatten
       end
       @dependencies
     end


[buildr] 03/11: Prefer %W syntax

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit 98471fecc1e7a360fc660771bf4a906fd8e0f01d
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Wed Jan 2 16:00:43 2019 +1100

    Prefer %W syntax
---
 lib/buildr/java/tests.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/buildr/java/tests.rb b/lib/buildr/java/tests.rb
index 6c1bc99..3cb1156 100644
--- a/lib/buildr/java/tests.rb
+++ b/lib/buildr/java/tests.rb
@@ -292,7 +292,7 @@ module Buildr #:nodoc:
 
       def dependencies
         return ["org.testng:testng:jar:jdk15:#{version}"] + JMock.dependencies if version < '6.0'
-        ["org.testng:testng:jar:#{version}",'com.beust:jcommander:jar:1.27'] + JMock.dependencies
+        %W(org.testng:testng:jar:#{version} com.beust:jcommander:jar:1.27) + JMock.dependencies
       end
     end
 


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

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit 8d9ac974b3a5c15d8f387973be1157cc5362e653
Merge: 98471fe a573c68
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Sat Feb 16 13:44:49 2019 +1100

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

 .travis.yml | 3 ---
 CHANGELOG   | 2 ++
 2 files changed, 2 insertions(+), 3 deletions(-)


[buildr] 11/11: Avoid generating an email to announce as it no longer seems possible

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit 28e857a6c3074c6da949c7070ce62b656a7e37ea
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Sat Feb 16 20:13:15 2019 +1100

    Avoid generating an email to announce as it no longer seems possible
---
 rakelib/release.rake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rakelib/release.rake b/rakelib/release.rake
index ed2dddb..a4073d4 100644
--- a/rakelib/release.rake
+++ b/rakelib/release.rake
@@ -132,7 +132,7 @@ DOAP
   lambda do
     changes = File.read("_release/#{spec.version}/CHANGES")[/.*?\n(.*)/m, 1]
     email = <<-EMAIL
-To: users@buildr.apache.org, announce@apache.org
+To: users@buildr.apache.org
 Subject: [ANNOUNCE] Apache Buildr #{spec.version} released
 
 #{spec.description}


[buildr] 09/11: Record last release

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit 01fa505d9a2f2dbe3f34c573c1e5d9acc4088fae
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Sat Feb 16 20:12:29 2019 +1100

    Record last release
---
 doap.rdf | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/doap.rdf b/doap.rdf
index c00e7e7..24c67b6 100644
--- a/doap.rdf
+++ b/doap.rdf
@@ -37,6 +37,35 @@
     <category rdf:resource="http://projects.apache.org/category/build-management" />
     <release>
       <Version>
+        <name>1.5.7</name>
+        <created>2019-02-16</created>
+        <revision>1.5.7</revision>
+        <dc:description>
+* Fixed:  The fix that allowed special characters in usernames and passwords was only partially applied
+          in the `1.5.6` release. The complete fix that correctly decoded usernames and passwords before
+          passing them to HTTP library is now been applied.
+* Change: GWT Addon: Added support for `:skip_merge_gwt_dependencies` parameter that makes it possible to
+          avoid adding GWT dependencies to the project directly and thus the associated POM. This will be
+          required to support GWT3.x and GWT2.x simultaneously as well as making it easier to manage
+          dependencies in the POMs.
+* Change: Javadoc: If the user does not supply an explicit `:sourcepath` to the doc/javadoc tool then
+          default the value to `project.compile.sources`. This will stop javadoc from scanning the classpath
+          for `*.java` files which can cause issues with projects that include `sources` classifier artifacts
+          on the classpath. This is particularly relevant for GWT based projects that include artifacts with
+          source embedded in the artifacts. This change also made it possible to remove an ugly hack in the
+          GWT addon that removed the gwt artifacts from the javadoc path.
+* Change: Drop deprecated Gem::Specification#has_rdoc= (no replacement) method. Submitted by Olle Jonsson.
+* Change: Use https protocol to access Gem metadata. Submitted by Olle Jonsson.
+* Change: Change RSpec shared_context usage to avoid warnings. Submitted by Olle Jonsson.
+* Change: Migrated source control to Apache GitBox which supports using either GitHub or GitBox as the
+          master repository.
+
+        </dc:description>
+      </Version>
+    </release>
+
+    <release>
+      <Version>
         <name>1.5.6</name>
         <created>2018-05-10</created>
         <revision>1.5.6</revision>


[buildr] 08/11: Update release links

Posted by do...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

donaldp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildr.git

commit fbbdac352783f67fc03f9beee9e31a1665f2100d
Author: Peter Donald <pe...@realityforge.org>
AuthorDate: Sat Feb 16 15:20:45 2019 +1100

    Update release links
---
 doc/download.textile | 24 ++++++++++++++++++------
 1 file changed, 18 insertions(+), 6 deletions(-)

diff --git a/doc/download.textile b/doc/download.textile
index 33a1a1a..03c8e09 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.7 (2019-02-16)
+
+|_. Package |_. MD5 Checksum |_. PGP |
+| "buildr-1.5.7.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.7/buildr-1.5.7.gem | "da7aef9f2f016871162a11eed21f9821":http://www.apache.org/dist/buildr/1.5.7/buildr-1.5.7.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.7/buildr-1.5.7.gem.asc |
+| "buildr-1.5.7-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.7/buildr-1.5.7-x86-mswin32.gem | "a5ea3efca5f6e01ee56f014b1f71c002":http://www.apache.org/dist/buildr/1.5.7/buildr-1.5.7-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.7/buildr-1.5.7-x86-mswin32.gem.asc |
+| "buildr-1.5.7-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.7/buildr-1.5.7-java.gem | "c61529d8d0afa922d93faddef1170b3c":http://www.apache.org/dist/buildr/1.5.7/buildr-1.5.7-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.7/buildr-1.5.7-java.gem.asc |
+| "buildr-1.5.7.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.5.7/buildr-1.5.7.tgz | "e779df6b46e25c1692b0a3f102ed6903":http://www.apache.org/dist/buildr/1.5.7/buildr-1.5.7.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.7/buildr-1.5.7.tgz.asc |
+| "buildr-1.5.7.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.5.7/buildr-1.5.7.zip | "2991f9e184c6ae2eb229a219ac692e4c":http://www.apache.org/dist/buildr/1.5.7/buildr-1.5.7.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.7/buildr-1.5.7.zip.asc |
+
+p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.5.7/KEYS)
+
+
 h3. buildr 1.5.6 (2018-05-10)
 
 |_. Package |_. MD5 Checksum |_. PGP |
-| "buildr-1.5.6.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.6/buildr-1.5.6.gem | "3836a2bb86692ca353ccc9ed6c4a618d":http://www.apache.org/dist/buildr/1.5.6/buildr-1.5.6.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.6/buildr-1.5.6.gem.asc |
-| "buildr-1.5.6-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.6/buildr-1.5.6-java.gem | "68879b787705d8c3222b80cab5416e99":http://www.apache.org/dist/buildr/1.5.6/buildr-1.5.6-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.6/buildr-1.5.6-java.gem.asc |
-| "buildr-1.5.6-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.6/buildr-1.5.6-x86-mswin32.gem | "c0c65b86f422e7bb8c8f3bba00af4ec2":http://www.apache.org/dist/buildr/1.5.6/buildr-1.5.6-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.6/buildr-1.5.6-x86-mswin32.gem.asc |
-| "buildr-1.5.6.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.5.6/buildr-1.5.6.tgz | "b17855a2f439c042bd6c94c85454ddce":http://www.apache.org/dist/buildr/1.5.6/buildr-1.5.6.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.6/buildr-1.5.6.tgz.asc |
-| "buildr-1.5.6.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.5.6/buildr-1.5.6.zip | "4fcd9603070374b93f7db69fdef1ed83":http://www.apache.org/dist/buildr/1.5.6/buildr-1.5.6.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.6/buildr-1.5.6.zip.asc |
+| "buildr-1.5.6.gem":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6.gem | "3836a2bb86692ca353ccc9ed6c4a618d":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6.gem.asc |
+| "buildr-1.5.6-java.gem":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6-java.gem | "68879b787705d8c3222b80cab5416e99":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6-java.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6-java.gem.asc |
+| "buildr-1.5.6-x86-mswin32.gem":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6-x86-mswin32.gem | "c0c65b86f422e7bb8c8f3bba00af4ec2":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6-x86-mswin32.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6-x86-mswin32.gem.asc |
+| "buildr-1.5.6.tgz":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6.tgz | "b17855a2f439c042bd6c94c85454ddce":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6.tgz.md5 | "Sig":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6.tgz.asc |
+| "buildr-1.5.6.zip":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6.zip | "4fcd9603070374b93f7db69fdef1ed83":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6.zip.md5 | "Sig":http://archive.apache.org/dist/buildr/1.5.6/buildr-1.5.6.zip.asc |
 
-p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.5.6/KEYS)
+p>. ("Release signing keys":http://archive.apache.org/dist/buildr/1.5.6/KEYS)
 
 
 h3. buildr 1.5.5 (2017-12-06)