mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
0e5d583290
testing/packages/vtown/kde/bluedevil-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/breeze-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/breeze-grub-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/breeze-gtk-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/drkonqi-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kactivitymanagerd-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kde-cli-tools-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kde-gtk-config-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdecoration-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kdeplasma-addons-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kgamma5-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/khotkeys-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kinfocenter-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kmenuedit-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kscreen-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kscreenlocker-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ksshaskpass-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/ksysguard-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwallet-pam-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwayland-integration-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwayland-server-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwin-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/kwrited-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/libkscreen-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/libksysguard-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/milou-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/oxygen-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-browser-integration-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-desktop-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-disks-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-integration-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-nm-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-pa-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-sdk-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-vault-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-workspace-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/plasma-workspace-wallpapers-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/polkit-kde-agent-1-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/powerdevil-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/sddm-kcm-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/systemsettings-5.20.3-x86_64-1_vtown_1.txz: Upgraded. testing/packages/vtown/kde/xdg-desktop-portal-kde-5.20.3-x86_64-1_vtown_1.txz: Upgraded.
46 lines
1.1 KiB
Bash
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 5.4.76 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
|