2008-02-15 23:21:58 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2008-03-04 01:49:32 +00:00
|
|
|
# Usage: ./make-git-snapshot.sh [COMMIT]
|
|
|
|
#
|
|
|
|
# to make a snapshot of the given tag/branch. Defaults to HEAD.
|
|
|
|
# Point env var REF to a local mesa repo to reduce clone time.
|
|
|
|
|
2013-05-14 21:33:42 +00:00
|
|
|
if [ -e /usr/bin/pxz ]; then
|
|
|
|
XZ=/usr/bin/pxz
|
|
|
|
else
|
|
|
|
XZ=/usr/bin/xz
|
|
|
|
fi
|
|
|
|
|
2014-07-11 15:27:50 +00:00
|
|
|
if [ -z "$1" ]; then
|
|
|
|
DIRNAME=mesa-$( date +%Y%m%d )
|
|
|
|
BRANCH=10.2
|
|
|
|
else
|
|
|
|
DIRNAME=mesa-$1
|
|
|
|
BRANCH=master
|
|
|
|
fi
|
2008-02-15 23:21:58 +00:00
|
|
|
|
2008-03-04 01:49:32 +00:00
|
|
|
echo REF ${REF:+--reference $REF}
|
|
|
|
echo DIRNAME $DIRNAME
|
2014-07-11 15:27:50 +00:00
|
|
|
echo HEAD ${1:-$BRANCH}
|
2008-03-04 01:49:32 +00:00
|
|
|
|
2008-02-15 23:21:58 +00:00
|
|
|
rm -rf $DIRNAME
|
2008-03-04 01:49:32 +00:00
|
|
|
|
2014-07-11 15:27:50 +00:00
|
|
|
git clone --depth 1 ${REF:+--reference $REF} --branch $BRANCH \
|
2008-03-04 01:49:32 +00:00
|
|
|
git://git.freedesktop.org/git/mesa/mesa $DIRNAME
|
|
|
|
|
|
|
|
GIT_DIR=$DIRNAME/.git git archive --format=tar --prefix=$DIRNAME/ ${1:-HEAD} \
|
2013-05-14 21:33:42 +00:00
|
|
|
| $XZ > $DIRNAME.tar.xz
|
2008-03-04 01:49:32 +00:00
|
|
|
|
|
|
|
# rm -rf $DIRNAME
|