diff options
author | Kostadin Shishmanov <kocelfc@tutanota.com> | 2023-12-16 11:24:27 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-12-16 09:30:54 +0000 |
commit | c79fce973fb6d30324caf13ed1ef7881fb9741c9 (patch) | |
tree | 26ed1e7c4f69a214461cfab977d99a0f92829f84 /app-emulation | |
parent | net-nntp/tin: fix modern C issue(s) (diff) | |
download | gentoo-c79fce973fb6d30324caf13ed1ef7881fb9741c9.tar.gz gentoo-c79fce973fb6d30324caf13ed1ef7881fb9741c9.tar.bz2 gentoo-c79fce973fb6d30324caf13ed1ef7881fb9741c9.zip |
app-emulation/virt-manager: allow dev-libs/libisoburn > app-cdr/cdrtools
This commit aims to provide an alternative to the unmaintained cdrtools
which has all sorts of build failures [1] and [2] and needs patching.
Upstream prefers xorrisofs provided by dev-libs/libisoburn over mkisofs
which is provided by app-cdr/cdrtools.[3] I had a look at some other
distros (openSUSE, Fedora and Debian) and they all use xorriso.
The other program that is from cdrtools (isoinfo) has been removed. [4]
[1] https://bugs.gentoo.org/903876
[2] https://bugs.gentoo.org/884771
[3] https://github.com/virt-manager/virt-manager/commit/3785abc6f0cb07c02ecc55760547a6f425513915
[4] https://github.com/virt-manager/virt-manager/commit/08d1a6a2ddd18f88222f9fdffa3f60f42a40bc67
Bug: https://bugs.gentoo.org/903876
Bug: https://bugs.gentoo.org/884771
Signed-off-by: Kostadin Shishmanov <kocelfc@tutanota.com>
Closes: https://github.com/gentoo/gentoo/pull/34309
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/virt-manager/virt-manager-4.1.0-r1.ebuild | 106 | ||||
-rw-r--r-- | app-emulation/virt-manager/virt-manager-9999.ebuild | 2 |
2 files changed, 107 insertions, 1 deletions
diff --git a/app-emulation/virt-manager/virt-manager-4.1.0-r1.ebuild b/app-emulation/virt-manager/virt-manager-4.1.0-r1.ebuild new file mode 100644 index 000000000000..f2ea44f9a428 --- /dev/null +++ b/app-emulation/virt-manager/virt-manager-4.1.0-r1.ebuild @@ -0,0 +1,106 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_SINGLE_IMPL=1 +DISTUTILS_USE_SETUPTOOLS=no +inherit gnome2 distutils-r1 optfeature + +DESCRIPTION="A graphical tool for administering 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://virt-manager.org/download/sources/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="gui policykit sasl" + +RDEPEND=" + ${PYTHON_DEPS} + || ( dev-libs/libisoburn app-cdr/cdrtools ) + >=app-emulation/libvirt-glib-1.0.0[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[X] + x11-libs/gtk+:3[introspection] + x11-libs/gtksourceview:4[introspection] + x11-libs/vte:2.91[introspection] + policykit? ( sys-auth/polkit[introspection] ) + ) +" +DEPEND="${RDEPEND}" +BDEPEND="dev-python/docutils" + +DOCS=( README.md NEWS.md ) + +DISTUTILS_ARGS=( + --no-update-icon-cache + --no-compile-schemas +) + +EPYTEST_IGNORE=( + # Wants to use /tmp osinfo config? + tests/test_cli.py + + # These seem to be essentially coverage tests + tests/test_checkprops.py +) + +distutils_enable_tests pytest + +python_configure() { + esetup.py configure --default-graphics=spice +} + +python_test() { + export VIRTINST_TEST_SUITE_FORCE_LIBOSINFO=0 + + epytest +} + +python_install() { + esetup.py install +} + +pkg_preinst() { + if use gui ; then + gnome2_pkg_preinst + + cd "${ED}" || die + export GNOME2_ECLASS_ICONS=$(find 'usr/share/virt-manager/icons' -maxdepth 1 -mindepth 1 -type d 2> /dev/null || die) + else + rm -r "${ED}/usr/share/virt-manager/ui/" || die + rm -r "${ED}/usr/share/virt-manager/icons/" || die + rm -r "${ED}/usr/share/icons/" || die + rm -r "${ED}/usr/share/applications/virt-manager.desktop" || die + rm -r "${ED}/usr/bin/virt-manager" || die + fi +} + +pkg_postinst() { + use gui && gnome2_pkg_postinst + + optfeature "SSH_ASKPASS program implementation" lxqt-base/lxqt-openssh-askpass net-misc/ssh-askpass-fullscreen net-misc/x11-ssh-askpass + optfeature "QEMU host support" app-emulation/qemu[usbredir,spice] + optfeature "virt-install --location ISO support" dev-libs/libisoburn +} diff --git a/app-emulation/virt-manager/virt-manager-9999.ebuild b/app-emulation/virt-manager/virt-manager-9999.ebuild index d5fd49307e4c..a7e83d3bf708 100644 --- a/app-emulation/virt-manager/virt-manager-9999.ebuild +++ b/app-emulation/virt-manager/virt-manager-9999.ebuild @@ -27,7 +27,7 @@ IUSE="gui policykit sasl" RDEPEND=" ${PYTHON_DEPS} - app-cdr/cdrtools + || ( dev-libs/libisoburn app-cdr/cdrtools ) >=app-emulation/libvirt-glib-1.0.0[introspection] >=sys-libs/libosinfo-0.2.10[introspection] $(python_gen_cond_dep ' |