GNU bug report logs - #65932
[PATCH] gnu: Add blinkenlights.

Previous Next

Package: guix-patches;

Reported by: "B. Wilson" <elaexuotee <at> wilsonb.com>

Date: Thu, 14 Sep 2023 05:12:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 65932 in the body.
You can then email your comments to 65932 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#65932; Package guix-patches. (Thu, 14 Sep 2023 05:12:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to "B. Wilson" <elaexuotee <at> wilsonb.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 14 Sep 2023 05:12:02 GMT) Full text and rfc822 format available.

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

From: "B. Wilson" <elaexuotee <at> wilsonb.com>
To: guix-patches <at> gnu.org
Cc: "B. Wilson" <elaexuotee <at> wilsonb.com>
Subject: [PATCH] gnu: Add blinkenlights.
Date: Thu, 14 Sep 2023 14:10:47 +0900
* gnu/packages/assembly.scm (blinkenlights): New variable.
---
 gnu/packages/assembly.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 81e38c3f41..71271f3659 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -13,6 +13,7 @@
 ;;; Copyright © 2021 Guillaume Le Vaillant <glv <at> posteo.net>
 ;;; Copyright © 2022 Felix Gruber <felgru <at> posteo.net>
 ;;; Copyright © 2022 Andy Tai <atai <at> atai.org>
+;;; Copyright © 2023 B. Wilson <elaexuotee <at> wilsonb.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -583,3 +584,37 @@ (define-public neon2sse
 SSE4.2) intrinsic functions as defined in corresponding x86 compilers headers
 files.")
       (license license:bsd-2))))
+
+(define-public blinkenlights
+  (package
+    (name "blinkenlights")
+    (version "1.0.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/jart/blink.git")
+               (commit version)))
+        (sha256
+          (base32 "0dgfqy5z1vbpgbf39f14ngkqmw4gi3hsyihi4sh1qcbp9gnqpg2v"))
+        (file-name (git-file-name name version))))
+    (build-system gnu-build-system)
+    (arguments
+      (list
+        #:tests? #f  ; Tests require network access
+        #:phases
+        #~(modify-phases %standard-phases
+          ;; Call ./configure without --enable-fast-install argument, which
+          ;; causes the script to fail with an "unsupported option" error.
+          (replace 'configure
+            (lambda* (#:key inputs outputs #:allow-other-keys)
+              (invoke "./configure"
+                      (string-append "CC=" #$(cc-for-target))
+                      (string-append "--prefix=" (assoc-ref outputs "out"))))))))
+    (home-page "https://justine.lol/blinkenlights/")
+    (synopsis "TUI emulator for x86-64-linux programs")
+    (description "Blinkenlights is a command line debugger that focuses on
+visualizing how software changes memory.  It's able to emulate statically
+linked i8086 and x86_64-pc-linux-gnu programs on the Linux, Mac, Windows,
+FreeBSD, NetBSD, and OpenBSD platforms.")
+    (license license:isc)))
-- 
2.41.0





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 27 Sep 2023 21:59:02 GMT) Full text and rfc822 format available.

Notification sent to "B. Wilson" <elaexuotee <at> wilsonb.com>:
bug acknowledged by developer. (Wed, 27 Sep 2023 21:59:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: "B. Wilson" <elaexuotee <at> wilsonb.com>
Cc: 65932-done <at> debbugs.gnu.org
Subject: Re: bug#65932: [PATCH] gnu: Add blinkenlights.
Date: Wed, 27 Sep 2023 23:58:23 +0200
[Message part 1 (text/plain, inline)]
"B. Wilson" <elaexuotee <at> wilsonb.com> skribis:

> * gnu/packages/assembly.scm (blinkenlights): New variable.

Applied with the cosmetic changes below.

Thanks!

Ludo’.

[Message part 2 (text/x-patch, inline)]
diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 7ea8712e60..3bfe0bd3e0 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -650,19 +650,18 @@ (define-public blinkenlights
   (package
     (name "blinkenlights")
     (version "1.0.0")
-    (source
-      (origin
+    (source (origin
               (method git-fetch)
               (uri (git-reference
-               (url "https://github.com/jart/blink.git")
+                    (url "https://github.com/jart/blink")
                     (commit version)))
               (sha256
-          (base32 "0dgfqy5z1vbpgbf39f14ngkqmw4gi3hsyihi4sh1qcbp9gnqpg2v"))
+               (base32
+                "0dgfqy5z1vbpgbf39f14ngkqmw4gi3hsyihi4sh1qcbp9gnqpg2v"))
               (file-name (git-file-name name version))))
     (build-system gnu-build-system)
     (arguments
-      (list
-        #:tests? #f  ; Tests require network access
+     (list #:tests? #f                           ;Tests require network access
            #:phases
            #~(modify-phases %standard-phases
                ;; Call ./configure without --enable-fast-install argument, which
@@ -671,11 +670,12 @@ (define-public blinkenlights
                  (lambda* (#:key inputs outputs #:allow-other-keys)
                    (invoke "./configure"
                            (string-append "CC=" #$(cc-for-target))
-                      (string-append "--prefix=" (assoc-ref outputs "out"))))))))
+                           (string-append "--prefix="
+                                          (assoc-ref outputs "out"))))))))
     (home-page "https://justine.lol/blinkenlights/")
-    (synopsis "TUI emulator for x86-64-linux programs")
-    (description "Blinkenlights is a command line debugger that focuses on
-visualizing how software changes memory.  It's able to emulate statically
-linked i8086 and x86_64-pc-linux-gnu programs on the Linux, Mac, Windows,
-FreeBSD, NetBSD, and OpenBSD platforms.")
+    (synopsis "Emulator for x86_64-linux programs with a text user interface")
+    (description
+     "Blinkenlights is a command-line debugger that focuses on visualizing how
+software changes memory.  It can emulate statically-linked i8086 and
+x86_64-pc-linux-gnu programs.")
     (license license:isc)))

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 26 Oct 2023 11:24:11 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 196 days ago.

Previous Next


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