all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Domagoj Stolfa <domagoj.stolfa@gmail.com>
To: 49383@debbugs.gnu.org
Cc: Domagoj Stolfa <ds815@gmx.com>
Subject: [bug#49383] [PATCH v2 25/26] gnu: Add rust-colored-2
Date: Sun, 11 Jul 2021 15:55:57 +0100	[thread overview]
Message-ID: <20210711145558.20441-26-ds815@gmx.com> (raw)
In-Reply-To: <20210711145558.20441-1-ds815@gmx.com>

* gnu/packages/crates-io.scm (rust-colored-2): New public variable.
---
 gnu/packages/crates-io.scm | 44 ++++++++++++++++++++++++++++++++------
 1 file changed, 38 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 7f68e4e4eb..7fdbe1658f 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -8637,19 +8637,19 @@ diagnostics easy and relatively painless for everyone!")
 colors.")
     (license license:expat)))
 
-(define-public rust-colored-1
+(define-public rust-colored-2
   (package
     (name "rust-colored")
-    (version "1.9.3")
+    (version "2.0.0")
     (source
       (origin
         (method url-fetch)
         (uri (crate-uri "colored" version))
         (file-name
-         (string-append name "-" version ".tar.gz"))
+          (string-append name "-" version ".tar.gz"))
         (sha256
-         (base32
-          "0nbc1czs512h1k696y7glv1kjrb2b914zpxraic6q5fgv80wizzl"))))
+          (base32
+            "1gbcijscmznzy42rn213yp9ima7210zakgaqibgg1n441dsnyqdk"))))
     (build-system cargo-build-system)
     (arguments
      `(#:tests? #f
@@ -8673,9 +8673,41 @@ colors.")
      "The most simple way to add colors in your terminal.")
     (license license:mpl2.0)))
 
+(define-public rust-colored-1
+  (package
+    (inherit rust-colored-2)
+    (name "rust-colored")
+    (version "1.9.3")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "colored" version))
+        (file-name
+         (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "0nbc1czs512h1k696y7glv1kjrb2b914zpxraic6q5fgv80wizzl"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:tests? #f
+       #:cargo-inputs
+       (("rust-atty" ,rust-atty-0.2)
+        ("rust-winapi" ,rust-winapi-0.3)
+        ("rust-lazy-static" ,rust-lazy-static-1))
+       #:cargo-development-inputs
+       (("rust-ansi-term" ,rust-ansi-term-0.12)
+        ("rust-rspec" ,rust-rspec-1))
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'fix-version-requirements
+           (lambda _
+             (substitute* "Cargo.toml"
+               (("1.0.0-beta.3") ,(package-version rust-rspec-1)))
+             #t)))))))
+
 (define-public rust-colored-1.9.1
   (package
-    (inherit rust-colored-1)
+    (inherit rust-colored-2)
     (name "rust-colored")
     (version "1.9.1")
     (source
-- 
2.32.0





  parent reply	other threads:[~2021-07-11 14:58 UTC|newest]

Thread overview: 72+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-04 16:31 [bug#49383] [PATCH 00/21] Add hyperfine Domagoj Stolfa
2021-07-04 16:31 ` [bug#49382] [PATCH 01/21] gnu: " Domagoj Stolfa
2021-07-04 16:31 ` [bug#49384] [PATCH 02/21] gnu: Add rust-colored-2 Domagoj Stolfa
2021-07-11  8:50   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49391] [PATCH 03/21] gnu: Add rust-rust-decimal-1 Domagoj Stolfa
2021-07-11  8:51   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49385] [PATCH 04/21] gnu: Add rust-statistical-1 Domagoj Stolfa
2021-07-11  8:52   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49386] [PATCH 05/21] gnu: Add rust-postgres-0.19 Domagoj Stolfa
2021-07-11  8:53   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49387] [PATCH 06/21] gnu: Add rust-tokio-postgres-0.7 Domagoj Stolfa
2021-07-11  8:54   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49388] [PATCH 07/21] gnu: Add rust-postgres-protocol-0.6 Domagoj Stolfa
2021-07-11  8:54   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49389] [PATCH 08/21] gnu: Add rust-postgres-types-0.2 Domagoj Stolfa
2021-07-11  8:55   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49390] [PATCH 09/21] gnu: Add rust-socket2-0.4 Domagoj Stolfa
2021-07-11  8:59   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49393] [PATCH 10/21] gnu: Add rust-hmac-0.11 Domagoj Stolfa
2021-07-11  9:04   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49392] [PATCH 11/21] gnu: Add rust-crypto-mac-0.11 Domagoj Stolfa
2021-07-11  9:05   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49395] [PATCH 12/21] gnu: Add rust-cipher-0.3 Domagoj Stolfa
2021-07-11  9:06   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49394] [PATCH 13/21] gnu: Add rust-streebog-0.9 Domagoj Stolfa
2021-07-11  9:09   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49396] [PATCH 14/21] gnu: Add rust-hmac-0.10 Domagoj Stolfa
2021-07-11  9:10   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49397] [PATCH 15/21] gnu: Add rust-bit-vec-0.6 Domagoj Stolfa
2021-07-11  9:11   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49398] [PATCH 16/21] gnu: Add rust-eui48-0.4 Domagoj Stolfa
2021-07-11  9:15   ` Xinglu Chen
2021-07-04 16:31 ` [bug#49399] [PATCH 17/21] gnu: Add rust-geo-types-0.7 Domagoj Stolfa
2021-07-11  9:15   ` Xinglu Chen
2021-07-04 16:32 ` [bug#49401] [PATCH 18/21] gnu: Add rust-geo-types-0.6 Domagoj Stolfa
2021-07-11  9:16   ` Xinglu Chen
2021-07-04 16:32 ` [bug#49400] [PATCH 19/21] gnu: Add rust-rstar-0.8 Domagoj Stolfa
2021-07-11  9:16   ` Xinglu Chen
2021-07-04 16:32 ` [bug#49403] [PATCH 20/21] gnu: Add rust-postgres-derive-0.4 Domagoj Stolfa
2021-07-11  9:19   ` Xinglu Chen
2021-07-04 16:32 ` [bug#49402] [PATCH 21/21] gnu: Add rust-pdqselect-0.1 Domagoj Stolfa
2021-07-11  9:20   ` Xinglu Chen
2021-07-11  9:26 ` [bug#49383] [PATCH 00/21] Add hyperfine Xinglu Chen
2021-07-11 11:27   ` Domagoj Stolfa
2021-07-11 14:55 ` [bug#49383] [PATCH v2 00/26] Addressing comments Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 01/26] gnu: Add rust-pdqselect-0.1 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 02/26] gnu: Add rust-postgres-derive-0.4 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 03/26] gnu: Add rust-rstar-0.9 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 04/26] gnu: Add rust-geo-types-0.7 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 05/26] gnu: Add rust-bit-vec-0.6 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 06/26] gnu: Add rust-cipher-0.3 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 07/26] gnu: rust-crypto-mac-0.10: Use rust-cipher-0.3 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 08/26] gnu: rust-ctr-0.6: " Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 09/26] gnu: rust-eax-0.3: " Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 10/26] gnu: rust-win-crypto-ng-0.4: " Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 11/26] gnu: Add rust-crypto-mac-0.11 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 12/26] gnu: Add rust-streebog-0.9 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 13/26] gnu: Add rust-hmac-0.11 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 14/26] gnu: Add rust-hmac-0.10 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 15/26] gnu: Add rust-postgres-protocol-0.6 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 16/26] gnu: Add rust-eui48-0.4 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 17/26] gnu: Add rust-rstar-0.8 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 18/26] gnu: Add rust-geo-types-0.6 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 19/26] gnu: Add rust-postgres-types-0.2 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 20/26] gnu: Add rust-socket2-0.4 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 21/26] gnu: Add rust-tokio-postgres-0.7 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 22/26] gnu: Add rust-postgres-0.19 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 23/26] gnu: Add rust-statistical-1 Domagoj Stolfa
2021-07-11 14:55   ` [bug#49383] [PATCH v2 24/26] gnu: Add rust-rust-decimal-1 Domagoj Stolfa
2021-07-11 14:55   ` Domagoj Stolfa [this message]
2021-07-11 14:55   ` [bug#49383] [PATCH v2 26/26] gnu: Add hyperfine Domagoj Stolfa
2021-07-13 12:15   ` bug#49383: [PATCH v2 00/26] Addressing comments 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=20210711145558.20441-26-ds815@gmx.com \
    --to=domagoj.stolfa@gmail.com \
    --cc=49383@debbugs.gnu.org \
    --cc=ds815@gmx.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.