mesa/make-git-snapshot.sh
Alexander Stefanov f98e8724ed * add a lot of new drivers for non-x86 arches
* now we use separate glvnd lib
* build with shared llvm
* bootstrap option
2020-03-08 00:08:19 +00:00

27 lines
629 B
Bash

#!/bin/sh
# 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.
VERSION="11.2"
DIRNAME=mesa-${VERSION}-$( date +%Y%m%d )
if [ -z "$REF" -a -d "mesa/.git" ]; then
REF="mesa"
fi
echo REF ${REF:+--reference $REF}
echo DIRNAME $DIRNAME
echo HEAD ${1:-HEAD}
rm -rf $DIRNAME
git clone ${REF:+--reference $REF} \
git://git.freedesktop.org/git/mesa/mesa $DIRNAME
GIT_DIR=$DIRNAME/.git git archive --format=tar --prefix=$DIRNAME/ ${1:-HEAD} \
| xz -vf > $DIRNAME.tar.xz
# rm -rf $DIRNAME