From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 107031384B4 for ; Fri, 27 Nov 2015 13:57:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7678F21C0FC; Fri, 27 Nov 2015 13:57:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1672321C0EB for ; Fri, 27 Nov 2015 13:57:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1138D340766 for ; Fri, 27 Nov 2015 13:57:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 981CEB6E for ; Fri, 27 Nov 2015 13:57:03 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1448632601.b0de44ddbba2b8677eb23704672a0fcd7bd6df06.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-software/ X-VCS-Repository: proj/gnome X-VCS-Files: gnome-extra/gnome-software/gnome-software-3.18.3.ebuild X-VCS-Directories: gnome-extra/gnome-software/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: b0de44ddbba2b8677eb23704672a0fcd7bd6df06 X-VCS-Branch: master Date: Fri, 27 Nov 2015 13:57:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: aae3cded-6656-4dfb-9bc1-c6c8df98271a X-Archives-Hash: 4b84d30bfb4eb8a8e3957fd90329143f commit: b0de44ddbba2b8677eb23704672a0fcd7bd6df06 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Thu Nov 26 22:54:01 2015 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Fri Nov 27 13:56:41 2015 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=b0de44dd gnome-extra/gnome-software: version bump to 3.18.3 .../gnome-software/gnome-software-3.18.3.ebuild | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/gnome-extra/gnome-software/gnome-software-3.18.3.ebuild b/gnome-extra/gnome-software/gnome-software-3.18.3.ebuild new file mode 100644 index 0000000..80fa2b8 --- /dev/null +++ b/gnome-extra/gnome-software/gnome-software-3.18.3.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +GCONF_DEBUG="no" +PYTHON_COMPAT=( python2_7 ) + +inherit gnome2 python-any-r1 virtualx + +DESCRIPTION="Gnome install & update software" +HOMEPAGE="http://wiki.gnome.org/Apps/Software" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND=" + >=app-admin/packagekit-base-1.0.9 + dev-db/sqlite:3 + >=dev-libs/appstream-glib-0.5.1:0 + >=dev-libs/glib-2.45.8:2 + >=gnome-base/gnome-desktop-3.17.92:3= + >=gnome-base/gsettings-desktop-schemas-3.11.5 + net-libs/libsoup:2.4 + sys-auth/polkit + >=x11-libs/gtk+-3.16:3 +" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + app-text/docbook-xml-dtd:4.2 + dev-libs/libxslt + >=dev-util/intltool-0.35 + virtual/pkgconfig + test? ( dev-util/dogtail ) +" +# test? ( dev-util/valgrind ) + +pkg_setup() { + python-any-r1_pkg_setup +} + +src_prepare() { + # valgrind fails with SIGTRAP + sed -e 's/TESTS = .*/TESTS =/' \ + -i "${S}"/src/Makefile.{am,in} || die + + gnome2_src_prepare +} + +src_configure() { + # FIXME: investigate limba and firmware update support + gnome2_src_configure \ + --enable-man \ + --disable-firmware \ + --disable-limba \ + $(use_enable test dogtail) +} + +src_test() { + Xemake check TESTS_ENVIRONMENT="dbus-run-session" +}