all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Herman Rimm via Guix-patches via <guix-patches@gnu.org>
To: 71076@debbugs.gnu.org
Cc: Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#71076] [PATCH 38/81] gnu: Add rust-oid-registry-0.7.
Date: Mon, 20 May 2024 10:58:43 +0200	[thread overview]
Message-ID: <e6c802af8bcba68b521824812f9e42ae47eb7672.1716193123.git.herman@rimm.ee> (raw)
In-Reply-To: <cover.1716193122.git.herman@rimm.ee>

* gnu/packages/crates-tls.scm (rust-oid-registry-0.7): Add variable.
(rust-oid-registry-0.6): Inherit from rust-oid-registry-0.7.

Change-Id: I13a4ce0ce2761e537839fbdac10f43df87de92b9
---
 gnu/packages/crates-tls.scm | 32 ++++++++++++++++++++++++--------
 1 file changed, 24 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/crates-tls.scm b/gnu/packages/crates-tls.scm
index 9d2f989bdc..2694da4c48 100644
--- a/gnu/packages/crates-tls.scm
+++ b/gnu/packages/crates-tls.scm
@@ -753,8 +753,31 @@ (define-public rust-native-tls-0.2
 implementation.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-oid-registry-0.7
+  (package
+    (name "rust-oid-registry")
+    (version "0.7.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "oid-registry" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+          "07cdchd80199apgf1rxjf0b4dsrlnsdkcir57jf5n926a3a8v58w"))))
+    (build-system cargo-build-system)
+    (arguments (list #:cargo-inputs (list rust-asn1-rs-0.6)))
+    (home-page "https://github.com/rusticata/oid-registry")
+    (synopsis "Object Identifier (OID) database")
+    (description
+      "This crate is a helper crate, containing a database of OID objects.
+These objects are intended for use when manipulating ASN.1 grammars and
+BER/DER encodings, for example.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-oid-registry-0.6
   (package
+    (inherit rust-oid-registry-0.7)
     (name "rust-oid-registry")
     (version "0.6.1")
     (source (origin
@@ -764,15 +787,8 @@ (define-public rust-oid-registry-0.6
               (sha256
                (base32
                 "1zwvjp3ad6gzn8g8w2hcn9a2xdap0lkzckhlnwp6rabbzdpz7vcv"))))
-    (build-system cargo-build-system)
     (arguments
-     `(#:cargo-inputs (("rust-asn1-rs" ,rust-asn1-rs-0.5))))
-    (home-page "https://github.com/rusticata/oid-registry")
-    (synopsis "Object Identifier (OID) database")
-    (description "This crate is a helper crate, containing a database of
-OID objects.  These objects are intended for use when manipulating ASN.1
-grammars and BER/DER encodings, for example.")
-    (license (list license:expat license:asl2.0))))
+     `(#:cargo-inputs (("rust-asn1-rs" ,rust-asn1-rs-0.5))))))
 
 (define-public rust-oid-registry-0.4
   (package
-- 
2.41.0





  parent reply	other threads:[~2024-05-20  9:44 UTC|newest]

Thread overview: 82+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-20  8:55 [bug#71076] [PATCH 00/81] Add matrix-conduit and ruma-0.10 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 01/81] build-system: cargo: Accept unlabeled #:cargo-inputs Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 02/81] gnu: Add rust-iri-string-0.4 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 03/81] gnu: Add rust-tower-http-0.3 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 04/81] gnu: Add rust-axum-server-0.5 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 05/81] gnu: Add rust-simple-asn1-0.6 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 06/81] gnu: Add rust-jsonwebtoken-9 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 07/81] gnu: Add rust-zigzag-0.1 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 08/81] gnu: Add rust-asynchronous-codec-0.7 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 09/81] gnu: Add rust-unsigned-varint-0.8 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 10/81] gnu: Add rust-persy-1 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 11/81] gnu: Add rust-const-str-proc-macro-0.5 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 12/81] gnu: Add rust-const-str-0.5 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 13/81] gnu: Add rust-rust-librocksdb-sys-0.20 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 14/81] gnu: Add rust-rust-rocksdb-0.24 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 15/81] gnu: Add rust-tikv-jemalloc-sys-0.5 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 16/81] gnu: Add rust-tikv-jemallocator-0.5 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 17/81] gnu: Add rust-tikv-jemalloc-ctl-0.5 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 18/81] gnu: Add rust-tracing-flame-0.2 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 19/81] gnu: Add rust-opentelemetry-api-0.18 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 20/81] gnu: Add rust-opentelemetry-http-0.7 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 21/81] gnu: Add rust-opentelemetry-sdk-0.18 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 22/81] gnu: Add rust-opentelemetry-0.18 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 23/81] gnu: Add rust-opentelemetry-semantic-conventions-0.10 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 24/81] gnu: Add rust-prost-types-0.9 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 25/81] gnu: Add rust-thrift-0.16 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 26/81] gnu: Add rust-opentelemetry-jaeger-0.17 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 27/81] gnu: Add rust-tracing-opentelemtry-0.18 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 28/81] gnu: Add rust-rust-argon2-1 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 29/81] gnu: Add rust-ruma-0.9-1.5495b85 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 30/81] gnu: Add matrix-conduit Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 31/81] gnu: Add rust-rustls-platform-verifier-android-0.1 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 32/81] gnu: Add rust-android-log-sys-0.3 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 33/81] gnu: Add rust-android-logger-0.13 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 34/81] gnu: rust-security-framework-sys-2: Update to 2.11.0 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 35/81] gnu: rust-security-framework-2: " Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 36/81] gnu: rust-webpki-0.102: Update to 0.102.4 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 37/81] gnu: Add rust-rustls-platform-verifier-0.3 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` Herman Rimm via Guix-patches via [this message]
2024-05-20  8:58 ` [bug#71076] [PATCH 39/81] gnu: Add rust-der-parser-9 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 40/81] gnu: Add rust-synstructure-0.13 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 41/81] gnu: Add rust-asn1-rs-derive-0.5 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 42/81] gnu: Add rust-asn1-rs-impl-0.2 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 43/81] gnu: Add rust-asn1-rs-0.6 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 44/81] gnu: Add rust-x509-parser-0.16 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 45/81] gnu: rust-rustls-pki-types-1: Update to 1.7.0 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 46/81] gnu: Add rust-rcgen-0.13 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 47/81] gnu: Add rust-rustls-0.23 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 48/81] gnu: Add rust-base64-0.22 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 49/81] gnu: Add rust-tokio-rustls-0.26 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 50/81] gnu: Add rust-hyper-rustls-0.27 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 51/81] gnu: Add rust-hyper-tls-0.6 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 52/81] gnu: Add rust-h3-0.0.4 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 53/81] gnu: Add rust-h3-quinn-0.0.5 Herman Rimm via Guix-patches via
2024-05-20  8:58 ` [bug#71076] [PATCH 54/81] gnu: rust-pin-project-internal-1: Update to 1.1.5 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 55/81] gnu: rust-pin-project-1: " Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 56/81] gnu: Add rust-wasm-streams-0.4 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 57/81] gnu: Add rust-reqwest-0.12 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 58/81] gnu: rust-ruma-identifiers-validation-0.9: Update to 0.9.5 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 59/81] gnu: Add rust-ruma-macros-0.13 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 60/81] gnu: rust-http-1: Update to 1.1.0 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 61/81] gnu: Add rust-ruma-common-0.13 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 62/81] gnu: Add rust-markup5ever-0.12 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 63/81] gnu: rust-typed-arena-2: Update to 2.0.2 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 64/81] gnu: Add rust-html5ever-0.27 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 65/81] gnu: Add rust-ruma-html-0.2 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 66/81] gnu: Add rust-pulldown-cmark-escape-0.10 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 67/81] gnu: Add rust-pulldown-cmark-0.10 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 68/81] gnu: Add rust-ruma-events-0.28 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 69/81] gnu: Add rust-ruma-state-res-0.11 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 70/81] gnu: Add rust-ruma-signatures-0.15 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 71/81] gnu: Add rust-ruma-server-util-0.3 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 72/81] gnu: Add rust-ruma-push-gateway-api-0.9 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 73/81] gnu: Add rust-ruma-identity-service-api-0.9 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 74/81] gnu: Add rust-ruma-federation-api-0.9 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 75/81] gnu: Add rust-date-header-1 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 76/81] gnu: Add rust-ruma-client-api-0.18 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 77/81] gnu: rust-http-body-util-0.1: Update to 0.1.1 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 78/81] gnu: rust-hyper-1: Update to 1.3.1 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 79/81] gnu: Add rust-ruma-client-0.13 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 80/81] gnu: Add rust-ruma-appservice-api-0.10 Herman Rimm via Guix-patches via
2024-05-20  8:59 ` [bug#71076] [PATCH 81/81] gnu: Add rust-ruma-0.10 Herman Rimm via Guix-patches via

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=e6c802af8bcba68b521824812f9e42ae47eb7672.1716193123.git.herman@rimm.ee \
    --to=guix-patches@gnu.org \
    --cc=71076@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    --cc=herman@rimm.ee \
    /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.