mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
00d6960a08
ap/cups-filters-1.20.4-x86_64-2.txz: Rebuilt. Recompiled against poppler-0.67.0. kde/calligra-2.9.11-x86_64-23.txz: Rebuilt. Recompiled against poppler-0.67.0. l/ffmpeg-3.4.4-x86_64-1.txz: Upgraded. l/gst-plugins-base-1.14.2-x86_64-1.txz: Upgraded. l/gst-plugins-good-1.14.2-x86_64-1.txz: Upgraded. l/gst-plugins-libav-1.14.2-x86_64-1.txz: Upgraded. l/gstreamer-1.14.2-x86_64-1.txz: Upgraded. l/poppler-0.67.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. n/php-7.2.8-x86_64-1.txz: Upgraded. This is a security release which also contains several minor bug fixes. (* Security fix *) t/texlive-2018.180630-x86_64-2.txz: Rebuilt. Recompiled against poppler-0.67.0. xap/MPlayer-20180720-x86_64-1.txz: Upgraded. xfce/tumbler-0.2.1-x86_64-5.txz: Rebuilt. Recompiled against poppler-0.67.0. extra/pure-alsa-system/MPlayer-20180720-x86_64-1_alsa.txz: Upgraded. extra/pure-alsa-system/ffmpeg-3.4.4-x86_64-1_alsa.txz: Upgraded. extra/pure-alsa-system/gst-plugins-good-1.14.2-x86_64-1_alsa.txz: Upgraded. pasture/php-5.6.37-x86_64-1.txz: Upgraded. Several security bugs have been fixed in this release, including: Int Overflow lead to Heap OverFlow in exif_thumbnail_extract of exif.c heap-buffer-overflow (READ of size 48) while reading exif data (* Security fix *)
14 lines
601 B
Bash
Executable file
14 lines
601 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# This script should be run in the current directory if you wish to uninstall
|
|
# the pure ALSA packages and switch back to using Pulseaudio.
|
|
|
|
removepkg xfce4-mixer xfce4-volumed
|
|
for package in MPlayer alsa-lib alsa-plugins audacious-plugins ffmpeg \
|
|
fluidsynth gst-plugins-good gst-plugins-good0 kde-runtime kmix libao \
|
|
pulseaudio pamixer pavucontrol xfce4-pulseaudio-plugin \
|
|
libcanberra mpg123 phonon sox xine-lib ; do
|
|
upgradepkg --install-new ../../slackware*/*/${package}-*.txz
|
|
done
|
|
mv /etc/asound.conf.new /etc/asound.conf
|
|
echo "System is converted back to using Pulseaudio."
|