all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#60865] [PATCH 1/2] gnu: vte: Update to 0.70.2.
  2023-01-16 17:17 [bug#60865] [PATCH 0/2] Update VTE Liliana Marie Prikler
@ 2023-01-16 15:41 ` Liliana Marie Prikler
  2023-01-16 15:50 ` [bug#60865] [PATCH 2/2] gnu: Add vte-with-gtk-4 Liliana Marie Prikler
  2023-01-29  7:29 ` bug#60865: [PATCH 0/2] Update VTE Liliana Marie Prikler
  2 siblings, 0 replies; 4+ messages in thread
From: Liliana Marie Prikler @ 2023-01-16 15:41 UTC (permalink / raw)
  To: 60865

* gnu/packages/gnome.scm (vte): Update to 0.70.2.
---
 gnu/packages/gnome.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 4cc5ca6969..6f162b084d 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4599,7 +4599,7 @@ (define-public vala-0.52
 (define-public vte
   (package
     (name "vte")
-    (version "0.69.99")
+    (version "0.70.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/vte/"
@@ -4607,7 +4607,7 @@ (define-public vte
                                   "vte-" version ".tar.xz"))
               (sha256
                (base32
-                "1v3i38yrjhc48nvs1g333s3q709mq824qq0k2fnsmrrwv15c3cg9"))))
+                "102d6cd9f96czlq01ixhymfp0z20khw0dl5bgvan9xg31lwb85ad"))))
     (build-system meson-build-system)
     (arguments
      (list #:configure-flags #~(list "-Dvapi=true"
-- 
2.38.1





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

* [bug#60865] [PATCH 2/2] gnu: Add vte-with-gtk-4.
  2023-01-16 17:17 [bug#60865] [PATCH 0/2] Update VTE Liliana Marie Prikler
  2023-01-16 15:41 ` [bug#60865] [PATCH 1/2] gnu: vte: Update to 0.70.2 Liliana Marie Prikler
@ 2023-01-16 15:50 ` Liliana Marie Prikler
  2023-01-29  7:29 ` bug#60865: [PATCH 0/2] Update VTE Liliana Marie Prikler
  2 siblings, 0 replies; 4+ messages in thread
From: Liliana Marie Prikler @ 2023-01-16 15:50 UTC (permalink / raw)
  To: 60865

* gnu/packages/gnome.scm (vte-with-gtk-4): New variable.
---
 gnu/packages/gnome.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 6f162b084d..2d05bfebff 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4634,6 +4634,15 @@ (define-public vte
 editors, IDEs, etc.")
     (license license:lgpl2.1+)))
 
+(define-public vte-with-gtk-4
+  (package/inherit vte
+    (name "vte-with-gtk4")
+    (arguments (substitute-keyword-arguments (package-arguments vte)
+                 ((#:configure-flags flags #~'())
+                  #~(cons* "-Dgtk4=true" "-Dgtk3=false" #$flags))))
+    (propagated-inputs (modify-inputs (package-propagated-inputs vte)
+                         (replace "gtk+" gtk)))))
+
 (define-public vte-ng
   (package
     (inherit vte)
-- 
2.38.1





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

* [bug#60865] [PATCH 0/2] Update VTE
@ 2023-01-16 17:17 Liliana Marie Prikler
  2023-01-16 15:41 ` [bug#60865] [PATCH 1/2] gnu: vte: Update to 0.70.2 Liliana Marie Prikler
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Liliana Marie Prikler @ 2023-01-16 17:17 UTC (permalink / raw)
  To: 60865

Hi Guix,

this series updates VTE and adds a GTK4 version of it.
Originally, I had planned to use this so as to package Black Box [1],
but that one turned out to be a bigger dependency mess than I had
thought [2], so I'll just be adding VTE for now.

Cheers

[1] https://gitlab.gnome.org/raggesilver/blackbox
[2] https://gitlab.gnome.org/raggesilver/blackbox/-/issues/48

Liliana Marie Prikler (2):
  gnu: vte: Update to 0.70.2.
  gnu: Add vte-with-gtk-4.

 gnu/packages/gnome.scm | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

-- 
2.38.1





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

* bug#60865: [PATCH 0/2] Update VTE
  2023-01-16 17:17 [bug#60865] [PATCH 0/2] Update VTE Liliana Marie Prikler
  2023-01-16 15:41 ` [bug#60865] [PATCH 1/2] gnu: vte: Update to 0.70.2 Liliana Marie Prikler
  2023-01-16 15:50 ` [bug#60865] [PATCH 2/2] gnu: Add vte-with-gtk-4 Liliana Marie Prikler
@ 2023-01-29  7:29 ` Liliana Marie Prikler
  2 siblings, 0 replies; 4+ messages in thread
From: Liliana Marie Prikler @ 2023-01-29  7:29 UTC (permalink / raw)
  To: 60865-done

Am Montag, dem 16.01.2023 um 18:17 +0100 schrieb Liliana Marie Prikler:
> Hi Guix,
> 
> this series updates VTE and adds a GTK4 version of it.
> Originally, I had planned to use this so as to package Black Box [1],
> but that one turned out to be a bigger dependency mess than I had
> thought [2], so I'll just be adding VTE for now.
> 
> Cheers
> 
> [1] https://gitlab.gnome.org/raggesilver/blackbox
> [2] https://gitlab.gnome.org/raggesilver/blackbox/-/issues/48
> 
> Liliana Marie Prikler (2):
>   gnu: vte: Update to 0.70.2.
>   gnu: Add vte-with-gtk-4.
Pushed.




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

end of thread, other threads:[~2023-01-29  7:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-16 17:17 [bug#60865] [PATCH 0/2] Update VTE Liliana Marie Prikler
2023-01-16 15:41 ` [bug#60865] [PATCH 1/2] gnu: vte: Update to 0.70.2 Liliana Marie Prikler
2023-01-16 15:50 ` [bug#60865] [PATCH 2/2] gnu: Add vte-with-gtk-4 Liliana Marie Prikler
2023-01-29  7:29 ` bug#60865: [PATCH 0/2] Update VTE Liliana Marie Prikler

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.