* [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer. @ 2023-07-19 2:26 Distopico 2023-07-29 18:44 ` Liliana Marie Prikler ` (2 more replies) 0 siblings, 3 replies; 17+ messages in thread From: Distopico @ 2023-07-19 2:26 UTC (permalink / raw) To: 64720; +Cc: Distopico, efraim Fixes build of rust-analyzer version 2022-01-10 that requires pined version of rust-notify which is `rust-notify-pre.13`. I'm working to update `rust-analizer` to 2023-07-17 but it require add more packages and update other, it's a WIP but for now this is just to fix the build. * gnu/packages/crates-io.scm (rust-notify-5-pre.13): New variable. * gnu/packages/rust-apps.scm --- gnu/packages/crates-io.scm | 13 +++++++++++++ gnu/packages/rust-apps.scm | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f9574e2797..5dd9e0d349 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -38927,6 +38927,19 @@ (define-public rust-notify-5 notification library.") (license (list license:cc0 license:artistic2.0)))) +(define-public rust-notify-5-pre.13 + (package + (inherit rust-notify-5) + (name "rust-notify") + (version "5.0.0-pre.13") + (source (origin + (method url-fetch) + (uri (crate-uri "notify" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0za8mpacxkr62fii5h7ny4h396y0m8myd3hf08njqdg2h21kap94")))))) + (define-public rust-notify-4 (package (inherit rust-notify-5) diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 8c29969712..0571af498c 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -1775,7 +1775,7 @@ (define-public rust-analyzer ("rust-memmap2" ,rust-memmap2-0.5) ("rust-mimalloc" ,rust-mimalloc-0.1) ("rust-miow" ,rust-miow-0.4) - ("rust-notify" ,rust-notify-5) + ("rust-notify" ,rust-notify-5-pre.13) ("rust-object" ,rust-object-0.28) ("rust-once-cell" ,rust-once-cell-1) ("rust-parking-lot" ,rust-parking-lot-0.11) base-commit: 917a299831361f253ea664f009176b4bbe06900a -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer. 2023-07-19 2:26 [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Distopico @ 2023-07-29 18:44 ` Liliana Marie Prikler 2023-08-05 2:27 ` [bug#64720] [PATCH 0/2] Fix build of rust-analyzer v2022-01-10 Distopico 2023-08-05 2:40 ` [bug#64720] [PATCH 1/2] gnu: Add rust-notify-5-pre.13 Distopico 2023-08-30 19:50 ` [bug#64720] [PATCH 0/8] " Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico 2 siblings, 2 replies; 17+ messages in thread From: Liliana Marie Prikler @ 2023-07-29 18:44 UTC (permalink / raw) To: Distopico, 64720 Am Dienstag, dem 18.07.2023 um 21:26 -0500 schrieb Distopico: > Fixes build of rust-analyzer version 2022-01-10 that requires pined pinned > version of rust-notify which is `rust-notify-pre.13`. > > I'm working to update `rust-analizer` to 2023-07-17 but it require > add more Please stick to one spelling of rust-analyzer. Also, comments that shouldn't end up in the commit messages go below the "---" line. > packages and update other, it's a WIP but for now this is just to fix > the build. > > * gnu/packages/crates-io.scm (rust-notify-5-pre.13): New variable. > * gnu/packages/rust-apps.scm The ChangeLog here is incomplete. Also, I'm pretty sure this would be a two-patch series. > --- > gnu/packages/crates-io.scm | 13 +++++++++++++ > gnu/packages/rust-apps.scm | 2 +- > 2 files changed, 14 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm > index f9574e2797..5dd9e0d349 100644 > --- a/gnu/packages/crates-io.scm > +++ b/gnu/packages/crates-io.scm > @@ -38927,6 +38927,19 @@ (define-public rust-notify-5 > notification library.") > (license (list license:cc0 license:artistic2.0)))) > > +(define-public rust-notify-5-pre.13 > + (package > + (inherit rust-notify-5) > + (name "rust-notify") > + (version "5.0.0-pre.13") > + (source (origin > + (method url-fetch) > + (uri (crate-uri "notify" version)) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + > "0za8mpacxkr62fii5h7ny4h396y0m8myd3hf08njqdg2h21kap94")))))) > + LGTM, but idk anything about rust. > (define-public rust-notify-4 > (package > (inherit rust-notify-5) > diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm > index 8c29969712..0571af498c 100644 > --- a/gnu/packages/rust-apps.scm > +++ b/gnu/packages/rust-apps.scm > @@ -1775,7 +1775,7 @@ (define-public rust-analyzer > ("rust-memmap2" ,rust-memmap2-0.5) > ("rust-mimalloc" ,rust-mimalloc-0.1) > ("rust-miow" ,rust-miow-0.4) > - ("rust-notify" ,rust-notify-5) > + ("rust-notify" ,rust-notify-5-pre.13) > ("rust-object" ,rust-object-0.28) > ("rust-once-cell" ,rust-once-cell-1) > ("rust-parking-lot" ,rust-parking-lot-0.11) Same here. Cheers ^ permalink raw reply [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH 0/2] Fix build of rust-analyzer v2022-01-10. 2023-07-29 18:44 ` Liliana Marie Prikler @ 2023-08-05 2:27 ` Distopico 2023-08-05 2:40 ` [bug#64720] [PATCH 1/2] gnu: Add rust-notify-5-pre.13 Distopico 1 sibling, 0 replies; 17+ messages in thread From: Distopico @ 2023-08-05 2:27 UTC (permalink / raw) To: 64720; +Cc: Distopico Comments addressed, thank you for the feedback. Distopico (2): gnu: Add rust-notify-5-pre.13. gnu: rust-analyzer: Fix build of version 2022-01-10. gnu/packages/crates-io.scm | 13 +++++++++++++ gnu/packages/rust-apps.scm | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) base-commit: 42ae42cf41e8f5e88422e30d801251a3427d7f3b -- 2.41.0 ^ permalink raw reply [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH 1/2] gnu: Add rust-notify-5-pre.13. 2023-07-29 18:44 ` Liliana Marie Prikler 2023-08-05 2:27 ` [bug#64720] [PATCH 0/2] Fix build of rust-analyzer v2022-01-10 Distopico @ 2023-08-05 2:40 ` Distopico 2023-08-05 2:40 ` [bug#64720] [PATCH 2/2] gnu: rust-analyzer: Fix build of version 2022-01-10 Distopico 1 sibling, 1 reply; 17+ messages in thread From: Distopico @ 2023-08-05 2:40 UTC (permalink / raw) To: 64720; +Cc: Distopico * gnu/packages/crates-io.scm (rust-notify-5-pre.13): New variable. This pinned version is required by `rust-analyzer` version `2022-01-10`. --- * gnu/packages/crates-io.scm (rust-notify-5-pre.13): New variable. This pinned version is required by `rust-analyzer` version `2022-01-10`. gnu/packages/crates-io.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f9574e2797..5dd9e0d349 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -38927,6 +38927,19 @@ (define-public rust-notify-5 notification library.") (license (list license:cc0 license:artistic2.0)))) +(define-public rust-notify-5-pre.13 + (package + (inherit rust-notify-5) + (name "rust-notify") + (version "5.0.0-pre.13") + (source (origin + (method url-fetch) + (uri (crate-uri "notify" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0za8mpacxkr62fii5h7ny4h396y0m8myd3hf08njqdg2h21kap94")))))) + (define-public rust-notify-4 (package (inherit rust-notify-5) -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH 2/2] gnu: rust-analyzer: Fix build of version 2022-01-10. 2023-08-05 2:40 ` [bug#64720] [PATCH 1/2] gnu: Add rust-notify-5-pre.13 Distopico @ 2023-08-05 2:40 ` Distopico 2023-08-16 21:09 ` [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Ludovic Courtès 0 siblings, 1 reply; 17+ messages in thread From: Distopico @ 2023-08-05 2:40 UTC (permalink / raw) To: 64720; +Cc: Distopico * gnu/packages/rust-apps.scm (rust-analyzer): Update dependency rust-notify-5-pre.13. This fixes the build of `rust-analyzer@2022-01-10`, which required a pinned version of `rust-notify` (`rust-notify-5-pre.13`) to compile. --- * gnu/packages/rust-apps.scm (rust-analyzer): Update dependency rust-notify-5-pre.13. This fixes the build of `rust-analyzer@2022-01-10`, which required a pinned version of `rust-notify` (`rust-notify-5-pre.13`) to compile. gnu/packages/rust-apps.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 8c29969712..0571af498c 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -1775,7 +1775,7 @@ (define-public rust-analyzer ("rust-memmap2" ,rust-memmap2-0.5) ("rust-mimalloc" ,rust-mimalloc-0.1) ("rust-miow" ,rust-miow-0.4) - ("rust-notify" ,rust-notify-5) + ("rust-notify" ,rust-notify-5-pre.13) ("rust-object" ,rust-object-0.28) ("rust-once-cell" ,rust-once-cell-1) ("rust-parking-lot" ,rust-parking-lot-0.11) -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer. 2023-08-05 2:40 ` [bug#64720] [PATCH 2/2] gnu: rust-analyzer: Fix build of version 2022-01-10 Distopico @ 2023-08-16 21:09 ` Ludovic Courtès 2023-08-30 20:34 ` Distopico 0 siblings, 1 reply; 17+ messages in thread From: Ludovic Courtès @ 2023-08-16 21:09 UTC (permalink / raw) To: Distopico; +Cc: 64720, Liliana Marie Prikler Hi, Distopico <distopico@riseup.net> skribis: > * gnu/packages/rust-apps.scm (rust-analyzer): Update dependency rust-notify-5-pre.13. > > This fixes the build of `rust-analyzer@2022-01-10`, which required a pinned > version of `rust-notify` (`rust-notify-5-pre.13`) to compile. When applied on top of 07dc3d024763f3768002e422e0d60aac0c1b94ac, I get this on x86_64-linux: --8<---------------cut here---------------start------------->8--- test abis::abi_1_58::rustc_server::tests::test_rustc_server_literals ... ok test abis::abi_1_58::rustc_server::tests::test_rustc_server_to_string ... ok test abis::abi_1_54::rustc_server::tests::test_rustc_server_from_str ... ok test tests::test_derive_error ... FAILED test tests::test_attr_macro ... FAILED test tests::test_derive_empty ... FAILED test tests::test_fn_like_macro2 ... FAILED test tests::test_fn_like_macro ... FAILED memory allocation of 140737312524592 bytes failed error: test failed, to rerun pass `-p proc_macro_srv --lib` Caused by: process didn't exit successfully: `/tmp/guix-build-rust-analyzer-2022-01-10.drv-0/source/target/release/deps/proc_macro_srv-ed08c83337741884 '--skip=tests::test_version_check' '--skip=tests::test_loading_rust_analyzer' '--skip=tests::sourcegen::sourcegen_assists_docs' '--skip=tests::sourcegen_ast::sourcegen_ast' '--skip=tidy::cargo_files_are_tidy' '--skip=tidy::check_licenses' '--skip=tidy::check_merge_commits' '--skip=tidy::check_code_formatting' '--skip=tidy::generate_grammar' '--skip=tidy::generate_assists_tests'` (signal: 6, SIGABRT: process abort signal) error: in phase 'check': uncaught exception: %exception #<&invoke-error program: "cargo" arguments: ("test" "--release" "--" "--skip=tests::test_version_check" "--skip=tests::test_loading_rust_analyzer" "--skip=tests::sourcegen::sourcegen_assists_docs" "--skip=tests::sourcegen_ast::sourcegen_ast" "--skip=tidy::cargo_files_are_tidy" "--skip=tidy::check_licenses" "--skip=tidy::check_merge_commits" "--skip=tidy::check_code_formatting" "--skip=tidy::generate_grammar" "--skip=tidy::generate_assists_tests") exit-status: 101 term-signal: #f stop-signal: #f> phase `check' failed after 164.4 seconds command "cargo" "test" "--release" "--" "--skip=tests::test_version_check" "--skip=tests::test_loading_rust_analyzer" "--skip=tests::sourcegen::sourcegen_assists_docs" "--skip=tests::sourcegen_ast::sourcegen_ast" "--skip=tidy::cargo_files_are_tidy" "--skip=tidy::check_licenses" "--skip=tidy::check_merge_commits" "--skip=tidy::check_code_formatting" "--skip=tidy::generate_grammar" "--skip=tidy::generate_assists_tests" failed with status 101 builder for `/gnu/store/qjpz8f8g5x5wx3y1lviz5kyy9hza4msp-rust-analyzer-2022-01-10.drv' failed with exit code 1 --8<---------------cut here---------------end--------------->8--- Could you take a look? Thanks, Ludo’. ^ permalink raw reply [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer. 2023-08-16 21:09 ` [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Ludovic Courtès @ 2023-08-30 20:34 ` Distopico 0 siblings, 0 replies; 17+ messages in thread From: Distopico @ 2023-08-30 20:34 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 64720, Liliana Marie Prikler [-- Attachment #1: Type: text/plain, Size: 3021 bytes --] Hi Ludo On 2023-08-16, Ludovic Courtès <ludo@gnu.org> wrote: > Hi, > > Distopico <distopico@riseup.net> skribis: > >> * gnu/packages/rust-apps.scm (rust-analyzer): Update dependency rust-notify-5-pre.13. >> >> This fixes the build of `rust-analyzer@2022-01-10`, which required a pinned >> version of `rust-notify` (`rust-notify-5-pre.13`) to compile. > > When applied on top of 07dc3d024763f3768002e422e0d60aac0c1b94ac, I get > this on x86_64-linux: > > --8<---------------cut here---------------start------------->8--- > test abis::abi_1_58::rustc_server::tests::test_rustc_server_literals ... ok > test abis::abi_1_58::rustc_server::tests::test_rustc_server_to_string ... ok > test abis::abi_1_54::rustc_server::tests::test_rustc_server_from_str ... ok > test tests::test_derive_error ... FAILED > test tests::test_attr_macro ... FAILED > test tests::test_derive_empty ... FAILED > test tests::test_fn_like_macro2 ... FAILED > test tests::test_fn_like_macro ... FAILED > memory allocation of 140737312524592 bytes failed > error: test failed, to rerun pass `-p proc_macro_srv --lib` > > Caused by: > process didn't exit successfully: `/tmp/guix-build-rust-analyzer-2022-01-10.drv-0/source/target/release/deps/proc_macro_srv-ed08c83337741884 '--skip=tests::test_version_check' '--skip=tests::test_loading_rust_analyzer' '--skip=tests::sourcegen::sourcegen_assists_docs' '--skip=tests::sourcegen_ast::sourcegen_ast' '--skip=tidy::cargo_files_are_tidy' '--skip=tidy::check_licenses' '--skip=tidy::check_merge_commits' '--skip=tidy::check_code_formatting' '--skip=tidy::generate_grammar' '--skip=tidy::generate_assists_tests'` (signal: 6, SIGABRT: process abort signal) > error: in phase 'check': uncaught exception: > %exception #<&invoke-error program: "cargo" arguments: ("test" "--release" "--" "--skip=tests::test_version_check" "--skip=tests::test_loading_rust_analyzer" "--skip=tests::sourcegen::sourcegen_assists_docs" "--skip=tests::sourcegen_ast::sourcegen_ast" "--skip=tidy::cargo_files_are_tidy" "--skip=tidy::check_licenses" "--skip=tidy::check_merge_commits" "--skip=tidy::check_code_formatting" "--skip=tidy::generate_grammar" "--skip=tidy::generate_assists_tests") exit-status: 101 term-signal: #f stop-signal: #f> > phase `check' failed after 164.4 seconds > command "cargo" "test" "--release" "--" "--skip=tests::test_version_check" "--skip=tests::test_loading_rust_analyzer" "--skip=tests::sourcegen::sourcegen_assists_docs" "--skip=tests::sourcegen_ast::sourcegen_ast" "--skip=tidy::cargo_files_are_tidy" "--skip=tidy::check_licenses" "--skip=tidy::check_merge_commits" "--skip=tidy::check_code_formatting" "--skip=tidy::generate_grammar" "--skip=tidy::generate_assists_tests" failed with status 101 > builder for `/gnu/store/qjpz8f8g5x5wx3y1lviz5kyy9hza4msp-rust-analyzer-2022-01-10.drv' failed with exit code 1 > --8<---------------cut here---------------end--------------->8--- > > Could you take a look? > > Thanks, > Ludo’. Fixed, thank you [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 515 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH 0/8] gnu: rust-analyzer: Fix build of rust-analyzer. 2023-07-19 2:26 [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Distopico 2023-07-29 18:44 ` Liliana Marie Prikler @ 2023-08-30 19:50 ` Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico 2 siblings, 0 replies; 17+ messages in thread From: Distopico @ 2023-08-30 19:50 UTC (permalink / raw) To: 64720; +Cc: Distopico v1 -> v2: Set required rust version and pin additional dependencies to required version Also skip some test that required reust 1.60 but is not possible use that version due seeveral packages has their dependencies required of rust-serde-json-1 that was updateto use indexmap2 and need min rust 1.64. Distopico (8): gnu: Add rust-notify-5-pre.13. gnu: rust-analyzer: Fix build of version 2022-01-10. gnu: Add rust-either-1.6.0. gnu: Add rust-proc-macro2-1.0.34. gnu: Add rust-quote-1.0.10. gnu: Add rust-serde-json-1.0.73. gnu: Add rust-trybuild-1.0.19. gnu: rust-analyzer: update required dependencies version gnu/packages/crates-io.scm | 132 +++++++++++++++++++++++++++++++++++-- gnu/packages/rust-apps.scm | 34 ++++++---- gnu/packages/rust.scm | 6 +- 3 files changed, 149 insertions(+), 23 deletions(-) base-commit: 74d72046bdc1ed6c859565570d0db58d20c9ddd7 -- 2.41.0 ^ permalink raw reply [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13. 2023-07-19 2:26 [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Distopico 2023-07-29 18:44 ` Liliana Marie Prikler 2023-08-30 19:50 ` [bug#64720] [PATCH 0/8] " Distopico @ 2023-08-30 19:58 ` Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 2/8] gnu: rust-analyzer: Fix build of version 2022-01-10 Distopico ` (6 more replies) 2 siblings, 7 replies; 17+ messages in thread From: Distopico @ 2023-08-30 19:58 UTC (permalink / raw) To: 64720; +Cc: Distopico * gnu/packages/crates-io.scm (rust-notify-5-pre.13): New variable. This pinned version is required by `rust-analyzer` version `2022-01-10`. --- * gnu/packages/crates-io.scm (rust-notify-5-pre.13): New variable. This pinned version is required by `rust-analyzer` version `2022-01-10`. gnu/packages/crates-io.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 77a41a5116..b6e2ac4507 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -41724,6 +41724,19 @@ (define-public rust-notify-5 notification library.") (license (list license:cc0 license:artistic2.0)))) +(define-public rust-notify-5-pre.13 + (package + (inherit rust-notify-5) + (name "rust-notify") + (version "5.0.0-pre.13") + (source (origin + (method url-fetch) + (uri (crate-uri "notify" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0za8mpacxkr62fii5h7ny4h396y0m8myd3hf08njqdg2h21kap94")))))) + (define-public rust-notify-4 (package (inherit rust-notify-5) -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH v2 2/8] gnu: rust-analyzer: Fix build of version 2022-01-10. 2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico @ 2023-08-30 19:58 ` Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 3/8] gnu: Add rust-either-1.6.0 Distopico ` (5 subsequent siblings) 6 siblings, 0 replies; 17+ messages in thread From: Distopico @ 2023-08-30 19:58 UTC (permalink / raw) To: 64720; +Cc: Distopico * gnu/packages/rust-apps.scm (rust-analyzer): Update dependency rust-notify-5-pre.13. This fixes the build of `rust-analyzer@2022-01-10`, which required a pinned version of `rust-notify` (`rust-notify-5-pre.13`) to compile and rust >= 1.64. --- * gnu/packages/rust-apps.scm (rust-analyzer): Update dependency rust-notify-5-pre.13. This fixes the build of `rust-analyzer@2022-01-10`, which required a pinned version of `rust-notify` (`rust-notify-5-pre.13`) to compile and rust >= 1.64. gnu/packages/rust-apps.scm | 22 +++++++++++++++------- gnu/packages/rust.scm | 6 +++--- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index a291282325..8c7d8006cc 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -1780,9 +1780,10 @@ (define-public rust-analyzer "1ci85bp8xwqrk8nqr8sh6yj8njgd98nhgnhaks2g00c77wwyra41")))) (build-system cargo-build-system) (arguments - `(#:install-source? #f ; virtual manifest + `(#:rust ,rust-1.64 + #:install-source? #f ; virtual manifest #:cargo-test-flags - '("--release" "--" + '("--release" "--lib" "--tests" "--" "--skip=tests::test_version_check" ;it need rustc's version ;; FIXME: Guix's rust does not install source in ;; %out/lib/rustlib/src/rust so "can't load standard library from @@ -1793,12 +1794,19 @@ (define-public rust-analyzer "--skip=tests::sourcegen::sourcegen_assists_docs" ;need rustfmt "--skip=tests::sourcegen_ast::sourcegen_ast" ;same - "--skip=tidy::cargo_files_are_tidy" ;not needed "--skip=tidy::check_licenses" ;it runs cargo metadata "--skip=tidy::check_merge_commits" ;it runs git rev-list "--skip=tidy::check_code_formatting" ;need rustfmt as cargo fmt - "--skip=tidy::generate_grammar" ;same - "--skip=tidy::generate_assists_tests") ;same + + ;; These tests require rust <= 1.60 and too many packages + ;; has as dependency rust-serde-json-1 that use indexmap2 + ;; and it need rust >= 1.64 + "--skip=tests::list_test_macros" + "--skip=tests::test_derive_empty" + "--skip=tests::test_attr_macro" + "--skip=tests::test_fn_like_macro" + "--skip=tests::test_fn_like_macro2" + "--skip=tests::test_derive_error") #:cargo-development-inputs (("rust-arbitrary" ,rust-arbitrary-1) ("rust-derive-arbitrary" ,rust-derive-arbitrary-1) @@ -1845,7 +1853,7 @@ (define-public rust-analyzer ("rust-memmap2" ,rust-memmap2-0.5) ("rust-mimalloc" ,rust-mimalloc-0.1) ("rust-miow" ,rust-miow-0.4) - ("rust-notify" ,rust-notify-5) + ("rust-notify" ,rust-notify-5-pre.13) ("rust-object" ,rust-object-0.28) ("rust-once-cell" ,rust-once-cell-1) ("rust-parking-lot" ,rust-parking-lot-0.11) @@ -1927,7 +1935,7 @@ (define-public rust-analyzer (chdir "../..") (install-file "LICENSE-MIT" doc) (install-file "LICENSE-APACHE" doc))))))) - (native-inputs (list rust-src)) + (native-inputs (list rust-src-1.64)) (home-page "https://rust-analyzer.github.io/") (synopsis "Experimental Rust compiler front-end for IDEs") (description "Rust-analyzer is a modular compiler frontend for the Rust diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 4ee5ded5de..5cfdeffa81 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -652,7 +652,7 @@ (define rust-1.63 (rust-bootstrapped-package rust-1.62 "1.63.0" "1l4rrbzhxv88pnfq94nbyb9m6lfnjwixma3mwjkmvvs2aqlq158z")) -(define rust-1.64 +(define-public rust-1.64 (let ((base-rust (rust-bootstrapped-package rust-1.63 "1.64.0" "018j720b2n12slp4xk64jc6shkncd46d621qdyzh2a8s3r49zkdk"))) @@ -891,10 +891,10 @@ (define-public rust `("procps" ,procps) (package-native-inputs base-rust)))))) -(define-public rust-src +(define-public rust-src-1.64 (hidden-package (package - (inherit rust) + (inherit rust-1.64) (name "rust-src") (build-system copy-build-system) (native-inputs '()) -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH v2 3/8] gnu: Add rust-either-1.6.0. 2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 2/8] gnu: rust-analyzer: Fix build of version 2022-01-10 Distopico @ 2023-08-30 19:58 ` Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 4/8] gnu: Add rust-proc-macro2-1.0.34 Distopico ` (4 subsequent siblings) 6 siblings, 0 replies; 17+ messages in thread From: Distopico @ 2023-08-30 19:58 UTC (permalink / raw) To: 64720; +Cc: Distopico * gnu/packages/crates-io.scm (rust-either-1.6.0): New variable. --- * gnu/packages/crates-io.scm (rust-either-1.6.0): New variable. gnu/packages/crates-io.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b6e2ac4507..6a0f4e187d 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -21557,6 +21557,24 @@ (define-public rust-either-1 @code{Right} is a general purpose sum type with two cases.") (license (list license:expat license:asl2.0)))) +(define-public rust-either-1.6.0 + (package + (inherit rust-either-1) + (name "rust-either") + (version "1.6.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "either" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0mwl9vngqf5jvrhmhn9x60kr5hivxyjxbmby2pybncxfqhf4z3g7")))) + (arguments + `(#:cargo-inputs (("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs (("rust-serde-json" ,rust-serde-json-1.0.73)))))) + (define-public rust-elf-0.0.10 (package (name "rust-elf") -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH v2 4/8] gnu: Add rust-proc-macro2-1.0.34. 2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 2/8] gnu: rust-analyzer: Fix build of version 2022-01-10 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 3/8] gnu: Add rust-either-1.6.0 Distopico @ 2023-08-30 19:58 ` Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 5/8] gnu: Add rust-quote-1.0.10 Distopico ` (3 subsequent siblings) 6 siblings, 0 replies; 17+ messages in thread From: Distopico @ 2023-08-30 19:58 UTC (permalink / raw) To: 64720; +Cc: Distopico * gnu/packages/crates-io.scm (rust-proc-macro2-1.0.34): New variable. --- * gnu/packages/crates-io.scm (rust-proc-macro2-1.0.34): New variable. gnu/packages/crates-io.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6a0f4e187d..70918d16d0 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -49419,6 +49419,27 @@ (define-public rust-proc-macro2-1 in terms of the upstream unstable API.") (license (list license:asl2.0 license:expat)))) +(define-public rust-proc-macro2-1.0.34 + (package + (inherit rust-proc-macro2-1) + (name "rust-proc-macro2") + (version "1.0.34") + (source + (origin + (method url-fetch) + (uri (crate-uri "proc-macro2" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1c93jhwl8lv3hiqqvdhd2d2xhjryh5bqb9w5icr5i7bw1wnfk11g")))) + (arguments + `(#:cargo-test-flags '("--lib") + #:cargo-inputs + (("rust-unicode-ident" ,rust-unicode-ident-1)) + #:cargo-development-inputs + (("rust-quote" ,rust-quote-1.0.10) + ("rust-rustversion" ,rust-rustversion-1)))))) + (define-public rust-proc-macro2-0.4 (package (inherit rust-proc-macro2-1) -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH v2 5/8] gnu: Add rust-quote-1.0.10. 2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico ` (2 preceding siblings ...) 2023-08-30 19:58 ` [bug#64720] [PATCH v2 4/8] gnu: Add rust-proc-macro2-1.0.34 Distopico @ 2023-08-30 19:58 ` Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 6/8] gnu: Add rust-serde-json-1.0.73 Distopico ` (2 subsequent siblings) 6 siblings, 0 replies; 17+ messages in thread From: Distopico @ 2023-08-30 19:58 UTC (permalink / raw) To: 64720; +Cc: Distopico * gnu/packages/crates-io.scm (rust-quote-1.0.10): New variable. --- * gnu/packages/crates-io.scm (rust-quote-1.0.10): New variable. gnu/packages/crates-io.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 70918d16d0..d245b32959 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -51640,6 +51640,25 @@ (define-public rust-quote-1 (description "Quasi-quoting macro quote!(...)") (license (list license:asl2.0 license:expat)))) +(define-public rust-quote-1.0.10 + (package + (inherit rust-quote-1) + (name "rust-quote") + (version "1.0.10") + (source (origin + (method url-fetch) + (uri (crate-uri "quote" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "01ff7a76f871ggnby57iagw6499vci4bihcr11g6bqzjlp38rg1q")))) + (arguments + `(#:cargo-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1.0.34)) + #:cargo-development-inputs + (("rust-rustversion" ,rust-rustversion-1) + ("rust-trybuild" ,rust-trybuild-1.0.19)))))) + (define-public rust-quote-0.6 (package (inherit rust-quote-1) -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH v2 6/8] gnu: Add rust-serde-json-1.0.73. 2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico ` (3 preceding siblings ...) 2023-08-30 19:58 ` [bug#64720] [PATCH v2 5/8] gnu: Add rust-quote-1.0.10 Distopico @ 2023-08-30 19:58 ` Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 7/8] gnu: Add rust-trybuild-1.0.19 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 8/8] gnu: rust-analyzer: update required dependencies version Distopico 6 siblings, 0 replies; 17+ messages in thread From: Distopico @ 2023-08-30 19:58 UTC (permalink / raw) To: 64720; +Cc: Distopico * gnu/packages/crates-io.scm (rust-serde-json-1.0.73): New variable. --- * gnu/packages/crates-io.scm (rust-serde-json-1.0.73): New variable. gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d245b32959..a89db5ba46 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -59866,6 +59866,32 @@ (define-public rust-serde-json-1 "This package provides a JSON serialization file format.") (license (list license:expat license:asl2.0)))) +(define-public rust-serde-json-1.0.73 + (package + (inherit rust-serde-json-1) + (name "rust-serde-json") + (version "1.0.73") + (source + (origin + (method url-fetch) + (uri (crate-uri "serde-json" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1xbwmzc5j6r1nz62a20w6l9bkwbhzd11vwbdqmzbqcv5pi207gdw")))) + (arguments + `(#:cargo-inputs + (("rust-indexmap" ,rust-indexmap-1.7) + ("rust-itoa" ,rust-itoa-1) + ("rust-ryu" ,rust-ryu-1) + ("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs + (("rust-automod" ,rust-automod-1) + ("rust-rustversion" ,rust-rustversion-1) + ("rust-serde-bytes" ,rust-serde-bytes-0.11) + ("rust-serde-derive" ,rust-serde-derive-1) + ("rust-serde-stacker" ,rust-serde-stacker-0.1) + ("rust-trybuild" ,rust-trybuild-1)))))) + (define-public rust-serde-json-0.9 (package (inherit rust-serde-json-1) -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH v2 7/8] gnu: Add rust-trybuild-1.0.19. 2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico ` (4 preceding siblings ...) 2023-08-30 19:58 ` [bug#64720] [PATCH v2 6/8] gnu: Add rust-serde-json-1.0.73 Distopico @ 2023-08-30 19:58 ` Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 8/8] gnu: rust-analyzer: update required dependencies version Distopico 6 siblings, 0 replies; 17+ messages in thread From: Distopico @ 2023-08-30 19:58 UTC (permalink / raw) To: 64720; +Cc: Distopico * gnu/packages/crates-io.scm (rust-trybuild-1.0.19): New variable. --- * gnu/packages/crates-io.scm (rust-trybuild-1.0.19): New variable. gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index a89db5ba46..019afc010a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -73245,6 +73245,29 @@ (define-public rust-trybuild-1 "Test harness for ui tests of compiler diagnostics.") (license (list license:expat license:asl2.0)))) +(define-public rust-trybuild-1.0.19 + (package + (inherit rust-trybuild-1) + (name "rust-trybuild") + (version "1.0.19") + (source + (origin + (method url-fetch) + (uri (crate-uri "trybuild" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0ab7ahdx563n6kbm14pm3qnxq4fp06pz42nh5ii4acvlzycnwdh4")))) + (arguments + `(#:cargo-inputs + (("rust-toml" ,rust-toml-0.5) + ("rust-dissimilar" ,rust-dissimilar-1) + ("rust-glob" ,rust-glob-0.3) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1.0.73) + ("rust-termcolor" ,rust-termcolor-1)) + #:cargo-development-inputs (("rust-automod" ,rust-automod-1)))))) + (define-public rust-trybuild2-1 (package (name "rust-trybuild2") -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [bug#64720] [PATCH v2 8/8] gnu: rust-analyzer: update required dependencies version 2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico ` (5 preceding siblings ...) 2023-08-30 19:58 ` [bug#64720] [PATCH v2 7/8] gnu: Add rust-trybuild-1.0.19 Distopico @ 2023-08-30 19:58 ` Distopico 2023-09-09 13:31 ` bug#64720: [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Ludovic Courtès 6 siblings, 1 reply; 17+ messages in thread From: Distopico @ 2023-08-30 19:58 UTC (permalink / raw) To: 64720; +Cc: Distopico use pinned versions of different dependencies required by rust-analyzer@2022-01-10 --- use pinned versions of different dependencies required by rust-analyzer@2022-01-10 gnu/packages/crates-io.scm | 12 ++++++------ gnu/packages/rust-apps.scm | 12 +++++------- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 019afc010a..3c83563c45 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -57560,7 +57560,7 @@ (define-public rust-salsa-0.17 #:cargo-inputs (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8) - ("rust-indexmap" ,rust-indexmap-1) + ("rust-indexmap" ,rust-indexmap-1.7) ("rust-lock-api" ,rust-lock-api-0.4) ("rust-log" ,rust-log-0.4) ("rust-oorandom" ,rust-oorandom-11.1) @@ -59960,7 +59960,7 @@ (define-public rust-serde-path-to-error-0.1 (("rust-serde" ,rust-serde-1)) #:cargo-development-inputs (("rust-serde-derive" ,rust-serde-derive-1) - ("rust-serde-json" ,rust-serde-json-1)))) + ("rust-serde-json" ,rust-serde-json-1.0.73)))) (home-page "https://github.com/dtolnay/path-to-error") (synopsis @@ -60018,14 +60018,14 @@ (define-public rust-serde-repr-0.1 (build-system cargo-build-system) (arguments `(#:cargo-inputs - (("rust-proc-macro2" ,rust-proc-macro2-1) - ("rust-quote" ,rust-quote-1) + (("rust-proc-macro2" ,rust-proc-macro2-1.0.34) + ("rust-quote" ,rust-quote-1.0.10) ("rust-syn" ,rust-syn-1)) #:cargo-development-inputs (("rust-rustversion" ,rust-rustversion-1) ("rust-serde" ,rust-serde-1) - ("rust-serde-json" ,rust-serde-json-1) - ("rust-trybuild" ,rust-trybuild-1)))) + ("rust-serde-json" ,rust-serde-json-1.0.73) + ("rust-trybuild" ,rust-trybuild-1.0.19)))) (home-page "https://github.com/dtolnay/serde-repr") (synopsis "Serialize and deserialize C-like enum as underlying repr") (description diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 8c7d8006cc..76d48e55f1 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -1812,7 +1812,7 @@ (define-public rust-analyzer ("rust-derive-arbitrary" ,rust-derive-arbitrary-1) ("rust-expect-test" ,rust-expect-test-1) ("rust-oorandom" ,rust-oorandom-11.1) - ("rust-quote" ,rust-quote-1) + ("rust-quote" ,rust-quote-1.0.10) ("rust-rayon" ,rust-rayon-1) ("rust-tracing" ,rust-tracing-0.1) ("rust-tracing-subscriber" ,rust-tracing-subscriber-0.3) @@ -1823,7 +1823,6 @@ (define-public rust-analyzer ("rust-anyhow" ,rust-anyhow-1) ("rust-anymap" ,rust-anymap-0.12) ("rust-arrayvec" ,rust-arrayvec-0.7) - ("rust-backtrace" ,rust-backtrace-0.3) ("rust-cargo-metadata" ,rust-cargo-metadata-0.14) ("rust-cfg-if" ,rust-cfg-if-1) ("rust-chalk-ir" ,rust-chalk-ir-0.75) @@ -1832,17 +1831,16 @@ (define-public rust-analyzer ("rust-countme" ,rust-countme-3) ("rust-cov-mark" ,rust-cov-mark-2) ("rust-crossbeam-channel" ,rust-crossbeam-channel-0.5) - ("rust-dashmap" ,rust-dashmap-4) ("rust-dissimilar" ,rust-dissimilar-1) ("rust-dot" ,rust-dot-0.1) ("rust-drop-bomb" ,rust-drop-bomb-0.1) - ("rust-either" ,rust-either-1) + ("rust-either" ,rust-either-1.6.0) ("rust-ena" ,rust-ena-0.14) ("rust-env-logger" ,rust-env-logger-0.8) ("rust-flate2" ,rust-flate2-1) ("rust-fst" ,rust-fst-0.4) ("rust-home" ,rust-home-0.5) - ("rust-indexmap" ,rust-indexmap-1) + ("rust-indexmap" ,rust-indexmap-1.7) ("rust-itertools" ,rust-itertools-0.10) ("rust-jod-thread" ,rust-jod-thread-0.1) ("rust-libc" ,rust-libc-0.2) @@ -1858,7 +1856,7 @@ (define-public rust-analyzer ("rust-once-cell" ,rust-once-cell-1) ("rust-parking-lot" ,rust-parking-lot-0.11) ("rust-perf-event" ,rust-perf-event-0.4) - ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-proc-macro2" ,rust-proc-macro2-1.0.34) ("rust-pulldown-cmark" ,rust-pulldown-cmark-0.8) ("rust-pulldown-cmark-to-cmark" ,rust-pulldown-cmark-to-cmark-7) ("rust-rowan" ,rust-rowan-0.15) @@ -1867,7 +1865,7 @@ (define-public rust-analyzer ("rust-salsa" ,rust-salsa-0.17) ("rust-scoped-tls" ,rust-scoped-tls-1) ("rust-serde" ,rust-serde-1) - ("rust-serde-json" ,rust-serde-json-1) + ("rust-serde-json" ,rust-serde-json-1.0.73) ("rust-serde-path-to-error" ,rust-serde-path-to-error-0.1) ("rust-typed-arena" ,rust-typed-arena-2) ("rust-smallvec" ,rust-smallvec-1) -- 2.41.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* bug#64720: [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer. 2023-08-30 19:58 ` [bug#64720] [PATCH v2 8/8] gnu: rust-analyzer: update required dependencies version Distopico @ 2023-09-09 13:31 ` Ludovic Courtès 0 siblings, 0 replies; 17+ messages in thread From: Ludovic Courtès @ 2023-09-09 13:31 UTC (permalink / raw) To: Distopico Cc: 64720-done, Tobias Geerinckx-Rice, Simon Tournier, paren, Christopher Baines, Ricardo Wurmus, Raghav Gururajan, jgart, Mathieu Othacehe Hi Distopico, Finally applied this whole series, thanks! For the record, <https://qa.guix.gnu.org/issue/64720> reported 3 additional successful builds and 1 new failure on x86_64-linux: <https://data.qa.guix.gnu.org/compare/package-derivations?base_commit=74d72046bdc1ed6c859565570d0db58d20c9ddd7&target_commit=51f0626b77f9ca9ac718b78b13ac76781f749e7b&system=x86_64-linux&target=none>. Ludo’. ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2023-09-09 13:32 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-19 2:26 [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Distopico 2023-07-29 18:44 ` Liliana Marie Prikler 2023-08-05 2:27 ` [bug#64720] [PATCH 0/2] Fix build of rust-analyzer v2022-01-10 Distopico 2023-08-05 2:40 ` [bug#64720] [PATCH 1/2] gnu: Add rust-notify-5-pre.13 Distopico 2023-08-05 2:40 ` [bug#64720] [PATCH 2/2] gnu: rust-analyzer: Fix build of version 2022-01-10 Distopico 2023-08-16 21:09 ` [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Ludovic Courtès 2023-08-30 20:34 ` Distopico 2023-08-30 19:50 ` [bug#64720] [PATCH 0/8] " Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 2/8] gnu: rust-analyzer: Fix build of version 2022-01-10 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 3/8] gnu: Add rust-either-1.6.0 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 4/8] gnu: Add rust-proc-macro2-1.0.34 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 5/8] gnu: Add rust-quote-1.0.10 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 6/8] gnu: Add rust-serde-json-1.0.73 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 7/8] gnu: Add rust-trybuild-1.0.19 Distopico 2023-08-30 19:58 ` [bug#64720] [PATCH v2 8/8] gnu: rust-analyzer: update required dependencies version Distopico 2023-09-09 13:31 ` bug#64720: [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Ludovic Courtès
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/guix.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.