GNU bug report logs - #25829
[PATCH] gnu: Add font-tamzen.

Previous Next

Package: guix-patches;

Reported by: contact.ng0 <at> cryptolab.net

Date: Tue, 21 Feb 2017 11:39:01 UTC

Severity: normal

Tags: fixed, patch

Done: ng0 <contact.ng0 <at> cryptolab.net>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: ng0 <contact.ng0 <at> cryptolab.net>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#25829: closed ([PATCH] gnu: Add font-tamzen.)
Date: Fri, 10 Mar 2017 08:21:02 +0000
[Message part 1 (text/plain, inline)]
Your message dated Fri, 10 Mar 2017 09:29:11 +0000
with message-id <20170310092911.jsdwmtikm4yn7qcb <at> abyayala>
and subject line Re: bug#25829: [PATCH] gnu: Add font-tamzen.
has caused the debbugs.gnu.org bug report #25829,
regarding [PATCH] gnu: Add font-tamzen.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
25829: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25829
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: contact.ng0 <at> cryptolab.net
To: guix-patches <at> gnu.org
Cc: ng0 <contact.ng0 <at> cryptolab.net>
Subject: [PATCH] gnu: Add font-tamzen.
Date: Tue, 21 Feb 2017 11:39:45 +0000
From: ng0 <contact.ng0 <at> cryptolab.net>

* gnu/packages/fonts.scm (font-tamzen): New variable.
---
 gnu/packages/fonts.scm | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index ce07accbf..0a8d1efce 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1035,6 +1035,70 @@ designed to work well in user interface environments.")
 vector graphics.")
    (license license:silofl1.1)))
 
