GNU bug report logs - #35911
gnu: rust: Update to 1.35.0.

Previous Next

Package: guix-patches;

Reported by: Ivan Petkov <ivanppetkov <at> gmail.com>

Date: Sun, 26 May 2019 03:56:02 UTC

Severity: normal

Done: Ivan Petkov <ivanppetkov <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 35911 in the body.
You can then email your comments to 35911 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#35911; Package guix-patches. (Sun, 26 May 2019 03:56:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Ivan Petkov <ivanppetkov <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 26 May 2019 03:56:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Ivan Petkov <ivanppetkov <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>,
 Marius Bakke <mbakke <at> fastmail.com>
Subject: gnu: rust: Update to 1.35.0.
Date: Sat, 25 May 2019 20:36:07 -0700
From 635bab2324bcaa1d1b3031af2ebc73748a9c2325 Mon Sep 17 00:00:00 2001
From: Ivan Petkov <ivanppetkov <at> gmail.com>
Date: Wed, 22 May 2019 20:50:47 -0700
Subject: [PATCH] gnu: rust: Update to 1.35.0.

* gnu/packages/rust.scm (rust): Rename to...
(rust-1.34): ...this.
(rust): New variable.
---
 gnu/packages/rust.scm | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm
index 3f5ec590a9..9c8088b2f7 100644
--- a/gnu/packages/rust.scm
+++ b/gnu/packages/rust.scm
@@ -1048,7 +1048,7 @@ jemalloc = \"" jemalloc "/lib/libjemalloc_pic.a" "\"
                  (setenv "RUST_TEST_THREADS" "2")
                  #t)))))))))
 
-(define-public rust
+(define-public rust-1.34
   (let ((base-rust
          (rust-bootstrapped-package rust-1.33 "1.34.1"
            "19s09k7y5j6g3y4d2rk6kg9pvq6ml94c49w6b72dmq8p9lk8bixh")))
@@ -1062,3 +1062,23 @@ jemalloc = \"" jemalloc "/lib/libjemalloc_pic.a" "\"
                       (delete-file-recursively "src/llvm-project")
                       (delete-file-recursively "vendor/jemalloc-sys/jemalloc")
                       #t)))))))
+
+(define-public rust
+  (let ((base-rust
+         (rust-bootstrapped-package rust-1.34 "1.35.0"
+           "0bbizy6b7002v1rdhrxrf5gijclbyizdhkglhp81ib3bf5x66kas")))
+    (package
+      (inherit base-rust)
+      (arguments
+       (substitute-keyword-arguments (package-arguments base-rust)
+         ((#:phases phases)
+          `(modify-phases ,phases
+             ;; The tidy test includes a pass which ensures large binaries
+             ;; don't accidentally get checked into the rust git repo.
+             ;; Unfortunately the test assumes that git is always available,
+             ;; so we'll comment out the invocation of this pass.
+             (add-after 'configure 'disable-tidy-bins-check
+               (lambda* _
+                 (substitute* "src/tools/tidy/src/main.rs"
+                   (("bins::check") "//bins::check"))
+                 #t)))))))))
-- 
2.21.0





Information forwarded to guix-patches <at> gnu.org:
bug#35911; Package guix-patches. (Thu, 13 Jun 2019 08:35:01 GMT) Full text and rfc822 format available.

Message #8 received at 35911 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Ivan Petkov <ivanppetkov <at> gmail.com>
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>,
 Marius Bakke <mbakke <at> fastmail.com>, 35911 <at> debbugs.gnu.org
Subject: Re: [bug#35911] gnu: rust: Update to 1.35.0.
Date: Thu, 13 Jun 2019 10:34:05 +0200
Hi Ivan,

Ivan Petkov <ivanppetkov <at> gmail.com> skribis:

> From 635bab2324bcaa1d1b3031af2ebc73748a9c2325 Mon Sep 17 00:00:00 2001
> From: Ivan Petkov <ivanppetkov <at> gmail.com>
> Date: Wed, 22 May 2019 20:50:47 -0700
> Subject: [PATCH] gnu: rust: Update to 1.35.0.
>
> * gnu/packages/rust.scm (rust): Rename to...
> (rust-1.34): ...this.
> (rust): New variable.

I believe you can use your new commit super powers and push this patch.
:-)

Thank you,
Ludo’.




Reply sent to Ivan Petkov <ivanppetkov <at> gmail.com>:
You have taken responsibility. (Tue, 18 Jun 2019 02:54:03 GMT) Full text and rfc822 format available.

Notification sent to Ivan Petkov <ivanppetkov <at> gmail.com>:
bug acknowledged by developer. (Tue, 18 Jun 2019 02:54:03 GMT) Full text and rfc822 format available.

Message #13 received at 35911-done <at> debbugs.gnu.org (full text, mbox):

From: Ivan Petkov <ivanppetkov <at> gmail.com>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>,
 Marius Bakke <mbakke <at> fastmail.com>, 35911-done <at> debbugs.gnu.org
Subject: Re: [bug#35911] gnu: rust: Update to 1.35.0.
Date: Mon, 17 Jun 2019 19:53:15 -0700
Hi Ludo,

> On Jun 13, 2019, at 1:34 AM, Ludovic Courtès <ludo <at> gnu.org> wrote:
> 
> I believe you can use your new commit super powers and push this patch.
> :-)

Thanks for the reminder :)
I’ve pushed this out as 0ab5e91e1ced624c51cecc2693deb7c789fe1f07.

—Ivan



Information forwarded to guix-patches <at> gnu.org:
bug#35911; Package guix-patches. (Tue, 18 Jun 2019 14:20:02 GMT) Full text and rfc822 format available.

Message #16 received at 35911-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Ivan Petkov <ivanppetkov <at> gmail.com>
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>,
 Marius Bakke <mbakke <at> fastmail.com>, 35911-done <at> debbugs.gnu.org
Subject: Re: [bug#35911] gnu: rust: Update to 1.35.0.
Date: Tue, 18 Jun 2019 16:19:05 +0200
Howdy,

Ivan Petkov <ivanppetkov <at> gmail.com> skribis:

>> On Jun 13, 2019, at 1:34 AM, Ludovic Courtès <ludo <at> gnu.org> wrote:
>> 
>> I believe you can use your new commit super powers and push this patch.
>> :-)
>
> Thanks for the reminder :)
> I’ve pushed this out as 0ab5e91e1ced624c51cecc2693deb7c789fe1f07.

Awesome.  Thank you, and welcome aboard!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 17 Jul 2019 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 278 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.