From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1335880-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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 41824158086 for <garchives@archives.gentoo.org>; Tue, 2 Nov 2021 21:05:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70780E070D; Tue, 2 Nov 2021 21:05:53 +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 9B52EE089A for <gentoo-commits@lists.gentoo.org>; Tue, 2 Nov 2021 21:05:51 +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 9B295342C33 for <gentoo-commits@lists.gentoo.org>; Tue, 2 Nov 2021 21:05:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D828156 for <gentoo-commits@lists.gentoo.org>; Tue, 2 Nov 2021 21:05:43 +0000 (UTC) From: "Georgy Yakovlev" <gyakovlev@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, "Georgy Yakovlev" <gyakovlev@gentoo.org> Message-ID: <1635887000.b37dece3267ea2c18016c66180b57dc7573e384a.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/rust-bin/rust-bin-1.52.1.ebuild dev-lang/rust-bin/rust-bin-1.53.0.ebuild dev-lang/rust-bin/rust-bin-1.54.0.ebuild dev-lang/rust-bin/rust-bin-1.55.0.ebuild dev-lang/rust-bin/rust-bin-1.56.0.ebuild dev-lang/rust-bin/rust-bin-1.56.1.ebuild X-VCS-Directories: dev-lang/rust-bin/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: b37dece3267ea2c18016c66180b57dc7573e384a X-VCS-Branch: master Date: Tue, 2 Nov 2021 21:05:43 +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: 538dcb4b-ca3b-49f0-a4bc-666825490f0d X-Archives-Hash: 7782338c0298305fa430918b7279216f commit: b37dece3267ea2c18016c66180b57dc7573e384a Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> AuthorDate: Tue Nov 2 20:57:17 2021 +0000 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> CommitDate: Tue Nov 2 21:03:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b37dece3 dev-lang/rust-bin: add QA_EXECSTACK for rmeta sections Bug: https://bugs.gentoo.org/806466 Closes: https://bugs.gentoo.org/806468 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org> dev-lang/rust-bin/rust-bin-1.52.1.ebuild | 5 +++++ dev-lang/rust-bin/rust-bin-1.53.0.ebuild | 5 +++++ dev-lang/rust-bin/rust-bin-1.54.0.ebuild | 5 +++++ dev-lang/rust-bin/rust-bin-1.55.0.ebuild | 5 +++++ dev-lang/rust-bin/rust-bin-1.56.0.ebuild | 5 +++++ dev-lang/rust-bin/rust-bin-1.56.1.ebuild | 5 +++++ 6 files changed, 30 insertions(+) diff --git a/dev-lang/rust-bin/rust-bin-1.52.1.ebuild b/dev-lang/rust-bin/rust-bin-1.52.1.ebuild index 8ae41adca72..74e467bd616 100644 --- a/dev-lang/rust-bin/rust-bin-1.52.1.ebuild +++ b/dev-lang/rust-bin/rust-bin-1.52.1.ebuild @@ -33,6 +33,11 @@ QA_PREBUILT=" opt/${P}/lib/rustlib/.*/lib/.* " +# An rmeta file is custom binary format that contains the metadata for the crate. +# rmeta files do not support linking, since they do not contain compiled object files. +# so we can safely silence the warning for this QA check. +QA_EXECSTACK="opt/${P}/lib/rustlib/*/lib*.rlib:lib.rmeta" + VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/rust.asc pkg_pretend() { diff --git a/dev-lang/rust-bin/rust-bin-1.53.0.ebuild b/dev-lang/rust-bin/rust-bin-1.53.0.ebuild index 8ae41adca72..74e467bd616 100644 --- a/dev-lang/rust-bin/rust-bin-1.53.0.ebuild +++ b/dev-lang/rust-bin/rust-bin-1.53.0.ebuild @@ -33,6 +33,11 @@ QA_PREBUILT=" opt/${P}/lib/rustlib/.*/lib/.* " +# An rmeta file is custom binary format that contains the metadata for the crate. +# rmeta files do not support linking, since they do not contain compiled object files. +# so we can safely silence the warning for this QA check. +QA_EXECSTACK="opt/${P}/lib/rustlib/*/lib*.rlib:lib.rmeta" + VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/rust.asc pkg_pretend() { diff --git a/dev-lang/rust-bin/rust-bin-1.54.0.ebuild b/dev-lang/rust-bin/rust-bin-1.54.0.ebuild index 64f7fa3d954..2796cb0698b 100644 --- a/dev-lang/rust-bin/rust-bin-1.54.0.ebuild +++ b/dev-lang/rust-bin/rust-bin-1.54.0.ebuild @@ -33,6 +33,11 @@ QA_PREBUILT=" opt/${P}/lib/rustlib/.*/lib/.* " +# An rmeta file is custom binary format that contains the metadata for the crate. +# rmeta files do not support linking, since they do not contain compiled object files. +# so we can safely silence the warning for this QA check. +QA_EXECSTACK="opt/${P}/lib/rustlib/*/lib*.rlib:lib.rmeta" + VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/rust.asc pkg_pretend() { diff --git a/dev-lang/rust-bin/rust-bin-1.55.0.ebuild b/dev-lang/rust-bin/rust-bin-1.55.0.ebuild index 64f7fa3d954..2796cb0698b 100644 --- a/dev-lang/rust-bin/rust-bin-1.55.0.ebuild +++ b/dev-lang/rust-bin/rust-bin-1.55.0.ebuild @@ -33,6 +33,11 @@ QA_PREBUILT=" opt/${P}/lib/rustlib/.*/lib/.* " +# An rmeta file is custom binary format that contains the metadata for the crate. +# rmeta files do not support linking, since they do not contain compiled object files. +# so we can safely silence the warning for this QA check. +QA_EXECSTACK="opt/${P}/lib/rustlib/*/lib*.rlib:lib.rmeta" + VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/rust.asc pkg_pretend() { diff --git a/dev-lang/rust-bin/rust-bin-1.56.0.ebuild b/dev-lang/rust-bin/rust-bin-1.56.0.ebuild index 64f7fa3d954..2796cb0698b 100644 --- a/dev-lang/rust-bin/rust-bin-1.56.0.ebuild +++ b/dev-lang/rust-bin/rust-bin-1.56.0.ebuild @@ -33,6 +33,11 @@ QA_PREBUILT=" opt/${P}/lib/rustlib/.*/lib/.* " +# An rmeta file is custom binary format that contains the metadata for the crate. +# rmeta files do not support linking, since they do not contain compiled object files. +# so we can safely silence the warning for this QA check. +QA_EXECSTACK="opt/${P}/lib/rustlib/*/lib*.rlib:lib.rmeta" + VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/rust.asc pkg_pretend() { diff --git a/dev-lang/rust-bin/rust-bin-1.56.1.ebuild b/dev-lang/rust-bin/rust-bin-1.56.1.ebuild index 64f7fa3d954..2796cb0698b 100644 --- a/dev-lang/rust-bin/rust-bin-1.56.1.ebuild +++ b/dev-lang/rust-bin/rust-bin-1.56.1.ebuild @@ -33,6 +33,11 @@ QA_PREBUILT=" opt/${P}/lib/rustlib/.*/lib/.* " +# An rmeta file is custom binary format that contains the metadata for the crate. +# rmeta files do not support linking, since they do not contain compiled object files. +# so we can safely silence the warning for this QA check. +QA_EXECSTACK="opt/${P}/lib/rustlib/*/lib*.rlib:lib.rmeta" + VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/rust.asc pkg_pretend() {