unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#45547] [PATCH] gnu: Add wyhash.
@ 2020-12-30  4:12 Ryan Prior via Guix-patches via
  2020-12-30  4:12 ` [bug#45546] [PATCH] gnu: esbuild: Update to 0.8.27 Ryan Prior via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Ryan Prior via Guix-patches via @ 2020-12-30  4:12 UTC (permalink / raw)
  To: 45547

* gnu/packages/datastructures.scm (wyhash): New variable.
---
 gnu/packages/datastructures.scm | 34 ++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm
index 2911a0c550..49e363d09e 100644
--- a/gnu/packages/datastructures.scm
+++ b/gnu/packages/datastructures.scm
@@ -5,6 +5,7 @@
 ;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2020 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
+;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -33,7 +34,38 @@
   #:use-module (guix git-download)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
-  #:use-module (guix build-system meson))
+  #:use-module (guix build-system meson)
+  #:use-module (guix build-system trivial))
+
+(define-public wyhash
+  (package
+    (name "wyhash")
+    (version "5")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/wangyi-fudan/wyhash")
+                    (commit (string-append "wyhash_v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32 "03ljs5iw9zrm3bydwggjvpwrcwmsd75h3dv1j4am4hw3h22cjdjc"))))
+    (build-system trivial-build-system) ;; source-only package
+    (arguments
+     '(#:modules ((guix build utils))
+       #:builder
+       (begin
+         (use-modules (guix build utils))
+         (let ((dest (string-append (assoc-ref %outputs "out") "/include")))
+           (mkdir-p dest)
+           (chdir (assoc-ref %build-inputs "source"))
+           (install-file "wyhash.h" dest))
+         #t)))
+    (home-page "https://github.com/wangyi-fudan/wyhash")
+    (synopsis "Embeddable hash function and random number generator.")
+    (description "This package provides a portable hash function and random
+number generator suitable for use in data structures.  Provided by default in
+Zig, V, and Nim programming language standard libraries.")
+    (license license:unlicense)))
 
 (define-public gdsl
   (package
-- 
2.29.2






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

* [bug#45546] [PATCH] gnu: esbuild: Update to 0.8.27.
  2020-12-30  4:12 [bug#45547] [PATCH] gnu: Add wyhash Ryan Prior via Guix-patches via
@ 2020-12-30  4:12 ` Ryan Prior via Guix-patches via
  2020-12-30 23:34   ` Leo Famulari
  2020-12-30  4:12 ` [bug#45547] [PATCH] gnu: zrythm: Update to 1.0.0-alpha.6.0.1 Ryan Prior via Guix-patches via
  2020-12-30 23:04 ` [bug#45547] [PATCH] gnu: Add wyhash Leo Famulari
  2 siblings, 1 reply; 6+ messages in thread
From: Ryan Prior via Guix-patches via @ 2020-12-30  4:12 UTC (permalink / raw)
  To: 45546

* gnu/packages/web.scm (esbuild): Update to 0.8.27.
---
 gnu/packages/web.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index b706e1d216..6a6f5f306b 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -1486,7 +1486,7 @@ used to validate and fix HTML data.")
 (define-public esbuild
   (package
     (name "esbuild")
-    (version "0.8.26")
+    (version "0.8.27")
     (source
      (origin
        (method git-fetch)
@@ -1495,7 +1495,7 @@ used to validate and fix HTML data.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0zw68mgmmicbkvx7s22knvm8nng5qn41b1chn35prhkla3kx1jn1"))
+        (base32 "1n9h6r3q6mik7p5j0cyybh1sdcllig0awbryrx28r03cxv4ip2ij"))
        (modules '((guix build utils)))
        (snippet
         '(begin
-- 
2.29.2






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

* [bug#45547] [PATCH] gnu: zrythm: Update to 1.0.0-alpha.6.0.1.
  2020-12-30  4:12 [bug#45547] [PATCH] gnu: Add wyhash Ryan Prior via Guix-patches via
  2020-12-30  4:12 ` [bug#45546] [PATCH] gnu: esbuild: Update to 0.8.27 Ryan Prior via Guix-patches via
@ 2020-12-30  4:12 ` Ryan Prior via Guix-patches via
  2020-12-30 23:41   ` bug#45547: " Leo Famulari
  2020-12-30 23:04 ` [bug#45547] [PATCH] gnu: Add wyhash Leo Famulari
  2 siblings, 1 reply; 6+ messages in thread
From: Ryan Prior via Guix-patches via @ 2020-12-30  4:12 UTC (permalink / raw)
  To: 45547

* gnu/packages/music.scm (zrythm): Update to 1.0.0-alpha.6.0.1.
---
 gnu/packages/music.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 3c8d3c5881..f889d571c1 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -32,6 +32,7 @@
 ;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
 ;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
 ;;; Copyright © 2019 Riku Viitanen <riku.viitanen0@gmail.com>
+;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -5782,7 +5783,7 @@ and as an LV2 plugin.")
     ;; distros to make necessary changes to integrate the software into the
     ;; distribution.
     (name "zrythm")
-    (version "1.0.0-alpha.3.0.1")
+    (version "1.0.0-alpha.6.0.1")
     (source
       (origin
         (method url-fetch)
@@ -5790,7 +5791,7 @@ and as an LV2 plugin.")
                             version ".tar.xz"))
         (sha256
           (base32
-            "06025367x08y4g9grhcn35bk1dsrpgm04c8l8j50i3p49dl3s1n0"))))
+           "1zfky3yj0k0rmbxighlk9sp4fsgw8rj7viv44yv626kldfvc04ab"))))
    (build-system meson-build-system)
    (arguments
     `(#:glib-or-gtk? #t
-- 
2.29.2






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

* [bug#45547] [PATCH] gnu: Add wyhash.
  2020-12-30  4:12 [bug#45547] [PATCH] gnu: Add wyhash Ryan Prior via Guix-patches via
  2020-12-30  4:12 ` [bug#45546] [PATCH] gnu: esbuild: Update to 0.8.27 Ryan Prior via Guix-patches via
  2020-12-30  4:12 ` [bug#45547] [PATCH] gnu: zrythm: Update to 1.0.0-alpha.6.0.1 Ryan Prior via Guix-patches via
@ 2020-12-30 23:04 ` Leo Famulari
  2 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2020-12-30 23:04 UTC (permalink / raw)
  To: 45547

On Wed, Dec 30, 2020 at 04:12:32AM +0000, Ryan Prior via Guix-patches via wrote:
> * gnu/packages/datastructures.scm (wyhash): New variable.

Thanks!

Can you move it to digest.scm and make it install the license file in
"$out/share/doc/wyhash-5"?

You can construct that path like this:

(let* ((out ...)
       (doc (string-append out "/share/doc/" ,name "-" ,version))))

> +    (arguments
> +     '(#:modules ((guix build utils))

The body of arguments will have to be quasiquoted for this to work. That
is, ` instead of '




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

* [bug#45546] [PATCH] gnu: esbuild: Update to 0.8.27.
  2020-12-30  4:12 ` [bug#45546] [PATCH] gnu: esbuild: Update to 0.8.27 Ryan Prior via Guix-patches via
@ 2020-12-30 23:34   ` Leo Famulari
  0 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2020-12-30 23:34 UTC (permalink / raw)
  To: 45546; +Cc: 45546-done

On Wed, Dec 30, 2020 at 04:12:39AM +0000, Ryan Prior via Guix-patches via wrote:
> * gnu/packages/web.scm (esbuild): Update to 0.8.27.

Thanks! Pushed as d598e43f03e288dba420821dcf4397bc37700c6d




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

* bug#45547: [PATCH] gnu: zrythm: Update to 1.0.0-alpha.6.0.1.
  2020-12-30  4:12 ` [bug#45547] [PATCH] gnu: zrythm: Update to 1.0.0-alpha.6.0.1 Ryan Prior via Guix-patches via
@ 2020-12-30 23:41   ` Leo Famulari
  0 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2020-12-30 23:41 UTC (permalink / raw)
  To: Ryan Prior via Guix-patches via; +Cc: 45547-done

On Wed, Dec 30, 2020 at 04:12:52AM +0000, Ryan Prior via Guix-patches via wrote:
> * gnu/packages/music.scm (zrythm): Update to 1.0.0-alpha.6.0.1.

Thanks! Pushed as 0492cc2f5078d78d2adfaa1c2cd38dff964b579d




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

end of thread, other threads:[~2020-12-30 23:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-30  4:12 [bug#45547] [PATCH] gnu: Add wyhash Ryan Prior via Guix-patches via
2020-12-30  4:12 ` [bug#45546] [PATCH] gnu: esbuild: Update to 0.8.27 Ryan Prior via Guix-patches via
2020-12-30 23:34   ` Leo Famulari
2020-12-30  4:12 ` [bug#45547] [PATCH] gnu: zrythm: Update to 1.0.0-alpha.6.0.1 Ryan Prior via Guix-patches via
2020-12-30 23:41   ` bug#45547: " Leo Famulari
2020-12-30 23:04 ` [bug#45547] [PATCH] gnu: Add wyhash Leo Famulari

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).