all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: jgart via Guix-patches via <guix-patches@gnu.org>
To: 46763@debbugs.gnu.org
Cc: yasu@yasuaki.com, rg@raghavgururajan.name, rprior@protonmail.com,
	singpolyma@singpolyma.net, roptat@lepiller.eu
Subject: [bug#46763] [PATCH] gnu: Add go-github-com-operatorfoundation-ed25519.
Date: Thu, 25 Feb 2021 05:19:29 +0000	[thread overview]
Message-ID: <3bc921476040ac60234f58d2427763e3@dismail.de> (raw)

[-- Attachment #1: Type: text/plain, Size: 333 bytes --]

Hi Guix!

Here is a patch from LibreMiami's first Guix Packaging Meetup.  

go-github-com-operatorfoundation-ed25519 implements the Ed25519 signature scheme for golang.

The co-authors are listed in the commit message.

This is a dependency of bitmask-vpn.

best regards,

jgart

libremiami.org
search.libremiami.org

[-- Attachment #2: 0001-gnu-Add-go-github-com-operatorfoundation-ed25519.patch --]
[-- Type: application/octet-stream, Size: 2375 bytes --]

From dc358d5f1fcb80dba6545c84b65f65cf6c9e5b3e Mon Sep 17 00:00:00 2001
From: LibreMiami <packaging-guix@libremiami.org>
Date: Thu, 25 Feb 2021 01:46:15 +0000
Subject: [PATCH] gnu: Add go-github-com-operatorfoundation-ed25519.

* gnu/packages/golang.scm (go-github-com-operatorfoundation-ed25519):
New variable.

Co-authored-by: jgart <jgart@dismail.de>
Co-authored-by: Julien Lepiller <roptat@lepiller.eu>
Co-authored-by: Ryan Prior <rprior@protonmail.com>
Co-authored-by: Raghav Gururajan <rg@raghavgururajan.name>
Co-authored-by: Yasuaki Kudo <yasu@yasuaki.com>
Co-authored-by: Stephen Paul Weber <singpolyma@singpolyma.net>
---
 gnu/packages/golang.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3895e8983c..d83745b5ba 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6067,3 +6067,36 @@ modifying them.")
     (description "Statik allows you to embed a directory of static files into
 your Go binary to be later served from an http.")
     (license license:asl2.0)))
+
+(define-public go-github-com-operatorfoundation-ed25519
+  (let ((commit "b22b4bd3ddef042eec45f3ee135cd40281fde2b4")
+        (revision "0"))
+    (package
+      (name "go-github-com-operatorfoundation-ed25519")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri
+          (git-reference
+           (url "https://github.com/OperatorFoundation/ed25519")
+           (commit commit)))
+         (file-name
+          (git-file-name name version))
+         (sha256
+          (base32 "0xrzqrjlghkgd1cy5rj4khryn4f59vas2vzrxc6d8jpj5ijf3xkv"))))
+      (build-system go-build-system)
+      (arguments
+       `(#:import-path "github.com/OperatorFoundation/ed25519"
+         #:phases
+         (modify-phases %standard-phases
+           (add-before 'install 'remove-test-data
+             (lambda* (#:key import-path #:allow-other-keys)
+               (delete-file-recursively
+                 (string-append "src/" import-path "/testdata"))
+               #t)))))
+      (home-page "https://github.com/OperatorFoundation/ed25519")
+      (synopsis "Ed25519 for go")
+      (description "Package ed25519 implements the Ed25519 signature
+algorithm.")
+      (license license:bsd-3))))
-- 
2.20.1


             reply	other threads:[~2021-02-25  5:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-25  5:19 jgart via Guix-patches via [this message]
2021-02-25 13:06 ` bug#46763: [PATCH] gnu: Add go-github-com-operatorfoundation-ed25519 Julien Lepiller

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=3bc921476040ac60234f58d2427763e3@dismail.de \
    --to=guix-patches@gnu.org \
    --cc=46763@debbugs.gnu.org \
    --cc=jgart@dismail.de \
    --cc=rg@raghavgururajan.name \
    --cc=roptat@lepiller.eu \
    --cc=rprior@protonmail.com \
    --cc=singpolyma@singpolyma.net \
    --cc=yasu@yasuaki.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 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.