gnu: vigra: Update to 1.11.0.
* gnu/packages/image.scm (vigra)[source]: Update to 1.11.0. [arguments]: Disable parallel builds.
This commit is contained in:
parent
c5e2b69d59
commit
019b38758c
1 changed files with 51 additions and 54 deletions
|
@ -45,7 +45,6 @@
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (srfi srfi-1))
|
#:use-module (srfi srfi-1))
|
||||||
|
@ -547,20 +546,17 @@ graphics image formats like PNG, BMP, JPEG, TIFF and others.")
|
||||||
(home-page "http://freeimage.sourceforge.net")))
|
(home-page "http://freeimage.sourceforge.net")))
|
||||||
|
|
||||||
(define-public vigra
|
(define-public vigra
|
||||||
(let ((commit "a378732"))
|
|
||||||
(package
|
(package
|
||||||
(name "vigra")
|
(name "vigra")
|
||||||
(version (string-append "1.10.0-1-" commit))
|
(version "1.11.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append "https://github.com/ukoethe/vigra/releases/download/"
|
||||||
(url "https://github.com/ukoethe/vigra.git")
|
"Version-1-11-0/vigra-"
|
||||||
(commit commit)))
|
version "-src.tar.gz"))
|
||||||
(file-name (string-append name "-" version))
|
(sha256 (base32
|
||||||
(sha256
|
"1jzm79kqiiilvys3b8mlzy9cvmiirrcwsrlg19qd9rza8zipsqb8"))))
|
||||||
(base32
|
|
||||||
"0gvbfrnss1vnkmajsv716yy317j4mx5kn1rxrblxqqyghws47jm5"))))
|
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("boost" ,boost)
|
`(("boost" ,boost)
|
||||||
|
@ -582,6 +578,7 @@ graphics image formats like PNG, BMP, JPEG, TIFF and others.")
|
||||||
("python2-sphinx" ,python2-sphinx)))
|
("python2-sphinx" ,python2-sphinx)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "check"
|
`(#:test-target "check"
|
||||||
|
#:parallel-build? #f ; parallel builds trigger an ICE
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list "-Wno-dev" ; suppress developer mode with lots of warnings
|
(list "-Wno-dev" ; suppress developer mode with lots of warnings
|
||||||
(string-append "-DVIGRANUMPY_INSTALL_DIR="
|
(string-append "-DVIGRANUMPY_INSTALL_DIR="
|
||||||
|
@ -602,7 +599,7 @@ processing and analysis library that puts its main emphasis on customizable
|
||||||
algorithms and data structures. It is particularly strong for
|
algorithms and data structures. It is particularly strong for
|
||||||
multi-dimensional image processing.")
|
multi-dimensional image processing.")
|
||||||
(license license:expat)
|
(license license:expat)
|
||||||
(home-page "https://hci.iwr.uni-heidelberg.de/vigra"))))
|
(home-page "https://hci.iwr.uni-heidelberg.de/vigra")))
|
||||||
|
|
||||||
(define-public libwebp
|
(define-public libwebp
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue