Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/virt-viewer/
Date: Wed, 01 Jul 2020 06:58:24
Message-Id: 1593585897.0c12c9191f8232aa066d5044886c014de1b34859.juippis@gentoo
1 commit: 0c12c9191f8232aa066d5044886c014de1b34859
2 Author: Michal Privoznik <mprivozn <AT> redhat <DOT> com>
3 AuthorDate: Wed May 6 16:49:59 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 06:44:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c12c919
7
8 app-emulation/virt-viewer: Version bump to 9.0
9
10 Signed-off-by: Michal Privoznik <mprivozn <AT> redhat.com>
11 Closes: https://github.com/gentoo/gentoo/pull/15675
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 app-emulation/virt-viewer/Manifest | 1 +
15 app-emulation/virt-viewer/virt-viewer-9.0.ebuild | 39 ++++++++++++++++++++++++
16 2 files changed, 40 insertions(+)
17
18 diff --git a/app-emulation/virt-viewer/Manifest b/app-emulation/virt-viewer/Manifest
19 index 6b737cd630d..ef6781ba687 100644
20 --- a/app-emulation/virt-viewer/Manifest
21 +++ b/app-emulation/virt-viewer/Manifest
22 @@ -1,2 +1,3 @@
23 DIST virt-viewer-7.0.tar.gz 924475 BLAKE2B 003efaf88445ec6f523e678459ed1e11562d0cd87fb4811105df9ac1e3129f4a97170c5b783f1d504d157055ae51ac8dc23ffa8f3f79dd6cd55707d962e1d9ad SHA512 e0558c9138877f546add6a3df9721e100cadb6953815be82b2376b0521b82cf14052bdc29c42bb03b198b6e9d129a55d33531a153207d7f29b5c1c3402ebc904
24 DIST virt-viewer-8.0.tar.gz 937457 BLAKE2B 107a5f77d0e272665561e22c950416275c939d000fbb522401a954e6836bbd9e9399e768bc4363a1ea3110dd3229fe33738560563271774c3054278b2399cab8 SHA512 73317048949b6c49c28aab4685e3fb6533945b12c47078b522429b3e178423fcec5758c970d5048c8f65fee2b92a629b7e067cffa79c968292c73fd36133b918
25 +DIST virt-viewer-9.0.tar.gz 1176991 BLAKE2B bc4df73575195888b769dddd8de5c0eda9daa257902f3f3ce8099f9096d0cd9be28547c8671decb70e83e5f0de71633793886bfe78bd9ab5f360dc9759afcc5b SHA512 a5901d76c3e144fa3d6e640de93ed7f1e7cbeb075c04cdbe4a8c9c09bce96104ea552484df5e84c7a69af8dddd1177123ddb81b2dac775a98ac312f3102daae2
26
27 diff --git a/app-emulation/virt-viewer/virt-viewer-9.0.ebuild b/app-emulation/virt-viewer/virt-viewer-9.0.ebuild
28 new file mode 100644
29 index 00000000000..098fc095c38
30 --- /dev/null
31 +++ b/app-emulation/virt-viewer/virt-viewer-9.0.ebuild
32 @@ -0,0 +1,39 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +inherit gnome2
38 +
39 +DESCRIPTION="Graphical console client for connecting to virtual machines"
40 +HOMEPAGE="https://virt-manager.org/"
41 +SRC_URI="https://virt-manager.org/download/sources/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="+libvirt sasl +spice +vnc"
47 +
48 +RDEPEND=">=dev-libs/libxml2-2.6
49 + x11-libs/gtk+:3
50 + libvirt? (
51 + >=app-emulation/libvirt-0.10.0[sasl?]
52 + app-emulation/libvirt-glib
53 + )
54 + spice? ( >=net-misc/spice-gtk-0.35[sasl?,gtk3] )
55 + vnc? ( >=net-libs/gtk-vnc-0.5.0[sasl?,gtk3(+)] )"
56 +DEPEND="${RDEPEND}
57 + dev-lang/perl
58 + >=dev-util/intltool-0.35.0
59 + virtual/pkgconfig
60 + spice? ( >=app-emulation/spice-protocol-0.12.10 )"
61 +
62 +REQUIRED_USE="|| ( spice vnc )"
63 +
64 +src_configure() {
65 + gnome2_src_configure \
66 + --disable-update-mimedb \
67 + --without-ovirt \
68 + $(use_with libvirt) \
69 + $(use_with vnc gtk-vnc) \
70 + $(use_with spice spice-gtk)
71 +}