From unknown Sun Jun 22 04:23:19 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#57824] [PATCH 1/2] gnu: Add r-spacefillr. Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 15 Sep 2022 08:43:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 57824 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 57824@debbugs.gnu.org Cc: Wiktor =?UTF-8?Q?=C5=BBelazny?= X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.166323132814943 (code B ref -1); Thu, 15 Sep 2022 08:43:01 +0000 Received: (at submit) by debbugs.gnu.org; 15 Sep 2022 08:42:08 +0000 Received: from localhost ([127.0.0.1]:57012 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oYkRj-0003sv-Ic for submit@debbugs.gnu.org; Thu, 15 Sep 2022 04:42:07 -0400 Received: from lists.gnu.org ([209.51.188.17]:45632) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oYkRe-0003sN-Fj for submit@debbugs.gnu.org; Thu, 15 Sep 2022 04:42:04 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:33986) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oYkRa-0000bJ-GL for guix-patches@gnu.org; Thu, 15 Sep 2022 04:42:00 -0400 Received: from freeshell.de ([116.202.128.144]:46180) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oYkRX-0000FB-0v for guix-patches@gnu.org; Thu, 15 Sep 2022 04:41:57 -0400 Received: from localhost.localdomain (cst-prg-18-76.cust.vodafone.cz [46.135.18.76]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 2A0C3B391360; Thu, 15 Sep 2022 10:41:49 +0200 (CEST) From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Date: Thu, 15 Sep 2022 10:41:07 +0200 Message-Id: <20220915084107.31180-1-wz@freeshell.de> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=116.202.128.144; envelope-from=wz@freeshell.de; helo=freeshell.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 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 (--) From: Wiktor Żelazny * gnu/packages/cran.scm (r-spacefillr): New variable. --- gnu/packages/cran.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 3d90dc2caa..785df056c6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -34410,6 +34410,30 @@ (define-public r-mathjaxr for rendering equations in the HTML help files.") (license (list license:asl2.0 license:gpl3)))) +(define-public r-spacefillr + (package + (name "r-spacefillr") + (version "0.3.0") + (source (origin + (method url-fetch) + (uri (cran-uri "spacefillr" version)) + (sha256 + (base32 + "0c4yasc1zizjmhd2ciyz86lg76fsrxvl19yjkb2fmkda9rmnc0bf")))) + (properties `((upstream-name . "spacefillr"))) + (build-system r-build-system) + (propagated-inputs (list r-rcpp)) + (home-page "https://github.com/tylermorganwall/spacefillr") + (synopsis "Space-Filling Random and Quasi-Random Sequences") + (description + "@code{spacefillr} enables generation of random and quasi-random +space-filling sequences. It supports the following sequences: Halton, Sobol, +Owen-scrambled Sobol, Owen-scrambled Sobol with errors distributed as blue +noise, progressive jittered, progressive multi-jittered (PMJ), PMJ with blue +noise, PMJ02, and PMJ02 with blue noise. The package also includes a C++ +API.") + (license license:expat))) + (define-public r-spacetime (package (name "r-spacetime") base-commit: 839950c4a9925bf3d7108cb8533be37b185fb8bd -- 2.37.3 From unknown Sun Jun 22 04:23:19 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#57824] [PATCH 2/2] gnu: Add r-gldex. References: <20220915084107.31180-1-wz@freeshell.de> In-Reply-To: <20220915084107.31180-1-wz@freeshell.de> Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 15 Sep 2022 08:46:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 57824 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 57824@debbugs.gnu.org Cc: Wiktor =?UTF-8?Q?=C5=BBelazny?= Received: via spool by 57824-submit@debbugs.gnu.org id=B57824.166323152915356 (code B ref 57824); Thu, 15 Sep 2022 08:46:01 +0000 Received: (at 57824) by debbugs.gnu.org; 15 Sep 2022 08:45:29 +0000 Received: from localhost ([127.0.0.1]:57029 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oYkUy-0003zc-Q9 for submit@debbugs.gnu.org; Thu, 15 Sep 2022 04:45:29 -0400 Received: from freeshell.de ([116.202.128.144]:59934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oYkUw-0003zL-KK for 57824@debbugs.gnu.org; Thu, 15 Sep 2022 04:45:27 -0400 Received: from localhost.localdomain (cst-prg-18-76.cust.vodafone.cz [46.135.18.76]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 4F6BFB391340; Thu, 15 Sep 2022 10:45:19 +0200 (CEST) From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Date: Thu, 15 Sep 2022 10:45:05 +0200 Message-Id: <20220915084505.31265-1-wz@freeshell.de> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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.0 (-) From: Wiktor Żelazny * gnu/packages/cran.scm (r-gldex): New variable. --- gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 785df056c6..f806191cf5 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -21167,6 +21167,33 @@ (define-public r-glasso path of values for the regularization parameter.") (license license:gpl2))) +(define-public r-gldex + (package + (name "r-gldex") + (version "2.0.0.9") + (source (origin + (method url-fetch) + (uri (cran-uri "GLDEX" version)) + (sha256 + (base32 + "1g0wg6z4ba1n6p2nw3kr734wlgmq0aw1a4spr6xw6djj7idsfi61")))) + (properties `((upstream-name . "GLDEX"))) + (build-system r-build-system) + (propagated-inputs (list r-cluster r-spacefillr)) + (home-page "https://cran.r-project.org/package=GLDEX") + (synopsis "Fitting single and mixture of generalised lambda distributions") + (description + "@code{GLDEX} offers fitting algorithms corresponding to two major +objectives. One is to provide a smoothing device to fit distributions to data +using the weighted and unweighted discretised approach based on the bin width +of the histogram. The other is to provide a definitive fit to the data set +using the maximum likelihood and quantile matching estimation. Other methods +such as moment matching, starship method, and L moment matching are also +provided. Diagnostics on goodness of fit can be done via qqplots, KS-resample +tests and comparing mean, variance, skewness and kurtosis of the data with the +fitted distribution.") + (license license:gpl3+))) + (define-public r-rhpcblasctl (package (name "r-rhpcblasctl") -- 2.37.3 From unknown Sun Jun 22 04:23:19 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: Wiktor =?UTF-8?Q?=C5=BBelazny?= Subject: bug#57824: closed (Re: [bug#57824] [PATCH 2/2] gnu: Add r-gldex.) Message-ID: References: <87pmf52fys.fsf@cbaines.net> <20220915084107.31180-1-wz@freeshell.de> X-Gnu-PR-Message: they-closed 57824 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 57824@debbugs.gnu.org Date: Thu, 06 Oct 2022 14:19:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1665065942-27595-1" This is a multi-part message in MIME format... ------------=_1665065942-27595-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #57824: [PATCH 1/2] gnu: Add r-spacefillr. 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 57824@debbugs.gnu.org. --=20 57824: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D57824 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1665065942-27595-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 57824-done) by debbugs.gnu.org; 6 Oct 2022 14:18:23 +0000 Received: from localhost ([127.0.0.1]:33042 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ogRhe-0007AH-TN for submit@debbugs.gnu.org; Thu, 06 Oct 2022 10:18:23 -0400 Received: from mira.cbaines.net ([212.71.252.8]:41512) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ogRhd-0007A9-3N for 57824-done@debbugs.gnu.org; Thu, 06 Oct 2022 10:18:22 -0400 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:fc93:27fb:8412:c8b7]) by mira.cbaines.net (Postfix) with ESMTPSA id 9C85E27BBE9; Thu, 6 Oct 2022 15:18:20 +0100 (BST) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 43988e18; Thu, 6 Oct 2022 14:18:20 +0000 (UTC) References: <20220915084107.31180-1-wz@freeshell.de> <20220915084505.31265-1-wz@freeshell.de> User-agent: mu4e 1.8.9; emacs 28.1 From: Christopher Baines To: Wiktor =?utf-8?Q?=C5=BBelazny?= Subject: Re: [bug#57824] [PATCH 2/2] gnu: Add r-gldex. Date: Thu, 06 Oct 2022 15:17:54 +0100 In-reply-to: <20220915084505.31265-1-wz@freeshell.de> Message-ID: <87pmf52fys.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 57824-done Cc: Wiktor =?utf-8?Q?=C5=BBelazny?= , 57824-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.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Wiktor =C5=BBelazny writes: > From: Wiktor =C5=BBelazny > > * gnu/packages/cran.scm (r-gldex): New variable. > --- > gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) Thanks, pushed to master as 5b42b64ea89564c58325d16d3d0f4a0a03ebae0f. Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmM+46tfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9Xcg+xAAgUAkwXp4c7Vu2vcjNJIRrtGktywzf+lY mdx/SIX5FzqhRzy6rVA0hQoyA70iNLr7TA52+yaKjUE4t1bPgUS3bnbK8TkyqOdU ThA2XlAHKUTuSf6cuxg766MUV6ljoBP1APnZHz37E1GU73uHwhdHbo3Bwguh5mJ4 /vQd9U2h99cRNnKdfvUd2hal0nd3nKjNDDF6wqvLZA/aDazpUVU5tsKe6BQfT45p eo7lKKn2odZHaHxIhmj67QObIJrt4pJHsP3X9jKNn8/1eep6VQvyOEwlypLuXJTh NG+8NYHBd84eywQmqB4EYkNHwgawmhImeZlt+Ruvrkbbf8WRB5x5le2+5/sEw09B p75urdjM9VKD2NEJAA2XMGUb5QD40t1NqIZdZ4SqEYiHFCT0O6mP/6MYQgscxTaI mU7zUynPu3u3/X6PNgHOl9REnu5b4yjIieuRC9owSa4keN4Gt+E64PHUvudaLJkJ mJwwx5k5AxtY4/AdEB50tGHDpi3lz1rubEPZmSILJuJyE48MTVph0ktq4GJ9cJTs s4mbYF8cnU6U76CC9Jw7HKx1MhykrET/0XsISSTyVZHrbUbpmNgTv64pcw5+COTT sWSX4o7MKfaS1ryKzF/2DvzW946QT6LP2lEsUTxp99uEcl/vY6c5ZKiMe6KsKEJn lybmeXOVQK0= =psZ4 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1665065942-27595-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 15 Sep 2022 08:42:08 +0000 Received: from localhost ([127.0.0.1]:57012 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oYkRj-0003sv-Ic for submit@debbugs.gnu.org; Thu, 15 Sep 2022 04:42:07 -0400 Received: from lists.gnu.org ([209.51.188.17]:45632) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oYkRe-0003sN-Fj for submit@debbugs.gnu.org; Thu, 15 Sep 2022 04:42:04 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:33986) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oYkRa-0000bJ-GL for guix-patches@gnu.org; Thu, 15 Sep 2022 04:42:00 -0400 Received: from freeshell.de ([116.202.128.144]:46180) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oYkRX-0000FB-0v for guix-patches@gnu.org; Thu, 15 Sep 2022 04:41:57 -0400 Received: from localhost.localdomain (cst-prg-18-76.cust.vodafone.cz [46.135.18.76]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 2A0C3B391360; Thu, 15 Sep 2022 10:41:49 +0200 (CEST) From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= To: guix-patches@gnu.org Subject: [PATCH 1/2] gnu: Add r-spacefillr. Date: Thu, 15 Sep 2022 10:41:07 +0200 Message-Id: <20220915084107.31180-1-wz@freeshell.de> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=116.202.128.144; envelope-from=wz@freeshell.de; helo=freeshell.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Wiktor=20=C5=BBelazny?= 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 (--) From: Wiktor Żelazny * gnu/packages/cran.scm (r-spacefillr): New variable. --- gnu/packages/cran.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 3d90dc2caa..785df056c6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -34410,6 +34410,30 @@ (define-public r-mathjaxr for rendering equations in the HTML help files.") (license (list license:asl2.0 license:gpl3)))) +(define-public r-spacefillr + (package + (name "r-spacefillr") + (version "0.3.0") + (source (origin + (method url-fetch) + (uri (cran-uri "spacefillr" version)) + (sha256 + (base32 + "0c4yasc1zizjmhd2ciyz86lg76fsrxvl19yjkb2fmkda9rmnc0bf")))) + (properties `((upstream-name . "spacefillr"))) + (build-system r-build-system) + (propagated-inputs (list r-rcpp)) + (home-page "https://github.com/tylermorganwall/spacefillr") + (synopsis "Space-Filling Random and Quasi-Random Sequences") + (description + "@code{spacefillr} enables generation of random and quasi-random +space-filling sequences. It supports the following sequences: Halton, Sobol, +Owen-scrambled Sobol, Owen-scrambled Sobol with errors distributed as blue +noise, progressive jittered, progressive multi-jittered (PMJ), PMJ with blue +noise, PMJ02, and PMJ02 with blue noise. The package also includes a C++ +API.") + (license license:expat))) + (define-public r-spacetime (package (name "r-spacetime") base-commit: 839950c4a9925bf3d7108cb8533be37b185fb8bd -- 2.37.3 ------------=_1665065942-27595-1--