[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
49/74: gnu: go-github-com-oneofone-xxhash: Move to golang-crypto.
From: |
guix-commits |
Subject: |
49/74: gnu: go-github-com-oneofone-xxhash: Move to golang-crypto. |
Date: |
Thu, 25 Jul 2024 18:02:27 -0400 (EDT) |
sharlatan pushed a commit to branch go-team
in repository guix.
commit da5d887f6fd9240f504f02bb42c10183b4d85ab2
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Thu Jul 25 12:42:53 2024 +0100
gnu: go-github-com-oneofone-xxhash: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-oneofone-xxhash): Move from
here ...
* gnu/packages/golang-crypto.scm: ... to here.
Change-Id: I3cd79794512c92819771d1a639864c8218c1bdbc
---
gnu/packages/golang-crypto.scm | 32 ++++++++++++++++++++++++++++++++
gnu/packages/golang.scm | 30 ------------------------------
2 files changed, 32 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 3fbeac703b..e89c486bcc 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2021 BonfaceKilz <me@bonfacemunyoki.com>
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
@@ -1068,6 +1069,37 @@ Architecture Processors\" by J. Guilford et al.")
(description "Multihash implementation in Go.")
(license license:expat)))
+(define-public go-github-com-oneofone-xxhash
+ (package
+ (name "go-github-com-oneofone-xxhash")
+ (version "1.2.8")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/OneOfOne/xxhash")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0f98qk83l2fhpclvrgyxsa9b8m4pipf11fah85bnjl01wy4lvybw"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/OneOfOne/xxhash"
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-benchmarks
+ (lambda* (#:key import-path #:allow-other-keys)
+ (delete-file-recursively
+ (string-append "src/" import-path "/benchmarks")))))))
+ (home-page "https://github.com/OneOfOne/xxhash")
+ (synopsis "Go implementation of xxHash")
+ (description
+ "This is a native Go implementation of the
+@url{https://github.com/Cyan4973/xxHash, xxHash} algorithm, an extremely fast
+non-cryptographic hash algorithm, working at speeds close to RAM limits.")
+ (license license:asl2.0)))
+
(define-public go-github-com-operatorfoundation-ed25519
(let ((commit "b22b4bd3ddef042eec45f3ee135cd40281fde2b4")
(revision "0"))
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3c19f5abb1..2c5f496b2e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8013,36 +8013,6 @@ friendly sizes. It converts boring ugly numbers to
human-friendly strings and
back.")
(license license:expat)))
-(define-public go-github-com-oneofone-xxhash
- (package
- (name "go-github-com-oneofone-xxhash")
- (version "1.2.8")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/OneOfOne/xxhash")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0f98qk83l2fhpclvrgyxsa9b8m4pipf11fah85bnjl01wy4lvybw"))))
- (build-system go-build-system)
- (arguments
- (list
- #:import-path "github.com/OneOfOne/xxhash"
- #:phases #~(modify-phases %standard-phases
- (add-after 'unpack 'remove-benchmarks
- (lambda* (#:key import-path #:allow-other-keys)
- (delete-file-recursively
- (string-append "src/" import-path "/benchmarks")))))))
- (home-page "https://github.com/OneOfOne/xxhash")
- (synopsis "Go implementation of xxHash")
- (description "This is a native Go implementation of the
-@url{https://github.com/Cyan4973/xxHash, xxHash} algorithm, an extremely fast
-non-cryptographic hash algorithm, working at speeds close to RAM limits.")
- (license license:asl2.0)))
-
(define-public go-gopkg-in-djherbis-times-v1
(package
(name "go-gopkg-in-djherbis-times-v1")
- 30/74: gnu: Add go-tomlv., (continued)
- 30/74: gnu: Add go-tomlv., guix-commits, 2024/07/25
- 36/74: gnu: go-github-com-jpillora-backoff: Move to golang-xyz., guix-commits, 2024/07/25
- 42/74: gnu: go-github-com-prometheus-common: Remove submodules., guix-commits, 2024/07/25
- 43/74: gnu: go-github-com-prometheus-common: Update to 0.55.0., guix-commits, 2024/07/25
- 51/74: gnu: Add go-github-com-cespare-xxhash., guix-commits, 2024/07/25
- 54/74: gnu: go-github-com-prometheus-client-golang: Update to 1.19.1., guix-commits, 2024/07/25
- 63/74: gnu: go-netns: Fix indentation., guix-commits, 2024/07/25
- 37/74: gnu: go-github-com-jpillora-backoff: Update to 1.0.0-1.fab01a9., guix-commits, 2024/07/25
- 41/74: gnu: Add go-github-com-go-kit-log., guix-commits, 2024/07/25
- 44/74: gnu: go-github-com-prometheus-common: Enable tests., guix-commits, 2024/07/25
- 49/74: gnu: go-github-com-oneofone-xxhash: Move to golang-crypto.,
guix-commits <=
- 57/74: gnu: go-github-com-nbrownus-go-metrics-prometheus: Move to prometheus., guix-commits, 2024/07/25
- 70/74: gnu: go-github-com-bits-and-blooms-bloom: Update to 3.7.0., guix-commits, 2024/07/25
- 62/74: gnu: go-netns: Update to 0.0.4., guix-commits, 2024/07/25
- 39/74: gnu: Add go-github-com-mwitkow-go-conntrack., guix-commits, 2024/07/25
- 50/74: gnu: go-github-com-cespare-xxhash: Rename variable., guix-commits, 2024/07/25
- 66/74: gnu: go-netlink: Update to 1.1.0., guix-commits, 2024/07/25
- 74/74: gnu: yggdrasil: Enable tests., guix-commits, 2024/07/25
- 73/74: gnu: yggdrasil: Adjust inputs., guix-commits, 2024/07/25
- 04/74: gnu: go-github-com-coreos-go-oidc-v3: Update to 3.11.0., guix-commits, 2024/07/25
- 08/74: gnu: go-github-com-google-go-cmp-cmp: Rename variable., guix-commits, 2024/07/25