GNU bug report logs - #64248
Series to update to rust-rspotify-0.11

Previous Next

Package: guix-patches;

Reported by: Steve George <steve <at> futurile.net>

Date: Fri, 23 Jun 2023 10:53:01 UTC

Severity: normal

Done: Efraim Flashner <efraim <at> flashner.co.il>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 64248 in the body.
You can then email your comments to 64248 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#64248; Package guix-patches. (Fri, 23 Jun 2023 10:53:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Steve George <steve <at> futurile.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 23 Jun 2023 10:53:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Steve George <steve <at> futurile.net>
To: guix-patches <at> gnu.org
Subject: Series to update to rust-rspotify-0.11
Date: Fri, 23 Jun 2023 11:52:08 +0100
Consisting of:

- rust-strum-0.24 + rust-strum-macros-0.24
- rust-enum-derive
- rust-enum-dispatch
- rust-rspotify-model
- rust-rspotify-macros
- rust-maybe-async
- rust-rspotify-http
- rust-rspotify-0.11

Patches to follow.




Information forwarded to efraim <at> flashner.co.il, guix-patches <at> gnu.org:
bug#64248; Package guix-patches. (Fri, 23 Jun 2023 16:58:01 GMT) Full text and rfc822 format available.

Message #8 received at 64248 <at> debbugs.gnu.org (full text, mbox):

From: Steve George <steve <at> futurile.net>
To: 64248 <at> debbugs.gnu.org
Cc: Steve George <steve <at> futurile.net>
Subject: [PATCH 1/8] gnu: rust-strum: Update to 0.24.1.
Date: Fri, 23 Jun 2023 17:56:44 +0100
* gnu/packages/crates-io.scm (rust-strum): Update to 0.24.1
---
 gnu/packages/crates-io.scm | 47 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 3c2c11c5cd..dea4b4d353 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -62574,6 +62574,28 @@ (define-public rust-structopt-derive-0.2
      "Parse command line argument by defining a struct, derive crate.")
     (license (list license:asl2.0 license:expat))))
 
