1
# Common environment variables for the rocketfuel-* scripts.
3
# The ones you can set are:
5
# LP_PROJECT_ROOT - The root directory of all your Canonical stuff. Your
6
# Launchpad shared repository will live in a child directory
8
# LP_SHARED_REPO - Your Launchpad shared repository directory. All of your
9
# Launchpad development branches will live under here.
10
# LP_TRUNK_NAME - The directory name (not path!) to your rocketfuel trunk
11
# mirror directory. This is relative to your shared repo.
12
# LP_SOURCEDEPS_DIR - The name of the directory (not path!) where your
13
# trunk sourcecode will be placed. This is relative to your
14
# LP_PROJECT_ROOT and should /not/ have the 'sourcecode'
15
# path appended to it, since this is automatically added by
18
LP_PROJECT_ROOT=${LP_PROJECT_ROOT:=~/canonical}
19
LP_SHARED_REPO=${LP_SHARED_REPO:=lp-branches}
20
LP_PROJECT_PATH=$LP_PROJECT_ROOT/$LP_SHARED_REPO
21
LP_TRUNK_NAME=${LP_TRUNK_NAME:=trunk}
22
LP_TRUNK_PATH=$LP_PROJECT_PATH/$LP_TRUNK_NAME
24
LP_SOURCEDEPS_DIR=${LP_SOURCEDEPS_DIR:=lp-sourcedeps}
25
LP_SOURCEDEPS_PATH=$LP_PROJECT_ROOT/$LP_SOURCEDEPS_DIR/sourcecode
27
# Force tilde expansion
28
LP_SOURCEDEPS_PATH=$(eval echo ${LP_SOURCEDEPS_PATH})