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 497CA158086 for ; Sat, 16 Oct 2021 13:59:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A13F8E0827; Sat, 16 Oct 2021 13:59:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 89A55E0827 for ; Sat, 16 Oct 2021 13:59:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B48713430EE for ; Sat, 16 Oct 2021 13:59:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F25C0166 for ; Sat, 16 Oct 2021 13:59:04 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1634392719.c4233a245da859098b8a92a7ea0fa2573bb387c5.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/regexxer/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/regexxer/regexxer-0.10-r1.ebuild X-VCS-Directories: dev-util/regexxer/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c4233a245da859098b8a92a7ea0fa2573bb387c5 X-VCS-Branch: master Date: Sat, 16 Oct 2021 13:59:04 +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: b528dbfc-787a-4672-9472-10d3f7628ac4 X-Archives-Hash: 87b6a7ae2a11b56976289685bbccff4f commit: c4233a245da859098b8a92a7ea0fa2573bb387c5 Author: David Seifert gentoo org> AuthorDate: Sat Oct 16 13:58:39 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Oct 16 13:58:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4233a24 dev-util/regexxer: port to EAPI 8 Signed-off-by: David Seifert gentoo.org> dev-util/regexxer/regexxer-0.10-r1.ebuild | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/dev-util/regexxer/regexxer-0.10-r1.ebuild b/dev-util/regexxer/regexxer-0.10-r1.ebuild index 21acdbac8c5..c4f07a75c43 100644 --- a/dev-util/regexxer/regexxer-0.10-r1.ebuild +++ b/dev-util/regexxer/regexxer-0.10-r1.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -GCONF_DEBUG=no +EAPI=7 -inherit autotools epatch flag-o-matic gnome2 +inherit autotools gnome2 DESCRIPTION="An interactive tool for performing search and replace operations" HOMEPAGE="http://regexxer.sourceforge.net/" @@ -14,19 +13,22 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~ppc x86" -RDEPEND=">=dev-cpp/glibmm-2.28:2 +RDEPEND=" + dev-cpp/glibmm:2 dev-cpp/gtkmm:3.0 dev-cpp/gtksourceviewmm:3.0" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/intltool virtual/pkgconfig sys-devel/gettext" -src_prepare() { - append-cxxflags -std=c++11 +PATCHES=( + "${FILESDIR}"/${P}-glib-2.32.patch + "${FILESDIR}"/${P}-sandbox.patch +) - epatch "${FILESDIR}"/${P}-glib-2.32.patch - epatch "${FILESDIR}"/${P}-sandbox.patch +src_prepare() { + default eautoreconf - gnome2_src_prepare }