1
0
Fork 0
mirror of git://slackware.nl/current.git synced 2025-01-30 08:38:10 +01:00
slackware-current/slackware64/k/maketag.ez
Patrick J Volkerding 1c1637ba89 Tue Oct 23 05:11:47 UTC 2018
a/kernel-generic-4.19.0-x86_64-1.txz:  Upgraded.
a/kernel-huge-4.19.0-x86_64-1.txz:  Upgraded.
a/kernel-modules-4.19.0-x86_64-1.txz:  Upgraded.
d/kernel-headers-4.19.0-x86-1.txz:  Upgraded.
d/parallel-20181022-noarch-1.txz:  Upgraded.
k/kernel-source-4.19.0-noarch-1.txz:  Upgraded.
  [581 lines of diffconfig output omitted here]
l/alsa-plugins-1.1.7-x86_64-3.txz:  Rebuilt.
  Reverted two patches that have been reported to cause crashes with USB audio
  devices. Thanks to Jean-Philippe Guillemin.
l/harfbuzz-1.9.0-x86_64-2.txz:  Rebuilt.
  Reverted (for now) to harfbuzz-1.9.0 to fix build failures with texlive, php,
  and calligra caused by API changes. Thanks to nobodino.
l/libpng-1.6.35-x86_64-1.txz:  Upgraded.
n/samba-4.9.1-x86_64-1.txz:  Upgraded.
xap/mozilla-firefox-60.3.0esr-x86_64-1.txz:  Upgraded.
  This release contains security fixes and improvements.
  For more information, see:
    https://www.mozilla.org/security/known-vulnerabilities/firefoxESR.html
  (* Security fix *)
extra/pure-alsa-system/alsa-plugins-1.1.7-x86_64-3_alsa.txz:  Rebuilt.
  Reverted two patches that have been reported to cause crashes with USB audio
  devices. Thanks to Jean-Philippe Guillemin.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2018-10-23 18:00:36 +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 4.19.0 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