all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: VesselWave via Guix-patches via <guix-patches@gnu.org>
To: "57702@debbugs.gnu.org" <57702@debbugs.gnu.org>
Subject: [bug#57702] [PATCH v2 2/8] gnu: rust-textwrap: Add 0.15.0.
Date: Fri, 09 Sep 2022 16:04:55 +0000	[thread overview]
Message-ID: <-z_FaFoAtZUg0aqrmLznEzmtoBWhUIMptD57wgpBoOMmyiqPzuDO_Wu9fHH3dFx4P7sSj1U52GUTY1_Rhc4nMilrnELqgFnWhF1CZ5TFnzU=@protonmail.com> (raw)
In-Reply-To: <G98-R4oRZx18Wfoj1cCmRwQhhwXpZzYD8_C4o8-BRO3dwClQP6GeV8_88JtlTBSvpd9W2J9qv3U-HXwnmVxgk9WnyOpvqn38nlbYm14JX8g=@protonmail.com>

[-- Attachment #1: Type: text/plain, Size: 2789 bytes --]

---
gnu/packages/crates-io.scm | 50 +++++++++++++++++++++++++++++---------
1 file changed, 39 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index a82515f73e..46cd5c7a85 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -63836,8 +63836,45 @@ (define-public rust-text-size-1
(description "This package provides a newtypes for text offsets")
(license (list license:expat license:asl2.0))))

+(define-public rust-textwrap-0.15
+ (package
+ (name "rust-textwrap")
+ (version "0.15.0")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "textwrap" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1yw513k61lfiwgqrfvsjw1a5wpvm0azhpjr2kr0jhnq9c56is55i"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs
+ (("rust-hyphenation" ,rust-hyphenation-0.8)
+ ("rust-smawk" ,rust-smawk-0.3)
+ ("rust-terminal-size" ,rust-terminal-size-0.1)
+ ("rust-unicode-linebreak" ,rust-unicode-linebreak-0.1)
+ ("rust-unicode-width" ,rust-unicode-width-0.1))
+ #:cargo-development-inputs
+ (("rust-criterion" ,rust-criterion-0.3)
+ ("rust-lipsum" ,rust-lipsum-0.8)
+ ("rust-termion" ,rust-termion-1)
+ ("rust-unic-emoji-char" ,rust-unic-emoji-char-0.9)
+ ("rust-version-sync" ,rust-version-sync-0.9))))
+ (home-page
+ "https://github.com/mgeisler/textwrap")
+ (synopsis "Library for word wrapping, indenting, and dedenting strings")
+ (description
+ "Textwrap is a small library for word wrapping, indenting, and dedenting
+strings. You can use it to format strings (such as help and error messages)
+for display in commandline applications. It is designed to be efficient and
+handle Unicode characters correctly.")
+ (license license:expat)))
+
(define-public rust-textwrap-0.12
(package
+ (inherit rust-textwrap-0.15)
(name "rust-textwrap")
(version "0.12.1")
(source
@@ -63855,20 +63892,11 @@ (define-public rust-textwrap-0.12
#:cargo-inputs
(("rust-hyphenation" ,rust-hyphenation-0.8)
("rust-terminal-size" ,rust-terminal-size-0.1)
- ("rust-unicode-width" ,rust-unicode-width-0.1))))
- (home-page
- "https://github.com/mgeisler/textwrap")
- (synopsis "Library for word wrapping, indenting, and dedenting strings")
- (description
- "Textwrap is a small library for word wrapping, indenting, and dedenting
-strings. You can use it to format strings (such as help and error messages)
-for display in commandline applications. It is designed to be efficient and
-handle Unicode characters correctly.")
- (license license:expat)))
+ ("rust-unicode-width" ,rust-unicode-width-0.1))))))

