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 24/24] gnu: Add rust-grep-0.3.
Date: Wed, 17 Jan 2024 19:22:32 +0100	[thread overview]
Message-ID: <00db015079c53066548d379fd0e2e6c18b6529e2.1705515116.git.mail@nicolasgoaziou.fr> (raw)
In-Reply-To: <35e3199772c0400d9805973a5f6fbdcc2cef1ccc.1705515114.git.mail@nicolasgoaziou.fr>

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

Change-Id: Iceba38b4a103a480de791c92683fb84dc071f9dc
---
 gnu/packages/crates-io.scm | 38 +++++++++++++++++++++++++++++++-------
 1 file changed, 31 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 57014ab476..fc2e819a35 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -33656,8 +33656,38 @@ (define-public rust-greetd-ipc-0.8
              ("rust-thiserror" ,rust-thiserror-1)
              ("rust-tokio" ,rust-tokio-1))))))
 
+(define-public rust-grep-0.3
+  (package
+    (name "rust-grep")
+    (version "0.3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "grep" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0fa9x7q3l5z0bg91wzw1jfpk5rmh60h8bswbsxjcp1p6q5704avf"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-grep-cli" ,rust-grep-cli-0.1)
+        ("rust-grep-matcher" ,rust-grep-matcher-0.1)
+        ("rust-grep-pcre2" ,rust-grep-pcre2-0.1)
+        ("rust-grep-printer" ,rust-grep-printer-0.2)
+        ("rust-grep-regex" ,rust-grep-regex-0.1)
+        ("rust-grep-searcher" ,rust-grep-searcher-0.1))
+       #:cargo-development-inputs
+       (("rust-termcolor" ,rust-termcolor-1)
+        ("rust-walkdir" ,rust-walkdir-2))))
+    (home-page "https://github.com/BurntSushi/ripgrep")
+    (synopsis "Line oriented regex searching as a library")
+    (description "This crate provides a fast line oriented regex searching as
+a library.")
+    (license (list license:unlicense license:expat))))
+
 (define-public rust-grep-0.2
   (package
+    (inherit rust-grep-0.3)
     (name "rust-grep")
     (version "0.2.8")
     (source
@@ -33669,7 +33699,6 @@ (define-public rust-grep-0.2
        (sha256
         (base32
          "0mw61v132ng0nbz5ygb6jvsx729772803w5bv3zs4i8baq689jsi"))))
-    (build-system cargo-build-system)
     (arguments
      `(#:skip-build? #t
        #:cargo-inputs
@@ -33681,12 +33710,7 @@ (define-public rust-grep-0.2
         ("rust-grep-searcher" ,rust-grep-searcher-0.1))
        #:cargo-development-inputs
        (("rust-termcolor" ,rust-termcolor-1)
-        ("rust-walkdir" ,rust-walkdir-2))))
-    (home-page "https://github.com/BurntSushi/ripgrep")
-    (synopsis "Line oriented regex searching as a library")
-    (description
-     "Fast line oriented regex searching as a library.")
-    (license (list license:unlicense license:expat))))
+        ("rust-walkdir" ,rust-walkdir-2))))))
 
 (define-public rust-grep-cli-0.1
   (package
-- 
2.41.0







  parent reply	other threads:[~2024-01-17 18:54 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 ` [bug#68543] [PATCH 18/24] gnu: Add rust-grep-printer-0.2 Nicolas Goaziou via Guix-patches via
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 ` Nicolas Goaziou via Guix-patches via [this message]
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=00db015079c53066548d379fd0e2e6c18b6529e2.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.