re-import sources as agreed with the maintainer

This commit is contained in:
Adam Samalik 2023-07-10 10:11:10 +02:00
parent a8647c2e7f
commit da1105a288
3 changed files with 19 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,2 +1 @@
SOURCES/libinput-1.16.3.tar.xz
/libinput-1.16.3.tar.xz
/libinput-*.tar.xz

1
commitid Normal file
View File

@ -0,0 +1 @@
58abea394657baba66f6e0cd6c4c27e084bb5b16

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

@ -0,0 +1,17 @@
#!/bin/sh
DIRNAME=libinput-$( date +%Y%m%d )
rm -rf $DIRNAME
git clone git://git.freedesktop.org/git/wayland/libinput $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.xz $DIRNAME
rm -rf $DIRNAME