From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1691316-garchives=archives.gentoo.org@lists.gentoo.org> 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 C71151581EC for <garchives@archives.gentoo.org>; Tue, 19 Nov 2024 10:29:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86310E088A; Tue, 19 Nov 2024 10:29:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 6FB98E088A for <gentoo-commits@lists.gentoo.org>; Tue, 19 Nov 2024 10:29:17 +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 B50E033BF36 for <gentoo-commits@lists.gentoo.org>; Tue, 19 Nov 2024 10:29:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E8021682 for <gentoo-commits@lists.gentoo.org>; Tue, 19 Nov 2024 10:29:15 +0000 (UTC) From: "Patrick Lauer" <patrick@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, "Patrick Lauer" <patrick@gentoo.org> Message-ID: <1732012152.a7221a9b751209af88a6bd65f39e0deca1c75bad.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/syd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/syd/syd-3.28.3-r1.ebuild sys-apps/syd/syd-3.28.3.ebuild X-VCS-Directories: sys-apps/syd/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: a7221a9b751209af88a6bd65f39e0deca1c75bad X-VCS-Branch: master Date: Tue, 19 Nov 2024 10:29:15 +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: 8dfad9eb-8706-49b9-8eb8-9b476de45129 X-Archives-Hash: 8801c1b4c6324ab0164bc5a80ac53792 commit: a7221a9b751209af88a6bd65f39e0deca1c75bad Author: Patrick Lauer <patrick <AT> gentoo <DOT> org> AuthorDate: Tue Nov 19 10:27:35 2024 +0000 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org> CommitDate: Tue Nov 19 10:29:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7221a9b sys-apps/syd: Fix static build Enables static-pie, which is all in all good for us Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org> sys-apps/syd/{syd-3.28.3.ebuild => syd-3.28.3-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-apps/syd/syd-3.28.3.ebuild b/sys-apps/syd/syd-3.28.3-r1.ebuild similarity index 98% rename from sys-apps/syd/syd-3.28.3.ebuild rename to sys-apps/syd/syd-3.28.3-r1.ebuild index 985a8cdd7501..bf2327917016 100644 --- a/sys-apps/syd/syd-3.28.3.ebuild +++ b/sys-apps/syd/syd-3.28.3-r1.ebuild @@ -298,7 +298,7 @@ src_configure() { if use static; then export LIBSECCOMP_LINK_TYPE="static" export LIBSECCOMP_LIB_PATH=$(pkgconf --variable=libdir libseccomp) - export RUSTFLAGS+="-Clink-args=-static -Clink-args=-no-pie -Clink-args=-Wl,-Bstatic -Ctarget-feature=+crt-static" + export RUSTFLAGS+="-Ctarget-feature=+crt-static" cargo_src_configure else local myfeatures=( "oci" )