2015-04-26 23:46:57 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
2017-03-12 21:37:02 +01:00
|
|
|
;;; Copyright © 2015, 2016, 2017 Leo Famulari <leo@famulari.name>
|
2017-08-28 04:27:56 +02:00
|
|
|
;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net>
|
2017-09-28 10:43:24 +02:00
|
|
|
;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
2016-08-14 19:38:33 +02:00
|
|
|
;;; Copyright © 2016 Troy Sankey <sankeytms@gmail.com>
|
2016-09-04 01:09:48 +02:00
|
|
|
;;; Copyright © 2016 Stefan Reichoer <stefan@xsteve.at>
|
2015-04-26 23:46:57 +02:00
|
|
|
;;;
|
|
|
|
;;; 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)
|
2015-12-30 07:08:22 +01:00
|
|
|
#:use-module (guix build utils)
|
2016-09-04 01:09:48 +02:00
|
|
|
#:use-module (guix build-system gnu)
|
2015-04-26 23:46:57 +02:00
|
|
|
#:use-module (guix build-system cmake)
|
2015-12-30 07:08:22 +01:00
|
|
|
#: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)
|
2015-04-26 23:46:57 +02:00
|
|
|
#:use-module (gnu packages icu4c)
|
2015-12-30 07:08:22 +01:00
|
|
|
#:use-module (gnu packages perl)
|
2016-09-04 01:09:48 +02:00
|
|
|
#:use-module (gnu packages python)
|
|
|
|
#:use-module (srfi srfi-26))
|
2015-04-26 23:46:57 +02:00
|
|
|
|
|
|
|
(define-public libical
|
|
|
|
(package
|
|
|
|
(name "libical")
|
2016-05-12 19:50:52 +02:00
|
|
|
(version "2.0.0")
|
2015-04-26 23:46:57 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/libical/libical/releases/download/v"
|
|
|
|
version "/libical-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-05-12 19:50:52 +02:00
|
|
|
"1njn2kr0rrjqv5g3hdhpdzrhankyj4fl1bgn76z3g4n1b7vi2k35"))))
|
2015-04-26 23:46:57 +02:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
2016-05-10 22:56:42 +02:00
|
|
|
'(#:tests? #f ; test suite appears broken
|
2016-05-12 19:50:52 +02:00
|
|
|
#:configure-flags
|
2017-09-28 10:43:24 +02:00
|
|
|
(list (string-append "-DCMAKE_INSTALL_LIBDIR="
|
|
|
|
(assoc-ref %outputs "out") "/lib"))
|
2016-05-10 22:56:42 +02:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'patch-paths
|
|
|
|
(lambda _
|
|
|
|
(let ((tzdata (assoc-ref %build-inputs "tzdata")))
|
|
|
|
(substitute* "src/libical/icaltz-util.c"
|
2017-03-12 21:37:02 +01:00
|
|
|
(("\\\"/usr/share/zoneinfo\\\",")
|
|
|
|
(string-append "\"" tzdata "/share/zoneinfo\""))
|
|
|
|
(("\\\"/usr/lib/zoneinfo\\\",") "")
|
|
|
|
(("\\\"/etc/zoneinfo\\\",") "")
|
|
|
|
(("\\\"/usr/share/lib/zoneinfo\\\"") "")))
|
2016-05-10 22:56:42 +02:00
|
|
|
#t)))))
|
2015-04-26 23:46:57 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("perl" ,perl)))
|
|
|
|
(inputs
|
2016-05-10 22:56:42 +02:00
|
|
|
`(("icu4c" ,icu4c)
|
|
|
|
("tzdata" ,tzdata)))
|
2015-04-26 23:46:57 +02:00
|
|
|
(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)))
|
2015-12-30 07:08:22 +01:00
|
|
|
|
|
|
|
(define-public khal
|
|
|
|
(package
|
|
|
|
(name "khal")
|
2017-07-02 13:54:09 +02:00
|
|
|
(version "0.9.8")
|
2015-12-30 07:08:22 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "khal" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-07-02 13:54:09 +02:00
|
|
|
"1blx3gxnv7sj302biqphfw7i6ilzl2xlmvzp130n3113scg9w17y"))))
|
2015-12-30 07:08:22 +01:00
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases (modify-phases %standard-phases
|
|
|
|
;; Building the manpage requires khal to be installed.
|
|
|
|
(add-after 'install 'manpage
|
2016-10-19 23:19:26 +02:00
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
;; Make installed package available for running the tests
|
|
|
|
(add-installed-pythonpath inputs outputs)
|
2017-07-02 13:54:09 +02:00
|
|
|
(and
|
|
|
|
(zero? (system* "make" "--directory=doc/" "man"))
|
|
|
|
(install-file
|
|
|
|
"doc/build/man/khal.1"
|
|
|
|
(string-append (assoc-ref outputs "out") "/share/man/man1")))))
|
2015-12-30 07:08:22 +01:00
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
2017-07-02 13:54:09 +02:00
|
|
|
;; The tests require us to choose a timezone.
|
2015-12-30 07:08:22 +01:00
|
|
|
(setenv "TZ"
|
|
|
|
(string-append (assoc-ref inputs "tzdata")
|
|
|
|
"/share/zoneinfo/Zulu"))
|
2017-07-02 13:54:09 +02:00
|
|
|
(zero? (system* "py.test" "tests" "-k"
|
|
|
|
(string-append
|
|
|
|
;; These tests are known to fail in when not
|
|
|
|
;; running in a TTY:
|
|
|
|
;; https://github.com/pimutils/khal/issues/683
|
|
|
|
"not test_printics_read_from_stdin "
|
|
|
|
"and not test_import_from_stdin"))))))))
|
2015-12-30 07:08:22 +01:00
|
|
|
(native-inputs
|
2017-03-07 22:03:00 +01:00
|
|
|
;; XXX Uses tmpdir_factory, introduced in pytest 2.8.
|
2017-03-28 21:40:37 +02:00
|
|
|
`(("python-pytest" ,python-pytest-3.0)
|
2016-08-14 19:38:33 +02:00
|
|
|
("python-pytest-cov" ,python-pytest-cov)
|
2015-12-30 07:08:22 +01:00
|
|
|
("python-setuptools-scm" ,python-setuptools-scm)
|
|
|
|
;; Required for tests
|
2016-08-14 19:38:33 +02:00
|
|
|
("python-freezegun" ,python-freezegun)
|
2017-08-06 22:57:07 +02:00
|
|
|
("tzdata" ,tzdata)
|
|
|
|
("vdirsyncer" ,vdirsyncer)
|
2015-12-30 07:08:22 +01:00
|
|
|
;; Required to build manpage
|
|
|
|
("python-sphinxcontrib-newsfeed" ,python-sphinxcontrib-newsfeed)
|
|
|
|
("python-sphinx" ,python-sphinx)))
|
|
|
|
(inputs
|
|
|
|
`(("sqlite" ,sqlite)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("python-configobj" ,python-configobj)
|
gnu: Remove python-dateutil@1.5.
* gnu/packages/python.scm (python-dateutil-2, python2-dateutil-2): Rename to ...
(python-dateutil, python2-dateutil): ... this. Remove 1.5 version.
(python-tzlocal, python2-tzlocal): Adjust variable name.
(python-rst.linker, python2-rst.linker): Likewise.
(pelican): Likewise.
(python-matplotlib, python2-matplotlib): Likewise.
(python-sqlalchemy-utils, python2-sqlalchemy-utils): Likewise.
(python-icalendar, python2-icalendar): Likewise.
(python-botocore, python2-botocore): Likewise.
(python-vobject, python2-vobject): Likewise.
(python-arrow, python2-arrow): Likewise.
(python-fake-factory, python2-fake-factory): Likewise.
(python-freezegun, python2-freezegun): Likewise.
(python-aniso8601, python2-aniso8601): Likewise.
* gnu/packages/jrnl.scm (jrnl): Likewise.
* gnu/packages/calendar.scm (limnoria): Likewise.
2016-12-16 00:54:48 +01:00
|
|
|
("python-dateutil" ,python-dateutil)
|
2015-12-30 07:08:22 +01:00
|
|
|
("python-icalendar" ,python-icalendar)
|
|
|
|
("python-tzlocal" ,python-tzlocal)
|
|
|
|
("python-urwid" ,python-urwid)
|
2017-08-06 22:57:07 +02:00
|
|
|
("python-pyxdg" ,python-pyxdg)))
|
2015-12-30 07:08:22 +01:00
|
|
|
(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)))
|
2016-09-04 01:09:48 +02:00
|
|
|
|
|
|
|
(define-public remind
|
|
|
|
(package
|
|
|
|
(name "remind")
|
|
|
|
(version "3.1.15")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://www.roaringpenguin.com/files/download/"
|
|
|
|
"remind-"
|
|
|
|
(string-join (map (cut string-pad <> 2 #\0)
|
|
|
|
(string-split version #\.))
|
|
|
|
".")
|
|
|
|
".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1hcfcxz5fjzl7606prlb7dgls5kr8z3wb51h48s6qm8ang0b9nla"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f)) ;no "check" target
|
|
|
|
(home-page "http://www.roaringpenguin.com/products/remind/")
|
|
|
|
(synopsis "Sophisticated calendar and alarm program")
|
|
|
|
(description
|
|
|
|
"Remind allows you to remind yourself of upcoming events and appointments.
|
|
|
|
Each reminder or alarm can consist of a message sent to standard output, or a
|
|
|
|
program to be executed. It also features: sophisticated date calculation,
|
|
|
|
moon phases, sunrise/sunset, Hebrew calendar, alarms, PostScript output and
|
|
|
|
proper handling of holidays.")
|
|
|
|
(license gpl2)))
|
2016-09-08 12:37:07 +02:00
|
|
|
|
|
|
|
(define-public libhdate
|
|
|
|
(package
|
|
|
|
(name "libhdate")
|
|
|
|
(version "1.6.02")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/libhdate/libhdate/libhdate-"
|
|
|
|
version "/" name "-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0qkpq412p78znw8gckwcx3l0wcss9s0dgw1pvjb1ih2pxf6hm4rw"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page "http://libhdate.sourceforge.net/")
|
|
|
|
(synopsis "Library to use Hebrew dates")
|
|
|
|
(description "LibHdate is a small library for the Hebrew calendar and times
|
|
|
|
of day, written in C, and including bindings for C++, pascal, perl, php, python,
|
|
|
|
and ruby. It includes two illustrative command-line programs, @code{hcal} and
|
|
|
|
@code{hdate}, and some snippets and scripts written in the binding languages.")
|
|
|
|
(license gpl3+)))
|