[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
247/295: gnu: openjpeg: Update package definition.
From: |
guix-commits |
Subject: |
247/295: gnu: openjpeg: Update package definition. |
Date: |
Mon, 27 Jul 2020 06:26:27 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 20c68eb84d53744b36d79ed9462a721f3dd6b23b
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri Jul 10 21:52:18 2020 -0400
gnu: openjpeg: Update package definition.
* gnu/packages/image.scm (openjpeg): Update package definition.
[outputs]: New output "doc".
[arguments]<#:tests?>: Remove argument.
<#:configure-flags>[-DBUILD_DOC]: New flag.
[-DBUILD_LUTS_GENERATOR]: New flag.
[-DBUILD_UNIT_TESTS]: New flag.
[-DBUILD_MJ2]: New flag.
[-DBUILD_JPWL]: New flag.
[-DBUILD_JP3D]: New flag.
[-DBUILD_TESTING]: New flag.
[-DOPJ_DATA_ROOT]: New flag.
<#:phases>['disable-failing-tests]: New phase.
['move-docs]: New phase.
[native-inputs]: Add doxygen, openjpeg-data and python-wrapper.
[inputs]: Add curl and fcgi.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/image.scm | 88 +++++++++++++++++++++++++++++++++++---------------
1 file changed, 62 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 8788de5..d5946fa 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -817,35 +817,71 @@ test suite, including conformance tests (following Rec.
ITU-T T.803 | ISO/IEC
(package
(name "openjpeg")
(version "2.3.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/uclouvain/openjpeg")
- (commit (string-append "v" version))))
- (file-name (git-file-name "openjpeg" version))
- (sha256
- (base32
- "1dn98d2dfa1lqyxxmab6rrcv52dyhjr4g7i4xf2w54fqsx14ynrb"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/uclouvain/openjpeg.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1dn98d2dfa1lqyxxmab6rrcv52dyhjr4g7i4xf2w54fqsx14ynrb"))))
(build-system cmake-build-system)
+ (outputs '("out" "doc"))
(arguments
- '(#:tests? #f ;TODO: requires a 1.1 GiB data repository
- #:configure-flags '("-DBUILD_STATIC_LIBS=OFF")))
+ '(#:configure-flags
+ (list
+ "-DBUILD_DOC=ON"
+ "-DBUILD_STATIC_LIBS=OFF"
+ "-DBUILD_LUTS_GENERATOR=ON"
+ "-DBUILD_UNIT_TESTS=ON"
+ "-DBUILD_MJ2=ON"
+ "-DBUILD_JPWL=ON"
+ ;; To be enabled after Java becomes reproducible.
+ ;; "-DBUILD_JPIP=ON"
+ ;; "-DBUILD_JPIP_SERVER=ON"
+ ;; "-DBUILD_JAVA=ON"
+ "-DBUILD_JP3D=ON"
+ "-DBUILD_TESTING=ON"
+ (string-append "-DOPJ_DATA_ROOT="
+ (assoc-ref %build-inputs "openjpeg-data")))
+ #:phases
+ (modify-phases %standard-phases
+ ;; To be re-enabled after upstream fixes the bug,
+ ;; https://github.com/uclouvain/openjpeg/issues/1264
+ (add-after 'unpack 'disable-failing-tests
+ (lambda _
+ (substitute* "tests/CMakeLists.txt"
+ (("add_subdirectory\\(nonregression\\)")
+ ""))
+ #t))
+ (add-after 'install 'move-docs
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc")))
+ (mkdir-p (string-append doc "/share/doc"))
+ (rename-file
+ (string-append out "/share/doc/html")
+ (string-append doc "/share/doc/html"))
+ #t))))))
+ (native-inputs
+ `(("doxygen" ,doxygen)
+ ("openjpeg-data" ,openjpeg-data) ; Files for test-suite
+ ("python" ,python-wrapper)))
(inputs
- `(("lcms" ,lcms)
- ("libpng" ,libpng)
- ("libtiff" ,libtiff)
- ("zlib" ,zlib)))
- (synopsis "JPEG 2000 codec")
- (description
- "The OpenJPEG library is a JPEG 2000 codec written in C. It has
-been developed in order to promote the use of JPEG 2000, the new
-still-image compression standard from the Joint Photographic Experts
-Group (JPEG).
-
-In addition to the basic codec, various other features are under
-development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats,
-an indexing tool useful for the JPIP protocol, JPWL-tools for
-error-resilience, a Java-viewer for j2k-images, ...")
+ `(("curl" ,curl)
+ ("fcgi" ,fcgi)
+ ("lcms" ,lcms)
+ ("libpng" ,libpng)
+ ("libtiff" ,libtiff)
+ ("zlib" ,zlib)))
+ (synopsis "OPENJPEG Library and Applications")
+ (description "OpenJPEG is an implementation of JPEG 2000 codec written in C
+language. It has been developed in order to promote the use of JPEG 2000, a
+still-image compression standard from the Joint Photographic Experts Group
+(JPEG). Since April 2015, it is officially recognized by ISO/IEC and ITU-T as
a
+JPEG 2000 Reference Software.")
(home-page "https://github.com/uclouvain/openjpeg")
(license license:bsd-2)))
- 289/295: gnu: folks: Update package definition., (continued)
- 289/295: gnu: folks: Update package definition., guix-commits, 2020/07/27
- 290/295: gnu: Add poly2tri-c., guix-commits, 2020/07/27
- 293/295: gnu: gegl: Update package definition., guix-commits, 2020/07/27
- 295/295: gnu: gexiv2: Update package definition., guix-commits, 2020/07/27
- 261/295: gnu: webkitgtk: Update package definition., guix-commits, 2020/07/27
- 271/295: gnu: cairomm: Update package definition., guix-commits, 2020/07/27
- 272/295: gnu: Add cairomm-1.13., guix-commits, 2020/07/27
- 278/295: gnu: java-jakarta-oro: Update hash., guix-commits, 2020/07/27
- 291/295: gnu: Add mmm., guix-commits, 2020/07/27
- 222/295: gnu: Add rust-string-cache-codegen@0.5.1., guix-commits, 2020/07/27
- 247/295: gnu: openjpeg: Update package definition.,
guix-commits <=
- 264/295: gnu: yelp: Update package definition., guix-commits, 2020/07/27
- 266/295: gnu: pixman: Update package definition., guix-commits, 2020/07/27
- 269/295: gnu: libsigc++: Update package definition., guix-commits, 2020/07/27
- 280/295: gnu: gtkmm-2: Update package definition., guix-commits, 2020/07/27
- 283/295: gnu: amtk: Update package definition., guix-commits, 2020/07/27
- 284/295: gnu: babl: Update package definition., guix-commits, 2020/07/27
- 286/295: gnu: Add gtx., guix-commits, 2020/07/27
- 287/295: gnu: Add dee., guix-commits, 2020/07/27