Description of problem: * This broke a existing and important Xen-Tool * Under F27 we had: http://dl.fedoraproject.org/pub/fedora/linux/releases/27/Everything/x86_64/os/Packages/g/gtk-vnc-python-0.7.1-3.fc27.x86_64.rpm but for F28 it's not existing and no replacement afaik. This broke the python based OpenXenManager, the foss management panel for Xen-Installations. This package is not listed on koji, but as you can see, it was in F27, so, where is it gone? Is there a replacement package? Will it be back? Workaround: rpm -i --force --nodeps http://dl.fedoraproject.org/pub/fedora/linux/releases/27/Everything/x86_64/os/Packages/g/gtk-vnc-python-0.7.1-3.fc27.x86_64.rpm works again.
GTK libraries stopped needing manually written python bindings a long time ago now. Instead apps should access GTK based APIs via the GObject Introspection framework. The manual python bindings for GTK-VNC only ever worked for the GTK2 in combination with Python 2. Using GTK3 or Python3 always needed GObject Introspection. We're moving towards dropping GTK2 support & stopping building Python2 was a first step as Python2 itself is nearly end of life and nothing in Fedora required these bindings. For an example of how to use GObject Introspection see the example program: https://gitlab.gnome.org/GNOME/gtk-vnc/blob/master/examples/gvncviewer.py OpenXenmanager will need to switch to using using GObject Introspection, and also to use GTK3 if it wants to be future proof for Fedora 30 where GTK2 support will likely be gone from GTK-VNC forever.