diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2020-11-18 21:40:31 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2020-11-19 08:59:52 +0100 |
commit | f6a74b16d215620be5ccee5d1d8154214d3d209a (patch) | |
tree | 728b6856d0f9d36e4ba084382cb9b5b096cc6d01 /testing/source/vtown/kde | |
parent | 272467a60bb9c300bdb0ba546ff821498ec27904 (diff) | |
download | current-f6a74b16d215620be5ccee5d1d8154214d3d209a.tar.gz |
Wed Nov 18 21:40:31 UTC 202020201118214031
a/kernel-generic-5.4.78-x86_64-1.txz: Upgraded.
a/kernel-huge-5.4.78-x86_64-1.txz: Upgraded.
a/kernel-modules-5.4.78-x86_64-1.txz: Upgraded.
d/cmake-3.19.0-x86_64-1.txz: Upgraded.
d/kernel-headers-5.4.78-x86-1.txz: Upgraded.
k/kernel-source-5.4.78-noarch-1.txz: Upgraded.
l/imagemagick-7.0.10_39-x86_64-1.txz: Upgraded.
l/libjpeg-turbo-2.0.6-x86_64-1.txz: Upgraded.
n/gnupg2-2.2.24-x86_64-1.txz: Upgraded.
xap/mozilla-thunderbird-78.5.0-x86_64-1.txz: Upgraded.
This release contains security fixes and improvements.
For more information, see:
https://www.mozilla.org/en-US/thunderbird/78.5.0/releasenotes/
https://www.mozilla.org/en-US/security/advisories/mfsa2020-52/
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26951
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-16012
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26953
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26956
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26958
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26968
(* Security fix *)
xap/ssr-0.4.2-x86_64-2.txz: Rebuilt.
Recompiled to use Qt5 instead of Qt4.
xfce/thunar-1.8.16-x86_64-1.txz: Upgraded.
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'testing/source/vtown/kde')
-rw-r--r-- | testing/source/vtown/kde/post-install/kservice/profile.d/kde.csh | 21 | ||||
-rw-r--r-- | testing/source/vtown/kde/post-install/kservice/profile.d/kde.sh | 24 |
2 files changed, 24 insertions, 21 deletions
diff --git a/testing/source/vtown/kde/post-install/kservice/profile.d/kde.csh b/testing/source/vtown/kde/post-install/kservice/profile.d/kde.csh index cce370cc..b0ce563f 100644 --- a/testing/source/vtown/kde/post-install/kservice/profile.d/kde.csh +++ b/testing/source/vtown/kde/post-install/kservice/profile.d/kde.csh @@ -11,13 +11,14 @@ else setenv XDG_CONFIG_DIRS /etc/xdg:/etc/kde/xdg endif -if ( ! $?XDG_RUNTIME_DIR ) then - # Using /run/user would be more in line with XDG specs, but in that case - # we should mount /run as tmpfs and add this to the Slackware rc scripts: - # mkdir /run/user ; chmod 1777 /run/user - # setenv XDG_RUNTIME_DIR /run/user/$USER - setenv XDG_RUNTIME_DIR /tmp/xdg-runtime-$USER - mkdir -p $XDG_RUNTIME_DIR - chown $USER $XDG_RUNTIME_DIR - chmod 700 $XDG_RUNTIME_DIR -endif +# Commented out, since PAM should take care of this: +#if ( ! $?XDG_RUNTIME_DIR ) then +# # Using /run/user would be more in line with XDG specs, but in that case +# # we should mount /run as tmpfs and add this to the Slackware rc scripts: +# # mkdir /run/user ; chmod 1777 /run/user +# # setenv XDG_RUNTIME_DIR /run/user/$USER +# setenv XDG_RUNTIME_DIR /tmp/xdg-runtime-$USER +# mkdir -p $XDG_RUNTIME_DIR +# chown $USER $XDG_RUNTIME_DIR +# chmod 700 $XDG_RUNTIME_DIR +#endif diff --git a/testing/source/vtown/kde/post-install/kservice/profile.d/kde.sh b/testing/source/vtown/kde/post-install/kservice/profile.d/kde.sh index 9448c34e..ec317ad1 100644 --- a/testing/source/vtown/kde/post-install/kservice/profile.d/kde.sh +++ b/testing/source/vtown/kde/post-install/kservice/profile.d/kde.sh @@ -9,15 +9,17 @@ if [ ! "$XDG_CONFIG_DIRS" = "" ]; then else XDG_CONFIG_DIRS=/etc/xdg:/etc/kde/xdg fi -if [ "$XDG_RUNTIME_DIR" = "" ]; then - # Using /run/user would be more in line with XDG specs, but in that case - # we should mount /run as tmpfs and add this to the Slackware rc scripts: - # mkdir /run/user ; chmod 1777 /run/user - # XDG_RUNTIME_DIR=/run/user/$USER - XDG_RUNTIME_DIR=/tmp/xdg-runtime-$USER - mkdir -p $XDG_RUNTIME_DIR - chown $USER $XDG_RUNTIME_DIR - chmod 700 $XDG_RUNTIME_DIR -fi -export XDG_CONFIG_DIRS XDG_RUNTIME_DIR +export XDG_CONFIG_DIRS +# Commented out, since PAM should take care of this: +#if [ "$XDG_RUNTIME_DIR" = "" ]; then +# # Using /run/user would be more in line with XDG specs, but in that case +# # we should mount /run as tmpfs and add this to the Slackware rc scripts: +# # mkdir /run/user ; chmod 1777 /run/user +# # XDG_RUNTIME_DIR=/run/user/$USER +# XDG_RUNTIME_DIR=/tmp/xdg-runtime-$USER +# mkdir -p $XDG_RUNTIME_DIR +# chown $USER $XDG_RUNTIME_DIR +# chmod 700 $XDG_RUNTIME_DIR +#fi +#export XDG_RUNTIME_DIR |