source: local/greenstone3/darwin-64bit/apache-ant-1.9.6/bin/runant.py@ 30383

Last change on this file since 30383 was 30383, checked in by davidb, 8 years ago

Newer version of ant needed to compile GS3

  • Property svn:executable set to *
File size: 3.3 KB
Line 
1#!/usr/bin/python
2# Licensed to the Apache Software Foundation (ASF) under one or more
3# contributor license agreements. See the NOTICE file distributed with
4# this work for additional information regarding copyright ownership.
5# The ASF licenses this file to You under the Apache License, Version 2.0
6# (the "License"); you may not use this file except in compliance with
7# the License. You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18"""
19
20 runant.py
21
22 This script is a translation of the runant.pl
23 It runs ant with/out arguments, it should be quite portable (thanks to
24 the python os library)
25 This script has been tested with Python2.0/Win2K
26
27 Assumptions:
28
29 - the "java" executable/script is on the command path
30"""
31import os, os.path, string, sys
32
33# Change it to 1 to get extra debug information
34debug = 0
35
36#######################################################################
37
38# If ANT_HOME is not set default to script's parent directory
39if os.environ.has_key('ANT_HOME'):
40 ANT_HOME = os.environ['ANT_HOME']
41else:
42 ANT_HOME = os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0])))
43
44# set ANT_LIB location
45ANT_LIB = os.path.join(ANT_HOME, 'lib')
46
47# set JAVACMD (check variables JAVACMD and JAVA_HOME)
48JAVACMD = None
49if not os.environ.has_key('JAVACMD'):
50 if os.environ.has_key('JAVA_HOME'):
51 if not os.path.exists(os.environ['JAVA_HOME']):
52 print "Warning: JAVA_HOME is not defined correctly."
53 else:
54 JAVA_HOME = os.environ['JAVA_HOME']
55 while JAVA_HOME[0] == JAVA_HOME[-1] == "\"":
56 JAVA_HOME = JAVA_HOME[1:-1]
57 JAVACMD = os.path.join(JAVA_HOME, 'bin', 'java')
58 else:
59 print "Warning: JAVA_HOME not set."
60else:
61 JAVACMD = os.environ['JAVACMD']
62if not JAVACMD:
63 JAVACMD = 'java'
64
65launcher_jar = os.path.join(ANT_LIB, 'ant-launcher.jar')
66if not os.path.exists(launcher_jar):
67 print 'Warning: Unable to locate ant-launcher.jar. Expected to find it in %s' % \
68 ANT_LIB
69
70# Build up standard classpath (LOCALCLASSPATH)
71LOCALCLASSPATH = launcher_jar
72if os.environ.has_key('LOCALCLASSPATH'):
73 LOCALCLASSPATH += os.pathsep + os.environ['LOCALCLASSPATH']
74
75ANT_OPTS = ""
76if os.environ.has_key('ANT_OPTS'):
77 ANT_OPTS = os.environ['ANT_OPTS']
78
79OPTS = ""
80if os.environ.has_key('JIKESPATH'):
81 OPTS = '-Djikes.class.path=\"%s\"' % os.environ['JIKESPATH']
82
83ANT_ARGS = ""
84if os.environ.has_key('ANT_ARGS'):
85 ANT_ARGS = os.environ['ANT_ARGS']
86
87CLASSPATH = ""
88if os.environ.has_key('CLASSPATH'):
89 CLASSPATH = "-lib " + os.environ['CLASSPATH']
90
91while JAVACMD[0] == JAVACMD[-1] == "\"":
92 JAVACMD = JAVACMD[1:-1]
93
94# Builds the commandline
95cmdline = ('"%s" %s -classpath %s -Dant.home=%s %s ' + \
96 'org.apache.tools.ant.launch.Launcher %s %s %s') \
97 % (JAVACMD, ANT_OPTS, LOCALCLASSPATH, ANT_HOME, OPTS, ANT_ARGS, \
98 CLASSPATH, string.join(sys.argv[1:], ' '))
99
100if debug:
101 print '\n%s\n\n' % (cmdline)
102sys.stdout.flush()
103
104# Run the biniou!
105os.system(cmdline)
Note: See TracBrowser for help on using the repository browser.