[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#72963] [PATCH go-team 29/30] gnu: go-github-com-charmbracelet-bubbl
From: |
Herman Rimm |
Subject: |
[bug#72963] [PATCH go-team 29/30] gnu: go-github-com-charmbracelet-bubbletea: Update to 0.26.6. |
Date: |
Mon, 2 Sep 2024 14:18:37 +0200 |
* gnu/packages/golang.scm (go-github-com-charmbracelet-bubbletea):
Update from 0.13.2 to 0.26.6.
[propagated-inputs]: Replace all but go-golang-org-x-sys. Use new style
of inputs.
[description]: Replace beginning sentence and add end sentence.
[license]: Switch from ASL 2.0 to MIT.
---
gnu/packages/golang.scm | 48 +++++++++++++++++++++--------------------
1 file changed, 25 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index a84cb07c0d..ebd5ec39bc 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -7631,7 +7631,7 @@ (define-public go-github-com-rivo-uniseg
(define-public go-github-com-charmbracelet-bubbletea
(package
(name "go-github-com-charmbracelet-bubbletea")
- (version "0.13.2")
+ (version "0.26.6")
(source
(origin
(method git-fetch)
@@ -7641,35 +7641,37 @@ (define-public go-github-com-charmbracelet-bubbletea
(file-name (git-file-name name version))
(sha256
(base32
- "1105cggi5fwqx69m0vrhgwx6kaw82w4ahn58sj0a81603c4yvrk0"))))
+ "0flhyav8adcm1vzhrm7npkfmcia25gikiw5cq4w41yh66h9wpkin"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/charmbracelet/bubbletea"
- #:phases #~(modify-phases %standard-phases
- (add-after 'unpack 'remove-examples
- (lambda* (#:key import-path #:allow-other-keys)
- (with-directory-excursion (string-append "src/"
import-path)
- (for-each delete-file-recursively
- '("examples" "tutorials"))))))))
- (propagated-inputs
- `(("github.com/mattn/go-isatty" ,go-github-com-mattn-go-isatty)
- ("github.com/muesli/termenv" ,go-github-com-muesli-termenv)
- ("github.com/mattn/go-runewidth" ,go-github-com-mattn-go-runewidth)
- ("go-github-com-muesli-reflow" ,go-github-com-muesli-reflow)
- ("go-github-com-lucasb-eyer-go-colorful"
,go-github-com-lucasb-eyer-go-colorful)
- ("github.com/containerd/console" ,go-github-com-containerd-console)
- ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)
- ("go-golang-org-x-sys" ,go-golang-org-x-sys)
- ("go-golang-org-x-term" ,go-golang-org-x-term)
- ("github.com/mattn/go-isatty" ,go-github-com-mattn-go-isatty)))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-examples
+ (lambda* (#:key import-path #:allow-other-keys)
+ (with-directory-excursion (string-append "src/"
+ import-path)
+ (for-each delete-file-recursively
+ '("examples" "tutorials"))))))))
+ (propagated-inputs (list go-golang-org-x-sys
+ go-golang-org-x-sync
+ go-github-com-muesli-cancelreader
+ go-github-com-muesli-ansi
+ go-github-com-mattn-go-localereader
+ go-github-com-erikgeiser-coninput
+ go-github-com-charmbracelet-x-input
+ go-github-com-charmbracelet-x-term
+ go-github-com-charmbracelet-x-ansi))
(home-page "https://github.com/charmbracelet/bubbletea")
(synopsis "Powerful little TUI framework")
(description
- "Bubble Tea is a Go framework based on The Elm Architecture. It is
-well-suited for simple and complex terminal applications, either inline,
-full-window, or a mix of both.")
- (license license:asl2.0)))
+ "Bubble Tea is a Go framework for building rich terminal user
+interfaces based on the paradigms of the Elm architecture. It's well-
+suited for simple and complex terminal applications, either inline,
+full-window, or a mix of both. It's been battle-tested in several large
+projects and is production-ready.")
+ (license license:expat)))
(define-public go-github-com-containerd-console
(package
--
2.45.2
- [bug#72963] [PATCH go-team 11/30] gnu: Add go-github-com-vito-midterm., (continued)
- [bug#72963] [PATCH go-team 11/30] gnu: Add go-github-com-vito-midterm., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 12/30] gnu: Add go-go-abhg-dev-requiredfield., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 15/30] gnu: Add go-github-com-sahilm-fuzzy., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 17/30] gnu: Add go-inputs procedure., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 20/30] gnu: Add go-github-com-charmbracelet-x-input., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 26/30] gnu: Add go-github-com-rogpeppe-go-internal-diff., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 27/30] gnu: Add go-github-com-muesli-ansi., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 13/30] gnu: Add go-gopkg-in-dnaeon-go-vcr-v3-recorder., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 23/30] gnu: Add go-github-com-mattn-go-localereader., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 24/30] gnu: Add go-github-com-rogpeppe-go-internal-internal-misspell., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 29/30] gnu: go-github-com-charmbracelet-bubbletea: Update to 0.26.6.,
Herman Rimm <=
- [bug#72963] [PATCH go-team 19/30] gnu: Add go-github-com-charmbracelet-x-windows., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 14/30] gnu: Add go-github-com-kylelemons-godebug-pretty., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 21/30] gnu: Add go-github-com-charmbracelet-x-term., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 30/30] gnu: Add git-spice., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 28/30] gnu: Add go-github-com-muesli-cancelreader., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 18/30] gnu: Add go-github-com-erikgeiser-coninput., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 22/30] gnu: Add go-golang-org-x-text-transform., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 16/30] gnu: Add go-github-com-charmbracelet-bubbles., Herman Rimm, 2024/09/02
- [bug#72963] [PATCH go-team 25/30] gnu: Add go-github-com-rogpeppe-go-internal-testscript., Herman Rimm, 2024/09/02