From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1283492-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 123E11382C5 for <garchives@archives.gentoo.org>; Tue, 18 May 2021 10:40:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A066E07FE; Tue, 18 May 2021 10:40:53 +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 756CAE07FE for <gentoo-commits@lists.gentoo.org>; Tue, 18 May 2021 10:40:53 +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 DAA0F340FA7 for <gentoo-commits@lists.gentoo.org>; Tue, 18 May 2021 10:40:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3255B78F for <gentoo-commits@lists.gentoo.org>; Tue, 18 May 2021 10:40:50 +0000 (UTC) From: "Joonas Niilola" <juippis@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, "Joonas Niilola" <juippis@gentoo.org> Message-ID: <1621334005.831f9c1fa0c10f96b7814e180a1bf140bce7cf8d.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/uudeview/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/uudeview/uudeview-0.5.20-r2.ebuild X-VCS-Directories: app-text/uudeview/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 831f9c1fa0c10f96b7814e180a1bf140bce7cf8d X-VCS-Branch: master Date: Tue, 18 May 2021 10:40:50 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: faffe371-9602-46cf-9bf3-f30e88e62361 X-Archives-Hash: 826289b4890554985c5dbcb42c8b2beb commit: 831f9c1fa0c10f96b7814e180a1bf140bce7cf8d Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de> AuthorDate: Sat May 1 15:25:44 2021 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Tue May 18 10:33:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=831f9c1f app-text/uudeview: Replace hardcoded ar with `tc-getAR`. Closes: https://bugs.gentoo.org/722602 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de> Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> app-text/uudeview/uudeview-0.5.20-r2.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app-text/uudeview/uudeview-0.5.20-r2.ebuild b/app-text/uudeview/uudeview-0.5.20-r2.ebuild index 1e0174e5eb8..c92ff28eafb 100644 --- a/app-text/uudeview/uudeview-0.5.20-r2.ebuild +++ b/app-text/uudeview/uudeview-0.5.20-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools +inherit autotools toolchain-funcs DESCRIPTION="uu, xx, base64, binhex decoder" HOMEPAGE="http://www.fpx.de/fp/Software/UUDeview/" @@ -25,6 +25,8 @@ PATCHES=( DOCS=( HISTORY INSTALL README ) src_prepare() { + sed -i "s/^\tar r/\t$(tc-getAR) r/" uulib/Makefile.in || die + default mv configure.{in,ac} || die eautoreconf