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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 342A015815E for ; Thu, 1 Feb 2024 10:10:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13559E2A07; Thu, 1 Feb 2024 10:10:23 +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 E902BE2A07 for ; Thu, 1 Feb 2024 10:10:22 +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 E342534321A for ; Thu, 1 Feb 2024 10:10:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D6EB13AA for ; Thu, 1 Feb 2024 10:10:20 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1706782213.c8947d11000a15ab7d438b5ad5c44dc4747129c4.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-dotnet/dotnet-sdk-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417-r2.ebuild dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417-r3.ebuild dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404-r2.ebuild dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404-r3.ebuild dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.100-r2.ebuild dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.100-r3.ebuild dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.101-r1.ebuild dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.101-r2.ebuild X-VCS-Directories: dev-dotnet/dotnet-sdk-bin/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: c8947d11000a15ab7d438b5ad5c44dc4747129c4 X-VCS-Branch: master Date: Thu, 1 Feb 2024 10:10:20 +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: 28341c43-2c65-4543-8b9d-4643df446581 X-Archives-Hash: 3ca5cccf108141c371a354a231672248 commit: c8947d11000a15ab7d438b5ad5c44dc4747129c4 Author: Maciej Barć gentoo org> AuthorDate: Thu Feb 1 09:36:36 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Thu Feb 1 10:10:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8947d11 dev-dotnet/dotnet-sdk-bin: do not strip the dotnet binary Closes: https://bugs.gentoo.org/923430 Signed-off-by: Maciej Barć gentoo.org> ...net-sdk-bin-6.0.417-r2.ebuild => dotnet-sdk-bin-6.0.417-r3.ebuild} | 4 ++++ ...net-sdk-bin-7.0.404-r2.ebuild => dotnet-sdk-bin-7.0.404-r3.ebuild} | 4 ++++ ...net-sdk-bin-8.0.100-r2.ebuild => dotnet-sdk-bin-8.0.100-r3.ebuild} | 4 ++++ ...net-sdk-bin-8.0.101-r1.ebuild => dotnet-sdk-bin-8.0.101-r2.ebuild} | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417-r2.ebuild b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417-r3.ebuild similarity index 95% rename from dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417-r2.ebuild rename to dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417-r3.ebuild index ff4d8c61be4f..11eef21196e3 100644 --- a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417-r2.ebuild +++ b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.417-r3.ebuild @@ -131,6 +131,10 @@ src_install() { fperms 0755 "/${dest}" dosym "../../${dest}/dotnet" "/usr/bin/dotnet-bin-${SDK_SLOT}" + + # STRIP="llvm-strip" corrupts some executables when using the patchelf hack, + # bug https://bugs.gentoo.org/923430 + dostrip -x "/${dest}/dotnet" } pkg_postinst() { diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404-r2.ebuild b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404-r3.ebuild similarity index 96% rename from dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404-r2.ebuild rename to dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404-r3.ebuild index ef7d6fbccea9..fec8f0f1835d 100644 --- a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404-r2.ebuild +++ b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.404-r3.ebuild @@ -132,6 +132,10 @@ src_install() { fperms 0755 "/${dest}" dosym "../../${dest}/dotnet" "/usr/bin/dotnet-bin-${SDK_SLOT}" + + # STRIP="llvm-strip" corrupts some executables when using the patchelf hack, + # bug https://bugs.gentoo.org/923430 + dostrip -x "/${dest}/dotnet" } pkg_postinst() { diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.100-r2.ebuild b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.100-r3.ebuild similarity index 96% rename from dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.100-r2.ebuild rename to dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.100-r3.ebuild index 4b12b99a8b28..e2e720b4af62 100644 --- a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.100-r2.ebuild +++ b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.100-r3.ebuild @@ -133,6 +133,10 @@ src_install() { fperms 0755 "/${dest}" dosym "../../${dest}/dotnet" "/usr/bin/dotnet-bin-${SDK_SLOT}" + + # STRIP="llvm-strip" corrupts some executables when using the patchelf hack, + # bug https://bugs.gentoo.org/923430 + dostrip -x "/${dest}/dotnet" } pkg_postinst() { diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.101-r1.ebuild b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.101-r2.ebuild similarity index 96% rename from dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.101-r1.ebuild rename to dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.101-r2.ebuild index b00890c77647..b4bdad035971 100644 --- a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.101-r1.ebuild +++ b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-8.0.101-r2.ebuild @@ -133,6 +133,10 @@ src_install() { fperms 0755 "/${dest}" dosym "../../${dest}/dotnet" "/usr/bin/dotnet-bin-${SDK_SLOT}" + + # STRIP="llvm-strip" corrupts some executables when using the patchelf hack, + # bug https://bugs.gentoo.org/923430 + dostrip -x "/${dest}/dotnet" } pkg_postinst() {