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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5039615808D for ; Tue, 19 Apr 2022 23:40:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53FFAE0809; Tue, 19 Apr 2022 23:40:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3478E0809 for ; Tue, 19 Apr 2022 23:40:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C320B341AC4 for ; Tue, 19 Apr 2022 23:40:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2AB70287 for ; Tue, 19 Apr 2022 23:40:50 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1650411640.6d39b6f4e41e93ff8089fad5a13a1ec01d800a56.sam@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: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6d39b6f4e41e93ff8089fad5a13a1ec01d800a56 X-VCS-Branch: master Date: Tue, 19 Apr 2022 23:40:50 +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: 95109e57-dcbd-4e97-9ce6-3728f37cd198 X-Archives-Hash: 3e92d65a7283314b40a32115bd8dd6e5 commit: 6d39b6f4e41e93ff8089fad5a13a1ec01d800a56 Author: Sam James gentoo org> AuthorDate: Tue Apr 19 23:40:15 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 19 23:40:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d39b6f4 dev-util/indent: avoid maintainer mode Closes: https://bugs.gentoo.org/839561 Signed-off-by: Sam James gentoo.org> dev-util/indent/indent-2.2.12.ebuild | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/dev-util/indent/indent-2.2.12.ebuild b/dev-util/indent/indent-2.2.12.ebuild index 1518ed284af8..07e8341f0b32 100644 --- a/dev-util/indent/indent-2.2.12.ebuild +++ b/dev-util/indent/indent-2.2.12.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit strip-linguas +inherit autotools strip-linguas DESCRIPTION="Indent program source files" HOMEPAGE="https://www.gnu.org/software/indent/" @@ -14,17 +14,16 @@ 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" -BDEPEND=" - app-text/texi2html - nls? ( sys-devel/gettext ) -" -RDEPEND=" - nls? ( virtual/libintl ) -" +BDEPEND="app-text/texi2html + nls? ( sys-devel/gettext )" +DEPEND="nls? ( virtual/libintl )" +RDEPEND="${DEPEND}" src_prepare() { default + sed -i -e '/AM_CFLAGS/s:-Werror::g' src/Makefile.{am,in} || die + eautoreconf } src_configure() {