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 BE5B3158086 for ; Wed, 20 Oct 2021 01:14:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E005FE0843; Wed, 20 Oct 2021 01:14:34 +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 C43ECE0843 for ; Wed, 20 Oct 2021 01:14:34 +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 0D9C834394F for ; Wed, 20 Oct 2021 01:14:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 319A6165 for ; Wed, 20 Oct 2021 01:14:31 +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: <1634692224.03820a4c8bea239c7c4b67b9dbbb1b382f154009.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxterminal/ X-VCS-Repository: repo/gentoo X-VCS-Files: lxde-base/lxterminal/lxterminal-0.4.0.ebuild X-VCS-Directories: lxde-base/lxterminal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 03820a4c8bea239c7c4b67b9dbbb1b382f154009 X-VCS-Branch: master Date: Wed, 20 Oct 2021 01:14:31 +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: e2e80f12-2885-43c4-8244-e09b74e73155 X-Archives-Hash: e3dc932e8b8238ad3d32f688e6d0b329 commit: 03820a4c8bea239c7c4b67b9dbbb1b382f154009 Author: Jay Faulkner jvf cc> AuthorDate: Fri Oct 15 04:43:50 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 20 01:10:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03820a4c lxde-base/lxterminal: fix maintainer mode / automake mismatch Per the instructions in the QA project wiki page, I removed the aclocal.m4 file from the upstream package during the build phase. That resulted in a successful compilation of the package. Closes: https://bugs.gentoo.org/818211 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Jay Faulkner jvf.cc> Closes: https://github.com/gentoo/gentoo/pull/22582 Signed-off-by: Sam James gentoo.org> lxde-base/lxterminal/lxterminal-0.4.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lxde-base/lxterminal/lxterminal-0.4.0.ebuild b/lxde-base/lxterminal/lxterminal-0.4.0.ebuild index ac2acb53b0e..14c03d4a6cf 100644 --- a/lxde-base/lxterminal/lxterminal-0.4.0.ebuild +++ b/lxde-base/lxterminal/lxterminal-0.4.0.ebuild @@ -31,6 +31,9 @@ BDEPEND=" src_prepare() { xdg_src_prepare + # Avoid maintainer mode, bug #818211 + rm aclocal.m4 || die + eautoreconf }