GNU bug report logs - #73024
[PATCH] gnu: Add fontopia.

Previous Next

Package: guix-patches;

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

Date: Wed, 4 Sep 2024 07:28:02 UTC

Severity: normal

Tags: patch

Done: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>

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 73024 in the body.
You can then email your comments to 73024 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#73024; Package guix-patches. (Wed, 04 Sep 2024 07:28: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 07:28: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 fontopia.
Date: Wed,  4 Sep 2024 00:26:19 -0700
* gnu/packages/fontutils.scm (fontopia): New variable.

Change-Id: I8f9b51922af06f994955b755ec8345d42189cfd7
---
 gnu/packages/fontutils.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 00fb9c33ee..de2e45c91b 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -62,6 +62,7 @@ (define-module (gnu packages fontutils)
   #:use-module (gnu packages java)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages man)
+  #:use-module (gnu packages mc)
   #:use-module (gnu packages ninja)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
@@ -2056,6 +2057,29 @@ (define-public libraqm
 can support most writing systems covered by Unicode.")
     (license license:expat)))
 
+
+(define-public fontopia
+  (package
+    (name "fontopia")
+    (version "2.0")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append "mirror://gnu/fontopia/fontopia-"
+                                 version ".tar.gz"))
+             (sha256
+              (base32 "0wv7bd7gdm1ma4xgq9av73ic3xhpwyszj6g6c6311xjk26xm9ahd"))))
+    (build-system gnu-build-system)
+    (inputs
+     (list gnudos))
+    (home-page "https://www.gnu.org/software/fontopia/")
+    (synopsis "Text-based, console font editor")
+    (description
+     "GNU fontopia is an easy-to-use, text-based, console font editor. You can
+edit the fonts that your GNU/Linux kernel is using to display your text on text-
+based (vs graphical) terminals. ")
+    (license license:gpl3+)))
+
+
 (define-public lcdf-typetools
   (package
     (name "lcdf-typetools")

base-commit: 7fa9df431e9423e2b79c8c520de1d0ef7aed910d
prerequisite-patch-id: 6084d080fcb60fcbb2063ddf60036b4753c5dee3
-- 
2.34.1





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

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

From: Andy Tai <atai <at> atai.org>
To: 73024 <at> debbugs.gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH v2] gnu: Add fontopia.
Date: Wed,  4 Sep 2024 02:03:01 -0700
* gnu/packages/fontutils.scm (fontopia): New variable.

Change-Id: I8f9b51922af06f994955b755ec8345d42189cfd7
---
 gnu/packages/fontutils.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 00fb9c33ee..3a7bfa1aa0 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -62,6 +62,7 @@ (define-module (gnu packages fontutils)
   #:use-module (gnu packages java)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages man)
+  #:use-module (gnu packages mc)
   #:use-module (gnu packages ninja)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
@@ -2056,6 +2057,31 @@ (define-public libraqm
 can support most writing systems covered by Unicode.")
     (license license:expat)))
 
+
+(define-public fontopia
+  (package
+    (name "fontopia")
+    (version "2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://gnu/fontopia/fontopia-" version ".tar.gz"))
+       (sha256
+        (base32 "0wv7bd7gdm1ma4xgq9av73ic3xhpwyszj6g6c6311xjk26xm9ahd"))))
+    (build-system gnu-build-system)
+    (inputs (list gnudos))
+    (home-page "https://www.gnu.org/software/fontopia/")
+    (synopsis "A console font editor")
+    (description
+     "GNU Fontopia is an easy-to-use, text-based, console font editor.  It's used
+to edit the fonts that GNU/Linux uses to display text on text-based
+terminals.  Fontopia works on both PSF 1 & 2, BDF, Code Paged (CP) fonts, and
+Raw font files.  It provides a user-friendly, easy-to-use glyph editor and it
+can easily change font metrics (e.g. length, width, and height) and convert
+between different font formats.")
+    (license license:gpl3+)))
+
+
 (define-public lcdf-typetools
   (package
     (name "lcdf-typetools")

base-commit: 7fa9df431e9423e2b79c8c520de1d0ef7aed910d
prerequisite-patch-id: 6084d080fcb60fcbb2063ddf60036b4753c5dee3
-- 
2.34.1





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

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

From: Andy Tai <atai <at> atai.org>
To: 73024 <at> debbugs.gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH v2] gnu: Add fontopia.
Date: Tue, 24 Sep 2024 19:31:41 -0700
* gnu/packages/fontutils.scm (fontopia): New variable.

Change-Id: I8f9b51922af06f994955b755ec8345d42189cfd7
---
 gnu/packages/fontutils.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 3b6d4900f6..0ca2b0ea2e 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -62,6 +62,7 @@ (define-module (gnu packages fontutils)
   #:use-module (gnu packages java)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages man)
+  #:use-module (gnu packages mc)
   #:use-module (gnu packages ninja)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
@@ -2056,6 +2057,29 @@ (define-public libraqm
 can support most writing systems covered by Unicode.")
     (license license:expat)))
 
+
+(define-public fontopia
+  (package
+    (name "fontopia")
+    (version "2.0")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append "mirror://gnu/fontopia/fontopia-"
+                                 version ".tar.gz"))
+             (sha256
+              (base32 "0wv7bd7gdm1ma4xgq9av73ic3xhpwyszj6g6c6311xjk26xm9ahd"))))
+    (build-system gnu-build-system)
+    (inputs
+     (list gnudos))
+    (home-page "https://www.gnu.org/software/fontopia/")
+    (synopsis "Text-based, console font editor")
+    (description
+     "GNU fontopia is an easy-to-use, text-based, console font editor. You can
+edit the fonts that your GNU/Linux kernel is using to display your text on text-
+based (vs graphical) terminals. ")
+    (license license:gpl3+)))
+
+
 (define-public lcdf-typetools
   (package
     (name "lcdf-typetools")

base-commit: 3ac69c1a757430d6dfdd37eb948ba1d6967967cc
-- 
2.34.1





Reply sent to Zheng Junjie <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Thu, 03 Oct 2024 10:38:01 GMT) Full text and rfc822 format available.

Notification sent to Andy Tai <atai <at> atai.org>:
bug acknowledged by developer. (Thu, 03 Oct 2024 10:38:01 GMT) Full text and rfc822 format available.

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

From: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
To: Andy Tai <atai <at> atai.org>
Cc: 73024-done <at> debbugs.gnu.org
Subject: Re: [bug#73024] [PATCH v2] gnu: Add fontopia.
Date: Thu, 03 Oct 2024 18:37:17 +0800
[Message part 1 (text/plain, inline)]
Andy Tai <atai <at> atai.org> writes:

> * gnu/packages/fontutils.scm (fontopia): New variable.
>
> Change-Id: I8f9b51922af06f994955b755ec8345d42189cfd7
> ---
>  gnu/packages/fontutils.scm | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
>
> diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
> index 3b6d4900f6..0ca2b0ea2e 100644
> --- a/gnu/packages/fontutils.scm
> +++ b/gnu/packages/fontutils.scm
> @@ -62,6 +62,7 @@ (define-module (gnu packages fontutils)
>    #:use-module (gnu packages java)
>    #:use-module (gnu packages linux)
>    #:use-module (gnu packages man)
> +  #:use-module (gnu packages mc)
>    #:use-module (gnu packages ninja)
>    #:use-module (gnu packages perl)
>    #:use-module (gnu packages pkg-config)
> @@ -2056,6 +2057,29 @@ (define-public libraqm
>  can support most writing systems covered by Unicode.")
>      (license license:expat)))
>  
> +
> +(define-public fontopia
> +  (package
> +    (name "fontopia")
> +    (version "2.0")
> +    (source (origin
> +             (method url-fetch)
> +             (uri (string-append "mirror://gnu/fontopia/fontopia-"
> +                                 version ".tar.gz"))
> +             (sha256
> +              (base32 "0wv7bd7gdm1ma4xgq9av73ic3xhpwyszj6g6c6311xjk26xm9ahd"))))
> +    (build-system gnu-build-system)
> +    (inputs
> +     (list gnudos))
> +    (home-page "https://www.gnu.org/software/fontopia/")
> +    (synopsis "Text-based, console font editor")
> +    (description
> +     "GNU fontopia is an easy-to-use, text-based, console font editor. You can
> +edit the fonts that your GNU/Linux kernel is using to display your text on text-
> +based (vs graphical) terminals. ")
> +    (license license:gpl3+)))
> +
> +
>  (define-public lcdf-typetools
>    (package
>      (name "lcdf-typetools")
>
> base-commit: 3ac69c1a757430d6dfdd37eb948ba1d6967967cc

push, and fix guix lint's warn.
[signature.asc (application/pgp-signature, inline)]

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

This bug report was last modified 231 days ago.

Previous Next


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