+(define-public font-tamzen
+  (package
+    (name "font-tamzen")
+    (version "1.11.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/sunaku/tamzen-font/archive/"
+                           "Tamzen-" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1ryd7gp6qiwaqw73jqbmh4kwlriyd8xykh4j7z90z8xp9fm7lrys"))))
+    (build-system trivial-build-system)
+    (arguments
+     `(#:modules ((guix build utils))
+       #:builder
+       (begin
+         (use-modules (guix build utils))
+
+         (let ((tar      (string-append (assoc-ref %build-inputs "tar")
+                                        "/bin/tar"))
+               (PATH     (string-append (assoc-ref %build-inputs "gzip")
+                                        "/bin"))
+               (font-dir (string-append %output "/share/fonts/misc"))
+               (psf-dir (string-append %output "/share/kbd/consolefonts"))
+               (src-pcf-dir (string-append "tamzen-font-Tamzen-"
+                                            ,version "/pcf")))
+           (setenv "PATH" PATH)
+           (system* tar "xvf" (assoc-ref %build-inputs "source"))
+           (mkdir-p font-dir)
+           (mkdir-p psf-dir)
+           (chdir src-pcf-dir)
+           (for-each (lambda (pcf)
+                       (install-file pcf font-dir))
+                     (find-files "." "\\.pcf$"))
+           (chdir "../psf")
+           (for-each (lambda (psf)
+                       (install-file psf psf-dir))
+                     (find-files "." "\\.psf$"))
+           #t))))
+    (native-inputs
+     `(("tar" ,tar)
+       ("gzip" ,gzip)))
+    (home-page "https://github.com/sunaku/tamzen-font")
+    (synopsis "Monospaced bitmap font for console and X11")
+    (description
+     "Tamzen is a fork of the @code{Tamsyn} font.  It is programatically forked
+from @code{Tamsyn} version 1.11, backporting glyphs from older versions while
+deleting deliberately empty glyphs (which are marked as unimplemented) to
+allow secondary/fallback fonts to provide real glyphs at those codepoints.
+
+The 'TamzenForPowerline' fonts provide additional @code{Powerline} symbols,
+which are programatically injected with @code{bitmap-font-patcher} and
+later hand-tweaked with the gbdfed(1) editor:
+
+@enumerate
+@item all icons are expanded to occupy the maximum available space
+@item the branch of the fork icon ( U+E0A0) was made larger than the trunk
+@item for the newline icon ( U+E0A1), the 'N' was made larger at the bottom
+@item the keyhole in the padlock icon ( U+E0A2) was replaced with '//' lines.
+@end enumerate\n")
+    (license (license:non-copyleft "file://LICENSE"))))
+
 (define-public font-comic-neue
   (package
    (name "font-comic-neue")
-- 
2.11.1



[Message part 3 (message/rfc822, inline)]
From: ng0 <contact.ng0 <at> cryptolab.net>
To: Kei Kebreau <kei <at> openmailbox.org>
Cc: 25829-done <at> debbugs.gnu.org
Subject: Re: bug#25829: [PATCH] gnu: Add font-tamzen.
Date: Fri, 10 Mar 2017 09:29:11 +0000
Kei Kebreau transcribed 4.7K bytes:
> contact.ng0 <at> cryptolab.net writes:
> 
> > From: ng0 <contact.ng0 <at> cryptolab.net>
> >
> > * gnu/packages/fonts.scm (font-tamzen): New variable.
> > ---
> >  gnu/packages/fonts.scm | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++
> >  1 file changed, 64 insertions(+)
> >
> > diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
> > index ce07accbf..0a8d1efce 100644
> > --- a/gnu/packages/fonts.scm
> > +++ b/gnu/packages/fonts.scm
> > @@ -1035,6 +1035,70 @@ designed to work well in user interface environments.")
> >  vector graphics.")
> >     (license license:silofl1.1)))
> >  
> > +(define-public font-tamzen
> > +  (package
> > +    (name "font-tamzen")
> > +    (version "1.11.4")
> > +    (source
> > +     (origin
> > +       (method url-fetch)
> > +       (uri (string-append "https://github.com/sunaku/tamzen-font/archive/"
> > +                           "Tamzen-" version ".tar.gz"))
> > +       (file-name (string-append name "-" version ".tar.gz"))
> > +       (sha256
> > +        (base32
> > +         "1ryd7gp6qiwaqw73jqbmh4kwlriyd8xykh4j7z90z8xp9fm7lrys"))))
> > +    (build-system trivial-build-system)
> > +    (arguments
> > +     `(#:modules ((guix build utils))
> > +       #:builder
> > +       (begin
> > +         (use-modules (guix build utils))
> > +
> > +         (let ((tar      (string-append (assoc-ref %build-inputs "tar")
> > +                                        "/bin/tar"))
> > +               (PATH     (string-append (assoc-ref %build-inputs "gzip")
> > +                                        "/bin"))
> > +               (font-dir (string-append %output "/share/fonts/misc"))
> > +               (psf-dir (string-append %output "/share/kbd/consolefonts"))
> > +               (src-pcf-dir (string-append "tamzen-font-Tamzen-"
> > +                                            ,version "/pcf")))
> > +           (setenv "PATH" PATH)
> > +           (system* tar "xvf" (assoc-ref %build-inputs "source"))
> > +           (mkdir-p font-dir)
> > +           (mkdir-p psf-dir)
> > +           (chdir src-pcf-dir)
> > +           (for-each (lambda (pcf)
> > +                       (install-file pcf font-dir))
> > +                     (find-files "." "\\.pcf$"))
> > +           (chdir "../psf")
> > +           (for-each (lambda (psf)
> > +                       (install-file psf psf-dir))
> > +                     (find-files "." "\\.psf$"))
> > +           #t))))
> > +    (native-inputs
> > +     `(("tar" ,tar)
> > +       ("gzip" ,gzip)))
> > +    (home-page "https://github.com/sunaku/tamzen-font")
> > +    (synopsis "Monospaced bitmap font for console and X11")
> > +    (description
> > +     "Tamzen is a fork of the @code{Tamsyn} font.  It is programatically forked
> > +from @code{Tamsyn} version 1.11, backporting glyphs from older versions while
> > +deleting deliberately empty glyphs (which are marked as unimplemented) to
> > +allow secondary/fallback fonts to provide real glyphs at those codepoints.
> > +
> > +The 'TamzenForPowerline' fonts provide additional @code{Powerline} symbols,
> > +which are programatically injected with @code{bitmap-font-patcher} and
> > +later hand-tweaked with the gbdfed(1) editor:
> > +
> 
> I changed 'TamzenForPowerline' to @code{TamzenForPowerline} for guix
> lint's sake.
> 
> > +@enumerate
> > +@item all icons are expanded to occupy the maximum available space
> > +@item the branch of the fork icon ( U+E0A0) was made larger than the trunk
> > +@item for the newline icon ( U+E0A1), the 'N' was made larger at the bottom
> > +@item the keyhole in the padlock icon ( U+E0A2) was replaced with '//' lines.
> > +@end enumerate\n")
> 
> I changed the 'N' and '//' to @emph{N} and @emph{//} also for guix lint's sake.
> 
> > +    (license (license:non-copyleft "file://LICENSE"))))
> > +
> >  (define-public font-comic-neue
> >    (package
> >     (name "font-comic-neue")
> 
> Pushed to master as f2a7ce5033390e5a7b5faa8218010c4fd05ace1f.

Thanks, closed.


This bug report was last modified 8 years and 133 days ago.

Previous Next


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