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: Sun, 27 Dec 2015 13:07:21
Message-Id: 1451221615.3fae8409c95850d27c0c7a9344e400c653730540.tamiko@gentoo
1 commit: 3fae8409c95850d27c0c7a9344e400c653730540
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 27 13:02:54 2015 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 27 13:06:55 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fae8409
7
8 app-emulation/libvirt-glib: version bump to 0.2.3
9
10 Thanks to Dessa for pointing this out.
11
12 Package-Manager: portage-2.2.26
13
14 app-emulation/libvirt-glib/Manifest | 1 +
15 .../libvirt-glib/libvirt-glib-0.2.3.ebuild | 53 ++++++++++++++++++++++
16 2 files changed, 54 insertions(+)
17
18 diff --git a/app-emulation/libvirt-glib/Manifest b/app-emulation/libvirt-glib/Manifest
19 index 42e9da5..155d400 100644
20 --- a/app-emulation/libvirt-glib/Manifest
21 +++ b/app-emulation/libvirt-glib/Manifest
22 @@ -1 +1,2 @@
23 DIST libvirt-glib-0.2.2.tar.gz 853052 SHA256 d7be16025231c91ccae43838b7cdb1d55d181856a2a50b0f7b1c5078ad202d9d SHA512 77adcf74dd057b8c5e3c21e1fbe0a99eedbe0005d0247c0173bce69e4e6209dbffe18c7a2f0de9a4c279f138ab5bcc360c14cc2335d0b2b55f22b5819c3e5b70 WHIRLPOOL 628d76cf20fe0b707a56688ad4f17c2c95b12b89fe89f4628e42cee2e8c5855aeac0e06ad45fe71fb63ae935b1ff7a17ee69f294b8358653f7cbcd03aea59876
24 +DIST libvirt-glib-0.2.3.tar.gz 876258 SHA256 c3b11aa34584b3416148b36bb005505e461830c73c9fd2f40143cca3309250dd SHA512 007e642724658e7f2d4ad10094e70a93186196467140662d5e71644ae8efac25a7f60dcf51b55b60d056d3079ecf0798428e077cb6110292ce5f2a474db9e369 WHIRLPOOL 594ab70f4647e053d9540e857aeba7853491200d825eed713a1025afe5eabbe2f3c698d30b00e0da1735f2fc8465212eae2a965fb93a68099df5d11ce494a0d2
25
26 diff --git a/app-emulation/libvirt-glib/libvirt-glib-0.2.3.ebuild b/app-emulation/libvirt-glib/libvirt-glib-0.2.3.ebuild
27 new file mode 100644
28 index 0000000..a5ccb74
29 --- /dev/null
30 +++ b/app-emulation/libvirt-glib/libvirt-glib-0.2.3.ebuild
31 @@ -0,0 +1,53 @@
32 +# Copyright 1999-2015 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +GCONF_DEBUG="no"
38 +GNOME2_LA_PUNT="yes"
39 +PYTHON_COMPAT=( python2_7 )
40 +
41 +inherit gnome2 python-single-r1 vala
42 +
43 +DESCRIPTION="GLib and GObject mappings for libvirt"
44 +HOMEPAGE="http://libvirt.org/git/?p=libvirt-glib.git"
45 +SRC_URI="ftp://libvirt.org/libvirt/glib/${P}.tar.gz"
46 +
47 +LICENSE="LGPL-2.1"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE="+introspection python +vala"
51 +REQUIRED_USE="
52 + python? ( ${PYTHON_REQUIRED_USE} )
53 + vala? ( introspection )
54 +"
55 +
56 +# https://bugzilla.redhat.com/show_bug.cgi?id=1093633
57 +RESTRICT="test"
58 +
59 +RDEPEND="
60 + dev-libs/libxml2:2
61 + >=app-emulation/libvirt-1.2.6:=
62 + >=dev-libs/glib-2.38.0:2
63 + introspection? ( >=dev-libs/gobject-introspection-0.10.8:= )
64 + python? ( ${PYTHON_DEPS} )
65 +"
66 +DEPEND="${RDEPEND}
67 + dev-util/gtk-doc-am
68 + >=dev-util/intltool-0.35.0
69 + virtual/pkgconfig
70 + vala? ( $(vala_depend) )
71 +"
72 +
73 +pkg_setup() {
74 + use python && python-single-r1_pkg_setup
75 +}
76 +
77 +src_configure() {
78 + gnome2_src_configure \
79 + --disable-test-coverage \
80 + --disable-static \
81 + $(use_enable introspection) \
82 + $(use_enable vala) \
83 + $(use_with python)
84 +}