1
0
Fork 0
mirror of git://slackware.nl/current.git synced 2025-01-15 15:41:54 +01:00
slackware-current/slackware64/k/maketag.ez
Patrick J Volkerding 50041dbf9a Tue Oct 29 20:09:01 UTC 2019
a/aaa_elflibs-15.0-x86_64-14.txz:  Rebuilt.
  Upgraded: libglib-2.0.so.0.6200.2, libgmodule-2.0.so.0.6200.2,
  libgobject-2.0.so.0.6200.2, libgthread-2.0.so.0.6200.2.
  Added: libgomp.so.1.0.0.
a/kernel-firmware-20191029_4065643-noarch-1.txz:  Upgraded.
a/kernel-generic-4.19.81-x86_64-1.txz:  Upgraded.
a/kernel-huge-4.19.81-x86_64-1.txz:  Upgraded.
a/kernel-modules-4.19.81-x86_64-1.txz:  Upgraded.
ap/sudo-1.8.29-x86_64-1.txz:  Upgraded.
d/kernel-headers-4.19.81-x86-1.txz:  Upgraded.
d/python-setuptools-41.6.0-x86_64-1.txz:  Upgraded.
k/kernel-source-4.19.81-noarch-1.txz:  Upgraded.
l/harfbuzz-2.6.3-x86_64-1.txz:  Upgraded.
n/samba-4.11.2-x86_64-1.txz:  Upgraded.
  This update fixes bugs and these security issues:
  Client code can return filenames containing path separators.
  Samba AD DC check password script does not receive the full password.
  User with "get changes" permission can crash AD DC LDAP server via dirsync.
  For more information, see:
    https://www.samba.org/samba/security/CVE-2019-10218.html
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10218
    https://www.samba.org/samba/security/CVE-2019-14833.html
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-14833
    https://www.samba.org/samba/security/CVE-2019-14847.html
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-14847
  (* Security fix *)
x/libglvnd-1.2.0-x86_64-4.txz:  Rebuilt.
  Applied upstream patches to fix EGL/eglplatform.h.
x/xorg-server-1.20.5-x86_64-3.txz:  Rebuilt.
  #define EGL_NO_X11 to fix glamor build against libglvnd-1.2.0.
x/xorg-server-xephyr-1.20.5-x86_64-3.txz:  Rebuilt.
x/xorg-server-xnest-1.20.5-x86_64-3.txz:  Rebuilt.
x/xorg-server-xvfb-1.20.5-x86_64-3.txz:  Rebuilt.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2019-10-30 08:59:50 +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 4.19.81 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