This repository was archived by the owner on Aug 12, 2019. It is now read-only.
forked from mono/monodevelop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmdbranch
executable file
·153 lines (134 loc) · 2.53 KB
/
mdbranch
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
#!/usr/bin/env bash
version=1.9
prefix=/usr/local
profile=dist
trunkRoot=svn+ssh://[email protected]/source/trunk/monodevelop
branchesRoot=svn+ssh://[email protected]/source/branches/monodevelop
tagsRoot=svn+ssh://[email protected]/source/tags/monodevelop
srcVersion=
sourceRoot=$trunkRoot
destRoot=$branchesRoot
MSG=`mktemp`
usage ()
{
echo "Usage : mdbrach [--profile=PROFILE] versionNumber"
echo ""
echo "Creates a new branch of MonoDevelop and the extras add-ins included"
echo "in the specified profile (which is 'stable' by default)."
}
validate_profile ()
{
test -z "$1" && return 0
for c in `ls ../profiles`; do
if [ "$c" = "$1" ]; then
return 1
fi
done
return 0
}
read_packages ()
{
for p in `sed -e /#/d -e 's/ /,/g' < ../profiles/$profile` ; do
path=`echo $p | cut -d ',' -f 1`
packages="$packages $path"
done
return 0
}
while test x$1 != x; do
case $1 in
--profile=*)
prof=`echo $1 | sed 's/--profile=//'`
validate_profile "$prof"
if [ $? -eq 1 ]; then
profile=$prof
else
echo "Invalid profile name - $conf"
usage
exit 1
fi
;;
--profile)
shift
prof=$1
validate_profile "$prof"
if [ $? -eq 1 ]; then
profile=$prof
else
echo "Invalid profile name - $conf"
usage
exit 1
fi
;;
--tag)
shift
sourceRoot=$branchesRoot
destRoot=$tagsRoot
srcVersion="/$1"
;;
--help)
usage
exit
;;
*)
version=$1
;;
esac
shift
done
read_packages
echo ""
if [ $destRoot = $tagsRoot ]; then
echo "The following tags will be created:"
else
echo "The following branches will be created:"
fi
echo ""
for p in $packages; do
echo "$destRoot/$p/$version"
done
echo ""
echo "From sources:"
echo ""
for p in $packages; do
echo "$sourceRoot/$p$srcVersion"
done
if [ $destRoot = $tagsRoot ]; then
echo "Created $version tag." > $MSG
else
echo "Created $version branch." > $MSG
fi
echo ""
echo "Commit message:"
cat $MSG
echo ""
while [[ 1 ]]
do
read -a RESPONSE -p"Would you like to continue (Y)es/(N)o/(E)dit Message: "
if [[ $? != 0 ]]
then
RESPONSE="N"
fi
case $RESPONSE in
"Y" | "y" | "yes" | "Yes")
echo "Comitting..."
for p in $packages; do
echo "svn cp -F $MSG $sourceRoot/$p$srcVersion $destRoot/$p/$version"
svn cp -F $MSG $sourceRoot/$p$srcVersion $destRoot/$p/$version
done
rm $MSG
exit 0
;;
"N" | "n" | "no" | "No")
echo "Aborting..."
rm $MSG
exit 1
;;
"E" | "e" | "ed" | "Ed" | "Edit" | "edit")
vi $MSG
# try again
;;
*)
# try again
;;
esac
done