all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: jgart via Guix-patches via <guix-patches@gnu.org>
To: 46968@debbugs.gnu.org
Cc: raghavgururajan@disroot.org
Subject: [bug#46968] [PATCH] gnu: Add t.
Date: Sat, 06 Mar 2021 16:08:01 +0000	[thread overview]
Message-ID: <59d711496cb102907d9a5464a0915a95@dismail.de> (raw)

[-- 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


             reply	other threads:[~2021-03-06 16:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-06 16:08 jgart via Guix-patches via [this message]
2021-03-07 23:03 ` [bug#46968] [PATCH] gnu: Add t Nicolas Goaziou
2021-03-07 23:43 ` jgart via web
2021-03-08  5:29 ` Raghav Gururajan via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=59d711496cb102907d9a5464a0915a95@dismail.de \
    --to=guix-patches@gnu.org \
    --cc=46968@debbugs.gnu.org \
    --cc=jgart@dismail.de \
    --cc=raghavgururajan@disroot.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.