unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#46969] [PATCH 1/2] gnu: Add clikan
@ 2021-03-06 16:14 jgart via Guix-patches via
  2021-03-13 11:24 ` Nicolas Goaziou
  2021-03-17 18:22 ` jgart via Guix-patches via
  0 siblings, 2 replies; 3+ messages in thread
From: jgart via Guix-patches via @ 2021-03-06 16:14 UTC (permalink / raw)
  To: 46969; +Cc: raghavgururajan

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

Hi Guix!

Here are two more patches from LibreMiami.  

clikan is a super simple personal kanban board that runs in a CLI.

click-default-group is a dependency of clikan.

The co-authors are listed in the commit message.

best regards,

jgart

libremiami.org
search.libremiami.org

[-- Attachment #2: 0005-gnu-Add-clikan.patch --]
[-- Type: application/octet-stream, Size: 1950 bytes --]

From e6f8211c5e35d0541815805f60050f27aa0f13a9 Mon Sep 17 00:00:00 2001
From: LibreMiami <packaging-guix@libremiami.org>
Date: Sat, 6 Mar 2021 03:18:52 +0000
Subject: [PATCH 5/5] gnu: Add clikan.

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

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

diff --git a/gnu/packages/task-management.scm b/gnu/packages/task-management.scm
index ee37bba624..2b3693aa4c 100644
--- a/gnu/packages/task-management.scm
+++ b/gnu/packages/task-management.scm
@@ -196,3 +196,31 @@ You can also use it to fall asleep in a noisy environment.")
 that want to finish tasks, not organize them.")
     (home-page "https://stevelosh.com/projects/t/")
     (license license:expat))))
+
+(define-public clikan
+  (let ((commit "90fd60e485b46e49fcec7d029384fe1471c4443a")
+        (revision "90"))
+    (package
+      (name "clikan")
+      (version
+       (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/kitplummer/clikan/")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "113kizm05v4cvyhdlg9zami54wk9qaiizq19mx36qvq9w7pg7a3k"))))
+      (build-system python-build-system)
+      (inputs
+       `(("click" ,python-click)
+         ("click-default-group" ,python-click-default-group)
+         ("pyyaml" ,python-pyyaml)
+         ("terminaltables" ,python-terminaltables)))
+      (synopsis "CLI KanBan")
+      (description "@command{clikan} is a super simple personal kanban board
+that runs in a CLI")
+      (home-page "https://github.com/kitplummer/clikan/")
+      (license license:expat))))
-- 
2.20.1


[-- Attachment #3: 0004-gnu-Add-python-click-default-group.patch --]
[-- Type: application/octet-stream, Size: 1951 bytes --]

From 2d25c94ce51b538da44a9560598e2df53542c21f Mon Sep 17 00:00:00 2001
From: LibreMiami <packaging-guix@libremiami.org>
Date: Sat, 6 Mar 2021 02:50:53 +0000
Subject: [PATCH 4/5] gnu: Add python-click-default-group.

* /gnu/packages/python-xyz.scm (python-click-default-group): New
variable.

Co-authored-by: Raghav Gururajan <rg@raghavgururajan.name>
Co-authored-by: jgart <jgart@dismail.de>
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index aec5b5e77a..9d3d6b8856 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -98,6 +98,7 @@
 ;;; Copyright © 2020 EuAndreh <eu@euandre.org>
 ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
 ;;; Copyright © 2021 Ellis Kenyő <me@elken.dev>
+;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -10845,6 +10846,27 @@ applications.")
     (home-page "https://github.com/click-contrib/click-log")
     (license license:expat)))
 
+(define-public python-click-default-group
+  (package
+    (name "python-click-default-group")
+    (version "1.2.2")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "click-default-group" version))
+              (sha256
+               (base32
+                "015r78jk8gznfw0dphpwaqcx5mhg5822b55w5xbb6i7sin70wmnr"))))
+    (build-system python-build-system)
+    (arguments
+      `(#:tests? #f)) ; no target
+    (propagated-inputs
+     `(("python-click" ,python-click)))
+    (synopsis "Extends click.Group")
+    (description "This package extends click.Group to invoke a command without
+explicit subcommand name.")
+    (home-page "https://github.com/click-contrib/click-default-group")
+    (license license:bsd-3)))
+
 (define-public python-structlog
   (package
     (name "python-structlog")
-- 
2.20.1


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

* [bug#46969] [PATCH 1/2] gnu: Add clikan
  2021-03-06 16:14 [bug#46969] [PATCH 1/2] gnu: Add clikan jgart via Guix-patches via
@ 2021-03-13 11:24 ` Nicolas Goaziou
  2021-03-17 18:22 ` jgart via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2021-03-13 11:24 UTC (permalink / raw)
  To: 46969; +Cc: 46969-done, jgart, raghavgururajan

Hello,

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

> Here are two more patches from LibreMiami.  
>
> clikan is a super simple personal kanban board that runs in a CLI.
>
> click-default-group is a dependency of clikan.

Thank you. I applied both.

Note that I reworded description and synopsis of clikan, and set version
to 0.1.3 instead of 0.0.0 according to VERSION file in repository.

Regards,
-- 
Nicolas Goaziou




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

* [bug#46969] [PATCH 1/2] gnu: Add clikan
  2021-03-06 16:14 [bug#46969] [PATCH 1/2] gnu: Add clikan jgart via Guix-patches via
  2021-03-13 11:24 ` Nicolas Goaziou
@ 2021-03-17 18:22 ` jgart via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: jgart via Guix-patches via @ 2021-03-17 18:22 UTC (permalink / raw)
  To: mail, 46969; +Cc: 46969-done, packaging-guix, raghavgururajan

Hi Nicolas,

Thank you for taking the time to review our patch.

all the best,

jgart

libremiami.org

March 13, 2021 6:24 AM, "Nicolas Goaziou" <mail@nicolasgoaziou.fr> wrote:

> Hello,
> 
> jgart via Guix-patches via <guix-patches@gnu.org> writes:
> 
>> Here are two more patches from LibreMiami.
>> 
>> clikan is a super simple personal kanban board that runs in a CLI.
>> 
>> click-default-group is a dependency of clikan.
> 
> Thank you. I applied both.
> 
> Note that I reworded description and synopsis of clikan, and set version
> to 0.1.3 instead of 0.0.0 according to VERSION file in repository.
> 
> Regards,
> --
> Nicolas Goaziou




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

end of thread, other threads:[~2021-03-17 18:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-06 16:14 [bug#46969] [PATCH 1/2] gnu: Add clikan jgart via Guix-patches via
2021-03-13 11:24 ` Nicolas Goaziou
2021-03-17 18:22 ` jgart via Guix-patches via

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).