]> piware.de Git - bin.git/blobdiff - build-cockpit-toolbox
ubuntu-backport-cockpit: Adjust for Ubuntu 22.04
[bin.git] / build-cockpit-toolbox
index 6aad9b0e8f86eff69071c73751c6e84566235da4..55d87eb6e947b5a6625d187cd0d74ed292500721 100755 (executable)
@@ -1,10 +1,11 @@
 #!/bin/sh
 set -eux
-NAME=cockpit
+NAME=${NAME:-cockpit}
+TAG=${TAG:-latest}
 
 toolbox rm --force $NAME || true
-podman pull quay.io/cockpit/tasks
-yes | toolbox create --image quay.io/cockpit/tasks -c $NAME
+podman pull quay.io/cockpit/tasks:${TAG}
+yes | toolbox create --image quay.io/cockpit/tasks:${TAG} -c $NAME
 
 # install some extra development and desktop tools
 toolbox run -c "$NAME" sh -exc '
@@ -15,19 +16,42 @@ sudo hostname -F /etc/hostname
 # enable manpages
 sudo sed -i s/nodocs// /etc/dnf/dnf.conf
 
-sudo dnf install -y ansible man-pages moreutils \
+sudo dnf install -y ansible man-pages moreutils gh \
     python3-boto python3-boto3 libnotify \
-    pandoc texlive-ec texlive-pdfjam \
+    pandoc texlive-ec texlive-pdfjam texlive-beamer \
     /usr/bin/scanimage /usr/bin/pngquant /usr/bin/convert \
     kpcli \
     calibre qt5-qtwayland \
-    dbus-daemon tmt testcloud
+    chromium dbus-daemon flatpak-builder flatpak-spawn
 
-# qemu:///session support for testcloud: https://pagure.io/testcloud/pull-request/83#
-sudo dnf install -y https://download.copr.fedorainfracloud.org/results/frantisekz/testcloud-wip/fedora-33-x86_64/01968005-testcloud/python3-testcloud-0.4.0-4.fc33.noarch.rpm https://download.copr.fedorainfracloud.org/results/frantisekz/testcloud-wip/fedora-33-x86_64/01968005-testcloud/testcloud-0.4.0-4.fc33.noarch.rpm
+# HACK: tmt-provision-virtual has way too heavy dependencies: https://bugzilla.redhat.com/show_bug.cgi?id=2093717
+cat <<EOF > /tmp/spec
+Name: dummy-deps
+Summary: dummy dependencies
+Version: 999
+Release: 1%{?dist}
+# https://bugzilla.redhat.com/show_bug.cgi?id=2093717
+Provides: python3-libguestfs
+Provides: libguestfs-tools-c
+# also for tmt-provision-virtual
+Provides: libvirt
+License: BSD
+
+%description
+Dummy dependencies to avoid bloat.
+
+%files
+EOF
+rpmbuild --define "_topdir /tmp/rpmbuild-dummy" -bb /tmp/spec
+sudo rpm -i --verbose /tmp/rpmbuild-dummy/RPMS/x86_64/dummy-deps-999-1.fc35.x86_64.rpm
+rm -rf /tmp/rpmbuild-dummy /tmp/spec
+
+sudo dnf install -y --setopt=install_weak_deps=False tmt tmt-provision-virtual
+
+# run podman in toolbox
+printf "flatpak-spawn --host podman \42\$@\42\n" | sudo tee /usr/local/bin/podman >/dev/null
+sudo chmod a+x /usr/local/bin/podman
 
 # debugging cockpit crashes
 sudo dnf debuginfo-install -y glib2 glibc libssh gnutls
-
-type gh >/dev/null 2>&1 || sudo dnf install -y $(curl -s https://api.github.com/repos/cli/cli/releases/latest | grep -o https:.*_linux_amd64.rpm)
 '