all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Steve George <steve@futurile.net>
To: 66579@debbugs.gnu.org
Cc: Steve George <steve@futurile.net>, efraim@flashner.co.il
Subject: [bug#66579] [PATCH 09/13] gnu: Add rust-librespot-core.
Date: Mon, 16 Oct 2023 17:54:11 +0100	[thread overview]
Message-ID: <db0693bfbd31d60736a53d10bd9a5c23923d90f9.1697475045.git.steve@futurile.net> (raw)
In-Reply-To: <3e60165e-956b-443a-ae07-db86fd7157d2@gmail.com>

* gnu/packages/crates-io.scm (rust-librespot-core): New variable.
---
 gnu/packages/crates-io.scm | 60 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 9aa975cf42..ffc7891ee8 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -35587,6 +35587,66 @@ (define-public rust-libradicl-0.4
 single-cell and single-nucleus sequencing data.")
     (license license:bsd-3)))
 
+(define-public rust-librespot-core-0.4
+  (package
+    (name "rust-librespot-core")
+    (version "0.4.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "librespot-core" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0vaxnnlnsx8bmphiikm4kb99795jch0xxifr0azl9rl8b3r4jqq4"))))
+    (build-system cargo-build-system)
+    (arguments
+     (list #:cargo-test-flags ``("--release" "--" "--skip=test_connection"
+                                 "--skip=test_apresolve"
+                                 "--skip=test_apresolve_port_443")
+           #:skip-build? #f
+           #:cargo-inputs `(("rust-aes" ,rust-aes-0.6)
+                            ("rust-base64" ,rust-base64-0.13)
+                            ("rust-byteorder" ,rust-byteorder-1)
+                            ("rust-bytes" ,rust-bytes-1)
+                            ("rust-form-urlencoded" ,rust-form-urlencoded-1)
+                            ("rust-futures-core" ,rust-futures-core-0.3)
+                            ("rust-futures-util" ,rust-futures-util-0.3)
+                            ("rust-hmac" ,rust-hmac-0.11)
+                            ("rust-http" ,rust-http-0.2)
+                            ("rust-httparse" ,rust-httparse-1)
+                            ("rust-hyper" ,rust-hyper-0.14)
+                            ("rust-hyper-proxy" ,rust-hyper-proxy-0.9)
+                            ("rust-librespot-protocol" ,rust-librespot-protocol-0.4)
+                            ("rust-log" ,rust-log-0.4)
+                            ("rust-num-bigint" ,rust-num-bigint-0.4)
+                            ("rust-num-integer" ,rust-num-integer-0.1)
+                            ("rust-num-traits" ,rust-num-traits-0.2)
+                            ("rust-once-cell" ,rust-once-cell-1)
+                            ("rust-pbkdf2" ,rust-pbkdf2-0.8)
+                            ("rust-priority-queue" ,rust-priority-queue-1)
+                            ("rust-protobuf" ,rust-protobuf-2)
+                            ("rust-rand" ,rust-rand-0.8)
+                            ("rust-serde" ,rust-serde-1)
+                            ("rust-serde-json" ,rust-serde-json-1)
+                            ("rust-sha-1" ,rust-sha-1-0.10)
+                            ("rust-shannon" ,rust-shannon-0.2)
+                            ("rust-thiserror" ,rust-thiserror-1)
+                            ("rust-tokio" ,rust-tokio-1)
+                            ("rust-tokio-stream" ,rust-tokio-stream-0.1)
+                            ("rust-tokio-util" ,rust-tokio-util-0.7)
+                            ("rust-url" ,rust-url-2)
+                            ("rust-uuid" ,rust-uuid-1)
+                            ("rust-vergen" ,rust-vergen-3))
+           #:cargo-development-inputs `(("rust-env-logger" ,rust-env-logger-0.9)
+                                        ("rust-tokio" ,rust-tokio-1))))
+    (home-page "https://github.com/librespot-org/librespot")
+    (synopsis "The core functionality provided by librespot")
+    (description
+     "Part of Librespot, an open source client library for
+Spotify.  This package contains core functionality, such as authentication,
+channel and session.")
+    (license license:expat)))
+
 (define-public rust-librespot-protocol-0.4
   (package
     (name "rust-librespot-protocol")
-- 
2.41.0





  parent reply	other threads:[~2023-10-16 17:00 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-16 16:12 [bug#66579] [PATCH 00/13] Series to add rust-librespot-core, audio and discovery Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 01/13] gnu: Add rust-hyper-proxy Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 02/13] gnu: rust-protobuf-2: Update to 2.28.0 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 03/13] gnu: rust-protobuf-codegen & rust-protobuf-codegen-pure: " Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 04/13] gnu: Add rust-librespot-protocol Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 05/13] gnu: Add rust-password-hash-0.2 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 06/13] gnu: Add rust-pbkdf2-0.8 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 07/13] gnu: Add rust-priority-queue-1 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 08/13] gnu: Add rust-shannon Steve George
2023-10-16 16:54 ` Steve George [this message]
2023-10-16 16:54 ` [bug#66579] [PATCH 10/13] gnu: Add rust-librespot-audio Steve George
2023-10-20  9:30   ` Christopher Baines
2023-10-20 17:02     ` Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 11/13] gnu: rust-if-addrs: Update to 0.7.0 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 12/13] gnu: rust-libmdns: Update to 0.7.5 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 13/13] gnu: Add rust-librespot-discovery Steve George
2023-10-20 20:27 ` [bug#66579] [PATCH v2 00/15] Series to add rust-librespot-core, audio and discovery Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 01/15] gnu: Add rust-hyper-proxy Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 02/15] gnu: rust-protobuf-2: Update to 2.28.0 Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 03/15] gnu: rust-protobuf-codegen & rust-protobuf-codegen-pure: " Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 04/15] gnu: Add rust-librespot-protocol Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 05/15] gnu: Add rust-password-hash-0.2 Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 06/15] gnu: Add rust-pbkdf2-0.8 Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 07/15] gnu: Add rust-priority-queue-1 Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 08/15] gnu: Add rust-shannon Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 09/15] gnu: Add rust-librespot-core Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 10/15] gnu: Add rust-aes-ctr Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 11/15] gnu: Add rust-librespot-audio Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 12/15] gnu: rust-if-addrs: Update to 0.7.0 Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 13/15] gnu: rust-libmdns: Update to 0.7.5 Steve George
2023-10-20 20:28   ` [bug#66579] [PATCH v2 14/15] gnu: Add rust-librespot-discovery Steve George
2023-10-20 20:28   ` [bug#66579] [PATCH v2 15/15] gnu: Add rust-librespot-metadata Steve George
2023-10-22  8:37   ` bug#66579: [PATCH v2 00/15] Series to add rust-librespot-core, audio and discovery Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=db0693bfbd31d60736a53d10bd9a5c23923d90f9.1697475045.git.steve@futurile.net \
    --to=steve@futurile.net \
    --cc=66579@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.