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 77C7B138359 for ; Sat, 24 Oct 2020 15:40:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5949E0907; Sat, 24 Oct 2020 15:40:25 +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 9D761E0907 for ; Sat, 24 Oct 2020 15:40:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4936433BDCC for ; Sat, 24 Oct 2020 15:40:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90E9E3B3 for ; Sat, 24 Oct 2020 15:40:22 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1603554006.bd3e4d8ba482580f3db048d241aee4c4e65c5c6e.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/fasthenry/, sci-electronics/fasthenry/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/fasthenry/fasthenry-3.0.20.07.17.ebuild sci-electronics/fasthenry/files/fasthenry-3.0.20.07.17-ar.patch X-VCS-Directories: sci-electronics/fasthenry/ sci-electronics/fasthenry/files/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: bd3e4d8ba482580f3db048d241aee4c4e65c5c6e X-VCS-Branch: master Date: Sat, 24 Oct 2020 15:40:22 +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: e359f7bc-c041-43e4-8d25-956cc28bb74e X-Archives-Hash: 259bc5f6d9e78fa830248690f9745a92 commit: bd3e4d8ba482580f3db048d241aee4c4e65c5c6e Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Oct 24 15:39:28 2020 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Oct 24 15:40:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd3e4d8b sci-electronics/fasthenry: Fix ar Closes: https://bugs.gentoo.org/750128 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> .../fasthenry/fasthenry-3.0.20.07.17.ebuild | 3 ++- .../fasthenry/files/fasthenry-3.0.20.07.17-ar.patch | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/sci-electronics/fasthenry/fasthenry-3.0.20.07.17.ebuild b/sci-electronics/fasthenry/fasthenry-3.0.20.07.17.ebuild index b8691f8986a..ee1cef974df 100644 --- a/sci-electronics/fasthenry/fasthenry-3.0.20.07.17.ebuild +++ b/sci-electronics/fasthenry/fasthenry-3.0.20.07.17.ebuild @@ -23,10 +23,11 @@ S=${WORKDIR}/fasthenry-3.0wr PATCHES=( "${FILESDIR}/${P}-cflags.patch" "${FILESDIR}/${P}-ldflags.patch" + "${FILESDIR}/${P}-ar.patch" ) src_compile() { - tc-export CC + tc-export CC AR emake all } diff --git a/sci-electronics/fasthenry/files/fasthenry-3.0.20.07.17-ar.patch b/sci-electronics/fasthenry/files/fasthenry-3.0.20.07.17-ar.patch new file mode 100644 index 00000000000..ea1e671b7df --- /dev/null +++ b/sci-electronics/fasthenry/files/fasthenry-3.0.20.07.17-ar.patch @@ -0,0 +1,18 @@ +diff -ruN fasthenry-3.0wr.orig/src/sparse/Makefile fasthenry-3.0wr/src/sparse/Makefile +--- fasthenry-3.0wr.orig/src/sparse/Makefile 2020-10-24 18:35:15.348900086 +0300 ++++ fasthenry-3.0wr/src/sparse/Makefile 2020-10-24 18:37:09.729921680 +0300 +@@ -25,12 +25,12 @@ + # $(CC) $(CFLAGS) -o $(DESTINATION) $(TESTO) $(LIBRARY) -lm + + $(LIBRARY) : $(OFILES) +- ar r $(LIBRARY) $? ++ $(AR) r $(LIBRARY) $? + ranlib $(LIBRARY) + + spice : $(LIBRARY) spSMP.o + cp $(LIBRARY) ../SMP.a +- ar r ../SMP.a spSMP.o ++ $(AR) r ../SMP.a spSMP.o + ranlib ../SMP.a + + lint :