Archived
1
0
Fork 0

gnu: libexif: Update to 0.6.24. [fixes CVE-2020-0198, CVE-2020-0452]

* gnu/packages/photo.scm (libexif): Update to 0.6.24.
[source]: Switch to git checkout.
[native-inputs]: Add autoconf, automake, gettext-minimal and libtool.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Bruno Victal 2023-04-02 18:55:08 +01:00 committed by Ludovic Courtès
parent 452b2ec593
commit 11e671c816
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -211,18 +211,19 @@ cameras (CRW/CR2, NEF, RAF, DNG, and others).")
(define-public libexif (define-public libexif
(package (package
(name "libexif") (name "libexif")
(version "0.6.22") (version "0.6.24")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/libexif/libexif/releases" (url "https://github.com/libexif/libexif.git")
"/download/libexif-" (commit (string-append "v" version))))
(string-map (lambda (x) (if (char=? x #\.) #\_ x)) version) (file-name (git-file-name name version))
"-release/libexif-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0mhcad5zab7fsn120rd585h8ncwkq904nzzrq8vcd72hzk4g2j2h")))) "0zi5vvb0khlzc6xyfayk6mjx5lgkrj8r7s8lfv4j7wkcgndjga0j"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs
(list autoconf automake gettext-minimal libtool))
(home-page "https://libexif.github.io/") (home-page "https://libexif.github.io/")
(synopsis "Read and manipulate EXIF data in digital photographs") (synopsis "Read and manipulate EXIF data in digital photographs")
(description (description