You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Anton Luht (JIRA)" <ji...@apache.org> on 2006/12/25 12:41:21 UTC

[jira] Created: (HARMONY-2869) [classlib] [build] build fails on ant 1.7

[classlib] [build]  build fails on ant 1.7
------------------------------------------

                 Key: HARMONY-2869
                 URL: http://issues.apache.org/jira/browse/HARMONY-2869
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
         Environment: Linux
            Reporter: Anton Luht
            Priority: Minor


Rule for checking Ant versions fails on Ant 1.7:

You have wrong version of ANT :Apache Ant version 1.7.0 compiled on December 13 2006
* Make sure you have Ant 1.6.5 or above installed from
* http://ant.apache.org/bindownload.cgi and that ANT_HOME environment
* variable points out to the Ant installation dir, e.g.
* export ANT_HOME=/usr/local/ant_1.6.5


The following quick patch solves the problem:

Index: enhanced/drlvm/trunk/build/make/setup.xml
===================================================================
--- enhanced/drlvm/trunk/build/make/setup.xml       (revision 490124)
+++ enhanced/drlvm/trunk/build/make/setup.xml       (working copy)
@@ -33,11 +33,18 @@
         <fail>
             <condition>
                 <not>
-                    <and>
-                        <equals arg1="${ch1}" arg2="1" />
-                        <equals arg1="${ch2}" arg2="6" />
-                        <equals arg1="${ch3}" arg2="5" />
-                    </and>
+                    <or>
+                        <and>
+                            <equals arg1="${ch1}" arg2="1" />
+                            <equals arg1="${ch2}" arg2="6" />
+                            <equals arg1="${ch3}" arg2="5" />
+                        </and>
+                        <and>
+                            <equals arg1="${ant.version1}" arg2="1" />
+                            <equals arg1="${ant.sub.version}" arg2="7" />
+                            <equals arg1="${ant.sub.sub.version}" arg2="0" />
+                        </and>
+                    </or>
                 </not>
             </condition>
 * You have wrong version of ANT :${ant.version}


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (HARMONY-2869) [drlvm] [build] build fails on ant 1.7

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2869?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov resolved HARMONY-2869.
--------------------------------------

    Resolution: Fixed

The build now passes on ant 1.7 so I mark this JIRA as fixed.

> [drlvm] [build]  build fails on ant 1.7
> ---------------------------------------
>
>                 Key: HARMONY-2869
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2869
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>         Environment: Linux
>            Reporter: Anton Luht
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: H2869.patch
>
>
> Rule for checking Ant versions fails on Ant 1.7:
> You have wrong version of ANT :Apache Ant version 1.7.0 compiled on December 13 2006
> * Make sure you have Ant 1.6.5 or above installed from
> * http://ant.apache.org/bindownload.cgi and that ANT_HOME environment
> * variable points out to the Ant installation dir, e.g.
> * export ANT_HOME=/usr/local/ant_1.6.5
> The following quick patch solves the problem:
> Index: enhanced/drlvm/trunk/build/make/setup.xml
> ===================================================================
> --- enhanced/drlvm/trunk/build/make/setup.xml       (revision 490124)
> +++ enhanced/drlvm/trunk/build/make/setup.xml       (working copy)
> @@ -33,11 +33,18 @@
>          <fail>
>              <condition>
>                  <not>
> -                    <and>
> -                        <equals arg1="${ch1}" arg2="1" />
> -                        <equals arg1="${ch2}" arg2="6" />
> -                        <equals arg1="${ch3}" arg2="5" />
> -                    </and>
> +                    <or>
> +                        <and>
> +                            <equals arg1="${ch1}" arg2="1" />
> +                            <equals arg1="${ch2}" arg2="6" />
> +                            <equals arg1="${ch3}" arg2="5" />
> +                        </and>
> +                        <and>
> +                            <equals arg1="${ant.version1}" arg2="1" />
> +                            <equals arg1="${ant.sub.version}" arg2="7" />
> +                            <equals arg1="${ant.sub.sub.version}" arg2="0" />
> +                        </and>
> +                    </or>
>                  </not>
>              </condition>
>  * You have wrong version of ANT :${ant.version}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-2869) [drlvm] [build] build fails on ant 1.7

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2869?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12470286 ] 

Alexei Zakharov commented on HARMONY-2869:
------------------------------------------

