diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-04-02 18:55:08 +0100 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-11 20:35:19 -0400 |
commit | 41118bb4e4f1b0d92b269c474aab423a17d01140 (patch) | |
tree | 9e8948b2c2e44beb5a1dda7f69216c4f208fe2bb /gnu/packages | |
parent | 39b06acc6edcf3d65b9a46aebd75f6d22dbb788f (diff) |
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: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/photo.scm | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm index 80fc963363..46c9f8ff82 100644 --- a/gnu/packages/photo.scm +++ b/gnu/packages/photo.scm @@ -207,22 +207,21 @@ cameras (CRW/CR2, NEF, RAF, DNG, and others).") ;; both two licensing modes for your changes/additions." (license (list license:lgpl2.1 license:cddl1.0)))) - (define-public libexif (package (name "libexif") - (version "0.6.22") + (version "0.6.24") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/libexif/libexif/releases" - "/download/libexif-" - (string-map (lambda (x) (if (char=? x #\.) #\_ x)) version) - "-release/libexif-" version ".tar.xz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/libexif/libexif.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "0mhcad5zab7fsn120rd585h8ncwkq904nzzrq8vcd72hzk4g2j2h")))) + "0zi5vvb0khlzc6xyfayk6mjx5lgkrj8r7s8lfv4j7wkcgndjga0j")))) (build-system gnu-build-system) + (native-inputs (list autoconf automake gettext-minimal libtool)) (home-page "https://libexif.github.io/") (synopsis "Read and manipulate EXIF data in digital photographs") (description |