re-import sources as agreed with the maintainer

This commit is contained in:
Adam Samalik 2023-07-10 13:22:28 +02:00
parent 65867ed80b
commit b942b7ff16
3 changed files with 24 additions and 0 deletions

6
.gitignore vendored
View File

@ -1 +1,7 @@
libXcursor-1.1.10.tar.bz2
/libXcursor-1.1.11.tar.bz2
/libXcursor-1.1.12.tar.bz2
/libXcursor-1.1.13.tar.bz2
/libXcursor-20130524.tar.bz2
/libXcursor-1.1.14.tar.bz2
/libXcursor-1.1.15.tar.bz2

1
commitid Normal file
View File

@ -0,0 +1 @@
8f677eaea05290531d007d1fec2768119926088d

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

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