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 D1C521382C5 for ; Sun, 4 Apr 2021 13:56:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01DCBE0935; Sun, 4 Apr 2021 13:56:01 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D744CE0935 for ; Sun, 4 Apr 2021 13:56:01 +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 827B733E695 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 D040946C for ; Sun, 4 Apr 2021 13:55:58 +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.d83d6cf66058c521f8c7e7fc53e6acfdd970739f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/gtksourceview/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/gtksourceview/gtksourceview-2.10.5-r3.ebuild X-VCS-Directories: x11-libs/gtksourceview/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d83d6cf66058c521f8c7e7fc53e6acfdd970739f X-VCS-Branch: master Date: Sun, 4 Apr 2021 13:55:58 +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: fd7fdb9c-b97b-499d-a1cd-1602fd975837 X-Archives-Hash: f3fd3acb1497af85d5f00617eecf4ffc commit: d83d6cf66058c521f8c7e7fc53e6acfdd970739f Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Mar 30 19:09:53 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=d83d6cf6 x11-libs/gtksourceview: 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> .../gtksourceview/gtksourceview-2.10.5-r3.ebuild | 27 +++++++++++----------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/x11-libs/gtksourceview/gtksourceview-2.10.5-r3.ebuild b/x11-libs/gtksourceview/gtksourceview-2.10.5-r3.ebuild index 85b4ce8dd56..48c23be4782 100644 --- a/x11-libs/gtksourceview/gtksourceview-2.10.5-r3.ebuild +++ b/x11-libs/gtksourceview/gtksourceview-2.10.5-r3.ebuild @@ -1,14 +1,12 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" -GNOME_TARBALL_SUFFIX="bz2" +EAPI=7 -inherit eutils gnome2 virtualx +GNOME_TARBALL_SUFFIX="bz2" +inherit gnome2 virtualx -DESCRIPTION="A text widget implementing syntax highlighting and other features" +DESCRIPTION="Text widget implementing syntax highlighting and other features" HOMEPAGE="https://www.gnome.org/" LICENSE="GPL-2+ LGPL-2.1+" @@ -21,7 +19,8 @@ RDEPEND=" >=dev-libs/libxml2-2.5:2 >=dev-libs/glib-2.14:2 " -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/glib-utils dev-util/gtk-doc-am >=dev-util/intltool-0.40 @@ -29,19 +28,19 @@ DEPEND="${RDEPEND} virtual/pkgconfig " +DOCS=( AUTHORS ChangeLog HACKING MAINTAINERS NEWS README ) + +# Patch from 3.x for bug #394925 +PATCHES=( "${FILESDIR}/${P}-G_CONST_RETURN.patch" ) + src_prepare() { - DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README" + gnome2_src_prepare # Skip broken test until upstream bug #621383 is solved sed -i -e "/guess-language/d" tests/test-languagemanager.c || die # The same for another broken test, upstream bug #631214 sed -i -e "/get-language/d" tests/test-languagemanager.c || die - - # Patch from 3.x for bug #394925 - epatch "${FILESDIR}/${P}-G_CONST_RETURN.patch" - - gnome2_src_prepare } src_configure() { @@ -49,7 +48,7 @@ src_configure() { } src_test() { - Xemake check + virtx emake check } src_install() {