(define-public rust-textwrap-0.11
(package
- (inherit rust-textwrap-0.12)
+ (inherit rust-textwrap-0.15)
(name "rust-textwrap")
(version "0.11.0")
(source
--2.37.2

[-- Attachment #2: Type: text/html, Size: 6202 bytes --]

  parent reply	other threads:[~2022-09-09 19:13 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-09 14:18 [bug#57702] [PATCH 0/8] Update rust-clap-3 to 3.2.17 VesselWave via Guix-patches via
2022-09-09 16:03 ` [bug#57702] [PATCH v2 1/8] gnu: Add rust-unic-emoji-char-0.9 VesselWave via Guix-patches via
2022-09-09 20:30   ` ( via Guix-patches via
2022-09-09 20:33   ` ( via Guix-patches via
2022-09-09 16:04 ` VesselWave via Guix-patches via [this message]
2022-09-09 16:05 ` [bug#57702] [PATCH v2 3/8] gnu: rust-crossbeam-utils-0.8: Add development inputs VesselWave via Guix-patches via
2022-09-09 16:06 ` [bug#57702] [PATCH v2 4/8] gnu: rust-parking-lot-core: Inrerit from latest VesselWave via Guix-patches via
2022-09-09 16:09 ` [bug#57702] [PATCH v2 5/8] gnu: rust-once-cell-1: Update to 1.13.1 VesselWave via Guix-patches via
2022-09-09 16:10 ` [bug#57702] [PATCH v2 6/8] gnu: Add rust-clap-lex-0.2 VesselWave via Guix-patches via
2022-09-09 16:11 ` [bug#57702] [PATCH v2 7/8] gnu: rust-clap-derive-3: Update to 3.2.17 VesselWave via Guix-patches via
2022-09-09 16:12 ` [bug#57702] [PATCH v2 8/8] gnu: rust-clap-3: " VesselWave via Guix-patches via
2022-09-09 17:10 ` [bug#57702] [PATCH v2 0/8] " VesselWave via Guix-patches via
2022-09-09 18:05 ` [bug#57702] [PATCH 1/8] gnu: Add rust-unic-emoji-char-0.9 VesselWave via Guix-patches via
2022-09-10  0:13   ` Maxime Devos
2022-09-10  6:13 ` [bug#57702] [PATCH 2/8] gnu: rust-textwrap: Add 0.15.0 VesselWave via Guix-patches via
2022-09-10  6:14 ` [bug#57702] [PATCH 3/8] gnu: rust-crossbeam-utils-0.8: Add development inputs VesselWave via Guix-patches via
2022-09-10  6:15 ` [bug#57702] [PATCH 4/8] gnu: rust-parking-lot-core: Inrerit from latest VesselWave via Guix-patches via
2022-09-10  6:16 ` [bug#57702] [PATCH 5/8] gnu: rust-once-cell-1: Update to 1.13.1 VesselWave via Guix-patches via
2022-09-10  6:17 ` [bug#57702] [PATCH 6/8] gnu: Add rust-clap-lex-0.2 VesselWave via Guix-patches via
2022-09-10  6:17 ` [bug#57702] [PATCH 7/8] gnu: rust-clap-derive-3: Update to 3.2.17 VesselWave via Guix-patches via
2022-09-10  6:19 ` [bug#57702] [PATCH 8/8] gnu: rust-clap-3: " VesselWave via Guix-patches via
2022-09-10  8:52 ` [bug#57702] [PATCH 1/8] gnu: Add rust-nic-emoji-char-0.9 VesselWave via Guix-patches via
2022-09-10  9:38 ` [bug#57702] [PATCH v4 " VesselWave via Guix-patches via
2022-09-11 11:37   ` Maxime Devos
2022-09-12 21:00 ` [bug#57702] [PATCH 1/8] gnu: rust-termion: Update to 1.5.6 VesselWave via Guix-patches via
2022-09-13  9:14 ` [bug#57702] [PATCH 0/8] Update rust-clap-3 to 3.2.17 VesselWave via Guix-patches via
2022-09-13  9:15 ` [bug#57702] [PATCH 1/8] gnu: rust-termion-1: Update to 1.5.6 VesselWave via Guix-patches via
2022-09-13  9:18 ` [bug#57702] [PATCH 2/8] gnu: rust-textwrap: Add 0.15.0 VesselWave via Guix-patches via
2022-09-13  9:19 ` [bug#57702] [PATCH 3/8] gnu: rust-crossbeam-utils-0.8: Add development inputs VesselWave via Guix-patches via
2022-09-13  9:19 ` [bug#57702] [PATCH 4/8] gnu: rust-parking-lot-core: Inrerit from latest VesselWave via Guix-patches via
2022-09-13  9:20 ` [bug#57702] [PATCH 5/8] gnu: rust-once-cell-1: Update to 1.13.1 VesselWave via Guix-patches via
2022-09-13  9:20 ` [bug#57702] [PATCH 6/8] gnu: Add rust-clap-lex-0.2 VesselWave via Guix-patches via
2022-09-13  9:22 ` [bug#57702] [PATCH 7/8] gnu: rust-clap-derive-3: Update to 3.2.17 VesselWave via Guix-patches via
2022-09-13  9:22 ` [bug#57702] [PATCH 8/8] gnu: rust-clap-3: " VesselWave via Guix-patches via
2022-09-20 19:31 ` [bug#57702] [PATCH 0/8] Update rust-clap-3 " John Kehayias via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='-z_FaFoAtZUg0aqrmLznEzmtoBWhUIMptD57wgpBoOMmyiqPzuDO_Wu9fHH3dFx4P7sSj1U52GUTY1_Rhc4nMilrnELqgFnWhF1CZ5TFnzU=@protonmail.com' \
    --to=guix-patches@gnu.org \
    --cc=57702@debbugs.gnu.org \
    --cc=VesselWave@protonmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.