mirror of
git://slackware.nl/current.git
synced 2025-01-14 08:01:11 +01:00
acedcf0daa
a/btrfs-progs-5.19-x86_64-1.txz: Upgraded. a/kernel-firmware-20220815_8413c63-noarch-1.txz: Upgraded. ap/mariadb-10.6.9-x86_64-1.txz: Upgraded. This update fixes bugs and several security issues. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32082 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32089 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32081 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-25032 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32091 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32084 (* Security fix *) l/glade-3.40.0-x86_64-1.txz: Upgraded. l/lz4-1.9.4-x86_64-1.txz: Upgraded.
49 lines
2.1 KiB
Bash
Executable file
49 lines
2.1 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright 2016, 2018, 2020 Patrick J. Volkerding, Sebeka, Minnesota, USA
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use of this script, with or without modification, is
|
|
# permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
# Pull a stable branch + patches
|
|
BRANCH=${1:-master}
|
|
|
|
# Clear download area:
|
|
rm -rf xf86-video-mga
|
|
|
|
# Clone repository:
|
|
git clone https://gitlab.freedesktop.org/xorg/driver/xf86-video-mga/
|
|
|
|
# checkout $BRANCH:
|
|
( cd xf86-video-mga
|
|
git checkout $BRANCH || exit 1
|
|
)
|
|
|
|
HEADISAT="$( cd xf86-video-mga && git log -1 --format=%h )"
|
|
DATE="$( cd xf86-video-mga && git log -1 --format=%cd --date=format:%Y%m%d )"
|
|
LONGDATE="$( cd xf86-video-mga && git log -1 --format=%cd --date=format:%c )"
|
|
# Cleanup. We're not packing up the whole git repo.
|
|
( cd xf86-video-mga && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null )
|
|
mv xf86-video-mga xf86-video-mga-${DATE}_${HEADISAT}
|
|
tar cf xf86-video-mga-${DATE}_${HEADISAT}.tar xf86-video-mga-${DATE}_${HEADISAT}
|
|
xz -9 -f xf86-video-mga-${DATE}_${HEADISAT}.tar
|
|
rm -rf xf86-video-mga-${DATE}_${HEADISAT}
|
|
touch -d "$LONGDATE" xf86-video-mga-${DATE}_${HEADISAT}.tar.xz
|
|
echo
|
|
echo "xf86-video-mga branch $BRANCH with HEAD at $HEADISAT packaged as xf86-video-mga-${DATE}_${HEADISAT}.tar.xz"
|
|
echo
|