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 D9C501382C5 for ; Tue, 2 Feb 2021 19:42:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1602EE0937; Tue, 2 Feb 2021 19:42:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 F3A91E0936 for ; Tue, 2 Feb 2021 19:42: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 AD2A83417D0 for ; Tue, 2 Feb 2021 19:42:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A91A4BC for ; Tue, 2 Feb 2021 19:42:00 +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: <1612294821.164bace0ae36f029e1a2ac2d257c799d12bf5875.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/indent/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/indent/indent-2.2.12.ebuild X-VCS-Directories: dev-util/indent/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 164bace0ae36f029e1a2ac2d257c799d12bf5875 X-VCS-Branch: master Date: Tue, 2 Feb 2021 19:42: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f2f9450f-d8df-4dcf-8f7a-e9aae78442b2 X-Archives-Hash: e1c49267ff2930989ee9f9d8d1a96819 commit: 164bace0ae36f029e1a2ac2d257c799d12bf5875 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Feb 2 19:13:46 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Feb 2 19:40:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164bace0 dev-util/indent: EAPI-7 bump, swap out eutils with l10n.eclass Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-util/indent/indent-2.2.12.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-util/indent/indent-2.2.12.ebuild b/dev-util/indent/indent-2.2.12.ebuild index ab0455d550a..a3c8834d1a8 100644 --- a/dev-util/indent/indent-2.2.12.ebuild +++ b/dev-util/indent/indent-2.2.12.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit eutils +EAPI=7 + +inherit l10n DESCRIPTION="Indent program source files" HOMEPAGE="https://www.gnu.org/software/indent/" @@ -13,9 +14,9 @@ SLOT="0" KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" IUSE="nls" -DEPEND=" - nls? ( sys-devel/gettext ) +BDEPEND=" app-text/texi2html + nls? ( sys-devel/gettext ) " RDEPEND=" nls? ( virtual/libintl ) @@ -23,7 +24,6 @@ RDEPEND=" src_prepare() { default - sed -i -e '/AM_CFLAGS/s:-Werror::g' src/Makefile.{am,in} || die } @@ -47,5 +47,5 @@ src_test() { src_install() { # htmldir as set in configure is ignored in doc/Makefile* emake DESTDIR="${D}" htmldir="${EPREFIX}/usr/share/doc/${PF}/html" install - dodoc AUTHORS NEWS README.md ChangeLog ChangeLog-1990 ChangeLog-1998 ChangeLog-2001 + dodoc AUTHORS NEWS README.md ChangeLog{,-1990,-1998,-2001} }