blob: 5269c88bd0399a6e8e5483298e5b1281c0132c89 (
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
|
#!/bin/sh
Usage() {
cat <<EOF
Usage: ${0##*/} version
make a tarball of 'version'
must be in a bzr directory, and 'version' must be a tag
EOF
}
topdir=$PWD
tag=${1}
[ -n "$tag" ] || { Usage 1>&2 ; exit 1; }
tmpd=$(mktemp -d );
trap "rm -Rf '${tmpd}'" 0
out=${topdir}/cloud-init_${tag}.orig.tar.gz
cd ${tmpd} &&
bzr branch "${topdir}" ./cloud-init-${tag} &&
tar czf "${out}" cloud-init-${tag}/ --exclude cloud-init-${tag}/.bzr &&
echo "wrote ${out}"
|