unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#49451] Adding package aparte (rust XMPP TUI client)
@ 2021-07-06 20:16 southerntofu--- via Guix-patches via
  2021-07-11 21:26 ` [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9 southerntofu via Guix-patches via
                   ` (21 more replies)
  0 siblings, 22 replies; 42+ messages in thread
From: southerntofu--- via Guix-patches via @ 2021-07-06 20:16 UTC (permalink / raw)
  To: 49451

Hello,

In this threads I will submit patches to include package aparte, from 0.2.0 release on Github. There's a few missing crates that will be added to gnu/packages/crates-io.scm, and the aparte package is added to gnu/packages/messaging.scm as suggested in the #guix IRC channel.

This is my first package for guix so don't hesitate to tell me if i'm doing something wrong. Also, i noticed some packages in crates-io.scm are not ordered alphabetically. I tried not to mess the order even more but did not reorder packages which were already misordered.

southerntofu




^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
@ 2021-07-11 21:26 ` southerntofu via Guix-patches via
  2021-08-01 10:08   ` Xinglu Chen
  2021-07-11 21:28 ` [bug#49451] [PATCH 02/20] gnu: Add rust-case southerntofu via Guix-patches via
                   ` (20 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:26 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index d53f8fb525..5ed2ff470e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -5207,6 +5207,33 @@ streams in big-endian and little-endian formats.")
      "This package provides a crate for manipulating memory, bit by bit.")
     (license license:expat)))
 
+(define-public rust-blake2-0.9
+  (package
+    (name "rust-blake2")
+    (version "0.9.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "blake2" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1x3qz692hfrxgw6cd94iiid6iqal2dwj6zv5137swpgg4l17598h"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-crypto-mac" ,rust-crypto-mac-0.8)
+         ("rust-digest" ,rust-digest-0.9)
+         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
+    (home-page
+      "https://github.com/RustCrypto/hashes")
+    (synopsis "BLAKE2 hash functions")
+    (description "BLAKE2 hash functions")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-blake2-0.8
   (package
     (name "rust-blake2")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 02/20] gnu: Add rust-case
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
  2021-07-11 21:26 ` [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9 southerntofu via Guix-patches via
@ 2021-07-11 21:28 ` southerntofu via Guix-patches via
  2021-07-11 21:28 ` [bug#49451] [PATCH 03/20] gnu: Add rust-derive-error southerntofu via Guix-patches via
                   ` (19 subsequent siblings)
  21 siblings, 0 replies; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:28 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5ed2ff470e..c5605fa82c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -7255,6 +7255,28 @@ supported by Cargo.")
 used in argon2rs' bench suite.")
     (license license:wtfpl2)))
 
+(define-public rust-case-0.1
+  (package
+    (name "rust-case")
+    (version "0.1.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "case" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1hgc6fdg01qfh0qx5c50n717vh0xqvrlvxix8ksng5p291mid2z8"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page
+      "https://github.com/SkylerLipthay/case")
+    (synopsis "Set of letter case string helpers")
+    (description
+      "This package provides a set of letter case string helpers")
+    (license license:expat)))
+
 (define-public rust-cassowary-0.3
   (package
     (name "rust-cassowary")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 03/20] gnu: Add rust-derive-error
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
  2021-07-11 21:26 ` [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9 southerntofu via Guix-patches via
  2021-07-11 21:28 ` [bug#49451] [PATCH 02/20] gnu: Add rust-case southerntofu via Guix-patches via
@ 2021-07-11 21:28 ` southerntofu via Guix-patches via
  2021-08-01 10:10   ` Xinglu Chen
  2021-07-11 21:28 ` [bug#49451] [PATCH 04/20] gnu: Add rust-downcast southerntofu via Guix-patches via
                   ` (18 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:28 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index c5605fa82c..2ac7bc0c2e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -12676,6 +12676,35 @@ for arbitrary structs.")
 pattern for arbitrary structs.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-derive-error-0.0.4
+  (package
+    (name "rust-derive-error")
+    (version "0.0.4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "derive-error" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1j624ma4jw911yg3qqlvfybgk7614k2blhg6wgnb38wyn90882gc"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-case" ,rust-case-0.1)
+         ("rust-quote" ,rust-quote-0.3)
+         ("rust-syn" ,rust-syn-0.11))))
+    (home-page
+      "https://github.com/rushmorem/derive-error")
+    (synopsis
+      "Derive macro for Error using macros 1.1")
+    (description
+      "Derive macro for Error using macros 1.1")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-derive-error-chain-0.10
   (package
     (name "rust-derive-error-chain")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 04/20] gnu: Add rust-downcast
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (2 preceding siblings ...)
  2021-07-11 21:28 ` [bug#49451] [PATCH 03/20] gnu: Add rust-derive-error southerntofu via Guix-patches via
@ 2021-07-11 21:28 ` southerntofu via Guix-patches via
  2021-08-01 10:10   ` Xinglu Chen
  2021-07-11 21:29 ` [bug#49451] [PATCH 05/20] gnu: Add rust-flexi-logger southerntofu via Guix-patches via
                   ` (17 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:28 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2ac7bc0c2e..d3641af193 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -13721,6 +13721,29 @@ from macros.")
         ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
         ("rust-strsim" ,rust-strsim-0.5))))))
 
+(define-public rust-downcast-0.10
+  (package
+    (name "rust-downcast")
+    (version "0.10.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "downcast" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "07bh0l95gwrzak6rj29v8kkm577d8vivxsxhqgscf64b4bq59d2b"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page
+      "https://github.com/fkoep/downcast-rs")
+    (synopsis
+      "Trait for downcasting trait objects back to their original types")
+    (description
+      "Trait for downcasting trait objects back to their original types")
+    (license license:expat)))
+
 (define-public rust-downcast-rs-1
   (package
     (name "rust-downcast-rs")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 05/20] gnu: Add rust-flexi-logger
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (3 preceding siblings ...)
  2021-07-11 21:28 ` [bug#49451] [PATCH 04/20] gnu: Add rust-downcast southerntofu via Guix-patches via
@ 2021-07-11 21:29 ` southerntofu via Guix-patches via
  2021-08-01 10:12   ` Xinglu Chen
  2021-07-11 21:29 ` [bug#49451] [PATCH 06/20] gnu: rust-fragile: Update to 1.0 southerntofu via Guix-patches via
                   ` (16 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:29 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 41 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index d3641af193..e322661709 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -15985,6 +15985,47 @@ Reader/Writer streams.  Contains bindings for zlib, deflate, and gzip-based
 streams.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-flexi-logger-0.15
+  (package
+    (name "rust-flexi-logger")
+    (version "0.15.12")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "flexi_logger" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1gs2flpzjd4kr9jw614vaqxxz7fd56gqkr78j47q0ja1vfp3raxa"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-atty" ,rust-atty-0.2)
+         ("rust-chrono" ,rust-chrono-0.4)
+         ("rust-flate2" ,rust-flate2-1)
+         ("rust-glob" ,rust-glob-0.3)
+         ("rust-hostname" ,rust-hostname-0.3)
+         ("rust-lazy-static" ,rust-lazy-static-1)
+         ("rust-libc" ,rust-libc-0.2)
+         ("rust-log" ,rust-log-0.4)
+         ("rust-notify" ,rust-notify-4)
+         ("rust-regex" ,rust-regex-1)
+         ("rust-serde" ,rust-serde-1)
+         ("rust-serde-derive" ,rust-serde-derive-1)
+         ("rust-thiserror" ,rust-thiserror-1)
+         ("rust-toml" ,rust-toml-0.5)
+         ("rust-yansi" ,rust-yansi-0.5))))
+    (home-page
+      "https://github.com/emabee/flexi_logger")
+    (synopsis
+      "Easy-to-configure and flexible logger")
+    (description
+      "Easy-to-configure and flexible logger that writes logs to stderr and/or to files")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-float-cmp-0.8
   (package
     (name "rust-float-cmp")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 06/20] gnu: rust-fragile: Update to 1.0
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (4 preceding siblings ...)
  2021-07-11 21:29 ` [bug#49451] [PATCH 05/20] gnu: Add rust-flexi-logger southerntofu via Guix-patches via
@ 2021-07-11 21:29 ` southerntofu via Guix-patches via
  2021-08-01 10:13   ` Xinglu Chen
  2021-07-11 21:29 ` [bug#49451] [PATCH 07/20] gnu: rust-hmac: Update to 0.10 southerntofu via Guix-patches via
                   ` (15 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:29 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index e322661709..258649f6a0 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -16452,6 +16452,29 @@ implementation that is more efficient for smaller hash keys.")
 syntax, as used by HTML forms.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-fragile-1
+  (package
+    (name "rust-fragile")
+    (version "1.0.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "fragile" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1wlihmkjyhvl5rckal32p010piy1l15s6l81h7z31jcd971kk839"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page
+      "https://github.com/mitsuhiko/rust-fragile")
+    (synopsis
+      "Provides wrapper types for sending non-send values to other threads")
+    (description
+      "Provides wrapper types for sending non-send values to other threads")
+    (license license:asl2.0)))
+
 (define-public rust-fragile-0.3
   (package
     (name "rust-fragile")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 07/20] gnu: rust-hmac: Update to 0.10
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (5 preceding siblings ...)
  2021-07-11 21:29 ` [bug#49451] [PATCH 06/20] gnu: rust-fragile: Update to 1.0 southerntofu via Guix-patches via
@ 2021-07-11 21:29 ` southerntofu via Guix-patches via
  2021-08-01 10:14   ` Xinglu Chen
  2021-07-11 21:29 ` [bug#49451] [PATCH 08/20] gnu: Add rust-hsluv southerntofu via Guix-patches via
                   ` (14 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:29 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 258649f6a0..2ac2230490 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -20141,6 +20141,33 @@ Derivation Function (HKDF).")
        (("rust-digest" ,rust-digest-0.8)
         ("rust-hmac" ,rust-hmac-0.7))))))
 
+(define-public rust-hmac-0.10
+  (package
+    (name "rust-hmac")
+    (version "0.10.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "hmac" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "058yxq54x7xn0gk2vy9bl51r32c9z7qlcl2b80bjh3lk3rmiqi61"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-crypto-mac" ,rust-crypto-mac-0.10)
+         ("rust-digest" ,rust-digest-0.9))))
+    (home-page "https://github.com/RustCrypto/MACs")
+    (synopsis
+      "Generic implementation of Hash-based Message Authentication Code (HMAC)")
+    (description
+      "Generic implementation of Hash-based Message Authentication Code (HMAC)")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-hmac-0.8
   (package
     (name "rust-hmac")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 08/20] gnu: Add rust-hsluv
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (6 preceding siblings ...)
  2021-07-11 21:29 ` [bug#49451] [PATCH 07/20] gnu: rust-hmac: Update to 0.10 southerntofu via Guix-patches via
@ 2021-07-11 21:29 ` southerntofu via Guix-patches via
  2021-08-01 10:15   ` Xinglu Chen
  2021-07-11 21:29 ` [bug#49451] [PATCH 09/20] gnu: Add rust-minidom southerntofu via Guix-patches via
                   ` (13 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:29 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2ac2230490..5daaffaa52 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -20327,6 +20327,29 @@ Hash-based Message Authentication Code algorithm} for SHA1.")
        (("rust-libc" ,rust-libc-0.2)
         ("rust-winutil" ,rust-winutil-0.1))))))
 
+(define-public rust-hsluv-0.1
+  (package
+    (name "rust-hsluv")
+    (version "0.1.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "hsluv" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "0g5p4x9np7292fxinqj34vlys5v20hg5yqqr8vvqbw8xcl5l3rax"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page
+      "https://github.com/bb010g/rust-hsluv")
+    (synopsis
+      "Human-friendly HSL, Rust implementation (revision 4)")
+    (description
+      "Human-friendly HSL, Rust implementation (revision 4)")
+    (license license:expat)))
+
 (define-public rust-html5ever-0.25
   (package
     (name "rust-html5ever")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 09/20] gnu: Add rust-minidom
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (7 preceding siblings ...)
  2021-07-11 21:29 ` [bug#49451] [PATCH 08/20] gnu: Add rust-hsluv southerntofu via Guix-patches via
@ 2021-07-11 21:29 ` southerntofu via Guix-patches via
  2021-08-01 10:16   ` Xinglu Chen
  2021-07-11 21:29 ` [bug#49451] [PATCH 10/20] gnu: Add rust-linked-hash-set southerntofu via Guix-patches via
                   ` (12 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:29 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5daaffaa52..16e2b33e4b 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -26305,6 +26305,32 @@ file's MIME type by its extension.")
         ("rust-phf-codegen" ,rust-phf-codegen-0.7)
         ("rust-unicase" ,rust-unicase-1))))))
 
