* [PATCH] gnu: Add r-rann.
@ 2017-01-14 0:55 Ra
2017-02-03 19:43 ` Kei Kebreau
0 siblings, 1 reply; 2+ messages in thread
From: Ra @ 2017-01-14 0:55 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1.1: Type: text/plain, Size: 1340 bytes --]
* gnu/packages/statistics.scm (r-rann): New variable.
---
gnu/packages/statistics.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index db1a687..695f6ed 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4004,3 +4004,24 @@ generalized linear model functions that implement
secure convergence,
dispersion modeling and Tweedie power-law families.")
;; Statmod is distributed under either license
(license (list license:gpl2 license:gpl3))))
+
+(define-public r-rann
+ (package
+ (name "r-rann")
+ (version "2.5")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "RANN" version))
+ (sha256
+ (base32
+ "007cgqg9bybg2zlljbv5m6cmlm3r6i251018rpgjcn0xnm9sjsj7"))))
+ (properties
+ `((upstream-name . "RANN")))
+ (build-system r-build-system)
+ (home-page "https://github.com/jefferis/RANN")
+ (synopsis "Fast nearest neighbour search")
+ (description
+ "This package finds the k nearest neighbours for every point in a
given
+dataset in O(N log N) time using Arya and Mount's ANN library. Provides
approximate,
+exact searches, fixed radius searches, bd and kb trees.")
+ (license license:gpl3+)))
--
1.9.1
[-- Attachment #1.2: Type: text/html, Size: 1935 bytes --]
[-- Attachment #2: 0001-gnu-Add-r-rann.patch --]
[-- Type: application/octet-stream, Size: 1545 bytes --]
From 764bd38143c0566917aee9446fb1b0abc9fe71b3 Mon Sep 17 00:00:00 2001
From: Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
Date: Sat, 14 Jan 2017 01:52:09 +0100
Subject: [PATCH] gnu: Add r-rann.
* gnu/packages/statistics.scm (r-rann): New variable.
---
gnu/packages/statistics.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index db1a687..695f6ed 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4004,3 +4004,24 @@ generalized linear model functions that implement secure convergence,
dispersion modeling and Tweedie power-law families.")
;; Statmod is distributed under either license
(license (list license:gpl2 license:gpl3))))
+
+(define-public r-rann
+ (package
+ (name "r-rann")
+ (version "2.5")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "RANN" version))
+ (sha256
+ (base32
+ "007cgqg9bybg2zlljbv5m6cmlm3r6i251018rpgjcn0xnm9sjsj7"))))
+ (properties
+ `((upstream-name . "RANN")))
+ (build-system r-build-system)
+ (home-page "https://github.com/jefferis/RANN")
+ (synopsis "Fast nearest neighbour search")
+ (description
+ "This package finds the k nearest neighbours for every point in a given
+dataset in O(N log N) time using Arya and Mount's ANN library. Provides approximate,
+exact searches, fixed radius searches, bd and kb trees.")
+ (license license:gpl3+)))
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] gnu: Add r-rann.
2017-01-14 0:55 [PATCH] gnu: Add r-rann Ra
@ 2017-02-03 19:43 ` Kei Kebreau
0 siblings, 0 replies; 2+ messages in thread
From: Kei Kebreau @ 2017-02-03 19:43 UTC (permalink / raw)
To: Ra; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1537 bytes --]
Ra <ilpuccio.febo@gmail.com> writes:
> * gnu/packages/statistics.scm (r-rann): New variable.
> ---
> gnu/packages/statistics.scm | 21 +++++++++++++++++++++
> 1 file changed, 21 insertions(+)
>
> diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
> index db1a687..695f6ed 100644
> --- a/gnu/packages/statistics.scm
> +++ b/gnu/packages/statistics.scm
> @@ -4004,3 +4004,24 @@ generalized linear model functions that implement secure
> convergence,
> dispersion modeling and Tweedie power-law families.")
> ;; Statmod is distributed under either license
> (license (list license:gpl2 license:gpl3))))
> +
> +(define-public r-rann
> + (package
> + (name "r-rann")
> + (version "2.5")
> + (source (origin
> + (method url-fetch)
> + (uri (cran-uri "RANN" version))
> + (sha256
> + (base32
> + "007cgqg9bybg2zlljbv5m6cmlm3r6i251018rpgjcn0xnm9sjsj7"))))
> + (properties
> + `((upstream-name . "RANN")))
> + (build-system r-build-system)
> + (home-page "https://github.com/jefferis/RANN")
> + (synopsis "Fast nearest neighbour search")
> + (description
> + "This package finds the k nearest neighbours for every point in a given
> +dataset in O(N log N) time using Arya and Mount's ANN library. Provides approximate,
> +exact searches, fixed radius searches, bd and kb trees.")
> + (license license:gpl3+)))
> --
> 1.9.1
Pushed to master as c6dced88f262f7e781288f32cc3a376b929a6214! By the
way, don't forget that two spaces follow the end of sentences in the
description. I changed it for you in the aforementioned commit.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-02-03 19:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-14 0:55 [PATCH] gnu: Add r-rann Ra
2017-02-03 19:43 ` Kei Kebreau
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.