+(define-public rust-strum-0.24
+  (package
+    (name "rust-strum")
+    (version "0.24.1")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "strum" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0gz6cjhlps5idwasznklxdh2zsas6mxf99vr0n27j876q12n0gh6"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #f
+       #:tests? #f
+       #:cargo-inputs (("rust-phf" ,rust-phf-0.10)
+                       ("rust-strum-macros" ,rust-strum-macros-0.24))))
+    (home-page "https://github.com/Peternator7/strum")
+    (synopsis "Helpful macros for working with enums and strings")
+    (description "Helpful macros for working with enums and strings")
+    (license license:expat)))
+
 (define-public rust-strum-0.21
   (package
     (name "rust-strum")
@@ -62648,6 +62670,31 @@ (define-public rust-strum-0.18
      `(#:cargo-inputs
        (("rust-strum-macros" ,rust-strum-macros-0.18))))))
 
+(define-public rust-strum-macros-0.24
+  (package
+    (name "rust-strum-macros")
+    (version "0.24.3")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "strum_macros" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0naxz2y38kwq5wgirmia64vvf6qhwy8j367rw966n62gsbh5nf0y"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #f
+       #:cargo-inputs (("rust-heck" ,rust-heck-0.4)
+                       ("rust-proc-macro2" ,rust-proc-macro2-1)
+                       ("rust-quote" ,rust-quote-1)
+                       ("rust-rustversion" ,rust-rustversion-1)
+                       ("rust-syn" ,rust-syn-1)
+                       ("rust-strum" ,rust-strum-0.24))))
+    (home-page "https://github.com/Peternator7/strum")
+    (synopsis "Helpful macros for working with enums and strings")
+    (description "Helpful macros for working with enums and strings")
+    (license license:expat)))
+
 (define-public rust-strum-macros-0.21
   (package
     (name "rust-strum-macros")

base-commit: 323169d4256a1c3932d1d5e411c157ba062a22c9
-- 
2.40.1





Information forwarded to efraim <at> flashner.co.il, guix-patches <at> gnu.org:
bug#64248; Package guix-patches. (Fri, 23 Jun 2023 16:58:02 GMT) Full text and rfc822 format available.

Message #11 received at 64248 <at> debbugs.gnu.org (full text, mbox):

From: Steve George <steve <at> futurile.net>
To: 64248 <at> debbugs.gnu.org
Cc: Steve George <steve <at> futurile.net>
Subject: [PATCH 8/8] gnu: rust-rspotify: Update to 0.11.7.
Date: Fri, 23 Jun 2023 17:56:51 +0100
* gnu/packages/crates-io.scm (rust-rspotify): Update to 0.11.7
---
 gnu/packages/crates-io.scm | 114 ++++++++++++++++++++++++-------------
 1 file changed, 75 insertions(+), 39 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 7ce924a70b..3a264005e6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -52918,6 +52918,81 @@ (define-public rust-rspec-1
 rust.")
     (license license:mpl2.0)))
 
+(define-public rust-rspotify-0.11
+  (package
+    (name "rust-rspotify")
+    (version "0.11.7")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "rspotify" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0jxpdiic1550h13j8gaqk1g3xlv3b7p7dzyjrf6xx6j8hzh74kjw"))))
+    (build-system cargo-build-system)
+    (arguments
+     (list #:tests? #f
+           #:cargo-inputs `(("rust-async-stream" ,rust-async-stream-0.3)
+                            ("rust-async-trait" ,rust-async-trait-0.1)
+                            ("rust-base64" ,rust-base64-0.20)
+                            ("rust-chrono" ,rust-chrono-0.4)
+                            ("rust-dotenv" ,rust-dotenv-0.15)
+                            ("rust-futures" ,rust-futures-0.3)
+                            ("rust-getrandom" ,rust-getrandom-0.2)
+                            ("rust-log" ,rust-log-0.4)
+                            ("rust-maybe-async" ,rust-maybe-async-0.2)
+                            ("rust-rspotify-http" ,rust-rspotify-http-0.11)
+                            ("rust-rspotify-macros" ,rust-rspotify-macros-0.11)
+                            ("rust-rspotify-model" ,rust-rspotify-model-0.11)
+                            ("rust-serde" ,rust-serde-1)
+                            ("rust-serde-json" ,rust-serde-json-1)
+                            ("rust-sha2" ,rust-sha2-0.10)
+                            ("rust-thiserror" ,rust-thiserror-1)
+                            ("rust-url" ,rust-url-2)
+                            ("rust-webbrowser" ,rust-webbrowser-0.8))
+           #:cargo-development-inputs `(("rust-env-logger" ,rust-env-logger-0.10)
+                                        ("rust-futures-util" ,rust-futures-util-0.3)
+                                        ("rust-tokio" ,rust-tokio-1))))
+    (native-inputs (list pkg-config openssl))
+    (home-page "https://github.com/ramsayleung/rspotify")
+    (synopsis "Spotify API wrapper")
+    (description "This package provides a wrapper API for the Spotify
+streaming service.")
+    (license license:expat)))
+
+(define-public rust-rspotify-0.10
+  (package
+    (inherit rust-rspotify-0.11)
+    (name "rust-rspotify")
+    (version "0.10.0")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "rspotify" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "196wd157l3fn6hlyixgffhl2x516g4fpa3s91arhcikiifsppzgf"))))
+    (arguments
+     (list #:skip-build? #t
+           #:cargo-inputs `(("rust-base64" ,rust-base64-0.10)
+                            ("rust-chrono" ,rust-chrono-0.4)
+                            ("rust-derive-builder" ,rust-derive-builder-0.7)
+                            ("rust-dotenv" ,rust-dotenv-0.13)
+                            ("rust-env-logger" ,rust-env-logger-0.6)
+                            ("rust-failure" ,rust-failure-0.1)
+                            ("rust-itertools" ,rust-itertools-0.8)
+                            ("rust-lazy-static" ,rust-lazy-static-1)
+                            ("rust-log" ,rust-log-0.4)
+                            ("rust-percent-encoding" ,rust-percent-encoding-1)
+                            ("rust-rand" ,rust-rand-0.6)
+                            ("rust-random" ,rust-random-0.12)
+                            ("rust-reqwest" ,rust-reqwest-0.10)
+                            ("rust-serde" ,rust-serde-1)
+                            ("rust-serde-derive" ,rust-serde-derive-1)
+                            ("rust-serde-json" ,rust-serde-json-1)
+                            ("rust-url" ,rust-url-1)
+                            ("rust-webbrowser" ,rust-webbrowser-0.5))))))
+
 (define-public rust-rspotify-http-0.11
   (package
     (name "rust-rspotify-http")
@@ -61280,45 +61355,6 @@ (define-public rust-sprs-0.10
         ("rust-bincode" ,rust-bincode-1)
         ("rust-tobj" ,rust-tobj-2))))))
 
