all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#73024] [PATCH] gnu: Add fontopia.
@ 2024-09-04  7:26 Andy Tai
  2024-09-04  9:03 ` [bug#73024] [PATCH v2] " Andy Tai
  2024-09-25  2:31 ` Andy Tai
  0 siblings, 2 replies; 4+ messages in thread
From: Andy Tai @ 2024-09-04  7:26 UTC (permalink / raw)
  To: 73024; +Cc: Andy Tai

* 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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#73024] [PATCH v2] gnu: Add fontopia.
  2024-09-04  7:26 [bug#73024] [PATCH] gnu: Add fontopia Andy Tai
@ 2024-09-04  9:03 ` Andy Tai
  2024-09-25  2:31 ` Andy Tai
  1 sibling, 0 replies; 4+ messages in thread
From: Andy Tai @ 2024-09-04  9:03 UTC (permalink / raw)
  To: 73024; +Cc: Andy Tai

* 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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#73024] [PATCH v2] gnu: Add fontopia.
  2024-09-04  7:26 [bug#73024] [PATCH] gnu: Add fontopia Andy Tai
  2024-09-04  9:03 ` [bug#73024] [PATCH v2] " Andy Tai
@ 2024-09-25  2:31 ` Andy Tai
  2024-10-03 10:37   ` bug#73024: " Zheng Junjie
  1 sibling, 1 reply; 4+ messages in thread
From: Andy Tai @ 2024-09-25  2:31 UTC (permalink / raw)
  To: 73024; +Cc: Andy Tai

* 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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#73024: [PATCH v2] gnu: Add fontopia.
  2024-09-25  2:31 ` Andy Tai
@ 2024-10-03 10:37   ` Zheng Junjie
  0 siblings, 0 replies; 4+ messages in thread
From: Zheng Junjie @ 2024-10-03 10:37 UTC (permalink / raw)
  To: Andy Tai; +Cc: 73024-done

[-- Attachment #1: Type: text/plain, Size: 1968 bytes --]

Andy Tai <atai@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.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-10-03 10:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-04  7:26 [bug#73024] [PATCH] gnu: Add fontopia Andy Tai
2024-09-04  9:03 ` [bug#73024] [PATCH v2] " Andy Tai
2024-09-25  2:31 ` Andy Tai
2024-10-03 10:37   ` bug#73024: " Zheng Junjie

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.