GNU bug report logs - #73757
[PATCH] gnu: cutecom: Add cutecom v0.51.0

Previous Next

Package: guix-patches;

Reported by: Aaron Covrig <aaron.covrig.us <at> ieee.org>

Date: Fri, 11 Oct 2024 23:52:02 UTC

Severity: normal

Tags: patch

To reply to this bug, email your comments to 73757 AT debbugs.gnu.org.

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#73757; Package guix-patches. (Fri, 11 Oct 2024 23:52:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Aaron Covrig <aaron.covrig.us <at> ieee.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 11 Oct 2024 23:52:02 GMT) Full text and rfc822 format available.

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

From: Aaron Covrig <aaron.covrig.us <at> ieee.org>
To: guix-patches <at> gnu.org
Cc: Aaron Covrig <aaron.covrig.us <at> ieee.org>
Subject: [PATCH] gnu: cutecom: Add cutecom v0.51.0
Date: Fri, 11 Oct 2024 19:50:29 -0400
* gnu/packages/terminals.scm (cutecom): New variable
---
 gnu/packages/terminals.scm | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 701686258d..936d66a654 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -34,7 +34,7 @@
 ;;; Copyright © 2022 Felipe Balbi <balbi <at> kernel.org>
 ;;; Copyright © 2022 ( <paren <at> disroot.org>
 ;;; Copyright © 2022, 2023 jgart <jgart <at> dismail.de>
-;;; Copyright © 2023 Aaron Covrig <aaron.covrig.us <at> ieee.org>
+;;; Copyright © 2023, 2024 Aaron Covrig <aaron.covrig.us <at> ieee.org>
 ;;; Copyright © 2023 Foundation Devices, Inc. <hello <at> foundationdevices.com>
 ;;; Copyright © 2023, 2024 Zheng Junjie <873216071 <at> qq.com>
 ;;; Copyright © 2023 Jaeme Sifat <jaeme <at> runbox.com>
@@ -846,6 +846,41 @@ (define-public cool-retro-term
                 license:x11
                 license:bsd-3))))
 
+(define-public cutecom
+  (package
+    (name "cutecom")
+    (version "0.51.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.com/cutecom/cutecom")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1zprabjs4z26hsb64fc3k790aiiqiz9d88j666xrzi4983m1bfv8"))))
+    (build-system cmake-build-system)
+    (inputs (list qtbase-5 qtserialport-5))
+    (arguments
+     `(#:tests? #f
+       #:phases (modify-phases %standard-phases
+                  ;; Patch in missing QT 5.15 required include
+                  (add-after 'unpack 'patch-includes
+                    (lambda _
+                      (substitute* "ctrlcharacterspopup.cpp"
+                        (("#include <QPainter>" all)
+                         (string-append all "\n" "#include <QPainterPath>"))))))))
+    (home-page "https://gitlab.com/cutecom/cutecom")
+    (synopsis "Graphical serial terminal")
+    (description
+     "CuteCom is a graphical serial terminal, like minicom.  Currently it runs
+on Linux (tested) and should run on FreeBSD, Mac OS X and maybe other systems as
+well (untested).  It is aimed mainly at hardware developers or other people who
+need a terminal to talk to their devices.  It is free software and distributed
+under the GNU General Public License Version 3.  It is written using the Qt
+library originally created by Trolltech.")
+    (license license:gpl3)))
+
 (define-public foot
   (package
     (name "foot")

base-commit: b8fd792ea267cb920da0651074a533d8abf00488
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#73757; Package guix-patches. (Thu, 24 Oct 2024 21:01:01 GMT) Full text and rfc822 format available.

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

From: Aaron Covrig <aaron.covrig.us <at> ieee.org>
To: 73757 <at> debbugs.gnu.org
Cc: Aaron Covrig <aaron.covrig.us <at> ieee.org>
Subject: [PATCH v1] gnu: cutecom: Add cutecom v0.51.0
Date: Thu, 24 Oct 2024 16:58:56 -0400
* gnu/packages/terminals.scm (cutecom): New variable
---
 gnu/packages/terminals.scm | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index fbfc4439db..6ae9489eca 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -34,7 +34,7 @@
 ;;; Copyright © 2022 Felipe Balbi <balbi <at> kernel.org>
 ;;; Copyright © 2022 ( <paren <at> disroot.org>
 ;;; Copyright © 2022, 2023 jgart <jgart <at> dismail.de>
-;;; Copyright © 2023 Aaron Covrig <aaron.covrig.us <at> ieee.org>
+;;; Copyright © 2023, 2024 Aaron Covrig <aaron.covrig.us <at> ieee.org>
 ;;; Copyright © 2023 Foundation Devices, Inc. <hello <at> foundationdevices.com>
 ;;; Copyright © 2023, 2024 Zheng Junjie <873216071 <at> qq.com>
 ;;; Copyright © 2023 Jaeme Sifat <jaeme <at> runbox.com>
@@ -846,6 +846,41 @@ (define-public cool-retro-term
                 license:x11
                 license:bsd-3))))
 
+(define-public cutecom
+  (package
+    (name "cutecom")
+    (version "0.51.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.com/cutecom/cutecom")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1zprabjs4z26hsb64fc3k790aiiqiz9d88j666xrzi4983m1bfv8"))))
+    (build-system cmake-build-system)
+    (inputs (list qtbase-5 qtserialport-5))
+    (arguments
+     `(#:tests? #f
+       #:phases (modify-phases %standard-phases
+                  ;; Patch in missing QT 5.15 required include
+                  (add-after 'unpack 'patch-includes
+                    (lambda _
+                      (substitute* "ctrlcharacterspopup.cpp"
+                        (("#include <QPainter>" all)
+                         (string-append all "\n" "#include <QPainterPath>"))))))))
+    (home-page "https://gitlab.com/cutecom/cutecom")
+    (synopsis "Graphical serial terminal")
+    (description
+     "CuteCom is a graphical serial terminal, like minicom.  Currently it runs
+on Linux (tested) and should run on FreeBSD, Mac OS X and maybe other systems as
+well (untested).  It is aimed mainly at hardware developers or other people who
+need a terminal to talk to their devices.  It is free software and distributed
+under the GNU General Public License Version 3.  It is written using the Qt
+library originally created by Trolltech.")
+    (license license:gpl3)))
+
 (define-public foot
   (package
     (name "foot")

base-commit: 573a07b689fedcf3f36fa46a4625153fda273344
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#73757; Package guix-patches. (Sat, 08 Mar 2025 18:04:01 GMT) Full text and rfc822 format available.

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

From: Aaron Covrig <aaron.covrig.us <at> ieee.org>
To: 73757 <at> debbugs.gnu.org
Subject: Close out as superseded or keep?
Date: Sat, 8 Mar 2025 13:03:12 -0500
[Message part 1 (text/plain, inline)]
It looks like a newer release candidate has been merged in
(https://issues.guix.gnu.org/75654); do we wish to close this issue out
as superseded or do we want to merge it in to have a mainline version
and a release candidate?

v/r,

Aaron Covrig
[Message part 2 (application/pgp-signature, inline)]

This bug report was last modified 98 days ago.

Previous Next


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