[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/232: gnu: Add opentype-sanitizer.
From: |
guix-commits |
Subject: |
20/232: gnu: Add opentype-sanitizer. |
Date: |
Sun, 24 Apr 2022 23:58:26 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit d7cf414ae59db293e2ca9fa48f0070d454fb5f5b
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Apr 1 14:57:40 2022 -0400
gnu: Add opentype-sanitizer.
* gnu/packages/fontutils.scm (opentype-sanitizer): New variable.
---
gnu/packages/fontutils.scm | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index c8c32fd5a9..16c2391179 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -12,7 +12,7 @@
;;; Copyright © 2019, 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Roel Janssen <roel@gnu.org>
;;; Copyright © 2020, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
-;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2020, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;; Copyright © 2022 Felipe Balbi <balbi@kernel.org>
@@ -65,6 +65,7 @@
#:use-module (gnu packages xorg)
#:use-module (gnu packages tex)
#:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix svn-download)
@@ -108,6 +109,28 @@ anti-aliased glyph bitmap generation with 256 gray
levels.")
(license license:freetype) ; some files have other licenses
(home-page "https://www.freetype.org/")))
+(define-public opentype-sanitizer
+ (package
+ (name "opentype-sanitizer")
+ (version "8.2.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/khaledhosny/ots"
+ "/releases/download/v" version
+ "/ots-" version ".tar.xz"))
+ (sha256
+ (base32
+ "17z8cxv48rfig5k7j3xk3bmbf7rm3kxsc3bazix96l0wws58r569"))))
+ (build-system meson-build-system)
+ (native-inputs (list googletest pkg-config))
+ (inputs (list freetype lz4 woff2 zlib))
+ (home-page "https://github.com/khaledhosny/ots")
+ (synopsis "Sanitizer for OpenType fonts")
+ (description "The OpenType Sanitizer (OTS) parses and serializes OpenType
+files (OTF, TTF) and WOFF and WOFF2 font files, validating them and sanitizing
+them as it goes.")
+ (license license:bsd-3)))
+
(define-public ttfautohint
(package
(name "ttfautohint")
- branch wip-ipython-polyglossia created (now fda121f755), guix-commits, 2022/04/24
- 02/232: gnu: python-astroid: Propagate python-typing-extensions., guix-commits, 2022/04/24
- 03/232: gnu: Add python-pure-eval., guix-commits, 2022/04/24
- 04/232: gnu: Add python-asttokens., guix-commits, 2022/04/24
- 06/232: gnu: Add python-stack-data., guix-commits, 2022/04/24
- 09/232: gnu: python-prompt-toolkit: Update to 3.0.29., guix-commits, 2022/04/24
- 08/232: gnu: python-jinja2: Update to 3.1.1., guix-commits, 2022/04/24
- 10/232: gnu: python-ipython: Update to 8.2.0 [fixes CVE-2022-21699]., guix-commits, 2022/04/24
- 20/232: gnu: Add opentype-sanitizer.,
guix-commits <=
- 11/232: gnu: python-nbformat: Update to 5.3.0., guix-commits, 2022/04/24
- 12/232: gnu: Add texlive-paralist., guix-commits, 2022/04/24
- 21/232: gnu: Add python-opentype-sanitizer., guix-commits, 2022/04/24
- 07/232: gnu: python-traitlets: Update to 5.1.1., guix-commits, 2022/04/24
- 01/232: gnu: python-ipython: Re-order fields., guix-commits, 2022/04/24
- 05/232: gnu: Add python-littleutils., guix-commits, 2022/04/24
- 13/232: gnu: Add texlive-stix2-otf., guix-commits, 2022/04/24
- 14/232: gnu: Add texlive-metalogo., guix-commits, 2022/04/24
- 16/232: gnu: Add texlive-csplain., guix-commits, 2022/04/24
- 22/232: gnu: Add python-defcon-bootstrap., guix-commits, 2022/04/24