summaryrefslogtreecommitdiff
path: root/build_tools/dahdi_svn_tarball
blob: 76679512ab91ebb7d50e226f011e16d8d672f0fd (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
#!/bin/sh

# upload_dahdi: upload a dahdi tarball to updates.xorcom.com
#

set -e

BRANCH_NAME=1.4
REV=HEAD
DAHDI_BASE=http://svn.digium.com/svn/dahdi
TARBALLS_DIR=$PWD

me=`basename $0`

say() {
  echo "$me: $@"
}

usage() {
  echo >&2 "$0: Generate snapshot from DAHDI SVN"
  echo >&2 '    ($Id$)'
  echo >&2 ""
  echo >&2 "$0 [-r REV] [-2] [-s]"
  echo >&2 "$0 <-h | --help>: This message"
  echo >&2 ""
  echo >&2 "Options:"
  echo >&2 "   -2 --dahdi12:         Use Asterisk 1.2. Implies -u."
  echo >&2 "   -r --rev REV:       extract xpp-dahdi from this revision ($REV)."
  echo >&2 "   -s --show:          Just show  versions. Do nothing"

}

opt_showonly=no

options=`getopt -o 2hr:s --long dahdi12,help,rev:,revision:,show -- "$@"`
if [ $? != 0 ] ; then echo >&2 "Terminating..." ; exit 1 ; fi

# Note the quotes around `$TEMP': they are essential!
eval set -- "$options"

while true ; do
	case "$1" in
		-2|--dahdi12) BRANCH_NAME=1.2;;
		-s|--show) opt_showonly=yes ;;
		-r|--rev|--revision) REV="$2"; shift ;;
		-h|--help) usage; exit 0;; 
		--) shift ; break ;;
	esac
	shift;
done

BRANCH=branches/$BRANCH_NAME
DAHDI_URL=$DAHDI_BASE/$BRANCH

set -e

# Get the name of the "previous version" for this release.
# The idea is to look at the latest tag for that branhch. Tags are
# global, and hence we filter tag names by branch name.
#
# Note: this strips any minor version number. 
# e.g: if last releast was 1.4.5.1, this will still return 1.4.5 . Here
# we rely on the fact that the revision number will be added.
dahdi_ver=`svn ls -r $REV $DAHDI_BASE/tags | grep "^$BRANCH_NAME" \
  | sed -e "s/\($BRANCH_NAME\.[0-9]\+\)[/.-].*/\1/" \
  | sort -nu -t . -k 3 | tail -n 1`

real_rev=`svn info -r $REV $DAHDI_URL \
  | awk '/^Last Changed Rev: /{print $4}'`

ver_full="$dahdi_ver.9.svn.$real_rev"
tar_name="dahdi-$ver_full"
tar_ball_full="$TARBALLS_DIR/$tar_name.tar.gz"

say "Version: $ver_full (ver: $dahdi_ver, rev: $real_rev)"
say "Tarball:  $tar_ball_full"

if [ "$opt_showonly" = 'yes' ]; then
	exit 0;
fi

DAHDI_CHECKOUT_DIR=`mktemp -d dahdi_checkout_dir_XXXXXX` 

# Package a tarball from the subversion, using 'make dist':
svn export -q -r $REV $DAHDI_URL $DAHDI_CHECKOUT_DIR/$tar_name
echo "$ver_full" >$DAHDI_CHECKOUT_DIR/$tar_name/.version
tar cz -C $DAHDI_CHECKOUT_DIR -f $tar_ball_full $tar_name

rm -rf $DAHDI_CHECKOUT_DIR