diff options
author | Ludovic Courtès <[email protected]> | 2020-12-08 11:02:41 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2020-12-08 11:06:38 +0100 |
commit | 79b31767d084a2feeb2edcb41ae863a0d534b847 (patch) | |
tree | 0db141179b4b58aa10bf299d03fef79e3b8ad356 /gnu/packages/fontutils.scm | |
parent | 52ef5b384786b4a2f7031ee26ef6b196bc22f912 (diff) |
gnu: freetype: Update to 2.10.4 and remove replacement.
* gnu/packages/fontutils.scm (freetype): Update to 2.10.4.
[replacement]: Remove.
(freetype/fixed): Remove.
Diffstat (limited to 'gnu/packages/fontutils.scm')
-rw-r--r-- | gnu/packages/fontutils.scm | 31 |
1 files changed, 9 insertions, 22 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index ed2e960938..09d4b7964c 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -8,7 +8,7 @@ ;;; Copyright © 2017 Nikita <[email protected]> ;;; Copyright © 2017, 2018, 2020 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2018 Ricardo Wurmus <[email protected]> -;;; Copyright © 2018, 2019 Ludovic Courtès <[email protected]> +;;; Copyright © 2018, 2019, 2020 Ludovic Courtès <[email protected]> ;;; Copyright © 2019, 2020 Marius Bakke <[email protected]> ;;; Copyright © 2020 Roel Janssen <[email protected]> ;;; Copyright © 2020 Nicolas Goaziou <[email protected]> @@ -73,14 +73,14 @@ (define-public freetype (package (name "freetype") - (version "2.10.1") - (replacement freetype/fixed) - (source (origin - (method url-fetch) - (uri (string-append "mirror://savannah/freetype/freetype-" - version ".tar.xz")) - (sha256 (base32 - "0vx2dg1jh5kq34dd6ifpjywkpapp8a7p1bvyq9yq5zi1i94gmnqn")))) + (version "2.10.4") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://savannah/freetype/freetype-" + version ".tar.xz")) + (sha256 + (base32 "112pyy215chg7f7fmp2l9374chhhpihbh8wgpj5nj6avj3c59a46")))) (build-system gnu-build-system) (arguments ;; The use of "freetype-config" is deprecated, but other packages still @@ -103,19 +103,6 @@ anti-aliased glyph bitmap generation with 256 gray levels.") (license license:freetype) ; some files have other licenses (home-page "https://www.freetype.org/"))) -(define freetype/fixed - ;; Security fix for CVE-2020-15999. - (package - (inherit freetype) - (version "2.10.4") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://savannah/freetype/freetype-" - version ".tar.xz")) - (sha256 - (base32 "112pyy215chg7f7fmp2l9374chhhpihbh8wgpj5nj6avj3c59a46")))))) - (define-public ttfautohint (package (name "ttfautohint") |