Anton, thanks. I've changed your patch a little bit - now the build accepts any ant version that is above 1.6.5. The fix was committed at the revision 503775. Please verify that it solves the original problem. BTW, I don't see much sense in "check.ant.version" target at all since DRLVM build breaks on pre-1.6.5 ant before executing this target. For example it breaks on ant 1.6.2  while trying to parse classlib/trunk/make/properties.xml that is not 1.6.2 compliant with the following message:

BUILD FAILED
C:\Java\harmony\enhanced\drlvm\trunk\build\make\build.xml:65: The following erro
r occurred while executing this line:
C:\Java\harmony\enhanced\classlib\trunk\make\properties.xml:37: Class org.apache
.tools.ant.taskdefs.ConditionTask doesn't support the "else" attribute.


So there is no user-friendly message anyway. So we probably need to refator current build.xml & setup.xml.

> [drlvm] [build]  build fails on ant 1.7
> ---------------------------------------
>
>                 Key: HARMONY-2869
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2869
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>         Environment: Linux
>            Reporter: Anton Luht
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: H2869.patch
>
>
> Rule for checking Ant versions fails on Ant 1.7:
> You have wrong version of ANT :Apache Ant version 1.7.0 compiled on December 13 2006
> * Make sure you have Ant 1.6.5 or above installed from
> * http://ant.apache.org/bindownload.cgi and that ANT_HOME environment
> * variable points out to the Ant installation dir, e.g.
> * export ANT_HOME=/usr/local/ant_1.6.5
> The following quick patch solves the problem:
> Index: enhanced/drlvm/trunk/build/make/setup.xml
> ===================================================================
> --- enhanced/drlvm/trunk/build/make/setup.xml       (revision 490124)
> +++ enhanced/drlvm/trunk/build/make/setup.xml       (working copy)
> @@ -33,11 +33,18 @@
>          <fail>
>              <condition>
>                  <not>
> -                    <and>
> -                        <equals arg1="${ch1}" arg2="1" />
> -                        <equals arg1="${ch2}" arg2="6" />
> -                        <equals arg1="${ch3}" arg2="5" />
> -                    </and>
> +                    <or>
> +                        <and>
> +                            <equals arg1="${ch1}" arg2="1" />
> +                            <equals arg1="${ch2}" arg2="6" />
> +                            <equals arg1="${ch3}" arg2="5" />
> +                        </and>
> +                        <and>
> +                            <equals arg1="${ant.version1}" arg2="1" />
> +                            <equals arg1="${ant.sub.version}" arg2="7" />
> +                            <equals arg1="${ant.sub.sub.version}" arg2="0" />
> +                        </and>
> +                    </or>
>                  </not>
>              </condition>
>  * You have wrong version of ANT :${ant.version}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (HARMONY-2869) [drlvm] [build] build fails on ant 1.7

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2869?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov reassigned HARMONY-2869:
----------------------------------------

    Assignee: Alexei Zakharov

> [drlvm] [build]  build fails on ant 1.7
> ---------------------------------------
>
>                 Key: HARMONY-2869
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2869
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>         Environment: Linux
>            Reporter: Anton Luht
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: H2869.patch
>
>
> Rule for checking Ant versions fails on Ant 1.7:
> You have wrong version of ANT :Apache Ant version 1.7.0 compiled on December 13 2006
> * Make sure you have Ant 1.6.5 or above installed from
> * http://ant.apache.org/bindownload.cgi and that ANT_HOME environment
> * variable points out to the Ant installation dir, e.g.
> * export ANT_HOME=/usr/local/ant_1.6.5
> The following quick patch solves the problem:
> Index: enhanced/drlvm/trunk/build/make/setup.xml
> ===================================================================
> --- enhanced/drlvm/trunk/build/make/setup.xml       (revision 490124)
> +++ enhanced/drlvm/trunk/build/make/setup.xml       (working copy)
> @@ -33,11 +33,18 @@
>          <fail>
>              <condition>
>                  <not>
> -                    <and>
> -                        <equals arg1="${ch1}" arg2="1" />
> -                        <equals arg1="${ch2}" arg2="6" />
> -                        <equals arg1="${ch3}" arg2="5" />
> -                    </and>
> +                    <or>
> +                        <and>
> +                            <equals arg1="${ch1}" arg2="1" />
> +                            <equals arg1="${ch2}" arg2="6" />
> +                            <equals arg1="${ch3}" arg2="5" />
> +                        </and>
> +                        <and>
> +                            <equals arg1="${ant.version1}" arg2="1" />
> +                            <equals arg1="${ant.sub.version}" arg2="7" />
> +                            <equals arg1="${ant.sub.sub.version}" arg2="0" />
> +                        </and>
> +                    </or>
>                  </not>
>              </condition>
>  * You have wrong version of ANT :${ant.version}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HARMONY-2869) [classlib] [build] build fails on ant 1.7

