all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#69047] [PATCH] gnu: go-github-com-oneofone-xxhash: Remove benchmarks.
@ 2024-02-11 11:17 Troy Figiel
  2024-02-11 11:17 ` [bug#69047] [PATCH v2] " Troy Figiel
  2024-02-13 21:37 ` bug#69047: [PATCH] " Sharlatan Hellseher
  0 siblings, 2 replies; 3+ messages in thread
From: Troy Figiel @ 2024-02-11 11:17 UTC (permalink / raw)
  To: 69047

* gnu/packages/golang.scm (go-github-com-oneofone-xxhash)[source]: Remove benchmarks.
---
 gnu/packages/golang.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 163691a1e6..ccbd9bf8f4 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -10225,7 +10225,9 @@ (define-public go-github-com-oneofone-xxhash
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0f98qk83l2fhpclvrgyxsa9b8m4pipf11fah85bnjl01wy4lvybw"))))
+         "0f98qk83l2fhpclvrgyxsa9b8m4pipf11fah85bnjl01wy4lvybw"))
+       (modules '((guix build utils)))
+       (snippet '(delete-file-recursively "benchmarks"))))
     (build-system go-build-system)
     (arguments
      '(#:import-path "github.com/OneOfOne/xxhash"))

base-commit: b6439fc5f800b5d22d48192bc347be794f050329
-- 
2.42.0





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

* [bug#69047] [PATCH v2] gnu: go-github-com-oneofone-xxhash: Remove benchmarks.
  2024-02-11 11:17 [bug#69047] [PATCH] gnu: go-github-com-oneofone-xxhash: Remove benchmarks Troy Figiel
@ 2024-02-11 11:17 ` Troy Figiel
  2024-02-13 21:37 ` bug#69047: [PATCH] " Sharlatan Hellseher
  1 sibling, 0 replies; 3+ messages in thread
From: Troy Figiel @ 2024-02-11 11:17 UTC (permalink / raw)
  To: 69047

* gnu/packages/golang.scm (go-github-com-oneofone-xxhash): Remove benchmarks.
[arguments]<#:phases>: Add remove-benchmarks phase.
---
 gnu/packages/golang.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 163691a1e6..2d52dbaa19 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -10228,7 +10228,13 @@ (define-public go-github-com-oneofone-xxhash
          "0f98qk83l2fhpclvrgyxsa9b8m4pipf11fah85bnjl01wy4lvybw"))))
     (build-system go-build-system)
     (arguments
-     '(#:import-path "github.com/OneOfOne/xxhash"))
+     (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

base-commit: 16d2be641424815a1779119bb64bc6ba1be1161b
-- 
2.42.0





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

* bug#69047: [PATCH] gnu: go-github-com-oneofone-xxhash: Remove benchmarks.
  2024-02-11 11:17 [bug#69047] [PATCH] gnu: go-github-com-oneofone-xxhash: Remove benchmarks Troy Figiel
  2024-02-11 11:17 ` [bug#69047] [PATCH v2] " Troy Figiel
@ 2024-02-13 21:37 ` Sharlatan Hellseher
  1 sibling, 0 replies; 3+ messages in thread
From: Sharlatan Hellseher @ 2024-02-13 21:37 UTC (permalink / raw)
  To: 69047-done

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


Hi,

Pushed as 73867181830f5cb8d885a5404147ef675b1db707 to master.

--
Oleg

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

end of thread, other threads:[~2024-02-13 21:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-11 11:17 [bug#69047] [PATCH] gnu: go-github-com-oneofone-xxhash: Remove benchmarks Troy Figiel
2024-02-11 11:17 ` [bug#69047] [PATCH v2] " Troy Figiel
2024-02-13 21:37 ` bug#69047: [PATCH] " Sharlatan Hellseher

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.