gnu: rust-version-compare 0.0.11: Fix variable name.
In semanic versioning, the last non-zero numer is relevant. 0.0.10 is not expected to be compatible with 0.0.11. * gnu/packages/crates-io.scm: (rust-version-compare-0.0.11): Rename from … (rust-version-compare-0.0): … this, which becomes an alias of the former. (rust-system-deps-1)[source]<snippet>: Use new version string. [arguments]<#:cargo-inputs>: Use new variable name.
This commit is contained in:
parent
0ccb46a926
commit
4c5f7dac9d
1 changed files with 5 additions and 3 deletions
|
|
@ -54473,7 +54473,7 @@ dependencies declarative, so other tools can read them as well.")
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin (substitute* "Cargo.toml"
|
'(begin (substitute* "Cargo.toml"
|
||||||
(("0.0.10") "0.0"))
|
(("0.0.10") "0.0.11"))
|
||||||
#t))))
|
#t))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;source is missing some test files
|
`(#:tests? #f ;source is missing some test files
|
||||||
|
|
@ -54484,7 +54484,7 @@ dependencies declarative, so other tools can read them as well.")
|
||||||
("rust-strum-macros" ,rust-strum-macros-0.18)
|
("rust-strum-macros" ,rust-strum-macros-0.18)
|
||||||
("rust-thiserror" ,rust-thiserror-1)
|
("rust-thiserror" ,rust-thiserror-1)
|
||||||
("rust-toml" ,rust-toml-0.5)
|
("rust-toml" ,rust-toml-0.5)
|
||||||
("rust-version-compare" ,rust-version-compare-0.0))
|
("rust-version-compare" ,rust-version-compare-0.0.11))
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-itertools" ,rust-itertools-0.9))))))
|
(("rust-itertools" ,rust-itertools-0.9))))))
|
||||||
|
|
||||||
|
|
@ -62186,7 +62186,7 @@ If that fails, no determination is made, and calls return None.")
|
||||||
(base32
|
(base32
|
||||||
"1pf91pvj8n6akh7w6j5ypka6aqz08b3qpzgs0ak2kjf4frkiljwi"))))))
|
"1pf91pvj8n6akh7w6j5ypka6aqz08b3qpzgs0ak2kjf4frkiljwi"))))))
|
||||||
|
|
||||||
(define-public rust-version-compare-0.0
|
(define-public rust-version-compare-0.0.11
|
||||||
(package
|
(package
|
||||||
(name "rust-version-compare")
|
(name "rust-version-compare")
|
||||||
(version "0.0.11")
|
(version "0.0.11")
|
||||||
|
|
@ -62206,6 +62206,8 @@ If that fails, no determination is made, and calls return None.")
|
||||||
numbers, and test them against various comparison operators.")
|
numbers, and test them against various comparison operators.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-version-compare-0.0 rust-version-compare-0.0.11)
|
||||||
|
|
||||||
(define-public rust-version-sync-0.8
|
(define-public rust-version-sync-0.8
|
||||||
(package
|
(package
|
||||||
(name "rust-version-sync")
|
(name "rust-version-sync")
|
||||||
|
|
|
||||||
Reference in a new issue