Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libosinfo/
Date: Sun, 10 Sep 2017 10:50:37
Message-Id: 1505040631.6ab1bbf2fa56ac6c3f2d020bae27087ed8f4258e.eva@gentoo
1 commit: 6ab1bbf2fa56ac6c3f2d020bae27087ed8f4258e
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 10 10:50:08 2017 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 10 10:50:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ab1bbf2
7
8 sys-libs/libosinfo: restore 1.0.0 for ~sparc dependency tree
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 sys-libs/libosinfo/libosinfo-1.0.0.ebuild | 49 +++++++++++++++++++++++++++++++
13 1 file changed, 49 insertions(+)
14
15 diff --git a/sys-libs/libosinfo/libosinfo-1.0.0.ebuild b/sys-libs/libosinfo/libosinfo-1.0.0.ebuild
16 new file mode 100644
17 index 00000000000..97da310d330
18 --- /dev/null
19 +++ b/sys-libs/libosinfo/libosinfo-1.0.0.ebuild
20 @@ -0,0 +1,49 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +VALA_USE_DEPEND="vapigen"
26 +
27 +inherit gnome2 udev vala
28 +
29 +DESCRIPTION="GObject library for managing information about real and virtual OSes"
30 +HOMEPAGE="http://libosinfo.org/"
31 +SRC_URI="http://fedorahosted.org/releases/${PN:0:1}/${PN:1:1}/${PN}/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2 LGPL-2.1"
34 +SLOT="0"
35 +
36 +IUSE="+introspection +vala test"
37 +REQUIRED_USE="vala? ( introspection )"
38 +
39 +KEYWORDS="~sparc"
40 +
41 +RDEPEND="
42 + >=dev-libs/glib-2.36.0:2
43 + >=dev-libs/libxslt-1.0.0:=
44 + dev-libs/libxml2:=
45 + >=net-libs/libsoup-2.42:2.4
46 + sys-apps/hwids
47 + introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
48 +"
49 +DEPEND="${RDEPEND}
50 + dev-libs/gobject-introspection-common
51 + >=dev-util/gtk-doc-am-1.10
52 + virtual/pkgconfig
53 + test? ( dev-libs/check )
54 + vala? ( $(vala_depend) )
55 +"
56 +
57 +src_prepare() {
58 + gnome2_src_prepare
59 + use vala && vala_src_prepare
60 +}
61 +
62 +src_configure() {
63 + gnome2_src_configure \
64 + --disable-static \
65 + $(use_enable test tests) \
66 + $(use_enable introspection) \
67 + $(use_enable vala) \
68 + --disable-coverage
69 +}