From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-995012-garchives=archives.gentoo.org@lists.gentoo.org> 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 910801382C5 for <garchives@archives.gentoo.org>; Thu, 4 Jan 2018 17:18:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9953BE095D; Thu, 4 Jan 2018 17:18:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 75955E0958 for <gentoo-commits@lists.gentoo.org>; Thu, 4 Jan 2018 17:18:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 97513335C39 for <gentoo-commits@lists.gentoo.org>; Thu, 4 Jan 2018 17:18:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D89F1A4 for <gentoo-commits@lists.gentoo.org>; Thu, 4 Jan 2018 17:18:55 +0000 (UTC) From: "Mart Raudsepp" <leio@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" <leio@gentoo.org> Message-ID: <1515086280.69dc05bada5cb4272c7af647306a68bbd9820bc0.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/wxGTK/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/wxGTK/wxGTK-3.0.3-r300.ebuild X-VCS-Directories: x11-libs/wxGTK/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 69dc05bada5cb4272c7af647306a68bbd9820bc0 X-VCS-Branch: master Date: Thu, 4 Jan 2018 17:18:55 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 76c7e18a-c466-492f-9c4d-3c3a28587f7f X-Archives-Hash: ca0a14d686665f6674e3833bdae86c3f commit: 69dc05bada5cb4272c7af647306a68bbd9820bc0 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org> AuthorDate: Thu Jan 4 02:26:39 2018 +0000 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org> CommitDate: Thu Jan 4 17:18:00 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69dc05ba x11-libs/wxGTK: don't eautoreconf or rename configure.in files wxWidgets doesn't use full autotools (at least not automake), and it maintains an autoconf'ed configure script inside its code repository, which gets (usually) updated after each configure.in update. Because we don't eautoreconf to see a slightly dumb warning about configure.in vs configure.ac, remove the renaming, as the code is buggy and breaks on some non-default PORTAGE_TMPDIR values. I don't intend to ever add back an eautoreconf if at all possible, but if it is, make sure such renaming isn't buggy like this. Also note that other Makefile.in's seem to refer to the preset configure.in's by name (with .in ending), so renaming them is probably wrong as well via such a global "find" approach, at least without patching the references too. The eautoreconf and buggy renaming was already removed on bump for 3.0 SLOT. Closes: https://bugs.gentoo.org/614982 Package-Manager: Portage-2.3.19, Repoman-2.3.6 x11-libs/wxGTK/wxGTK-3.0.3-r300.ebuild | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/x11-libs/wxGTK/wxGTK-3.0.3-r300.ebuild b/x11-libs/wxGTK/wxGTK-3.0.3-r300.ebuild index 6066afd3bb4..6605d6d4ac8 100644 --- a/x11-libs/wxGTK/wxGTK-3.0.3-r300.ebuild +++ b/x11-libs/wxGTK/wxGTK-3.0.3-r300.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools multilib-minimal +inherit multilib-minimal DESCRIPTION="GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit" HOMEPAGE="https://wxwidgets.org/" @@ -67,12 +67,6 @@ S="${WORKDIR}/wxWidgets-${PV}" src_prepare() { default - local f - for f in $(find "${S}" -name configure.in); do - mv "${f}" "${f/in/ac}" || die - done - AT_M4DIR="${S}/build/aclocal" eautoreconf - # Versionating sed -i \ -e "s:\(WX_RELEASE = \).*:\1${WXRELEASE}:"\