GNU bug report logs - #76965
[PATCH] gnu: Add cxxmatrix.

Previous Next

Package: guix-patches;

Reported by: Andrew Wong <wongandj <at> icloud.com>

Date: Wed, 12 Mar 2025 00:03:02 UTC

Severity: normal

Tags: patch

Done: Z572 <z572 <at> z572.online>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 76965 in the body.
You can then email your comments to 76965 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#76965; Package guix-patches. (Wed, 12 Mar 2025 00:03:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Andrew Wong <wongandj <at> icloud.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 12 Mar 2025 00:03:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Andrew Wong <wongandj <at> icloud.com>
To: guix-patches <at> gnu.org
Cc: Andrew Wong <wongandj <at> icloud.com>
Subject: [PATCH] gnu: Add cxxmatrix.
Date: Tue, 11 Mar 2025 20:02:02 -0400
* gnu/packages/toys.scm (cxxmatrix): New variable.

Change-Id: I3298b90b65f363b56ee32c9e24ce4639e6501e80
---
 gnu/packages/toys.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
index f0284ad9d6..11699b19ca 100644
--- a/gnu/packages/toys.scm
+++ b/gnu/packages/toys.scm
@@ -103,6 +103,34 @@ (define-public cbonsai
 creates, colors, and positions a bonsai tree, and is configurable.")
       (license license:gpl3+))))
 
+(define-public cxxmatrix
+  (package
+    (name "cxxmatrix")
+    (version "2024.6.17")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/akinomyoga/cxxmatrix")
+             (commit "c8d4ecfb8b6c22bb93f3e10a9d203209ba193591")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0shlh0kbx5169pk1i72ymyyfadywyzmw4f95hn0lm8irjynizzg5"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list #:tests? #f ;no tests
+           #:make-flags #~(list (string-append "PREFIX=" #$output))
+           #:phases #~(modify-phases %standard-phases (delete 'configure))))
+    (home-page "https://github.com/akinomyoga/cxxmatrix")
+    (synopsis "Configurable \"The Matrix\" digital rain effect and more")
+    (description
+     "This package displays a \"digital rain\" effect from the 1999 film
+\"The Matrix\" in the terminal with authentic hankaku kana characters
+and bloom effects, as well as rotating/zooming mandelbrot set and
+Conway's game of life effects. Title text and color are
+configurable.")
+    (license license:expat)))
+
 (define-public daikichi
   (package
     (name "daikichi")

base-commit: c10ca0d37a640000d09e42766123088041431e6c
-- 
2.48.1





Information forwarded to guix-patches <at> gnu.org:
bug#76965; Package guix-patches. (Wed, 02 Apr 2025 14:48:01 GMT) Full text and rfc822 format available.

Message #8 received at 76965 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Andrew Wong <wongandj <at> icloud.com>
Cc: 76965 <at> debbugs.gnu.org
Subject: Re: [bug#76965] [PATCH] gnu: Add cxxmatrix.
Date: Wed, 02 Apr 2025 16:47:00 +0200
Hi,

Andrew Wong <wongandj <at> icloud.com> skribis:

> +    (version "2024.6.17")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/akinomyoga/cxxmatrix")
> +             (commit "c8d4ecfb8b6c22bb93f3e10a9d203209ba193591")))
> +       (file-name (git-file-name name version))

Could you change this patch to follow the versioning scheme for Git
snapshots outlined in the manual?

  https://guix.gnu.org/manual/devel/en/html_node/Version-Numbers.html

Apart from that, it LGTM.

Thanks in advance,
Ludo’.




Information forwarded to guix-patches <at> gnu.org:
bug#76965; Package guix-patches. (Sat, 05 Apr 2025 05:55:01 GMT) Full text and rfc822 format available.

Message #11 received at 76965 <at> debbugs.gnu.org (full text, mbox):

From: Andrew Wong <wongandj <at> icloud.com>
To: 76965 <at> debbugs.gnu.org
Cc: Andrew Wong <wongandj <at> icloud.com>
Subject: [PATCH v2] gnu: Add cxxmatrix.
Date: Sat,  5 Apr 2025 01:53:10 -0400
* gnu/packages/toys.scm (cxxmatrix): New variable.

Change-Id: I3298b90b65f363b56ee32c9e24ce4639e6501e80
---
Fixed the version number and polished up the synopsis/description
 gnu/packages/toys.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
index f0284ad9d6..6354a8640a 100644
--- a/gnu/packages/toys.scm
+++ b/gnu/packages/toys.scm
@@ -103,6 +103,34 @@ (define-public cbonsai
 creates, colors, and positions a bonsai tree, and is configurable.")
       (license license:gpl3+))))
 
