* [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
` (3 more replies)
0 siblings, 4 replies; 5+ 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] 5+ 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
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ 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] 5+ 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
2024-11-23 16:03 ` bug#74351: [PATCH 0/2] gnu: bootterm: Update to 0.5 Artyom V. Poptsov
2024-11-23 16:35 ` [bug#74351] " Artyom V. Poptsov
3 siblings, 0 replies; 5+ 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] 5+ messages in thread
* bug#74351: [PATCH 0/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 ` [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
@ 2024-11-23 16:03 ` Artyom V. Poptsov
2024-11-23 16:35 ` [bug#74351] " Artyom V. Poptsov
3 siblings, 0 replies; 5+ messages in thread
From: Artyom V. Poptsov @ 2024-11-23 16:03 UTC (permalink / raw)
To: 74351-done
[-- Attachment #1: Type: text/plain, Size: 549 bytes --]
Merged to the "master" branch as the following commits:
--8<---------------cut here---------------start------------->8---
3feaac67a3426c7412e845f1ad9e6596235a3586 gnu: bootterm: Use GEXPs.
8333938605e0d7e4f117ca41c5e0f9c23a5ccdee gnu: bootterm: Update to 0.5.
--8<---------------cut here---------------end--------------->8---
- avp
--
Artyom "avp" Poptsov <poptsov.artyom@gmail.com>
Home page: https://memory-heap.org/~avp/
CADR Hackerspace co-founder: https://cadrspace.ru/
GPG: D0C2 EAC1 3310 822D 98DE B57C E9C5 A2D9 0898 A02F
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 869 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#74351] [PATCH 0/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
` (2 preceding siblings ...)
2024-11-23 16:03 ` bug#74351: [PATCH 0/2] gnu: bootterm: Update to 0.5 Artyom V. Poptsov
@ 2024-11-23 16:35 ` Artyom V. Poptsov
3 siblings, 0 replies; 5+ messages in thread
From: Artyom V. Poptsov @ 2024-11-23 16:35 UTC (permalink / raw)
To: 74351-done
[-- Attachment #1: Type: text/plain, Size: 855 bytes --]
Merged to the "master" branch as:
--8<---------------cut here---------------start------------->8---
3feaac67a3426c7412e845f1ad9e6596235a3586 gnu: bootterm: Use GEXPs.
8333938605e0d7e4f117ca41c5e0f9c23a5ccdee gnu: bootterm: Update to 0.5.
--8<---------------cut here---------------end--------------->8---
Also as a followup job I improved the package style as suggested by
Vincent Legoll in a personal email:
--8<---------------cut here---------------start------------->8---
36f516bfcdf64185f5d70c21a908283be22a34fd gnu: bootterm: Improve the package style.
--8<---------------cut here---------------end--------------->8---
- avp
--
Artyom "avp" Poptsov <poptsov.artyom@gmail.com>
Home page: https://memory-heap.org/~avp/
CADR Hackerspace co-founder: https://cadrspace.ru/
GPG: D0C2 EAC1 3310 822D 98DE B57C E9C5 A2D9 0898 A02F
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 869 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-11-23 16:37 UTC | newest]
Thread overview: 5+ 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
2024-11-23 16:03 ` bug#74351: [PATCH 0/2] gnu: bootterm: Update to 0.5 Artyom V. Poptsov
2024-11-23 16:35 ` [bug#74351] " Artyom V. Poptsov
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.