public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/virt-viewer/
Date: Mon, 19 Jul 2021 07:47:42 +0000 (UTC)	[thread overview]
Message-ID: <1626680815.37f4f1a5b0b2633f846422b6498dc59b3ddce293.juippis@gentoo> (raw)

commit:     37f4f1a5b0b2633f846422b6498dc59b3ddce293
Author:     sklv <sklv <AT> gentoo-dev1>
AuthorDate: Thu Jul 15 22:46:07 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jul 19 07:46:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f4f1a5

app-emulation/virt-viewer: Add ebuild for virt-viewer-10.0.

Signed-off-by: Alex Sokolov <sklv_gentoo <AT> protonmail.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/21666

 app-emulation/virt-viewer/Manifest                |  1 +
 app-emulation/virt-viewer/virt-viewer-10.0.ebuild | 46 +++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/app-emulation/virt-viewer/Manifest b/app-emulation/virt-viewer/Manifest
index ef6781ba687..3953af27c29 100644
--- a/app-emulation/virt-viewer/Manifest
+++ b/app-emulation/virt-viewer/Manifest
@@ -1,3 +1,4 @@
+DIST virt-viewer-10.0.tar.xz 256372 BLAKE2B 3368164c2f770f8aa963e0fb93e713249b05d31600747b68197864a40bf6fdb221ad44abb8ea5465706543241bd5898353cadf2a3e0917455383283722fdfd4f SHA512 82ed552337c3d71d762aed14e6fb20a123448fd5cf8c51f8f942ddd226ee2a4fa3ab8b9b893bbdde16628fb03363f2455e1d895074237d40ff567d642d216fd3
 DIST virt-viewer-7.0.tar.gz 924475 BLAKE2B 003efaf88445ec6f523e678459ed1e11562d0cd87fb4811105df9ac1e3129f4a97170c5b783f1d504d157055ae51ac8dc23ffa8f3f79dd6cd55707d962e1d9ad SHA512 e0558c9138877f546add6a3df9721e100cadb6953815be82b2376b0521b82cf14052bdc29c42bb03b198b6e9d129a55d33531a153207d7f29b5c1c3402ebc904
 DIST virt-viewer-8.0.tar.gz 937457 BLAKE2B 107a5f77d0e272665561e22c950416275c939d000fbb522401a954e6836bbd9e9399e768bc4363a1ea3110dd3229fe33738560563271774c3054278b2399cab8 SHA512 73317048949b6c49c28aab4685e3fb6533945b12c47078b522429b3e178423fcec5758c970d5048c8f65fee2b92a629b7e067cffa79c968292c73fd36133b918
 DIST virt-viewer-9.0.tar.gz 1176991 BLAKE2B bc4df73575195888b769dddd8de5c0eda9daa257902f3f3ce8099f9096d0cd9be28547c8671decb70e83e5f0de71633793886bfe78bd9ab5f360dc9759afcc5b SHA512 a5901d76c3e144fa3d6e640de93ed7f1e7cbeb075c04cdbe4a8c9c09bce96104ea552484df5e84c7a69af8dddd1177123ddb81b2dac775a98ac312f3102daae2

diff --git a/app-emulation/virt-viewer/virt-viewer-10.0.ebuild b/app-emulation/virt-viewer/virt-viewer-10.0.ebuild
new file mode 100644
index 00000000000..f6be72fe311
--- /dev/null
+++ b/app-emulation/virt-viewer/virt-viewer-10.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson xdg
+
+DESCRIPTION="Graphical console client for connecting to virtual machines"
+HOMEPAGE="https://virt-manager.org/"
+SRC_URI="https://virt-manager.org/download/sources/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+libvirt sasl +spice +vnc"
+
+RDEPEND=">=dev-libs/libxml2-2.6
+	x11-libs/gtk+:3
+	libvirt? (
+		>=app-emulation/libvirt-0.10.0[sasl?]
+		app-emulation/libvirt-glib
+	)
+	spice? ( >=net-misc/spice-gtk-0.35[sasl?,gtk3] )
+	vnc? ( >=net-libs/gtk-vnc-0.5.0[sasl?,gtk3(+)] )"
+DEPEND="${RDEPEND}
+	dev-lang/perl
+	>=dev-util/intltool-0.35.0
+	virtual/pkgconfig
+	spice? ( >=app-emulation/spice-protocol-0.12.10 )"
+
+REQUIRED_USE="|| ( spice vnc )"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature libvirt libvirt)
+		$(meson_feature vnc vnc)
+		$(meson_feature spice spice)
+	)
+	meson_src_configure
+}
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+	xdg_mimeinfo_database_update
+}


             reply	other threads:[~2021-07-19  7:47 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-19  7:47 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-05  8:14 [gentoo-commits] repo/gentoo:master commit in: app-emulation/virt-viewer/ Sam James
2025-04-26 22:14 Sam James
2024-06-19 10:33 Pacho Ramos
2023-10-04 17:46 Matthias Maier
2023-02-17 11:23 Sam James
2023-02-17 11:23 Sam James
2022-08-19 16:54 Sam James
2022-08-19  7:11 Agostino Sarubbo
2022-08-19  2:40 Sam James
2022-05-03 18:38 Sam James
2022-04-29  8:21 Joonas Niilola
2022-04-29  8:21 Joonas Niilola
2022-04-29  7:50 Sam James
2022-03-25  1:48 Sam James
2021-09-03  6:25 Joonas Niilola
2021-09-02  6:53 Joonas Niilola
2021-09-02  6:53 Joonas Niilola
2021-09-02  6:53 Joonas Niilola
2020-07-01  6:58 Joonas Niilola
2020-03-18 11:04 Agostino Sarubbo
2020-03-17 18:44 Agostino Sarubbo
2019-09-22  2:29 Matthias Maier
2019-09-22  2:29 Matthias Maier
2019-07-01 17:10 Matthias Maier
2019-07-01 17:10 Matthias Maier
2018-11-05 15:53 Mikle Kolyada
2018-11-04 19:14 Thomas Deutschmann
2018-08-25 22:01 Virgil Dupras
2018-08-17 15:31 Matthias Maier
2018-04-14 22:52 Matthias Maier
2018-04-14 22:52 Matthias Maier
2018-02-14 13:29 Jason Zaman
2018-02-12 21:36 Thomas Deutschmann
2018-02-12  1:58 Matthias Maier
2017-09-01  2:01 Matthias Maier
2017-05-12  8:39 Agostino Sarubbo
2017-05-12  0:22 Matthias Maier
2016-12-03  4:56 Yixun Lan
2016-12-01 17:05 Matthias Maier
2016-12-01 17:05 Matthias Maier
2016-10-10  2:47 Matthias Maier
2016-02-28  6:15 Matthias Maier
2016-02-28  6:15 Matthias Maier
2016-01-13 22:34 Manuel Rüger
2015-12-12  6:39 Matthias Maier
2015-10-18 18:04 Mikle Kolyada

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1626680815.37f4f1a5b0b2633f846422b6498dc59b3ddce293.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox