all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#66644] [PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland)
@ 2023-10-19 20:39 Suhail via Guix-patches via
  2023-10-20 19:51 ` [bug#66644] [PATCH master 1/3] gnu: tilda: Add version 1.6-alpha with D-Bus support Suhail via Guix-patches via
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Suhail via Guix-patches via @ 2023-10-19 20:39 UTC (permalink / raw)
  To: 66644

Hi Guix,

The last official release of Tilda (1.5.4) is almost 3 years old and
notably doesn't include D-Bus support (which is necessary on Wayland).
D-Bus support was added to upstream (main branch) in 2021, however,
there hasn't been a release, since, that has included it.

This series adds version 1.6-alpha with D-Bus support to Guix.  There
are some changes in 1.5.4 that aren't (yet?) included in the 1.6-alpha
branch.  As such, a new package definition is created for 1.6-alpha (as
opposed to only updating the 1.5.4 version).

Additionally, some issues pointed out by 'guix lint' and 'guix style'
for tilda@1.5.4 are fixed.

Cheers

Suhail (3):
  gnu: tilda: Add version 1.6-alpha with D-Bus support
  gnu: tilda: Fix lint error by updating input list format for v1.5.4
  gnu: tilda: Run guix style on tilda@1.5.4

 gnu/packages/terminals.scm | 64 ++++++++++++++++++++++++--------------
 1 file changed, 41 insertions(+), 23 deletions(-)


base-commit: c065da01ff956d3c2bdfc45a33d910e509a211d9
-- 
2.42.0






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

* [bug#66644] [PATCH master 1/3] gnu: tilda: Add version 1.6-alpha with D-Bus support
  2023-10-19 20:39 [bug#66644] [PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland) Suhail via Guix-patches via
@ 2023-10-20 19:51 ` Suhail via Guix-patches via
  2023-10-20 19:53 ` [bug#66644] [PATCH master 2/3] gnu: tilda: Fix lint error by updating input list format for v1.5.4 Suhail via Guix-patches via
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Suhail via Guix-patches via @ 2023-10-20 19:51 UTC (permalink / raw)
  To: 66644


* gnu/packages/terminals.scm (tilda-dbus): New variable.
---
 gnu/packages/terminals.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 989fd00e61..0c06a42213 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -187,6 +187,29 @@ (define-public tilda
     (home-page "https://github.com/lanoxx/tilda")
     (license license:gpl2+)))
 
+(define-public tilda-dbus
+  (package
+    (inherit tilda)
+    (name "tilda")
+    (version "1.6-alpha")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/lanoxx/tilda")
+             (commit "51a980a55ad6d750daa21d43a66d44577dad277b")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1pdarmlxkap9v689s88b89l5hi4vspsrrysh7pbm9rhdjmzk5m2c"))))
+    (synopsis "GTK+-based drop-down terminal with experimental D-Bus support")
+    (description
+     "Tilda is a terminal emulator similar to normal terminals like
+gnome-terminal (GNOME) or Konsole (KDE), with the difference that it drops down
+from the edge of a screen when a certain configurable hotkey is pressed.  This
+is similar to the built-in consoles in some applications.  Tilda is highly
+configurable through a graphical wizard.  This version enables D-Bus support
+which is necessary for using Tilda on Wayland.")))
+
 (define-public termite
   (package
     (name "termite")
-- 
2.42.0






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

* [bug#66644] [PATCH master 2/3] gnu: tilda: Fix lint error by updating input list format for v1.5.4
  2023-10-19 20:39 [bug#66644] [PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland) Suhail via Guix-patches via
  2023-10-20 19:51 ` [bug#66644] [PATCH master 1/3] gnu: tilda: Add version 1.6-alpha with D-Bus support Suhail via Guix-patches via
@ 2023-10-20 19:53 ` Suhail via Guix-patches via
  2023-10-20 19:54 ` [bug#66644] [PATCH master 3/3] gnu: tilda: Run guix style on tilda@1.5.4 Suhail via Guix-patches via
  2023-11-22 14:48 ` bug#66644: [PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland) Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Suhail via Guix-patches via @ 2023-10-20 19:53 UTC (permalink / raw)
  To: 66644


* gnu/packages/terminals.scm (tilda)[native-inputs]: Use updated format.
---
 gnu/packages/terminals.scm | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 0c06a42213..6d5bd8bff7 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -172,10 +172,7 @@ (define-public tilda
              (for-each make-file-writable (find-files "po" "."))
              #t)))))
     (native-inputs
-     `(("autoconf" ,autoconf)
-       ("automake" ,automake)
-       ("gettext" ,gettext-minimal)
-       ("pkg-config" ,pkg-config)))
+     (list autoconf automake gettext-minimal pkg-config))
     (inputs
      (list libconfuse vte))
     (synopsis "GTK+-based drop-down terminal")
