From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AD7B91580E0 for ; Sat, 31 May 2025 05:57:22 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 9A6C4343256 for ; Sat, 31 May 2025 05:57:22 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 0F7D91104E1; Sat, 31 May 2025 05:55:28 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 042741104DF for ; Sat, 31 May 2025 05:55:28 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B8B5E33DF47 for ; Sat, 31 May 2025 05:55:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C56628FE for ; Sat, 31 May 2025 05:55:25 +0000 (UTC) From: "Matt Jolly" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Jolly" Message-ID: <1748670885.d96bdc64ed36ccdd4c5456f096b1a501e72ea056.kangie@gentoo> Subject: [gentoo-commits] proj/rust-patches:1.83 commit in: / X-VCS-Repository: proj/rust-patches X-VCS-Files: README.rst X-VCS-Directories: / X-VCS-Committer: kangie X-VCS-Committer-Name: Matt Jolly X-VCS-Revision: d96bdc64ed36ccdd4c5456f096b1a501e72ea056 X-VCS-Branch: 1.83 Date: Sat, 31 May 2025 05:55:25 +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: 19a787c3-1d4a-4133-8b16-0e125664c68b X-Archives-Hash: 88c5cb8ec7d6ace4e6c7336f3d6d9a1f Message-ID: <20250531055525.Xjw0jFfF6d8laTnN2WdWE4K7jW8EOHrNjeBPeyLar2E@z> commit: d96bdc64ed36ccdd4c5456f096b1a501e72ea056 Author: Matt Jolly gentoo org> AuthorDate: Sat May 31 05:54:45 2025 +0000 Commit: Matt Jolly gentoo org> CommitDate: Sat May 31 05:54:45 2025 +0000 URL: https://gitweb.gentoo.org/proj/rust-patches.git/commit/?id=d96bdc64 Initial commit with README Signed-off-by: Matt Jolly gentoo.org> README.rst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..9999e72 --- /dev/null +++ b/README.rst @@ -0,0 +1,24 @@ +################### +Gentoo Rust Patches +################### + +This repository contains patches required to build Rust on Gentoo Linux. These patches were previously +part of the main Gentoo repository but have been moved here due to their size and to make maintenance easier. + +The patches are applied to the Rust source code during the build process. They address various issues such as +compatibility with the Gentoo environment, specific compiler flags, and other adjustments needed for a successful build, +or are backports to fix specific issues. + +Usage +===== + +A branch will be created for each new Rust release (e.g. ``1.88``), and patches will be added to that branch as needed. + +Tags for ``${PV}`` will be created for each release, e.g. ``1.88.0``, ``1.88.1``, etc., to track the specific versions of +Rust that these patches apply to. Revbumps will be tagged as required - if a patch is added or updated, a tag will be +created for the new version (e.g. ``1.88.0-r1``). + +``master`` will contain patches required for ``nightly`` (live / ``9999``) ebuilds and will be updated as needed. + +To use the patches, you can clone this repository and apply the patches to the Rust source code before building +(or use the Gentoo ebuild system which will handle this automatically!).