[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
252/295: gnu: pango: Update package definition.
From: |
guix-commits |
Subject: |
252/295: gnu: pango: Update package definition. |
Date: |
Mon, 27 Jul 2020 06:26:29 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 3e402a0376268193b92da101f2249db0e6c8e0a8
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sat Jul 11 18:36:12 2020 -0400
gnu: pango: Update package definition.
* gnu/packages/gtk.scm (pango): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
[native-inputs]: Add help2man, perl and python-wrapper.
[propagated-inputs]: Add libthai and libxrender.
[synopsis]: Modify.
[description]: Modify.
[home-page]: Modify.
* gnu/packages/patches/pango-skip-libthai-test.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/local.mk | 1 -
gnu/packages/gtk.scm | 99 +++++++++++-----------
gnu/packages/patches/pango-skip-libthai-test.patch | 23 -----
3 files changed, 51 insertions(+), 72 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index b36b91c..0786fa4 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1351,7 +1351,6 @@ dist_patch_DATA =
\
%D%/packages/patches/p7zip-remove-unused-code.patch \
%D%/packages/patches/pam-krb5-CVE-2020-10595.patch \
%D%/packages/patches/pam-mount-luks2-support.patch \
- %D%/packages/patches/pango-skip-libthai-test.patch \
%D%/packages/patches/pciutils-hurd-configure.patch \
%D%/packages/patches/sdl-pango-api_additions.patch \
%D%/packages/patches/sdl-pango-blit_overflow.patch \
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index eddecd1..5082732 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -78,6 +78,7 @@
#:use-module (gnu packages iso-codes)
#: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)
@@ -298,54 +299,56 @@ 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
- '(#: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)))))
- (propagated-inputs
- ;; These are all in Requires or Requires.private of the '.pc' files.
- `(("cairo" ,cairo)
- ("fribidi" ,fribidi)
- ("fontconfig" ,fontconfig)
- ("freetype" ,freetype)
- ("glib" ,glib)
- ("harfbuzz" ,harfbuzz)
-
- ;; Some packages, such as Openbox, expect Pango to be built with the
- ;; optional libxft support.
- ("libxft" ,libxft)))
- (inputs
- `(("zlib" ,zlib)))
- (native-inputs
- `(("pkg-config" ,pkg-config)
- ("glib" ,glib "bin") ; glib-mkenums, etc.
- ("gobject-introspection" ,gobject-introspection))) ; g-ir-compiler, etc.
- (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/")))
+ (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"))
+ (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-failing-tests
+ (lambda _
+ (substitute* "tests/meson.build"
+ (("\\[ 'test-harfbuzz'.*") "")
+ (("\\[ 'test-itemize'.*") "")
+ (("\\[ 'test-layout'.*") ""))
+ #t)))))
+ (native-inputs
+ `(("glib" ,glib "bin")
+ ("gobject-introspection" ,gobject-introspection)
+ ("help2man" ,help2man)
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)
+ ("python" ,python-wrapper)))
+ (inputs
+ `(("zlib" ,zlib)))
+ (propagated-inputs
+ `(("cairo" ,cairo)
+ ("fontconfig" ,fontconfig)
+ ("freetype" ,freetype)
+ ("fribidi" ,fribidi)
+ ("glib" ,glib)
+ ("harfbuzz" ,harfbuzz)
+ ("libthai" ,libthai)
+ ("libxft" ,libxft)
+ ("libxrender" ,libxrender)))
+ (synopsis "Text and font handling library")
+ (description "Pango is a library for laying out and rendering of text, with
+an emphasis on internationalization. Pango can be used anywhere that text
+layout is needed, though most of the work on Pango so far has been done in the
+context of the GTK+ widget toolkit. Pango forms the core of text and font
+handling for GTK+-2.x.")
+ (home-page "https://pango.gnome.org/")
+ (license license:lgpl2.0+)))
(define-public pango-1.42
(package
diff --git a/gnu/packages/patches/pango-skip-libthai-test.patch
b/gnu/packages/patches/pango-skip-libthai-test.patch
deleted file mode 100644
index 98732b5..0000000
--- a/gnu/packages/patches/pango-skip-libthai-test.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Skip Thai character test when libthai is unavailable.
-
-Taken from upstream bug tracker:
-https://gitlab.gnome.org/GNOME/pango/merge_requests/161
-https://gitlab.gnome.org/GNOME/pango/commit/b73284747ac937e31dc9191f84ed6e24284c88ee
-
-diff --git a/tests/test-break.c b/tests/test-break.c
-index
8549b678bba69360d07dce3af21d915412f20d51..47fa3009165e19a331aa04a0df4351ae2323933b
100644
---- a/tests/test-break.c
-+++ b/tests/test-break.c
-@@ -305,6 +305,12 @@ main (int argc, char *argv[])
- if (!strstr (name, "break"))
- continue;
-
-+#ifndef HAVE_LIBTHAI
-+ /* four.break involves Thai, so only test it when we have libthai */
-+ if (strstr (name, "four.break"))
-+ continue;
-+#endif
-+
- path = g_strdup_printf ("/break/%s", name);
- g_test_add_data_func_full (path, g_test_build_filename (G_TEST_DIST,
"breaks", name, NULL),
- test_break, g_free);
- 188/295: gnu: Add rust-imgref., (continued)
- 188/295: gnu: Add rust-imgref., guix-commits, 2020/07/27
- 206/295: gnu: json-glib: Update package definition., guix-commits, 2020/07/27
- 211/295: gnu: Add rust-cssparser-macros@0.6.0., guix-commits, 2020/07/27
- 227/295: gnu: Add rust-peg-macros@0.6.2., guix-commits, 2020/07/27
- 228/295: gnu: Add rust-peg@0.6.2., guix-commits, 2020/07/27
- 233/295: gnu: Add rust-pin-project@0.4.22., guix-commits, 2020/07/27
- 239/295: gnu: Add rust-selectors@0.22.0., guix-commits, 2020/07/27
- 235/295: gnu: Add rust-bytemuck@1.2.0., guix-commits, 2020/07/27
- 240/295: gnu: Add rust-tinyvec@0.3.3., guix-commits, 2020/07/27
- 242/295: gnu: Add rust-nalgebra@0.19.0., guix-commits, 2020/07/27
- 252/295: gnu: pango: Update package definition.,
guix-commits <=
- 251/295: gnu: Add libthai., guix-commits, 2020/07/27
- 250/295: gnu: Add libdatrie., guix-commits, 2020/07/27
- 249/295: gnu: tesseract-ocr: Propagate leptonica., guix-commits, 2020/07/27
- 253/295: gnu: vala: Update package definition., guix-commits, 2020/07/27
- 257/295: gnu: Add wpewebkit., guix-commits, 2020/07/27
- 260/295: gnu: pipewire: Update package definition., guix-commits, 2020/07/27
- 262/295: gnu: yelp-xsl: Update package definition., guix-commits, 2020/07/27
- 259/295: gnu: Add xmltoman., guix-commits, 2020/07/27
- 265/295: gnu: zenity: Update package definition., guix-commits, 2020/07/27
- 268/295: gnu: cairo: Update package definition., guix-commits, 2020/07/27