-- 
2.42.0







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

* [bug#66644] [PATCH master 3/3] gnu: tilda: Run guix style on tilda@1.5.4
  2023-10-19 20:39 [bug#66644] [PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland) Suhail via Guix-patches via
  2023-10-20 19:51 ` [bug#66644] [PATCH master 1/3] gnu: tilda: Add version 1.6-alpha with D-Bus support Suhail via Guix-patches via
  2023-10-20 19:53 ` [bug#66644] [PATCH master 2/3] gnu: tilda: Fix lint error by updating input list format for v1.5.4 Suhail via Guix-patches via
@ 2023-10-20 19:54 ` Suhail via Guix-patches via
  2023-11-22 14:48 ` bug#66644: [PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland) Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Suhail via Guix-patches via @ 2023-10-20 19:54 UTC (permalink / raw)
  To: 66644


* gnu/packages/terminals.scm (tilda): Re-indent.
---
 gnu/packages/terminals.scm | 38 ++++++++++++++++++--------------------
 1 file changed, 18 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 6d5bd8bff7..a0eac00571 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -154,29 +154,27 @@ (define-public tilda
   (package
     (name "tilda")
     (version "1.5.4")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/lanoxx/tilda")
-                    (commit (string-append "tilda-" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0q2i9ny8sh7zjzgvkx8vcvk593wcvchjc4xq4nrlqdd377r7cg5q"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/lanoxx/tilda")
+             (commit (string-append "tilda-" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0q2i9ny8sh7zjzgvkx8vcvk593wcvchjc4xq4nrlqdd377r7cg5q"))))
     (build-system glib-or-gtk-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'make-po-writable
-           (lambda _
-             (for-each make-file-writable (find-files "po" "."))
-             #t)))))
-    (native-inputs
-     (list autoconf automake gettext-minimal pkg-config))
-    (inputs
-     (list libconfuse vte))
+     `(#:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'make-po-writable
+                    (lambda _
+                      (for-each make-file-writable
+                                (find-files "po" ".")) #t)))))
+    (native-inputs (list autoconf automake gettext-minimal pkg-config))
+    (inputs (list libconfuse vte))
     (synopsis "GTK+-based drop-down terminal")
-    (description "Tilda is a terminal emulator similar to normal terminals like
+    (description
+     "Tilda is a terminal emulator similar to normal terminals like
 gnome-terminal (GNOME) or Konsole (KDE), with the difference that it drops down
 from the edge of a screen when a certain configurable hotkey is pressed.  This
 is similar to the built-in consoles in some applications.  Tilda is highly
-- 
2.42.0






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

* bug#66644: [PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland)
  2023-10-19 20:39 [bug#66644] [PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland) Suhail via Guix-patches via
                   ` (2 preceding siblings ...)
  2023-10-20 19:54 ` [bug#66644] [PATCH master 3/3] gnu: tilda: Run guix style on tilda@1.5.4 Suhail via Guix-patches via
@ 2023-11-22 14:48 ` Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2023-11-22 14:48 UTC (permalink / raw)
  To: Suhail; +Cc: 66644-done

Hi,

Suhail <suhail@bayesians.ca> skribis:

>   gnu: tilda: Add version 1.6-alpha with D-Bus support
>   gnu: tilda: Fix lint error by updating input list format for v1.5.4
>   gnu: tilda: Run guix style on tilda@1.5.4

Finally applied, thanks!

Ludo’.




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

end of thread, other threads:[~2023-11-22 14:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-19 20:39 [bug#66644] [PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland) Suhail via Guix-patches via
2023-10-20 19:51 ` [bug#66644] [PATCH master 1/3] gnu: tilda: Add version 1.6-alpha with D-Bus support Suhail via Guix-patches via
2023-10-20 19:53 ` [bug#66644] [PATCH master 2/3] gnu: tilda: Fix lint error by updating input list format for v1.5.4 Suhail via Guix-patches via
2023-10-20 19:54 ` [bug#66644] [PATCH master 3/3] gnu: tilda: Run guix style on tilda@1.5.4 Suhail via Guix-patches via
2023-11-22 14:48 ` bug#66644: [PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland) Ludovic Courtès

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.