unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#49377] [PATCH] gnu: language: Import qt-utils to nimf and hime.
@ 2021-07-04 12:37 Domagoj Stolfa
  2021-07-04 13:13 ` [bug#49377] Splitting it into two commits Domagoj Stolfa
  2021-07-04 17:18 ` bug#49377: [PATCH] gnu: language: Import qt-utils to nimf and hime Leo Prikler
  0 siblings, 2 replies; 5+ messages in thread
From: Domagoj Stolfa @ 2021-07-04 12:37 UTC (permalink / raw)
  To: 49377; +Cc: Domagoj Stolfa

This commit fixes the build of 'telegram-desktop'.

* gnu/packages/language.scm (nimf, hime): Add 'qt-utils' to nimf's and hime's
build system arguments.
---
 gnu/packages/language.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/language.scm b/gnu/packages/language.scm
index 199a0368a9..861a92505f 100644
--- a/gnu/packages/language.scm
+++ b/gnu/packages/language.scm
@@ -88,7 +88,8 @@
      `(#:imported-modules
        (,@%glib-or-gtk-build-system-modules
         (guix build cmake-build-system)
-        (guix build qt-build-system))
+        (guix build qt-build-system)
+        (guix build qt-utils))
        #:modules
        ((guix build glib-or-gtk-build-system)
         ((guix build qt-build-system)
@@ -223,7 +224,8 @@ focuses especially on Korean input (Hangul, Hanja, ...).")
        #:imported-modules
        (,@%glib-or-gtk-build-system-modules
         (guix build cmake-build-system)
-        (guix build qt-build-system))
+        (guix build qt-build-system)
+        (guix build qt-utils))
        #:modules
        ((guix build glib-or-gtk-build-system)
         ((guix build qt-build-system)
--
2.32.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#49377] Splitting it into two commits
  2021-07-04 12:37 [bug#49377] [PATCH] gnu: language: Import qt-utils to nimf and hime Domagoj Stolfa
@ 2021-07-04 13:13 ` Domagoj Stolfa
  2021-07-04 13:13   ` [bug#49377] [PATCH 1/2] gnu: language: Import qt-utils to nimf Domagoj Stolfa
  2021-07-04 13:13   ` [bug#49377] [PATCH 2/2] gnu: language: Import qt-utils to hime Domagoj Stolfa
  2021-07-04 17:18 ` bug#49377: [PATCH] gnu: language: Import qt-utils to nimf and hime Leo Prikler
  1 sibling, 2 replies; 5+ messages in thread
From: Domagoj Stolfa @ 2021-07-04 13:13 UTC (permalink / raw)
  To: 49377

As suggested by leoprikler on IRC:
http://logs.guix.gnu.org/guix/2021-07-04.log#144418,

split up the patch into two, one for each package.






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#49377] [PATCH 1/2] gnu: language: Import qt-utils to nimf.
  2021-07-04 13:13 ` [bug#49377] Splitting it into two commits Domagoj Stolfa
@ 2021-07-04 13:13   ` Domagoj Stolfa
  2021-07-04 13:13   ` [bug#49377] [PATCH 2/2] gnu: language: Import qt-utils to hime Domagoj Stolfa
  1 sibling, 0 replies; 5+ messages in thread
From: Domagoj Stolfa @ 2021-07-04 13:13 UTC (permalink / raw)
  To: 49377; +Cc: Domagoj Stolfa

* gnu/packages/language.scm (nimf)[@:imported-modules]: Add qt-utils.
---
 gnu/packages/language.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/language.scm b/gnu/packages/language.scm
index 199a0368a9..9cfbb70a85 100644
--- a/gnu/packages/language.scm
+++ b/gnu/packages/language.scm
@@ -88,7 +88,8 @@
      `(#:imported-modules
        (,@%glib-or-gtk-build-system-modules
         (guix build cmake-build-system)
-        (guix build qt-build-system))
+        (guix build qt-build-system)
+        (guix build qt-utils))
        #:modules
        ((guix build glib-or-gtk-build-system)
         ((guix build qt-build-system)
--
2.32.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#49377] [PATCH 2/2] gnu: language: Import qt-utils to hime.
  2021-07-04 13:13 ` [bug#49377] Splitting it into two commits Domagoj Stolfa
  2021-07-04 13:13   ` [bug#49377] [PATCH 1/2] gnu: language: Import qt-utils to nimf Domagoj Stolfa
@ 2021-07-04 13:13   ` Domagoj Stolfa
  1 sibling, 0 replies; 5+ messages in thread
From: Domagoj Stolfa @ 2021-07-04 13:13 UTC (permalink / raw)
  To: 49377; +Cc: Domagoj Stolfa

* gnu/packages/language.scm (hime)[@:imported-modules]: Add qt-utils.
---
 gnu/packages/language.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/language.scm b/gnu/packages/language.scm
index 9cfbb70a85..861a92505f 100644
--- a/gnu/packages/language.scm
+++ b/gnu/packages/language.scm
@@ -224,7 +224,8 @@ focuses especially on Korean input (Hangul, Hanja, ...).")
        #:imported-modules
        (,@%glib-or-gtk-build-system-modules
         (guix build cmake-build-system)
-        (guix build qt-build-system))
+        (guix build qt-build-system)
+        (guix build qt-utils))
        #:modules
        ((guix build glib-or-gtk-build-system)
         ((guix build qt-build-system)
--
2.32.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#49377: [PATCH] gnu: language: Import qt-utils to nimf and hime.
  2021-07-04 12:37 [bug#49377] [PATCH] gnu: language: Import qt-utils to nimf and hime Domagoj Stolfa
  2021-07-04 13:13 ` [bug#49377] Splitting it into two commits Domagoj Stolfa
@ 2021-07-04 17:18 ` Leo Prikler
  1 sibling, 0 replies; 5+ messages in thread
From: Leo Prikler @ 2021-07-04 17:18 UTC (permalink / raw)
  To: 49377-done; +Cc: ds815

I just recalled that I pushed the split commits (with some rewordings)
earlier today, so marking this as done.

Thanks,
Leo





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-07-04 17:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-04 12:37 [bug#49377] [PATCH] gnu: language: Import qt-utils to nimf and hime Domagoj Stolfa
2021-07-04 13:13 ` [bug#49377] Splitting it into two commits Domagoj Stolfa
2021-07-04 13:13   ` [bug#49377] [PATCH 1/2] gnu: language: Import qt-utils to nimf Domagoj Stolfa
2021-07-04 13:13   ` [bug#49377] [PATCH 2/2] gnu: language: Import qt-utils to hime Domagoj Stolfa
2021-07-04 17:18 ` bug#49377: [PATCH] gnu: language: Import qt-utils to nimf and hime Leo Prikler

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).