gnu: julia-rotations: Update to 1.0.2-1.b599102.

* gnu/packages/julia-xyz.scm (julia-rotations): Update to 1.0.2-1.b599102.
This commit is contained in:
Efraim Flashner 2021-07-29 10:23:02 +03:00
parent 1cc36f5efe
commit d09223edab
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3329,33 +3329,36 @@ (define-public julia-richardson
(license license:expat))) (license license:expat)))
(define-public julia-rotations (define-public julia-rotations
(package ;; This is the first commit with support for julia-1.6.
(name "julia-rotations") (let ((commit "b599102535bc3534252c76f3fd4cf521f4741788")
(version "1.0.2") (revision "1"))
(source (package
(origin (name "julia-rotations")
(method git-fetch) (version (git-version "1.0.2" revision commit))
(uri (git-reference (source
(url "https://github.com/JuliaGeometry/Rotations.jl") (origin
(commit (string-append "v" version)))) (method git-fetch)
(file-name (git-file-name name version)) (uri (git-reference
(sha256 (url "https://github.com/JuliaGeometry/Rotations.jl")
(base32 "1l1a3bnrpv9qdksnk3c8j82ik3yrnpsmnyxyiy3gc1yjya5pajqj")))) (commit commit)))
(build-system julia-build-system) (file-name (git-file-name name version))
(propagated-inputs (sha256
`(("julia-staticarrays" ,julia-staticarrays))) (base32 "01wwqbdmj61yiz7rkmams4xg7gb9hbmg325173846ky4b9x1wb19"))))
(native-inputs (build-system julia-build-system)
`(("julia-benchmarktools" ,julia-benchmarktools) (propagated-inputs
("julia-forwarddiff" ,julia-forwarddiff) `(("julia-staticarrays" ,julia-staticarrays)))
("julia-unitful" ,julia-unitful))) (native-inputs
(home-page "https://github.com/JuliaGeometry/Rotations.jl") `(("julia-benchmarktools" ,julia-benchmarktools)
(synopsis "Julia implementations for different rotation parameterisations") ("julia-forwarddiff" ,julia-forwarddiff)
(description "This package implements various 3D rotation parameterizations ("julia-unitful" ,julia-unitful)))
(home-page "https://github.com/JuliaGeometry/Rotations.jl")
(synopsis "Julia implementations for different rotation parameterisations")
(description "This package implements various 3D rotation parameterizations
and defines conversions between them. At their heart, each rotation and defines conversions between them. At their heart, each rotation
parameterization is a 3×3 unitary (orthogonal) matrix (based on the parameterization is a 3×3 unitary (orthogonal) matrix (based on the
@code{StaticArrays.jl} package), and acts to rotate a 3-vector about the origin @code{StaticArrays.jl} package), and acts to rotate a 3-vector about the origin
through matrix-vector multiplication.") through matrix-vector multiplication.")
(license license:expat))) (license license:expat))))
(define-public julia-safetestsets (define-public julia-safetestsets
;; The only release tag is the first commit in the repository. ;; The only release tag is the first commit in the repository.