GNU bug report logs -
#66644
[PATCH master 0/3] Add Tilda with D-Bus support (necessary for Wayland)
Previous Next
Reported by: Suhail <suhail <at> bayesians.ca>
Date: Fri, 20 Oct 2023 05:24:03 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
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 66644 in the body.
You can then email your comments to 66644 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#66644
; Package
guix-patches
.
(Fri, 20 Oct 2023 05:24:03 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Suhail <suhail <at> bayesians.ca>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 20 Oct 2023 05:24:03 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
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 <at> 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 <at> 1.5.4
gnu/packages/terminals.scm | 64 ++++++++++++++++++++++++--------------
1 file changed, 41 insertions(+), 23 deletions(-)
base-commit: c065da01ff956d3c2bdfc45a33d910e509a211d9
--
2.42.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#66644
; Package
guix-patches
.
(Fri, 20 Oct 2023 19:53:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 66644 <at> debbugs.gnu.org (full text, mbox):
* 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#66644
; Package
guix-patches
.
(Fri, 20 Oct 2023 19:55:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 66644 <at> debbugs.gnu.org (full text, mbox):
* 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#66644
; Package
guix-patches
.
(Fri, 20 Oct 2023 19:56:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 66644 <at> debbugs.gnu.org (full text, mbox):
* 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
Reply sent
to
Ludovic Courtès <ludo <at> gnu.org>
:
You have taken responsibility.
(Wed, 22 Nov 2023 14:49:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Suhail <suhail <at> bayesians.ca>
:
bug acknowledged by developer.
(Wed, 22 Nov 2023 14:49:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 66644-done <at> debbugs.gnu.org (full text, mbox):
Hi,
Suhail <suhail <at> 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 <at> 1.5.4
Finally applied, thanks!
Ludo’.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 21 Dec 2023 12:24:09 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 140 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.