GNU bug report logs - #73021
[PATCH] gnu: Add gnudos.

Previous Next

Package: guix-patches;

Reported by: Andy Tai <atai <at> atai.org>

Date: Wed, 4 Sep 2024 05:57: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 73021 in the body.
You can then email your comments to 73021 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#73021; Package guix-patches. (Wed, 04 Sep 2024 05:57:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Andy Tai <atai <at> atai.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 04 Sep 2024 05:57:02 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: guix-patches <at> gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH] gnu: Add gnudos.
Date: Tue,  3 Sep 2024 22:54:50 -0700
* gnu/packages/mc.scm (gnudos): New variable.

Change-Id: I03a101be81bba3e4fdf8e11a7b4a799b92f86ad0
---
 gnu/packages/mc.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/mc.scm b/gnu/packages/mc.scm
index dc909ed7e1..15eb0e5d8d 100644
--- a/gnu/packages/mc.scm
+++ b/gnu/packages/mc.scm
@@ -120,3 +120,35 @@ (define-public mc
 FTP or FISH.  It also includes a powerful text editor for opening text
 files.")
     (license gpl3+)))
+
+
+(define-public gnudos
+  (package
+    (name "gnudos")
+    (version "2.0")
+    (source
+     (origin
+      (method url-fetch)
+             (uri (string-append "mirror://gnu/gnudos/gnudos-"
+                                 version ".tar.gz"))
+      (sha256
+       (base32 "06n4n6j7w6f54akmqqmsrbxv5rj6xairc6yskm33ag2ar7w8hz48"))))
+    (build-system gnu-build-system)
+    (inputs (list ncurses))
+    (home-page "https://www.gnu.org/software/gnudos/")
+    (synopsis "DOS-like file manager and text editor on the GNU system")
+    (description
+     "GnuDOS is a library designed to help new users of the GNU system, who are
+coming from a DOS background, fit into the picture and start using the GNU
+system with ease. It also addresses the console programmers of such programs
+that have the look and feel of old DOS system. The library is composed of core
+utilities and software applications:
+@itemize
+@item The core library (corelib) contains four utilities: Kbd (for keyboard
+handling), UKbd (with Unicode support), Screen (for screen drawing),
+and Dialogs (for dialog boxes/window drawing).
+
+@item The software applications are: Prime (console file manager), and Mino
+(console text editor).
+@end itemize")
+    (license gpl2+)))

base-commit: 7fa9df431e9423e2b79c8c520de1d0ef7aed910d
prerequisite-patch-id: a15c31b7d62dad1884467d4668ea9e851a61603e
-- 
2.34.1





Information forwarded to guix-patches <at> gnu.org:
bug#73021; Package guix-patches. (Wed, 04 Sep 2024 06:04:02 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: 73021 <at> debbugs.gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH v2] gnu: Add gnudos.
Date: Tue,  3 Sep 2024 23:01:25 -0700
* gnu/packages/mc.scm (gnudos): New variable.

Change-Id: I03a101be81bba3e4fdf8e11a7b4a799b92f86ad0
---
 gnu/packages/mc.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/mc.scm b/gnu/packages/mc.scm
index dc909ed7e1..2a716ce782 100644
--- a/gnu/packages/mc.scm
+++ b/gnu/packages/mc.scm
@@ -120,3 +120,26 @@ (define-public mc
 FTP or FISH.  It also includes a powerful text editor for opening text
 files.")
     (license gpl3+)))
+
+
+(define-public gnudos
+  (package
+    (name "gnudos")
+    (version "2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://gnu/gnudos/gnudos-" version ".tar.gz"))
+       (sha256
+        (base32 "06n4n6j7w6f54akmqqmsrbxv5rj6xairc6yskm33ag2ar7w8hz48"))))
+    (build-system gnu-build-system)
+    (inputs (list ncurses))
+    (home-page "https://www.gnu.org/software/gnudos/")
+    (synopsis "MS-DOS-like file manager, editor, and other tools")
+    (description
+     "GnuDOS is a set of programs designed to help new users of the GNU
+system in growing accustomed to the system, particularly users who might be
+coming from a DOS background.  It consists of a file manager, a text editor
+and a form designer for the console as well as a core library for building
+similar utilities.")
+    (license gpl3+)))