+(define-public rust-minidom-0.13
+  (package
+    (name "rust-minidom")
+    (version "0.13.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "minidom" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "13k0ngkwgj0zgn0zkkklnj274q351mpyzjaglr0dviwz2k19499k"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-quick-xml" ,rust-quick-xml-0.20))))
+    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
+    (synopsis
+      "Small, simple DOM implementation on top of quick-xml")
+    (description
+      "This package provides a small, simple DOM implementation on top of quick-xml")
+    (license license:mpl2.0)))
+
 (define-public rust-miniz-oxide-0.4
   (package
     (name "rust-miniz-oxide")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 10/20] gnu: Add rust-linked-hash-set
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (8 preceding siblings ...)
  2021-07-11 21:29 ` [bug#49451] [PATCH 09/20] gnu: Add rust-minidom southerntofu via Guix-patches via
@ 2021-07-11 21:29 ` southerntofu via Guix-patches via
  2021-08-01 10:16   ` Xinglu Chen
  2021-07-11 21:30 ` [bug#49451] [PATCH 11/20] gnu: rust-pbkdf2: Update to 0.6 southerntofu via Guix-patches via
                   ` (11 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:29 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 16e2b33e4b..b60d07c15b 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -24329,6 +24329,33 @@ pairs in insertion order.")
         ("rust-serde" ,rust-serde-0.8)
         ("rust-serde-test" ,rust-serde-test-0.8))))))
 
+(define-public rust-linked-hash-set-0.1
+  (package
+    (name "rust-linked-hash-set")
+    (version "0.1.4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "linked_hash_set" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "124m7wiz9ah7ah58ckai413mzfglh3y1nz64qy1s676qlinnq627"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-linked-hash-map"
+          ,rust-linked-hash-map-0.5)
+         ("rust-serde" ,rust-serde-1))))
+    (home-page
+      "https://github.com/alexheretic/linked-hash-set")
+    (synopsis "HashSet with insertion ordering")
+    (description "HashSet with insertion ordering")
+    (license license:asl2.0)))
+
 (define-public rust-linkify-0.4
   (package
     (name "rust-linkify")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 11/20] gnu: rust-pbkdf2: Update to 0.6
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (9 preceding siblings ...)
  2021-07-11 21:29 ` [bug#49451] [PATCH 10/20] gnu: Add rust-linked-hash-set southerntofu via Guix-patches via
@ 2021-07-11 21:30 ` southerntofu via Guix-patches via
  2021-08-01 10:17   ` Xinglu Chen
  2021-07-11 21:30 ` [bug#49451] [PATCH 12/20] gnu: Add rust-sha3 southerntofu via Guix-patches via
                   ` (10 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:30 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b60d07c15b..b65ea9568f 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -31163,6 +31163,38 @@ path.Clean.")
 directory path to the provided path.")
     (license (list license:asl2.0 license:expat))))
 
+(define-public rust-pbkdf2-0.6
+  (package
+    (name "rust-pbkdf2")
+    (version "0.6.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "pbkdf2" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "0jjaapyawm5iqn97mmfj40dvipsy78cm80qcva28009l2zbw1f5k"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-base64" ,rust-base64-0.13)
+         ("rust-crypto-mac" ,rust-crypto-mac-0.10)
+         ("rust-hmac" ,rust-hmac-0.10)
+         ("rust-rand" ,rust-rand-0.7)
+         ("rust-rand-core" ,rust-rand-core-0.5)
+         ("rust-rayon" ,rust-rayon-1)
+         ("rust-sha2" ,rust-sha2-0.9)
+         ("rust-subtle" ,rust-subtle-2))))
+    (home-page
+      "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2")
+    (synopsis "Generic implementation of PBKDF2")
+    (description "Generic implementation of PBKDF2")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-pbkdf2-0.4
   (package
     (name "rust-pbkdf2")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 12/20] gnu: Add rust-sha3
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (10 preceding siblings ...)
  2021-07-11 21:30 ` [bug#49451] [PATCH 11/20] gnu: rust-pbkdf2: Update to 0.6 southerntofu via Guix-patches via
@ 2021-07-11 21:30 ` southerntofu via Guix-patches via
  2021-08-01 10:18   ` Xinglu Chen
  2021-07-11 21:30 ` [bug#49451] [PATCH 13/20] gnu: Add rust-mockall-derive southerntofu via Guix-patches via
                   ` (9 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:30 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b65ea9568f..5389f69934 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -42052,6 +42052,34 @@ functions core functionality.")
        (("rust-gcc" ,rust-gcc-0.3)
         ("rust-generic-array" ,rust-generic-array-0.8))))))
 
+(define-public rust-sha3-0.9
+  (package
+    (name "rust-sha3")
+    (version "0.9.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "sha3" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "02d85wpvz75a0n7r2da15ikqjwzamhii11qy9gqf6pafgm0rj4gq"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-block-buffer" ,rust-block-buffer-0.9)
+         ("rust-digest" ,rust-digest-0.9)
+         ("rust-keccak" ,rust-keccak-0.1)
+         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
+    (home-page
+      "https://github.com/RustCrypto/hashes")
+    (synopsis "SHA-3 (Keccak) hash function")
+    (description "SHA-3 (Keccak) hash function")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-shader-version-0.6
   (package
     (name "rust-shader-version")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 13/20] gnu: Add rust-mockall-derive
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (11 preceding siblings ...)
  2021-07-11 21:30 ` [bug#49451] [PATCH 12/20] gnu: Add rust-sha3 southerntofu via Guix-patches via
@ 2021-07-11 21:30 ` southerntofu via Guix-patches via
  2021-08-01 10:19   ` Xinglu Chen
  2021-07-11 21:30 ` [bug#49451] [PATCH 14/20] gnu: Add rust-mockall southerntofu via Guix-patches via
                   ` (8 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:30 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5389f69934..2a9e477aaf 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -26740,6 +26740,36 @@ IOCP and Async I/O abstractions.")
        #:cargo-development-inputs
        (("rust-rand" ,rust-rand-0.3))))))
 
+
+(define-public rust-mockall-derive-0.9
+  (package
+    (name "rust-mockall-derive")
+    (version "0.9.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "mockall_derive" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1snywdscj3chgs0xqr5700dsw2hy0qwd0s3kdk4nz85w6m327m2x"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-cfg-if" ,rust-cfg-if-1)
+         ("rust-proc-macro2" ,rust-proc-macro2-1)
+         ("rust-quote" ,rust-quote-1)
+         ("rust-syn" ,rust-syn-1))))
+    (home-page "https://github.com/asomers/mockall")
+    (synopsis "Procedural macros for Mockall
+")
+    (description "Procedural macros for Mockall
+")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-mockito-0.23
   (package
     (name "rust-mockito")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 14/20] gnu: Add rust-mockall
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (12 preceding siblings ...)
  2021-07-11 21:30 ` [bug#49451] [PATCH 13/20] gnu: Add rust-mockall-derive southerntofu via Guix-patches via
@ 2021-07-11 21:30 ` southerntofu via Guix-patches via
  2021-08-01 10:20   ` Xinglu Chen
  2021-07-11 21:30 ` [bug#49451] [PATCH 15/20] gnu: Add rust-sasl southerntofu via Guix-patches via
                   ` (7 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:30 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2a9e477aaf..0e57d3c145 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -26740,6 +26740,39 @@ IOCP and Async I/O abstractions.")
        #:cargo-development-inputs
        (("rust-rand" ,rust-rand-0.3))))))
 
+(define-public rust-mockall-0.9
+  (package
+    (name "rust-mockall")
+    (version "0.9.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "mockall" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1m9kpv4523503v48ahyzk9g2rabvbjl70mlbkc8mkfzr4fni9mhq"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-cfg-if" ,rust-cfg-if-1)
+         ("rust-downcast" ,rust-downcast-0.10)
+         ("rust-fragile" ,rust-fragile-1)
+         ("rust-lazy-static" ,rust-lazy-static-1)
+         ("rust-mockall-derive" ,rust-mockall-derive-0.9)
+         ("rust-predicates" ,rust-predicates-1)
+         ("rust-predicates-tree" ,rust-predicates-tree-1))))
+    (home-page "https://github.com/asomers/mockall")
+    (synopsis
+      "Powerful mock object library for Rust
+")
+    (description
+      "This package provides a powerful mock object library for Rust
+")
+    (license (list license:expat license:asl2.0))))
 
 (define-public rust-mockall-derive-0.9
   (package
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 15/20] gnu: Add rust-sasl
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (13 preceding siblings ...)
  2021-07-11 21:30 ` [bug#49451] [PATCH 14/20] gnu: Add rust-mockall southerntofu via Guix-patches via
@ 2021-07-11 21:30 ` southerntofu via Guix-patches via
  2021-08-01 10:22   ` Xinglu Chen
  2021-07-11 21:30 ` [bug#49451] [PATCH 16/20] gnu: Add rust-jid southerntofu via Guix-patches via
                   ` (6 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:30 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 0e57d3c145..44ae54f84c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -39583,6 +39583,37 @@ motivation for writing this library.
 @end itemize")
     (license (list license:asl2.0 license:expat))))
 
+(define-public rust-sasl-0.5
+  (package
+    (name "rust-sasl")
+    (version "0.5.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "sasl" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1j9d6q580r18i90ksr0frjks3mzll73966p2rp0vn9w90b77sbap"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-base64" ,rust-base64-0.13)
+         ("rust-getrandom" ,rust-getrandom-0.2)
+         ("rust-hmac" ,rust-hmac-0.10)
+         ("rust-pbkdf2" ,rust-pbkdf2-0.6)
+         ("rust-sha-1" ,rust-sha-1-0.9)
+         ("rust-sha2" ,rust-sha2-0.9))))
+    (home-page "https://gitlab.com/lumi/sasl-rs")
+    (synopsis
+      "Crate for SASL authentication. Currently only does the client side")
+    (description
+      "This package provides a crate for SASL authentication.  Currently only does the client side")
+    (license license:lgpl3+)))
+
 (define-public rust-scan-fmt-0.2
   (package
     (name "rust-scan-fmt")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 16/20] gnu: Add rust-jid
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (14 preceding siblings ...)
  2021-07-11 21:30 ` [bug#49451] [PATCH 15/20] gnu: Add rust-sasl southerntofu via Guix-patches via
@ 2021-07-11 21:30 ` southerntofu via Guix-patches via
  2021-08-01 10:23   ` Xinglu Chen
  2021-07-11 21:30 ` [bug#49451] [PATCH 17/20] gnu: Add rust-xmpp-parsers southerntofu via Guix-patches via
                   ` (5 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:30 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 44ae54f84c..f2e32d6172 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -22727,6 +22727,33 @@ primitives to an @code{io::Write}.")
 byte slices for sets of ASCII characters or bytes.")
     (license license:expat)))
 
+(define-public rust-jid-0.9
+  (package
+    (name "rust-jid")
+    (version "0.9.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "jid" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1s3dl38wwhnx0pbzm4cnwqmmr09nfg4nv6w4yl3cmbkc2n7xipma"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-minidom" ,rust-minidom-0.13)
+         ("rust-serde" ,rust-serde-1))))
+    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
+    (synopsis
+      "Crate which provides a Jid struct for Jabber IDs")
+    (description
+      "This package provides a crate which provides a Jid struct for Jabber IDs.")
+    (license license:mpl2.0)))
+
 (define-public rust-jni-0.18
   (package
     (name "rust-jni")
@@ -39611,7 +39638,7 @@ motivation for writing this library.
     (synopsis
       "Crate for SASL authentication. Currently only does the client side")
     (description
-      "This package provides a crate for SASL authentication.  Currently only does the client side")
+      "Crate for SASL authentication.  Currently only does the client side")
     (license license:lgpl3+)))
 
 (define-public rust-scan-fmt-0.2
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 17/20] gnu: Add rust-xmpp-parsers
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (15 preceding siblings ...)
  2021-07-11 21:30 ` [bug#49451] [PATCH 16/20] gnu: Add rust-jid southerntofu via Guix-patches via
@ 2021-07-11 21:30 ` southerntofu via Guix-patches via
  2021-08-01 10:24   ` Xinglu Chen
  2021-07-11 21:30 ` [bug#49451] [PATCH 18/20] gnu: Add rust-tokio-xmpp southerntofu via Guix-patches via
                   ` (4 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:30 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f2e32d6172..9bd91b0b7d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -55033,6 +55033,40 @@ to XDG Base Directory specification.")
 parser.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-xmpp-parsers-0.18
+  (package
+    (name "rust-xmpp-parsers")
+    (version "0.18.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "xmpp-parsers" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "064bjmngy0abcp9wcms7h5b13rljr0isliy83csaa0j7xyjmpkq1"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-base64" ,rust-base64-0.13)
+         ("rust-blake2" ,rust-blake2-0.9)
+         ("rust-chrono" ,rust-chrono-0.4)
+         ("rust-digest" ,rust-digest-0.9)
+         ("rust-jid" ,rust-jid-0.9)
+         ("rust-minidom" ,rust-minidom-0.13)
+         ("rust-sha-1" ,rust-sha-1-0.9)
+         ("rust-sha2" ,rust-sha2-0.9)
+         ("rust-sha3" ,rust-sha3-0.9))))
+    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
+    (synopsis
+      "Collection of parsers and serialisers for XMPP extensions")
+    (description
+      "Collection of parsers and serialisers for XMPP extensions")
+    (license license:mpl2.0)))
+
 (define-public rust-xshell-macros-0.1
   (package
     (name "rust-xshell-macros")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 18/20] gnu: Add rust-tokio-xmpp
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (16 preceding siblings ...)
  2021-07-11 21:30 ` [bug#49451] [PATCH 17/20] gnu: Add rust-xmpp-parsers southerntofu via Guix-patches via
@ 2021-07-11 21:30 ` southerntofu via Guix-patches via
  2021-08-01 10:24   ` Xinglu Chen
  2021-07-11 21:30 ` [bug#49451] [PATCH 20/20] Run indent-code.el on the packages i added southerntofu via Guix-patches via
                   ` (3 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:30 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 43 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 9bd91b0b7d..f85b096547 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -49637,6 +49637,49 @@ stream-based WebSocket implementation.")
         ("rust-tokio" ,rust-tokio-0.2)
         ("rust-tokio-test" ,rust-tokio-test-0.2))))))
 
+(define-public rust-tokio-xmpp-3
+  (package
+    (name "rust-tokio-xmpp")
+    (version "3.0.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "tokio-xmpp" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "0f8s4gsv9zs6rlkc40jjglcm0prq10ypxszrwvpxhjbygbxrzb2n"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-bytes" ,rust-bytes-1)
+         ("rust-futures" ,rust-futures-0.3)
+         ("rust-idna" ,rust-idna-0.2)
+         ("rust-log" ,rust-log-0.4)
+         ("rust-native-tls" ,rust-native-tls-0.2)
+         ("rust-rustc-version" ,rust-rustc-version-0.3)
+         ("rust-sasl" ,rust-sasl-0.5)
+         ("rust-tokio" ,rust-tokio-1)
+         ("rust-tokio-native-tls"
+          ,rust-tokio-native-tls-0.3)
+         ("rust-tokio-stream" ,rust-tokio-stream-0.1)
+         ("rust-tokio-util" ,rust-tokio-util-0.6)
+         ("rust-trust-dns-proto"
+          ,rust-trust-dns-proto-0.20)
+         ("rust-trust-dns-resolver"
+          ,rust-trust-dns-resolver-0.20)
+         ("rust-xml5ever" ,rust-xml5ever-0.16)
+         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))))
+    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
+    (synopsis
+      "Asynchronous XMPP for Rust with tokio")
+    (description
+      "Asynchronous XMPP for Rust with tokio")
+    (license license:mpl2.0)))
+
 (define-public rust-toml-0.5
   (package
     (name "rust-toml")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 20/20] Run indent-code.el on the packages i added
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (17 preceding siblings ...)
  2021-07-11 21:30 ` [bug#49451] [PATCH 18/20] gnu: Add rust-tokio-xmpp southerntofu via Guix-patches via
@ 2021-07-11 21:30 ` southerntofu via Guix-patches via
  2021-08-01 10:28   ` Xinglu Chen
  2021-07-11 21:31 ` [bug#49451] [PATCH 19/20] gnu: Add aparte southerntofu via Guix-patches via
                   ` (2 subsequent siblings)
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:30 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/crates-io.scm | 574 ++++++++++++++++++-------------------
 gnu/packages/messaging.scm |  82 +++---
 2 files changed, 328 insertions(+), 328 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f85b096547..f215bdee73 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -5212,24 +5212,24 @@ streams in big-endian and little-endian formats.")
     (name "rust-blake2")
     (version "0.9.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "blake2" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1x3qz692hfrxgw6cd94iiid6iqal2dwj6zv5137swpgg4l17598h"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "blake2" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1x3qz692hfrxgw6cd94iiid6iqal2dwj6zv5137swpgg4l17598h"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-crypto-mac" ,rust-crypto-mac-0.8)
-         ("rust-digest" ,rust-digest-0.9)
-         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-crypto-mac" ,rust-crypto-mac-0.8)
+        ("rust-digest" ,rust-digest-0.9)
+        ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
     (home-page
-      "https://github.com/RustCrypto/hashes")
+     "https://github.com/RustCrypto/hashes")
     (synopsis "BLAKE2 hash functions")
     (description "BLAKE2 hash functions")
     (license (list license:expat license:asl2.0))))
@@ -7260,21 +7260,21 @@ used in argon2rs' bench suite.")
     (name "rust-case")
     (version "0.1.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "case" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1hgc6fdg01qfh0qx5c50n717vh0xqvrlvxix8ksng5p291mid2z8"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "case" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1hgc6fdg01qfh0qx5c50n717vh0xqvrlvxix8ksng5p291mid2z8"))))
     (build-system cargo-build-system)
     (arguments `(#:skip-build? #t))
     (home-page
-      "https://github.com/SkylerLipthay/case")
+     "https://github.com/SkylerLipthay/case")
     (synopsis "Set of letter case string helpers")
     (description
-      "This package provides a set of letter case string helpers")
+     "This package provides a set of letter case string helpers")
     (license license:expat)))
 
 (define-public rust-cassowary-0.3
@@ -12681,28 +12681,28 @@ pattern for arbitrary structs.")
     (name "rust-derive-error")
     (version "0.0.4")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "derive-error" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1j624ma4jw911yg3qqlvfybgk7614k2blhg6wgnb38wyn90882gc"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "derive-error" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1j624ma4jw911yg3qqlvfybgk7614k2blhg6wgnb38wyn90882gc"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-case" ,rust-case-0.1)
-         ("rust-quote" ,rust-quote-0.3)
-         ("rust-syn" ,rust-syn-0.11))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-case" ,rust-case-0.1)
+        ("rust-quote" ,rust-quote-0.3)
+        ("rust-syn" ,rust-syn-0.11))))
     (home-page
-      "https://github.com/rushmorem/derive-error")
+     "https://github.com/rushmorem/derive-error")
     (synopsis
-      "Derive macro for Error using macros 1.1")
+     "Derive macro for Error using macros 1.1")
     (description
-      "Derive macro for Error using macros 1.1")
+     "Derive macro for Error using macros 1.1")
     (license (list license:expat license:asl2.0))))
 
 (define-public rust-derive-error-chain-0.10
@@ -13726,22 +13726,22 @@ from macros.")
     (name "rust-downcast")
     (version "0.10.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "downcast" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "07bh0l95gwrzak6rj29v8kkm577d8vivxsxhqgscf64b4bq59d2b"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "downcast" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "07bh0l95gwrzak6rj29v8kkm577d8vivxsxhqgscf64b4bq59d2b"))))
     (build-system cargo-build-system)
     (arguments `(#:skip-build? #t))
     (home-page
-      "https://github.com/fkoep/downcast-rs")
+     "https://github.com/fkoep/downcast-rs")
     (synopsis
-      "Trait for downcasting trait objects back to their original types")
+     "Trait for downcasting trait objects back to their original types")
     (description
-      "Trait for downcasting trait objects back to their original types")
+     "Trait for downcasting trait objects back to their original types")
     (license license:expat)))
 
 (define-public rust-downcast-rs-1
@@ -15990,40 +15990,40 @@ streams.")
     (name "rust-flexi-logger")
     (version "0.15.12")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "flexi_logger" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1gs2flpzjd4kr9jw614vaqxxz7fd56gqkr78j47q0ja1vfp3raxa"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "flexi_logger" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1gs2flpzjd4kr9jw614vaqxxz7fd56gqkr78j47q0ja1vfp3raxa"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-atty" ,rust-atty-0.2)
-         ("rust-chrono" ,rust-chrono-0.4)
-         ("rust-flate2" ,rust-flate2-1)
-         ("rust-glob" ,rust-glob-0.3)
-         ("rust-hostname" ,rust-hostname-0.3)
-         ("rust-lazy-static" ,rust-lazy-static-1)
-         ("rust-libc" ,rust-libc-0.2)
-         ("rust-log" ,rust-log-0.4)
-         ("rust-notify" ,rust-notify-4)
-         ("rust-regex" ,rust-regex-1)
-         ("rust-serde" ,rust-serde-1)
-         ("rust-serde-derive" ,rust-serde-derive-1)
-         ("rust-thiserror" ,rust-thiserror-1)
-         ("rust-toml" ,rust-toml-0.5)
-         ("rust-yansi" ,rust-yansi-0.5))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-atty" ,rust-atty-0.2)
+        ("rust-chrono" ,rust-chrono-0.4)
+        ("rust-flate2" ,rust-flate2-1)
+        ("rust-glob" ,rust-glob-0.3)
+        ("rust-hostname" ,rust-hostname-0.3)
+        ("rust-lazy-static" ,rust-lazy-static-1)
+        ("rust-libc" ,rust-libc-0.2)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-notify" ,rust-notify-4)
+        ("rust-regex" ,rust-regex-1)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-serde-derive" ,rust-serde-derive-1)
+        ("rust-thiserror" ,rust-thiserror-1)
+        ("rust-toml" ,rust-toml-0.5)
+        ("rust-yansi" ,rust-yansi-0.5))))
     (home-page
-      "https://github.com/emabee/flexi_logger")
+     "https://github.com/emabee/flexi_logger")
     (synopsis
-      "Easy-to-configure and flexible logger")
+     "Easy-to-configure and flexible logger")
     (description
-      "Easy-to-configure and flexible logger that writes logs to stderr and/or to files")
+     "Easy-to-configure and flexible logger that writes logs to stderr and/or to files")
     (license (list license:expat license:asl2.0))))
 
 (define-public rust-float-cmp-0.8
@@ -16457,22 +16457,22 @@ syntax, as used by HTML forms.")
     (name "rust-fragile")
     (version "1.0.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "fragile" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1wlihmkjyhvl5rckal32p010piy1l15s6l81h7z31jcd971kk839"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "fragile" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1wlihmkjyhvl5rckal32p010piy1l15s6l81h7z31jcd971kk839"))))
     (build-system cargo-build-system)
     (arguments `(#:skip-build? #t))
     (home-page
-      "https://github.com/mitsuhiko/rust-fragile")
+     "https://github.com/mitsuhiko/rust-fragile")
     (synopsis
-      "Provides wrapper types for sending non-send values to other threads")
+     "Provides wrapper types for sending non-send values to other threads")
     (description
-      "Provides wrapper types for sending non-send values to other threads")
+     "Provides wrapper types for sending non-send values to other threads")
     (license license:asl2.0)))
 
 (define-public rust-fragile-0.3
@@ -20146,26 +20146,26 @@ Derivation Function (HKDF).")
     (name "rust-hmac")
     (version "0.10.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "hmac" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "058yxq54x7xn0gk2vy9bl51r32c9z7qlcl2b80bjh3lk3rmiqi61"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "hmac" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "058yxq54x7xn0gk2vy9bl51r32c9z7qlcl2b80bjh3lk3rmiqi61"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-crypto-mac" ,rust-crypto-mac-0.10)
-         ("rust-digest" ,rust-digest-0.9))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-crypto-mac" ,rust-crypto-mac-0.10)
+        ("rust-digest" ,rust-digest-0.9))))
     (home-page "https://github.com/RustCrypto/MACs")
     (synopsis
-      "Generic implementation of Hash-based Message Authentication Code (HMAC)")
+     "Generic implementation of Hash-based Message Authentication Code (HMAC)")
     (description
-      "Generic implementation of Hash-based Message Authentication Code (HMAC)")
+     "Generic implementation of Hash-based Message Authentication Code (HMAC)")
     (license (list license:expat license:asl2.0))))
 
 (define-public rust-hmac-0.8
@@ -20332,22 +20332,22 @@ Hash-based Message Authentication Code algorithm} for SHA1.")
     (name "rust-hsluv")
     (version "0.1.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "hsluv" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "0g5p4x9np7292fxinqj34vlys5v20hg5yqqr8vvqbw8xcl5l3rax"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "hsluv" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0g5p4x9np7292fxinqj34vlys5v20hg5yqqr8vvqbw8xcl5l3rax"))))
     (build-system cargo-build-system)
     (arguments `(#:skip-build? #t))
     (home-page
-      "https://github.com/bb010g/rust-hsluv")
+     "https://github.com/bb010g/rust-hsluv")
     (synopsis
-      "Human-friendly HSL, Rust implementation (revision 4)")
+     "Human-friendly HSL, Rust implementation (revision 4)")
     (description
-      "Human-friendly HSL, Rust implementation (revision 4)")
+     "Human-friendly HSL, Rust implementation (revision 4)")
     (license license:expat)))
 
 (define-public rust-html5ever-0.25
@@ -22732,26 +22732,26 @@ byte slices for sets of ASCII characters or bytes.")
     (name "rust-jid")
     (version "0.9.2")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "jid" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1s3dl38wwhnx0pbzm4cnwqmmr09nfg4nv6w4yl3cmbkc2n7xipma"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "jid" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1s3dl38wwhnx0pbzm4cnwqmmr09nfg4nv6w4yl3cmbkc2n7xipma"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-minidom" ,rust-minidom-0.13)
-         ("rust-serde" ,rust-serde-1))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-minidom" ,rust-minidom-0.13)
+        ("rust-serde" ,rust-serde-1))))
     (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
     (synopsis
-      "Crate which provides a Jid struct for Jabber IDs")
+     "Crate which provides a Jid struct for Jabber IDs")
     (description
-      "This package provides a crate which provides a Jid struct for Jabber IDs.")
+     "This package provides a crate which provides a Jid struct for Jabber IDs.")
     (license license:mpl2.0)))
 
 (define-public rust-jni-0.18
@@ -24361,24 +24361,24 @@ pairs in insertion order.")
     (name "rust-linked-hash-set")
     (version "0.1.4")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "linked_hash_set" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "124m7wiz9ah7ah58ckai413mzfglh3y1nz64qy1s676qlinnq627"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "linked_hash_set" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "124m7wiz9ah7ah58ckai413mzfglh3y1nz64qy1s676qlinnq627"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-linked-hash-map"
-          ,rust-linked-hash-map-0.5)
-         ("rust-serde" ,rust-serde-1))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-linked-hash-map"
+         ,rust-linked-hash-map-0.5)
+        ("rust-serde" ,rust-serde-1))))
     (home-page
-      "https://github.com/alexheretic/linked-hash-set")
+     "https://github.com/alexheretic/linked-hash-set")
     (synopsis "HashSet with insertion ordering")
     (description "HashSet with insertion ordering")
     (license license:asl2.0)))
@@ -26364,25 +26364,25 @@ file's MIME type by its extension.")
     (name "rust-minidom")
     (version "0.13.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "minidom" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "13k0ngkwgj0zgn0zkkklnj274q351mpyzjaglr0dviwz2k19499k"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "minidom" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "13k0ngkwgj0zgn0zkkklnj274q351mpyzjaglr0dviwz2k19499k"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-quick-xml" ,rust-quick-xml-0.20))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-quick-xml" ,rust-quick-xml-0.20))))
     (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
     (synopsis
-      "Small, simple DOM implementation on top of quick-xml")
+     "Small, simple DOM implementation on top of quick-xml")
     (description
-      "This package provides a small, simple DOM implementation on top of quick-xml")
+     "This package provides a small, simple DOM implementation on top of quick-xml")
     (license license:mpl2.0)))
 
 (define-public rust-miniz-oxide-0.4
@@ -26772,32 +26772,32 @@ IOCP and Async I/O abstractions.")
     (name "rust-mockall")
     (version "0.9.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "mockall" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1m9kpv4523503v48ahyzk9g2rabvbjl70mlbkc8mkfzr4fni9mhq"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "mockall" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1m9kpv4523503v48ahyzk9g2rabvbjl70mlbkc8mkfzr4fni9mhq"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-cfg-if" ,rust-cfg-if-1)
-         ("rust-downcast" ,rust-downcast-0.10)
-         ("rust-fragile" ,rust-fragile-1)
-         ("rust-lazy-static" ,rust-lazy-static-1)
-         ("rust-mockall-derive" ,rust-mockall-derive-0.9)
-         ("rust-predicates" ,rust-predicates-1)
-         ("rust-predicates-tree" ,rust-predicates-tree-1))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-cfg-if" ,rust-cfg-if-1)
+        ("rust-downcast" ,rust-downcast-0.10)
+        ("rust-fragile" ,rust-fragile-1)
+        ("rust-lazy-static" ,rust-lazy-static-1)
+        ("rust-mockall-derive" ,rust-mockall-derive-0.9)
+        ("rust-predicates" ,rust-predicates-1)
+        ("rust-predicates-tree" ,rust-predicates-tree-1))))
     (home-page "https://github.com/asomers/mockall")
     (synopsis
-      "Powerful mock object library for Rust
+     "Powerful mock object library for Rust
 ")
     (description
-      "This package provides a powerful mock object library for Rust
+     "This package provides a powerful mock object library for Rust
 ")
     (license (list license:expat license:asl2.0))))
 
@@ -26806,23 +26806,23 @@ IOCP and Async I/O abstractions.")
     (name "rust-mockall-derive")
     (version "0.9.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "mockall_derive" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1snywdscj3chgs0xqr5700dsw2hy0qwd0s3kdk4nz85w6m327m2x"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "mockall_derive" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1snywdscj3chgs0xqr5700dsw2hy0qwd0s3kdk4nz85w6m327m2x"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-cfg-if" ,rust-cfg-if-1)
-         ("rust-proc-macro2" ,rust-proc-macro2-1)
-         ("rust-quote" ,rust-quote-1)
-         ("rust-syn" ,rust-syn-1))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-cfg-if" ,rust-cfg-if-1)
+        ("rust-proc-macro2" ,rust-proc-macro2-1)
+        ("rust-quote" ,rust-quote-1)
+        ("rust-syn" ,rust-syn-1))))
     (home-page "https://github.com/asomers/mockall")
     (synopsis "Procedural macros for Mockall
 ")
@@ -31258,29 +31258,29 @@ directory path to the provided path.")
     (name "rust-pbkdf2")
     (version "0.6.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "pbkdf2" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "0jjaapyawm5iqn97mmfj40dvipsy78cm80qcva28009l2zbw1f5k"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "pbkdf2" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0jjaapyawm5iqn97mmfj40dvipsy78cm80qcva28009l2zbw1f5k"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-base64" ,rust-base64-0.13)
-         ("rust-crypto-mac" ,rust-crypto-mac-0.10)
-         ("rust-hmac" ,rust-hmac-0.10)
-         ("rust-rand" ,rust-rand-0.7)
-         ("rust-rand-core" ,rust-rand-core-0.5)
-         ("rust-rayon" ,rust-rayon-1)
-         ("rust-sha2" ,rust-sha2-0.9)
-         ("rust-subtle" ,rust-subtle-2))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-base64" ,rust-base64-0.13)
+        ("rust-crypto-mac" ,rust-crypto-mac-0.10)
+        ("rust-hmac" ,rust-hmac-0.10)
+        ("rust-rand" ,rust-rand-0.7)
+        ("rust-rand-core" ,rust-rand-core-0.5)
+        ("rust-rayon" ,rust-rayon-1)
+        ("rust-sha2" ,rust-sha2-0.9)
+        ("rust-subtle" ,rust-subtle-2))))
     (home-page
-      "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2")
+     "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2")
     (synopsis "Generic implementation of PBKDF2")
     (description "Generic implementation of PBKDF2")
     (license (list license:expat license:asl2.0))))
@@ -42178,25 +42178,25 @@ functions core functionality.")
     (name "rust-sha3")
     (version "0.9.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "sha3" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "02d85wpvz75a0n7r2da15ikqjwzamhii11qy9gqf6pafgm0rj4gq"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "sha3" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "02d85wpvz75a0n7r2da15ikqjwzamhii11qy9gqf6pafgm0rj4gq"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-block-buffer" ,rust-block-buffer-0.9)
-         ("rust-digest" ,rust-digest-0.9)
-         ("rust-keccak" ,rust-keccak-0.1)
-         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-block-buffer" ,rust-block-buffer-0.9)
+        ("rust-digest" ,rust-digest-0.9)
+        ("rust-keccak" ,rust-keccak-0.1)
+        ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
     (home-page
-      "https://github.com/RustCrypto/hashes")
+     "https://github.com/RustCrypto/hashes")
     (synopsis "SHA-3 (Keccak) hash function")
     (description "SHA-3 (Keccak) hash function")
     (license (list license:expat license:asl2.0))))
@@ -49642,42 +49642,42 @@ stream-based WebSocket implementation.")
     (name "rust-tokio-xmpp")
     (version "3.0.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "tokio-xmpp" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "0f8s4gsv9zs6rlkc40jjglcm0prq10ypxszrwvpxhjbygbxrzb2n"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "tokio-xmpp" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0f8s4gsv9zs6rlkc40jjglcm0prq10ypxszrwvpxhjbygbxrzb2n"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-bytes" ,rust-bytes-1)
-         ("rust-futures" ,rust-futures-0.3)
-         ("rust-idna" ,rust-idna-0.2)
-         ("rust-log" ,rust-log-0.4)
-         ("rust-native-tls" ,rust-native-tls-0.2)
-         ("rust-rustc-version" ,rust-rustc-version-0.3)
-         ("rust-sasl" ,rust-sasl-0.5)
-         ("rust-tokio" ,rust-tokio-1)
-         ("rust-tokio-native-tls"
-          ,rust-tokio-native-tls-0.3)
-         ("rust-tokio-stream" ,rust-tokio-stream-0.1)
-         ("rust-tokio-util" ,rust-tokio-util-0.6)
-         ("rust-trust-dns-proto"
-          ,rust-trust-dns-proto-0.20)
-         ("rust-trust-dns-resolver"
-          ,rust-trust-dns-resolver-0.20)
-         ("rust-xml5ever" ,rust-xml5ever-0.16)
-         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-bytes" ,rust-bytes-1)
+        ("rust-futures" ,rust-futures-0.3)
+        ("rust-idna" ,rust-idna-0.2)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-native-tls" ,rust-native-tls-0.2)
+        ("rust-rustc-version" ,rust-rustc-version-0.3)
+        ("rust-sasl" ,rust-sasl-0.5)
+        ("rust-tokio" ,rust-tokio-1)
+        ("rust-tokio-native-tls"
+         ,rust-tokio-native-tls-0.3)
+        ("rust-tokio-stream" ,rust-tokio-stream-0.1)
+        ("rust-tokio-util" ,rust-tokio-util-0.6)
+        ("rust-trust-dns-proto"
+         ,rust-trust-dns-proto-0.20)
+        ("rust-trust-dns-resolver"
+         ,rust-trust-dns-resolver-0.20)
+        ("rust-xml5ever" ,rust-xml5ever-0.16)
+        ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))))
     (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
     (synopsis
-      "Asynchronous XMPP for Rust with tokio")
+     "Asynchronous XMPP for Rust with tokio")
     (description
-      "Asynchronous XMPP for Rust with tokio")
+     "Asynchronous XMPP for Rust with tokio")
     (license license:mpl2.0)))
 
 (define-public rust-toml-0.5
@@ -55081,33 +55081,33 @@ parser.")
     (name "rust-xmpp-parsers")
     (version "0.18.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "xmpp-parsers" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "064bjmngy0abcp9wcms7h5b13rljr0isliy83csaa0j7xyjmpkq1"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "xmpp-parsers" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "064bjmngy0abcp9wcms7h5b13rljr0isliy83csaa0j7xyjmpkq1"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-base64" ,rust-base64-0.13)
-         ("rust-blake2" ,rust-blake2-0.9)
-         ("rust-chrono" ,rust-chrono-0.4)
-         ("rust-digest" ,rust-digest-0.9)
-         ("rust-jid" ,rust-jid-0.9)
-         ("rust-minidom" ,rust-minidom-0.13)
-         ("rust-sha-1" ,rust-sha-1-0.9)
-         ("rust-sha2" ,rust-sha2-0.9)
-         ("rust-sha3" ,rust-sha3-0.9))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-base64" ,rust-base64-0.13)
+        ("rust-blake2" ,rust-blake2-0.9)
+        ("rust-chrono" ,rust-chrono-0.4)
+        ("rust-digest" ,rust-digest-0.9)
+        ("rust-jid" ,rust-jid-0.9)
+        ("rust-minidom" ,rust-minidom-0.13)
+        ("rust-sha-1" ,rust-sha-1-0.9)
+        ("rust-sha2" ,rust-sha2-0.9)
+        ("rust-sha3" ,rust-sha3-0.9))))
     (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
     (synopsis
-      "Collection of parsers and serialisers for XMPP extensions")
+     "Collection of parsers and serialisers for XMPP extensions")
     (description
-      "Collection of parsers and serialisers for XMPP extensions")
+     "Collection of parsers and serialisers for XMPP extensions")
     (license license:mpl2.0)))
 
 (define-public rust-xshell-macros-0.1
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 6bfee2e15e..9d08347583 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -3023,56 +3023,56 @@ API.  Mattermost is not required.")
     (name "aparte")
     (version "0.2.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "aparte" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "0qzg1052whjhcsz8n3s77kb4zvp7k0na3hikzkf5qa3z4g0hyvrp"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "aparte" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0qzg1052whjhcsz8n3s77kb4zvp7k0na3hikzkf5qa3z4g0hyvrp"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:cargo-inputs
-        (("rust-backtrace" ,rust-backtrace-0.3)
-         ("rust-bytes" ,rust-bytes-0.5)
-         ("rust-chrono" ,rust-chrono-0.4)
-         ("rust-derive-error" ,rust-derive-error-0.0.4)
-         ("rust-dirs" ,rust-dirs-2)
-         ("rust-flexi-logger" ,rust-flexi-logger-0.15)
-         ("rust-futures" ,rust-futures-0.3)
-         ("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
-         ("rust-hsluv" ,rust-hsluv-0.1)
-         ("rust-linked-hash-map"
-          ,rust-linked-hash-map-0.5)
-         ("rust-linked-hash-set"
-          ,rust-linked-hash-set-0.1)
-         ("rust-log" ,rust-log-0.4)
-         ("rust-rand" ,rust-rand-0.8)
-         ("rust-rpassword" ,rust-rpassword-3)
-         ("rust-rust-crypto" ,rust-rust-crypto-0.2)
-         ("rust-serde" ,rust-serde-1)
-         ("rust-termion" ,rust-termion-1)
-         ("rust-textwrap" ,rust-textwrap-0.12)
-         ("rust-tokio" ,rust-tokio-1)
-         ("rust-tokio-xmpp" ,rust-tokio-xmpp-3)
-         ("rust-toml" ,rust-toml-0.5)
-         ("rust-unicode-segmentation"
-          ,rust-unicode-segmentation-1)
-         ("rust-uuid" ,rust-uuid-0.7)
-         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))
-        #:cargo-development-inputs
-        (("rust-mockall" ,rust-mockall-0.9))))
+     `(#:cargo-inputs
+       (("rust-backtrace" ,rust-backtrace-0.3)
+        ("rust-bytes" ,rust-bytes-0.5)
+        ("rust-chrono" ,rust-chrono-0.4)
+        ("rust-derive-error" ,rust-derive-error-0.0.4)
+        ("rust-dirs" ,rust-dirs-2)
+        ("rust-flexi-logger" ,rust-flexi-logger-0.15)
+        ("rust-futures" ,rust-futures-0.3)
+        ("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
+        ("rust-hsluv" ,rust-hsluv-0.1)
+        ("rust-linked-hash-map"
+         ,rust-linked-hash-map-0.5)
+        ("rust-linked-hash-set"
+         ,rust-linked-hash-set-0.1)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-rand" ,rust-rand-0.8)
+        ("rust-rpassword" ,rust-rpassword-3)
+        ("rust-rust-crypto" ,rust-rust-crypto-0.2)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-termion" ,rust-termion-1)
+        ("rust-textwrap" ,rust-textwrap-0.12)
+        ("rust-tokio" ,rust-tokio-1)
+        ("rust-tokio-xmpp" ,rust-tokio-xmpp-3)
+        ("rust-toml" ,rust-toml-0.5)
+        ("rust-unicode-segmentation"
+         ,rust-unicode-segmentation-1)
+        ("rust-uuid" ,rust-uuid-0.7)
+        ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))
+       #:cargo-development-inputs
+       (("rust-mockall" ,rust-mockall-0.9))))
     (native-inputs
      `(("pkg-config" ,pkg-config)))
     (inputs
      `(("openssl" ,openssl)))
     (home-page
-      "https://github.com/paulfariello/aparte")
+     "https://github.com/paulfariello/aparte")
     (synopsis
-      "Simple XMPP console client written in Rust and inspired by Profanity")
+     "Simple XMPP console client written in Rust and inspired by Profanity")
     (description
-      "Simple XMPP console client written in Rust and inspired by Profanity")
+     "Simple XMPP console client written in Rust and inspired by Profanity")
     (license license:mpl2.0)))
 
 ;;; messaging.scm ends here
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 19/20] gnu: Add aparte
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (18 preceding siblings ...)
  2021-07-11 21:30 ` [bug#49451] [PATCH 20/20] Run indent-code.el on the packages i added southerntofu via Guix-patches via
@ 2021-07-11 21:31 ` southerntofu via Guix-patches via
  2021-08-01 10:29   ` Xinglu Chen
  2021-08-01 10:42 ` [bug#49451] Adding package aparte (rust XMPP TUI client) Xinglu Chen
  2021-08-31 15:31 ` [bug#49451] aparte on GuixRUS jgart via Guix-patches via
  21 siblings, 1 reply; 42+ messages in thread
From: southerntofu via Guix-patches via @ 2021-07-11 21:31 UTC (permalink / raw)
  To: 49451

---
 gnu/packages/messaging.scm | 59 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 22e1c370aa..6bfee2e15e 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -60,6 +60,7 @@
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages cpp)
+  #:use-module (gnu packages crates-io)
   #:use-module (gnu packages crypto)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages cyrus-sasl)
@@ -123,6 +124,7 @@
   #:use-module (gnu packages xiph)
   #:use-module (gnu packages xml)
   #:use-module (gnu packages xorg)
+  #:use-module (guix build-system cargo)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system go)
   #:use-module (guix build-system glib-or-gtk)
@@ -3016,4 +3018,61 @@ API.  Mattermost is not required.")
     (home-page "https://github.com/42wim/matterbridge")
     (license license:asl2.0)))
 
