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 2957A1382C5 for ; Sun, 4 Apr 2021 13:56:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34C6EE093B; Sun, 4 Apr 2021 13:56:02 +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 11F68E093B for ; Sun, 4 Apr 2021 13:56:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D062533F698 for ; Sun, 4 Apr 2021 13:56:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 078FA63E for ; Sun, 4 Apr 2021 13:55:59 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1617544280.c9277ca4d2f7d80f612f031cc09141cd7201729d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/libgnomecanvas/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-base/libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild X-VCS-Directories: gnome-base/libgnomecanvas/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c9277ca4d2f7d80f612f031cc09141cd7201729d X-VCS-Branch: master Date: Sun, 4 Apr 2021 13:55:59 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ee73e5a1-f181-4418-a29f-6130f3bed0f4 X-Archives-Hash: 3301610a8f407e242e62c7593ca303da commit: c9277ca4d2f7d80f612f031cc09141cd7201729d Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Mar 30 19:41:28 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 4 13:51:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9277ca4 gnome-base/libgnomecanvas: EAPI-7 bump, drop eutils The same files are installed in the same locations and tests pass. Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> .../libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/gnome-base/libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild b/gnome-base/libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild index 0d55b4313bc..5a262441623 100644 --- a/gnome-base/libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild +++ b/gnome-base/libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild @@ -1,12 +1,10 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" -GCONF_DEBUG="no" -GNOME_TARBALL_SUFFIX="bz2" -GNOME2_LA_PUNT="yes" +EAPI=7 -inherit eutils gnome2 multilib multilib-minimal virtualx +GNOME_TARBALL_SUFFIX="bz2" +inherit gnome2 multilib-minimal virtualx DESCRIPTION="The Gnome 2 Canvas library" HOMEPAGE="https://library.gnome.org/devel/libgnomecanvas/stable/" @@ -22,7 +20,8 @@ RDEPEND=">=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] >=x11-libs/pango-1.36.3[${MULTILIB_USEDEP}] glade? ( >=gnome-base/libglade-2.6.4-r1:2.0[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" >=dev-lang/perl-5 sys-devel/gettext dev-util/glib-utils @@ -54,11 +53,6 @@ multilib_src_install() { gnome2_src_install } -multilib_src_install_all() { - DOCS="AUTHORS ChangeLog NEWS README" - einstalldocs -} - multilib_src_test() { - Xemake check || die "Test phase failed" + virtx emake check }