This commit was manufactured by cvs2svn to create tag 'glite-lb_R_0_1_0'. glite-lb_R_0_1_0
authorcvs2svn <admin@example.com>
Tue, 16 Nov 2004 05:01:26 +0000 (05:01 +0000)
committercvs2svn <admin@example.com>
Tue, 16 Nov 2004 05:01:26 +0000 (05:01 +0000)
Sprout from glite-lb_branch_R_0_6_0 2004-11-16 05:01:25 UTC cvs2svn <admin@example.com> 'This commit was manufactured by cvs2svn to create branch 'glite-'
Cherrypick from master 2004-10-19 10:45:50 UTC Alberto Di Meglio <alberto.di.meglio@cern.ch> 'Moved back to HEAD':
    org.glite.lb/build.xml
    org.glite.lb/project/dependencies.properties
    org.glite.lb/project/version.properties

org.glite.lb/build.xml
org.glite.lb/project/version.properties

index 2445834..81b92de 100755 (executable)
 
        Revision history:
        $Log$
-       Revision 1.25  2004/10/28 22:57:36  dimeglio
-       Quoted ant command line parameters
-       
-       Revision 1.24  2004/10/28 18:19:30  dimeglio
-       Added envcheck to individual components
-       
-       Revision 1.23  2004/10/26 15:12:06  dimeglio
-       Fixed spelling error in envchecks
-       
-       Revision 1.22  2004/10/26 13:11:13  dimeglio
-       Added dependency of clean on envchecks
-       
-       Revision 1.21  2004/10/25 20:57:38  dimeglio
-       Use antExec
-       
-       Revision 1.20  2004/10/21 10:37:48  akrenek
-       make server depend on logger due to notification interlogger
-       
-       Revision 1.19  2004/10/15 12:30:01  akrenek
-       build with lb.sever-bones
-       
        Revision 1.18  2004/09/29 13:35:39  flammer
        Only update of line formatting.
        
                </antcall>
        </target>
 
-       <target name="clean" depends="envcheck">
+       <target name="clean">
 
                <property name="offline.repository" value="true" />
                <antcall target="buildmodules">
 
        </target>
 
-       <target name="cleanAll" depends="clean"/>
+       <target name="cleanAll" depends="localinit">
+               <antcall target="buildmodules">
+                       <param name="target" value="cleanAll"/>
+               </antcall>
+       </target>
 
        <!-- ===============================================
                 Private targets
 
        <!-- component targets definitions tag = do not remove = -->
 
-       <target name="client-interface" unless="setenvonly" depends="envset">
+       <target name="client-interface" unless="setenvonly">
                <if>
                        <isset property="small.memory" />
                        <then>
-                               <exec dir="${lb.subsystem.dir}.client-interface" executable="${antExec}" failonerror="${failonerror}">
-                                       <arg line="${target} &quot;-Dsmall.memory=true&quot; &quot;-Dbootstrap=${bootstrap}&quot; &quot;-Dfailonerror=${failonerror}&quot; &quot;-Ddo.cvs.tag=${do.cvs.tag}&quot;"/>
+                               <exec dir="${lb.subsystem.dir}.client-interface" executable="${env.ANT_HOME}/bin/ant" failonerror="${failonerror}">
+                                       <arg line="${target} -Dsmall.memory=true -Dbootstrap=${bootstrap} -Dfailonerror=${failonerror} -Ddo.cvs.tag=${do.cvs.tag}"/>
                                </exec>
                        </then>
                        <else>
                </if>
        </target>
 
-       <target name="server-bones" unless="setenvonly" depends="envset">
+       <target name="server-bones" unless="setenvonly">
                <if>
                        <isset property="small.memory" />
                        <then>
-                               <exec dir="${lb.subsystem.dir}.server-bones" executable="${antExec}" failonerror="${failonerror}">
-                                       <arg line="${target} &quot;-Dsmall.memory=true&quot; &quot;-Dbootstrap=${bootstrap}&quot; &quot;-Dfailonerror=${failonerror}&quot; &quot;-Ddo.cvs.tag=${do.cvs.tag}&quot;"/>
+                               <exec dir="${lb.subsystem.dir}.server-bones" executable="${env.ANT_HOME}/bin/ant" failonerror="${failonerror}">
+                                       <arg line="${target} -Dsmall.memory=true -Dbootstrap=${bootstrap} -Dfailonerror=${failonerror} -Ddo.cvs.tag=${do.cvs.tag}"/>
                                </exec>
                        </then>
                        <else>
                </if>
        </target>
 
-       <target name="common" unless="setenvonly" depends="envset, globus,expat,ares,client-interface">
+       <target name="common" unless="setenvonly" depends="globus,expat,ares,client-interface">
                <if>
                        <isset property="small.memory" />
                        <then>
