leiningen/bin/lein

133 lines
4.1 KiB
Text
Raw Normal View History

#!/usr/bin/env bash
2009-11-02 06:21:50 +00:00
2010-06-26 22:10:24 +00:00
VERSION="1.2.0-RC2"
CLASSPATH="$(ls -1 lib/dev/*jar 2> /dev/null | tr \\n \:)":src/:$CLASSPATH
LEIN_JAR="$HOME/.m2/repository/leiningen/leiningen/$VERSION/leiningen-$VERSION-standalone.jar"
CLOJURE_JAR="$HOME/.m2/repository/org/clojure/clojure/1.2.0-master-SNAPSHOT/clojure-1.2.0-master-SNAPSHOT.jar"
NULL_DEVICE=/dev/null
# normalize $0 on certain BSDs
if [ "$(dirname $0)" = "." ]; then
SCRIPT="$(which $(basename $0))"
else
SCRIPT="$0"
fi
# resolve symlinks to the script itself portably
while [ -h "$SCRIPT" ] ; do
ls=`ls -ld "$SCRIPT"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
SCRIPT="$link"
else
SCRIPT="`dirname "$SCRIPT"`/$link"
fi
done
ORIGINAL_PWD=$PWD
while [ ! -r "$PWD/project.clj" ] && [ "$PWD" != "/" ] && [ ! $NOT_FOUND ]
do
cd ..
if [ "$(dirname $PWD)" == "/" ]; then
NOT_FOUND=0
cd $ORIGINAL_PWD
fi
done
BIN_DIR="$(dirname "$SCRIPT")"
if [ -r "$BIN_DIR/../src/leiningen/core.clj" ]; then
# Running from source checkout
LEIN_DIR="$(dirname "$BIN_DIR")"
LEIN_LIBS="$(find -H $LEIN_DIR/lib -mindepth 2> /dev/null 1 -maxdepth 1 -print0 | tr \\0 \:)"
CLASSPATH="$LEIN_DIR/src:$LEIN_LIBS:$CLASSPATH:$LEIN_JAR"
if [ "$LEIN_LIBS" = "" -a "$1" != "self-install" -a ! -r "$LEIN_JAR" ]; then
echo "Leiningen is missing its dependencies. Please run \"lein self-install\"."
exit 1
fi
else
# Not running from a checkout
CLASSPATH="$LEIN_JAR:$CLASSPATH"
if [ ! -r "$LEIN_JAR" -a "$1" != "self-install" ]; then
2009-11-12 05:24:48 +00:00
echo "Leiningen is not installed. Please run \"lein self-install\"."
exit 1
2009-11-10 06:22:09 +00:00
fi
2009-11-02 06:21:50 +00:00
fi
# Convert classpath to Windows format when running on Cygwin
if [ "$OSTYPE" = "cygwin" ]; then
CLASSPATH=`cygpath -wp $CLASSPATH`
CLOJURE_JAR=`cygpath -wp $CLOJURE_JAR`
fi
2009-11-10 06:22:09 +00:00
if [ $DEBUG ]; then
echo $CLASSPATH
fi
2010-02-12 08:41:12 +00:00
HTTP_CLIENT="wget -O"
if type -p curl >/dev/null 2>&1; then
2010-02-17 05:58:41 +00:00
HTTP_CLIENT="curl -L -o"
2010-02-12 08:41:12 +00:00
fi
JAVA_CMD=${JAVA_CMD:-"java"}
if [ "$1" = "self-install" ]; then
2009-11-10 06:22:09 +00:00
echo "Downloading Leiningen now..."
LEIN_DIR=`dirname "$LEIN_JAR"`
mkdir -p "$LEIN_DIR"
2010-02-17 05:58:41 +00:00
LEIN_URL="http://github.com/downloads/technomancy/leiningen/leiningen-$VERSION-standalone.jar"
2010-02-12 08:41:12 +00:00
exec $HTTP_CLIENT "$LEIN_JAR" "$LEIN_URL"
elif [ "$1" = "upgrade" ]; then
if [[ $VERSION == *SNAPSHOT ]]; then
echo "The upgrade task is only meant for stable releases."
echo "See the \"Hacking\" section of the README."
exit 1
2009-11-10 06:22:09 +00:00
fi
if [ ! -w "$SCRIPT" ]; then
echo "You do not have permission to upgrade the installation in $SCRIPT"
exit 1
else
echo "The script at $SCRIPT will be upgraded to the latest stable version."
echo -n "Do you want to continue [Y/n]? "
read RESP
case "$RESP" in
y|Y|"")
echo
echo "Upgrading..."
LEIN_SCRIPT_URL="http://github.com/technomancy/leiningen/raw/stable/bin/lein"
$HTTP_CLIENT "$SCRIPT" "$LEIN_SCRIPT_URL" \
&& chmod +x "$SCRIPT" \
&& echo && $SCRIPT self-install && echo && echo "Now running" `$SCRIPT version`
exit $?;;
*)
echo "Aborted."
exit 1;;
esac
fi
else
if type -p cygpath >/dev/null 2>&1; then
# When running on Cygwin, use Windows-style paths for java
CLOJURE_JAR=`cygpath -w "$CLOJURE_JAR"`
CLASSPATH=`cygpath -wp "$CLASSPATH"`
2010-06-22 02:21:22 +00:00
NULL_DEVICE=NUL
fi
2010-06-22 02:21:22 +00:00
if [ "$1" = "repl" ]; then
# Use rlwrap if it's available, otherwise fall back to JLine
RLWRAP=`which rlwrap`
if [ $? -eq 1 ]; then
JLINE=jline.ConsoleRunner
fi
fi
# The -Xbootclasspath argument is optional here: if the jar
# doesn't exist everything will still work, it will just have a
# slower JVM boot.
exec $RLWRAP $JAVA_CMD -Xbootclasspath/a:"$CLOJURE_JAR" -client $JAVA_OPTS \
-cp "$CLASSPATH" -Dleiningen.version="$VERSION" $JLINE \
clojure.main -e "(use 'leiningen.core)(-main)" $NULL_DEVICE $@
fi