-(define-public rust-rspotify-0.10
-  (package
-    (name "rust-rspotify")
-    (version "0.10.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "rspotify" version))
-        (file-name (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32 "196wd157l3fn6hlyixgffhl2x516g4fpa3s91arhcikiifsppzgf"))))
-    (build-system cargo-build-system)
-    (arguments
-      `(#:skip-build? #t
-        #:cargo-inputs
-        (("rust-base64" ,rust-base64-0.10)
-         ("rust-chrono" ,rust-chrono-0.4)
-         ("rust-derive-builder" ,rust-derive-builder-0.7)
-         ("rust-dotenv" ,rust-dotenv-0.13)
-         ("rust-env-logger" ,rust-env-logger-0.6)
-         ("rust-failure" ,rust-failure-0.1)
-         ("rust-itertools" ,rust-itertools-0.8)
-         ("rust-lazy-static" ,rust-lazy-static-1)
-         ("rust-log" ,rust-log-0.4)
-         ("rust-percent-encoding" ,rust-percent-encoding-1)
-         ("rust-rand" ,rust-rand-0.6)
-         ("rust-random" ,rust-random-0.12)
-         ("rust-reqwest" ,rust-reqwest-0.10)
-         ("rust-serde" ,rust-serde-1)
-         ("rust-serde-derive" ,rust-serde-derive-1)
-         ("rust-serde-json" ,rust-serde-json-1)
-         ("rust-url" ,rust-url-1)
-         ("rust-webbrowser" ,rust-webbrowser-0.5))))
-    (home-page "https://github.com/ramsayleung/rspotify")
-    (synopsis "Spotify API wrapper")
-    (description "This package provides wrapper API forSpotify streaming
-service.")
-    (license license:expat)))
-
 (define-public rust-spsc-buffer-0.1
   (package
     (name "rust-spsc-buffer")
-- 
2.40.1





Information forwarded to efraim <at> flashner.co.il, guix-patches <at> gnu.org:
bug#64248; Package guix-patches. (Fri, 23 Jun 2023 16:58:02 GMT) Full text and rfc822 format available.

Message #14 received at 64248 <at> debbugs.gnu.org (full text, mbox):

From: Steve George <steve <at> futurile.net>
To: 64248 <at> debbugs.gnu.org
Cc: Steve George <steve <at> futurile.net>
Subject: [PATCH 4/8] gnu: Add rust-rspotify-model.
Date: Fri, 23 Jun 2023 17:56:47 +0100
* gnu/packages/crates-io.scm (rust-rspotify-model): New variable.
---
 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 b6ed862306..16b7afea78 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -52890,6 +52890,32 @@ (define-public rust-rspec-1
 rust.")
     (license license:mpl2.0)))
 
+(define-public rust-rspotify-model-0.11
+  (package
+    (name "rust-rspotify-model")
+    (version "0.11.7")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "rspotify-model" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1j0fy5n3f0gwq2qnn4qss0sx5kvbghfr8149jb0bp8azzvlg3gbg"))))
+    (build-system cargo-build-system)
+    (arguments
+     (list #:skip-build? #f
+           #:cargo-inputs `(("rust-chrono" ,rust-chrono-0.4)
+                            ("rust-enum-dispatch" ,rust-enum-dispatch-0.3)
+                            ("rust-serde" ,rust-serde-1)
+                            ("rust-serde-json" ,rust-serde-json-1)
+                            ("rust-strum" ,rust-strum-0.24)
+                            ("rust-thiserror" ,rust-thiserror-1))))
+    (home-page "https://github.com/ramsayleung/rspotify")
+    (synopsis "API endpoint response model object for RSpotify")
+    (description "RSpotify is a wrapper for the Spotify Web API.  This crate
+contains the API endpoint response objects.")
+    (license license:expat)))
+
 (define-public rust-rstar-0.9
   (package
     (name "rust-rstar")
-- 
2.40.1





Information forwarded to efraim <at> flashner.co.il, guix-patches <at> gnu.org:
bug#64248; Package guix-patches. (Fri, 23 Jun 2023 16:58:03 GMT) Full text and rfc822 format available.

Message #17 received at 64248 <at> debbugs.gnu.org (full text, mbox):

From: Steve George <steve <at> futurile.net>
To: 64248 <at> debbugs.gnu.org
Cc: Steve George <steve <at> futurile.net>
Subject: [PATCH 2/8] gnu: Add rust-enum-derive.
Date: Fri, 23 Jun 2023 17:56:45 +0100
* gnu/packages/crates-io.scm (rust-enum-derive): New variable.
---
 gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index dea4b4d353..44f51c8c11 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -21466,6 +21466,27 @@ (define-public rust-enum-as-inner-0.2
         ("rust-quote" ,rust-quote-0.6)
         ("rust-syn" ,rust-syn-0.15))))))
 
