mirror of
git://slackware.nl/current.git
synced 2024-12-26 09:58:59 +01:00
efc2c592c6
a/less-551-x86_64-1.txz: Upgraded. l/babl-0.1.66-x86_64-1.txz: Upgraded. xap/gimp-2.10.12-x86_64-1.txz: Upgraded. testing/packages/mesa-19.1.0-x86_64-1.txz: Added.
20 lines
720 B
Bash
Executable file
20 lines
720 B
Bash
Executable file
# Pull a stable branch + patches
|
|
BRANCH=7.10
|
|
|
|
rm -rf mesa
|
|
git clone git://anongit.freedesktop.org/git/mesa/mesa
|
|
# package the source archive and clean up:
|
|
( cd mesa
|
|
git checkout $BRANCH || exit 1
|
|
)
|
|
HEADISAT="$(cat mesa/.git/packed-refs | grep "refs/remotes/origin/${BRANCH}$" | cut -b1-7)"
|
|
# Cleanup. We're not packing up the whole git repo.
|
|
( cd mesa && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null )
|
|
DATE=$(date +%Y%m%d)
|
|
mv mesa mesa-${BRANCH}_${HEADISAT}
|
|
tar cf mesa-${BRANCH}_${HEADISAT}.tar mesa-${BRANCH}_${HEADISAT}
|
|
xz -9 mesa-${BRANCH}_${HEADISAT}.tar
|
|
rm -rf mesa-${BRANCH}_${HEADISAT}
|
|
echo
|
|
echo "Mesa branch $BRANCH with HEAD at $HEADISAT packaged as mesa-${BRANCH}_${HEADISAT}.tar.xz"
|
|
echo
|