slackware-current/slackware64/k/maketag.ez
Patrick J Volkerding f493ddecac Thu Jan 19 00:40:12 UTC 2023
a/kernel-firmware-20230117_7e4f0ed-noarch-1.txz:  Upgraded.
a/kernel-generic-6.1.7-x86_64-1.txz:  Upgraded.
a/kernel-huge-6.1.7-x86_64-1.txz:  Upgraded.
a/kernel-modules-6.1.7-x86_64-1.txz:  Upgraded.
a/pkgtools-15.1-noarch-3.txz:  Rebuilt.
  installpkg: allow xz to use all the available CPU threads.
  makepkg: by default, allow xz to determine how many threads to use. However,
  on 32-bit platforms default to 2 threads since we were using this before. If
  allowed to decide, xz seems to only want to use a single thread on 32-bit.
ap/nano-7.2-x86_64-1.txz:  Upgraded.
ap/sudo-1.9.12p2-x86_64-1.txz:  Upgraded.
  This update fixes a flaw in sudo's -e option (aka sudoedit) that could allow
  a malicious user with sudoedit privileges to edit arbitrary files.
  For more information, see:
    https://www.cve.org/CVERecord?id=CVE-2023-22809
  (* Security fix *)
d/kernel-headers-6.1.7-x86-1.txz:  Upgraded.
k/kernel-source-6.1.7-noarch-1.txz:  Upgraded.
kde/plasma-wayland-protocols-1.10-x86_64-1.txz:  Upgraded.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2023-01-19 02:39:15 +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.1.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