From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 05 14:52:51 2023 Received: (at submit) by debbugs.gnu.org; 5 Jun 2023 18:52:51 +0000 Received: from localhost ([127.0.0.1]:50372 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q6FJy-0008Iq-Pa for submit@debbugs.gnu.org; Mon, 05 Jun 2023 14:52:51 -0400 Received: from lists.gnu.org ([209.51.188.17]:42784) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q6FJw-0008Ii-9n for submit@debbugs.gnu.org; Mon, 05 Jun 2023 14:52:48 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q6FJw-0005T4-49 for guix-patches@gnu.org; Mon, 05 Jun 2023 14:52:48 -0400 Received: from mout01.posteo.de ([185.67.36.65]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q6FJu-0006Os-8Q for guix-patches@gnu.org; Mon, 05 Jun 2023 14:52:47 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 278AB240027 for ; Mon, 5 Jun 2023 20:52:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1685991164; bh=RX9K9TbfJ7QWjGhYLl2ZyuCG6Kh7x9se61Ufh4dNaR0=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version: Content-Transfer-Encoding:From; b=RdFWvhgcXxPYuI09CtVT4eNHBVIvQSu4CFN+P3RiFPT7PCxsxEiSCw7CnurjFdhqA /G8gjrRyYZ5aPt0hmelySAoykYlq5AVAkP7r2OQUXae2Qn6umfPAHZqPSoJjzFH2Xq 0rBia/pJCbiYa9Eilu1l4xoJ2B3RWCGDVqmUv5ExQATk+eRLd2j1Lg0vF3DQTKxErS M0Fx1SMBI/ch3X096rek3RskKe79oXxtjJI1gMgWBKGknXE5GD5+mBZtasOhf58kgZ eAiRI8uxB25xL49tevdxtXrih9F1o6VkcQeWnLRuUilQpgKJiIhRiuIIj8EVRNQ6jx wR+pPeIVqfyEg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4QZjQz4SQjz9rxH; Mon, 5 Jun 2023 20:52:43 +0200 (CEST) From: Rikard Nordgren To: guix-patches@gnu.org Subject: [PATCH] gnu: Add perl-statistics-distributions. Date: Mon, 5 Jun 2023 18:52:31 +0000 Message-Id: <6ff3488be01cc1c60bb886ecd5657ae82f1dbb92.1685991111.git.hrn@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.65; envelope-from=hrn@posteo.net; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 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_MED=-2.3, SPF_HELO_NONE=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.3 (-) X-Debbugs-Envelope-To: submit Cc: hrn@posteo.net 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/perl.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index d7312372de..0b38686d5c 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -9607,6 +9607,30 @@ (define-public perl-statistics-basic @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.") (license license:lgpl2.0))) +(define-public perl-statistics-distributions + (package + (name "perl-statistics-distributions") + (version "1.02") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/M/MI/MIKEK/Statistics-Distributions-" + version ".tar.gz")) + (sha256 + (base32 + "1j1kswl98f4i9dn176f9aa3y9bissx2sscga5jm3gjl4pxm3k7zr")))) + (build-system perl-build-system) + (home-page "https://metacpan.org/pod/Statistics::Distributions") + (synopsis "Perl module for calculating critical values of common +statistical distributions") + (description + "This Perl module calculates percentage points (5 significant +digits) of the u (standard normal) distribution, the student's t distribution, +the chi-square distribution and the F distribution. It can also calculate the +upper probability (5 significant digits) of the u (standard normal), the +chi-square, the t and the F distribution.") + (license license:perl-license))) + (define-public perl-statistics-pca (package (name "perl-statistics-pca") base-commit: a025d8fee6c8df1db750058d41f984103eb77978 -- 2.30.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 21 23:30:38 2023 Received: (at 63915-done) by debbugs.gnu.org; 22 Jul 2023 03:30:38 +0000 Received: from localhost ([127.0.0.1]:35166 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qN3KI-0001lS-4A for submit@debbugs.gnu.org; Fri, 21 Jul 2023 23:30:38 -0400 Received: from mail.envs.net ([5.199.136.28]:52250) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qN3KF-0001lI-7b for 63915-done@debbugs.gnu.org; Fri, 21 Jul 2023 23:30:36 -0400 Received: from localhost (mail.envs.net [127.0.0.1]) by mail.envs.net (Postfix) with ESMTP id ADE4D38A1914; Sat, 22 Jul 2023 03:30:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=envs.net; s=modoboa; t=1689996634; bh=XoVCUiaqpD+1+yjX4t9aDBsJpRe32MqoUqPWS1i+3WU=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=hN9NUVLd7k7W/7dTWc9IebMH4T94sZMPqMnr+lyPIGFEtYa1dmj5jdrshmlw+Srtg 0S01OaH2IdCXiVgeUEu3IyHSH1DWGw1HhcB2STcuabnUZ1bd+sknkpdQcA5ghKMJHM IdXjFjnA6s73S7SnXZIMdGJxweGMy6ADZgYLzvTsPF7kueZCT57y7he5pGF5uszXxC 90eggLHsYiRqh/Nm4qeO5js9qedFu2bYtjA0sNTNN7PNgyz1iS5A1mPw2iRJbIV/GS ho/FY06wEC3KUGG35nLSiOY6k/lVVfWH+zrUKO4BtNAdisTTgJDDlOaC0mf4+MSVO8 6ZWNpixcdTDLQdNUGMnlxRzYzRcqDQ+lwE2KafOtEUCg6pjUub73BCYUCGHkVd7HdL EP5lnZfB7YTr4e4AmZ9GB0OoPp16ffsWd1ctH7haqFZuamyA5JW9nk8lvW8E0taLSg SvpX2CE12EZoBAcm0pcO837woU3r+0MN+s7Kf/fFDJWvmXesMEUfPKDbrNdaMt4kHX D+fhAh4s3sNhcndbSqnd9AuJmRLzydtu5xdppVsYuY2aCZKyn5u+HaV72wRcTiu96q oE3/jFXaeXunKVisRSDVxjRqIvgWWyraTCbr+2Rhrb9WKSy9oxGcg1oQppaqFIs8Jj r2hR2YE2JQrhBufGI/Zk71I8= X-Virus-Scanned: Debian amavisd-new at mail.envs.net Received: from mail.envs.net ([127.0.0.1]) by localhost (mail.envs.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id aGy5vpty8DXv; Sat, 22 Jul 2023 03:30:31 +0000 (UTC) Received: from localhost (unknown [117.174.235.109]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.envs.net (Postfix) with ESMTPSA; Sat, 22 Jul 2023 03:30:30 +0000 (UTC) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 5c25a0bc; Sat, 22 Jul 2023 03:30:19 +0000 (UTC) From: =?utf-8?B?5a6L5paH5q2m?= To: Rikard Nordgren Subject: Re: bug#63915: [PATCH] gnu: Add perl-statistics-distributions. References: <6ff3488be01cc1c60bb886ecd5657ae82f1dbb92.1685991111.git.hrn@posteo.net> Date: Sat, 22 Jul 2023 11:30:19 +0800 In-Reply-To: <6ff3488be01cc1c60bb886ecd5657ae82f1dbb92.1685991111.git.hrn@posteo.net> (Rikard Nordgren's message of "Mon, 5 Jun 2023 18:52:31 +0000") Message-ID: <87v8eclj1w.fsf@envs.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 63915-done Cc: 63915-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 (-) Rikard Nordgren writes: > gnu/packages/perl.scm | 24 ++++++++++++++++++++++++ > 1 file changed, 24 insertions(+) Pushed to master with minor adjust to synopsis and description, thank you! From unknown Sun Aug 17 04:18:13 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 19 Aug 2023 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator