diff options
author | Marius Bakke <marius@gnu.org> | 2022-06-23 19:24:37 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-06-23 19:55:43 +0200 |
commit | ddc538ac3262756eacec650e0c5509cd4b4a7c7a (patch) | |
tree | 9a1c7d272d6cae3deaa0e024a3ae0a1a91cccdc8 | |
parent | a6bc7baa5430f2388ea6a134146908e830ef3a21 (diff) |
gnu: libical: Update to 3.0.14.
* gnu/packages/calendar.scm (libical): Update to 3.0.14.
[arguments]: Remove trailing #t's.
-rw-r--r-- | gnu/packages/calendar.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm index 129eb58aa0..9221b17872 100644 --- a/gnu/packages/calendar.scm +++ b/gnu/packages/calendar.scm @@ -118,7 +118,7 @@ the <tz.h> library for handling time zones and leap seconds.") (define-public libical (package (name "libical") - (version "3.0.10") + (version "3.0.14") (source (origin (method url-fetch) (uri (string-append @@ -126,7 +126,7 @@ the <tz.h> library for handling time zones and leap seconds.") version "/libical-" version ".tar.gz")) (sha256 (base32 - "1d1nqcfilb4k8bc5x85fhnd26l1ski58wpk2nmds6mlxrzkb6czr")))) + "13ycghsi4iv8mnm0xv97bs0x6qvfhdxkw20n3yhcc7bg6n0bg122")))) (build-system cmake-build-system) (arguments '(#:tests? #f ; test suite appears broken @@ -142,8 +142,7 @@ the <tz.h> library for handling time zones and leap seconds.") (substitute* "doc/reference/libical-glib/libical-glib-docs.sgml.in" (("http://www.oasis-open.org/docbook/xml/4.3/") (string-append (assoc-ref inputs "docbook-xml") - "/xml/dtd/docbook/"))) - #t)) + "/xml/dtd/docbook/"))))) (add-before 'configure 'patch-paths (lambda* (#:key inputs #:allow-other-keys) ;; TODO: libical 3.1.0 supports using TZDIR instead of a hard-coded @@ -155,8 +154,7 @@ the <tz.h> library for handling time zones and leap seconds.") (string-append "\"" tzdata "/share/zoneinfo\"")) (("\\\"/usr/lib/zoneinfo\\\",") "") (("\\\"/etc/zoneinfo\\\",") "") - (("\\\"/usr/share/lib/zoneinfo\\\"") ""))) - #t))))) + (("\\\"/usr/share/lib/zoneinfo\\\"") "")))))))) (native-inputs (list docbook-xml-4.3 gobject-introspection |