gnu: julia-fixedpointnumbers: Update to 0.8.5.
* gnu/packages/julia-xyz.scm (julia-fixedpointnumbers): Update to 0.8.5. (julia-colortypes)[arguments]: Remove 'skip-failing-test phase. Change-Id: I18cee60a90311af0a052e5d49e4f2b43b54e7e14master
parent
c634135ef9
commit
b3d8d5511f
|
@ -1102,15 +1102,6 @@ color scales for graphics.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0cp5wbi2bhnxp4h7wpzkx341d47744f4c9a8n0w0kn016qa16m86"))))
|
(base32 "0cp5wbi2bhnxp4h7wpzkx341d47744f4c9a8n0w0kn016qa16m86"))))
|
||||||
(build-system julia-build-system)
|
(build-system julia-build-system)
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:phases
|
|
||||||
#~(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'skip-failing-test
|
|
||||||
(lambda _
|
|
||||||
(substitute* "test/conversions.jl"
|
|
||||||
(("@test promote\\(RGB\\{N0f8")
|
|
||||||
"@test_broken promote(RGB{N0f8")))))))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list julia-fixedpointnumbers))
|
(list julia-fixedpointnumbers))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -2337,35 +2328,33 @@ writing @acronym{FITS, Flexible Image Transport System} files, based on the
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-fixedpointnumbers
|
(define-public julia-fixedpointnumbers
|
||||||
(let ((commit "59ee94b93f2f1ee75544ef44187fc0e440cd8015")
|
(package
|
||||||
(revision "1"))
|
(name "julia-fixedpointnumbers")
|
||||||
(package
|
(version "0.8.5")
|
||||||
(name "julia-fixedpointnumbers")
|
(source
|
||||||
(version (git-version "0.8.4" revision commit))
|
(origin
|
||||||
(source
|
(method git-fetch)
|
||||||
(origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "https://github.com/JuliaMath/FixedPointNumbers.jl")
|
||||||
(uri (git-reference
|
(commit (string-append "v" version))))
|
||||||
(url "https://github.com/JuliaMath/FixedPointNumbers.jl")
|
(file-name (git-file-name name version))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (git-file-name name version))
|
(base32 "1cixh2acxscrgxglgbj2mlp2bk2yvqil1kjfvnp1xi0zp6px60f6"))))
|
||||||
(sha256
|
(build-system julia-build-system)
|
||||||
(base32 "1ghriy7p2fj7mwdx11ssjg28jmwz8pi13c3j8p1grvwb4nvc0jnq"))))
|
(arguments
|
||||||
(build-system julia-build-system)
|
(list #:tests? #f)) ; Cycle with julia-documenter
|
||||||
(arguments
|
(propagated-inputs
|
||||||
(list #:tests? #f)) ; Cycle with julia-documenter
|
(list julia-compat))
|
||||||
(propagated-inputs
|
(home-page "https://github.com/JuliaMath/FixedPointNumbers.jl")
|
||||||
(list julia-compat))
|
(synopsis "Fixed point types for Julia")
|
||||||
(home-page "https://github.com/JuliaMath/FixedPointNumbers.jl")
|
(description "@code{FixedPointNumbers.jl} implements fixed-point number
|
||||||
(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 New Issue