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 C88B61580E0 for ; Mon, 02 Jun 2025 09:48:47 +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 B57BD343244 for ; Mon, 02 Jun 2025 09:48:47 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E24AF11049F; Mon, 02 Jun 2025 09:48:34 +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 D334611049F for ; Mon, 02 Jun 2025 09:48:34 +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 924B5343186 for ; Mon, 02 Jun 2025 09:48:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33CA328EF for ; Mon, 02 Jun 2025 09:48:32 +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: <1748857628.3c0c82412ea438ded6533022a9a026e2ce295bbb.kangie@gentoo> Subject: [gentoo-commits] proj/rust-patches:1.77 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: 3c0c82412ea438ded6533022a9a026e2ce295bbb X-VCS-Branch: 1.77 Date: Mon, 02 Jun 2025 09:48:32 +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: 0b8fd271-739e-4a51-bbef-cfce6ca6fd06 X-Archives-Hash: 810b4cacf80abda4b855ff8ee9de5b2b Message-ID: <20250602094832.aNWZQOXskErTr3lsnQ2jUqgeJpi8rmE7rErDRfEXGTg@z> commit: 3c0c82412ea438ded6533022a9a026e2ce295bbb Author: Matt Jolly gentoo org> AuthorDate: Mon Jun 2 09:47:08 2025 +0000 Commit: Matt Jolly gentoo org> CommitDate: Mon Jun 2 09:47:08 2025 +0000 URL: https://gitweb.gentoo.org/proj/rust-patches.git/commit/?id=3c0c8241 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!).