+(define-public cxxmatrix
+  (let ((commit "c8d4ecfb8b6c22bb93f3e10a9d203209ba193591")
+        (revision "0"))
+    (package
+      (name "cxxmatrix")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/akinomyoga/cxxmatrix")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0shlh0kbx5169pk1i72ymyyfadywyzmw4f95hn0lm8irjynizzg5"))))
+      (build-system gnu-build-system)
+      (arguments
+       (list #:tests? #f                ;no tests
+             #:make-flags #~(list (string-append "PREFIX=" #$output))
+             #:phases #~(modify-phases %standard-phases (delete 'configure))))
+      (home-page "https://github.com/akinomyoga/cxxmatrix")
+      (synopsis "Configurable @emph{The Matrix} digital rain effect and more")
+      (description "This package displays the ``digital rain'' effect from the 1999
+film @emph{The Matrix} in the terminal with authentic hankaku kana characters and
+bloom as well as rotating and zooming Mandelbrot set and Conway's game of life
+effects.  The presented title text and color are configurable.")
+      (license license:expat))))
+
 (define-public daikichi
   (package
     (name "daikichi")

base-commit: c10ca0d37a640000d09e42766123088041431e6c
-- 
2.49.0





Reply sent to Z572 <z572 <at> z572.online>:
You have taken responsibility. (Fri, 18 Apr 2025 12:31:04 GMT) Full text and rfc822 format available.

Notification sent to Andrew Wong <wongandj <at> icloud.com>:
bug acknowledged by developer. (Fri, 18 Apr 2025 12:31:04 GMT) Full text and rfc822 format available.

Message #16 received at 76965-done <at> debbugs.gnu.org (full text, mbox):

From: Z572 <z572 <at> z572.online>
To: Andrew Wong via Guix-patches via <guix-patches <at> gnu.org>
Cc: 76965-done <at> debbugs.gnu.org, Andrew Wong <wongandj <at> icloud.com>
Subject: Re: [bug#76965] [PATCH v2] gnu: Add cxxmatrix.
Date: Fri, 18 Apr 2025 20:30:16 +0800
[Message part 1 (text/plain, inline)]
Andrew Wong via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/toys.scm (cxxmatrix): New variable.
>
> Change-Id: I3298b90b65f363b56ee32c9e24ce4639e6501e80
> ---
> Fixed the version number and polished up the synopsis/description
>  gnu/packages/toys.scm | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
>
> diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
> index f0284ad9d6..6354a8640a 100644
> --- a/gnu/packages/toys.scm
> +++ b/gnu/packages/toys.scm
> @@ -103,6 +103,34 @@ (define-public cbonsai
>  creates, colors, and positions a bonsai tree, and is configurable.")
>        (license license:gpl3+))))
>  
> +(define-public cxxmatrix
> +  (let ((commit "c8d4ecfb8b6c22bb93f3e10a9d203209ba193591")
> +        (revision "0"))
> +    (package
> +      (name "cxxmatrix")
> +      (version (git-version "0" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url "https://github.com/akinomyoga/cxxmatrix")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32 "0shlh0kbx5169pk1i72ymyyfadywyzmw4f95hn0lm8irjynizzg5"))))
> +      (build-system gnu-build-system)
> +      (arguments
> +       (list #:tests? #f                ;no tests
> +             #:make-flags #~(list (string-append "PREFIX=" #$output))
> +             #:phases #~(modify-phases %standard-phases (delete 'configure))))
> +      (home-page "https://github.com/akinomyoga/cxxmatrix")
> +      (synopsis "Configurable @emph{The Matrix} digital rain effect and more")
> +      (description "This package displays the ``digital rain'' effect from the 1999
> +film @emph{The Matrix} in the terminal with authentic hankaku kana characters and
> +bloom as well as rotating and zooming Mandelbrot set and Conway's game of life
> +effects.  The presented title text and color are configurable.")
> +      (license license:expat))))
> +
>  (define-public daikichi
>    (package
>      (name "daikichi")
>
> base-commit: c10ca0d37a640000d09e42766123088041431e6c
pushed, closing.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#76965; Package guix-patches. (Fri, 18 Apr 2025 12:38:05 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 17 May 2025 11:24:18 GMT) Full text and rfc822 format available.

This bug report was last modified 90 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.