gnu: diffoscope: Update to 188.

* gnu/packages/patches/diffoscope-fix-test_item3_deflate_llvm_bitcode.patch:
  Rename patch to...
* gnu/packages/patches/diffoscope-fix-llvm-test.patch: This.
* gnu/local.mk (dist_patch_DATA): Update patch name.
* gnu/packages/diffoscope.scm (diffoscope): Update to 188.
  [source]: Update patch name.
  [arguments]: Add skip-python-tests phase.
  Add fpc-external-tool phase.
  Add use-dumppdf-py phase.
  [native-inputs]: Add fpc.
This commit is contained in:
Vagrant Cascadian 2021-10-27 08:58:22 -07:00 committed by Vagrant Cascadian
parent 2efc7819ce
commit af4ce7bd41
No known key found for this signature in database
GPG key ID: DC518FC87F9716AA
3 changed files with 36 additions and 4 deletions

View file

@ -996,7 +996,7 @@ dist_patch_DATA = \
%D%/packages/patches/desmume-gcc6-fixes.patch \
%D%/packages/patches/desmume-gcc7-fixes.patch \
%D%/packages/patches/dfu-programmer-fix-libusb.patch \
%D%/packages/patches/diffoscope-fix-test_item3_deflate_llvm_bitcode.patch \
%D%/packages/patches/diffoscope-fix-llvm-test.patch \
%D%/packages/patches/diffutils-gets-undeclared.patch \
%D%/packages/patches/dkimproxy-add-ipv6-support.patch \
%D%/packages/patches/docbook-xsl-nonrecursive-string-subst.patch \

View file

@ -49,6 +49,7 @@ (define-module (gnu packages diffoscope)
#:use-module (gnu packages mono)
#:use-module (gnu packages ocaml)
#:use-module (gnu packages package-management)
#:use-module (gnu packages pascal)
#:use-module (gnu packages patchutils)
#:use-module (gnu packages pdf)
#:use-module (gnu packages python-web)
@ -72,7 +73,7 @@ (define-module (gnu packages diffoscope)
(define-public diffoscope
(package
(name "diffoscope")
(version "186")
(version "188")
(source
(origin
(method git-fetch)
@ -81,9 +82,9 @@ (define-public diffoscope
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1qlll5jn76ci5jy915v2kvyngfyycwylxpbdylffzaninvdy3dav"))
(base32 "1byd28ihni5g0ikjjcsq68smj1rw33vv9z0cymqa4ds670c77yvn"))
(patches
(search-patches "diffoscope-fix-test_item3_deflate_llvm_bitcode.patch"))))
(search-patches "diffoscope-fix-llvm-test.patch"))))
(build-system python-build-system)
(arguments
`(#:phases (modify-phases %standard-phases
@ -108,6 +109,36 @@ (define-public diffoscope
(string-append "['" (which "stat") "',"))
(("\\['getfacl',")
(string-append "['" (which "getfacl") "',")))))
(add-after 'unpack 'skip-python-tests
(lambda _
;; Python tests appear to assume python 3.9, remove
;; phase when python is upgraded
(substitute* "tests/comparators/test_python.py"
(("def test_identification")
"def skip_test_identification"))
(substitute* "tests/comparators/test_python.py"
(("def test_diff")
"def skip_test_diff"))))
(add-after 'unpack 'use-dumppdf-py
;; python-pdfminer-six ships "dumppdf" as "dumppdf.py"
;; https://salsa.debian.org/reproducible-builds/diffoscope/-/issues/283
;; Fixed upstream, remove this phase when updating to
;; diffoscope 189
(lambda _
(substitute* "diffoscope/comparators/pdf.py"
(("dumppdf") "dumppdf.py"))
(substitute* "diffoscope/external_tools.py"
(("dumppdf") "dumppdf.py"))
(substitute* "diffoscope/external_tools.py"
(("'debian': 'python3-pdfminer'")
"'debian': 'python3-pdfminer', 'guix': 'python-pdfminer-six'"))))
(add-after 'unpack 'fpc-external-tool
;; Fixed upstream, remove this phase when updating to
;; diffoscope 189
(lambda _
(substitute* "diffoscope/external_tools.py"
(("'debian': 'fp-utils'")
"'debian': 'fp-utils', 'guix': 'fpc'"))))
(add-after 'build 'build-man-page
(lambda* (#:key (make-flags '()) #:allow-other-keys)
(apply invoke "make" "-C" "doc" make-flags)))
@ -182,6 +213,7 @@ (define-public diffoscope
("dtc" ,dtc)
("e2fsprogs" ,e2fsprogs)
("ffmpeg" ,ffmpeg)
("fpc" ,fpc)
("gettext" ,gettext-minimal)
("ghostscript" ,ghostscript)
("giflib:bin" ,giflib "bin")