[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
30/91: gnu: pango: Update to 1.48.3.
From: |
guix-commits |
Subject: |
30/91: gnu: pango: Update to 1.48.3. |
Date: |
Mon, 19 Apr 2021 17:14:02 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 1c261debe0fab07b62248b7b8a1e65beaab6b4e4
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Tue Mar 23 23:32:15 2021 -0400
gnu: pango: Update to 1.48.3.
* gnu/packages/gtk.scm (pango) [version]: Update to 1.48.3.
[arguments]<#:phases>['disable-cantarell-tests]: Modify.
[propagated-inputs]: Add libthai and libxrender.
[native-inputs]: Add help2man, perl and python-wrapper.
Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
gnu/packages/gtk.scm | 69 +++++++++++++++++++++++++++++-----------------------
1 file changed, 38 insertions(+), 31 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index add30c6..c8a3cc0 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -79,6 +79,7 @@
#:use-module (gnu packages image)
#:use-module (gnu packages libffi)
#:use-module (gnu packages linux)
+ #:use-module (gnu packages man)
#:use-module (gnu packages pdf)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
@@ -313,30 +314,31 @@ applications.")
(define-public pango
(package
- (name "pango")
- (version "1.44.7")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://gnome/sources/pango/"
- (version-major+minor version) "/"
- name "-" version ".tar.xz"))
- (patches (search-patches "pango-skip-libthai-test.patch"))
- (sha256
- (base32
- "07qvxa2sk90chp1l12han6vxvy098mc37sdqcznyywyv2g6bd9b6"))))
- (build-system meson-build-system)
- (arguments
- '(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
- #:phases (modify-phases %standard-phases
- (add-after 'unpack 'disable-cantarell-tests
- (lambda _
- (substitute* "tests/meson.build"
- ;; XXX FIXME: These tests require "font-cantarell", but
- ;; adding it here would introduce a circular dependency.
- (("\\[ 'test-harfbuzz'.*") "")
- (("\\[ 'test-itemize'.*") "")
- (("\\[ 'test-layout'.*") ""))
- #t)))))
+ (name "pango")
+ (version "1.48.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnome/sources/pango/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (patches (search-patches "pango-skip-libthai-test.patch"))
+ (sha256
+ (base32
+ "0ijbkcs6217ygzphlpi0vajxkccifdbsl0jdjpy8wz11h9f19sin"))))
+ (build-system meson-build-system)
+ (arguments
+ '(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
+ #:phases (modify-phases %standard-phases
+ (add-after 'unpack 'disable-cantarell-tests
+ (lambda _
+ (substitute* "tests/meson.build"
+ ;; XXX FIXME: These tests require "font-cantarell", but
+ ;; adding it here would introduce a circular
dependency.
+ (("\\[ 'test-layout'.*") "")
+ (("\\[ 'test-itemize'.*") "")
+ (("\\[ 'test-font'.*") "")
+ (("\\[ 'test-harfbuzz'.*") ""))
+ #t)))))
(propagated-inputs
;; These are all in Requires or Requires.private of the '.pc' files.
`(("cairo" ,cairo)
@@ -345,22 +347,27 @@ applications.")
("fribidi" ,fribidi)
("glib" ,glib)
("harfbuzz" ,harfbuzz)
+ ("libthai" ,libthai)
;; Some packages, such as Openbox, expect Pango to be built with the
;; optional libxft support.
- ("libxft" ,libxft)))
+ ("libxft" ,libxft)
+ ("libxrender" ,libxrender)))
(inputs
`(("zlib" ,zlib)))
(native-inputs
`(("glib" ,glib "bin") ; glib-mkenums, etc.
("gobject-introspection" ,gobject-introspection) ; g-ir-compiler, etc.
- ("pkg-config" ,pkg-config)))
- (synopsis "GNOME text and font handling library")
- (description
- "Pango is the core text and font handling library used in GNOME
+ ("help2man" ,help2man)
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)
+ ("python" ,python-wrapper)))
+ (synopsis "GNOME text and font handling library")
+ (description
+ "Pango is the core text and font handling library used in GNOME
applications. It has extensive support for the different writing systems
used throughout the world.")
- (license license:lgpl2.0+)
- (home-page "https://developer.gnome.org/pango/")))
+ (license license:lgpl2.0+)
+ (home-page "https://developer.gnome.org/pango/")))
(define-public pango-1.42
(package
- 45/91: gnu: vala: Fix documentation., (continued)
- 45/91: gnu: vala: Fix documentation., guix-commits, 2021/04/19
- 44/91: gnu: vala: Enable coverage support., guix-commits, 2021/04/19
- 43/91: gnu: vala: Change build-system., guix-commits, 2021/04/19
- 47/91: gnu: vala: Update synopsis and description., guix-commits, 2021/04/19
- 50/91: gnu: libgsf: Re-arrange inputs in alphabetical order., guix-commits, 2021/04/19
- 54/91: gnu: libgsf: Update synopsis, description, home-page and license., guix-commits, 2021/04/19
- 55/91: gnu: atk: Re-arrange inputs in alphabetical order., guix-commits, 2021/04/19
- 20/91: gnu: cairo: Make some cosmetic changes., guix-commits, 2021/04/19
- 22/91: gnu: cairo: Move documentation to separate output., guix-commits, 2021/04/19
- 26/91: gnu: cairomm: Enable documentation., guix-commits, 2021/04/19
- 30/91: gnu: pango: Update to 1.48.3.,
guix-commits <=
- 34/91: gnu: pangomm-2.42: Update to 2.42.2., guix-commits, 2021/04/19
- 36/91: gnu: gdk-pixbuf: Correct inputs., guix-commits, 2021/04/19
- 52/91: gnu: libgsf: Correct inputs., guix-commits, 2021/04/19
- 58/91: gnu: atkmm: Update to 2.36.0., guix-commits, 2021/04/19
- 64/91: gnu: at-spi2-core: Update home-page and license., guix-commits, 2021/04/19
- 73/91: gnu: wayland-protocols: Update description., guix-commits, 2021/04/19
- 74/91: gnu: yelp-xsl: Enable documentation., guix-commits, 2021/04/19
- 80/91: gnu: gtk+: Enable cloud-providers support., guix-commits, 2021/04/19
- 84/91: gnu: ibus: Update to 1.5.24., guix-commits, 2021/04/19
- 61/91: gnu: Add atkmm-2.28., guix-commits, 2021/04/19