+(define-public aparte
+  (package
+    (name "aparte")
+    (version "0.2.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "aparte" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "0qzg1052whjhcsz8n3s77kb4zvp7k0na3hikzkf5qa3z4g0hyvrp"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:cargo-inputs
+        (("rust-backtrace" ,rust-backtrace-0.3)
+         ("rust-bytes" ,rust-bytes-0.5)
+         ("rust-chrono" ,rust-chrono-0.4)
+         ("rust-derive-error" ,rust-derive-error-0.0.4)
+         ("rust-dirs" ,rust-dirs-2)
+         ("rust-flexi-logger" ,rust-flexi-logger-0.15)
+         ("rust-futures" ,rust-futures-0.3)
+         ("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
+         ("rust-hsluv" ,rust-hsluv-0.1)
+         ("rust-linked-hash-map"
+          ,rust-linked-hash-map-0.5)
+         ("rust-linked-hash-set"
+          ,rust-linked-hash-set-0.1)
+         ("rust-log" ,rust-log-0.4)
+         ("rust-rand" ,rust-rand-0.8)
+         ("rust-rpassword" ,rust-rpassword-3)
+         ("rust-rust-crypto" ,rust-rust-crypto-0.2)
+         ("rust-serde" ,rust-serde-1)
+         ("rust-termion" ,rust-termion-1)
+         ("rust-textwrap" ,rust-textwrap-0.12)
+         ("rust-tokio" ,rust-tokio-1)
+         ("rust-tokio-xmpp" ,rust-tokio-xmpp-3)
+         ("rust-toml" ,rust-toml-0.5)
+         ("rust-unicode-segmentation"
+          ,rust-unicode-segmentation-1)
+         ("rust-uuid" ,rust-uuid-0.7)
+         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))
+        #:cargo-development-inputs
+        (("rust-mockall" ,rust-mockall-0.9))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("openssl" ,openssl)))
+    (home-page
+      "https://github.com/paulfariello/aparte")
+    (synopsis
+      "Simple XMPP console client written in Rust and inspired by Profanity")
+    (description
+      "Simple XMPP console client written in Rust and inspired by Profanity")
+    (license license:mpl2.0)))
+
 ;;; messaging.scm ends here
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9
  2021-07-11 21:26 ` [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9 southerntofu via Guix-patches via
@ 2021-08-01 10:08   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:08 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---

Please write commit messages in the GNU ChangeLog format; you can look
at the commit log for examples, or see the manual.

  <https://www.gnu.org/prep/standards/html_node/Change-Logs.html>

If you use emacs, you can use the Yasnippet snippets found in the
etc/snippets/text-mode directory when writing commit messages.

>  gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index d53f8fb525..5ed2ff470e 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -5207,6 +5207,33 @@ streams in big-endian and little-endian formats.")
>       "This package provides a crate for manipulating memory, bit by bit.")
>      (license license:expat)))
>  
> +(define-public rust-blake2-0.9
> +  (package
> +    (name "rust-blake2")
> +    (version "0.9.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "blake2" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1x3qz692hfrxgw6cd94iiid6iqal2dwj6zv5137swpgg4l17598h"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-crypto-mac" ,rust-crypto-mac-0.8)
> +         ("rust-digest" ,rust-digest-0.9)
> +         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
> +    (home-page
> +      "https://github.com/RustCrypto/hashes")
> +    (synopsis "BLAKE2 hash functions")
> +    (description "BLAKE2 hash functions")

The description should consist of one ore more full sentences, see
“16.4.4 Synopses and Descriptions” in the manual.

Make sure to run ‘guix lint’ to avoid common mistakes like these.

Also, I noticed that a ‘rust-blake2-0.8’ package already exists, maybe
it would be possible to update that to 0.9, or make it inherit from
‘rust-blake2-0.9’ to avoid some code duplication.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 03/20] gnu: Add rust-derive-error
  2021-07-11 21:28 ` [bug#49451] [PATCH 03/20] gnu: Add rust-derive-error southerntofu via Guix-patches via
@ 2021-08-01 10:10   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:10 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 29 +++++++++++++++++++++++++++++
>  1 file changed, 29 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index c5605fa82c..2ac7bc0c2e 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -12676,6 +12676,35 @@ for arbitrary structs.")
>  pattern for arbitrary structs.")
>      (license (list license:expat license:asl2.0))))
>  
> +(define-public rust-derive-error-0.0.4
> +  (package
> +    (name "rust-derive-error")
> +    (version "0.0.4")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "derive-error" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1j624ma4jw911yg3qqlvfybgk7614k2blhg6wgnb38wyn90882gc"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-case" ,rust-case-0.1)
> +         ("rust-quote" ,rust-quote-0.3)
> +         ("rust-syn" ,rust-syn-0.11))))
> +    (home-page
> +      "https://github.com/rushmorem/derive-error")
> +    (synopsis
> +      "Derive macro for Error using macros 1.1")
> +    (description
> +      "Derive macro for Error using macros 1.1")

Full sentence(s) in the description.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 04/20] gnu: Add rust-downcast
  2021-07-11 21:28 ` [bug#49451] [PATCH 04/20] gnu: Add rust-downcast southerntofu via Guix-patches via
@ 2021-08-01 10:10   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:10 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 2ac7bc0c2e..d3641af193 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -13721,6 +13721,29 @@ from macros.")
>          ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
>          ("rust-strsim" ,rust-strsim-0.5))))))
>  
> +(define-public rust-downcast-0.10
> +  (package
> +    (name "rust-downcast")
> +    (version "0.10.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "downcast" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "07bh0l95gwrzak6rj29v8kkm577d8vivxsxhqgscf64b4bq59d2b"))))
> +    (build-system cargo-build-system)
> +    (arguments `(#:skip-build? #t))
> +    (home-page
> +      "https://github.com/fkoep/downcast-rs")
> +    (synopsis
> +      "Trait for downcasting trait objects back to their original types")
> +    (description
> +      "Trait for downcasting trait objects back to their original types")

Likewise (full sentence).

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 05/20] gnu: Add rust-flexi-logger
  2021-07-11 21:29 ` [bug#49451] [PATCH 05/20] gnu: Add rust-flexi-logger southerntofu via Guix-patches via
@ 2021-08-01 10:12   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:12 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 41 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 41 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index d3641af193..e322661709 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -15985,6 +15985,47 @@ Reader/Writer streams.  Contains bindings for zlib, deflate, and gzip-based
>  streams.")
>      (license (list license:expat license:asl2.0))))
>  
> +(define-public rust-flexi-logger-0.15
> +  (package
> +    (name "rust-flexi-logger")
> +    (version "0.15.12")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "flexi_logger" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1gs2flpzjd4kr9jw614vaqxxz7fd56gqkr78j47q0ja1vfp3raxa"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-atty" ,rust-atty-0.2)
> +         ("rust-chrono" ,rust-chrono-0.4)
> +         ("rust-flate2" ,rust-flate2-1)
> +         ("rust-glob" ,rust-glob-0.3)
> +         ("rust-hostname" ,rust-hostname-0.3)
> +         ("rust-lazy-static" ,rust-lazy-static-1)
> +         ("rust-libc" ,rust-libc-0.2)
> +         ("rust-log" ,rust-log-0.4)
> +         ("rust-notify" ,rust-notify-4)
> +         ("rust-regex" ,rust-regex-1)
> +         ("rust-serde" ,rust-serde-1)
> +         ("rust-serde-derive" ,rust-serde-derive-1)
> +         ("rust-thiserror" ,rust-thiserror-1)
> +         ("rust-toml" ,rust-toml-0.5)
> +         ("rust-yansi" ,rust-yansi-0.5))))
> +    (home-page
> +      "https://github.com/emabee/flexi_logger")
> +    (synopsis
> +      "Easy-to-configure and flexible logger")
> +    (description
> +      "Easy-to-configure and flexible logger that writes logs to stderr and/or to files")

Please keep lines at ~80 characters long; write full sentence(s).

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 06/20] gnu: rust-fragile: Update to 1.0
  2021-07-11 21:29 ` [bug#49451] [PATCH 06/20] gnu: rust-fragile: Update to 1.0 southerntofu via Guix-patches via
@ 2021-08-01 10:13   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:13 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index e322661709..258649f6a0 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -16452,6 +16452,29 @@ implementation that is more efficient for smaller hash keys.")
>  syntax, as used by HTML forms.")
>      (license (list license:expat license:asl2.0))))
>  
> +(define-public rust-fragile-1
> +  (package
> +    (name "rust-fragile")
> +    (version "1.0.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "fragile" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1wlihmkjyhvl5rckal32p010piy1l15s6l81h7z31jcd971kk839"))))
> +    (build-system cargo-build-system)
> +    (arguments `(#:skip-build? #t))
> +    (home-page
> +      "https://github.com/mitsuhiko/rust-fragile")
> +    (synopsis
> +      "Provides wrapper types for sending non-send values to other threads")
> +    (description
> +      "Provides wrapper types for sending non-send values to other threads")

Full sentence and missing period.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 07/20] gnu: rust-hmac: Update to 0.10
  2021-07-11 21:29 ` [bug#49451] [PATCH 07/20] gnu: rust-hmac: Update to 0.10 southerntofu via Guix-patches via
@ 2021-08-01 10:14   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:14 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 258649f6a0..2ac2230490 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -20141,6 +20141,33 @@ Derivation Function (HKDF).")
>         (("rust-digest" ,rust-digest-0.8)
>          ("rust-hmac" ,rust-hmac-0.7))))))
>  
> +(define-public rust-hmac-0.10
> +  (package
> +    (name "rust-hmac")
> +    (version "0.10.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "hmac" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "058yxq54x7xn0gk2vy9bl51r32c9z7qlcl2b80bjh3lk3rmiqi61"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-crypto-mac" ,rust-crypto-mac-0.10)
> +         ("rust-digest" ,rust-digest-0.9))))
> +    (home-page "https://github.com/RustCrypto/MACs")
> +    (synopsis
> +      "Generic implementation of Hash-based Message Authentication Code (HMAC)")
> +    (description
> +      "Generic implementation of Hash-based Message Authentication Code (HMAC)")

Full sentence and missing period.
> +
>  (define-public rust-hmac-0.8
>    (package
>      (name "rust-hmac")

There is already a ‘rust-hmac-0.8’ package, maybe make it inherit from
‘rust-hmac-0.10’.


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 08/20] gnu: Add rust-hsluv
  2021-07-11 21:29 ` [bug#49451] [PATCH 08/20] gnu: Add rust-hsluv southerntofu via Guix-patches via
@ 2021-08-01 10:15   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:15 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 2ac2230490..5daaffaa52 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -20327,6 +20327,29 @@ Hash-based Message Authentication Code algorithm} for SHA1.")
>         (("rust-libc" ,rust-libc-0.2)
>          ("rust-winutil" ,rust-winutil-0.1))))))
>  
> +(define-public rust-hsluv-0.1
> +  (package
> +    (name "rust-hsluv")
> +    (version "0.1.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "hsluv" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "0g5p4x9np7292fxinqj34vlys5v20hg5yqqr8vvqbw8xcl5l3rax"))))
> +    (build-system cargo-build-system)
> +    (arguments `(#:skip-build? #t))
> +    (home-page
> +      "https://github.com/bb010g/rust-hsluv")
> +    (synopsis
> +      "Human-friendly HSL, Rust implementation (revision 4)")
> +    (description
> +      "Human-friendly HSL, Rust implementation (revision 4)")

Full sentence and missing period.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 09/20] gnu: Add rust-minidom
  2021-07-11 21:29 ` [bug#49451] [PATCH 09/20] gnu: Add rust-minidom southerntofu via Guix-patches via
@ 2021-08-01 10:16   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:16 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 5daaffaa52..16e2b33e4b 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -26305,6 +26305,32 @@ file's MIME type by its extension.")
>          ("rust-phf-codegen" ,rust-phf-codegen-0.7)
>          ("rust-unicase" ,rust-unicase-1))))))
>  
> +(define-public rust-minidom-0.13
> +  (package
> +    (name "rust-minidom")
> +    (version "0.13.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "minidom" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "13k0ngkwgj0zgn0zkkklnj274q351mpyzjaglr0dviwz2k19499k"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-quick-xml" ,rust-quick-xml-0.20))))
> +    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
> +    (synopsis
> +      "Small, simple DOM implementation on top of quick-xml")
> +    (description
> +      "This package provides a small, simple DOM implementation on top of quick-xml")

Keep lines around ~80 characters; missing period.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 10/20] gnu: Add rust-linked-hash-set
  2021-07-11 21:29 ` [bug#49451] [PATCH 10/20] gnu: Add rust-linked-hash-set southerntofu via Guix-patches via
@ 2021-08-01 10:16   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:16 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 16e2b33e4b..b60d07c15b 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -24329,6 +24329,33 @@ pairs in insertion order.")
>          ("rust-serde" ,rust-serde-0.8)
>          ("rust-serde-test" ,rust-serde-test-0.8))))))
>  
> +(define-public rust-linked-hash-set-0.1
> +  (package
> +    (name "rust-linked-hash-set")
> +    (version "0.1.4")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "linked_hash_set" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "124m7wiz9ah7ah58ckai413mzfglh3y1nz64qy1s676qlinnq627"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-linked-hash-map"
> +          ,rust-linked-hash-map-0.5)
> +         ("rust-serde" ,rust-serde-1))))
> +    (home-page
> +      "https://github.com/alexheretic/linked-hash-set")
> +    (synopsis "HashSet with insertion ordering")
> +    (description "HashSet with insertion ordering")

