gnu: julia-fixedpointnumbers: Update to 0.8.4-1.59ee94b.
* gnu/packages/julia-xyz.scm (julia-fixedpointnumbers): Update to 0.8.4-1.59ee94b. [arguments]: Skip tests. Remove 'disable-failing-test phase.
This commit is contained in:
parent
4473be9858
commit
71fb8f328d
1 changed files with 23 additions and 28 deletions
|
@ -1996,40 +1996,35 @@ using finite difference.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-fixedpointnumbers
|
(define-public julia-fixedpointnumbers
|
||||||
(package
|
(let ((commit "59ee94b93f2f1ee75544ef44187fc0e440cd8015")
|
||||||
(name "julia-fixedpointnumbers")
|
(revision "1"))
|
||||||
(version "0.8.4")
|
(package
|
||||||
(source
|
(name "julia-fixedpointnumbers")
|
||||||
(origin
|
(version (git-version "0.8.4" revision commit))
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference
|
(origin
|
||||||
(url "https://github.com/JuliaMath/FixedPointNumbers.jl")
|
(method git-fetch)
|
||||||
(commit (string-append "v" version))))
|
(uri (git-reference
|
||||||
(file-name (git-file-name name version))
|
(url "https://github.com/JuliaMath/FixedPointNumbers.jl")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32 "0j0n40n04q9sk68wh9jq90m6c67k4ws02k41djjzkrqmpzv4rcdi"))))
|
(file-name (git-file-name name version))
|
||||||
(build-system julia-build-system)
|
(sha256
|
||||||
(arguments
|
(base32 "1ghriy7p2fj7mwdx11ssjg28jmwz8pi13c3j8p1grvwb4nvc0jnq"))))
|
||||||
(list
|
(build-system julia-build-system)
|
||||||
#:phases
|
(arguments
|
||||||
#~(modify-phases %standard-phases
|
(list #:tests? #f)) ; Cycle with julia-documenter
|
||||||
(add-after 'link-depot 'disable-failing-test
|
(propagated-inputs
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(list julia-compat))
|
||||||
(substitute* "test/fixed.jl"
|
(home-page "https://github.com/JuliaMath/FixedPointNumbers.jl")
|
||||||
;; A deprecation warning is not thrown
|
(synopsis "Fixed point types for Julia")
|
||||||
(("@test_logs.*:warn" all) (string-append "# " all))))))))
|
(description "@code{FixedPointNumbers.jl} implements fixed-point number
|
||||||
(propagated-inputs
|
|
||||||
(list julia-compat))
|
|
||||||
(home-page "https://github.com/JuliaMath/FixedPointNumbers.jl")
|
|
||||||
(synopsis "Fixed point types for Julia")
|
|
||||||
(description "@code{FixedPointNumbers.jl} implements fixed-point number
|
|
||||||
types for Julia. A fixed-point number represents a fractional, or
|
types for Julia. A fixed-point number represents a fractional, or
|
||||||
non-integral, number. In contrast with the more widely known floating-point
|
non-integral, number. In contrast with the more widely known floating-point
|
||||||
numbers, with fixed-point numbers the decimal point doesn't \"float\":
|
numbers, with fixed-point numbers the decimal point doesn't \"float\":
|
||||||
fixed-point numbers are effectively integers that are interpreted as being
|
fixed-point numbers are effectively integers that are interpreted as being
|
||||||
scaled by a constant factor. Consequently, they have a fixed number of
|
scaled by a constant factor. Consequently, they have a fixed number of
|
||||||
digits (bits) after the decimal (radix) point.")
|
digits (bits) after the decimal (radix) point.")
|
||||||
(license license:expat)))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public julia-formatting
|
(define-public julia-formatting
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue