Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libosinfo: ChangeLog libosinfo-0.2.4.ebuild
Date: Sun, 24 Feb 2013 21:59:38
Message-Id: 20130224215934.25C982171C@flycatcher.gentoo.org
1 cardoe 13/02/24 21:59:34
2
3 Modified: ChangeLog
4 Added: libosinfo-0.2.4.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key D7DFA8D318FA9AEF!)
9
10 Revision Changes Path
11 1.23 sys-libs/libosinfo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libosinfo/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libosinfo/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libosinfo/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 5 Feb 2013 20:02:30 -0000 1.22
24 +++ ChangeLog 24 Feb 2013 21:59:34 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-libs/libosinfo
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/ChangeLog,v 1.22 2013/02/05 20:02:30 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/ChangeLog,v 1.23 2013/02/24 21:59:34 cardoe Exp $
30 +
31 +*libosinfo-0.2.4 (24 Feb 2013)
32 +
33 + 24 Feb 2013; Doug Goldstein <cardoe@g.o> +libosinfo-0.2.4.ebuild:
34 + Version bump
35
36 *libosinfo-0.2.3 (05 Feb 2013)
37
38
39
40
41 1.1 sys-libs/libosinfo/libosinfo-0.2.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libosinfo/libosinfo-0.2.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libosinfo/libosinfo-0.2.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libosinfo-0.2.4.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/libosinfo-0.2.4.ebuild,v 1.1 2013/02/24 21:59:34 cardoe Exp $
51
52 EAPI=5
53 VALA_MIN_API_VERSION="0.16"
54 VALA_USE_DEPEND="vapigen"
55
56 inherit eutils toolchain-funcs vala udev
57
58 DESCRIPTION="GObject library for managing information about real and virtual OSes"
59 HOMEPAGE="http://fedorahosted.org/libosinfo/"
60 SRC_URI="http://fedorahosted.org/releases/${PN:0:1}/${PN:1:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2 LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="+introspection +vala test"
66
67 REQUIRED_USE="vala? ( introspection )"
68
69 RDEPEND=">=dev-libs/glib-2:2
70 >=dev-libs/libxslt-1.0.0:=
71 dev-libs/libxml2:=
72 net-libs/libsoup:2.4
73 net-libs/libsoup-gnome:2.4
74 introspection? ( >=dev-libs/gobject-introspection-0.9.0:= )"
75 DEPEND="${RDEPEND}
76 dev-util/gtk-doc-am
77 virtual/pkgconfig
78 test? ( dev-libs/check )
79 vala? ( $(vala_depend) )"
80
81 src_configure() {
82 # --enable-udev is only for rules.d file install
83 econf \
84 --disable-static \
85 $(use_enable test tests) \
86 $(use_enable introspection) \
87 $(use_enable vala) \
88 --enable-udev \
89 --disable-coverage \
90 --with-udev-rulesdir="$(udev_get_udevdir)"/rules.d \
91 --with-html-dir=/usr/share/doc/${PF}/html
92 }
93
94 src_install() {
95 default
96 prune_libtool_files
97 }