You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by nd...@apache.org on 2009/04/28 02:41:21 UTC

svn commit: r769213 - in /harmony/enhanced/classlib/trunk: depends/jars/icu4j_4.0/ make/depends.properties make/depends.xml

Author: ndbeyer
Date: Tue Apr 28 00:41:21 2009
New Revision: 769213

URL: http://svn.apache.org/viewvc?rev=769213&view=rev
Log:
Make ICU4J a fetched dependency as part of HARMONY-6096 - upgrade ICU from 3.8 to 4.0

Removed:
    harmony/enhanced/classlib/trunk/depends/jars/icu4j_4.0/
Modified:
    harmony/enhanced/classlib/trunk/make/depends.properties
    harmony/enhanced/classlib/trunk/make/depends.xml

Modified: harmony/enhanced/classlib/trunk/make/depends.properties
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/depends.properties?rev=769213&r1=769212&r2=769213&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/make/depends.properties (original)
+++ harmony/enhanced/classlib/trunk/make/depends.properties Tue Apr 28 00:41:21 2009
@@ -145,3 +145,15 @@
 asm.jar=${asm.dir}/asm-3.1.jar
 asm.url=http://download.forge.objectweb.org/asm/asm-3.1.jar
 asm.md5=4fbe0fd975ecc71480846ce272b483b0
+
+icu4j.ver=icu4j_4.0
+icu4j.dir=${depends.jars}/${icu4j.ver}
+icu4j.jar=${icu4j.dir}/icu4j-4_0.jar
+icu4j.url=http://download.icu-project.org/files/icu4j/4.0/icu4j-4_0.jar
+icu4j.md5=08397653119558593204474fd5a9a7e3
+
+icu4j-charsets.ver=icu4j_4.0
+icu4j-charsets.dir=${depends.jars}/${icu4j.ver}
+icu4j-charsets.jar=${icu4j.dir}/icu4j-charsets-4_0.jar
+icu4j-charsets.url=http://download.icu-project.org/files/icu4j/4.0/icu4j-charsets-4_0.jar
+icu4j-charsets.md5=5dd1d6aaffa6762e09541b3bb412d8ee

Modified: harmony/enhanced/classlib/trunk/make/depends.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/depends.xml?rev=769213&r1=769212&r2=769213&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/make/depends.xml (original)
+++ harmony/enhanced/classlib/trunk/make/depends.xml Tue Apr 28 00:41:21 2009
@@ -57,6 +57,8 @@
         <check-one-file src="${dejavu-fonts.url}" dest="${dejavu-fonts.zip}" />
         <check-one-file src="${derby.url}" dest="${derby.jar}" />
         <check-one-file src="${asm.url}" dest="${asm.jar}" />
+        <check-one-file src="${icu4j.url}" dest="${icu4j.jar}" />
+        <check-one-file src="${icu4j-charsets.url}" dest="${icu4j-charsets.jar}" />    
     </target>
 
     <target name="-check-win" if="is.windows" depends="-really-check-win" />
@@ -225,6 +227,14 @@
     <mkdir dir="${asm.dir}" />
     <download-one-file src="${asm.url}" dest="${asm.jar}"
                            md5="${asm.md5}" />
+
+    <mkdir dir="${icu4j.dir}" />
+    <download-one-file src="${icu4j.url}"
+                       dest="${icu4j.jar}"
+                       md5="${icu4j.md5}" />
+    <download-one-file src="${icu4j-charsets.url}"
+                       dest="${icu4j-charsets.jar}"
+                       md5="${icu4j-charsets.md5}" />
     </target>
 
     <target name="-download-win" if="is.windows">