Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/libvirt-glib/
Date: Tue, 31 Dec 2019 22:01:59
Message-Id: 1577829687.e62cbac3cd0893797cde1b96e40da1aecd7d9b61.tamiko@gentoo
1 commit: e62cbac3cd0893797cde1b96e40da1aecd7d9b61
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 31 21:27:31 2019 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 31 22:01:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e62cbac3
7
8 app-emulation/libvirt-glib: version bump to 3.0.0
9
10 Closes: https://bugs.gentoo.org/703454
11 Package-Manager: Portage-2.3.83, Repoman-2.3.20
12 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
13
14 app-emulation/libvirt-glib/Manifest | 1 +
15 .../libvirt-glib/libvirt-glib-3.0.0.ebuild | 43 ++++++++++++++++++++++
16 2 files changed, 44 insertions(+)
17
18 diff --git a/app-emulation/libvirt-glib/Manifest b/app-emulation/libvirt-glib/Manifest
19 index 09832689389..7978802829e 100644
20 --- a/app-emulation/libvirt-glib/Manifest
21 +++ b/app-emulation/libvirt-glib/Manifest
22 @@ -1,2 +1,3 @@
23 DIST libvirt-glib-1.0.0.tar.gz 860450 BLAKE2B 417a3bd0df41787fbec456f301af744a04649db02192ef9c80bf42214a112a050a9f054c81549a114e7a1236c86e0066e8002f0c7f09317abb672fe5f6a76789 SHA512 72f53a90d3e40aa93d4afe5b29f631afe859532fbdb4e27086da3bd4cdaf0fb25fc808a82a1994b7c2648a1e864876ce95de28acb3b4876dac47b0f4d1c97ba5
24 DIST libvirt-glib-2.0.0.tar.gz 868946 BLAKE2B 1ff4695b25766d6caa603826dcc63e64aa3ce022e6623eb31017fb67a490baeb546a9bc67e16fc16c7b86040db971748b1ef4303a21b5dec098cf732f77c92ec SHA512 6ead4c37c314eb5670c5aa282ce039a0182a71a20b349a5d9c78367381eb674fad0f2ca0f2e20e1e89ff7df2ac9f1640f20fdfa63d599d8a2538fb4c0fba4c3f
25 +DIST libvirt-glib-3.0.0.tar.gz 899180 BLAKE2B ef10b3d9bad48e49dd1898733aacb2f51f1826330eda9c63a7f8df5f11c96812f8cc7fe6a867961efa85a433f45c934d75cf605eb523ec723459da4646335b1a SHA512 b9e7d782c25b5c3a9b2829f1be8162352438ab3505510a1ca7dd64d741eaab158dc9206fdd4b0e3e27b0c049e4bcfc47db0c9a7fa1a84888864e23d3c35c079e
26
27 diff --git a/app-emulation/libvirt-glib/libvirt-glib-3.0.0.ebuild b/app-emulation/libvirt-glib/libvirt-glib-3.0.0.ebuild
28 new file mode 100644
29 index 00000000000..887675b3d8b
30 --- /dev/null
31 +++ b/app-emulation/libvirt-glib/libvirt-glib-3.0.0.ebuild
32 @@ -0,0 +1,43 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +GNOME2_LA_PUNT="yes"
38 +
39 +inherit gnome2 vala
40 +
41 +DESCRIPTION="GLib and GObject mappings for libvirt"
42 +HOMEPAGE="http://libvirt.org/git/?p=libvirt-glib.git"
43 +SRC_URI="ftp://libvirt.org/libvirt/glib/${P}.tar.gz"
44 +
45 +LICENSE="LGPL-2.1"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~ppc64 ~x86"
48 +IUSE="+introspection nls +vala"
49 +REQUIRED_USE="vala? ( introspection )"
50 +
51 +RDEPEND="
52 + dev-libs/libxml2:2
53 + >=app-emulation/libvirt-1.2.6:=
54 + >=dev-libs/glib-2.38.0:2
55 + introspection? ( >=dev-libs/gobject-introspection-1.36.0:= )"
56 +DEPEND="${RDEPEND}
57 + dev-util/glib-utils
58 + dev-util/gtk-doc-am
59 + >=dev-util/intltool-0.35.0
60 + virtual/pkgconfig
61 + vala? ( $(vala_depend) )"
62 +
63 +src_prepare() {
64 + gnome2_src_prepare
65 + use vala && vala_src_prepare
66 +}
67 +
68 +src_configure() {
69 + gnome2_src_configure \
70 + --disable-test-coverage \
71 + --disable-static \
72 + $(use_enable introspection) \
73 + $(use_enable nls) \
74 + $(use_enable vala)
75 +}