slackware-current/slackware64/k/maketag.ez
Patrick J Volkerding 98045b7b19 Wed Mar 22 20:22:25 UTC 2023
a/coreutils-9.2-x86_64-2.txz:  Rebuilt.
  Don't link with OpenSSL's libcrypto, as it creates problems on machines that
  don't yet have openssl3 installed when /bin/sort suddenly depends upon
  libcrypto.so.3. Worked fine without this previously, so it shouldn't really
  make any difference. There's also a configure option to use the kernel's
  crypto routines if available, but for now we'll skip this.
  Thanks to rahrah.
a/kernel-firmware-20230320_bcdcfbc-noarch-1.txz:  Upgraded.
a/kernel-generic-6.1.21-x86_64-1.txz:  Upgraded.
a/kernel-huge-6.1.21-x86_64-1.txz:  Upgraded.
a/kernel-modules-6.1.21-x86_64-1.txz:  Upgraded.
d/kernel-headers-6.1.21-x86-1.txz:  Upgraded.
k/kernel-source-6.1.21-noarch-1.txz:  Upgraded.
l/adwaita-icon-theme-44.0-noarch-1.txz:  Upgraded.
n/gpgme-1.19.0-x86_64-1.txz:  Upgraded.
n/links-2.29-x86_64-1.txz:  Upgraded.
t/texlive-2023.230322-x86_64-1.txz:  Upgraded.
  Thanks to Johannes Schoepfer.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2023-03-22 22:37:07 +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.21 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