mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-emulation/virt-manager: add 5.0.0-r2
- update DESCRIPTION - add appdata.xml's LICENSE - optimize python code (thanks clan!) - rework optfeature section - show qemu optfeature only if QEMU is installed - add kde-plasma/ksshaskpass as a SSH_ASKPASS possible integration - resolve #835950 - remove policykit USE description - it had the information that solved the bug but it seems that people did not read it - add conditional optfeature to show local libvirt policykit integration Closes: https://bugs.gentoo.org/835950 Closes: https://github.com/gentoo/gentoo/pull/40560 Signed-off-by: Filip Kobierski <fkobi@pm.me> Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
committed by
Sam James
parent
c2b51afa0d
commit
bf21936da6
@@ -10,11 +10,6 @@
|
||||
<name>Gentoo Virtualization Project</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="policykit">
|
||||
Enables <pkg>sys-auth/polkit</pkg> authentication support,
|
||||
required when using <pkg>app-emulation/libvirt</pkg> with
|
||||
PolicyKit authentication
|
||||
</flag>
|
||||
<flag name="sasl">Enable connecting to SASL-enabled (e.g. Kerberos-protected) instances</flag>
|
||||
</use>
|
||||
<longdescription>
|
||||
|
||||
122
app-emulation/virt-manager/virt-manager-5.0.0-r2.ebuild
Normal file
122
app-emulation/virt-manager/virt-manager-5.0.0-r2.ebuild
Normal file
@@ -0,0 +1,122 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..13} )
|
||||
inherit gnome2 python-single-r1 optfeature meson verify-sig
|
||||
|
||||
DESCRIPTION="Desktop tool for managing libvirt virtual machines"
|
||||
HOMEPAGE="https://virt-manager.org https://github.com/virt-manager/virt-manager"
|
||||
|
||||
if [[ ${PV} == *9999* ]]; then
|
||||
EGIT_REPO_URI="https://github.com/virt-manager/virt-manager.git"
|
||||
EGIT_BRANCH="main"
|
||||
SRC_URI=""
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="
|
||||
https://releases.pagure.org/${PN}/${P}.tar.xz
|
||||
verify-sig? ( https://releases.pagure.org/${PN}/${P}.tar.xz.asc )
|
||||
"
|
||||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="CC0-1.0 GPL-2+" # appdata & source code
|
||||
SLOT="0"
|
||||
IUSE="gui policykit sasl verify-sig"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
# https://github.com/virt-manager/virt-manager/blob/main/virt-manager.spec.in
|
||||
RDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
|| ( dev-libs/libisoburn app-cdr/cdrtools )
|
||||
>=app-emulation/libvirt-glib-0.0.9[introspection]
|
||||
>=sys-libs/libosinfo-0.2.10[introspection]
|
||||
$(python_gen_cond_dep '
|
||||
dev-libs/libxml2[python,${PYTHON_USEDEP}]
|
||||
dev-python/argcomplete[${PYTHON_USEDEP}]
|
||||
>=dev-python/libvirt-python-6.10.0[${PYTHON_USEDEP}]
|
||||
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
')
|
||||
gui? (
|
||||
gnome-base/dconf
|
||||
>=net-libs/gtk-vnc-0.3.8[gtk3(+),introspection]
|
||||
net-misc/spice-gtk[usbredir,gtk3,introspection,sasl?]
|
||||
sys-apps/dbus
|
||||
x11-libs/gtk+:3[introspection]
|
||||
|| (
|
||||
x11-libs/gtksourceview:4[introspection]
|
||||
x11-libs/gtksourceview:3.0[introspection]
|
||||
)
|
||||
x11-libs/vte:2.91[introspection]
|
||||
policykit? ( sys-auth/polkit[introspection] )
|
||||
)
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
dev-python/docutils
|
||||
sys-devel/gettext
|
||||
verify-sig? ( >=sec-keys/openpgp-keys-virt-manager-20250106 )
|
||||
"
|
||||
|
||||
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/virt-manager.asc
|
||||
|
||||
DOCS=( {DESIGN,NEWS,README}.md )
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=( # in upstream's order
|
||||
-Dupdate-icon-cache=false
|
||||
-Dcompile-schemas=false
|
||||
|
||||
# -Ddefault-graphics=spice # default
|
||||
# we do not ship OpenVZ and bhyve does not work on linux
|
||||
-Ddefault-hvs="['qemu','xen','lxc']"
|
||||
|
||||
# While in the past we did allow test suite to run, any errors from
|
||||
# test_cli.py were ignored. Since that's where like 90% of tests actually
|
||||
# lives, just disable tests (and do not drag additional dependencies).
|
||||
-Dtests=disabled
|
||||
)
|
||||
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
|
||||
if ! use gui; then
|
||||
rm -r "${ED}/usr/share/applications/${PN}.desktop" || die
|
||||
rm -r "${ED}/usr/share/${PN}/icons/" || die
|
||||
rm -r "${ED}/usr/share/${PN}/ui/" || die
|
||||
rm -r "${ED}/usr/share/icons/" || die
|
||||
rm -r "${ED}/usr/bin/${PN}" || die
|
||||
fi
|
||||
|
||||
python_fix_shebang "${ED}"
|
||||
python_optimize "${ED}"/usr/share/virt-manager/virt{inst,Manager}
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
use gui && gnome2_pkg_postinst
|
||||
|
||||
# OPTFEATURE SECTION
|
||||
# keep app-emulation/* optfeatures on top and multiline on the bottom
|
||||
if has_version app-emulation/qemu; then
|
||||
optfeature "Full QEMU host support" app-emulation/qemu[usbredir,spice]
|
||||
fi
|
||||
if use policykit && has_version app-emulation/libvirt[-policykit]; then
|
||||
optfeature "PolicyKit integration with local libvirt instance" \
|
||||
app-emulation/libvirt[policykit]
|
||||
fi
|
||||
# it's possible this also requires libguestfs-appliance but it's a RDEPEND of libguestfs
|
||||
optfeature "Inspection of guest filesystems" app-emulation/libguestfs[libvirt,python]
|
||||
|
||||
optfeature "SSH_ASKPASS program implementation" \
|
||||
kde-plasma/ksshaskpass \
|
||||
lxqt-base/lxqt-openssh-askpass \
|
||||
net-misc/ssh-askpass-fullscreen \
|
||||
net-misc/x11-ssh-askpass
|
||||
}
|
||||
Reference in New Issue
Block a user