aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/calendar.scm
blob: 3b5aba72c8b4e41a5d2b4e3ad8ae47a450ab5647 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 David Thompson <davet@gnu.org>
;;; Copyright © 2015, 2016 Leo Famulari <leo@famulari.name>
;;; Copyright © 2016 Kei Kebreau <kei@openmailbox.org>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages calendar)
  #:use-module (gnu packages)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build utils)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system python)
  #:use-module (gnu packages base)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages dav)
  #:use-module (gnu packages freedesktop)
  #:use-module (gnu packages icu4c)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages python))

(define-public libical
  (package
    (name "libical")
    (version "2.0.0")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://github.com/libical/libical/releases/download/v"
                    version "/libical-" version ".tar.gz"))
              (sha256
               (base32
                "1njn2kr0rrjqv5g3hdhpdzrhankyj4fl1bgn76z3g4n1b7vi2k35"))))
    (build-system cmake-build-system)
    (arguments
     '(#:tests? #f ; test suite appears broken
       #:configure-flags
       (list (string-append "-DCMAKE_INSTALL_RPATH="
                            (assoc-ref %outputs "out") "/lib:"
                            (assoc-ref %outputs "out") "/lib64"))
       #:phases
       (modify-phases %standard-phases
         (add-before 'configure 'patch-paths
           (lambda _
             (let ((tzdata (assoc-ref %build-inputs "tzdata")))
               (substitute* "src/libical/icaltz-util.c"
                 (("char \\*search_paths \\[\\] =.*$")
                  (string-append
                   "char *search_paths [] = "
                   "{\"" tzdata "/share/zoneinfo\"};\n"))))
             #t)))))
    (native-inputs
     `(("perl" ,perl)))
    (inputs
     `(("icu4c" ,icu4c)
       ("tzdata" ,tzdata)))
    (home-page "https://libical.github.io/libical/")
    (synopsis "iCalendar protocols and data formats implementation")
    (description
     "Libical is an implementation of the iCalendar protocols and protocol
data units.")
    (license lgpl2.1)))

(define-public khal
  (package
    (name "khal")
    (version "0.7.0")
    (source (origin
             (method url-fetch)
             (uri (pypi-uri "khal" version))
             (sha256
              (base32
               "00llxj7cv31mjsx0j6zxmyi9s1q20yvfkn025xcy8cv1ylfwic66"))
             (modules '((guix build utils)))
             ;; Patch broken path in 'doc' Makefile.
             ;; Patch sent upstream: https://github.com/geier/khal/pull/307
             (snippet
               '(substitute* "doc/source/Makefile"
                 (("../../../khal/khal/settings/khal.spec")
                  "../../khal/settings/khal.spec" )))))
    (build-system python-build-system)
    (arguments
     `(#:phases (modify-phases %standard-phases
        (add-after 'unpack 'disable-tests
          (lambda _
            ;; Bug reported for test_only_update_old_event:
            ;; https://github.com/geier/khal/issues/309
            (substitute* "tests/khalendar_test.py"
                         (("test_only_update_old_event")
                           "disabled_only_update_old_event"))

            ;; Bug reported for test_dt_two_tz:
            ;; https://github.com/pimutils/khal/issues/382
            (substitute* "tests/event_test.py"
                         (("test_dt_two_tz")
                           "disabled_dt_two_tz"))
            ;; Another timezone / DST issue:
            ;; https://github.com/pimutils/khal/issues/146
            (substitute* "tests/event_test.py"
                         (("test_raw_dt")
                           "disabled_raw_dt"))))

        ;; Building the manpage requires khal to be installed.
        (add-after 'install 'manpage
          (lambda* (#:key outputs #:allow-other-keys)
            (setenv "PYTHONPATH"
                    (string-append
                      (getenv "PYTHONPATH") ":" (assoc-ref outputs "out")))
            (zero? (system* "make" "--directory=doc/" "man"))
            (install-file
              "doc/build/man/khal.1"
              (string-append (assoc-ref outputs "out") "/share/man/man1"))))

        ;; The tests require us to choose a timezone.
        (replace 'check
          (lambda* (#:key inputs #:allow-other-keys)
            (setenv "TZ"
                    (string-append (assoc-ref inputs "tzdata")
                                   "/share/zoneinfo/Zulu"))
            (zero? (system* "py.test" "tests")))))))
    (native-inputs
     `(("python-pytest" ,python-pytest)
       ("python-setuptools-scm" ,python-setuptools-scm)
       ;; Required for tests
       ("tzdata" ,tzdata)
       ;; Required to build manpage
       ("python-sphinxcontrib-newsfeed" ,python-sphinxcontrib-newsfeed)
       ("python-sphinx" ,python-sphinx)))
    (inputs
     `(("sqlite" ,sqlite)))
    (propagated-inputs
     `(("python-configobj" ,python-configobj)
       ("python-dateutil-2" ,python-dateutil-2)
       ("python-icalendar" ,python-icalendar)
       ("python-tzlocal" ,python-tzlocal)
       ("python-urwid" ,python-urwid)
       ("python-pyxdg" ,python-pyxdg)
       ("vdirsyncer" ,vdirsyncer)))
    (synopsis "Console calendar program")
    (description "Khal is a standards based console calendar program,
able to synchronize with CalDAV servers through vdirsyncer.")
    (home-page "http://lostpackets.de/khal/")
    (license expat)))
...Transfer the NixOS patches for kpackage as of 2018-02-17: - Allow external paths. - Make QDirIterator follow symlinks. Decided to use a patch for one of the "allow external paths" changes since 'substitute*' seems not to be robust enough. * gnu/packages/patches/kpackage-allow-external-paths.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/kde-frameworks.scm(kpackage)[source]: Use it. <patch>: New phase. Hartmut Goebel 2019-01-04gnu: kinit: Use LIBRARY_PATH to search for dynamically loaded libs....Transfer the NixOS "kdeinit-libpath" patch for kinit as of 2018-02-17. * gnu/packages/patches/kinit-kdeinit-libpath.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/kde-frameworks.scm (kinit)[source]: Use it. Hartmut Goebel 2019-01-04gnu: kinit: Use the store paths for dynamically loaded libs....Transfer the NixOS "kdeinit-extra_libs" patch for kinit as of 2018-02-17. * gnu/packages/patches/kinit-kdeinit-extra_libs.patch: New filee. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/kde-frameworks.scm (kinit)[source]: Use it. <patch-paths>: New phase. [inputs]: Add kparts, plasma-framework. Hartmut Goebel 2019-01-04gnu: kio: Search 'smbd' on $PATH....Transfer the remaining NixOS patch for kio as of 2018-02-17. * gnu/packages/patches/kio-search-smbd-on-PATH.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/kde-frameworks.scm(kio)<source>: Use it. Hartmut Goebel 2019-01-04gnu: kdelibs4support: Add todo comment for a patch from NixOS....* gnu/packages/kde-frameworks.scm(kdelibs4support): Add comment. Hartmut Goebel 2019-01-04gnu: kconfigwidgets: Make QDirIterator follow symlinks....Transfer the NixOS patch "qdiriterator-follow-symlinks" for kconfigwidgets as of 2018-02-17. * gnu/packages/kde-frameworks.scm(kconfigwidgets)<patch>: New phase. Hartmut Goebel 2019-01-04gnu: kcmutils: Print plugin name when loading fails....Transfer the NixOS patch "kcmutils-debug-module-loader" for kcmutils as of 2018-02-17. * gnu/packages/kde-frameworks.scm(kcmutils)<patch>: Add substitute for src/kcmoduleloader.cpp. Hartmut Goebel 2019-01-04gnu: kcmutils: Make QDirIterator follow symlinks....Transfer the NixOS patch "kcmutils-follow-symlinks" for kcmutils as of 2018-02-17. * gnu/packages/kde-frameworks.scm(kcmutils)<patch>: New phase. Hartmut Goebel 2019-01-04gnu: krunner: Blacklist another test failing with 5.49.0....* gnu/packages/kde-frameworks.scm(krunner)[#phases]<check-setup>: Blacklist 'testMulti'. Hartmut Goebel 2019-01-04gnu: extra-cmake-modules: Fix install-path for plugins....The respective entry changed for kde-frameworks 5.46. * gnu/packages/kde-frameworks.scm(krunner)[#phases]<fix-lib-path>: Change substitute for QTPLUGINDIR. Hartmut Goebel 2019-01-02gnu: breeze-icons: Fix failing tests....* gnu/packages/kde-frameworks.scm(breeze-icons)[arguments]<#phases>: Remove outdated 'disable-failing-test, add 'add-symlinks. Hartmut Goebel 2018-12-24gnu: Remove obsolete package gpgmepp....This package is unused, is part of gpgme since version 1.7 and has been marked as superseded since 18 months now. * gnu/packages/kde-frameworks.scm (gpgmepp): Remove variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Hartmut Goebel 2018-12-23gnu: baloo: Fix build....The substitute for removing a failing test did no longer work since the way the test is included changed in v5.45.0: Formerly the test has listed, now there is a separate statement for this test. * gnu/package/kde-frameworks.scm((baloo)[arguments]<#phases>: Change substitute in phase 'remove-failing-test'. Hartmut Goebel 2018-12-20gnu: KDE: Update remaining packages to 5.49.0....These packages have been missed in 600f1ad8e61e65ad9a1f22d099d16c5948cb1f48, since the `guix refresh --type=kde` does not honor the sub-directory for the "portingaids". * gnu/packages/kde-frameworks.scm (kdelibs4support, khtml, kjs, kjsembed, kmediaplayer, kross): Update to 5.49.0. Hartmut Goebel 2018-12-19gnu: plasma-framework: Fix build....* gnu/packages/plasma-framework.scm (plasma-framework)[inputs]: Add qtquickcontrols2. Hartmut Goebel