Posted by "Anton Luht (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2869?page=all ]

Anton Luht updated HARMONY-2869:
--------------------------------

    Attachment: H2869.patch

patch

> [classlib] [build]  build fails on ant 1.7
> ------------------------------------------
>
>                 Key: HARMONY-2869
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2869
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Linux
>            Reporter: Anton Luht
>            Priority: Minor
>         Attachments: H2869.patch
>
>
> Rule for checking Ant versions fails on Ant 1.7:
> You have wrong version of ANT :Apache Ant version 1.7.0 compiled on December 13 2006
> * Make sure you have Ant 1.6.5 or above installed from
> * http://ant.apache.org/bindownload.cgi and that ANT_HOME environment
> * variable points out to the Ant installation dir, e.g.
> * export ANT_HOME=/usr/local/ant_1.6.5
> The following quick patch solves the problem:
> Index: enhanced/drlvm/trunk/build/make/setup.xml
> ===================================================================
> --- enhanced/drlvm/trunk/build/make/setup.xml       (revision 490124)
> +++ enhanced/drlvm/trunk/build/make/setup.xml       (working copy)
> @@ -33,11 +33,18 @@
>          <fail>
>              <condition>
>                  <not>
> -                    <and>
> -                        <equals arg1="${ch1}" arg2="1" />
> -                        <equals arg1="${ch2}" arg2="6" />
> -                        <equals arg1="${ch3}" arg2="5" />
> -                    </and>
> +                    <or>
> +                        <and>
> +                            <equals arg1="${ch1}" arg2="1" />
> +                            <equals arg1="${ch2}" arg2="6" />
> +                            <equals arg1="${ch3}" arg2="5" />
> +                        </and>
> +                        <and>
> +                            <equals arg1="${ant.version1}" arg2="1" />
> +                            <equals arg1="${ant.sub.version}" arg2="7" />
> +                            <equals arg1="${ant.sub.sub.version}" arg2="0" />
> +                        </and>
> +                    </or>
>                  </not>
>              </condition>
>  * You have wrong version of ANT :${ant.version}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-2869) [drlvm] [build] build fails on ant 1.7

Posted by "Anton Luht (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2869?page=all ]

Anton Luht updated HARMONY-2869:
--------------------------------

    Component/s: DRLVM
                     (was: Classlib)
        Summary: [drlvm] [build]  build fails on ant 1.7  (was: [classlib] [build]  build fails on ant 1.7)

sorry - it's DRLVM build, not classlib

> [drlvm] [build]  build fails on ant 1.7
> ---------------------------------------
>
>                 Key: HARMONY-2869
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2869
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>         Environment: Linux
>            Reporter: Anton Luht
>            Priority: Minor
>         Attachments: H2869.patch
>
>
> Rule for checking Ant versions fails on Ant 1.7:
> You have wrong version of ANT :Apache Ant version 1.7.0 compiled on December 13 2006
> * Make sure you have Ant 1.6.5 or above installed from
> * http://ant.apache.org/bindownload.cgi and that ANT_HOME environment
> * variable points out to the Ant installation dir, e.g.
> * export ANT_HOME=/usr/local/ant_1.6.5
> The following quick patch solves the problem:
> Index: enhanced/drlvm/trunk/build/make/setup.xml
> ===================================================================
> --- enhanced/drlvm/trunk/build/make/setup.xml       (revision 490124)
> +++ enhanced/drlvm/trunk/build/make/setup.xml       (working copy)
> @@ -33,11 +33,18 @@
>          <fail>
>              <condition>
>                  <not>
> -                    <and>
> -                        <equals arg1="${ch1}" arg2="1" />
> -                        <equals arg1="${ch2}" arg2="6" />
> -                        <equals arg1="${ch3}" arg2="5" />
> -                    </and>
> +                    <or>
> +                        <and>
> +                            <equals arg1="${ch1}" arg2="1" />
> +                            <equals arg1="${ch2}" arg2="6" />
> +                            <equals arg1="${ch3}" arg2="5" />
> +                        </and>
> +                        <and>
> +                            <equals arg1="${ant.version1}" arg2="1" />
> +                            <equals arg1="${ant.sub.version}" arg2="7" />
> +                            <equals arg1="${ant.sub.sub.version}" arg2="0" />
> +                        </and>
> +                    </or>
>                  </not>
>              </condition>
>  * You have wrong version of ANT :${ant.version}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira