[gnome-boxes/drop-ssh-display] Drop SshDisplay in favour of GNOME Connections




commit 844cc6e4d97146a32193bfe0f70db013e9eecd34
Author: Felipe Borges <felipeborges gnome org>
Date:   Wed Oct 7 11:41:52 2020 +0200

    Drop SshDisplay in favour of GNOME Connections
    
    GNOME Connections is now the recommended tool for remote machines
    managemet. See https://gitlab.gnome.org/gnome/connections
    
    This drops our dependency in vte.

 build-aux/flatpak/org.gnome.Boxes.json |  10 ----
 src/meson.build                        |   2 -
 src/remote-machine.vala                |   3 -
 src/ssh-display.vala                   | 102 ---------------------------------
 4 files changed, 117 deletions(-)
---
diff --git a/build-aux/flatpak/org.gnome.Boxes.json b/build-aux/flatpak/org.gnome.Boxes.json
index a3e50273..3c7735f9 100644
--- a/build-aux/flatpak/org.gnome.Boxes.json
+++ b/build-aux/flatpak/org.gnome.Boxes.json
@@ -449,16 +449,6 @@
                 }
             ]
         },
-        {
-            "name" : "vte",
-            "buildsystem" : "meson",
-            "sources" : [
-                {
-                    "type" : "git",
-                    "url" : "https://gitlab.gnome.org/GNOME/vte.git";
-                }
-            ]
-        },
         {
             "name" : "libhandy",
             "buildsystem" : "meson",
diff --git a/src/meson.build b/src/meson.build
index a1638c9d..9effbabf 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -105,7 +105,6 @@ vala_sources = [
   'libvirt-vm-cloner.vala',
   'libvirt-vm-importer.vala',
   'vnc-display.vala',
-  'ssh-display.vala',
   'welcome-tutorial.vala',
   'welcome-tutorial-page.vala',
   'downloader.vala',
@@ -143,7 +142,6 @@ dependencies = [
   dependency ('libxml-2.0', version: '>= 2.7.8'),
   dependency ('spice-client-gtk-3.0', version: '>= 0.32'),
   dependency ('tracker-sparql-3.0'),
-  dependency ('vte-2.91', version: '>= 0.40.2'),
   dependency ('webkit2gtk-4.0', version: '>= 2.26.0'),
   cc.find_library('m', required : false),
   valac.find_library ('gio-2.0-workaround', dirs: vapi_dir),
diff --git a/src/remote-machine.vala b/src/remote-machine.vala
index 8359a961..54c1a2b7 100644
--- a/src/remote-machine.vala
+++ b/src/remote-machine.vala
@@ -41,9 +41,6 @@ public RemoteMachine (CollectionSource source) throws Boxes.Error {
             return new RdpDisplay.with_uri (config, source.uri);
 #endif
 
-        case "ssh":
-            return new SshDisplay.with_uri (config, source.uri);
-
         default:
             throw new Boxes.Error.INVALID ("unsupported display of type " + type);
         }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]