Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libosinfo/
Date: Tue, 19 Feb 2019 21:39:25
Message-Id: 1550612202.09539eb735196c25f9871b2378bfc2c02428f6dd.leio@gentoo
1 commit: 09539eb735196c25f9871b2378bfc2c02428f6dd
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 19 21:36:42 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 19 21:36:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09539eb7
7
8 sys-libs/libosinfo: bump to 1.3.0
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 sys-libs/libosinfo/Manifest | 1 +
14 sys-libs/libosinfo/libosinfo-1.3.0.ebuild | 62 +++++++++++++++++++++++++++++++
15 2 files changed, 63 insertions(+)
16
17 diff --git a/sys-libs/libosinfo/Manifest b/sys-libs/libosinfo/Manifest
18 index 0841989acda..1aa0a38c917 100644
19 --- a/sys-libs/libosinfo/Manifest
20 +++ b/sys-libs/libosinfo/Manifest
21 @@ -1 +1,2 @@
22 DIST libosinfo-1.2.0.tar.gz 916787 BLAKE2B 652910ca1e70071d88adb771e458f0c19159a772eec1178c94ea5f65c5045bb00e4b1354b1ce4229d28821b6b1557424e419c1505b721883731a36b0761a1b5d SHA512 d98a107a08c5e2cddd746631b3ceac4278184ea5561ad2372d772b8ae253dc1363f217778d105387e5b5c5e86be9607668aa94929ad9b4ee48ab7abf50fb6a01
23 +DIST libosinfo-1.3.0.tar.gz 977090 BLAKE2B fdfe29dbf01e00608374baf2fb6b5257dff5eb8870375769c572b4dacf2bd7f6e1907083e6c36bfb1a76e9e994bb19b093c6fc63ce8e7170ab8073f6d53c573b SHA512 652f2927e901afe9772d4f28be5bb59802cf149c6c8eea4256a999f5012bfaaac81b51c56a94b32c82ef3462ff1f26baf84bf9329e5b1136e2b49ed4a0658982
24
25 diff --git a/sys-libs/libosinfo/libosinfo-1.3.0.ebuild b/sys-libs/libosinfo/libosinfo-1.3.0.ebuild
26 new file mode 100644
27 index 00000000000..277498d8787
28 --- /dev/null
29 +++ b/sys-libs/libosinfo/libosinfo-1.3.0.ebuild
30 @@ -0,0 +1,62 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +VALA_USE_DEPEND="vapigen"
36 +
37 +inherit gnome2 udev vala
38 +
39 +DESCRIPTION="GObject library for managing information about real and virtual OSes"
40 +HOMEPAGE="https://libosinfo.org/"
41 +SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.gz"
42 +
43 +LICENSE="GPL-2+ LGPL-2.1+"
44 +SLOT="0"
45 +
46 +IUSE="+introspection +vala test"
47 +REQUIRED_USE="vala? ( introspection )"
48 +
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
50 +
51 +# Unsure about osinfo-db-tools rdep, but at least fedora does it too
52 +RDEPEND="
53 + >=dev-libs/glib-2.38.0:2
54 + >=dev-libs/libxml2-2.6.0
55 + >=dev-libs/libxslt-1.0.0
56 + sys-apps/hwids[pci,usb]
57 + sys-apps/osinfo-db-tools
58 + sys-apps/osinfo-db
59 + introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
60 +"
61 +# perl dep is for pod2man, and configure.ac checks for it too now
62 +# Tests can use net-misc/curl, but they are automatically skipped if curl is not found, and
63 +# if it is found, then those tests are skipped at runtime if LIBOSINFO_NETWORK_TESTS is unset.
64 +# Due to potential network-sandbox we aren't enabling them (and one of them fails at 1.2.0).
65 +DEPEND="${RDEPEND}
66 + dev-lang/perl
67 + dev-libs/gobject-introspection-common
68 + dev-util/glib-utils
69 + >=dev-util/gtk-doc-am-1.10
70 + >=dev-util/intltool-0.40.0
71 + virtual/pkgconfig
72 + test? (
73 + >=sys-apps/osinfo-db-20180612
74 + )
75 + vala? ( $(vala_depend) )
76 +"
77 +
78 +src_prepare() {
79 + gnome2_src_prepare
80 + use vala && vala_src_prepare
81 +}
82 +
83 +src_configure() {
84 + gnome2_src_configure \
85 + --with-usb-ids-path=/usr/share/misc/usb.ids \
86 + --with-pci-ids-path=/usr/share/misc/pci.ids \
87 + --disable-static \
88 + $(use_enable test tests) \
89 + $(use_enable introspection) \
90 + $(use_enable vala) \
91 + --disable-coverage
92 +}