unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#73105] [PATCH 0/1] Update Tilix to 1.9.6
@ 2024-09-07 16:24 Ashvith Shetty
  2024-09-07 16:46 ` bug#73107: " Ashvith Shetty
  2024-09-07 16:47 ` [bug#73105] [PATCH 1/1] gnu: tilix: Update " Ashvith Shetty
  0 siblings, 2 replies; 4+ messages in thread
From: Ashvith Shetty @ 2024-09-07 16:24 UTC (permalink / raw)
  To: 73105; +Cc: Ashvith Shetty

Ashvith Shetty (1):
  gnu: tilix: Update to 1.9.6.

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


base-commit: 797138b6274421374145014e13d9969c74ce507f
-- 
2.45.2





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

* bug#73107: [PATCH 0/1] Update Tilix to 1.9.6
  2024-09-07 16:24 [bug#73105] [PATCH 0/1] Update Tilix to 1.9.6 Ashvith Shetty
@ 2024-09-07 16:46 ` Ashvith Shetty
  2024-09-07 16:47 ` [bug#73105] [PATCH 1/1] gnu: tilix: Update " Ashvith Shetty
  1 sibling, 0 replies; 4+ messages in thread
From: Ashvith Shetty @ 2024-09-07 16:46 UTC (permalink / raw)
  To: 73107-done; +Cc: Ashvith Shetty

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

Duplicate of <https://issues.guix.gnu.org/73107>


[-- Attachment #2: Type: text/html, Size: 132 bytes --]

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

* [bug#73105] [PATCH 1/1] gnu: tilix: Update to 1.9.6.
  2024-09-07 16:24 [bug#73105] [PATCH 0/1] Update Tilix to 1.9.6 Ashvith Shetty
  2024-09-07 16:46 ` bug#73107: " Ashvith Shetty
@ 2024-09-07 16:47 ` Ashvith Shetty
  2024-09-07 20:07   ` bug#73105: [PATCH 0/1] Update Tilix " jgart via Guix-patches via
  1 sibling, 1 reply; 4+ messages in thread
From: Ashvith Shetty @ 2024-09-07 16:47 UTC (permalink / raw)
  To: 73105; +Cc: Ashvith Shetty, Ashvith Shetty

* gnu/packages/terminals.scm (tilix): Update to 1.9.6.

Change-Id: I8c73f4ea79de18f062ad77885cd79cb117ae319d
---
 gnu/packages/terminals.scm | 90 +++++++++++++++++---------------------
 1 file changed, 41 insertions(+), 49 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 99a39a3f5f..29808bc569 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -41,6 +41,7 @@
 ;;; Copyright © 2024 Suhail <suhail@bayesians.ca>
 ;;; Copyright © 2024 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
+;;; Copyright © 2024 Ashvith Shetty <ashvithshetty10@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1434,54 +1435,45 @@ (define-public wterm
   (deprecated-package "wterm" foot))
 
 (define-public tilix
-  (let ((commit "8726e9e9426e6b05c8cadfe7fe5205e8cbc910e3")
-        (revision "0"))
-    (package
-      (name "tilix")
-      ;; No release in over a year so include commits that fix glibc related
-      ;; build issues.
-      (version (git-version "1.9.5" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://github.com/gnunn1/tilix")
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "0vbjfk6zn9r56nxhlgy77szv7ai061ds53hsz9zba0v9kyzzcdml"))))
-      (build-system meson-build-system)
-      (arguments
-       `(#:glib-or-gtk? #t
-         #:phases
-         (modify-phases %standard-phases
-           (add-after 'unpack 'set-env-variables
-             (lambda _
-               (setenv "CC" ,(cc-for-target))))
-           (add-after 'unpack 'skip-gtk-update-icon-cache
-             (lambda _
-               (substitute* "meson_post_install.py"
-                 (("gtk-update-icon-cache") (which "true"))
-                 (("update-desktop-database") (which "true"))))))))
-      (inputs
-       (list dbus
-             dconf
-             gsettings-desktop-schemas
-             gtk+
-             gtkd
-             ldc
-             libsecret
-             libunwind
-             vte))
-      (native-inputs
-       (list appstream
-             gettext-minimal
-             (list glib "bin")
-             ldc
-             pkg-config))
-      (home-page "https://gnunn1.github.io/tilix-web/")
-      (synopsis "Tiling terminal emulator")
-      (description "Tilix is a tiling terminal emulator following the
+  (package
+    (name "tilix")
+    (version "1.9.6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/gnunn1/tilix")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1vq0igfq1hj017ivfkd03zbb620qhvcjn9vd56c5dr4r1j7jiz98"))))
+    (build-system meson-build-system)
+    (arguments
+     `(#:glib-or-gtk? #t
+       #:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'set-env-variables
+                    (lambda _
+                      (setenv "CC"
+                              ,(cc-for-target)))))))
+    (inputs (list dbus
+                  dconf
+                  gettext-minimal
+                  gsettings-desktop-schemas
+                  gtkd
+                  gtk+
+                  libsecret
+                  libunwind
+                  vte))
+    (native-inputs (list appstream
+                         desktop-file-utils
+                         `(,glib "bin")
+                         `(,gtk+ "bin")
+                         ldc
+                         pkg-config))
+    (home-page "https://gnunn1.github.io/tilix-web/")
+    (synopsis "Tiling terminal emulator")
+    (description
+     "Tilix is a tiling terminal emulator following the
 Gnome Human Interface Guidelines.  Its features include:
 @enumerate
 @item Layout terminals in any fashion by splitting them horizontally or
@@ -1493,7 +1485,7 @@ (define-public tilix
 terminal are replicated to the others.
 @item Supports notifications when processes are completed out of view.
 @end enumerate")
-    (license license:mpl2.0))))
+    (license license:mpl2.0)))
 
 (define-public tio
   (package
-- 
2.45.2





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

* bug#73105: [PATCH 0/1] Update Tilix to 1.9.6
  2024-09-07 16:47 ` [bug#73105] [PATCH 1/1] gnu: tilix: Update " Ashvith Shetty
@ 2024-09-07 20:07   ` jgart via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: jgart via Guix-patches via @ 2024-09-07 20:07 UTC (permalink / raw)
  To: 73105-done; +Cc: Ashvith Shetty


LGTM! applied.
-- 
all the best,
jgart




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

end of thread, other threads:[~2024-09-07 20:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-07 16:24 [bug#73105] [PATCH 0/1] Update Tilix to 1.9.6 Ashvith Shetty
2024-09-07 16:46 ` bug#73107: " Ashvith Shetty
2024-09-07 16:47 ` [bug#73105] [PATCH 1/1] gnu: tilix: Update " Ashvith Shetty
2024-09-07 20:07   ` bug#73105: [PATCH 0/1] Update Tilix " jgart via Guix-patches via

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).