From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 09 14:24:31 2024 Received: (at submit) by debbugs.gnu.org; 9 Sep 2024 18:24:31 +0000 Received: from localhost ([127.0.0.1]:34119 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1snj3v-0004uz-5R for submit@debbugs.gnu.org; Mon, 09 Sep 2024 14:24:31 -0400 Received: from lists.gnu.org ([209.51.188.17]:56158) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1snj3s-0004uq-Ge for submit@debbugs.gnu.org; Mon, 09 Sep 2024 14:24:29 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1snj3o-0001Il-Ck for guix-patches@gnu.org; Mon, 09 Sep 2024 14:24:24 -0400 Received: from smtp.umanwizard.com ([54.203.248.109]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1snj3j-0003U6-JS for guix-patches@gnu.org; Mon, 09 Sep 2024 14:24:24 -0400 Received: from localhost ([108.6.22.48]) by smtp.umanwizard.com ; 9 Sep 2024 18:24:16 +0000 X-Fes-Received-For: guix-patches@gnu.org X-Fes-Received-From: From: brennan@umanwizard.com To: guix-patches@gnu.org Subject: [PATCH] gnu: rust: update to 1.81 Date: Mon, 9 Sep 2024 14:23:56 -0400 Message-ID: <20240909182356.2221764-1-brennan@umanwizard.com> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Fes-Encrypted: true X-Fes-Ehlo-Domain: localhost Received-SPF: pass client-ip=54.203.248.109; envelope-from=brennan@umanwizard.com; helo=smtp.umanwizard.com X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Brennan Vincent , efraim@flashner.co.il X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) From: Brennan Vincent gnu/packages/rust.scm (new variable): rust-1.81. gnu/packages/rust.scm (rust): update to 1.81. Change-Id: Idb1958364225bebb9aa415419083b6ab97d7c4c7 --- gnu/packages/rust.scm | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 396e8a858a..a33399d8fc 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -1050,6 +1050,12 @@ (define-public rust-1.80 (("features = \\[\"fs\"" all) (string-append all ", \"use-libc\"")))))))))) +(define-public rust-1.81 + (let ((base-rust (rust-bootstrapped-package rust-1.80 "1.81.0" + "19yggj1qivdhf68gx2652cfi7nxjkdgy39wh7h6facpzppz4h947"))) + (package + (inherit base-rust)))) + (define (make-ignore-test-list strs) "Function to make creating a list to ignore tests a bit easier." (map (lambda (str) @@ -1064,7 +1070,7 @@ (define (make-ignore-test-list strs) ;;; Here we take the latest included Rust, make it public, and re-enable tests ;;; and extra components such as rustfmt. (define-public rust - (let ((base-rust rust-1.80)) + (let ((base-rust rust-1.81)) (package (inherit base-rust) (properties (append @@ -1134,7 +1140,10 @@ (define-public rust '("fn fetch_downloads_with_git2_first_"))) (substitute* "src/tools/cargo/tests/testsuite/build.rs" ,@(make-ignore-test-list - '("fn build_with_symlink_to_path_dependency_with_build_script_in_git"))))) + '("fn build_with_symlink_to_path_dependency_with_build_script_in_git"))) + (substitute* "src/tools/cargo/tests/testsuite/publish_lockfile.rs" + ,@(make-ignore-test-list + '("fn note_resolve_changes"))))) (add-after 'unpack 'disable-tests-requiring-mercurial (lambda _ (with-directory-excursion "src/tools/cargo/tests/testsuite/cargo_init" @@ -1222,7 +1231,12 @@ (define-public rust ;; string "rustc" ,@(make-ignore-test-list '("fn config_fingerprint" - "fn features_fingerprint"))))) + "fn features_fingerprint"))) + (substitute* "src/tools/cargo/tests/testsuite/git_auth.rs" + ;; This checks for a specific networking error message + ;; that's different from the one we see in the builder + ,@(make-ignore-test-list + '("fn net_err_suggests_fetch_with_cli"))))) (add-after 'unpack 'patch-command-exec-tests ;; This test suite includes some tests that the stdlib's ;; `Command` execution properly handles in situations where -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 09 14:27:48 2024 Received: (at 73154) by debbugs.gnu.org; 9 Sep 2024 18:27:48 +0000 Received: from localhost ([127.0.0.1]:34125 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1snj75-00057y-Qc for submit@debbugs.gnu.org; Mon, 09 Sep 2024 14:27:48 -0400 Received: from smtp.umanwizard.com ([54.203.248.109]:31996) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1snj73-00057h-7P for 73154@debbugs.gnu.org; Mon, 09 Sep 2024 14:27:45 -0400 Received: from localhost ([108.6.22.48]) by smtp.umanwizard.com ; 9 Sep 2024 18:27:35 +0000 X-Fes-Received-For: 73154@debbugs.gnu.org X-Fes-Received-From: From: "Brennan Vincent" To: 73154@debbugs.gnu.org Subject: Re: bug#73154: Acknowledgement ([PATCH] gnu: rust: update to 1.81) In-Reply-To: References: <20240909182356.2221764-1-brennan@umanwizard.com> Date: Mon, 09 Sep 2024 14:27:33 -0400 Message-ID: <87frq81y3u.fsf@taipei.mail-host-address-is-not-set> MIME-Version: 1.0 Content-Type: text/plain X-Fes-Encrypted: true X-Fes-Ehlo-Domain: localhost X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 73154 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Please note that this patch depends on my previous series of patches to upgrade Rust to 1.80. https://lists.gnu.org/archive/html/guix-patches/2024-08/msg01076.html help-debbugs@gnu.org (GNU bug Tracking System) writes: > Thank you for filing a new bug report with debbugs.gnu.org. > > This is an automatically generated reply to let you know your message > has been received. > > Your message is being forwarded to the package maintainers and other > interested parties for their attention; they will reply in due course. > > Your message has been sent to the package maintainer(s): > guix-patches@gnu.org > > If you wish to submit further information on this problem, please > send it to 73154@debbugs.gnu.org. > > Please do not send mail to help-debbugs@gnu.org unless you wish > to report a problem with the Bug-tracking system. > > -- > 73154: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=73154 > GNU Bug Tracking System > Contact help-debbugs@gnu.org with problems From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 10 01:48:16 2024 Received: (at 73154) by debbugs.gnu.org; 10 Sep 2024 05:48:16 +0000 Received: from localhost ([127.0.0.1]:34650 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sntjb-0005jE-Ni for submit@debbugs.gnu.org; Tue, 10 Sep 2024 01:48:15 -0400 Received: from mail-pg1-f180.google.com ([209.85.215.180]:50212) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sntjZ-0005iu-29; Tue, 10 Sep 2024 01:48:13 -0400 Received: by mail-pg1-f180.google.com with SMTP id 41be03b00d2f7-70b2421471aso3391870a12.0; Mon, 09 Sep 2024 22:48:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1725947222; x=1726552022; darn=debbugs.gnu.org; h=mime-version:user-agent:message-id:date:references:in-reply-to :subject:cc:to:from:from:to:cc:subject:date:message-id:reply-to; bh=DGzyc+Hn+yZhFAt7s1JF+8ELAgMYaaspWl1kUmZFzls=; b=kiAO/ADnOu1XBCP8CErGihecCiUE9z8yWs179pFBj+oJrzenevcBBf3cG7Hnm8/qtq xpBUMIm+Q1agYQKkfGvKnEK8lmYMYb4NeinBVF+MEkkYI0R4fXX+1IfwV4ECuSLsDYAw ex0/eItfkQBT4h1gyyco1SZgnn6riCWoKmbtO02nlaRz4ze5PmuafYr4pEfqLtETmcwh UBV2MUtKBxtWBFPYgv1dm+ESSnA+xPIW1ZaSDIDFKeEV08Y09r8GqPlC01umvGOV8hL5 +zswMBRvBTUKz98bYlUzfT1TZryG6Rgt5MAEqyJnNW9NCAliKTCSksnm0c2lwkvnkoW8 hw+A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1725947222; x=1726552022; h=mime-version:user-agent:message-id:date:references:in-reply-to :subject:cc:to:from:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=DGzyc+Hn+yZhFAt7s1JF+8ELAgMYaaspWl1kUmZFzls=; b=hSHeb1Wrg9TMStdf0c0Jx4NioG4eDYFeDKb4+NEeuaVyYfca2LCWTwWyZo3lqY4oL8 tMFi+Tv7nW/JqjB2FY+fmMZH+sa9xI2Q0BajpwhasxcUIIfX9a2/3D6pXuOVT/oZY6Sj kMbTRYDdVys8p0RvU19yvNVSm+86I60SmanczSmtyrRMPZC0PNIaUANoRewlUVwSzbM/ uW7ekSsPQ2TQGaBImnJO6VoXjiBtaIyaXzROoXgTjBh+n1WVAOoPLP4tGhHwzTLroWWp sSEiJ67rPgM7EcatwpakhAf6Uv7MaT9WxykPnXbVvLag4Tv/cY1UNTsR6aMjZkHQ0Cqb U37A== X-Forwarded-Encrypted: i=1; AJvYcCW7jFwBAUXKJe9oqN5yM63wTRSqDw96hBrHHJBi8b4W0wSuWvR9IY8NLAqfJmkLPTiFQND74Drm@debbugs.gnu.org X-Gm-Message-State: AOJu0YxHj5eB4+hc+0f3Q7QNq0fgGnHA6ZgvqdlqGJWMyHYCVD8PcLWy 8ILAFRMjJx5wsxK5CDxAHTL4/wQXm6LKzR3rxY0uxRJ4chG+nGXQHLfOHUW+ X-Google-Smtp-Source: AGHT+IGLqMZsU9vVZ7XEYDT7lZNmbrT1Rtxa+eXljHTS+y46dTIIT6l2DqPrSIOdS9bFfPhSMi+MUg== X-Received: by 2002:a17:903:41c2:b0:205:4fb0:e0a3 with SMTP id d9443c01a7336-20707000450mr98882445ad.41.1725947222147; Mon, 09 Sep 2024 22:47:02 -0700 (PDT) Received: from hurd ([2405:6586:be0:0:c8ff:1707:9b9:af89]) by smtp.gmail.com with ESMTPSA id d9443c01a7336-20710f1f308sm41686705ad.216.2024.09.09.22.47.00 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 09 Sep 2024 22:47:01 -0700 (PDT) From: Maxim Cournoyer To: "Brennan Vincent" Subject: Re: [bug#73154] Acknowledgement ([PATCH] gnu: rust: update to 1.81) In-Reply-To: <87frq81y3u.fsf@taipei.mail-host-address-is-not-set> (Brennan Vincent's message of "Mon, 09 Sep 2024 14:27:33 -0400") References: <20240909182356.2221764-1-brennan@umanwizard.com> <87frq81y3u.fsf@taipei.mail-host-address-is-not-set> Date: Tue, 10 Sep 2024 14:46:59 +0900 Message-ID: <87ikv45acs.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 73154 Cc: GNU Debbugs , 73154@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) block 73154 by 72327 quit Hi, "Brennan Vincent" writes: > Please note that this patch depends on my previous series of patches to > upgrade Rust to 1.80. Expressing this in the tracker by blocking bug #73154 with bug #72327 with the above commands (and CC'ing the control server). -- Thanks, Maxim From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 17 05:57:51 2024 Received: (at 73154-done) by debbugs.gnu.org; 17 Sep 2024 09:57:51 +0000 Received: from localhost ([127.0.0.1]:53875 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sqUxz-000176-4b for submit@debbugs.gnu.org; Tue, 17 Sep 2024 05:57:51 -0400 Received: from mail-wm1-f44.google.com ([209.85.128.44]:42361) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sqUxw-00016d-Fz for 73154-done@debbugs.gnu.org; Tue, 17 Sep 2024 05:57:49 -0400 Received: by mail-wm1-f44.google.com with SMTP id 5b1f17b1804b1-42cbc38a997so34601395e9.1 for <73154-done@debbugs.gnu.org>; Tue, 17 Sep 2024 02:57:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1726566988; x=1727171788; darn=debbugs.gnu.org; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender:from:to :cc:subject:date:message-id:reply-to; bh=ajlndCio0H3sLfuZLhatyYYlU0yyRQL3uewSxcB8MN8=; b=R//WhOSUmyypDaDCmUul6oyThmyLG8YeFeGQ1L2QLPIuIiP65Gcm1z8fsg1j2lDYZ9 E2FXdsVjtPFl3ohhlmAkuzW0IpGq+YTfjglMPiDP2TmxzP8RUKG0j0GJXQIeh+M6Dn2z 7K+UtE1fbIdCccYzGMvaLzA16nYj6xp0fEgjozJnmCIMtUweSSwMOlM1/RQvDs75qr27 S/Ga7ImQc+PcPvmCf4reoLXlCb1zM1DrJle4xBAE9xOCm9L7mlvknXUeqlENoZyCM5cf HFBw+DIEX0R7g1iAlljoXctCJHZ/aK2/51w8tRR1mg1AWr7fZ3L51vdYnjerC8la+pLg +t2w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1726566988; x=1727171788; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=ajlndCio0H3sLfuZLhatyYYlU0yyRQL3uewSxcB8MN8=; b=dP1uT9m6E9Qc48yQ5avh05EgXuUvmq02Bf0qZ8JBeaGQHcMnxvhFIqHOig4cjR4o0H gva6H4xkVXb0IQlLlts8b2tJZ9OKz9213ag4BW4Xg0U8HyFpMoQmstd1rQAXFnu8BMA3 wIyyKNYyEUe3ucBhjddbanaOB4fvyysdW1cInfQ0ewMQNbmPnAcARhLELdBOhFFQ7rrm +/27FooaPdYH4uY3ZRlKPeSpe/rcTmgGA9NAD1DjZt7NhPCJqeHx69GEdb6V3o7D+uMP xYQGjGMq+lsrOmwlf1DuLLYuIzmrmyStcpWI9+ifFPHUqNEvoTIPKjd2HeLwgPp81dN7 ACLg== X-Gm-Message-State: AOJu0YyPeCcEVcGre8ZjJOr1RH1OVXIzONIf6maGbYKf0cpDO/47kFMI 7gn4vBpERM/PWyDwScF8u6tvkwEJO0TcY4fZj4HNoSbj/lV7xZbM X-Google-Smtp-Source: AGHT+IHk8L9usBlWMGwGlbXfMto6DVOGWtLouBJ6O9lliYHqYjofPhM5/CNkX6qd1odPqE/mGYBkNg== X-Received: by 2002:a05:600c:1c16:b0:42c:b166:913 with SMTP id 5b1f17b1804b1-42cdcabd371mr94338065e9.11.1726566987837; Tue, 17 Sep 2024 02:56:27 -0700 (PDT) Received: from localhost ([141.226.162.35]) by smtp.gmail.com with ESMTPSA id 5b1f17b1804b1-42d9b15d2besm131770885e9.25.2024.09.17.02.56.27 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 17 Sep 2024 02:56:27 -0700 (PDT) Date: Tue, 17 Sep 2024 12:56:26 +0300 From: Efraim Flashner To: brennan@umanwizard.com Subject: Re: [PATCH] gnu: rust: update to 1.81 Message-ID: Mail-Followup-To: Efraim Flashner , brennan@umanwizard.com, 73154-done@debbugs.gnu.org References: <20240909182356.2221764-1-brennan@umanwizard.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="EEC2T8H//JCGlTay" Content-Disposition: inline In-Reply-To: <20240909182356.2221764-1-brennan@umanwizard.com> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: 0.2 (/) X-Debbugs-Envelope-To: 73154-done Cc: 73154-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.8 (/) --EEC2T8H//JCGlTay Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Thanks. Patch pushed to the rust-team branch. --=20 Efraim Flashner =D7=A8=D7=A0=D7=A9=D7=9C=D7=A4 = =D7=9D=D7=99=D7=A8=D7=A4=D7=90 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --EEC2T8H//JCGlTay Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmbpUkoACgkQQarn3Mo9 g1Fuyg//c34Ea6P5gbo6OJwwwaukZ5t/0gGkOLmXEZdj7ultnlsZANe9KCYaKnfN Em9X/gSG1YDZiTvOGsB2sgmUiTydBzjuTYU9JXXLO/pt1sNm4i2xokIkJfQnk+l9 FRSlnSxMMy5wxBChcuH8IGjDVbRHB1L5mF+cyMBTFEk6t2A160zrqG+0/s08GEyA I967YUEMiQC2kFljccxlcaq/OL2kHmMIEwdvpdHLbhRkTFf2ambuKHjDqQ9iJh9h Wg2gY2VXRIwwB2tU0tkla6ARAv9Q32jVFcujem0g+iu+G8l31vHy8U1UBa5vZEiP 3RuYn+aGkS6qNnT1pMdV/2z2LrEu+h4yd7Kn6rulIro8neEP0SmH65vhOlEHU3SK KPNGkaJ7uVUEhV0pne9lKl0DJ6GVgsd0aCtKPplahGlyvhWpM4rKP8lvqmaTh41D dkKC/B09FaB6UO/L2X3AsdQA6Ul9w0qFU76myAwJPYmbIuF/XNzK5p2qHnfL04Sl JIGm9t88T/KFKxsv9G02NYxNKj/BPO598i4bhx/rnRmgmj639svVYAK2s8X2vyJO 64lyI3o0R/8DujFnDriAAC2l3OlQa3KGs3l9V8NyvqBpV5PU+aBakYp93GdluAMg VH6vyiMJiPG0ZZ707WF1KQ5+DX7upiCDPLnkTMJLNa7gEvR7FMA= =ScQZ -----END PGP SIGNATURE----- --EEC2T8H//JCGlTay-- From unknown Thu Jun 19 14:06:01 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 15 Oct 2024 11:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator