GNU bug report logs -
#52424
[PATCH] gnu: Add cgdb.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 52424 in the body.
You can then email your comments to 52424 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#52424
; Package
guix-patches
.
(Sat, 11 Dec 2021 08:10:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sat, 11 Dec 2021 08:10:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/debug.scm (cgdb): New variable.
---
gnu/packages/debug.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index c95cd036e8..7e2e5863c1 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -7,6 +7,7 @@
;;; Copyright © 2020 Vincent Legoll <vincent.legoll <at> gmail.com>
;;; Copyright © 2020, 2021 Morgan Smith <Morgan.J.Smith <at> outlook.com>
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
+;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -60,6 +61,7 @@
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages readline)
#:use-module (gnu packages serialization)
+ #:use-module (gnu packages texinfo)
#:use-module (gnu packages virtualization)
#:use-module (gnu packages xdisorg)
#:use-module (ice-9 match)
@@ -756,6 +758,32 @@ smaller than that of other tools such as Valgrind, and it aims to be easier to
use than similar tools like @command{mtrace}.")
(license license:gpl2+)))
+(define-public cgdb
+ (package
+ (name "cgdb")
+ (version "0.7.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://cgdb.me/files/cgdb-" version ".tar.gz"))
+ (sha256
+ (base32 "1671gpz5gx5j0zga8xy2x7h33vqh3nij93lbb6dbb366ivjknwmv"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("ncurses" ,ncurses)
+ ("readline" ,readline)))
+ (native-inputs
+ `(("flex" ,flex)
+ ("texinfo" ,texinfo)))
+ (home-page "https://cgdb.github.io")
+ (synopsis "Console front-end to the GNU debugger")
+ (description
+ "@code{cgdb} is a lightweight curses (terminal-based) interface to the
+GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides a
+split screen view that displays the source code as it executes. The keyboard
+interface is modeled after vim, so vim users should feel at home using cgdb.")
+ (license license:gpl2+)))
+
(define-public mspdebug
;; Last official release was 24 July 2017
(let ((commit "4c4d94e43bc4a18ecf82070ff81cd38dd5641e3b")
base-commit: cfdf66e6bfc463b041965b64fc95174c90f046e0
--
2.25.1
Reply sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
You have taken responsibility.
(Fri, 17 Dec 2021 08:30:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
:
bug acknowledged by developer.
(Fri, 17 Dec 2021 08:30:04 GMT)
Full text and
rfc822 format available.
Message #10 received at 52424-done <at> debbugs.gnu.org (full text, mbox):
Hello,
Foo Chuan Wei <chuanwei.foo <at> hotmail.com> writes:
> * gnu/packages/debug.scm (cgdb): New variable.
Thank you.
I used new package style explained below, and applied your patch.
> + (inputs
> + `(("ncurses" ,ncurses)
> + ("readline" ,readline)))
(inputs
(list ncurses readline))
> + (native-inputs
> + `(("flex" ,flex)
> + ("texinfo" ,texinfo)))
(native-inputs
(list flex texinfo))
Regards,
--
Nicolas Goaziou
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 14 Jan 2022 12:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 3 years and 157 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.