Full sentence.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 11/20] gnu: rust-pbkdf2: Update to 0.6
  2021-07-11 21:30 ` [bug#49451] [PATCH 11/20] gnu: rust-pbkdf2: Update to 0.6 southerntofu via Guix-patches via
@ 2021-08-01 10:17   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:17 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 32 ++++++++++++++++++++++++++++++++
>  1 file changed, 32 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index b60d07c15b..b65ea9568f 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -31163,6 +31163,38 @@ path.Clean.")
>  directory path to the provided path.")
>      (license (list license:asl2.0 license:expat))))
>  
> +(define-public rust-pbkdf2-0.6
> +  (package
> +    (name "rust-pbkdf2")
> +    (version "0.6.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "pbkdf2" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "0jjaapyawm5iqn97mmfj40dvipsy78cm80qcva28009l2zbw1f5k"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-base64" ,rust-base64-0.13)
> +         ("rust-crypto-mac" ,rust-crypto-mac-0.10)
> +         ("rust-hmac" ,rust-hmac-0.10)
> +         ("rust-rand" ,rust-rand-0.7)
> +         ("rust-rand-core" ,rust-rand-core-0.5)
> +         ("rust-rayon" ,rust-rayon-1)
> +         ("rust-sha2" ,rust-sha2-0.9)
> +         ("rust-subtle" ,rust-subtle-2))))
> +    (home-page
> +      "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2")
> +    (synopsis "Generic implementation of PBKDF2")
> +    (description "Generic implementation of PBKDF2")

Full sentence.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 12/20] gnu: Add rust-sha3
  2021-07-11 21:30 ` [bug#49451] [PATCH 12/20] gnu: Add rust-sha3 southerntofu via Guix-patches via
@ 2021-08-01 10:18   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:18 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index b65ea9568f..5389f69934 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -42052,6 +42052,34 @@ functions core functionality.")
>         (("rust-gcc" ,rust-gcc-0.3)
>          ("rust-generic-array" ,rust-generic-array-0.8))))))
>  
> +(define-public rust-sha3-0.9
> +  (package
> +    (name "rust-sha3")
> +    (version "0.9.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "sha3" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "02d85wpvz75a0n7r2da15ikqjwzamhii11qy9gqf6pafgm0rj4gq"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-block-buffer" ,rust-block-buffer-0.9)
> +         ("rust-digest" ,rust-digest-0.9)
> +         ("rust-keccak" ,rust-keccak-0.1)
> +         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
> +    (home-page
> +      "https://github.com/RustCrypto/hashes")
> +    (synopsis "SHA-3 (Keccak) hash function")
> +    (description "SHA-3 (Keccak) hash function")

Full sentence.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 13/20] gnu: Add rust-mockall-derive
  2021-07-11 21:30 ` [bug#49451] [PATCH 13/20] gnu: Add rust-mockall-derive southerntofu via Guix-patches via
@ 2021-08-01 10:19   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:19 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 30 ++++++++++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 5389f69934..2a9e477aaf 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -26740,6 +26740,36 @@ IOCP and Async I/O abstractions.")
>         #:cargo-development-inputs
>         (("rust-rand" ,rust-rand-0.3))))))
>  
> +
> +(define-public rust-mockall-derive-0.9
> +  (package
> +    (name "rust-mockall-derive")
> +    (version "0.9.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "mockall_derive" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1snywdscj3chgs0xqr5700dsw2hy0qwd0s3kdk4nz85w6m327m2x"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-cfg-if" ,rust-cfg-if-1)
> +         ("rust-proc-macro2" ,rust-proc-macro2-1)
> +         ("rust-quote" ,rust-quote-1)
> +         ("rust-syn" ,rust-syn-1))))
> +    (home-page "https://github.com/asomers/mockall")
> +    (synopsis "Procedural macros for Mockall
> +")

No need for a newline.

> +    (description "Procedural macros for Mockall
> +")

Same as above, and use full sentence(s).

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 14/20] gnu: Add rust-mockall
  2021-07-11 21:30 ` [bug#49451] [PATCH 14/20] gnu: Add rust-mockall southerntofu via Guix-patches via
@ 2021-08-01 10:20   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:20 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 33 +++++++++++++++++++++++++++++++++
>  1 file changed, 33 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 2a9e477aaf..0e57d3c145 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -26740,6 +26740,39 @@ IOCP and Async I/O abstractions.")
>         #:cargo-development-inputs
>         (("rust-rand" ,rust-rand-0.3))))))
>  
> +(define-public rust-mockall-0.9
> +  (package
> +    (name "rust-mockall")
> +    (version "0.9.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "mockall" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1m9kpv4523503v48ahyzk9g2rabvbjl70mlbkc8mkfzr4fni9mhq"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-cfg-if" ,rust-cfg-if-1)
> +         ("rust-downcast" ,rust-downcast-0.10)
> +         ("rust-fragile" ,rust-fragile-1)
> +         ("rust-lazy-static" ,rust-lazy-static-1)
> +         ("rust-mockall-derive" ,rust-mockall-derive-0.9)
> +         ("rust-predicates" ,rust-predicates-1)
> +         ("rust-predicates-tree" ,rust-predicates-tree-1))))
> +    (home-page "https://github.com/asomers/mockall")
> +    (synopsis
> +      "Powerful mock object library for Rust
> +")

No need for a newline.

> +    (description
> +      "This package provides a powerful mock object library for Rust
> +")

Same as above, and missing period.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 15/20] gnu: Add rust-sasl
  2021-07-11 21:30 ` [bug#49451] [PATCH 15/20] gnu: Add rust-sasl southerntofu via Guix-patches via
@ 2021-08-01 10:22   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:22 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 0e57d3c145..44ae54f84c 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -39583,6 +39583,37 @@ motivation for writing this library.
>  @end itemize")
>      (license (list license:asl2.0 license:expat))))
>  
> +(define-public rust-sasl-0.5
> +  (package
> +    (name "rust-sasl")
> +    (version "0.5.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "sasl" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1j9d6q580r18i90ksr0frjks3mzll73966p2rp0vn9w90b77sbap"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-base64" ,rust-base64-0.13)
> +         ("rust-getrandom" ,rust-getrandom-0.2)
> +         ("rust-hmac" ,rust-hmac-0.10)
> +         ("rust-pbkdf2" ,rust-pbkdf2-0.6)
> +         ("rust-sha-1" ,rust-sha-1-0.9)
> +         ("rust-sha2" ,rust-sha2-0.9))))
> +    (home-page "https://gitlab.com/lumi/sasl-rs")
> +    (synopsis
> +      "Crate for SASL authentication. Currently only does the client side")

The synopsis should not contain multiple sentences, see “16.4.4 Synopses
and Descriptions” in the manual.

> +    (description
> +      "This package provides a crate for SASL authentication.  Currently only does the client side")

Keep lines at ~80 characters; missing period.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 16/20] gnu: Add rust-jid
  2021-07-11 21:30 ` [bug#49451] [PATCH 16/20] gnu: Add rust-jid southerntofu via Guix-patches via
@ 2021-08-01 10:23   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:23 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 29 ++++++++++++++++++++++++++++-
>  1 file changed, 28 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 44ae54f84c..f2e32d6172 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -22727,6 +22727,33 @@ primitives to an @code{io::Write}.")
>  byte slices for sets of ASCII characters or bytes.")
>      (license license:expat)))
>  
> +(define-public rust-jid-0.9
> +  (package
> +    (name "rust-jid")
> +    (version "0.9.2")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "jid" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1s3dl38wwhnx0pbzm4cnwqmmr09nfg4nv6w4yl3cmbkc2n7xipma"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-minidom" ,rust-minidom-0.13)
> +         ("rust-serde" ,rust-serde-1))))
> +    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
> +    (synopsis
> +      "Crate which provides a Jid struct for Jabber IDs")
> +    (description
> +      "This package provides a crate which provides a Jid struct for Jabber IDs.")
> +    (license license:mpl2.0)))
> +
>  (define-public rust-jni-0.18
>    (package
>      (name "rust-jni")
> @@ -39611,7 +39638,7 @@ motivation for writing this library.
>      (synopsis
>        "Crate for SASL authentication. Currently only does the client side")
>      (description
> -      "This package provides a crate for SASL authentication.  Currently only does the client side")
> +      "Crate for SASL authentication.  Currently only does the client side")
>      (license license:lgpl3+)))

This hunk should probably be dropped.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 17/20] gnu: Add rust-xmpp-parsers
  2021-07-11 21:30 ` [bug#49451] [PATCH 17/20] gnu: Add rust-xmpp-parsers southerntofu via Guix-patches via
@ 2021-08-01 10:24   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:24 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 34 ++++++++++++++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index f2e32d6172..9bd91b0b7d 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -55033,6 +55033,40 @@ to XDG Base Directory specification.")
>  parser.")
>      (license (list license:expat license:asl2.0))))
>  
> +(define-public rust-xmpp-parsers-0.18
> +  (package
> +    (name "rust-xmpp-parsers")
> +    (version "0.18.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "xmpp-parsers" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "064bjmngy0abcp9wcms7h5b13rljr0isliy83csaa0j7xyjmpkq1"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-base64" ,rust-base64-0.13)
> +         ("rust-blake2" ,rust-blake2-0.9)
> +         ("rust-chrono" ,rust-chrono-0.4)
> +         ("rust-digest" ,rust-digest-0.9)
> +         ("rust-jid" ,rust-jid-0.9)
> +         ("rust-minidom" ,rust-minidom-0.13)
> +         ("rust-sha-1" ,rust-sha-1-0.9)
> +         ("rust-sha2" ,rust-sha2-0.9)
> +         ("rust-sha3" ,rust-sha3-0.9))))
> +    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
> +    (synopsis
> +      "Collection of parsers and serialisers for XMPP extensions")
> +    (description
> +      "Collection of parsers and serialisers for XMPP extensions")

Full sentence and missing period.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 18/20] gnu: Add rust-tokio-xmpp
  2021-07-11 21:30 ` [bug#49451] [PATCH 18/20] gnu: Add rust-tokio-xmpp southerntofu via Guix-patches via
@ 2021-08-01 10:24   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:24 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 43 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 43 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 9bd91b0b7d..f85b096547 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -49637,6 +49637,49 @@ stream-based WebSocket implementation.")
>          ("rust-tokio" ,rust-tokio-0.2)
>          ("rust-tokio-test" ,rust-tokio-test-0.2))))))
>  
> +(define-public rust-tokio-xmpp-3
> +  (package
> +    (name "rust-tokio-xmpp")
> +    (version "3.0.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "tokio-xmpp" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "0f8s4gsv9zs6rlkc40jjglcm0prq10ypxszrwvpxhjbygbxrzb2n"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-bytes" ,rust-bytes-1)
> +         ("rust-futures" ,rust-futures-0.3)
> +         ("rust-idna" ,rust-idna-0.2)
> +         ("rust-log" ,rust-log-0.4)
> +         ("rust-native-tls" ,rust-native-tls-0.2)
> +         ("rust-rustc-version" ,rust-rustc-version-0.3)
> +         ("rust-sasl" ,rust-sasl-0.5)
> +         ("rust-tokio" ,rust-tokio-1)
> +         ("rust-tokio-native-tls"
> +          ,rust-tokio-native-tls-0.3)
> +         ("rust-tokio-stream" ,rust-tokio-stream-0.1)
> +         ("rust-tokio-util" ,rust-tokio-util-0.6)
> +         ("rust-trust-dns-proto"
> +          ,rust-trust-dns-proto-0.20)
> +         ("rust-trust-dns-resolver"
> +          ,rust-trust-dns-resolver-0.20)
> +         ("rust-xml5ever" ,rust-xml5ever-0.16)
> +         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))))
> +    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
> +    (synopsis
> +      "Asynchronous XMPP for Rust with tokio")
> +    (description
> +      "Asynchronous XMPP for Rust with tokio")

