unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#41460] [PATCH] gnu: Add python-pyfiglet
@ 2020-05-22 15:24 Edouard Klein
  2020-05-30 12:58 ` Marius Bakke
  2020-06-02 11:39 ` Edouard Klein
  0 siblings, 2 replies; 4+ messages in thread
From: Edouard Klein @ 2020-05-22 15:24 UTC (permalink / raw)
  To: 41460


* gnu/packages/python-xyz (python-pyfiglet): New variable.
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d8552276fc..7a1312e87b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20133,3 +20133,21 @@ using multi-select lists, confirmations, free text prompts, completion, etc.")
 background tasks, and check these tasks' health by hand, relaunch them, etc. by attaching
 to the corresponding pane in tmux.")
     (license license:agpl3+)))
+
+(define-public python-pyfiglet
+  (package
+  (name "python-pyfiglet")
+  (version "0.8.post1")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (pypi-uri "pyfiglet" version))
+      (sha256
+        (base32
+          "0f9n2076ga2ccsg174k2d7n0z4d44ml96yzc72s6g4nhalbk5hn6"))))
+  (build-system python-build-system)
+  (home-page "https://github.com/pwaller/pyfiglet")
+  (synopsis "Pure-python FIGlet implementation")
+  (description "This module lets you draw large letter from ordinary characters
+ in pure Python.")
+  (license license:expat)))
-- 
2.26.2




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

* [bug#41460] [PATCH] gnu: Add python-pyfiglet
  2020-05-22 15:24 [bug#41460] [PATCH] gnu: Add python-pyfiglet Edouard Klein
@ 2020-05-30 12:58 ` Marius Bakke
  2020-06-02 11:39 ` Edouard Klein
  1 sibling, 0 replies; 4+ messages in thread
From: Marius Bakke @ 2020-05-30 12:58 UTC (permalink / raw)
  To: Edouard Klein, 41460

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

Edouard Klein <edk@beaver-labs.com> writes:

> * gnu/packages/python-xyz (python-pyfiglet): New variable.

Thanks!

[...]

> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
> index d8552276fc..7a1312e87b 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -20133,3 +20133,21 @@ using multi-select lists, confirmations, free text prompts, completion, etc.")
>  background tasks, and check these tasks' health by hand, relaunch them, etc. by attaching
>  to the corresponding pane in tmux.")
>      (license license:agpl3+)))
> +
> +(define-public python-pyfiglet

This depends on some missing context in python-xyz.scm and does not
apply.  Can you rebase this on 'master'?

> +  (package
> +  (name "python-pyfiglet")

The indentation here is off.  If you are not using Emacs, there is a
script to help with the indentation.

> +  (version "0.8.post1")
> +  (source
> +    (origin
> +      (method url-fetch)
> +      (uri (pypi-uri "pyfiglet" version))
> +      (sha256
> +        (base32
> +          "0f9n2076ga2ccsg174k2d7n0z4d44ml96yzc72s6g4nhalbk5hn6"))))
> +  (build-system python-build-system)
> +  (home-page "https://github.com/pwaller/pyfiglet")
> +  (synopsis "Pure-python FIGlet implementation")
> +  (description "This module lets you draw large letter from ordinary characters
> + in pure Python.")

It would be good to define FIGlet here somewhere.

Can you send an updated patch?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* [bug#41460] [PATCH] gnu: Add python-pyfiglet
  2020-05-22 15:24 [bug#41460] [PATCH] gnu: Add python-pyfiglet Edouard Klein
  2020-05-30 12:58 ` Marius Bakke
@ 2020-06-02 11:39 ` Edouard Klein
  2020-06-22 19:44   ` bug#41460: " Marius Bakke
  1 sibling, 1 reply; 4+ messages in thread
From: Edouard Klein @ 2020-06-02 11:39 UTC (permalink / raw)
  To: 41460


* gnu/packages/python-xyz.scm (python-pyfiglet): New variable.
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6aa666430a..3ecfaab081 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10087,6 +10087,24 @@ interface to the Amazon Web Services (AWS) API.")
 (define-public python2-botocore
   (package-with-python2 python-botocore))
 
+(define-public python-pyfiglet
+  (package
+    (name "python-pyfiglet")
+    (version "0.8.post1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pyfiglet" version))
+       (sha256
+        (base32
+         "0f9n2076ga2ccsg174k2d7n0z4d44ml96yzc72s6g4nhalbk5hn6"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/pwaller/pyfiglet")
+    (synopsis "Draw ASCII art big letters in pure-python")
+    (description "This module lets you draw large letter from ordinary characters
+ in pure Python.")
+    (license license:expat)))
+
 (define-public python-xdo
   (package
     (name "python-xdo")
-- 
2.26.2





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

* bug#41460: [PATCH] gnu: Add python-pyfiglet
  2020-06-02 11:39 ` Edouard Klein
@ 2020-06-22 19:44   ` Marius Bakke
  0 siblings, 0 replies; 4+ messages in thread
From: Marius Bakke @ 2020-06-22 19:44 UTC (permalink / raw)
  To: Edouard Klein, 41460-done

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

Edouard Klein <edk@beaver-labs.com> writes:

> * gnu/packages/python-xyz.scm (python-pyfiglet): New variable.

Applied, thanks!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

end of thread, other threads:[~2020-06-22 19:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-22 15:24 [bug#41460] [PATCH] gnu: Add python-pyfiglet Edouard Klein
2020-05-30 12:58 ` Marius Bakke
2020-06-02 11:39 ` Edouard Klein
2020-06-22 19:44   ` bug#41460: " Marius Bakke

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).