unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Herman Rimm via Guix-patches via <guix-patches@gnu.org>
To: 75068@debbugs.gnu.org
Cc: Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#75068] [PATCH rust-team v2 86/93] gnu: rust-pyo3-0.22: Order alphabetically.
Date: Tue, 24 Dec 2024 21:11:17 +0100	[thread overview]
Message-ID: <944367edd89d7c609dc0ed838e1c49b128ef473d.1735070699.git.herman@rimm.ee> (raw)
In-Reply-To: <cover.1735070694.git.herman@rimm.ee>

* gnu/packages/crates-io.scm (rust-pyo3-0.22): Order.

Change-Id: Id6fce794e1b78801afd2e30339299b332f00d81c
---
 gnu/packages/crates-io.scm | 100 ++++++++++++++++++-------------------
 1 file changed, 50 insertions(+), 50 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 39d97ef716..b05c0a44ad 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -63606,6 +63606,56 @@ (define-public rust-pyo3-0.23
 Python code from a Rust binary is also supported.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-pyo3-0.22
+  (package
+    (inherit rust-pyo3-0.23)
+    (name "rust-pyo3")
+    (version "0.22.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "pyo3" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "110qrq9yibfv40zzind9p2i87617lhzs379ix0m2065b2qk0c0pl"))))
+    (arguments
+     `(#:cargo-inputs (("rust-anyhow" ,rust-anyhow-1)
+                       ("rust-cfg-if" ,rust-cfg-if-1)
+                       ("rust-chrono" ,rust-chrono-0.4)
+                       ("rust-chrono-tz" ,rust-chrono-tz-0.6)
+                       ("rust-either" ,rust-either-1)
+                       ("rust-eyre" ,rust-eyre-0.6)
+                       ("rust-hashbrown" ,rust-hashbrown-0.9)
+                       ("rust-indexmap" ,rust-indexmap-1)
+                       ("rust-indoc" ,rust-indoc-2)
+                       ("rust-inventory" ,rust-inventory-0.3)
+                       ("rust-libc" ,rust-libc-0.2)
+                       ("rust-memoffset" ,rust-memoffset-0.9)
+                       ("rust-num-bigint" ,rust-num-bigint-0.4)
+                       ("rust-num-complex" ,rust-num-complex-0.2)
+                       ("rust-num-rational" ,rust-num-rational-0.4)
+                       ("rust-once-cell" ,rust-once-cell-1)
+                       ("rust-portable-atomic" ,rust-portable-atomic-1)
+                       ("rust-pyo3-build-config" ,rust-pyo3-build-config-0.22)
+                       ("rust-pyo3-ffi" ,rust-pyo3-ffi-0.22)
+                       ("rust-pyo3-macros" ,rust-pyo3-macros-0.22)
+                       ("rust-rust-decimal" ,rust-rust-decimal-1)
+                       ("rust-serde" ,rust-serde-1)
+                       ("rust-smallvec" ,rust-smallvec-1)
+                       ("rust-unindent" ,rust-unindent-0.2))
+       #:cargo-development-inputs
+       (("rust-assert-approx-eq" ,rust-assert-approx-eq-1)
+        ("rust-chrono" ,rust-chrono-0.4)
+        ("rust-chrono-tz" ,rust-chrono-tz-0.6)
+        ("rust-futures" ,rust-futures-0.3)
+        ("rust-proptest" ,rust-proptest-1)
+        ("rust-rayon" ,rust-rayon-1)
+        ("rust-send-wrapper" ,rust-send-wrapper-0.6)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-serde-json" ,rust-serde-json-1)
+        ("rust-static-assertions" ,rust-static-assertions-1)
+        ("rust-trybuild" ,rust-trybuild-1))))))
+
 (define-public rust-pyo3-build-config-0.23
   (package
     (name "rust-pyo3-build-config")
@@ -64244,56 +64294,6 @@ (define-public rust-pyo3-macros-0.15
         ("rust-syn" ,rust-syn-1))))
     (native-inputs (list python))))
 
-(define-public rust-pyo3-0.22
-  (package
-    (inherit rust-pyo3-0.23)
-    (name "rust-pyo3")
-    (version "0.22.6")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "pyo3" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "110qrq9yibfv40zzind9p2i87617lhzs379ix0m2065b2qk0c0pl"))))
-    (arguments
-     `(#:cargo-inputs (("rust-anyhow" ,rust-anyhow-1)
-                       ("rust-cfg-if" ,rust-cfg-if-1)
-                       ("rust-chrono" ,rust-chrono-0.4)
-                       ("rust-chrono-tz" ,rust-chrono-tz-0.6)
-                       ("rust-either" ,rust-either-1)
-                       ("rust-eyre" ,rust-eyre-0.6)
-                       ("rust-hashbrown" ,rust-hashbrown-0.9)
-                       ("rust-indexmap" ,rust-indexmap-1)
-                       ("rust-indoc" ,rust-indoc-2)
-                       ("rust-inventory" ,rust-inventory-0.3)
-                       ("rust-libc" ,rust-libc-0.2)
-                       ("rust-memoffset" ,rust-memoffset-0.9)
-                       ("rust-num-bigint" ,rust-num-bigint-0.4)
-                       ("rust-num-complex" ,rust-num-complex-0.2)
-                       ("rust-num-rational" ,rust-num-rational-0.4)
-                       ("rust-once-cell" ,rust-once-cell-1)
-                       ("rust-portable-atomic" ,rust-portable-atomic-1)
-                       ("rust-pyo3-build-config" ,rust-pyo3-build-config-0.22)
-                       ("rust-pyo3-ffi" ,rust-pyo3-ffi-0.22)
-                       ("rust-pyo3-macros" ,rust-pyo3-macros-0.22)
-                       ("rust-rust-decimal" ,rust-rust-decimal-1)
-                       ("rust-serde" ,rust-serde-1)
-                       ("rust-smallvec" ,rust-smallvec-1)
-                       ("rust-unindent" ,rust-unindent-0.2))
-       #:cargo-development-inputs
-       (("rust-assert-approx-eq" ,rust-assert-approx-eq-1)
-        ("rust-chrono" ,rust-chrono-0.4)
-        ("rust-chrono-tz" ,rust-chrono-tz-0.6)
-        ("rust-futures" ,rust-futures-0.3)
-        ("rust-proptest" ,rust-proptest-1)
-        ("rust-rayon" ,rust-rayon-1)
-        ("rust-send-wrapper" ,rust-send-wrapper-0.6)
-        ("rust-serde" ,rust-serde-1)
-        ("rust-serde-json" ,rust-serde-json-1)
-        ("rust-static-assertions" ,rust-static-assertions-1)
-        ("rust-trybuild" ,rust-trybuild-1))))))
-
 (define-public rust-pyo3-0.21
   (package
     (inherit rust-pyo3-0.22)
-- 
2.45.2





  parent reply	other threads:[~2024-12-24 20:40 UTC|newest]

Thread overview: 96+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-24 20:01 [bug#75068] [PATCH rust-team 01/94] gnu: rust-hifitime-3: Order alphabetically Herman Rimm via Guix-patches via
2024-12-24 20:09 ` [bug#75068] [PATCH rust-team v2 00/93] Order (gnu packages crates-io) up to Herman Rimm via Guix-patches via
2024-12-24 20:09   ` [bug#75068] [PATCH rust-team v2 01/93] gnu: rust-html-escape-0.2: Order alphabetically Herman Rimm via Guix-patches via
2024-12-24 20:09   ` [bug#75068] [PATCH rust-team v2 02/93] gnu: rust-kuchiki-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:09   ` [bug#75068] [PATCH rust-team v2 03/93] gnu: rust-konst-proc-macros-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:09   ` [bug#75068] [PATCH rust-team v2 04/93] gnu: rust-konst-macro-rules-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:09   ` [bug#75068] [PATCH rust-team v2 05/93] gnu: rust-konst-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:09   ` [bug#75068] [PATCH rust-team v2 06/93] gnu: rust-koibumi-base32-0.0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:09   ` [bug#75068] [PATCH rust-team v2 07/93] gnu: rust-katex-doc-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:09   ` [bug#75068] [PATCH rust-team v2 08/93] gnu: rust-jwalk-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 09/93] gnu: rust-hyphenation-commons-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 10/93] gnu: rust-iana-time-zone-haiku-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 11/93] gnu: rust-inout-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 12/93] gnu: rust-is-macro-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 13/93] gnu: rust-is-ci-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 14/93] gnu: rust-iri-string-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 15/93] gnu: rust-jsonrpc-core-14: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 16/93] gnu: rust-jsonpath-lib-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 17/93] gnu: rust-juniper-codegen-0.14: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 18/93] gnu: rust-juniper-codegen-0.15: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 19/93] gnu: rust-kqueue-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 20/93] gnu: rust-k9-0.12: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 21/93] gnu: rust-k9-0.11: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 22/93] gnu: rust-language-tags-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 23/93] gnu: rust-language-tags-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 24/93] gnu: rust-lapack-0.19: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 25/93] gnu: rust-lexical-6: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 26/93] gnu: rust-lexical-5: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 27/93] gnu: rust-libmimalloc-sys-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 28/93] gnu: rust-libspa-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 29/93] gnu: rust-libz-sys-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 30/93] gnu: rust-libssh2-sys-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 31/93] gnu: rust-libssh2-sys-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 32/93] gnu: rust-libtest-mimic-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 33/93] gnu: rust-libtest-mimic-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 34/93] gnu: rust-libtest-mimic-0.6: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 35/93] gnu: rust-libtest-mimic-0.5: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 36/93] gnu: rust-libtest-mimic-0.4: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 37/93] gnu: rust-libtest-mimic-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 38/93] gnu: rust-libudev-sys-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 39/93] gnu: rust-libusb1-sys-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 40/93] gnu: rust-lv2-units-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 41/93] gnu: rust-rust-lzma-0.5: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 42/93] gnu: rust-magma-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 43/93] gnu: rust-markup-0.13: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 44/93] gnu: rust-matchit-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 45/93] gnu: rust-matches-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 46/93] gnu: rust-matrixcompare-core-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 47/93] gnu: rust-merge-derive-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 48/93] gnu: rust-metrics-macros-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 49/93] gnu: rust-muldiv-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 50/93] gnu: rust-nasm-rs-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 51/93] gnu: rust-nasm-rs-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 52/93] gnu: rust-nanorand-0.4: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 53/93] gnu: rust-nanorand-0.5: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 54/93] gnu: rust-nanorand-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 55/93] gnu: rust-nispor-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 56/93] gnu: rust-nom8-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 57/93] gnu: rust-normalize-path-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 58/93] gnu: rust-notify-debouncer-mini-0.4: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 59/93] gnu: rust-ntest-proc-macro-helper-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 60/93] gnu: rust-ntest-proc-macro-helper-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 61/93] gnu: rust-once-cell-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 62/93] gnu: rust-openssl-macros-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 63/93] gnu: rust-ouroboros-0.17: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 64/93] gnu: rust-ouroboros-0.15: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 65/93] gnu: rust-ouroboros-0.14: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 66/93] gnu: rust-owo-colors-3: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 67/93] gnu: rust-owo-colors-4: " Herman Rimm via Guix-patches via
2024-12-24 20:10   ` [bug#75068] [PATCH rust-team v2 68/93] gnu: rust-parasail-sys-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 69/93] gnu: rust-pathfinder-geometry-0.5: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 70/93] gnu: rust-pathfinder-simd-0.5: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 71/93] gnu: rust-paw-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 72/93] gnu: rust-paw-attributes-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 73/93] gnu: rust-paw-raw-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 74/93] gnu: rust-paw-structopt-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 75/93] gnu: rust-perf-event-open-sys-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 76/93] gnu: rust-ping-0.4: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 77/93] gnu: rust-pipewire-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 78/93] gnu: rust-pretty-hex-0.4: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 79/93] gnu: rust-pretty-hex-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 80/93] gnu: rust-publicsuffix-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 81/93] gnu: rust-publicsuffix-2: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 82/93] gnu: rust-pulldown-cmark-to-cmark-7: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 83/93] gnu: rust-pulldown-cmark-to-cmark-10: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 84/93] gnu: rust-pulldown-cmark-escape-0.11: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 85/93] gnu: rust-pyo3-0.23: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` Herman Rimm via Guix-patches via [this message]
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 87/93] gnu: rust-pyo3-0.21: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 88/93] gnu: rust-pyo3-0.20: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 89/93] gnu: rust-pyo3-0.19: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 90/93] gnu: rust-pyo3-0.18: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 91/93] gnu: rust-pyo3-0.16: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 92/93] gnu: rust-pyo3-0.15: " Herman Rimm via Guix-patches via
2024-12-24 20:11   ` [bug#75068] [PATCH rust-team v2 93/93] gnu: rust-pyo3-0.13: " Herman Rimm via Guix-patches via
2024-12-25  8:17   ` bug#75068: [PATCH rust-team v2 00/93] Order (gnu packages crates-io) up to 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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=944367edd89d7c609dc0ed838e1c49b128ef473d.1735070699.git.herman@rimm.ee \
    --to=guix-patches@gnu.org \
    --cc=75068@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 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).