slackware-current/slackware64/k/maketag
Patrick J Volkerding 01f5c1cc79 Mon May 1 20:22:43 UTC 2023
a/kernel-generic-6.1.27-x86_64-1.txz:  Upgraded.
a/kernel-huge-6.1.27-x86_64-1.txz:  Upgraded.
a/kernel-modules-6.1.27-x86_64-1.txz:  Upgraded.
a/pciutils-3.10.0-x86_64-1.txz:  Upgraded.
a/utempter-1.2.1-x86_64-1.txz:  Upgraded.
d/kernel-headers-6.1.27-x86-1.txz:  Upgraded.
k/kernel-source-6.1.27-noarch-1.txz:  Upgraded.
l/libsoup3-3.4.2-x86_64-1.txz:  Upgraded.
l/libwpg-0.3.4-x86_64-1.txz:  Upgraded.
l/qca-2.3.6-x86_64-1.txz:  Upgraded.
n/gnupg2-2.4.1-x86_64-1.txz:  Upgraded.
n/netatalk-3.1.15-x86_64-1.txz:  Upgraded.
  This update fixes security issues, including a critical vulnerability that
  allows remote attackers to execute arbitrary code on affected installations
  of Netatalk. Authentication is not required to exploit this vulnerability.
  For more information, see:
    https://www.cve.org/CVERecord?id=CVE-2022-43634
    https://www.cve.org/CVERecord?id=CVE-2022-45188
  (* Security fix *)
xap/audacious-4.3.1-x86_64-1.txz:  Upgraded.
xap/audacious-plugins-4.3.1-x86_64-1.txz:  Upgraded.
xfce/thunar-4.18.6-x86_64-1.txz:  Upgraded.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2023-05-01 23:41:10 +02:00

46 lines
1.1 KiB
Bash

#!/bin/sh
TMP=/var/log/setup/tmp
if [ ! -d $TMP ]; then
mkdir -p $TMP
fi
add() {
for package in $* ; do
echo "$package: ADD" >> $TMP/SeTnewtag
done
}
skip() {
for package in $* ; do
echo "$package: SKP" >> $TMP/SeTnewtag
done
}
#item ####description ###on off ###
cat /dev/null > $TMP/SeTnewtag
dialog --title "SELECTING SOFTWARE FROM SERIES K (Linux kernel source)" \
--checklist "Please confirm the packages you wish to install \
from series K. Use the UP/DOWN keys to scroll through the list, and \
the SPACE key to deselect any items you don't want to install. \
Press ENTER when you are \
done." 11 70 1 \
"kernel-source" "Linux 6.1.27 kernel source" "on" \
2> $TMP/SeTpkgs
if [ $? = 1 -o $? = 255 ]; then
rm -f $TMP/SeTpkgs
> $TMP/SeTnewtag
for pkg in \
kernel-source \
; do
echo "$pkg: SKP" >> $TMP/SeTnewtag
done
exit
fi
cat /dev/null > $TMP/SeTnewtag
for PACKAGE in \
kernel-source \
; do
if grep "\(^\| \)$PACKAGE\( \|$\)" $TMP/SeTpkgs 1> /dev/null 2> /dev/null ; then
echo "$PACKAGE: ADD" >> $TMP/SeTnewtag
else
echo "$PACKAGE: SKP" >> $TMP/SeTnewtag
fi
done
rm -f $TMP/SeTpkgs