all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#63704] [PATCH] gnu: zenity: Update to 3.92.0.
@ 2023-05-24 18:11 Greg Hogan
  2023-05-26 13:09 ` 宋文武 via Guix-patches via
  2023-05-26 13:49 ` [bug#63704] [PATCH v2] gnu: zenity: Update to 3.44.1 Greg Hogan
  0 siblings, 2 replies; 4+ messages in thread
From: Greg Hogan @ 2023-05-24 18:11 UTC (permalink / raw)
  To: 63704; +Cc: Greg Hogan

* gnu/packages/gnome.scm (zenity): Update to 3.92.0.
[native-inputs]: Add glib:bin and gtk+:bin.
[inputs]: Add libadwaita.
---
 gnu/packages/gnome.scm | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 2b071de9d3..5dfd19286d 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7753,7 +7753,7 @@ (define-public gedit
 (define-public zenity
   (package
     (name "zenity")
-    (version "3.43.0")
+    (version "3.92.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/zenity/"
@@ -7761,7 +7761,7 @@ (define-public zenity
                                   "zenity-" version ".tar.xz"))
               (sha256
                (base32
-                "0czq2vx636xbvg7zbdqkxq41zgm7v1h048awy0cgls0q1hgcmmxh"))))
+                "1ad8n7xcnvbix4qfl6nbig3sbw35plqhqvsmjphzgn6bcqzw4avd"))))
     (build-system meson-build-system)
     (arguments
      (list #:phases #~(modify-phases %standard-phases
@@ -7770,8 +7770,13 @@ (define-public zenity
                           ;; DESTDIR is unset.
                           (lambda _
                             (setenv "DESTDIR" "/"))))))
-    (native-inputs (list gettext-minimal itstool pkg-config))
-    (inputs (list gtk+))
+    (native-inputs
+     (list gettext-minimal
+           `(,glib "bin")
+           `(,gtk+ "bin")
+           itstool
+           pkg-config))
+    (inputs (list gtk+ libadwaita))
     (synopsis "Display graphical dialog boxes from shell scripts")
     (home-page "https://www.gnome.org")
     (description
-- 
2.40.1





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

* [bug#63704] [PATCH] gnu: zenity: Update to 3.92.0.
  2023-05-24 18:11 [bug#63704] [PATCH] gnu: zenity: Update to 3.92.0 Greg Hogan
@ 2023-05-26 13:09 ` 宋文武 via Guix-patches via
  2023-05-26 13:49 ` [bug#63704] [PATCH v2] gnu: zenity: Update to 3.44.1 Greg Hogan
  1 sibling, 0 replies; 4+ messages in thread
From: 宋文武 via Guix-patches via @ 2023-05-26 13:09 UTC (permalink / raw)
  To: Greg Hogan; +Cc: 63704

Greg Hogan <code@greghogan.com> writes:

> * gnu/packages/gnome.scm (zenity): Update to 3.92.0.

Hello, I think 3.92.0 is an unstable version, we should update to 3.44.1
instead.




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

* [bug#63704] [PATCH v2] gnu: zenity: Update to 3.44.1.
  2023-05-24 18:11 [bug#63704] [PATCH] gnu: zenity: Update to 3.92.0 Greg Hogan
  2023-05-26 13:09 ` 宋文武 via Guix-patches via
@ 2023-05-26 13:49 ` Greg Hogan
  2023-06-01  9:52   ` bug#63704: " Efraim Flashner
  1 sibling, 1 reply; 4+ messages in thread
From: Greg Hogan @ 2023-05-26 13:49 UTC (permalink / raw)
  To: 63704; +Cc: Greg Hogan

* gnu/packages/gnome.scm (zenity): Update to 3.44.1.
[native-inputs]: Add gtk+:bin.
---
 gnu/packages/gnome.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 7df18f055f..324feedcf7 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7754,7 +7754,7 @@ (define-public gedit
 (define-public zenity
   (package
     (name "zenity")
-    (version "3.43.0")
+    (version "3.44.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/zenity/"
@@ -7762,7 +7762,7 @@ (define-public zenity
                                   "zenity-" version ".tar.xz"))
               (sha256
                (base32
-                "0czq2vx636xbvg7zbdqkxq41zgm7v1h048awy0cgls0q1hgcmmxh"))))
+                "1aiyx7z2vnipfmlpk4m20zc5bgjlmh6hx3ix1d61yhb5r6p00m6n"))))
     (build-system meson-build-system)
     (arguments
      (list #:phases #~(modify-phases %standard-phases
@@ -7771,7 +7771,7 @@ (define-public zenity
                           ;; DESTDIR is unset.
                           (lambda _
                             (setenv "DESTDIR" "/"))))))
-    (native-inputs (list gettext-minimal itstool pkg-config))
+    (native-inputs (list gettext-minimal `(,gtk+ "bin") itstool pkg-config))
     (inputs (list gtk+))
     (synopsis "Display graphical dialog boxes from shell scripts")
     (home-page "https://www.gnome.org")
-- 
2.40.1





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

* bug#63704: [PATCH v2] gnu: zenity: Update to 3.44.1.
  2023-05-26 13:49 ` [bug#63704] [PATCH v2] gnu: zenity: Update to 3.44.1 Greg Hogan
@ 2023-06-01  9:52   ` Efraim Flashner
  0 siblings, 0 replies; 4+ messages in thread
From: Efraim Flashner @ 2023-06-01  9:52 UTC (permalink / raw)
  To: Greg Hogan; +Cc: 63704-done

[-- Attachment #1: Type: text/plain, Size: 236 bytes --]

Thanks. Patch pushed.

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2023-06-01  9:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-24 18:11 [bug#63704] [PATCH] gnu: zenity: Update to 3.92.0 Greg Hogan
2023-05-26 13:09 ` 宋文武 via Guix-patches via
2023-05-26 13:49 ` [bug#63704] [PATCH v2] gnu: zenity: Update to 3.44.1 Greg Hogan
2023-06-01  9:52   ` bug#63704: " Efraim Flashner

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.