all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#46763] [PATCH] gnu: Add go-github-com-operatorfoundation-ed25519.
@ 2021-02-25  5:19 jgart via Guix-patches via
  2021-02-25 13:06 ` bug#46763: " Julien Lepiller
  0 siblings, 1 reply; 2+ messages in thread
From: jgart via Guix-patches via @ 2021-02-25  5:19 UTC (permalink / raw)
  To: 46763; +Cc: yasu, rg, rprior, singpolyma, roptat

[-- 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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#46763: [PATCH] gnu: Add go-github-com-operatorfoundation-ed25519.
  2021-02-25  5:19 [bug#46763] [PATCH] gnu: Add go-github-com-operatorfoundation-ed25519 jgart via Guix-patches via
@ 2021-02-25 13:06 ` Julien Lepiller
  0 siblings, 0 replies; 2+ messages in thread
From: Julien Lepiller @ 2021-02-25 13:06 UTC (permalink / raw)
  To: 46763-done; +Cc: yasu, rg, rprior, jgart, singpolyma

Le Thu, 25 Feb 2021 05:19:29 +0000,
jgart via Guix-patches via <guix-patches@gnu.org> a écrit :

> 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

Thank you everyone! Pushed after some small changes to the whitespace,
and my email address, as a2ece4da1fdccb9e94681e38a3f3a79b0d43e061.

That was a very good experience with all of you, I hope you enjoyed it
as much as I did. I'm looking forward to talking to you again next
month :)




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-02-25 13:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-25  5:19 [bug#46763] [PATCH] gnu: Add go-github-com-operatorfoundation-ed25519 jgart via Guix-patches via
2021-02-25 13:06 ` bug#46763: " Julien Lepiller

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.