re-import sources as agreed with the maintainer

This commit is contained in:
Adam Samalik 2023-07-10 10:10:18 +02:00
parent 17f1dea68d
commit bb699ec143
2 changed files with 28 additions and 0 deletions

6
.gitignore vendored
View File

@ -1 +1,7 @@
xf86-input-libinput-0.25.0.tar.bz2
/xf86-input-libinput-0.25.1.tar.bz2
/xf86-input-libinput-0.26.0.tar.bz2
/xf86-input-libinput-0.27.0.tar.bz2
/xf86-input-libinput-0.27.1.tar.bz2
/xf86-input-libinput-0.28.0.tar.bz2
/xf86-input-libinput-0.29.0.tar.bz2

22
make-git-snapshot.sh Normal file
View File

@ -0,0 +1,22 @@
#!/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.
DIRNAME=xf86-input-libinput-$( date +%Y%m%d )
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/xorg/driver/xf86-input-libinput $DIRNAME
GIT_DIR=$DIRNAME/.git git archive --format=tar --prefix=$DIRNAME/ ${1:-HEAD} \
| xz > $DIRNAME.tar.xz
# rm -rf $DIRNAME