unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 68605@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>,
	Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>,
	Sharlatan Hellseher <sharlatanus@gmail.com>
Subject: [bug#68605] [PATCH 12/38] gnu: go-gitlab-com-yawning-edwards25519-extra: Move to (gnu packages golang-crypto).
Date: Sat, 20 Jan 2024 09:58:04 +0000	[thread overview]
Message-ID: <4d44875948eae72442c12a9ac23817c116e21a6c.1705743627.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1705743627.git.sharlatanus@gmail.com>

* gnu/packages/golang.scm (go-gitlab-com-yawning-edwards25519-extra):
Move from here ...
* gnu/packages/golang-crypto.scm: ... to here.

Change-Id: I9c4aef2a0b58c482f838cc6a3a9e443dc05629b7
---
 gnu/packages/golang-crypto.scm | 66 ++++++++++++++++++++++++++++++++++
 gnu/packages/golang.scm        | 65 ---------------------------------
 2 files changed, 66 insertions(+), 65 deletions(-)

diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 72771d40a2..7f25cd12a2 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -294,6 +294,72 @@ (define-public go-github-com-shadowsocks-go-shadowsocks2
 tunnel proxy protocol.")
     (license license:asl2.0)))
 
+(define-public go-gitlab-com-yawning-edwards25519-extra
+  (let ((commit "2149dcafc266f66d2487f45b156f6397f9c4760b")
+        (revision "0"))
+    (package
+      (name "go-gitlab-com-yawning-edwards25519-extra")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://gitlab.com/yawning/edwards25519-extra")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "08mz1qyi8ig515hh5blnzxhiwsav564ah7mzyhvmr6i48ndhhv98"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:unpack-path "gitlab.com/yawning/edwards25519-extra"
+         #:phases
+         (modify-phases %standard-phases
+           (replace 'build
+             (lambda arguments
+               (for-each
+                (lambda (directory)
+                  (apply (assoc-ref %standard-phases 'build)
+                         `(,@arguments #:import-path ,directory)))
+                (list
+                 "gitlab.com/yawning/edwards25519-extra/elligator2"
+                 "gitlab.com/yawning/edwards25519-extra/h2c"
+                 "gitlab.com/yawning/edwards25519-extra/internal/montgomery"
+                 "gitlab.com/yawning/edwards25519-extra/vrf"))))
+           (replace 'check
+             (lambda arguments
+               (for-each
+                (lambda (directory)
+                  (apply (assoc-ref %standard-phases 'check)
+                         `(,@arguments #:import-path ,directory)))
+                (list
+                 "gitlab.com/yawning/edwards25519-extra/elligator2"
+                 "gitlab.com/yawning/edwards25519-extra/h2c"
+                 "gitlab.com/yawning/edwards25519-extra/internal/montgomery"
+                 "gitlab.com/yawning/edwards25519-extra/vrf"))))
+           (replace 'install
+             (lambda arguments
+               (for-each
+                (lambda (directory)
+                  (apply (assoc-ref %standard-phases 'install)
+                         `(,@arguments #:import-path ,directory)))
+                (list
+                 "gitlab.com/yawning/edwards25519-extra/elligator2"
+                 "gitlab.com/yawning/edwards25519-extra/h2c"
+                 "gitlab.com/yawning/edwards25519-extra/internal/montgomery"
+                 "gitlab.com/yawning/edwards25519-extra/vrf")))))))
+      (propagated-inputs (list go-golang-org-x-crypto
+                               go-filippo-io-edwards25519))
+      (home-page "https://gitlab.com/yawning/edwards25519-extra")
+      (synopsis "edwards25519-extra")
+      (description "This package provides extensions to the Go standard
+library's Ed25519 and curve25519 implementations, primarily extracted from
+@@url{https://github.com/oasisprotocol/curve25519-voi,curve25519-voi}.  This
+package is intended for interoperability with the standard library and the
+@@url{https://filippo.io/edwards25519,edwards25519} package as much as
+possible.")
+      (license license:bsd-3))))
+
+
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 4e44ebf5ba..499bf6c8a9 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9792,71 +9792,6 @@ (define-public age-keygen
        #:unpack-path "filippo.io/age"
        #:install-source? #f))))
 
-(define-public go-gitlab-com-yawning-edwards25519-extra
-  (let ((commit "2149dcafc266f66d2487f45b156f6397f9c4760b")
-        (revision "0"))
-    (package
-      (name "go-gitlab-com-yawning-edwards25519-extra")
-      (version (git-version "0.0.0" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://gitlab.com/yawning/edwards25519-extra")
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "08mz1qyi8ig515hh5blnzxhiwsav564ah7mzyhvmr6i48ndhhv98"))))
-      (build-system go-build-system)
-      (arguments
-       '(#:unpack-path "gitlab.com/yawning/edwards25519-extra"
-         #:phases
-         (modify-phases %standard-phases
-           (replace 'build
-             (lambda arguments
-               (for-each
-                (lambda (directory)
-                  (apply (assoc-ref %standard-phases 'build)
-                         `(,@arguments #:import-path ,directory)))
-                (list
-                 "gitlab.com/yawning/edwards25519-extra/elligator2"
-                 "gitlab.com/yawning/edwards25519-extra/h2c"
-                 "gitlab.com/yawning/edwards25519-extra/internal/montgomery"
-                 "gitlab.com/yawning/edwards25519-extra/vrf"))))
-           (replace 'check
-             (lambda arguments
-               (for-each
-                (lambda (directory)
-                  (apply (assoc-ref %standard-phases 'check)
-                         `(,@arguments #:import-path ,directory)))
-                (list
-                 "gitlab.com/yawning/edwards25519-extra/elligator2"
-                 "gitlab.com/yawning/edwards25519-extra/h2c"
-                 "gitlab.com/yawning/edwards25519-extra/internal/montgomery"
-                 "gitlab.com/yawning/edwards25519-extra/vrf"))))
-           (replace 'install
-             (lambda arguments
-               (for-each
-                (lambda (directory)
-                  (apply (assoc-ref %standard-phases 'install)
-                         `(,@arguments #:import-path ,directory)))
-                (list
-                 "gitlab.com/yawning/edwards25519-extra/elligator2"
-                 "gitlab.com/yawning/edwards25519-extra/h2c"
-                 "gitlab.com/yawning/edwards25519-extra/internal/montgomery"
-                 "gitlab.com/yawning/edwards25519-extra/vrf")))))))
-      (propagated-inputs (list go-golang-org-x-crypto
-                               go-filippo-io-edwards25519))
-      (home-page "https://gitlab.com/yawning/edwards25519-extra")
-      (synopsis "edwards25519-extra")
-      (description
-       "This package provides extensions to the Go standard library's Ed25519 and
-curve25519 implementations, primarily extracted from
-@@url{https://github.com/oasisprotocol/curve25519-voi,curve25519-voi}.  This
-package is intended for interoperability with the standard library and the
-@@url{https://filippo.io/edwards25519,edwards25519} package as much as possible.")
-      (license license:bsd-3))))
-
 (define-public go-github-com-bwesterb-go-ristretto
   (package
     (name "go-github-com-bwesterb-go-ristretto")
-- 
2.41.0





  parent reply	other threads:[~2024-01-20 10:00 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-20  9:50 [bug#68605] [PATCH 00/38] Split (gnu packages golang) part III Sharlatan Hellseher
2024-01-20  9:57 ` [bug#68605] [PATCH 01/38] gnu: Add (gnu packages golang-crypto) module Sharlatan Hellseher
2024-01-20  9:57 ` [bug#68605] [PATCH 02/38] gnu: go-github-com-pquerna-cachecontrol: Move to (gnu packages golang-web) Sharlatan Hellseher
2024-01-20  9:57 ` [bug#68605] [PATCH 03/38] gnu: go-github-com-multiformats-go-multihash: Move to (gnu packages golang-crypto) Sharlatan Hellseher
2024-01-20  9:57 ` [bug#68605] [PATCH 04/38] gnu: go-github-com-riobard-go-bloom: " Sharlatan Hellseher
2024-01-20  9:57 ` [bug#68605] [PATCH 05/38] gnu: go-github-com-libp2p-go-libp2p-crypto: " Sharlatan Hellseher
2024-01-20  9:57 ` [bug#68605] [PATCH 06/38] gnu: go-github-com-shadowsocks-go-shadowsocks2: " Sharlatan Hellseher
2024-01-20  9:57 ` [bug#68605] [PATCH 07/38] gnu: go-github-com-libp2p-go-libp2p-peer: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 08/38] gnu: go-github-com-aead-chacha20: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 09/38] gnu: go-github-com-marten-seemann-chacha20: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 10/38] gnu: go-github-com-refraction-networking-utls: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 11/38] gnu: go-filippo-io-edwards25519: " Sharlatan Hellseher
2024-01-20  9:58 ` Sharlatan Hellseher [this message]
2024-01-20  9:58 ` [bug#68605] [PATCH 13/38] gnu: go-github-com-marten-seemann-qtls: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 14/38] gnu: go-github-com-gaukas-godicttls: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 15/38] gnu: go-github-com-quic-go-qtls-go1-20: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 16/38] gnu: go-github-com-jcmturner-aescts-v2: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 17/38] gnu: go-github-com-aperturerobotics-jacobsa-crypto: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 18/38] gnu: go-github-com-rfjakob-eme: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 19/38] gnu: go-github-com-emersion-go-pgpmail: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 20/38] gnu: go-github-com-protonmail-go-crypto: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 21/38] gnu: go-github-com-btcsuite-btcd-btcec: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 22/38] gnu: go-lukechampine-com-blake3: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 23/38] gnu: go-github-com-cloudflare-circl: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 24/38] gnu: go-github-com-minio-sha256-simd: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 25/38] gnu: go-github-com-flynn-noise: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 26/38] gnu: go-github-com-gxed-hashland-keccakpg: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 27/38] gnu: go-github-com-operatorfoundation-ed25519: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 28/38] gnu: go-github-com-minio-blake2b-simd: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 29/38] gnu: go-github-com-cespare-xxhash: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 30/38] gnu: go-github-com-99designs-go-keyring: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 31/38] gnu: go-github-com-xanzy-ssh-agent: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 32/38] gnu: go-filippo-io-age: " Sharlatan Hellseher
2024-02-01  6:27   ` Hilton Chain via Guix-patches via
2024-01-20  9:58 ` [bug#68605] [PATCH 33/38] gnu: go-github-com-dvsekhvalnov-jose2go: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 34/38] gnu: go-github.com-smartystreets-gunit: Move to (gnu packages golang-check) Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 35/38] gnu: go-github.com-smartystreets-assertions: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 36/38] gnu: go-github.com-smartystreets-goconvey: " Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 37/38] gnu: go-github-com-99designs-go-keyring: Adjust inputs Sharlatan Hellseher
2024-01-20  9:58 ` [bug#68605] [PATCH 38/38] gnu: go-github-com-quic-go-qtls-go1-20: Sort package alphabetically Sharlatan Hellseher
2024-01-26 22:07 ` [bug#68605] Split (gnu packages golang) part III Sharlatan Hellseher
2024-01-28 23:51 ` bug#68605: " Sharlatan Hellseher

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=4d44875948eae72442c12a9ac23817c116e21a6c.1705743627.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=68605@debbugs.gnu.org \
    --cc=cox.katherine.e+guix@gmail.com \
    /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).