File virtui-manager.spec of Package virtui-manager
#
# spec file for package virtui-manager
#
# Copyright (c) 2026 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python3-%{**}}
%define pythons python3
Name: virtui-manager
Version: 1.0.7
Release: 0
Summary: Terminal-based interface to manage virtual machines using libvirt
License: GPL-3.0-or-later
URL: https://aginies.github.io/virtui-manager/
Source: %{name}-%{version}.tar.gz
Group: System/Monitoring
BuildRequires: fdupes
BuildRequires: %{python_module base}
BuildRequires: %{python_module wheel}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
# Runtime dependencies
Requires: python3-libvirt-python
Requires: python3-textual >= 0.40.0
Requires: python3-PyYAML
Requires: python3-markdown-it-py
BuildArch: noarch
%description
Virtui-manager is a terminal-based interface to manage virtual machines using libvirt.
It allows you to view VM status, start/stop/pause VMs, and access consoles.
%package doc
Summary: Documentation for virtui-manager
Group: Documentation/HTML
%description doc
This package contains the HTML documentation for virtui-manager.
%package -n virtui-remote-viewer
Summary: Simple remote viewer for virtui-manager
Requires: %{name} = %{version}
Requires: python3-gobject
Requires: python3-libvirt-python
Requires: gtk3
#Requires: libgtk-vnc-2_0-0
#Requires: libvirt-glib-1_0-0
# Spice support (optional but good to have)
Recommends: typelib(SpiceClientGtk) = 3.0
%description -n virtui-remote-viewer
A simple remote viewer application bundled with virtui-manager.
It supports VNC and SPICE protocols.
%prep
%setup -q
%build
%python3_pyproject_wheel
%install
%python3_pyproject_install
# Install docs
mkdir -p %{buildroot}%{_docdir}/%{name}/html
if [ -d docs ]; then
cp -r docs/* %{buildroot}%{_docdir}/%{name}/html/
fi
# Install other docs
cp README.md FEATURES.md %{buildroot}%{_docdir}/%{name}/
# Deduplicate files
%fdupes %{buildroot}%{python3_sitelib}
%fdupes %{buildroot}%{_docdir}/%{name}
%files
%license LICENSE
%doc README.md FEATURES.md
%{_bindir}/virtui-manager
%{_bindir}/virtui-manager-cmd
%{python3_sitelib}/vmanager
%{python3_sitelib}/virtui_manager-*-info
%files doc
%dir %{_docdir}/%{name}
%{_docdir}/%{name}/html
%files -n virtui-remote-viewer
%{_bindir}/virtui-remote-viewer
%changelog