Commit 0f3a5c04 authored by Holger Levsen's avatar Holger Levsen
Browse files

chroot-installs: add tests for lxqt



Signed-off-by: Holger Levsen's avatarHolger Levsen <holger@layer-acht.org>
parent 229889c7
...@@ -88,7 +88,7 @@ Installation tests inside chroot environments. ...@@ -88,7 +88,7 @@ Installation tests inside chroot environments.
* $distro-install jobs (and $distro-install+upgrade jobs): * $distro-install jobs (and $distro-install+upgrade jobs):
** `debootstrap $distro`, install a *$set_of_packages* (and upgrade to *$2nd_distro*) ** `debootstrap $distro`, install a *$set_of_packages* (and upgrade to *$2nd_distro*)
** these $set_of_packages exist: 'gnome', 'kde', 'kde-full', 'lxde', 'xfc', 'full_desktop' (all five desktops plus `vlc evince iceweasel chromium cups build-essential devscripts wine texlive-full asciidoc vim emacs` and (`libreoffice virt-manager mplayer` (stretch/sid) and 'develop' ** these $set_of_packages exist: 'gnome', 'kde', 'kde-full', 'lxde', 'lxqt', 'xfc', 'full_desktop' (all six desktops plus `vlc evince iceweasel chromium cups build-essential devscripts wine texlive-full asciidoc vim emacs` and (`libreoffice virt-manager mplayer` (stretch/sid) and 'develop'
*** install is done with `apt-get install`, except for 'develop' where `apt-get build-dep` is used to install the build dependencies of these packages. *** install is done with `apt-get install`, except for 'develop' where `apt-get build-dep` is used to install the build dependencies of these packages.
** Then there are also all the corresponding upgrade jobs, eg 'chroot-installation_wheezy_install_gnome_upgrade_to_jessie' ** Then there are also all the corresponding upgrade jobs, eg 'chroot-installation_wheezy_install_gnome_upgrade_to_jessie'
......
...@@ -217,7 +217,7 @@ esac ...@@ -217,7 +217,7 @@ esac
bootstrap $DISTRO bootstrap $DISTRO
if [ "$2" != "" ] ; then if [ "$2" != "" ] ; then
FULL_DESKTOP="$SPECIFIC desktop-base gnome kde-plasma-desktop kde-full kde-standard xfce4 lxde vlc evince iceweasel cups build-essential devscripts wine texlive-full asciidoc vim emacs" FULL_DESKTOP="$SPECIFIC desktop-base gnome kde-plasma-desktop kde-full kde-standard xfce4 lxde lxqt vlc evince iceweasel cups build-essential devscripts wine texlive-full asciidoc vim emacs"
case $2 in case $2 in
none) ;; none) ;;
gnome) install_packages gnome gnome desktop-base gnome) install_packages gnome gnome desktop-base
...@@ -232,6 +232,8 @@ if [ "$2" != "" ] ; then ...@@ -232,6 +232,8 @@ if [ "$2" != "" ] ; then
;; ;;
lxde) install_packages lxde lxde desktop-base lxde) install_packages lxde lxde desktop-base
;; ;;
lxqt) install_packages lxqt lxqt desktop-base
;;
qt4) install_binary_packages qt4 qt4-x11 qtwebkit qt4) install_binary_packages qt4 qt4-x11 qtwebkit
;; ;;
qt5) # qt5 is >=jessie… qt5) # qt5 is >=jessie…
......
...@@ -38,6 +38,7 @@ all_targets = [ ...@@ -38,6 +38,7 @@ all_targets = [
'kde-full', 'kde-full',
'cinnamon', 'cinnamon',
'lxde', 'lxde',
'lxqt',
'xfce', 'xfce',
'full_desktop', 'full_desktop',
'qt4', 'qt4',
...@@ -161,6 +162,7 @@ spoken_names = { ...@@ -161,6 +162,7 @@ spoken_names = {
'kde-full': 'complete KDE desktop', 'kde-full': 'complete KDE desktop',
'cinnamon': 'Cinnamon', 'cinnamon': 'Cinnamon',
'lxde': 'LXDE', 'lxde': 'LXDE',
'lxqt': 'LXQT',
'xfce': 'Xfce', 'xfce': 'Xfce',
'qt4': 'Qt4 cross-platform C++ application framework', 'qt4': 'Qt4 cross-platform C++ application framework',
'qt5': 'Qt5 cross-platform C++ application framework', 'qt5': 'Qt5 cross-platform C++ application framework',
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment