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: Sat, 04 Mar 2017 21:27:11
Message-Id: 1488662626.221fc267f3275a8868cec6f3227f4c66b5d33dde.tamiko@gentoo
1 commit: 221fc267f3275a8868cec6f3227f4c66b5d33dde
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 4 21:13:24 2017 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 21:23:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=221fc267
7
8 app-emulation/libvirt-glib: ebuild maintenance,
9
10 - bump to EAPI=6
11 - drop python, bug #601384
12
13 Package-Manager: Portage-2.3.3, Repoman-2.3.2
14
15 .../libvirt-glib/libvirt-glib-1.0.0-r1.ebuild | 45 ++++++++++++++++++++++
16 1 file changed, 45 insertions(+)
17
18 diff --git a/app-emulation/libvirt-glib/libvirt-glib-1.0.0-r1.ebuild b/app-emulation/libvirt-glib/libvirt-glib-1.0.0-r1.ebuild
19 new file mode 100644
20 index 00000000000..4008aaaaecb
21 --- /dev/null
22 +++ b/app-emulation/libvirt-glib/libvirt-glib-1.0.0-r1.ebuild
23 @@ -0,0 +1,45 @@
24 +# Copyright 1999-2017 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=6
28 +GNOME2_LA_PUNT="yes"
29 +
30 +inherit gnome2 vala
31 +
32 +DESCRIPTION="GLib and GObject mappings for libvirt"
33 +HOMEPAGE="http://libvirt.org/git/?p=libvirt-glib.git"
34 +SRC_URI="ftp://libvirt.org/libvirt/glib/${P}.tar.gz"
35 +
36 +LICENSE="LGPL-2.1"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +IUSE="+introspection nls +vala"
40 +REQUIRED_USE="vala? ( introspection )"
41 +
42 +# https://bugzilla.redhat.com/show_bug.cgi?id=1093633
43 +RESTRICT="test"
44 +
45 +RDEPEND="
46 + dev-libs/libxml2:2
47 + >=app-emulation/libvirt-1.2.6:=
48 + >=dev-libs/glib-2.38.0:2
49 + introspection? ( >=dev-libs/gobject-introspection-0.10.8:= )"
50 +DEPEND="${RDEPEND}
51 + dev-util/gtk-doc-am
52 + >=dev-util/intltool-0.35.0
53 + virtual/pkgconfig
54 + vala? ( $(vala_depend) )"
55 +
56 +src_prepare() {
57 + gnome2_src_prepare
58 + use vala && vala_src_prepare
59 +}
60 +
61 +src_configure() {
62 + gnome2_src_configure \
63 + --disable-test-coverage \
64 + --disable-static \
65 + $(use_enable introspection) \
66 + $(use_enable nls) \
67 + $(use_enable vala)
68 +}