all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou via Guix-patches via <guix-patches@gnu.org>
To: 68543@debbugs.gnu.org
Cc: Nicolas Goaziou <mail@nicolasgoaziou.fr>,
	Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#68543] [PATCH 18/24] gnu: Add rust-grep-printer-0.2.
Date: Wed, 17 Jan 2024 19:22:26 +0100	[thread overview]
Message-ID: <8025565b4cfe9f4f2186c0196d6a6a6cb4f5d050.1705515116.git.mail@nicolasgoaziou.fr> (raw)
In-Reply-To: <35e3199772c0400d9805973a5f6fbdcc2cef1ccc.1705515114.git.mail@nicolasgoaziou.fr>

* gnu/packages/crates-io.scm (rust-grep-printer-0.2): New variable.
(rust-grep-printer-0.1): Inherit from above.

Change-Id: If3e92ad81f972da57846c36da28004009ad7ae39
---
 gnu/packages/crates-io.scm | 38 ++++++++++++++++++++++++++++++++------
 1 file changed, 32 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index bb8589a8df..e7f85e7e13 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -33772,10 +33772,10 @@ (define-public rust-grep-pcre2-0.1
     (description "Use PCRE2 with the grep crate.")
     (license (list license:expat license:unlicense))))
 
-(define-public rust-grep-printer-0.1
+(define-public rust-grep-printer-0.2
   (package
     (name "rust-grep-printer")
-    (version "0.1.6")
+    (version "0.2.1")
     (source
      (origin
        (method url-fetch)
@@ -33784,16 +33784,15 @@ (define-public rust-grep-printer-0.1
         (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "0wnw8khcvris8canv1dp58qh6vph18fml9qsnrsmdpxf9ni73hh5"))))
+         "1cnf70gjnybfql0lmpr32dslb4xhxgc6h0dxwnv3ivla7jh14g3l"))))
     (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs
-       (("rust-base64" ,rust-base64-0.13)
-        ("rust-bstr" ,rust-bstr-0.2)
+       (("rust-bstr" ,rust-bstr-1)
         ("rust-grep-matcher" ,rust-grep-matcher-0.1)
         ("rust-grep-searcher" ,rust-grep-searcher-0.1)
+        ("rust-log" ,rust-log-0.4)
         ("rust-serde" ,rust-serde-1)
-        ("rust-serde-derive" ,rust-serde-derive-1)
         ("rust-serde-json" ,rust-serde-json-1)
         ("rust-termcolor" ,rust-termcolor-1))
        #:cargo-development-inputs
@@ -33805,6 +33804,33 @@ (define-public rust-grep-printer-0.1
 provides standard printing of search results, similar to grep itself.")
     (license (list license:unlicense license:expat))))
 
+(define-public rust-grep-printer-0.1
+  (package
+    (inherit rust-grep-printer-0.2)
+    (name "rust-grep-printer")
+    (version "0.1.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "grep-printer" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0wnw8khcvris8canv1dp58qh6vph18fml9qsnrsmdpxf9ni73hh5"))))
+    (arguments
+     `(#:cargo-inputs
+       (("rust-base64" ,rust-base64-0.13)
+        ("rust-bstr" ,rust-bstr-0.2)
+        ("rust-grep-matcher" ,rust-grep-matcher-0.1)
+        ("rust-grep-searcher" ,rust-grep-searcher-0.1)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-serde-derive" ,rust-serde-derive-1)
+        ("rust-serde-json" ,rust-serde-json-1)
+        ("rust-termcolor" ,rust-termcolor-1))
+       #:cargo-development-inputs
+       (("rust-grep-regex" ,rust-grep-regex-0.1))))))
+
 (define-public rust-grep-regex-0.1
   (package
     (name "rust-grep-regex")
-- 
2.41.0







  parent reply	other threads:[~2024-01-17 18:52 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-17 18:12 [bug#68543] [PATCH 01/24] gnu: rust-memchr-2: Update to 2.7.1 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 02/24] gnu: rust-bstr-1: Update to 1.9.0 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 03/24] gnu: rust-aho-corasick-1: Update to 1.1.2 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 04/24] gnu: rust-globset-0.4: Update to 0.4.14 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 05/24] gnu: rust-loom-0.7: Update to 0.7.1 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 06/24] gnu: rust-crossbeam-utils-0.8: Update to 0.8.19 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 07/24] gnu: rust-crossbeam-channel-0.5: Update to 0.5.11 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 08/24] gnu: rust-crossbeam-channel-0.5: Do not skip build Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 09/24] gnu: rust-ignore-0.4: Update to 0.4.22 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 10/24] gnu: rust-grep-matcher-0.1: Update to 0.1.7 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 11/24] gnu: rust-grep-regex-0.1: Update to 0.1.12 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 12/24] gnu: rust-proc-macro2-1: Update to 1.0.76 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 13/24] gnu: rust-quote-1: Update to 1.0.35 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 14/24] gnu: Add rust-memmap2-0.9 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 15/24] gnu: rust-syn-2: Update to 2.0.48 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 16/24] gnu: rust-grep-searcher-0.1: Update to 0.1.13 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 17/24] gnu: rust-serde-1: Update to 1.0.195 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` Nicolas Goaziou via Guix-patches via [this message]
2024-01-17 18:22 ` [bug#68543] [PATCH 19/24] gnu: rust-pcre2-sys-0.2: Update to 0.2.8 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 20/24] gnu: rust-pcre2-0.2: Update to 0.2.6 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 21/24] gnu: rust-grep-pcre2-0.1: Update to 0.1.7 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 22/24] gnu: rust-winapi-util-0.1: Update to 0.1.6 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 23/24] gnu: rust-grep-cli-0.1: Update to 0.1.10 Nicolas Goaziou via Guix-patches via
2024-01-17 18:22 ` [bug#68543] [PATCH 24/24] gnu: Add rust-grep-0.3 Nicolas Goaziou via Guix-patches via
2024-01-17 18:58 ` [bug#68543] [PATCH 01/24] gnu: rust-memchr-2: Update to 2.7.1 Nicolas Goaziou via Guix-patches via
2024-01-20 20:31   ` bug#68543: " Efraim Flashner

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=8025565b4cfe9f4f2186c0196d6a6a6cb4f5d050.1705515116.git.mail@nicolasgoaziou.fr \
    --to=guix-patches@gnu.org \
    --cc=68543@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    --cc=mail@nicolasgoaziou.fr \
    /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.