slackware-current/slackware64/k/maketag.ez
Patrick J Volkerding eafa0396da Wed Dec 13 22:01:34 UTC 2023
a/kernel-firmware-20231212_c52dc25-noarch-1.txz:  Upgraded.
a/kernel-generic-6.6.7-x86_64-1.txz:  Upgraded.
a/kernel-huge-6.6.7-x86_64-1.txz:  Upgraded.
a/kernel-modules-6.6.7-x86_64-1.txz:  Upgraded.
d/kernel-headers-6.6.7-x86-1.txz:  Upgraded.
k/kernel-source-6.6.7-noarch-1.txz:  Upgraded.
kde/okteta-0.26.14-x86_64-1.txz:  Upgraded.
l/enchant-2.6.4-x86_64-1.txz:  Upgraded.
l/libxml2-2.12.3-x86_64-1.txz:  Upgraded.
l/v4l-utils-1.26.1-x86_64-1.txz:  Upgraded.
x/xorg-server-21.1.10-x86_64-1.txz:  Upgraded.
  This update fixes two security issues:
  Out-of-bounds memory write in XKB button actions.
  Out-of-bounds memory read in RRChangeOutputProperty and
  RRChangeProviderProperty.
  For more information, see:
    https://lists.x.org/archives/xorg/2023-December/061517.html
    https://www.cve.org/CVERecord?id=CVE-2023-6377
    https://www.cve.org/CVERecord?id=CVE-2023-6478
  (* Security fix *)
x/xorg-server-xephyr-21.1.10-x86_64-1.txz:  Upgraded.
x/xorg-server-xnest-21.1.10-x86_64-1.txz:  Upgraded.
x/xorg-server-xvfb-21.1.10-x86_64-1.txz:  Upgraded.
x/xorg-server-xwayland-23.2.3-x86_64-1.txz:  Upgraded.
  This update fixes two security issues:
  Out-of-bounds memory write in XKB button actions.
  Out-of-bounds memory read in RRChangeOutputProperty and
  RRChangeProviderProperty.
  For more information, see:
    https://lists.x.org/archives/xorg/2023-December/061517.html
    https://www.cve.org/CVERecord?id=CVE-2023-6377
    https://www.cve.org/CVERecord?id=CVE-2023-6478
  (* Security fix *)
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2023-12-13 23:34:24 +01: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.6.7 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