diff options
author | Gabriel Wicki <gabriel@erlikon.ch> | 2024-11-05 23:23:50 +0100 |
---|---|---|
committer | Vagrant Cascadian <vagrant@debian.org> | 2024-12-10 22:35:09 -0800 |
commit | 1b7c85f24ea6bf455a31cb289dabeadff27687f1 (patch) | |
tree | f1c8ddd05117bcf6732e8a72d3638cba59638540 | |
parent | 8d05f0c8db93ccd5350cb8968fd96957ea9820b2 (diff) | |
download | guix-1b7c85f24ea6bf455a31cb289dabeadff27687f1.tar.gz guix-1b7c85f24ea6bf455a31cb289dabeadff27687f1.zip |
gnu: Fix synopsis in various go packages.
* gnu/packages/golang-check.scm (go-github-com-go-quicktest-qt): Fix synopsis.
* gnu/packages/golang-crypto.scm (go-github-com-refraction-networking-utls):
Fix synopsis. (go-gitlab-com-yawning-edwards25519-extra): Fix synopsis.
* gnu/packages/golang-web.scm (go-github-com-aws-smithy-go): Fix synopsis.
* gnu/packages/golang-xyz.scm (go-msgio): Fix synopsis.
* gnu/packages/golang.scm (go-github-com-flopp-go-findfont): Fix synopsis.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-ipld-cbor): Fix synopsis.
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
-rw-r--r-- | gnu/packages/golang-check.scm | 2 | ||||
-rw-r--r-- | gnu/packages/golang-crypto.scm | 5 | ||||
-rw-r--r-- | gnu/packages/golang-web.scm | 3 | ||||
-rw-r--r-- | gnu/packages/golang-xyz.scm | 2 | ||||
-rw-r--r-- | gnu/packages/golang.scm | 2 | ||||
-rw-r--r-- | gnu/packages/ipfs.scm | 3 |
6 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 7e5abf9f09..f6696c18e3 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -380,7 +380,7 @@ tests.") (propagated-inputs (list go-github-com-google-go-cmp go-github-com-kr-pretty)) (home-page "https://github.com/go-quicktest/qt") - (synopsis "qt: quicker Go tests") + (synopsis "Qt: quicker Go tests") (description "Package qt implements assertions and other helpers wrapped around the standard library's testing types.") diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 7fdc502de6..0fd96eaa54 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -1520,8 +1520,7 @@ QUIC. For Go 1.20.") go-golang-org-x-net go-golang-org-x-sys)) (home-page "https://github.com/refraction-networking/utls") - (synopsis "Fork of the Go standard TLS library, providing low-level access -to the ClientHello for mimicry purposes") + (synopsis "Fork of the Go standard TLS library") (description "uTLS is a fork of “crypto/tls”, which provides ClientHello fingerprinting resistance, low-level access to handshake, fake session tickets and some other features. Handshake is still performed by “crypto/tls”, this @@ -1690,7 +1689,7 @@ ssh-agent process using the sample server.") (propagated-inputs (list go-golang-org-x-crypto go-filippo-io-edwards25519)) (home-page "https://gitlab.com/yawning/edwards25519-extra") - (synopsis "edwards25519-extra") + (synopsis "Extensions to Go standard library' Ed25519 and curve25519 implementation") (description "This package provides extensions to the Go standard library's Ed25519 and curve25519 implementations, primarily extracted from @@url{https://github.com/oasisprotocol/curve25519-voi,curve25519-voi}. This diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index dbbdb427fd..e895ba59ce 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -572,8 +572,7 @@ credentials sources.") (propagated-inputs (list go-github-com-jmespath-go-jmespath go-github-com-google-go-cmp)) (home-page "https://github.com/aws/smithy-go") - (synopsis "@url{https://smithy.io/2.0/index.html,Smithy} code generators -for Go") + (synopsis "Smithy code generators for Go") (description "Package smithy provides the core components for a Smithy SDK.") (license license:asl2.0))) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index a974c00cbd..f8c63976d6 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -8785,7 +8785,7 @@ correctly."))) #:install-source? #f #:import-path "github.com/libp2p/go-msgio/msgio" #:unpack-path "github.com/libp2p/go-msgio")) - (synopsis "CLI tool to wrap messages with msgio header."))) + (synopsis "CLI tool to wrap messages with msgio header"))) (define-public go-msgp (package diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 62ca230cf2..fe26adeede 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2056,7 +2056,7 @@ parsing and encoding support for STUN and TURN protocols.") (arguments '(#:import-path "github.com/flopp/go-findfont")) (home-page "https://github.com/flopp/go-findfont") - (synopsis "go-findfont") + (synopsis "Go font finder library") (description "This package provides a platform-agnostic Go library to locate TrueType font files in your system's user and system font directories.") diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index d5849a3f18..24b2f95ab4 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -522,7 +522,8 @@ parsing.") go-github-com-polydawn-refmt go-github-com-whyrusleeping-cbor-gen)) (home-page "https://github.com/ipfs/go-ipld-cbor") - (synopsis "A cbor implementation of the @code{go-ipld-format}") + (synopsis "@acronym{Concise Binary Object Representation, CBOR} +implementation of @code{go-ipld-format}") (description "An implementation of a @url{https://cbor.io/, CBOR} encoded merkledag object.") (license license:expat))) |