all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#46968] [PATCH] gnu: Add t.
@ 2021-03-06 16:08 jgart via Guix-patches via
  2021-03-07 23:03 ` Nicolas Goaziou
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: jgart via Guix-patches via @ 2021-03-06 16:08 UTC (permalink / raw)
  To: 46968; +Cc: raghavgururajan

[-- Attachment #1: Type: text/plain, Size: 252 bytes --]

Hi Guix,

Here is another patch from LibreMiami.  

t is a command-line todo list manager:

https://stevelosh.com/projects/t/

The co-authors are listed in the commit message.

best regards,

jgart

libremiami.org
search.libremiami.org

[-- Attachment #2: 0003-gnu-Add-t.patch --]
[-- Type: application/octet-stream, Size: 2676 bytes --]

From 7cc476bca44b091fe7a05b7d795ef17a94cac07a Mon Sep 17 00:00:00 2001
From: LibreMiami <packaging-guix@libremiami.org>
Date: Sat, 6 Mar 2021 02:17:21 +0000
Subject: [PATCH 3/5] gnu: Add t.

* gnu/packages/task-management.scm (t): New variable.

Co-authored-by: jgart <jgart@dismail.de>
Co-authored-by: donotshake <donotshake:matrix.org>
Co-authored-by: Raghav Gururajan <rg@raghavgururajan.name>
---
 gnu/packages/task-management.scm | 40 +++++++++++++++++++++++++++-----
 1 file changed, 34 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/task-management.scm b/gnu/packages/task-management.scm
index 99bff5aa23..ee37bba624 100644
--- a/gnu/packages/task-management.scm
+++ b/gnu/packages/task-management.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2021 Eric Bavier <bavier@posteo.net>
 ;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
+;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -32,13 +33,15 @@
   #:use-module (gnu packages lua)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages tls)
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix utils)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system go)
-  #:use-module (guix build-system meson))
+  #:use-module (guix build-system meson)
+  #:use-module (guix build-system python))
 
 (define-public taskwarrior
   (package
@@ -168,3 +171,28 @@ a task.")
 to with the goal of improving your focus and enhancing your productivity.
 You can also use it to fall asleep in a noisy environment.")
     (license license:gpl3+)))
+
+(define-public t
+  (let ((commit "815ccaf4f0bf2acb2a7f2cb330bf0532d782f408")
+        (revision "36"))
+  (package
+    (name "t")
+    (version
+      (git-version "1.2.0" revision commit))
+    (source
+    (origin
+           (method git-fetch)
+           (uri (git-reference
+                 (url "https://github.com/sjl/t/")
+                 (commit commit)))
+           (file-name (git-file-name name version))
+           (sha256
+            (base32 "1bi2hpdgwbqhcy88laba7h6kiqxvz75qqaf6sq221n39zfdl8n1g"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-cram" ,python-cram)))
+    (synopsis "Command-line todo list manager")
+    (description "@command{t} is a command-line todo list manager for people
+that want to finish tasks, not organize them.")
+    (home-page "https://stevelosh.com/projects/t/")
+    (license license:expat))))
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#46968] [PATCH] gnu: Add t.
  2021-03-06 16:08 [bug#46968] [PATCH] gnu: Add t jgart via Guix-patches via
@ 2021-03-07 23:03 ` Nicolas Goaziou
  2021-03-07 23:43 ` jgart via web
  2021-03-08  5:29 ` Raghav Gururajan via Guix-patches via
  2 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2021-03-07 23:03 UTC (permalink / raw)
  To: 46968; +Cc: raghavgururajan, jgart, 46968-done

Hello,

jgart via Guix-patches via <guix-patches@gnu.org> writes:

> Subject: [PATCH 3/5] gnu: Add t.
>
> * gnu/packages/task-management.scm (t): New variable.

Applied! Thank you.

I used mercurial repository instead of GitHub since the latter is the
mirror. I also added a comment explaining why you're using a specific
commit.

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#46968] [PATCH] gnu: Add t.
  2021-03-06 16:08 [bug#46968] [PATCH] gnu: Add t jgart via Guix-patches via
  2021-03-07 23:03 ` Nicolas Goaziou
@ 2021-03-07 23:43 ` jgart via web
  2021-03-08  5:29 ` Raghav Gururajan via Guix-patches via
  2 siblings, 0 replies; 4+ messages in thread
From: jgart via web @ 2021-03-07 23:43 UTC (permalink / raw)
  To: 46968

Thank you for doing that, Nicolas. That sounds great! 

all the best,

jgart

libremiami.org
search.libremiami.org





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#46968] [PATCH] gnu: Add t.
  2021-03-06 16:08 [bug#46968] [PATCH] gnu: Add t jgart via Guix-patches via
  2021-03-07 23:03 ` Nicolas Goaziou
  2021-03-07 23:43 ` jgart via web
@ 2021-03-08  5:29 ` Raghav Gururajan via Guix-patches via
  2 siblings, 0 replies; 4+ messages in thread
From: Raghav Gururajan via Guix-patches via @ 2021-03-08  5:29 UTC (permalink / raw)
  To: mail, 46968; +Cc: jgart, 46968-done

Hi Nicolas!

> Applied! Thank you.
> 
> I used mercurial repository instead of GitHub since the latter is the
> mirror. I also added a comment explaining why you're using a specific
> commit.

Thanks a lot. We appreciate it. :-)

Regards,
RG.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-03-08  5:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-06 16:08 [bug#46968] [PATCH] gnu: Add t jgart via Guix-patches via
2021-03-07 23:03 ` Nicolas Goaziou
2021-03-07 23:43 ` jgart via web
2021-03-08  5:29 ` Raghav Gururajan via Guix-patches via

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.