[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/37: gnu: go-github-com-cheggaaa-pb-v3: Move to golang-xyz.
From: |
guix-commits |
Subject: |
12/37: gnu: go-github-com-cheggaaa-pb-v3: Move to golang-xyz. |
Date: |
Wed, 6 Mar 2024 18:46:18 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit c21f468cf16758b99de950a2d64afb83aa275349
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Wed Mar 6 18:28:04 2024 +0000
gnu: go-github-com-cheggaaa-pb-v3: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-cheggaaa-pb-v3): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
* gnu/packages/golang.scm (go-github-com-cheggaaa-pb): Remove variable.
Change-Id: Ieddfddfec841e5b35c14002dbfe8655a7b5dec0f
---
gnu/packages/golang-xyz.scm | 30 ++++++++++++++++++++++++++++++
gnu/packages/golang.scm | 32 --------------------------------
2 files changed, 30 insertions(+), 32 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 28bd13018f..645b979e11 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
@@ -351,6 +352,35 @@ quantiles over an unbounded data stream within low memory
and CPU bounds.")
similar to Go's standard library @code{json} and @code{xml} package.")
(license license:expat)))
+(define-public go-github-com-cheggaaa-pb-v3
+ (package
+ (name "go-github-com-cheggaaa-pb-v3")
+ (version "3.0.8")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cheggaaa/pb/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0d701s2niy39r650d1phjw19h4l27b1yfc2ih6s31f56b3zzqspx"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/cheggaaa/pb/v3"
+ #:unpack-path "github.com/cheggaaa/pb"))
+ (propagated-inputs
+ (list go-github-com-fatih-color
+ go-github-com-mattn-go-colorable
+ go-github-com-mattn-go-isatty
+ go-github-com-mattn-go-runewidth
+ go-github-com-vividcortex-ewma))
+ (home-page "https://github.com/cheggaaa/pb/")
+ (synopsis "Console progress bar for Go")
+ (description
+ "This package is a Go library that draws progress bars on the terminal.")
+ (license license:bsd-3)))
+
(define-public go-github-com-coocood-freecache
(package
(name "go-github-com-coocood-freecache")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 59107ec762..ac4c24e487 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8754,38 +8754,6 @@ error messages.")
inspired by the causal messaging system in the Pony programming language.")
(license license:expat))))
-(define-public go-github-com-cheggaaa-pb-v3
- (package
- (name "go-github-com-cheggaaa-pb-v3")
- (version "3.0.8")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/cheggaaa/pb/")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0d701s2niy39r650d1phjw19h4l27b1yfc2ih6s31f56b3zzqspx"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "github.com/cheggaaa/pb/v3"
- #:unpack-path "github.com/cheggaaa/pb"))
- (propagated-inputs
- (list go-github-com-mattn-go-runewidth
- go-github-com-mattn-go-isatty
- go-github-com-mattn-go-colorable
- go-github-com-fatih-color
- go-github-com-vividcortex-ewma))
- (home-page "https://github.com/cheggaaa/pb/")
- (synopsis "Console progress bar for Go")
- (description "This package is a Go library that draws progress bars on
-the terminal.")
- (license license:bsd-3)))
-
-(define-public go-github-com-cheggaaa-pb
- (deprecated-package "go-github-com-cheggaaa-pb"
go-github-com-cheggaaa-pb-v3))
-
(define-public go-github-com-gologme-log
;; this is the same as v1.2.0, only the LICENSE file changed
(let ((commit "720ba0b3ccf0a91bc6018c9967a2479f93f56a55"))
- 19/37: gnu: Add go-github-com-ugorji-go-codec., (continued)
- 19/37: gnu: Add go-github-com-ugorji-go-codec., guix-commits, 2024/03/06
- 23/37: gnu: go-github-com-spf13-afero: Add missing input., guix-commits, 2024/03/06
- 21/37: gnu: sqls: Add missing inputs., guix-commits, 2024/03/06
- 26/37: gnu: go-go-uber-org-zap: Move to golang-xyz., guix-commits, 2024/03/06
- 27/37: gnu: Add go-github-com-cskr-pubsub., guix-commits, 2024/03/06
- 30/37: gnu: go-github-com-hashicorp-go-syslog: Move to golang-xyz., guix-commits, 2024/03/06
- 13/37: gnu: go-github-com-vividcortex-ewma: Move to golang-xyz., guix-commits, 2024/03/06
- 14/37: gnu: Add go-github-com-dave-jennifer., guix-commits, 2024/03/06
- 03/37: gnu: Add go-numcpus., guix-commits, 2024/03/06
- 04/37: gnu: go-github-com-shirou-gopsutil: Move to golang-xyz., guix-commits, 2024/03/06
- 12/37: gnu: go-github-com-cheggaaa-pb-v3: Move to golang-xyz.,
guix-commits <=
- 20/37: gnu: Add go-github-com-k0kubun-pp., guix-commits, 2024/03/06
- 24/37: gnu: go-go-uber-org-zap: Update to 1.24.0., guix-commits, 2024/03/06
- 22/37: gnu: Add go-github-com-pkg-sftp., guix-commits, 2024/03/06
- 25/37: gnu: kubo: Update to 0.22.0., guix-commits, 2024/03/06
- 34/37: gnu: go-github-com-hashicorp-go-version: Update to 1.6.0., guix-commits, 2024/03/06
- 10/37: gnu: go-github-com-cheggaaa-pb-v3: Remove unnecessary inputs., guix-commits, 2024/03/06
- 16/37: gnu: Add go-github-com-hhrutter-tiff., guix-commits, 2024/03/06
- 28/37: gnu: Add go-github-com-hashicorp-errwrap., guix-commits, 2024/03/06
- 29/37: gnu: Add go-github-com-hashicorp-go-multierror., guix-commits, 2024/03/06
- 32/37: gnu: go-github-com-spf13-viper: Remove input labels., guix-commits, 2024/03/06