unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#66242] [PATCH 1/2] gnu: tio: Update to 2.7.
@ 2023-09-27 16:50 guix-patches--- via
  2023-09-27 16:52 ` [bug#66242] [PATCH 2/2] gnu: tio: Format with 'guix style' guix-patches--- via
  2023-09-27 17:39 ` bug#66242: [PATCH 1/2] gnu: tio: Update to 2.7 Tobias Geerinckx-Rice via Guix-patches via
  0 siblings, 2 replies; 3+ messages in thread
From: guix-patches--- via @ 2023-09-27 16:50 UTC (permalink / raw)
  To: 66242; +Cc: Raphaël Mélotte

* gnu/packages/terminals.scm (tio): Update to 2.7.
---
 gnu/packages/terminals.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index add4cedc26..3067dc6949 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1487,7 +1487,7 @@ (define-public tilix
 (define-public tio
   (package
     (name "tio")
-    (version "2.5")
+    (version "2.7")
     (source
      (origin
        (method url-fetch)
@@ -1495,7 +1495,7 @@ (define-public tio
              "https://github.com/tio/tio/releases/download/v"
              version "/tio-" version ".tar.xz"))
        (sha256
-        (base32 "19s41i8f3kxchlaibp7wkq8gqgbpfdn0srkf1wcfx357j3p54f86"))))
+        (base32 "19fswmyiwlify269h6nwdlbnhq4q7i8442xg81jinb4chhsf93xz"))))
     (build-system meson-build-system)
     (native-inputs (list pkg-config))
     (inputs (list libinih))

base-commit: ce0cc6137df81919389f61671096a6ce701c0889
-- 
2.41.0





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

* [bug#66242] [PATCH 2/2] gnu: tio: Format with 'guix style'.
  2023-09-27 16:50 [bug#66242] [PATCH 1/2] gnu: tio: Update to 2.7 guix-patches--- via
@ 2023-09-27 16:52 ` guix-patches--- via
  2023-09-27 17:39 ` bug#66242: [PATCH 1/2] gnu: tio: Update to 2.7 Tobias Geerinckx-Rice via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: guix-patches--- via @ 2023-09-27 16:52 UTC (permalink / raw)
  To: 66242; +Cc: Raphaël Mélotte

* gnu/packages/terminals.scm (tio): Adjust package formatting with 'guix
  style'.
---
 gnu/packages/terminals.scm | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 3067dc6949..46028154f2 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1488,20 +1488,21 @@ (define-public tio
   (package
     (name "tio")
     (version "2.7")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/tio/tio/releases/download/v"
-             version "/tio-" version ".tar.xz"))
-       (sha256
-        (base32 "19fswmyiwlify269h6nwdlbnhq4q7i8442xg81jinb4chhsf93xz"))))
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/tio/tio/releases/download/v" version
+                    "/tio-" version ".tar.xz"))
+              (sha256
+               (base32
+                "19fswmyiwlify269h6nwdlbnhq4q7i8442xg81jinb4chhsf93xz"))))
     (build-system meson-build-system)
     (native-inputs (list pkg-config))
     (inputs (list libinih))
     (home-page "https://tio.github.io/")
     (synopsis "Simple TTY terminal I/O application")
-    (description "tio is a simple TTY terminal application which features a
+    (description
+     "tio is a simple TTY terminal application which features a
 straightforward commandline interface to easily connect to TTY devices for
 basic input/output.")
     (license license:gpl2+)))
-- 
2.41.0





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

* bug#66242: [PATCH 1/2] gnu: tio: Update to 2.7.
  2023-09-27 16:50 [bug#66242] [PATCH 1/2] gnu: tio: Update to 2.7 guix-patches--- via
  2023-09-27 16:52 ` [bug#66242] [PATCH 2/2] gnu: tio: Format with 'guix style' guix-patches--- via
@ 2023-09-27 17:39 ` Tobias Geerinckx-Rice via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2023-09-27 17:39 UTC (permalink / raw)
  To: Raphaël Mélotte; +Cc: 66242-done

Hi Raphaël,

On 2023-09-27 18:50, guix-patches--- via wrote:
> * gnu/packages/terminals.scm (tio): Update to 2.7.

I pushed this to master as 01153b632b31a5eaf1330e11f56a161309681eb4.

I didn't push the indentation change.  I think these should be limited 
to fixing egregious errors or notably improving readability, and this 
one doesn't make the cut.

Thanks!

T G-R

Sent from a Web browser.  Excuse or enjoy my brevity.




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

end of thread, other threads:[~2023-09-27 17:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-27 16:50 [bug#66242] [PATCH 1/2] gnu: tio: Update to 2.7 guix-patches--- via
2023-09-27 16:52 ` [bug#66242] [PATCH 2/2] gnu: tio: Format with 'guix style' guix-patches--- via
2023-09-27 17:39 ` bug#66242: [PATCH 1/2] gnu: tio: Update to 2.7 Tobias Geerinckx-Rice 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).