You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2008/05/21 14:22:27 UTC

svn commit: r658649 - in /harmony/enhanced/common_resources/trunk: build.xml build/

Author: varlax
Date: Wed May 21 05:22:27 2008
New Revision: 658649

URL: http://svn.apache.org/viewvc?rev=658649&view=rev
Log:
Dropped obsolete scripts

Removed:
    harmony/enhanced/common_resources/trunk/build/
Modified:
    harmony/enhanced/common_resources/trunk/build.xml

Modified: harmony/enhanced/common_resources/trunk/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/common_resources/trunk/build.xml?rev=658649&r1=658648&r2=658649&view=diff
==============================================================================
--- harmony/enhanced/common_resources/trunk/build.xml (original)
+++ harmony/enhanced/common_resources/trunk/build.xml Wed May 21 05:22:27 2008
@@ -42,51 +42,22 @@
         </echo>
     </target>
 
+    <import file="${basedir}/make/properties.xml" />
 
-    <!-- import properties for snapshot targets -->
-    <import file="${basedir}/build/properties.xml" />
-
-
-    <target name="clean" description="Removes all the files generated by a build" />
-
-    <!-- ================================= 
-          target: -properties
-         ================================= -->
-    <target name="-properties" depends="svn-prop">
-        <property name="deploy.file.prefix"
-                  value="incubator-harmony-classlib-r${svn.revision}" />
-        <property name="deploy.tar"
-                  value="${deploy.file.prefix}-${hy.os}-${hy.arch}-snapshot.tar.gz" />
-        <property name="deploy.zip"
-                  value="${deploy.file.prefix}-${hy.os}-${hy.arch}-snapshot.zip" />
-    </target>
-
-
+    <target name="clean" description="Removes all the files generated by a build" >
+        <echo>TODO - not yet implemented</echo>
+    </target>        
 
     <target name="check-depends"
             description="Report on whether the dependencies are met">
-        <ant antfile="build/depends.xml" inheritall="false" target="check" />
     </target>
 
     <target name="fetch-depends"
         description="Fetches dependencies. Note: Some of Harmony's dependencies are licensed under terms other than the Apache License v2.">
-        <ant antfile="build/depends.xml" inheritall="false" target="download" />
     </target>
 
     <target name="properties" depends="echo"
-        description="Display the properties that are use in the ant build files"
-            />
+        description="Display the properties that are use in the ant build files" />
     
-    <macrodef name="chksum">
-        <attribute name="file" />
-        <attribute name="type" default="md5" />
-        <sequential>
-            <checksum property="@{file}.@{type}" file="@{file}"
-                      algorithm="@{type}" />
-            <echo file="@{file}.@{type}"
-                  message="${@{file}.@{type}}  @{file}${line.separator}" />
-        </sequential>
-    </macrodef>
-
 </project>