all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#54208] [PATCH 1/2] gnu: tio: Update to 1.35
@ 2022-03-01  9:47 Raphaël Mélotte via Guix-patches
  2022-03-01  9:48 ` [bug#54208] [PATCH 2/2] gnu: tio: Improve style Raphaël Mélotte via Guix-patches
  2022-03-11  0:34 ` [bug#54208] [PATCH 1/2] gnu: tio: Update to 1.35 Nicolas Goaziou
  0 siblings, 2 replies; 4+ messages in thread
From: Raphaël Mélotte via Guix-patches @ 2022-03-01  9:47 UTC (permalink / raw)
  To: 54208; +Cc: Raphaël Mélotte

* gnu/packages/terminals.scm (tio): Update to 1.35

Note: the build system changed to meson in the following commit:
https://github.com/tio/tio/commit/e9208d693ee21a062dc2b3f2dd16a9d6b8926b90
---
 gnu/packages/terminals.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 06fa341472..eb81b5424e 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1367,7 +1367,7 @@ (define-public wterm
 (define-public tio
   (package
     (name "tio")
-    (version "1.32")
+    (version "1.35")
     (source
      (origin
        (method url-fetch)
@@ -1375,8 +1375,8 @@ (define-public tio
              "https://github.com/tio/tio/releases/download/v"
              version "/tio-" version ".tar.xz"))
        (sha256
-        (base32 "0i5fhi4xdk4yznj8wahniizddmx6wlcnnhda1dw9djyajilyvxd8"))))
-    (build-system gnu-build-system)
+        (base32 "02cx3hjk2rv2dmds2xi17ymi93k6zybapa33ydyfkx3mfvgfq28k"))))
+    (build-system meson-build-system)
     (home-page "https://tio.github.io/")
     (synopsis "Simple TTY terminal I/O application")
     (description "tio is a simple TTY terminal application which features a
-- 
2.34.0





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

* [bug#54208] [PATCH 2/2] gnu: tio: Improve style
  2022-03-01  9:47 [bug#54208] [PATCH 1/2] gnu: tio: Update to 1.35 Raphaël Mélotte via Guix-patches
@ 2022-03-01  9:48 ` Raphaël Mélotte via Guix-patches
  2022-03-11  0:34   ` Nicolas Goaziou
  2022-03-11  0:34 ` [bug#54208] [PATCH 1/2] gnu: tio: Update to 1.35 Nicolas Goaziou
  1 sibling, 1 reply; 4+ messages in thread
From: Raphaël Mélotte via Guix-patches @ 2022-03-01  9:48 UTC (permalink / raw)
  To: 54208; +Cc: Raphaël Mélotte

Run "guix style tio" to improve the package 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 eb81b5424e..4eb8e4859c 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1368,18 +1368,19 @@ (define-public tio
   (package
     (name "tio")
     (version "1.35")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/tio/tio/releases/download/v"
-             version "/tio-" version ".tar.xz"))
-       (sha256
-        (base32 "02cx3hjk2rv2dmds2xi17ymi93k6zybapa33ydyfkx3mfvgfq28k"))))
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/tio/tio/releases/download/v" version
+                    "/tio-" version ".tar.xz"))
+              (sha256
+               (base32
+                "02cx3hjk2rv2dmds2xi17ymi93k6zybapa33ydyfkx3mfvgfq28k"))))
     (build-system meson-build-system)
     (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.34.0





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

* [bug#54208] [PATCH 1/2] gnu: tio: Update to 1.35
  2022-03-01  9:47 [bug#54208] [PATCH 1/2] gnu: tio: Update to 1.35 Raphaël Mélotte via Guix-patches
  2022-03-01  9:48 ` [bug#54208] [PATCH 2/2] gnu: tio: Improve style Raphaël Mélotte via Guix-patches
@ 2022-03-11  0:34 ` Nicolas Goaziou
  1 sibling, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2022-03-11  0:34 UTC (permalink / raw)
  To: 54208; +Cc: 54208-done, Raphaël Mélotte

Hello,

Raphaël Mélotte via Guix-patches <guix-patches@gnu.org> writes:

> * gnu/packages/terminals.scm (tio): Update to 1.35

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou




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

* [bug#54208] [PATCH 2/2] gnu: tio: Improve style
  2022-03-01  9:48 ` [bug#54208] [PATCH 2/2] gnu: tio: Improve style Raphaël Mélotte via Guix-patches
@ 2022-03-11  0:34   ` Nicolas Goaziou
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2022-03-11  0:34 UTC (permalink / raw)
  To: 54208; +Cc: raphael.melotte

Hello,

Raphaël Mélotte via Guix-patches <guix-patches@gnu.org> writes:

> Run "guix style tio" to improve the package 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 eb81b5424e..4eb8e4859c 100644
> --- a/gnu/packages/terminals.scm
> +++ b/gnu/packages/terminals.scm
> @@ -1368,18 +1368,19 @@ (define-public tio
>    (package
>      (name "tio")
>      (version "1.35")
> -    (source
> -     (origin
> -       (method url-fetch)
> -       (uri (string-append
> -             "https://github.com/tio/tio/releases/download/v"
> -             version "/tio-" version ".tar.xz"))
> -       (sha256
> -        (base32 "02cx3hjk2rv2dmds2xi17ymi93k6zybapa33ydyfkx3mfvgfq28k"))))
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> +                    "https://github.com/tio/tio/releases/download/v" version
> +                    "/tio-" version ".tar.xz"))
> +              (sha256
> +               (base32
> +                "02cx3hjk2rv2dmds2xi17ymi93k6zybapa33ydyfkx3mfvgfq28k"))))
>      (build-system meson-build-system)
>      (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+)))

I'd rather drop that patch, since this is all about whitespace.

Regards,
-- 
Nicolas Goaziou




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

end of thread, other threads:[~2022-03-11  0:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-01  9:47 [bug#54208] [PATCH 1/2] gnu: tio: Update to 1.35 Raphaël Mélotte via Guix-patches
2022-03-01  9:48 ` [bug#54208] [PATCH 2/2] gnu: tio: Improve style Raphaël Mélotte via Guix-patches
2022-03-11  0:34   ` Nicolas Goaziou
2022-03-11  0:34 ` [bug#54208] [PATCH 1/2] gnu: tio: Update to 1.35 Nicolas Goaziou

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.