Full sentence and missing period.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 20/20] Run indent-code.el on the packages i added
  2021-07-11 21:30 ` [bug#49451] [PATCH 20/20] Run indent-code.el on the packages i added southerntofu via Guix-patches via
@ 2021-08-01 10:28   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:28 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 574 ++++++++++++++++++-------------------
>  gnu/packages/messaging.scm |  82 +++---
>  2 files changed, 328 insertions(+), 328 deletions(-)

etc/indent-code.el should be run on each individual package before you
create one or more patches.  For example

  Write definition of package A
  Run etc/indent-code.el on package A
  Create the patch

or if there are multiple packages

  Write definition of package A
  Write definition of package B
  Run etc/indent-code.el on package A and B
  Create patches for package A and B

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] [PATCH 19/20] gnu: Add aparte
  2021-07-11 21:31 ` [bug#49451] [PATCH 19/20] gnu: Add aparte southerntofu via Guix-patches via
@ 2021-08-01 10:29   ` Xinglu Chen
  0 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:29 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/messaging.scm | 59 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 59 insertions(+)
>
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index 22e1c370aa..6bfee2e15e 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -60,6 +60,7 @@
>    #:use-module (gnu packages check)
>    #:use-module (gnu packages compression)
>    #:use-module (gnu packages cpp)
> +  #:use-module (gnu packages crates-io)
>    #:use-module (gnu packages crypto)
>    #:use-module (gnu packages curl)
>    #:use-module (gnu packages cyrus-sasl)
> @@ -123,6 +124,7 @@
>    #:use-module (gnu packages xiph)
>    #:use-module (gnu packages xml)
>    #:use-module (gnu packages xorg)
> +  #:use-module (guix build-system cargo)
>    #:use-module (guix build-system cmake)
>    #:use-module (guix build-system go)
>    #:use-module (guix build-system glib-or-gtk)
> @@ -3016,4 +3018,61 @@ API.  Mattermost is not required.")
>      (home-page "https://github.com/42wim/matterbridge")
>      (license license:asl2.0)))
>  
> +(define-public aparte
> +  (package
> +    (name "aparte")
> +    (version "0.2.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "aparte" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "0qzg1052whjhcsz8n3s77kb4zvp7k0na3hikzkf5qa3z4g0hyvrp"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:cargo-inputs
> +        (("rust-backtrace" ,rust-backtrace-0.3)
> +         ("rust-bytes" ,rust-bytes-0.5)
> +         ("rust-chrono" ,rust-chrono-0.4)
> +         ("rust-derive-error" ,rust-derive-error-0.0.4)
> +         ("rust-dirs" ,rust-dirs-2)
> +         ("rust-flexi-logger" ,rust-flexi-logger-0.15)
> +         ("rust-futures" ,rust-futures-0.3)
> +         ("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
> +         ("rust-hsluv" ,rust-hsluv-0.1)
> +         ("rust-linked-hash-map"
> +          ,rust-linked-hash-map-0.5)
> +         ("rust-linked-hash-set"
> +          ,rust-linked-hash-set-0.1)
> +         ("rust-log" ,rust-log-0.4)
> +         ("rust-rand" ,rust-rand-0.8)
> +         ("rust-rpassword" ,rust-rpassword-3)
> +         ("rust-rust-crypto" ,rust-rust-crypto-0.2)
> +         ("rust-serde" ,rust-serde-1)
> +         ("rust-termion" ,rust-termion-1)
> +         ("rust-textwrap" ,rust-textwrap-0.12)
> +         ("rust-tokio" ,rust-tokio-1)
> +         ("rust-tokio-xmpp" ,rust-tokio-xmpp-3)
> +         ("rust-toml" ,rust-toml-0.5)
> +         ("rust-unicode-segmentation"
> +          ,rust-unicode-segmentation-1)
> +         ("rust-uuid" ,rust-uuid-0.7)
> +         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))
> +        #:cargo-development-inputs
> +        (("rust-mockall" ,rust-mockall-0.9))))
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)))
> +    (inputs
> +     `(("openssl" ,openssl)))
> +    (home-page
> +      "https://github.com/paulfariello/aparte")
> +    (synopsis
> +      "Simple XMPP console client written in Rust and inspired by Profanity")
> +    (description
> +      "Simple XMPP console client written in Rust and inspired by Profanity")

Full sentence, and missing period.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] Adding package aparte (rust XMPP TUI client)
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (19 preceding siblings ...)
  2021-07-11 21:31 ` [bug#49451] [PATCH 19/20] gnu: Add aparte southerntofu via Guix-patches via
@ 2021-08-01 10:42 ` Xinglu Chen
  2021-08-31 15:31 ` [bug#49451] aparte on GuixRUS jgart via Guix-patches via
  21 siblings, 0 replies; 42+ messages in thread
From: Xinglu Chen @ 2021-08-01 10:42 UTC (permalink / raw)
  To: southerntofu, 49451

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

On Tue, Jul 06 2021, southerntofu--- via Guix-patches via wrote:

> Hello,
>
> In this threads I will submit patches to include package aparte, from
> 0.2.0 release on Github. There's a few missing crates that will be
> added to gnu/packages/crates-io.scm, and the aparte package is added
> to gnu/packages/messaging.scm as suggested in the #guix IRC channel.
>
> This is my first package for guix so don't hesitate to tell me if i'm
> doing something wrong. Also, i noticed some packages in crates-io.scm
> are not ordered alphabetically. I tried not to mess the order even
> more but did not reorder packages which were already misordered.

I just reviewed the series; I don’t know much about Rust in Guix, so
maybe I have missed some Rust-specific things.  A tip is to run ‘guix
lint’ on each package; this will catch some of the common mistakes
people make. :)

I haven’t been able to build the ‘aparte’ package because I am having
trouble applying patch [07/20].  Could you check if you can apply the
patches on top of the ‘master’ branch?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 42+ messages in thread

* [bug#49451] aparte on GuixRUS
  2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
                   ` (20 preceding siblings ...)
  2021-08-01 10:42 ` [bug#49451] Adding package aparte (rust XMPP TUI client) Xinglu Chen
@ 2021-08-31 15:31 ` jgart via Guix-patches via
  21 siblings, 0 replies; 42+ messages in thread
From: jgart via Guix-patches via @ 2021-08-31 15:31 UTC (permalink / raw)
  To: 49451

Hi,

I just wanted to mention that aparte is available as a pre-release package on GuixRUS channel until 49451 gets resolved:

https://git.sr.ht/~whereiseveryone/guixrus/commit/33971b21d69e3eb903c05cbfe42412e7f0a1f899

aparte currently builds and runs successfully on GuixRUS.

We'll continue to fix Xinglu's suggestions on GuixRUS until they are all ready and then we'll send a patch here with the fixes for further review.

all best,

 _________________________________________ 
/ 3B1D 7F19 E36B B60C 0F5B 2CA9 A52A A2B4 \
\ 77B6 DD35                               /
 ----------------------------------------- 
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||




^ permalink raw reply	[flat|nested] 42+ messages in thread

end of thread, other threads:[~2021-08-31 15:32 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
2021-07-11 21:26 ` [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9 southerntofu via Guix-patches via
2021-08-01 10:08   ` Xinglu Chen
2021-07-11 21:28 ` [bug#49451] [PATCH 02/20] gnu: Add rust-case southerntofu via Guix-patches via
2021-07-11 21:28 ` [bug#49451] [PATCH 03/20] gnu: Add rust-derive-error southerntofu via Guix-patches via
2021-08-01 10:10   ` Xinglu Chen
2021-07-11 21:28 ` [bug#49451] [PATCH 04/20] gnu: Add rust-downcast southerntofu via Guix-patches via
2021-08-01 10:10   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 05/20] gnu: Add rust-flexi-logger southerntofu via Guix-patches via
2021-08-01 10:12   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 06/20] gnu: rust-fragile: Update to 1.0 southerntofu via Guix-patches via
2021-08-01 10:13   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 07/20] gnu: rust-hmac: Update to 0.10 southerntofu via Guix-patches via
2021-08-01 10:14   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 08/20] gnu: Add rust-hsluv southerntofu via Guix-patches via
2021-08-01 10:15   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 09/20] gnu: Add rust-minidom southerntofu via Guix-patches via
2021-08-01 10:16   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 10/20] gnu: Add rust-linked-hash-set southerntofu via Guix-patches via
2021-08-01 10:16   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 11/20] gnu: rust-pbkdf2: Update to 0.6 southerntofu via Guix-patches via
2021-08-01 10:17   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 12/20] gnu: Add rust-sha3 southerntofu via Guix-patches via
2021-08-01 10:18   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 13/20] gnu: Add rust-mockall-derive southerntofu via Guix-patches via
2021-08-01 10:19   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 14/20] gnu: Add rust-mockall southerntofu via Guix-patches via
2021-08-01 10:20   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 15/20] gnu: Add rust-sasl southerntofu via Guix-patches via
2021-08-01 10:22   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 16/20] gnu: Add rust-jid southerntofu via Guix-patches via
2021-08-01 10:23   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 17/20] gnu: Add rust-xmpp-parsers southerntofu via Guix-patches via
2021-08-01 10:24   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 18/20] gnu: Add rust-tokio-xmpp southerntofu via Guix-patches via
2021-08-01 10:24   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 20/20] Run indent-code.el on the packages i added southerntofu via Guix-patches via
2021-08-01 10:28   ` Xinglu Chen
2021-07-11 21:31 ` [bug#49451] [PATCH 19/20] gnu: Add aparte southerntofu via Guix-patches via
2021-08-01 10:29   ` Xinglu Chen
2021-08-01 10:42 ` [bug#49451] Adding package aparte (rust XMPP TUI client) Xinglu Chen
2021-08-31 15:31 ` [bug#49451] aparte on GuixRUS jgart via Guix-patches via

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).