slackware-current/slackware64/k/maketag.ez
Patrick J Volkerding cbe41bb716 Thu Aug 19 05:17:32 UTC 2021
a/aaa_libraries-15.0-x86_64-9.txz:  Rebuilt.
  Fixed wrong version of libasound.so.2.0.0.
  Thanks to Eduardo Charquero and PiterPunk.
a/kernel-firmware-20210818_c46b8c3-noarch-1.txz:  Upgraded.
a/kernel-generic-5.13.12-x86_64-1.txz:  Upgraded.
a/kernel-huge-5.13.12-x86_64-1.txz:  Upgraded.
a/kernel-modules-5.13.12-x86_64-1.txz:  Upgraded.
d/kernel-headers-5.13.12-x86-1.txz:  Upgraded.
k/kernel-source-5.13.12-noarch-1.txz:  Upgraded.
kde/konsole-21.08.0-x86_64-2.txz:  Rebuilt.
  Patched to fix konsole size and toolbars. Thanks to alienBOB and PiterPunk.
n/bind-9.16.20-x86_64-1.txz:  Upgraded.
  This update fixes bugs and the following security issue:
  An assertion failure occurred when named attempted to send a UDP packet that
  exceeded the MTU size, if Response Rate Limiting (RRL) was enabled.
  For more information, see:
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-25218
  (* Security fix *)
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2021-08-19 11:59:58 +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 5.13.12 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