You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2014/11/12 16:15:19 UTC

svn commit: r1638812 - /tomcat/trunk/BUILDING.txt

Author: markt
Date: Wed Nov 12 15:15:19 2014
New Revision: 1638812

URL: http://svn.apache.org/r1638812
Log:
Back to 1.9.3 to avoid regression in tar support.

Modified:
    tomcat/trunk/BUILDING.txt

Modified: tomcat/trunk/BUILDING.txt
URL: http://svn.apache.org/viewvc/tomcat/trunk/BUILDING.txt?rev=1638812&r1=1638811&r2=1638812&view=diff
==============================================================================
--- tomcat/trunk/BUILDING.txt (original)
+++ tomcat/trunk/BUILDING.txt Wed Nov 12 15:15:19 2014
@@ -64,9 +64,10 @@ source distribution, do the following:
     into which you installed the JDK release.
 
 
-(2) Install Apache Ant version 1.9.4 or later on your computer
+(2) Install Apache Ant version 1.9.3 or later on your computer.
+    Note Ant 1.9.4 contains a regression that breaks Tomcat's release build. 
 
- 1. If Apache Ant version 1.9.4 or later is already installed on your computer, skip to (3).
+ 1. If Apache Ant version 1.9.3 or later is already installed on your computer, skip to (3).
 
  2. Download a binary distribution of Ant from:
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: svn commit: r1638812 - /tomcat/trunk/BUILDING.txt

Posted by Konstantin Kolinko <kn...@gmail.com>.
2014-11-13 17:14 GMT+03:00 Christopher Schultz <ch...@christopherschultz.net>:
> Mark,
>
> On 11/12/14 10:15 AM, markt@apache.org wrote:
>> Author: markt
>> Date: Wed Nov 12 15:15:19 2014
>> New Revision: 1638812
>>
>> URL: http://svn.apache.org/r1638812
>> Log:
>> Back to 1.9.3 to avoid regression in tar support.
>
> It is worth putting a version-check into build.xml that fails-fast with
> an explanation? Otherwise, we might get flooded with questions about why
> [whatever].tar.gz is broken and ant can't open it.

The specific error is here:

>>> 1.9.4 is known to be broken (tag support is broken),
>>> http://tomcat.markmail.org/thread/4zzooanqjk2fhbz2
https://issues.apache.org/bugzilla/show_bug.cgi?id=56641


I suspect that we can use zip downloads instead of tar.gz ones.
 Apache Commons Logging sources,
 Apache Commons Daemon binaries,
 Cobertura binaries
all have zip distributives as well the tar.gz ones that we are using.

Best regards,
Konstantin Kolinko

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: svn commit: r1638812 - /tomcat/trunk/BUILDING.txt

Posted by Christopher Schultz <ch...@christopherschultz.net>.
Mark,

On 11/12/14 10:15 AM, markt@apache.org wrote:
> Author: markt
> Date: Wed Nov 12 15:15:19 2014
> New Revision: 1638812
> 
> URL: http://svn.apache.org/r1638812
> Log:
> Back to 1.9.3 to avoid regression in tar support.

It is worth putting a version-check into build.xml that fails-fast with
an explanation? Otherwise, we might get flooded with questions about why
[whatever].tar.gz is broken and ant can't open it.

-chris