+(define-public rust-enum-derive-0.1
+  (package
+    (name "rust-enum-derive")
+    (version "0.1.7")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "enum-derive" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "05n8mdca3y2c8pvl1isncj52fa80wplvx28lxvwqmpzfr6lc4sj0"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-development-inputs (("rust-custom-derive" ,rust-custom-derive-0.1))))
+    (home-page "https://github.com/DanielKeep/rust-custom-derive")
+    (synopsis
+     "This crate provides macros for deriving additional functionality for enums.")
+    (description
+     "This crate provides macros for deriving additional functionality for enums.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-enum-map-derive-0.4
   (package
     (name "rust-enum-map-derive")
-- 
2.40.1





Information forwarded to efraim <at> flashner.co.il, guix-patches <at> gnu.org:
bug#64248; Package guix-patches. (Fri, 23 Jun 2023 16:58:03 GMT) Full text and rfc822 format available.

Message #20 received at 64248 <at> debbugs.gnu.org (full text, mbox):

From: Steve George <steve <at> futurile.net>
To: 64248 <at> debbugs.gnu.org
Cc: Steve George <steve <at> futurile.net>
Subject: [PATCH 5/8] gnu: Add rust-rspotify-macros.
Date: Fri, 23 Jun 2023 17:56:48 +0100
* gnu/packages/crates-io.scm (rust-rspotify-macros): New variable.
---
 gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 16b7afea78..5bf615fb95 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -52890,6 +52890,27 @@ (define-public rust-rspec-1
 rust.")
     (license license:mpl2.0)))
 
+(define-public rust-rspotify-macros-0.11
+  (package
+    (name "rust-rspotify-macros")
+    (version "0.11.7")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "rspotify-macros" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "00zjxnbhljak54bf5q1h09487bh7sza3mqsxk21x43q7pw5jlrkg"))))
+    (build-system cargo-build-system)
+    (arguments
+     (list #:skip-build? #f
+           #:cargo-development-inputs `(("rust-serde-json" ,rust-serde-json-1))))
+    (home-page "https://github.com/ramsayleung/rspotify")
+    (synopsis "Macros for RSpotify")
+    (description "RSpotify is a wrapper for the Spotify Web API.  This crate
+contains Macros for RSpotify.")
+    (license license:expat)))
+
 (define-public rust-rspotify-model-0.11
   (package
     (name "rust-rspotify-model")
-- 
2.40.1





Information forwarded to efraim <at> flashner.co.il, guix-patches <at> gnu.org:
bug#64248; Package guix-patches. (Fri, 23 Jun 2023 16:58:03 GMT) Full text and rfc822 format available.

Message #23 received at 64248 <at> debbugs.gnu.org (full text, mbox):

From: Steve George <steve <at> futurile.net>
To: 64248 <at> debbugs.gnu.org
Cc: Steve George <steve <at> futurile.net>
Subject: [PATCH 6/8] gnu: Add rust-maybe-async.
Date: Fri, 23 Jun 2023 17:56:49 +0100
* gnu/packages/crates-io.scm (rust-maybe-async): New variable.
---
 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 5bf615fb95..41646c69c6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -36214,6 +36214,34 @@ (define-public rust-matrixmultiply-0.1
      `(#:cargo-inputs (("rust-rawpointer" ,rust-rawpointer-0.1))
        #:cargo-development-inputs (("rust-bencher" ,rust-bencher-0.1))))))
 
+(define-public rust-maybe-async-0.2
+  (package
+    (name "rust-maybe-async")
+    (version "0.2.7")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "maybe-async" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "01gksgxmzgl8hvg831vv993fvrwz8hjwgcln99ilp08zrc9qq6qg"))))
+    (build-system cargo-build-system)
+    (arguments
+     (list #:skip-build? #f
+           #:cargo-inputs `(("rust-proc-macro2" ,rust-proc-macro2-1)
+                            ("rust-quote" ,rust-quote-1)
+                            ("rust-syn" ,rust-syn-1)
+                            ("rust-async-std" ,rust-async-std-1)
+                            ("rust-async-trait" ,rust-async-trait-0.1)
+                            ("rust-tokio" ,rust-tokio-1)
+                            ("rust-trybuild" ,rust-trybuild-1))))
+    (home-page "https://github.com/fMeow/maybe-async-rs")
+    (synopsis "Procedural macro to unify sync and async Rust code")
+    (description
+     "This package provides a procedural macro that unifies sync and
+async code in Rust.")
+    (license license:expat)))
+
 (define-public rust-maybe-rayon-0.1
   (package
     (name "rust-maybe-rayon")
-- 
2.40.1





Information forwarded to efraim <at> flashner.co.il, guix-patches <at> gnu.org:
bug#64248; Package guix-patches. (Fri, 23 Jun 2023 16:58:04 GMT) Full text and rfc822 format available.

Message #26 received at 64248 <at> debbugs.gnu.org (full text, mbox):

From: Steve George <steve <at> futurile.net>
To: 64248 <at> debbugs.gnu.org
Cc: Steve George <steve <at> futurile.net>
Subject: [PATCH 3/8] gnu: Add rust-enum-dispatch
Date: Fri, 23 Jun 2023 17:56:46 +0100
* gnu/packages/crates-io.scm (rust-enum-dispatch): New variable.
---
 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 44f51c8c11..b6ed862306 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -21487,6 +21487,37 @@ (define-public rust-enum-derive-0.1
      "This crate provides macros for deriving additional functionality for enums.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-enum-dispatch-0.3
+  (package
+    (name "rust-enum-dispatch")
+    (version "0.3.11")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "enum_dispatch" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1qlxlxjvy92s0fwcwlnd2cdkkyml1755xap2lq8v4812hsanxwqi"))))
+    (build-system cargo-build-system)
+    (arguments
+     (list #:skip-build? #t
+           #:cargo-inputs `(("rust-once-cell" ,rust-once-cell-1)
+                            ("rust-proc-macro2" ,rust-proc-macro2-1)
+                            ("rust-quote" ,rust-quote-1)
+                            ("rust-syn" ,rust-syn-1))
+           #:cargo-development-inputs `(("rust-custom-derive" ,rust-custom-derive-0.1)
+                                        ("rust-enum-derive" ,rust-enum-derive-0.1)
+                                        ("rust-rand" ,rust-rand-0.6)
+                                        ("rust-serde" ,rust-serde-1) ;requires 1.0.136
+                                        ("rust-serde-json" ,rust-serde-json-1)
+                                        ("rust-smol" ,rust-smol-1))))
+    (home-page "https://gitlab.com/antonok/enum_dispatch")
+    (synopsis "Faster alternative to dynamically dispatched method calls")
+    (description
+     "This crate transforms your trait objects into concrete compound types,
+increasing their method call speed up to 10x.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-enum-map-derive-0.4
   (package
     (name "rust-enum-map-derive")
-- 
2.40.1





Information forwarded to efraim <at> flashner.co.il, guix-patches <at> gnu.org:
bug#64248; Package guix-patches. (Fri, 23 Jun 2023 16:58:04 GMT) Full text and rfc822 format available.

Message #29 received at 64248 <at> debbugs.gnu.org (full text, mbox):

From: Steve George <steve <at> futurile.net>
To: 64248 <at> debbugs.gnu.org
Cc: Steve George <steve <at> futurile.net>
Subject: [PATCH 7/8] gnu: Add rust-rspotify-http.
Date: Fri, 23 Jun 2023 17:56:50 +0100
* gnu/packages/crates-io.scm (rust-rspotify-http): New variable.
---
 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 41646c69c6..7ce924a70b 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -52918,6 +52918,36 @@ (define-public rust-rspec-1
 rust.")
     (license license:mpl2.0)))
 
+(define-public rust-rspotify-http-0.11
+  (package
+    (name "rust-rspotify-http")
+    (version "0.11.7")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "rspotify-http" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1a1xdvnlksb0gbkyrw9q4l7fyy8ba0mfsjs71qv2r6bbpadij0d8"))))
+    (build-system cargo-build-system)
+    (arguments
+     (list #:skip-build? #f
+           #:cargo-inputs `(("rust-async-trait" ,rust-async-trait-0.1)
+                            ("rust-log" ,rust-log-0.4)
+                            ("rust-maybe-async" ,rust-maybe-async-0.2)
+                            ("rust-reqwest" ,rust-reqwest-0.11)
+                            ("rust-serde-json" ,rust-serde-json-1)
+                            ("rust-thiserror" ,rust-thiserror-1)
+                            ("rust-ureq" ,rust-ureq-2))
+           #:cargo-development-inputs `(("rust-rspotify-model" ,rust-rspotify-model-0.11)
+                                        ("rust-tokio" ,rust-tokio-1))))
+    (native-inputs (list pkg-config openssl))
+    (home-page "https://github.com/ramsayleung/rspotify")
+    (synopsis "HTTP compatibility layer for RSpotify")
+    (description "RSpotify is a wrapper for the Spotify Web API.  This
+package contains a HTTP compatibility layer for RSpotify.")
+    (license license:expat)))
+
 (define-public rust-rspotify-macros-0.11
   (package
     (name "rust-rspotify-macros")
-- 
2.40.1





Reply sent to Efraim Flashner <efraim <at> flashner.co.il>:
You have taken responsibility. (Mon, 02 Oct 2023 08:43:01 GMT) Full text and rfc822 format available.

Notification sent to Steve George <steve <at> futurile.net>:
bug acknowledged by developer. (Mon, 02 Oct 2023 08:43:01 GMT) Full text and rfc822 format available.

Message #34 received at 64248-done <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: Steve George <steve <at> futurile.net>
Cc: 64248-done <at> debbugs.gnu.org
Subject: Re: [bug#64248] Series to update to rust-rspotify-0.11
Date: Mon, 2 Oct 2023 11:42:09 +0300
[Message part 1 (text/plain, inline)]
Thanks! Patches pushed.

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 30 Oct 2023 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 191 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.