Update of /cvsroot/jboost/jboost
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv31948
Modified Files:
CHANGES build.xml jboost
Log Message:
bunch of misc changes
Index: jboost
===================================================================
RCS file: /cvsroot/jboost/jboost/jboost,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** jboost 4 Jun 2007 22:15:12 -0000 1.4
--- jboost 23 Oct 2007 23:52:26 -0000 1.5
***************
*** 22,29 ****
fi
! echo -n "JBoost jar file is:"
echo "${CLASSPATH}" | sed 's/:/\n/g' | grep 'jboost\.jar'
! exec java -Xmx1000M jboost.controller.Controller $@
if [ $? -ne 0 ]; then
--- 22,29 ----
fi
! echo -n "JBoost jar file is: "
echo "${CLASSPATH}" | sed 's/:/\n/g' | grep 'jboost\.jar'
! exec java -Xmx500M jboost.controller.Controller $@
if [ $? -ne 0 ]; then
Index: CHANGES
===================================================================
RCS file: /cvsroot/jboost/jboost/CHANGES,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** CHANGES 14 Jun 2007 16:33:31 -0000 1.4
--- CHANGES 23 Oct 2007 23:52:25 -0000 1.5
***************
*** 2,5 ****
--- 2,15 ----
--------------------
+ + Release 1.4 +
+ =================
+
+ - NormalBoost is implemented
+ - BrownBoost-like update
+ - Asymetric cost
+ - Iteration order evalution of the ADTree
+ - More bugs fixed
+ - Scripts updated and made more general
+
+ Release 1.3.1 +
=================
Index: build.xml
===================================================================
RCS file: /cvsroot/jboost/jboost/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** build.xml 4 Jun 2007 22:15:10 -0000 1.7
--- build.xml 23 Oct 2007 23:52:26 -0000 1.8
***************
*** 15,19 ****
<property name="dir.scripts" value="scripts"/>
<property name="dir.javadoc" value="javadoc"/>
! <property name="jboost.version" value="1.3.1"/>
<property name="test.class.name" value="jboost.AllTests"/>
--- 15,19 ----
<property name="dir.scripts" value="scripts"/>
<property name="dir.javadoc" value="javadoc"/>
! <property name="jboost.version" value="1.4"/>
<property name="test.class.name" value="jboost.AllTests"/>
***************
*** 76,80 ****
<target name="compile" depends="prepare"
description="Compile all source code.">
! <javac srcdir="${dir.src}" classpath="${dir.lib}/junit.jar:${dir.lib}/concurrent.jar" destdir="${dir.build}" debug="on" />
</target>
--- 76,85 ----
<target name="compile" depends="prepare"
description="Compile all source code.">
! <javac srcdir="${dir.src}"
! classpath="${dir.lib}/junit.jar:${dir.lib}/concurrent.jar"
! destdir="${dir.build}"
! debug="on"
! executable="/usr/java/jdk1.3/bin/javac"
! />
</target>
***************
*** 187,195 ****
</exec>
!
<tar destfile="jboost-${jboost.version}.tar">
<tarfileset dir="jboost-${jboost.version}" prefix="jboost-${jboost.version}"/>
</tar>
<gzip zipfile="jboost-${jboost.version}.tgz" src="jboost-${jboost.version}.tar"/>
--- 192,208 ----
</exec>
! <!--
<tar destfile="jboost-${jboost.version}.tar">
<tarfileset dir="jboost-${jboost.version}" prefix="jboost-${jboost.version}"/>
</tar>
<gzip zipfile="jboost-${jboost.version}.tgz" src="jboost-${jboost.version}.tar"/>
+ -->
+
+ <exec executable="tar" >
+ <arg value="cpzf" />
+ <arg value="jboost-${jboost.version}.tgz" />
+ <arg value="jboost-${jboost.version}" />
+ </exec>
+
|