[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 17/17] gnu: Add khal.
From: |
Leo Famulari |
Subject: |
Re: [PATCH 17/17] gnu: Add khal. |
Date: |
Thu, 7 Jan 2016 11:49:45 -0500 |
User-agent: |
Mutt/1.5.24 (2015-08-30) |
On Wed, Jan 06, 2016 at 09:23:54PM +0200, Efraim Flashner wrote:
> On Sun, 3 Jan 2016 19:05:15 -0500
> Leo Famulari <address@hidden> wrote:
>
> > * gnu/packages/calendar.scm (khal): New variable.
> > ---
> > gnu/packages/calendar.scm | 79
> > ++++++++++++++++++++++++++++++++++++++++++++++-
> > 1 file changed, 78 insertions(+), 1 deletion(-)
> >
> > diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm
> > index 7e87fbb..d8f9627 100644
> > --- a/gnu/packages/calendar.scm
> > +++ b/gnu/packages/calendar.scm
> > @@ -1,5 +1,6 @@
> > ;;; GNU Guix --- Functional package management for GNU
> > ;;; Copyright © 2015 David Thompson <address@hidden>
> > +;;; Copyright © 2015 Leo Famulari <address@hidden>
> > ;;;
> > ;;; This file is part of GNU Guix.
> > ;;;
> > @@ -22,8 +23,14 @@
> > #:use-module (guix packages)
> > #:use-module (guix download)
> > #: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 perl)
> > + #:use-module (gnu packages python))
> >
> > (define-public libical
> > (package
> > @@ -50,3 +57,73 @@
> > "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"))))
> > + (build-system python-build-system)
> > + (arguments
> > + `(#:phases (modify-phases %standard-phases
> > + ;; Patch sent upstream: https://github.com/geier/khal/pull/307
> > + (add-after
> > + 'unpack 'patch-broken-path
>
> move these to the previous line for consistancy
Done.
>
> > + (lambda _
> > + (substitute* "doc/source/Makefile"
> > + (("../../../khal/khal/settings/khal.spec")
> > + "../../khal/settings/khal.spec" ))))
> > + ;; Bug reported: https://github.com/geier/khal/issues/309
> > + (add-after 'unpack 'disable-test
> > + (lambda _
> > + (substitute* "tests/khalendar_test.py"
> > + (("test_only_update_old_event")
> > + "disabled_only_update_old_event"))))
> > + ;; 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")))
>
> stylistic change, I would put the ":" on the previous line. The assoc-ref
> also if it all fits within 80 characters.
All on one line!
>
> > + (zero? (system* "make" "--directory=doc/" "man"))
> > + (install-file
> > + "doc/build/man/khal.1"
> > + (string-append
> > + (assoc-ref outputs "out")
> > + "/share/man/man1"))))
>
> would these 3 lines fit on one line?
Yes!
>
> > + (replace 'check
> > + (lambda* (#:key inputs #:allow-other-keys)
> > + ;; The tests require us to choose a timezone.
> > + (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 "CLI and TUI calendar program")
> > + (description "Khal is a standards based CLI and TUI calendar program,
> > able
> > +to synchronize with CalDAV servers through vdirsyncer.")
> > + (home-page "http://lostpackets.de/khal/")
> > + (license expat)))
>
>
>
> --
> Efraim Flashner <address@hidden> אפרים פלשנר
> GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
> Confidentiality cannot be guaranteed on emails sent or received unencrypted
- [PATCH 15/17] gnu: Update python-tzlocal to 1.2., (continued)
- [PATCH 15/17] gnu: Update python-tzlocal to 1.2., Leo Famulari, 2016/01/03
- [PATCH 14/17] gnu: Add python-sphinxcontrib-newsfeed., Leo Famulari, 2016/01/03
- [PATCH 12/17] gnu: Add vdirsyncer., Leo Famulari, 2016/01/03
- [PATCH 10/17] gnu: Add python-pytest-xprocess., Leo Famulari, 2016/01/03
- [PATCH 16/17] gnu: python-urwid: Disable failing test test_remove_watch_file., Leo Famulari, 2016/01/03
- [PATCH 17/17] gnu: Add khal., Leo Famulari, 2016/01/03
- [PATCH 05/17] gnu: Add python-apipkg., Leo Famulari, 2016/01/03
- [PATCH 11/17] gnu: Add radicale., Leo Famulari, 2016/01/03
- [PATCH 03/17] gnu: Add python-click-threading., Leo Famulari, 2016/01/03