guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: taskwarrior: Update to 2.5.3.


From: guix-commits
Subject: branch master updated: gnu: taskwarrior: Update to 2.5.3.
Date: Thu, 04 Feb 2021 16:22:59 -0500

This is an automated email from the git hooks/post-receive script.

bavier pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 3204411  gnu: taskwarrior: Update to 2.5.3.
3204411 is described below

commit 3204411ff7185b4ea1c2e53fea92b6d05f273272
Author: Eric Bavier <bavier@member.fsf.org>
AuthorDate: Thu Feb 4 10:29:51 2021 -0600

    gnu: taskwarrior: Update to 2.5.3.
    
    * gnu/packages/task-management.scm (taskwarrior): Update to 2.5.3.
    [inputs]: Remove lua.
    [arguments]: Remove 'remove-broken-symlinks' phase, delete
    'install-license-files' phase.
---
 gnu/packages/task-management.scm | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/task-management.scm b/gnu/packages/task-management.scm
index 3c0efe1..6bd033b 100644
--- a/gnu/packages/task-management.scm
+++ b/gnu/packages/task-management.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2015 Tomáš Čech <sleep_walker@suse.cz>
 ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
+;;; Copyright © 2021 Eric Bavier <bavier@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -40,30 +41,23 @@
 (define-public taskwarrior
   (package
     (name "taskwarrior")
-    (version "2.5.1")
+    (version "2.5.3")
     (source
      (origin
        (method url-fetch)
        (uri (string-append
              "http://taskwarrior.org/download/task-"; version ".tar.gz"))
        (sha256 (base32
-                "059a9yc58wcicc6xxsjh1ph7k2yrag0spsahp1wqmsq6h7jwwyyq"))))
+                "0fwnxshhlha21hlgg5z1ad01w13zm1hlmncs274y5n8i15gdfhvj"))))
     (build-system cmake-build-system)
     (inputs
      `(("gnutls" ,gnutls)
-       ("lua" ,lua)
        ("util-linux" ,util-linux "lib")))
     (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"))))))
+         (delete 'install-license-files)))) ; Already installed by package
      (home-page "https://taskwarrior.org";)
     (synopsis "Command line task manager")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]