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 0D03C13835A for ; Wed, 9 Dec 2020 14:18:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47813E08F6; Wed, 9 Dec 2020 14:18:06 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 316F2E08F6 for ; Wed, 9 Dec 2020 14:18:06 +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 4F3EF33D3CF for ; Wed, 9 Dec 2020 14:18:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E498D481 for ; Wed, 9 Dec 2020 14:18:03 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1607523477.d047fb73043b86599bceb23060bacc725b393696.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/autoconf/autoconf-2.70_beta4.ebuild sys-devel/autoconf/autoconf-9999.ebuild X-VCS-Directories: sys-devel/autoconf/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: d047fb73043b86599bceb23060bacc725b393696 X-VCS-Branch: master Date: Wed, 9 Dec 2020 14:18:03 +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: 763073c4-986f-46b4-b824-c10f829c8fb3 X-Archives-Hash: 4851afbeb268b6c3183c983449546b3c commit: d047fb73043b86599bceb23060bacc725b393696 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Thu Dec 3 01:00:00 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Dec 9 14:17:57 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d047fb73 sys-devel/autoconf: Use config.guess and config.sub from sys-devel/gnuconfig. Make config.guess and config.sub symbolic links pointing to files provided by sys-devel/gnuconfig. Closes: https://bugs.gentoo.org/757996 Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Lars Wendler gentoo.org> sys-devel/autoconf/autoconf-2.70_beta4.ebuild | 14 ++++++++++++-- sys-devel/autoconf/autoconf-9999.ebuild | 14 ++++++++++++-- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/sys-devel/autoconf/autoconf-2.70_beta4.ebuild b/sys-devel/autoconf/autoconf-2.70_beta4.ebuild index c11bf9d76d5..3f62766dc5d 100644 --- a/sys-devel/autoconf/autoconf-2.70_beta4.ebuild +++ b/sys-devel/autoconf/autoconf-2.70_beta4.ebuild @@ -28,8 +28,9 @@ IUSE="emacs" BDEPEND=">=sys-devel/m4-1.4.16 >=dev-lang/perl-5.6" RDEPEND="${BDEPEND} - !~sys-devel/${P}:2.5 - ~sys-devel/autoconf-wrapper-14_pre3" + ~sys-devel/autoconf-wrapper-14_pre3 + sys-devel/gnuconfig + !~sys-devel/${P}:2.5" [[ ${PV} == "9999" ]] && BDEPEND+=" >=sys-apps/texinfo-4.3" PDEPEND="emacs? ( app-emacs/autoconf-mode )" @@ -48,3 +49,12 @@ src_prepare() { # We already have an up to date autoconf.info page at this point. touch -r doc/{old_,}autoconf.texi || die } + +src_install() { + default + + local f + for f in config.guess config.sub; do + ln -fs ../../gnuconfig/${f} "${ED}"/usr/share/autoconf-*/build-aux/${f} || die + done +} diff --git a/sys-devel/autoconf/autoconf-9999.ebuild b/sys-devel/autoconf/autoconf-9999.ebuild index 155a08e8f7a..58895dec2f9 100644 --- a/sys-devel/autoconf/autoconf-9999.ebuild +++ b/sys-devel/autoconf/autoconf-9999.ebuild @@ -24,8 +24,9 @@ IUSE="emacs" BDEPEND=">=sys-devel/m4-1.4.16 >=dev-lang/perl-5.6" RDEPEND="${BDEPEND} - !~sys-devel/${P}:2.5 - >=sys-devel/autoconf-wrapper-13" + ~sys-devel/autoconf-wrapper-14_pre3 + sys-devel/gnuconfig + !~sys-devel/${P}:2.5" [[ ${PV} == "9999" ]] && BDEPEND+=" >=sys-apps/texinfo-4.3" PDEPEND="emacs? ( app-emacs/autoconf-mode )" @@ -41,3 +42,12 @@ src_prepare() { toolchain-autoconf_src_prepare } + +src_install() { + default + + local f + for f in config.guess config.sub; do + ln -fs ../../gnuconfig/${f} "${ED}"/usr/share/autoconf-*/build-aux/${f} || die + done +}