unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#74351] [PATCH 0/2] gnu: bootterm: Update to 0.5.
@ 2024-11-13 20:53 Artyom V. Poptsov
  2024-11-13 20:55 ` [bug#74351] [PATCH 1/2] " Artyom V. Poptsov
  2024-11-13 20:55 ` [bug#74351] [PATCH 2/2] gnu: bootterm: Use GEXPs Artyom V. Poptsov
  0 siblings, 2 replies; 3+ messages in thread
From: Artyom V. Poptsov @ 2024-11-13 20:53 UTC (permalink / raw)
  To: 74351; +Cc: Artyom V. Poptsov

This patchset updates bootterm to the version 0.5 and updates the package
style.

Artyom V. Poptsov (2):
  gnu: bootterm: Update to 0.5.
  gnu: bootterm: Use GEXPs.

 gnu/packages/terminals.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)


base-commit: 9aae575828f263d71fdb16efcaebe4d8e9de7e41
-- 
2.46.0





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

* [bug#74351] [PATCH 1/2] gnu: bootterm: Update to 0.5.
  2024-11-13 20:53 [bug#74351] [PATCH 0/2] gnu: bootterm: Update to 0.5 Artyom V. Poptsov
@ 2024-11-13 20:55 ` Artyom V. Poptsov
  2024-11-13 20:55 ` [bug#74351] [PATCH 2/2] gnu: bootterm: Use GEXPs Artyom V. Poptsov
  1 sibling, 0 replies; 3+ messages in thread
From: Artyom V. Poptsov @ 2024-11-13 20:55 UTC (permalink / raw)
  To: 74351; +Cc: Artyom V. Poptsov

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 1338 bytes --]

* gnu/packages/terminals.scm (bootterm): Update to 0.5.

Change-Id: I374a778bb81e8a37849e1dd592fc247c43be6486
---
 gnu/packages/terminals.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index fbfc4439db..19b667107f 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -42,6 +42,7 @@
 ;;; Copyright © 2024 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
 ;;; Copyright © 2024 Ashvith Shetty <ashvithshetty10@gmail.com>
+;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1718,7 +1719,7 @@ (define-public alacritty
 (define-public bootterm
   (package
     (name "bootterm")
-    (version "0.4")
+    (version "0.5")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -1727,7 +1728,7 @@ (define-public bootterm
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1k3jacld98za41dbpr10sjms77hrw91sb10m0cnwv3h7aifiwmrs"))))
+                "1xag6agcqkq2p7gp20qxjb95ah7p6lia65jmm5v51rqxfzclx2h1"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; no test suite
-- 
2.46.0





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

* [bug#74351] [PATCH 2/2] gnu: bootterm: Use GEXPs.
  2024-11-13 20:53 [bug#74351] [PATCH 0/2] gnu: bootterm: Update to 0.5 Artyom V. Poptsov
  2024-11-13 20:55 ` [bug#74351] [PATCH 1/2] " Artyom V. Poptsov
@ 2024-11-13 20:55 ` Artyom V. Poptsov
  1 sibling, 0 replies; 3+ messages in thread
From: Artyom V. Poptsov @ 2024-11-13 20:55 UTC (permalink / raw)
  To: 74351; +Cc: Artyom V. Poptsov

* gnu/packages/terminals.scm (bootterm): Use GEXPs.

Change-Id: I6c718e57eba9304fde8c4ed1fa2f00cf20d44051
---
 gnu/packages/terminals.scm | 25 ++++++++++++-------------
 1 file changed, 12 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 19b667107f..6cf0d01607 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1731,19 +1731,18 @@ (define-public bootterm
                 "1xag6agcqkq2p7gp20qxjb95ah7p6lia65jmm5v51rqxfzclx2h1"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f ; no test suite
-       #:make-flags (list (string-append "CC=" ,(cc-for-target))
-                          (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:phases
-       (modify-phases %standard-phases
-         ;; No ./configure script
-         (delete 'configure)
-         (add-after 'install 'install-doc
-           (lambda* (#:key outputs #:allow-other-keys)
-             (let* ((out (assoc-ref outputs "out"))
-                    (doc (string-append out "/share/doc/" ,name "-" ,version)))
-               (install-file "README.md" doc)
-               #t))))))
+     (list #:tests? #f ; no test suite
+           #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
+                                (string-append "PREFIX=" #$output))
+           #:phases
+           #~(modify-phases %standard-phases
+               ;; No ./configure script
+               (delete 'configure)
+               (add-after 'install 'install-doc
+                 (lambda* (#:key outputs #:allow-other-keys)
+                   (let* ((out (assoc-ref outputs "out"))
+                          (doc (string-append out "/share/doc/" #$name "-" #$version)))
+                     (install-file "README.md" doc)))))))
     (home-page "https://github.com/wtarreau/bootterm")
     (synopsis "Serial terminal")
     (description "Bootterm is a terminal designed to ease connection to
-- 
2.46.0





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

end of thread, other threads:[~2024-11-13 20:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-13 20:53 [bug#74351] [PATCH 0/2] gnu: bootterm: Update to 0.5 Artyom V. Poptsov
2024-11-13 20:55 ` [bug#74351] [PATCH 1/2] " Artyom V. Poptsov
2024-11-13 20:55 ` [bug#74351] [PATCH 2/2] gnu: bootterm: Use GEXPs Artyom V. Poptsov

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