libX11/make-git-snapshot.sh
Peter Hutterer 7fbd223652 - Today's git snapshot
- libX11-1.2.1-indic.patch: Drop.
2009-07-12 07:11:35 +00:00

18 lines
335 B
Bash
Executable File

#!/bin/sh
DIRNAME=libX11-$( date +%Y%m%d )
rm -rf $DIRNAME
git clone git://git.freedesktop.org/git/xorg/lib/libX11 $DIRNAME
cd $DIRNAME
if [ -z "$1" ]; then
git log | head -1
else
git checkout $1
fi
git log | head -1 | awk '{ print $2 }' > ../commitid
git repack -a -d
cd ..
tar jcf $DIRNAME.tar.bz2 $DIRNAME
rm -rf $DIRNAME