libdrm/make-git-snapshot.sh

27 lines
582 B
Bash
Raw Normal View History

2008-02-15 19:17:14 +00:00
#!/bin/sh
2008-03-04 01:42:54 +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.
2008-02-15 19:17:14 +00:00
DIRNAME=libdrm-$( date +%Y%m%d )
2008-03-04 01:42:54 +00:00
echo REF ${REF:+--reference $REF}
echo DIRNAME $DIRNAME
echo HEAD ${1:-HEAD}
2008-02-15 19:17:14 +00:00
rm -rf $DIRNAME
2008-03-04 01:42:54 +00:00
git clone ${REF:+--reference $REF} \
git://git.freedesktop.org/git/mesa/drm $DIRNAME
cd $DIRNAME
git checkout -f origin/modesetting-gem
cd -
2008-03-04 01:42:54 +00:00
GIT_DIR=$DIRNAME/.git git archive --format=tar --prefix=$DIRNAME/ ${1:-HEAD} \
| bzip2 > $DIRNAME.tar.bz2
# rm -rf $DIRNAME