Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-software/
Date: Fri, 27 Nov 2015 13:57:15
Message-Id: 1448632601.b0de44ddbba2b8677eb23704672a0fcd7bd6df06.eva@gentoo
1 commit: b0de44ddbba2b8677eb23704672a0fcd7bd6df06
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 26 22:54:01 2015 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 27 13:56:41 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=b0de44dd
7
8 gnome-extra/gnome-software: version bump to 3.18.3
9
10 .../gnome-software/gnome-software-3.18.3.ebuild | 63 ++++++++++++++++++++++
11 1 file changed, 63 insertions(+)
12
13 diff --git a/gnome-extra/gnome-software/gnome-software-3.18.3.ebuild b/gnome-extra/gnome-software/gnome-software-3.18.3.ebuild
14 new file mode 100644
15 index 0000000..80fa2b8
16 --- /dev/null
17 +++ b/gnome-extra/gnome-software/gnome-software-3.18.3.ebuild
18 @@ -0,0 +1,63 @@
19 +# Copyright 1999-2015 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI="5"
24 +GCONF_DEBUG="no"
25 +PYTHON_COMPAT=( python2_7 )
26 +
27 +inherit gnome2 python-any-r1 virtualx
28 +
29 +DESCRIPTION="Gnome install & update software"
30 +HOMEPAGE="http://wiki.gnome.org/Apps/Software"
31 +
32 +LICENSE="GPL-2+"
33 +SLOT="0"
34 +KEYWORDS="~amd64"
35 +IUSE="test"
36 +
37 +RDEPEND="
38 + >=app-admin/packagekit-base-1.0.9
39 + dev-db/sqlite:3
40 + >=dev-libs/appstream-glib-0.5.1:0
41 + >=dev-libs/glib-2.45.8:2
42 + >=gnome-base/gnome-desktop-3.17.92:3=
43 + >=gnome-base/gsettings-desktop-schemas-3.11.5
44 + net-libs/libsoup:2.4
45 + sys-auth/polkit
46 + >=x11-libs/gtk+-3.16:3
47 +"
48 +DEPEND="${RDEPEND}
49 + ${PYTHON_DEPS}
50 + app-text/docbook-xml-dtd:4.2
51 + dev-libs/libxslt
52 + >=dev-util/intltool-0.35
53 + virtual/pkgconfig
54 + test? ( dev-util/dogtail )
55 +"
56 +# test? ( dev-util/valgrind )
57 +
58 +pkg_setup() {
59 + python-any-r1_pkg_setup
60 +}
61 +
62 +src_prepare() {
63 + # valgrind fails with SIGTRAP
64 + sed -e 's/TESTS = .*/TESTS =/' \
65 + -i "${S}"/src/Makefile.{am,in} || die
66 +
67 + gnome2_src_prepare
68 +}
69 +
70 +src_configure() {
71 + # FIXME: investigate limba and firmware update support
72 + gnome2_src_configure \
73 + --enable-man \
74 + --disable-firmware \
75 + --disable-limba \
76 + $(use_enable test dogtail)
77 +}
78 +
79 +src_test() {
80 + Xemake check TESTS_ENVIRONMENT="dbus-run-session"
81 +}