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 919B31580E0 for ; Sat, 31 May 2025 05:56:02 +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 7F04D3430F2 for ; Sat, 31 May 2025 05:56:02 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A47C5110512; Sat, 31 May 2025 05:53:12 +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 980A2110512 for ; Sat, 31 May 2025 05:53:12 +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 5715C34318D for ; Sat, 31 May 2025 05:53:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D30E2988 for ; Sat, 31 May 2025 05:53:09 +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: <1748670728.2f5f9d1a670ddbfb09193750b7d6fefa24bfd2f4.kangie@gentoo> Subject: [gentoo-commits] proj/rust-patches:master 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: 2f5f9d1a670ddbfb09193750b7d6fefa24bfd2f4 X-VCS-Branch: master Date: Sat, 31 May 2025 05:53:09 +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: 8ec44614-1c57-4d9e-b03c-f56a49773135 X-Archives-Hash: 0cc2b93634e0997e888c3d380e390c82 Message-ID: <20250531055309.fuDsl0NWTysHtlLJQHpPaaGW0DcJsSq5YfhXm4BZ0R0@z> commit: 2f5f9d1a670ddbfb09193750b7d6fefa24bfd2f4 Author: Matt Jolly gentoo org> AuthorDate: Sat May 31 05:52:08 2025 +0000 Commit: Matt Jolly gentoo org> CommitDate: Sat May 31 05:52:08 2025 +0000 URL: https://gitweb.gentoo.org/proj/rust-patches.git/commit/?id=2f5f9d1a 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!).