Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:lkundrak:IDEA
groovy
groovy-script
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File groovy-script of Package groovy
#!/bin/sh # # Groovy script # Lubomir Rintel <lkundrak@v3.sk> # Packagers: When updating the package be sure to check # all this against against the upstream binary package # Source functions library if [ -f /usr/share/java-utils/java-functions ] ; then . /usr/share/java-utils/java-functions else echo "Can't find functions library, aborting" exit 1 fi # Configuration SCRIPT_PATH=$0 PROGNAME=$(basename $SCRIPT_PATH) GROOVY_CONF=/etc/groovy-starter.conf TOOLS_JAR=$(build-classpath ../jvm/java/lib/tools) STARTER_MAIN_CLASS=org.codehaus.groovy.tools.GroovyStarter MAIN_CLASS=$STARTER_MAIN_CLASS # Wrappers [ $PROGNAME = grape ] && CLASS=org.codehaus.groovy.tools.GrapeMain [ $PROGNAME = groovy ] && CLASS=groovy.ui.GroovyMain [ $PROGNAME = groovyc ] && CLASS=org.codehaus.groovy.tools.FileSystemCompiler [ $PROGNAME = groovyConsole ] && CLASS=groovy.ui.Console [ $PROGNAME = java2groovy ] && CLASS=org.codehaus.groovy.antlr.java.Java2GroovyMain [ $PROGNAME = groovysh ] && CLASS=org.codehaus.groovy.tools.shell.Main [ $PROGNAME = groovysh ] && [ "$OLDSHELL" ] && CLASS=groovy.ui.InteractiveShell # Load system-wide configuration if [ -f /etc/groovy.conf ]; then . /etc/groovy.conf fi # Load user configuration [ -f "$HOME/.groovyrc" ] && . "$HOME/.groovyrc" [ -f "$HOME/.groovy/startup" ] && . "$HOME/.groovy/startup" # Bail out if there's nothing to run if [ -z "$CLASS" ] then echo "Can not determine main class for '$PROGNAME'" >&2 exit 1 fi # JVM options GROOVY_OPTS="$GROOVY_OPTS -Dscript.name=$SCRIPT_PATH" GROOVY_OPTS="$GROOVY_OPTS -Dprogram.name=$PROGNAME" GROOVY_OPTS="$GROOVY_OPTS -Dgroovy.starter.conf=$GROOVY_CONF" GROOVY_OPTS="$GROOVY_OPTS -Dgroovy.home=$GROOVY_HOME" GROOVY_OPTS="$GROOVY_OPTS -Dtools.jar=$TOOLS_JAR" # Do not forget about RPM dependencies! BASE_JARS="$BASE_JARS ant" BASE_JARS="$BASE_JARS ant/ant-junit" BASE_JARS="$BASE_JARS ant-launcher" BASE_JARS="$BASE_JARS antlr" BASE_JARS="$BASE_JARS objectweb-asm/asm" BASE_JARS="$BASE_JARS objectweb-asm/asm-analysis" BASE_JARS="$BASE_JARS objectweb-asm/asm-tree" BASE_JARS="$BASE_JARS objectweb-asm/asm-util" BASE_JARS="$BASE_JARS bsf" BASE_JARS="$BASE_JARS commons-cli" BASE_JARS="$BASE_JARS commons-logging" BASE_JARS="$BASE_JARS groovy" BASE_JARS="$BASE_JARS ivy" BASE_JARS="$BASE_JARS jline" BASE_JARS="$BASE_JARS jsp_2_0_api" BASE_JARS="$BASE_JARS junit" BASE_JARS="$BASE_JARS servlet_2_4_api" BASE_JARS="$BASE_JARS xstream" # Set parameters set_jvm set_classpath $BASE_JARS set_flags $BASE_FLAGS set_options $BASE_OPTIONS $GROOVY_OPTS # Let's start run --conf "$GROOVY_CONF" --main "$CLASS" "$@"
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor