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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E830E1581F3 for ; Tue, 3 Dec 2024 03:42:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 296E8E07C9; Tue, 3 Dec 2024 03:42:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2FEC6E07C9 for ; Tue, 3 Dec 2024 03:41:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 23FA4342F92 for ; Tue, 3 Dec 2024 03:41:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F95AF96 for ; Tue, 3 Dec 2024 03:41:56 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1733197313.de3dd4140fbc11773863fd9a1f3d0e23e21a4d5a.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/safecat/files/, net-mail/safecat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/safecat/files/safecat-1.13-ar.patch net-mail/safecat/safecat-1.13-r2.ebuild X-VCS-Directories: net-mail/safecat/ net-mail/safecat/files/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: de3dd4140fbc11773863fd9a1f3d0e23e21a4d5a X-VCS-Branch: master Date: Tue, 3 Dec 2024 03:41:56 +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: e6e48314-27a3-4240-86fb-6a38c833da2d X-Archives-Hash: c5d23e42243768065c79e11c476d2607 commit: de3dd4140fbc11773863fd9a1f3d0e23e21a4d5a Author: Robin H. Johnson gentoo org> AuthorDate: Tue Dec 3 03:41:29 2024 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Dec 3 03:41:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3dd414 net-mail/safecat: fix ar/ranlib Signed-off-by: Robin H. Johnson gentoo.org> Closes: https://bugs.gentoo.org/945697 net-mail/safecat/files/safecat-1.13-ar.patch | 21 +++++++++++++++++++++ net-mail/safecat/safecat-1.13-r2.ebuild | 3 +++ 2 files changed, 24 insertions(+) diff --git a/net-mail/safecat/files/safecat-1.13-ar.patch b/net-mail/safecat/files/safecat-1.13-ar.patch new file mode 100644 index 000000000000..fdbcb716a1a0 --- /dev/null +++ b/net-mail/safecat/files/safecat-1.13-ar.patch @@ -0,0 +1,21 @@ +diff '--color=auto' -NuarwbB safecat-1.13.orig/Makefile safecat-1.13/Makefile +--- safecat-1.13.orig/Makefile 2024-12-01 20:36:41.209238851 -0800 ++++ safecat-1.13/Makefile 2024-12-02 19:32:20.069536183 -0800 +@@ -184,7 +184,7 @@ + ( cat warn-auto.sh; \ + echo 'main="$$1"; shift'; \ + echo 'rm -f "$$main"'; \ +- echo 'ar cr "$$main" $${1+"$$@"}'; \ ++ echo '$(shell head -n 1 conf-ar) cr "$$main" $${1+"$$@"}'; \ + case "`cat systype`" in \ + sunos-5.*) ;; \ + unix_sv*) ;; \ +@@ -193,7 +193,7 @@ + dgux-*) ;; \ + hp-ux-*) ;; \ + sco*) ;; \ +- *) echo 'ranlib "$$main"' ;; \ ++ *) echo '$(shell head -n 1 conf-ranlib) "$$main"' ;; \ + esac \ + ) > makelib + chmod 755 makelib diff --git a/net-mail/safecat/safecat-1.13-r2.ebuild b/net-mail/safecat/safecat-1.13-r2.ebuild index f604ea6e293f..ba92d9a6530f 100644 --- a/net-mail/safecat/safecat-1.13-r2.ebuild +++ b/net-mail/safecat/safecat-1.13-r2.ebuild @@ -32,6 +32,8 @@ PATCHES=( "${DISTDIR}"/${P}-clang-fixes.patch # GCC15 fixes "${FILESDIR}"/safecat-1.13-gcc15.patch + # Link fixes + "${FILESDIR}"/safecat-1.13-ar.patch ) src_prepare() { @@ -46,6 +48,7 @@ src_configure() { echo "$(tc-getCC) ${CFLAGS} -Wno-discarded-qualifiers -Wno-misleading-indentation" > conf-cc || die echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die echo "$(tc-getAR)" > conf-ar || die + echo "$(tc-getRANLIB)" > conf-ranlib || die } src_install() {