6c2dd5fc20
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/xorg-x11-server#eaf442296937a83e622ce4995c5f33122bcd6f02
18 lines
348 B
Bash
Executable File
18 lines
348 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DIRNAME=xorg-server-$( date +%Y%m%d )
|
|
|
|
rm -rf $DIRNAME
|
|
git clone git://git.freedesktop.org/git/xorg/xserver $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 cf - $DIRNAME | xz -c9 > $DIRNAME.tar.xz
|
|
rm -rf $DIRNAME
|