summaryrefslogtreecommitdiffstats
path: root/ctdb/packaging/maketarball.sh
blob: c99bb7075935699c0db3996d9644c6c29c356366 (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
#!/bin/bash
#
# maketarball.sh - create a tarball from the git branch HEAD
#
# Copyright (C) Michael Adam 2009
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 3 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, see <http://www.gnu.org/licenses/>.
#

#
# Create CTDB source tarball of the current git branch HEAD.
# The version is calculated from git tag in mkversion.sh.
# Optional argument is the directory to which tarball is copied.
#

DIRNAME=$(dirname $0)
TOPDIR=${DIRNAME}/..

TARGETDIR="$1"
if [ -z "${TARGETDIR}" ]; then
    TARGETDIR="."
fi

TAR_PREFIX_TMP="ctdb-tmp"
SPECFILE=/tmp/${TAR_PREFIX_TMP}/packaging/RPM/ctdb.spec
SPECFILE_IN=${SPECFILE}.in
VERSION_H=/tmp/${TAR_PREFIX_TMP}/include/ctdb_version.h

if echo | gzip -c --rsyncable - > /dev/null 2>&1 ; then
	GZIP="gzip -9 --rsyncable"
else
	GZIP="gzip -9"
fi

pushd ${TOPDIR}
echo "Creating tarball ... "
git archive --prefix=${TAR_PREFIX_TMP}/ HEAD | ( cd /tmp ; tar xf - )
RC=$?
popd
if [ $RC -ne 0 ]; then
	echo "Error calling git archive."
	exit 1
fi

set -- $(${TOPDIR}/packaging/mkversion.sh ${VERSION_H})
VERSION=$1
RELEASE=$2
if [ -z "$VERSION" -o -z "$RELEASE" ]; then
    exit 1
fi

sed -e "s/@VERSION@/${VERSION}/g" \
    -e "s/@RELEASE@/$RELEASE/g" \
	< ${SPECFILE_IN} \
	> ${SPECFILE}

TAR_PREFIX="ctdb-${VERSION}"
TAR_BASE="ctdb-${VERSION}"

pushd /tmp/${TAR_PREFIX_TMP}
./autogen.sh
RC=$?
if [ $RC -ne 0 ]; then
	echo "Error calling autogen.sh."
	exit 1
fi

make -C doc
RC=$?
if [ $RC -ne 0 ]; then
    echo "Error building docs."
    exit 1
fi
popd

if test "x${DEBIAN_MODE}" = "xyes" ; then
	TAR_PREFIX="ctdb-${VERSION}.orig"
	TAR_BASE="ctdb_${VERSION}.orig"
	rm -rf /tmp/${TAR_PREFIX_TMP}/lib/popt
fi

TAR_BALL=${TAR_BASE}.tar
TAR_GZ_BALL=${TAR_BALL}.gz

mv /tmp/${TAR_PREFIX_TMP} /tmp/${TAR_PREFIX}

pushd /tmp
tar cf ${TAR_BALL} ${TAR_PREFIX}
RC=$?
if [ $RC -ne 0 ]; then
	popd
        echo "Creation of tarball failed."
        exit 1
fi

${GZIP} ${TAR_BALL}
RC=$?
if [ $RC -ne 0 ]; then
	popd
        echo "Zipping tarball failed."
        exit 1
fi

rm -rf ${TAR_PREFIX}

popd

mv /tmp/${TAR_GZ_BALL} ${TARGETDIR}/

echo "Done."
exit 0