all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 911e4a847536dff2eb1455bf42056191c71262f3 5499 bytes (raw)
name: gnu/packages/task-management.scm 	 # note: path name is non-authoritative(*)

  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
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Tomáš Čech <sleep_walker@suse.cz>
;;; Copyright © 2019 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
;;;
;;; 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 task-management)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages lua)
  #:use-module (gnu packages python)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages wxwidgets)
  #:use-module (gnu packages xorg)
  #:use-module (guix download)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system python))

(define-public taskwarrior
  (package
    (name "taskwarrior")
    (version "2.5.1")
    (source
     (origin
       (method url-fetch)
       (uri (string-append
             "http://taskwarrior.org/download/task-" version ".tar.gz"))
       (sha256 (base32
                "059a9yc58wcicc6xxsjh1ph7k2yrag0spsahp1wqmsq6h7jwwyyq"))))
    (build-system cmake-build-system)
    (inputs
     `(("gnutls" ,gnutls)
       ("lua" ,lua)
       ("util-linux" ,util-linux)))
    (arguments
     `(#:tests? #f ; No tests implemented.
       #:phases
       (modify-phases %standard-phases
         (add-before
          'patch-source-shebangs 'remove-broken-symlinks
          (lambda _
            ;; These files are broken symlinks - delete them.
            (delete-file "src/cal")
            (delete-file "src/calendar")
            (delete-file "src/tw"))))))
     (home-page "http://taskwarrior.org")
    (synopsis "Command line task manager")
    (description
     "Taskwarrior is a command-line task manager following the Getting Things
Done time management method.  It supports network synchronization, filtering
and querying data, exposing task data in multiple formats to other tools.")
    (license license:expat)))

(define-public taskcoach
  (package
    (name "taskcoach")
    (version "1.4.4")
    (source
     (origin
       (method url-fetch)
       (uri (string-append
             "mirror://sourceforge/taskcoach/taskcoach/Release-" version  "/TaskCoach-" version ".tar.gz"))
       (sha256 (base32
                "1jb5n4xmb7qdhcgg3lfin293jcks1g8qvqkjfrfifpmfmpmjqv50"))))
    (build-system python-build-system)
    (inputs
     `(("python2-wxpython" ,python2-wxpython)
       ("python2-twisted" ,python2-twisted)
       ))
    (propagated-inputs
     `(
       ("libxscrnsaver" ,libxscrnsaver)
       ))

    (arguments
     `(#:tests? #f ; TODO: Needs X11. Maybe simulate one? Cmp. OpenCV.
       #:python ,python-2))
    ;;  `(#:tests? #f ; No tests implemented.
       ;; #:phases
       ;; (modify-phases %standard-phases
       ;;   (add-before
       ;;    'patch-source-shebangs 'remove-broken-symlinks
       ;;    (lambda _
       ;;      ;; These files are broken symlinks - delete them.
       ;;      (delete-file "src/cal")
       ;;      (delete-file "src/calendar")
       ;;      (delete-file "src/tw"))))))
     (home-page "https://www.taskcoach.org")
    (synopsis "TODO")
    (description
     "TODO")
    ;; thirdparty:
    ;; aui: wxPython license.
    ;; chardet: LGPL 2.1+

    ;; EXPAT:
    ;; guid.py
    ;; deltaTime.py
    ;; https://github.com/pyparsing/pyparsing/blob/master/examples/deltaTime.py
    ;; This is part of pyparsing and thus under EXPAT license.

    ;; snarl.py: This is the same file modulo whitespace and header changes that was
    ;; published under version 0.2a und GPLv2 here:
    ;; https://github.com/abl/python-snarl/commit/4e6a26edfc477f5a56493a3a91d7cc3547e28945

    ;; _weakrefset.py: Part of Python, license:psfl.

    ;; dateutil: PSFL

    ;; desktop: LGPG 3+

    ;; gntp: This is GNTP v0.8, see
    ;; https://github.com/kfdm/gntp/tree/a4c1c69cabaa0faa1f650eab193c9872516eb192/gntp
    ;; and is thus under EXPAT license.

    ;; keyring: EXPAT | PSFL
    ;; See https://github.com/philipn/python-keyring-lib

    ;; lockfile: MIT
    ;; https://github.com/smontanaro/pylockfile/blob/426db4cc4389539797f2b5f26883a55534ce6648/LICENSE

    ;; ntlm: LGPLv3+
    ;; http://sourceforge.net/projects/ntlmaps/

    ;; pubsub: BSD-2-clause:
    ;; http://pypubsub.sourceforge.net/about.html#license

    ;; squaremap: EXPAT
    ;; https://bazaar.launchpad.net/~mcfletch/squaremap/trunk/view/head:/license.txt

    ;; timeline
    ;; according to this stackoverflow answer, this is written by Frank Nissink for TaskCoach:
    ;; https://stackoverflow.com/questions/715950/a-wxpython-timeline-widget/819462#819462
    ;; thus, it is GPL3+

    ;; wxScheduler:
    ;; https://github.com/expobrain/wxscheduler/tree/1.3.0
    ;; wxLicense

    ;; xdg
    ;; LGPL v2
    ;; https://github.com/takluyver/pyxdg/blob/master/COPYING
    (license license:gpl3+)))

debug log:

solving 911e4a8475 ...
found 911e4a8475 in https://yhetil.org/guix/20190319152519.1caef235@alma-ubu/
found 701e14a5e2 in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 701e14a5e24cc78a7f52da99816c638485031e99	gnu/packages/task-management.scm

applying [1/1] https://yhetil.org/guix/20190319152519.1caef235@alma-ubu/
diff --git a/gnu/packages/task-management.scm b/gnu/packages/task-management.scm
index 701e14a5e2..911e4a8475 100644

Checking patch gnu/packages/task-management.scm...
Applied patch gnu/packages/task-management.scm cleanly.

index at:
100644 911e4a847536dff2eb1455bf42056191c71262f3	gnu/packages/task-management.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.