Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2839 - development/main

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT dpml.net
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r2839 - development/main
  • Date: Mon, 13 Jun 2005 04:41:15 -0400

Author: mcconnell AT dpml.net
Date: Mon Jun 13 04:41:15 2005
New Revision: 2839

Modified:
development/main/README.TXT
development/main/build.bat
development/main/build.sh
development/main/build.xml
Log:
housekeeping

Modified: development/main/README.TXT
==============================================================================
--- development/main/README.TXT (original)
+++ development/main/README.TXT Mon Jun 13 04:41:15 2005
@@ -4,9 +4,10 @@

$ ant transit ... builds the transit distribution and updates the
local installation
$ ant magic ... builds the magic build system (requires Transit)
+$ ant util ... builds the util package (requires Magic)
$ ant depot ... builds Depot (requires Transit and Magic)
$ ant metro ... builds Metro (requires Transit, Magic, Depot)
-$ ant test ... builds intergrating tests
+$ ant test ... builds intergrating tests (requires Metro)

Please note that the Transit build will install the junit jar file
under the .ant/lib directory if not available. In such a case the

Modified: development/main/build.bat
==============================================================================
--- development/main/build.bat (original)
+++ development/main/build.bat Mon Jun 13 04:41:15 2005
@@ -25,6 +25,7 @@

IF "%TARGET%" == "" set TARGET=all
IF "%TARGET%" == "transit" CALL :transit
+IF "%TARGET%" == "util" CALL :util
IF "%TARGET%" == "magic" CALL :magic
IF "%TARGET%" == "depot" CALL :depot
IF "%TARGET%" == "metro" CALL :metro
@@ -36,6 +37,8 @@
:all
CALL :transit
IF ERRORLEVEL 1 goto fail
+CALL :util
+IF ERRORLEVEL 1 goto fail
CALL :magic
IF ERRORLEVEL 1 goto fail
CALL :depot
@@ -51,6 +54,8 @@
IF ERRORLEVEL 1 goto fail
CALL :transit
IF ERRORLEVEL 1 goto fail
+CALL :util
+IF ERRORLEVEL 1 goto fail
CALL :magic
IF ERRORLEVEL 1 goto fail
CALL :depot
@@ -90,6 +95,12 @@
POPD
GOTO :EOF

+:util
+PUSHD util
+CALL :build clean install
+POPD
+GOTO :EOF
+
:depot
PUSHD depot
CALL :build clean install
@@ -121,9 +132,10 @@
echo [product] product name
echo transit -- build the transit distribution
echo magic -- build the magic distribution
+echo util -- build the util distribution
echo metro -- build the metro distribution
echo test -- build and execute integration tests
-echo all -- builds transit, magic, metro distributions and
executes integration tests
+echo all -- builds transit, magic, util, depot, and metro
distributions and executes integration tests
echo [revision] optional build revision identified used when
echo building number releases.
goto :EOF

Modified: development/main/build.sh
==============================================================================
--- development/main/build.sh (original)
+++ development/main/build.sh Mon Jun 13 04:41:15 2005
@@ -11,6 +11,7 @@
# all builds transit, util, magic, depot, metro
# transit build transit and util
# magic build magic
+# util build util
# depot build depot
# metro build metro
# test build test
@@ -50,6 +51,13 @@
cd -
}

+util()
+{
+ cd util
+ build clean install
+ cd -
+}
+
depot()
{
cd depot
@@ -85,6 +93,7 @@
echo " [product] product name"
echo " transit -- build the transit distribution"
echo " magic -- build the magic distribution"
+ echo " util -- build the util distribution"
echo " depot -- build the depot distribution"
echo " metro -- build the metro distribution"
echo " test -- build the integration tests"
@@ -107,6 +116,10 @@
magic
fi

+if [ "$TARGET" == "util" ] ; then
+ util
+fi
+
if [ "$TARGET" == "depot" ] ; then
depot
fi
@@ -126,6 +139,7 @@
if [ "$TARGET" == "all" ] ; then
transit
magic
+ util
depot
metro
test
@@ -135,6 +149,7 @@
luntbuildclean
transit
magic
+ util
depot
metro
test

Modified: development/main/build.xml
==============================================================================
--- development/main/build.xml (original)
+++ development/main/build.xml Mon Jun 13 04:41:15 2005
@@ -33,6 +33,10 @@
<ant dir="magic"/>
</target>

+ <target name="util" description="Build Util (requires Magic).">
+ <ant dir="util"/>
+ </target>
+
<target name="depot" description="Build Depot (requires Magic).">
<ant dir="depot"/>
</target>



  • svn commit: r2839 - development/main, mcconnell, 06/13/2005

Archive powered by MHonArc 2.6.24.

Top of Page