GNU bug report logs - #56211
[PATCH 0/3] "Update" harfbuzz and pango

Previous Next

Package: guix-patches;

Reported by: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Date: Sat, 25 Jun 2022 06:48:02 UTC

Severity: normal

Tags: patch

Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 56211 in the body.
You can then email your comments to 56211 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#56211; Package guix-patches. (Sat, 25 Jun 2022 06:48:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 25 Jun 2022 06:48:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH 0/3] "Update" harfbuzz and pango
Date: Sat, 25 Jun 2022 08:43:50 +0200
Hi Guix,

the following patch set updates harfbuzz-3 to the latest version
(including a variable rename), adds harfbuzz-4 and pango-1.90.

Cheers

Liliana Marie Prikler (3):
  gnu: harfbuzz-3: Update to 3.4.0.
  gnu: Add harfbuzz-4.
  gnu: Add pango-1.90.

 gnu/packages/chromium.scm |  2 +-
 gnu/packages/gtk.scm      | 42 ++++++++++++++++++++++++++++++++++++---
 2 files changed, 40 insertions(+), 4 deletions(-)

-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56211; Package guix-patches. (Sat, 25 Jun 2022 06:50:02 GMT) Full text and rfc822 format available.

Message #8 received at 56211 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 56211 <at> debbugs.gnu.org
Subject: [PATCH 2/3] gnu: Add harfbuzz-4.
Date: Fri, 24 Jun 2022 23:10:49 +0200
* gnu/packages/gtk.scm (harfbuzz-4): New variable.
---
 gnu/packages/gtk.scm | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 9c4af3e512..7418acb31e 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -292,6 +292,19 @@ (define-public harfbuzz-3
                (base32
                 "0lprrl8iih8ji1n17xwm5llz05a1hv4g04b7a3y229dq9myahn3i"))))))
 
+(define-public harfbuzz-4
+  (package
+    (inherit harfbuzz)
+    (version "4.3.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/harfbuzz/harfbuzz"
+                                  "/releases/download/" version
+                                  "/harfbuzz-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0c5mzwgz43d37h75p4b6cgjg4v24jdd96i7gjpgxirn8qks2i5m4"))))))
+
 (define-public libdatrie
   (package
     (name "libdatrie")
-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56211; Package guix-patches. (Sat, 25 Jun 2022 06:50:02 GMT) Full text and rfc822 format available.

Message #11 received at 56211 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 56211 <at> debbugs.gnu.org
Subject: [PATCH 1/3] gnu: harfbuzz-3: Update to 3.4.0.
Date: Fri, 24 Jun 2022 23:08:26 +0200
* gnu/packages/gtk.scm (harfbuzz-3.0): Rename to...
(harfbuzz-3): ... this.  Update to 3.4.0.
* gnu/packages/chromium.scm (ungoogled-chromium): Adjust accordingly.
---
 gnu/packages/chromium.scm | 2 +-
 gnu/packages/gtk.scm      | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/chromium.scm b/gnu/packages/chromium.scm
index bdfebed99e..fd19831884 100644
--- a/gnu/packages/chromium.scm
+++ b/gnu/packages/chromium.scm
@@ -884,7 +884,7 @@ (define-public ungoogled-chromium
            gdk-pixbuf
            glib
            gtk+
-           harfbuzz-3.0
+           harfbuzz-3
            icu4c
            jsoncpp
            lcms
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 73b313520f..9c4af3e512 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -279,10 +279,10 @@ (define-public harfbuzz
                        "See 'COPYING' in the distribution."))
    (home-page "https://www.freedesktop.org/wiki/Software/HarfBuzz/")))
 
-(define-public harfbuzz-3.0
+(define-public harfbuzz-3
   (package
     (inherit harfbuzz)
-    (version "3.0.0")
+    (version "3.4.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://github.com/harfbuzz/harfbuzz"
@@ -290,7 +290,7 @@ (define-public harfbuzz-3.0
                                   "/harfbuzz-" version ".tar.xz"))
               (sha256
                (base32
-                "1ngk8vn06rryx3s4v5pbl91bw1j1pd4431n77rw3j5a533hhwsq3"))))))
+                "0lprrl8iih8ji1n17xwm5llz05a1hv4g04b7a3y229dq9myahn3i"))))))
 
 (define-public libdatrie
   (package
-- 
2.36.1





Information forwarded to guix-patches <at> gnu.org:
bug#56211; Package guix-patches. (Sat, 25 Jun 2022 06:50:03 GMT) Full text and rfc822 format available.

Message #14 received at 56211 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 56211 <at> debbugs.gnu.org
Subject: [PATCH 3/3] gnu: Add pango-1.90.
Date: Fri, 24 Jun 2022 23:10:57 +0200
* gnu/packages/gtk.scm (pango-1.90): New variable.
---
 gnu/packages/gtk.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 7418acb31e..3fce6255e3 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -468,6 +468,29 @@ (define-public pango-1.42
                        (("test-layout\\$\\(EXEEXT\\)") ""))
                      #t)))))))
 
+(define-public pango-1.90
+  (package
+    (inherit pango)
+    (name "pango")
+    (version "1.90.0")
+    (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
+                "1zqif72jxa819bwi4jv2vgac574qas3w37f7qvn8l31rm1jgjf7i"))
+              (modules '((guix build utils)))
+              (snippet
+               #~(begin
+                   (substitute* "pango/pangocairo-font.c"
+                     (("cairo_user_font_face_set_render_color_glyph_func")
+                      "cairo_user_font_face_set_render_glyph_func"))))))
+    (inputs (modify-inputs (package-inputs pango)
+               (prepend harfbuzz-4)))))
+
 (define-public pangox-compat
   (package
     (name "pangox-compat")
-- 
2.36.1





Reply sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
You have taken responsibility. (Sat, 09 Jul 2022 08:49:01 GMT) Full text and rfc822 format available.

Notification sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
bug acknowledged by developer. (Sat, 09 Jul 2022 08:49:01 GMT) Full text and rfc822 format available.

Message #19 received at 56211-done <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 56211-done <at> debbugs.gnu.org
Subject: Re: [PATCH 0/3] "Update" harfbuzz and pango
Date: Sat, 09 Jul 2022 10:48:38 +0200
Am Samstag, dem 25.06.2022 um 08:43 +0200 schrieb Liliana Marie
Prikler:
> Hi Guix,
> 
> the following patch set updates harfbuzz-3 to the latest version
> (including a variable rename), adds harfbuzz-4 and pango-1.90.
> 
> Cheers
> 
> Liliana Marie Prikler (3):
>   gnu: harfbuzz-3: Update to 3.4.0.
>   gnu: Add harfbuzz-4.
>   gnu: Add pango-1.90.
> 
>  gnu/packages/chromium.scm |  2 +-
>  gnu/packages/gtk.scm      | 42 ++++++++++++++++++++++++++++++++++++-
> --
>  2 files changed, 40 insertions(+), 4 deletions(-)
Pushed as 15b4579a5a2dfa06dfc1b8d3892caed4c4f0a2ce.

Cheers




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 06 Aug 2022 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 257 days ago.

Previous Next


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