From unknown Tue Jun 17 22:27:15 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#45547] [PATCH] gnu: Add wyhash. Resent-From: Ryan Prior Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 30 Dec 2020 04:13:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 45547 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 45547@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Reply-To: Ryan Prior Received: via spool by submit@debbugs.gnu.org id=B.160930158226888 (code B ref -1); Wed, 30 Dec 2020 04:13:03 +0000 Received: (at submit) by debbugs.gnu.org; 30 Dec 2020 04:13:02 +0000 Received: from localhost ([127.0.0.1]:40710 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuSr8-0006zW-3l for submit@debbugs.gnu.org; Tue, 29 Dec 2020 23:13:02 -0500 Received: from lists.gnu.org ([209.51.188.17]:51730) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuSqr-0006yi-Uu for submit@debbugs.gnu.org; Tue, 29 Dec 2020 23:13:00 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:36336) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kuSqr-0003sK-EZ for guix-patches@gnu.org; Tue, 29 Dec 2020 23:12:45 -0500 Received: from mail-40136.protonmail.ch ([185.70.40.136]:64798) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kuSqn-0002y2-C1 for guix-patches@gnu.org; Tue, 29 Dec 2020 23:12:43 -0500 Date: Wed, 30 Dec 2020 04:12:32 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1609301556; bh=JnUqPYbZkyePl8WXvw6RyeaE0Twld/xeNFZHiPZ5sm4=; h=Date:To:From:Reply-To:Subject:From; b=NIvCW6FpOP+wQnNSTxCoavHKcEjTrVe5RDBQC5DtiUkxpQ15NMyzO2MapmB9in+AW ufSLHu/nfYxZNvyKAg87841sUxVW3oDq22nwqqQfk9uhNo7MiVfqGj2n4r/dRi5ByI 69xLBSBA7ktMc41iVBn28dR3s0eCRlqhIleA+xuE= From: Ryan Prior Message-ID: <20201230041228.17076-1-rprior@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.40.136; envelope-from=rprior@protonmail.com; helo=mail-40136.protonmail.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.5 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * 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 + [...] Content analysis details: (1.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (rprior[at]protonmail.com) -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 T_SPF_TEMPERROR SPF: test of record failed (temperror) 1.5 SPOOFED_FREEMAIL No description available. X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * 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 =C2=A9 2019, 2020 Efraim Flashner ;;; Copyright =C2=A9 2020 Mark H Weaver ;;; Copyright =C2=A9 2020 Marius Bakke +;;; Copyright =C2=A9 2020 Ryan Prior ;;; ;;; 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 "03ljs5iw9zrm3bydwggjvpwrcwmsd75h3dv1j4am4hw3h22cjd= jc")))) + (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 rando= m +number generator suitable for use in data structures. Provided by default= in +Zig, V, and Nim programming language standard libraries.") + (license license:unlicense))) =20 (define-public gdsl (package --=20 2.29.2 From unknown Tue Jun 17 22:27:15 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#45547] [PATCH] gnu: zrythm: Update to 1.0.0-alpha.6.0.1. Resent-From: Ryan Prior Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 30 Dec 2020 04:14:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 45547 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 45547@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Reply-To: Ryan Prior Received: via spool by submit@debbugs.gnu.org id=B.160930158726945 (code B ref -1); Wed, 30 Dec 2020 04:14:02 +0000 Received: (at submit) by debbugs.gnu.org; 30 Dec 2020 04:13:07 +0000 Received: from localhost ([127.0.0.1]:40716 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuSrC-00070W-NL for submit@debbugs.gnu.org; Tue, 29 Dec 2020 23:13:07 -0500 Received: from lists.gnu.org ([209.51.188.17]:51738) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuSr6-0006zC-I2 for submit@debbugs.gnu.org; Tue, 29 Dec 2020 23:13:01 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:36378) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kuSr6-0003sZ-Cl for guix-patches@gnu.org; Tue, 29 Dec 2020 23:13:00 -0500 Received: from mail-40131.protonmail.ch ([185.70.40.131]:36352) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kuSr4-000362-IE for guix-patches@gnu.org; Tue, 29 Dec 2020 23:13:00 -0500 Date: Wed, 30 Dec 2020 04:12:52 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1609301576; bh=DZel7sDz9bsjZOn6xzAgKs24KgwDojNWrB4roKvTaCU=; h=Date:To:From:Reply-To:Subject:In-Reply-To:References:From; b=nUwi2/qZXtdWvWa0LBl1+qUGqF/ceUVZeDPRRocvJnqb1KgduEpStNPqFds/ZLFwt kgSQll9HSMvPFOqOinX52qQD+TFEFoWiRvAeh6KZLzwEVMw+rRla/NwVYEsk199dEx DlcF65GNL73DVnseas45z2iuW2AxXnAn+/PN8lXw= From: Ryan Prior Message-ID: <20201230041228.17076-3-rprior@protonmail.com> In-Reply-To: <20201230041228.17076-1-rprior@protonmail.com> References: <20201230041228.17076-1-rprior@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.40.131; envelope-from=rprior@protonmail.com; helo=mail-40131.protonmail.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * 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 =C2=A9 2020 Tanguy Le Carrour ;;; Copyright =C2=A9 2020 Marius Bakke ;;; Copyright =C2=A9 2019 Riku Viitanen +;;; Copyright =C2=A9 2020 Ryan Prior ;;; ;;; 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 th= e ;; 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 --=20 2.29.2 From unknown Tue Jun 17 22:27:15 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#45547] [PATCH] gnu: Add wyhash. Resent-From: Leo Famulari Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 30 Dec 2020 23:05:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 45547 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 45547@debbugs.gnu.org X-Debbugs-Original-To: Ryan Prior via Guix-patches via X-Debbugs-Original-Cc: 45547@debbugs.gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16093694776560 (code B ref -1); Wed, 30 Dec 2020 23:05:02 +0000 Received: (at submit) by debbugs.gnu.org; 30 Dec 2020 23:04:37 +0000 Received: from localhost ([127.0.0.1]:51459 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kukWC-0001hk-N7 for submit@debbugs.gnu.org; Wed, 30 Dec 2020 18:04:36 -0500 Received: from lists.gnu.org ([209.51.188.17]:55158) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kukWA-0001hW-Gu for submit@debbugs.gnu.org; Wed, 30 Dec 2020 18:04:34 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:60446) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kukWA-0001CK-AB for guix-patches@gnu.org; Wed, 30 Dec 2020 18:04:34 -0500 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:53387) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kukW7-0000zp-OQ for guix-patches@gnu.org; Wed, 30 Dec 2020 18:04:33 -0500 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.west.internal (Postfix) with ESMTP id CA5C39C4; Wed, 30 Dec 2020 18:04:29 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute3.internal (MEProxy); Wed, 30 Dec 2020 18:04:30 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=SmZeNlg4wcdmRlnB07r/sETH IbYFFwXKrvOOtW+XyTc=; b=iP40eVDqYcTmNKYL5KDyZRsGYYTPojJChqTJqjSQ a9MrfVqJGfn9v40ixuTHq3aOz/jjQK82XMx+w7NvPDfIPyvsV/ERwTDwdO21WeDN 1Gv3NhjL6r2DcbapaaiHXR9mNHEe9x8ZxdwnUnLJCNm9qetRiFaGlFPRoeZu1dVH XWQ= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=SmZeNl g4wcdmRlnB07r/sETHIbYFFwXKrvOOtW+XyTc=; b=Fpr5FQBS4PeustuArDu8p1 UA+tK/NqZcn7YTPbOphXYXU9IXyBNHDgdwf92T2+ifw6tUsusks5SkYXHXqYMlKm tSvJO4CNXvRGzeDG/z5g4kasCl1LePod9nrIHYfczmpRYWkbiAKOSVxKrpt8Pdag K6f/giWFh1tjRYDn7sOHPwOdOvCeUykLuP3RZOZ84x9R6EGauWuAoHnA6kEVKtz7 UxJscuz6JA/+sjRP9s+mTr9bQ9IGkyPwEIkib0TG4omgov5oDtRVHvM+zJQqPnrw NVjCi5R7LuPZxk57uSoEmZMF+5gF4el21kimuZvUDoXy5OrN/rMy92OSL61JwN/w == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrvddvgedgtdekucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtuggjsehttdertddttddvnecuhfhrohhmpefnvghoucfh rghmuhhlrghrihcuoehlvghosehfrghmuhhlrghrihdrnhgrmhgvqeenucggtffrrghtth gvrhhnpeeukeektdffvddtudegjeegtdevhfeufeeivdejiedtieegtdevjedvjeehffev gfenucfkphepjeefrddugedurdduvdejrddugeeinecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (c-73-141-127-146.hsd1.pa.comcast.net [73.141.127.146]) by mail.messagingengine.com (Postfix) with ESMTPA id D4735240062; Wed, 30 Dec 2020 18:04:28 -0500 (EST) Date: Wed, 30 Dec 2020 18:04:26 -0500 From: Leo Famulari Message-ID: References: <20201230041228.17076-1-rprior@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201230041228.17076-1-rprior@protonmail.com> Received-SPF: pass client-ip=64.147.123.24; envelope-from=leo@famulari.name; helo=wout1-smtp.messagingengine.com X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) 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 ' From unknown Tue Jun 17 22:27:15 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#45547] [PATCH] gnu: zrythm: Update to 1.0.0-alpha.6.0.1. Resent-From: Leo Famulari Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 30 Dec 2020 23:42:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 45547 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 45547@debbugs.gnu.org Cc: 45547-done@debbugs.gnu.org X-Debbugs-Original-To: Ryan Prior via Guix-patches via Received: via spool by submit@debbugs.gnu.org id=B.160937171510057 (code B ref -1); Wed, 30 Dec 2020 23:42:02 +0000 Received: (at submit) by debbugs.gnu.org; 30 Dec 2020 23:41:55 +0000 Received: from localhost ([127.0.0.1]:51497 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kul6J-0002c9-IL for submit@debbugs.gnu.org; Wed, 30 Dec 2020 18:41:55 -0500 Received: from lists.gnu.org ([209.51.188.17]:38570) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kul6H-0002bu-Hh for submit@debbugs.gnu.org; Wed, 30 Dec 2020 18:41:54 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:38364) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kul6G-0000Ad-UZ for guix-patches@gnu.org; Wed, 30 Dec 2020 18:41:52 -0500 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:46845) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kul6E-0005dO-Lu for guix-patches@gnu.org; Wed, 30 Dec 2020 18:41:52 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id A92CC8F9; Wed, 30 Dec 2020 18:41:48 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Wed, 30 Dec 2020 18:41:48 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=1NVB2poaz9y0RnJB3D3WPfH2 1gjHeJ4wDLlIZ3w4Cqk=; b=EebTvSMF+YBku7ImlL4mZoh6F9+B5amw1RUUShJ5 3uTedPFZGJIFBO/U2pFKDNFNfvUrGHruKnln4+k6/KQq7Fd0zdj+0qLXQ24ItV9e A08Egkrfg5yw5VV1O+jSpz7UWYjEL8/pYsB9gr3N8eM5J3Kc334HxfGjohH8TJns y4A= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=1NVB2p oaz9y0RnJB3D3WPfH21gjHeJ4wDLlIZ3w4Cqk=; b=qlIMCu+E3vuKorFexuYQih 822/jv0NqF3+dj5QbUqDtsqKKx1vuJiNvXQeb+ihWoff1jLw1Cdm2dEJG6qJVLJ3 Ulr1yg+ZmgFC8O4ijAaIEIRYu7OyygstBSfYvc90jU4U+cPpkbsle/2X1MNdUjLf pUu5azQ86aVgzMvdCQFVRf3bTfU4l75mLBpwJPM2Xd4UrnP4v2YmIVkjTAyJn+FR nJ+T/ZXoglT4L/vRw3CiPUDArJdtPey6zw/uYakhqBKSyM1PDea3fcSu3VHfO3Ct TvUnXz0BwTnWvqqoE0q9xN7Ae5ldeatvbsxBDrag+6klK2GASVOrwIiHdGKTZ4Vw == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrvddvgedgudegucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtuggjsehttdertddttddvnecuhfhrohhmpefnvghoucfh rghmuhhlrghrihcuoehlvghosehfrghmuhhlrghrihdrnhgrmhgvqeenucggtffrrghtth gvrhhnpeeukeektdffvddtudegjeegtdevhfeufeeivdejiedtieegtdevjedvjeehffev gfenucfkphepjeefrddugedurdduvdejrddugeeinecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (c-73-141-127-146.hsd1.pa.comcast.net [73.141.127.146]) by mail.messagingengine.com (Postfix) with ESMTPA id D7074240062; Wed, 30 Dec 2020 18:41:47 -0500 (EST) Date: Wed, 30 Dec 2020 18:41:46 -0500 From: Leo Famulari Message-ID: References: <20201230041228.17076-1-rprior@protonmail.com> <20201230041228.17076-3-rprior@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201230041228.17076-3-rprior@protonmail.com> Received-SPF: pass client-ip=64.147.123.24; envelope-from=leo@famulari.name; helo=wout1-smtp.messagingengine.com X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) 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 From unknown Tue Jun 17 22:27:15 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Ryan Prior Subject: bug#45547: closed (Re: [bug#45547] [PATCH] gnu: zrythm: Update to 1.0.0-alpha.6.0.1.) Message-ID: References: <20201230041228.17076-1-rprior@protonmail.com> X-Gnu-PR-Message: they-closed 45547 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 45547@debbugs.gnu.org Date: Wed, 30 Dec 2020 23:42:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1609371723-10085-1" This is a multi-part message in MIME format... ------------=_1609371723-10085-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #45547: [PATCH] gnu: Add wyhash. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 45547@debbugs.gnu.org. --=20 45547: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D45547 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1609371723-10085-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 45547-done) by debbugs.gnu.org; 30 Dec 2020 23:42:00 +0000 Received: from localhost ([127.0.0.1]:51499 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kul6N-0002cK-Qw for submit@debbugs.gnu.org; Wed, 30 Dec 2020 18:42:00 -0500 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:59191) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kul6I-0002bo-DW for 45547-done@debbugs.gnu.org; Wed, 30 Dec 2020 18:41:54 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id A92CC8F9; Wed, 30 Dec 2020 18:41:48 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Wed, 30 Dec 2020 18:41:48 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=1NVB2poaz9y0RnJB3D3WPfH2 1gjHeJ4wDLlIZ3w4Cqk=; b=EebTvSMF+YBku7ImlL4mZoh6F9+B5amw1RUUShJ5 3uTedPFZGJIFBO/U2pFKDNFNfvUrGHruKnln4+k6/KQq7Fd0zdj+0qLXQ24ItV9e A08Egkrfg5yw5VV1O+jSpz7UWYjEL8/pYsB9gr3N8eM5J3Kc334HxfGjohH8TJns y4A= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=1NVB2p oaz9y0RnJB3D3WPfH21gjHeJ4wDLlIZ3w4Cqk=; b=qlIMCu+E3vuKorFexuYQih 822/jv0NqF3+dj5QbUqDtsqKKx1vuJiNvXQeb+ihWoff1jLw1Cdm2dEJG6qJVLJ3 Ulr1yg+ZmgFC8O4ijAaIEIRYu7OyygstBSfYvc90jU4U+cPpkbsle/2X1MNdUjLf pUu5azQ86aVgzMvdCQFVRf3bTfU4l75mLBpwJPM2Xd4UrnP4v2YmIVkjTAyJn+FR nJ+T/ZXoglT4L/vRw3CiPUDArJdtPey6zw/uYakhqBKSyM1PDea3fcSu3VHfO3Ct TvUnXz0BwTnWvqqoE0q9xN7Ae5ldeatvbsxBDrag+6klK2GASVOrwIiHdGKTZ4Vw == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrvddvgedgudegucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtuggjsehttdertddttddvnecuhfhrohhmpefnvghoucfh rghmuhhlrghrihcuoehlvghosehfrghmuhhlrghrihdrnhgrmhgvqeenucggtffrrghtth gvrhhnpeeukeektdffvddtudegjeegtdevhfeufeeivdejiedtieegtdevjedvjeehffev gfenucfkphepjeefrddugedurdduvdejrddugeeinecuvehluhhsthgvrhfuihiivgeptd enucfrrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (c-73-141-127-146.hsd1.pa.comcast.net [73.141.127.146]) by mail.messagingengine.com (Postfix) with ESMTPA id D7074240062; Wed, 30 Dec 2020 18:41:47 -0500 (EST) Date: Wed, 30 Dec 2020 18:41:46 -0500 From: Leo Famulari To: Ryan Prior via Guix-patches via Subject: Re: [bug#45547] [PATCH] gnu: zrythm: Update to 1.0.0-alpha.6.0.1. Message-ID: References: <20201230041228.17076-1-rprior@protonmail.com> <20201230041228.17076-3-rprior@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201230041228.17076-3-rprior@protonmail.com> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 45547-done Cc: 45547-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) 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 ------------=_1609371723-10085-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 30 Dec 2020 04:13:02 +0000 Received: from localhost ([127.0.0.1]:40710 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuSr8-0006zW-3l for submit@debbugs.gnu.org; Tue, 29 Dec 2020 23:13:02 -0500 Received: from lists.gnu.org ([209.51.188.17]:51730) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kuSqr-0006yi-Uu for submit@debbugs.gnu.org; Tue, 29 Dec 2020 23:13:00 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:36336) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kuSqr-0003sK-EZ for guix-patches@gnu.org; Tue, 29 Dec 2020 23:12:45 -0500 Received: from mail-40136.protonmail.ch ([185.70.40.136]:64798) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kuSqn-0002y2-C1 for guix-patches@gnu.org; Tue, 29 Dec 2020 23:12:43 -0500 Date: Wed, 30 Dec 2020 04:12:32 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1609301556; bh=JnUqPYbZkyePl8WXvw6RyeaE0Twld/xeNFZHiPZ5sm4=; h=Date:To:From:Reply-To:Subject:From; b=NIvCW6FpOP+wQnNSTxCoavHKcEjTrVe5RDBQC5DtiUkxpQ15NMyzO2MapmB9in+AW ufSLHu/nfYxZNvyKAg87841sUxVW3oDq22nwqqQfk9uhNo7MiVfqGj2n4r/dRi5ByI 69xLBSBA7ktMc41iVBn28dR3s0eCRlqhIleA+xuE= To: guix-patches@gnu.org From: Ryan Prior Subject: [PATCH] gnu: Add wyhash. Message-ID: <20201230041228.17076-1-rprior@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.40.136; envelope-from=rprior@protonmail.com; helo=mail-40136.protonmail.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.5 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * 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 + [...] Content analysis details: (1.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (rprior[at]protonmail.com) -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 T_SPF_TEMPERROR SPF: test of record failed (temperror) 1.5 SPOOFED_FREEMAIL No description available. X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Ryan Prior Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * 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 =C2=A9 2019, 2020 Efraim Flashner ;;; Copyright =C2=A9 2020 Mark H Weaver ;;; Copyright =C2=A9 2020 Marius Bakke +;;; Copyright =C2=A9 2020 Ryan Prior ;;; ;;; 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 "03ljs5iw9zrm3bydwggjvpwrcwmsd75h3dv1j4am4hw3h22cjd= jc")))) + (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 rando= m +number generator suitable for use in data structures. Provided by default= in +Zig, V, and Nim programming language standard libraries.") + (license license:unlicense))) =20 (define-public gdsl (package --=20 2.29.2 ------------=_1609371723-10085-1--