Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/libvirt-glib: libvirt-glib-0.1.8.ebuild ChangeLog
Date: Fri, 02 May 2014 09:12:54
Message-Id: 20140502091249.70A822004C@flycatcher.gentoo.org
1 pacho 14/05/02 09:12:49
2
3 Modified: ChangeLog
4 Added: libvirt-glib-0.1.8.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.27 app-emulation/libvirt-glib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt-glib/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 23 Apr 2014 20:47:29 -0000 1.26
24 +++ ChangeLog 2 May 2014 09:12:49 -0000 1.27
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-emulation/libvirt-glib
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt-glib/ChangeLog,v 1.26 2014/04/23 20:47:29 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt-glib/ChangeLog,v 1.27 2014/05/02 09:12:49 pacho Exp $
30 +
31 +*libvirt-glib-0.1.8 (02 May 2014)
32 +
33 + 02 May 2014; Pacho Ramos <pacho@g.o> +libvirt-glib-0.1.8.ebuild:
34 + Version bump
35
36 23 Apr 2014; Pacho Ramos <pacho@g.o> -libvirt-glib-0.1.6.ebuild:
37 Drop old
38
39
40
41 1.1 app-emulation/libvirt-glib/libvirt-glib-0.1.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/libvirt-glib-0.1.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/libvirt-glib-0.1.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libvirt-glib-0.1.8.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt-glib/libvirt-glib-0.1.8.ebuild,v 1.1 2014/05/02 09:12:49 pacho Exp $
51
52 EAPI=5
53 GCONF_DEBUG="no"
54 GNOME2_LA_PUNT="yes"
55 VALA_MIN_API_VERSION="0.14"
56 PYTHON_COMPAT=( python{2_6,2_7} )
57
58 inherit gnome2 python-single-r1 vala
59
60 DESCRIPTION="GLib and GObject mappings for libvirt"
61 HOMEPAGE="http://libvirt.org/git/?p=libvirt-glib.git"
62 SRC_URI="ftp://libvirt.org/libvirt/glib/${P}.tar.gz"
63
64 LICENSE="LGPL-2.1"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="+introspection python +vala"
68 REQUIRED_USE="
69 python? ( ${PYTHON_REQUIRED_USE} )
70 vala? ( introspection )
71 "
72
73 # https://bugzilla.redhat.com/show_bug.cgi?id=1093633
74 RESTRICT="test"
75
76 RDEPEND="
77 dev-libs/libxml2:2
78 >=app-emulation/libvirt-0.9.10:=
79 >=dev-libs/glib-2.38.0:2
80 introspection? ( >=dev-libs/gobject-introspection-0.10.8:= )
81 python? ( ${PYTHON_DEPS} )
82 "
83 DEPEND="${RDEPEND}
84 dev-util/gtk-doc-am
85 >=dev-util/intltool-0.35.0
86 virtual/pkgconfig
87 vala? ( $(vala_depend) )
88 "
89
90 pkg_setup() {
91 use python && python-single-r1_pkg_setup
92 }
93
94 src_configure() {
95 gnome2_src_configure \
96 --disable-test-coverage \
97 --disable-static \
98 $(use_enable introspection) \
99 $(use_enable vala) \
100 $(use_with python)
101 }
102
103 src_compile() {
104 # https://bugzilla.redhat.com/show_bug.cgi?id=1093631
105 if use vala; then
106 MAKEOPTS="${MAKEOPTS} -j1" gnome2_src_compile
107 else
108 gnome2_src_compile
109 fi
110 }