-                               <exec dir="${lb.subsystem.dir}.common" executable="${antExec}" failonerror="${failonerror}">
-                                       <arg line="${target} &quot;-Dsmall.memory=true&quot; &quot;-Dbootstrap=${bootstrap}&quot; &quot;-Dfailonerror=${failonerror}&quot; &quot;-Ddo.cvs.tag=${do.cvs.tag}&quot;"/>
+                               <exec dir="${lb.subsystem.dir}.common" executable="${env.ANT_HOME}/bin/ant" failonerror="${failonerror}">
+                                       <arg line="${target} -Dsmall.memory=true -Dbootstrap=${bootstrap} -Dfailonerror=${failonerror} -Ddo.cvs.tag=${do.cvs.tag}"/>
                                </exec>
                        </then>
                        <else>
                </if>
        </target>
 
-       <target name="client" unless="setenvonly" depends="envset, globus,expat,ares,client-interface,common">
+       <target name="client" unless="setenvonly" depends="globus,expat,ares,client-interface,common">
                <if>
                        <isset property="small.memory" />
                        <then>
-                               <exec dir="${lb.subsystem.dir}.client" executable="${antExec}" failonerror="${failonerror}">
-                                       <arg line="${target} &quot;-Dsmall.memory=true&quot; &quot;-Dbootstrap=${bootstrap}&quot; &quot;-Dfailonerror=${failonerror}&quot; &quot;-Ddo.cvs.tag=${do.cvs.tag}&quot;"/>
+                               <exec dir="${lb.subsystem.dir}.client" executable="${env.ANT_HOME}/bin/ant" failonerror="${failonerror}">
+                                       <arg line="${target} -Dsmall.memory=true -Dbootstrap=${bootstrap} -Dfailonerror=${failonerror} -Ddo.cvs.tag=${do.cvs.tag}"/>
                                </exec>
                        </then>
                        <else>
                </if>
        </target>
 
-       <target name="server" unless="setenvonly" depends="envset, globus,expat,ares,mysql,gsoap,client-interface,common,logger">
+       <target name="server" unless="setenvonly" depends="globus,expat,ares,mysql,gsoap,client-interface,common">
                <if>
                        <isset property="small.memory" />
                        <then>
-                               <exec dir="${lb.subsystem.dir}.server" executable="${antExec}" failonerror="${failonerror}">
-                                       <arg line="${target} &quot;-Dsmall.memory=true&quot; &quot;-Dbootstrap=${bootstrap}&quot; &quot;-Dfailonerror=${failonerror}&quot; &quot;-Ddo.cvs.tag=${do.cvs.tag}&quot;"/>
+                               <exec dir="${lb.subsystem.dir}.server" executable="${env.ANT_HOME}/bin/ant" failonerror="${failonerror}">
+                                       <arg line="${target} -Dsmall.memory=true -Dbootstrap=${bootstrap} -Dfailonerror=${failonerror} -Ddo.cvs.tag=${do.cvs.tag}"/>
                                </exec>
                        </then>
                        <else>
                </if>
        </target>
 
-       <target name="logger" unless="setenvonly" depends="envset, globus,expat,ares,client-interface,common">
+       <target name="logger" unless="setenvonly" depends="globus,expat,ares,client-interface,common">
                <if>
                        <isset property="small.memory" />
                        <then>
-                               <exec dir="${lb.subsystem.dir}.logger" executable="${antExec}" failonerror="${failonerror}">
-                                       <arg line="${target} &quot;-Dsmall.memory=true&quot; &quot;-Dbootstrap=${bootstrap}&quot; &quot;-Dfailonerror=${failonerror}&quot; &quot;-Ddo.cvs.tag=${do.cvs.tag}&quot;"/>
+                               <exec dir="${lb.subsystem.dir}.logger" executable="${env.ANT_HOME}/bin/ant" failonerror="${failonerror}">
+                                       <arg line="${target} -Dsmall.memory=true -Dbootstrap=${bootstrap} -Dfailonerror=${failonerror} -Ddo.cvs.tag=${do.cvs.tag}"/>
                                </exec>
                        </then>
                        <else>
        </target>
 
        <!-- Main proxy -->
-       <target name="buildmodules" depends="envset, 
-                                                client-interface,
+       <target name="buildmodules" depends="client-interface,
                                             client,
                                             server-bones,
                                             common,
index 45fd7bc..329993d 100644 (file)
@@ -1,4 +1,4 @@
-#Tue Nov 16 05:59:07 CET 2004
-module.version=0.2.0
-module.build=87
-module.age=2
+#Tue Oct 19 07:15:00 CEST 2004
+module.version=0.1.0
+module.build=50
+module.age=0