diff options
Diffstat (limited to '')
-rwxr-xr-x | infrastructure/bin/classpath.sh (renamed from trunk/infrastructure/bin/classpath.sh) | 0 | ||||
-rwxr-xr-x | infrastructure/bin/comp.sh (renamed from trunk/infrastructure/bin/comp.sh) | 0 | ||||
-rwxr-xr-x | infrastructure/bin/jscomp.sh (renamed from trunk/infrastructure/bin/jscomp.sh) | 0 | ||||
-rwxr-xr-x | infrastructure/bin/makesars.sh (renamed from trunk/infrastructure/bin/makesars.sh) | 0 | ||||
-rwxr-xr-x | infrastructure/bin/run.sh (renamed from trunk/infrastructure/bin/run.sh) | 0 | ||||
-rw-r--r-- | trunk/infrastructure/bin/compilecache.sh | 64 | ||||
-rwxr-xr-x | trunk/infrastructure/bin/makejar.sh | 74 |
7 files changed, 0 insertions, 138 deletions
diff --git a/trunk/infrastructure/bin/classpath.sh b/infrastructure/bin/classpath.sh index b1d297c..b1d297c 100755 --- a/trunk/infrastructure/bin/classpath.sh +++ b/infrastructure/bin/classpath.sh diff --git a/trunk/infrastructure/bin/comp.sh b/infrastructure/bin/comp.sh index 5f65c2f..5f65c2f 100755 --- a/trunk/infrastructure/bin/comp.sh +++ b/infrastructure/bin/comp.sh diff --git a/trunk/infrastructure/bin/jscomp.sh b/infrastructure/bin/jscomp.sh index 3f5bc51..3f5bc51 100755 --- a/trunk/infrastructure/bin/jscomp.sh +++ b/infrastructure/bin/jscomp.sh diff --git a/trunk/infrastructure/bin/makesars.sh b/infrastructure/bin/makesars.sh index 541b04a..541b04a 100755 --- a/trunk/infrastructure/bin/makesars.sh +++ b/infrastructure/bin/makesars.sh diff --git a/trunk/infrastructure/bin/run.sh b/infrastructure/bin/run.sh index cf918d4..cf918d4 100755 --- a/trunk/infrastructure/bin/run.sh +++ b/infrastructure/bin/run.sh diff --git a/trunk/infrastructure/bin/compilecache.sh b/trunk/infrastructure/bin/compilecache.sh deleted file mode 100644 index a2b6220..0000000 --- a/trunk/infrastructure/bin/compilecache.sh +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/bash - -# Copyright 2009 Google Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS-IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -CP_CMD="cp -R -u" -if [ `uname` == "Darwin" ]; then - CP_CMD="/bin/cp -R -n" -fi - -function cacheonfiles { - NAME=$1; FILES=$2; FUNC=$3; NOCOPY=1; - if [ -z "$4" ]; then - NOCOPY=0 - fi - REBUILD=0 - BPATH=buildcache/$NAME - FILETEST=$BPATH/t - if [ ! -f $FILETEST ]; then - REBUILD=1 - else - for a in $FILES; do - if [ $FILETEST -ot $a ]; then - echo $a has changed, rebuilding $NAME - REBUILD=1 - fi - done - fi - if [ $REBUILD -eq 1 ]; then - if [ -d $BPATH ]; then - rm -rf $BPATH - fi - mkdir -p $BPATH - $FUNC $BPATH - pushd $BPATH >> /dev/null - touch t - popd >> /dev/null - else - echo using cached $NAME... - fi - if [ $NOCOPY -ne 1 ]; then - for a in $BPATH/*; do - if [ -d $a ]; then - $CP_CMD $a build/ - elif [ -f $a ]; then - cp $a build/ - else - echo unknown file type $a - exit 1 - fi - done - fi -} diff --git a/trunk/infrastructure/bin/makejar.sh b/trunk/infrastructure/bin/makejar.sh deleted file mode 100755 index c774fa6..0000000 --- a/trunk/infrastructure/bin/makejar.sh +++ /dev/null @@ -1,74 +0,0 @@ -#!/bin/bash -e - -# Copyright 2009 Google Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS-IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -if [ -z "$JAR" ]; then - JAR=jar -else - echo "using JAR $JAR..." -fi - -cp ${MYSQL_CONNECTOR_JAR} lib/ - -source bin/compilecache.sh - -if [ "$1" == "clearcache" ]; then - echo "CLEARING BUILD CACHE" - rm -rf buildcache - shift; -fi - -TMPSTORE=/tmp/ajbuild-tmpstore-`date +%s` - -JARFILES=`echo $SCALA_HOME/lib/scala-library.jar lib/*.jar lib/manifest` -function genjar { - echo "unzipping JARs..." - pushd $1 >> /dev/null - $JAR xf $SCALA_HOME/lib/scala-library.jar - rm -rf META-INF - for a in ../../lib/*.jar; do - $JAR xf $a - rm -rf META-INF/{MANIFEST.MF,NOTICE{,.txt},LICENSE{,.txt},INDEX.LIST,SUN_MICR.{RSA,SF},maven} - done - - echo "making cached JAR...." - $JAR -cfm appjet.jar ../../lib/manifest . - mv appjet.jar /tmp/appjet.jar - rm -rf * - mv /tmp/appjet.jar ./ - - popd >> /dev/null -} -cacheonfiles JAR "$JARFILES" genjar 1 - -echo "compiling..." -bin/comp.sh $@ - -pushd build >> /dev/null - -echo "copying cached JAR..." -cp ../buildcache/JAR/appjet.jar ./ - -echo "making JAR..." -mv appjet.jar /tmp/appjet.jar -$JAR -uf /tmp/appjet.jar . #META-INF com javax org net uk v scala dojox -mv /tmp/appjet.jar ./ - -echo "cleaning up..." -rm -rf $TMPSTORE - -popd >> /dev/null - -echo "done." |