From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 82BCA138330 for ; Sun, 27 May 2018 17:49:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78061E088B; Sun, 27 May 2018 17:49:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 56B5DE088B for ; Sun, 27 May 2018 17:49:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5D76335CA1 for ; Sun, 27 May 2018 17:49:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C1732AC for ; Sun, 27 May 2018 17:49:00 +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: <1527443322.8f7ed113b621136739c3733f63f17e5fb010d756.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-calendar/ X-VCS-Repository: proj/gnome X-VCS-Files: gnome-extra/gnome-calendar/gnome-calendar-3.26.4.ebuild X-VCS-Directories: gnome-extra/gnome-calendar/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 8f7ed113b621136739c3733f63f17e5fb010d756 X-VCS-Branch: master Date: Sun, 27 May 2018 17:49:00 +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: 55be7072-a335-4557-b1fd-f82a3c12bcf9 X-Archives-Hash: f5c887ab893ef4b9f3fa76703e4b3b98 commit: 8f7ed113b621136739c3733f63f17e5fb010d756 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun May 27 15:07:34 2018 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun May 27 17:48:42 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=8f7ed113 gnome-extra/gnome-calendar: fix DEPENDs, add src_test Add meson at it requires a newer version than eclass sets. Set gettext version and i18n requires this to work. Unittests require X due to using dbus autolaunch. Package-Manager: Portage-2.3.40, Repoman-2.3.9 Manifest-Sign-Key: 0x5A56C8CD0C13248A gnome-extra/gnome-calendar/gnome-calendar-3.26.4.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnome-extra/gnome-calendar/gnome-calendar-3.26.4.ebuild b/gnome-extra/gnome-calendar/gnome-calendar-3.26.4.ebuild index 1aaa6407..5234fa4c 100644 --- a/gnome-extra/gnome-calendar/gnome-calendar-3.26.4.ebuild +++ b/gnome-extra/gnome-calendar/gnome-calendar-3.26.4.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit gnome-meson +inherit gnome-meson virtualx DESCRIPTION="Manage your online calendars with simple and modern interface" HOMEPAGE="https://wiki.gnome.org/Apps/Calendar" @@ -11,6 +11,7 @@ LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" + # >=libical-1.0.1 for https://bugzilla.gnome.org/show_bug.cgi?id=751244 # FIXME add docs RDEPEND=" @@ -25,9 +26,11 @@ RDEPEND=" DEPEND="${RDEPEND} dev-libs/appstream-glib dev-util/gdbus-codegen - >=dev-util/intltool-0.40.6 - sys-devel/gettext + >=dev-util/meson-0.42.0 + >=sys-devel/gettext-0.19.8 virtual/pkgconfig " -# FIXME: test fails +src_test() { + virtx meson_src_test +}