forked from scala-ide/scala-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eclipse-director.sh
executable file
·177 lines (140 loc) · 4.67 KB
/
eclipse-director.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#!/bin/bash
eclipse_dir="/Applications/Programming/eclipse-helios/"
eclipse_opt="-nosplash -consoleLog"
app="org.eclipse.equinox.p2.director"
eclipse_repo="http://download.eclipse.org/releases/helios/"
branch="master"
scala_repo="http://scala-ide.dreamhosters.com/nightly-update"
function usage()
{
cat <<EOF
`basename $0` [opt] command [pluginid]
Options:
--eclipse-dir <path> Path to the Eclipse installation that you want to modify
--branch <branch> What branch to use? (e.g. 'master' or '2-0-x')
Commands:
list List available plugins. (useless right now, as it uses the Eclipse repo).
install <version> Install plugin. It is the version number of the Scala installation
For instance: 2.9.x or trunk
install <version>/YYYYMMDD Install the nightly for the given date. <version> is one of 'trunk' or
'2.9.x'
install-local <path> Install from a local update site given by <path>
uninstall Uninstall the currently installed Scala plugin
install-bundle <id> Install the given bundle
uninstall-bundle <id> Uninstall the given bundle
help Print this help screen
EOF
exit 1
}
#
# match the build dir name in the dir listing HTML response
#
build_dir_regex='s/.*<a href=\"\(.*\)\">.*/\1/'
#
# $1 - repo_base
# $2 - repo_date
#
function find_latest_build()
{
matches=`curl -s "$1/" | grep $2 | sed "${build_dir_regex}"`
arr_match=(${matches})
len=${#arr_match[@]}
if [[ len -eq 0 ]]; then
echo "No repository found for $repo_date, probably no nightlies were pushed on that date."
echo "Other nightlies on the same month (${2:0:6}):"
curl -s "$1/" | grep ${2:0:6} | sed "${build_dir_regex}"
exit 1
fi
echo "found nightly on ${arr_match[len - 1]}"
update_site="$1/${arr_match[len - 1]}/org.scala-ide.sdt.update-site"
}
#
# $1 - specification: trunk or trunk/YYYYMMDD (date)
# similarly, 2.9.2-SNAPSHOT or 2.9.2-SNAPSHOT/YYYYMMDD
#
function install()
{
case $1 in
trunk )
update_site="$scala_repo-$branch-trunk"
;;
trunk/[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9] )
echo "Looking for a specific nightly.."
repo_date=`echo $1 | cut -d \/ -f 2`
find_latest_build "http://download.scala-ide.org/builds/nightly-$branch-trunk" $repo_date
;;
2.9.x )
update_site="$scala_repo-$branch-29x"
;;
2.9.x/[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9] )
repo_date=`echo $1 | cut -d \/ -f 2`
find_latest_build "http://download.scala-ide.org/builds/nightly-$branch-29x" $repo_date
;;
* )
echo -e "Not understood: $1.\n"
usage
;;
esac
echo "Installing from $update_site.."
$eclipse_dir/eclipse $eclipse_opt \
-application $app \
-repository $update_site/ \
-installIU org.scala-ide.sdt.feature.feature.group
}
while [ $# -gt 0 ]; do
case $1 in
"" | "help")
usage
;;
"--eclipse-dir")
eclipse_dir=$2
echo "Eclipse installation dir is $eclipse_dir"
shift 2
;;
"--branch")
branch=$2
echo "Eclipse repository is $scala_repo-$branch-?"
shift 2
;;
"list")
$eclipse_dir/eclipse $eclipse_opt \
-application $app \
-repository $eclipse_repo \
-list \
| grep feature.group \
| awk -F "=" '{print $1}'
shift
;;
"install")
install $2
shift 2
;;
"install-local")
echo "Installing $2.."
$eclipse_dir/eclipse $eclipse_opt \
-application $app \
-repository "file://$2" \
-installIU org.scala-ide.sdt.feature.feature.group
shift 2
;;
"uninstall")
echo "Unnstalling.."
shift 1
$eclipse_dir/eclipse $eclipse_opt \
-application $app \
-repository "$eclipse_repo" \
-uninstallIU org.scala-ide.sdt.feature.feature.group
;;
"uninstall-bundle")
echo "Unnstalling.. $2"
$eclipse_dir/eclipse $eclipse_opt \
-application $app \
-repository "$eclipse_repo" \
-uninstallIU $2
shift 2
;;
*)
usage
;;
esac
done