re-import sources as agreed with the maintainer
This commit is contained in:
parent
17f1dea68d
commit
bb699ec143
6
.gitignore
vendored
6
.gitignore
vendored
@ -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
|
/xf86-input-libinput-0.29.0.tar.bz2
|
||||||
|
22
make-git-snapshot.sh
Normal file
22
make-git-snapshot.sh
Normal 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
|
Loading…
Reference in New Issue
Block a user