base-commit: 7fa9df431e9423e2b79c8c520de1d0ef7aed910d
prerequisite-patch-id: a15c31b7d62dad1884467d4668ea9e851a61603e
-- 
2.34.1





Information forwarded to guix-patches <at> gnu.org:
bug#73021; Package guix-patches. (Wed, 04 Sep 2024 07:27:01 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: 73021 <at> debbugs.gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH v3] gnu: Add gnudos.
Date: Wed,  4 Sep 2024 00:24:24 -0700
* gnu/packages/mc.scm (gnudos): New variable.

Change-Id: I03a101be81bba3e4fdf8e11a7b4a799b92f86ad0
---
 gnu/packages/mc.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/mc.scm b/gnu/packages/mc.scm
index 8cf760ac53..bc3a3e8fed 100644
--- a/gnu/packages/mc.scm
+++ b/gnu/packages/mc.scm
@@ -120,3 +120,26 @@ (define-public mc
 FTP or FISH.  It also includes a powerful text editor for opening text
 files.")
     (license gpl3+)))
+
+
+(define-public gnudos
+  (package
+    (name "gnudos")
+    (version "2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://gnu/gnudos/gnudos-" version ".tar.gz"))
+       (sha256
+        (base32 "06n4n6j7w6f54akmqqmsrbxv5rj6xairc6yskm33ag2ar7w8hz48"))))
+    (build-system gnu-build-system)
+    (propagated-inputs (list ncurses))
+    (home-page "https://www.gnu.org/software/gnudos/")
+    (synopsis "MS-DOS-like file manager, editor, and other tools")
+    (description
+     "GnuDOS is a set of programs designed to help new users of the GNU
+system in growing accustomed to the system, particularly users who might be
+coming from a DOS background.  It consists of a file manager, a text editor
+and a form designer for the console as well as a core library for building
+similar utilities.")
+    (license gpl3+)))

base-commit: 7fa9df431e9423e2b79c8c520de1d0ef7aed910d
-- 
2.34.1





Information forwarded to guix-patches <at> gnu.org:
bug#73021; Package guix-patches. (Tue, 17 Sep 2024 23:32:01 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: 73021 <at> debbugs.gnu.org
Subject: Re: [PATCH v3] gnu: Add gnudos.
Date: Tue, 17 Sep 2024 16:29:21 -0700
patch passed QA
https://issues.guix.gnu.org/73021




Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Thu, 19 Sep 2024 11:17:01 GMT) Full text and rfc822 format available.

Notification sent to Andy Tai <atai <at> atai.org>:
bug acknowledged by developer. (Thu, 19 Sep 2024 11:17:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Andy Tai <atai <at> atai.org>
Cc: 73021-done <at> debbugs.gnu.org
Subject: Re: [bug#73021] [PATCH v3] gnu: Add gnudos.
Date: Thu, 19 Sep 2024 13:16:28 +0200
Andy Tai <atai <at> atai.org> skribis:

> * gnu/packages/mc.scm (gnudos): New variable.
>
> Change-Id: I03a101be81bba3e4fdf8e11a7b4a799b92f86ad0

Applied, thanks!

> +     "GnuDOS is a set of programs designed to help new users of the GNU
> +system in growing accustomed to the system, particularly users who might be
> +coming from a DOS background.  It consists of a file manager, a text editor
> +and a form designer for the console as well as a core library for building
> +similar utilities.")

Not sure the target audience still exists.  :-)

Ludo'.




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

This bug report was last modified 301 days ago.

Previous Next


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