blob: 3e80cd1f07a1fafcad08cd52387b363315654107 (
plain)
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
#!/bin/bash
## option defaults
OPT_BRANCH=""
OPT_DOCSDIR=""
OPT_TAG=""
OPT_KEYID=""
TOPDIR="`dirname $0`/.."
VER_H="${TOPDIR}/source3/include/version.h"
function exitOnError
{
local _error="$1"
local _msg="$2"
if [ ${_error} -eq 0 ]; then
return 0
fi
echo "FAILURE: ${_msg}"
exit ${_error}
}
##
## Print help usage
##
function printUsage
{
echo "Usage $0 [options]"
echo " --help Print command usage"
echo " --branch <name> Specify the branch to to create the archive file from"
echo " --copy-docs <dir> Copy documentation from <dir> rather than building"
echo " --tag <name> Tag name for release"
echo " --keyid <email> The GnuPG key ID used to sign the release tag"
echo ""
}
##
## Parse the command line options
##
function parseOptions
{
while [ -n "$1" ]; do
case "$1" in
--help)
printUsage
exit 0
;;
--branch)
shift
if [ -z "$1" ]; then
printUsage
return 1
fi
OPT_BRANCH="$1"
shift
;;
--copy-docs)
shift
if [ -z "$1" ]; then
printUsage
return 1
fi
OPT_DOCSDIR="$1"
shift
;;
--tag)
shift
if [ -z "$1" ]; then
printUsage
return 1
fi
OPT_TAG="$1"
shift
;;
--keyid)
shift
if [ -z "$1" ]; then
printUsage
return 1
fi
OPT_KEYID="$1"
shift
;;
*)
printUsage
return 1
;;
esac
done
if [ -z "${OPT_BRANCH}" ]; then
echo "You must specify a branch name!"
printUsage
return 1
fi
}
##
## Build the dopcumentation (may be a no-op)
##
function buildDocs
{
if [ -n "${OPT_DOCSDIR}" ]; then
if [ ! -d "${OPT_DOCSDIR}" ]; then
exitOnError 1 "${OPT_DOCSDIR} does not exist. Please specify the absolute path."
fi
mkdir docs
exitOnError $? "Failed to create docs directory"
rsync -av "${OPT_DOCSDIR}"/ docs/
exitOnError $? "Failed top copy docs from ${OPT_DOCSDIR}"
return 0
fi
echo "Building documentation. This may take a while. Log file in /tmp/docs-build.log.$$"
${TOPDIR}/release-scripts/build-docs 2> /tmp/docs-build.log.$$
return $?
}
##
## Create a release tag
##
function createReleaseTag
{
if [ -z "${OPT_TAG}" ]; then
echo "Tagging disabled"
return 0
fi
if [ "x`git tag -l ${OPT_TAG}`" != "x" ]; then
echo -n "Tag exists. Do you wish to overwrite? (y/N): "
read answer
if [ "x$answer" != "xy" ]; then
echo "Tag creation aborted."
exit 1
fi
fi
if [ -z "${OPT_KEYID}" ]; then
echo -n "Enter the keyid:"
read OPT_KEYID
if [ -z "${OPT_KEYID}" ]; then
exitOnError 1 "No keyid specified"
fi
fi
git tag -u ${OPT_KEYID} ${OPT_TAG}
exitOnError $? "Failed to create tag"
return 0
}
##
## Main driver
##
function main
{
parseOptions "$@"
exitOnError $? "Failed to parse options"
cd $TOPDIR
git checkout ${OPT_BRANCH}
exitOnError $? "Invalid branch name \"${OPT_BRANCH}\""
(cd source3 && ./script/mkversion.sh)
if [ ! -f $VER_H ]; then
exitOnError 1 "Failed to find ${VER_H}!"
fi
version=`grep "define SAMBA_VERSION_OFFICIAL_STRING" $VER_H | awk '{print $3}'`
vendor_version=`grep "define SAMBA_VERSION_VENDOR_SUFFIX" $VER_H | awk '{print $3}'`
if [ -n "$vendor_version" ]; then
version="$version-$vendor_version"
fi
vendor_patch=`grep "define SAMBA_VERSION_VENDOR_PATCH" $VER_H | awk '{print $3}'`
if [ -n "$vendor_patch" ]; then
version="$version-$vendor_patch"
fi
version=`echo $version | sed 's/\"//g'`
echo "Creating release tarball for Samba $version"
/bin/rm -rf ../samba-${version}
git archive --format=tar --prefix=samba-${version}/ HEAD | (cd .. && tar xf -)
exitOnError $? "Failed to create release directory tree"
pushd ../samba-${version}
packaging/bin/update-pkginfo ${version} 1 ""
buildDocs
exitOnError $? "Failed to build documentation"
( cd source3 && ./autogen.sh )
cd ..
tar cf samba-${version}.tar --exclude=.git* --exclude=CVS --exclude=.svn samba-${version}
exitOnError $? "Failed to create tarball from git tree"
gpg --detach-sign --armor samba-${version}.tar
## exitOnError $? "Failed to sign tarball"
gzip -9 samba-${version}.tar
exitOnError $? "Failed to compress archive"
popd
createReleaseTag
exitOnError $? "Failed to create release tag"
return 0
}
main "$@"
exit $?
|