unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add r-gmodels
@ 2017-01-13 19:11 Ra
  2017-01-13 21:55 ` Ricardo Wurmus
  0 siblings, 1 reply; 8+ messages in thread
From: Ra @ 2017-01-13 19:11 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 1231 bytes --]

* gnu/packages/statistics.scm (r-gmodels): New variable.
---
 gnu/packages/statistics.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index db1a687..45d8d23 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4004,3 +4004,22 @@ 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-gmodels
+  (package
+    (name "r-gmodels")
+    (version "2.16.2")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "gmodels" version))
+              (sha256
+               (base32
+                "0zf4krlvdywny5p5hnkr0r0hync6dvzc9yy4dfywaxmkpna8h0db"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-gdata" ,r-gdata)))
+    (home-page "http://www.sf.net/projects/r-gregmisc")
+    (synopsis "Various R programming tools for model fitting")
+    (description
+     "This package provides various R programming tools for model
fitting.")
+    (license license:gpl2)))
--
1.9.1

[-- Attachment #1.2: Type: text/html, Size: 1818 bytes --]

[-- Attachment #2: 0001-gnu-Add-r-gmodels.patch --]
[-- Type: application/octet-stream, Size: 1436 bytes --]

From fa4959ba34c79dd53d65a3b7e03d2611f3152d81 Mon Sep 17 00:00:00 2001
From: Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
Date: Fri, 13 Jan 2017 16:40:21 +0100
Subject: [PATCH] gnu: Add r-gmodels

* gnu/packages/statistics.scm (r-gmodels): New variable.
---
 gnu/packages/statistics.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index db1a687..45d8d23 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4004,3 +4004,22 @@ 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-gmodels
+  (package
+    (name "r-gmodels")
+    (version "2.16.2")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "gmodels" version))
+              (sha256
+               (base32
+                "0zf4krlvdywny5p5hnkr0r0hync6dvzc9yy4dfywaxmkpna8h0db"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-gdata" ,r-gdata)))
+    (home-page "http://www.sf.net/projects/r-gregmisc")
+    (synopsis "Various R programming tools for model fitting")
+    (description
+     "This package provides various R programming tools for model fitting.")
+    (license license:gpl2)))
-- 
1.9.1


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

* Re: [PATCH] gnu: Add r-gmodels
  2017-01-13 19:11 [PATCH] gnu: Add r-gmodels Ra
@ 2017-01-13 21:55 ` Ricardo Wurmus
  2017-01-13 22:31   ` Leo Famulari
  2017-01-14 17:19   ` Ludovic Courtès
  0 siblings, 2 replies; 8+ messages in thread
From: Ricardo Wurmus @ 2017-01-13 21:55 UTC (permalink / raw)
  To: Ra; +Cc: guix-devel


Ra <ilpuccio.febo@gmail.com> writes:

> * gnu/packages/statistics.scm (r-gmodels): New variable.
> ---
>  gnu/packages/statistics.scm | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)

Thanks for the patch, but I get the same problem as with your other
patch:

    error: corrupt patch at line 10

I don’t know if this is a problem on my end or with your email.

-- 
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
http://elephly.net

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

* Re: [PATCH] gnu: Add r-gmodels
  2017-01-13 21:55 ` Ricardo Wurmus
@ 2017-01-13 22:31   ` Leo Famulari
  2017-01-14  0:31     ` Ra
  2017-01-14 10:09     ` Ricardo Wurmus
  2017-01-14 17:19   ` Ludovic Courtès
  1 sibling, 2 replies; 8+ messages in thread
From: Leo Famulari @ 2017-01-13 22:31 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

On Fri, Jan 13, 2017 at 10:55:29PM +0100, Ricardo Wurmus wrote:
> 
> Ra <ilpuccio.febo@gmail.com> writes:
> 
> > * gnu/packages/statistics.scm (r-gmodels): New variable.
> > ---
> >  gnu/packages/statistics.scm | 19 +++++++++++++++++++
> >  1 file changed, 19 insertions(+)
> 
> Thanks for the patch, but I get the same problem as with your other
> patch:
> 
>     error: corrupt patch at line 10
> 
> I don’t know if this is a problem on my end or with your email.

It works for me.

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

* Re: [PATCH] gnu: Add r-gmodels
  2017-01-13 22:31   ` Leo Famulari
@ 2017-01-14  0:31     ` Ra
  2017-01-14 10:09     ` Ricardo Wurmus
  1 sibling, 0 replies; 8+ messages in thread
From: Ra @ 2017-01-14  0:31 UTC (permalink / raw)
  To: Leo Famulari, Ricardo Wurmus; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 685 bytes --]

On Fri, Jan 13, 2017 at 11:31 PM Leo Famulari <leo@famulari.name> wrote:

> On Fri, Jan 13, 2017 at 10:55:29PM +0100, Ricardo Wurmus wrote:
> >
> > Ra <ilpuccio.febo@gmail.com> writes:
> >
> > > * gnu/packages/statistics.scm (r-gmodels): New variable.
> > > ---
> > >  gnu/packages/statistics.scm | 19 +++++++++++++++++++
> > >  1 file changed, 19 insertions(+)
> >
> > Thanks for the patch, but I get the same problem as with your other
> > patch:
> >
> >     error: corrupt patch at line 10
> >
> > I don’t know if this is a problem on my end or with your email.
>
> It works for me.
>

Do I need to resend the patch or perform some kind of test  ?

--
Ra

[-- Attachment #2: Type: text/html, Size: 1449 bytes --]

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

* Re: [PATCH] gnu: Add r-gmodels
  2017-01-13 22:31   ` Leo Famulari
  2017-01-14  0:31     ` Ra
@ 2017-01-14 10:09     ` Ricardo Wurmus
  1 sibling, 0 replies; 8+ messages in thread
From: Ricardo Wurmus @ 2017-01-14 10:09 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel


Leo Famulari <leo@famulari.name> writes:

> On Fri, Jan 13, 2017 at 10:55:29PM +0100, Ricardo Wurmus wrote:
>> 
>> Ra <ilpuccio.febo@gmail.com> writes:
>> 
>> > * gnu/packages/statistics.scm (r-gmodels): New variable.
>> > ---
>> >  gnu/packages/statistics.scm | 19 +++++++++++++++++++
>> >  1 file changed, 19 insertions(+)
>> 
>> Thanks for the patch, but I get the same problem as with your other
>> patch:
>> 
>>     error: corrupt patch at line 10
>> 
>> I don’t know if this is a problem on my end or with your email.
>
> It works for me.

How odd.  Could you please apply it then?  Thanks in advance!

-- 
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
http://elephly.net

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

* Re: [PATCH] gnu: Add r-gmodels
  2017-01-13 21:55 ` Ricardo Wurmus
  2017-01-13 22:31   ` Leo Famulari
@ 2017-01-14 17:19   ` Ludovic Courtès
  2017-01-14 19:51     ` Ra
  1 sibling, 1 reply; 8+ messages in thread
From: Ludovic Courtès @ 2017-01-14 17:19 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Hi!

Ricardo Wurmus <rekado@elephly.net> skribis:

> Ra <ilpuccio.febo@gmail.com> writes:
>
>> * gnu/packages/statistics.scm (r-gmodels): New variable.
>> ---
>>  gnu/packages/statistics.scm | 19 +++++++++++++++++++
>>  1 file changed, 19 insertions(+)
>
> Thanks for the patch, but I get the same problem as with your other
> patch:
>
>     error: corrupt patch at line 10
>
> I don’t know if this is a problem on my end or with your email.

The message contains both a text/html and a text/plain version.

Ra: Could you turn off HTML altogether, or use ‘git send-email’?  I
think that’s the best way to make sure it works for everyone.

Thanks,
Ludo’.

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

* Re: [PATCH] gnu: Add r-gmodels
  2017-01-14 17:19   ` Ludovic Courtès
@ 2017-01-14 19:51     ` Ra
  2017-01-16 12:40       ` Ra
  0 siblings, 1 reply; 8+ messages in thread
From: Ra @ 2017-01-14 19:51 UTC (permalink / raw)
  To: Ludovic Courtès, Ricardo Wurmus; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 946 bytes --]

Ouch ,
actually I just cut and pasted the text from a shell and sending it with
inbox. Sorry for that and thanks for spot it.

Ra

Il sab 14 gen 2017 18:19 Ludovic Courtès <ludo@gnu.org> ha scritto:

> Hi!
>
> Ricardo Wurmus <rekado@elephly.net> skribis:
>
> > Ra <ilpuccio.febo@gmail.com> writes:
> >
> >> * gnu/packages/statistics.scm (r-gmodels): New variable.
> >> ---
> >>  gnu/packages/statistics.scm | 19 +++++++++++++++++++
> >>  1 file changed, 19 insertions(+)
> >
> > Thanks for the patch, but I get the same problem as with your other
> > patch:
> >
> >     error: corrupt patch at line 10
> >
> > I don’t know if this is a problem on my end or with your email.
>
> The message contains both a text/html and a text/plain version.
>
> Ra: Could you turn off HTML altogether, or use ‘git send-email’?  I
> think that’s the best way to make sure it works for everyone.
>
> Thanks,
> Ludo’.
>

[-- Attachment #2: Type: text/html, Size: 1923 bytes --]

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

* Re: [PATCH] gnu: Add r-gmodels
  2017-01-14 19:51     ` Ra
@ 2017-01-16 12:40       ` Ra
  0 siblings, 0 replies; 8+ messages in thread
From: Ra @ 2017-01-16 12:40 UTC (permalink / raw)
  To: Ludovic Courtès, Ricardo Wurmus; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1128 bytes --]

On Sat, Jan 14, 2017 at 8:51 PM Ra <ilpuccio.febo@gmail.com> wrote:

> Ouch ,
> actually I just cut and pasted the text from a shell and sending it with
> inbox. Sorry for that and thanks for spot it.
>
> Ra
>
> Il sab 14 gen 2017 18:19 Ludovic Courtès <ludo@gnu.org> ha scritto:
>
> Hi!
>
> Ricardo Wurmus <rekado@elephly.net> skribis:
>
> > Ra <ilpuccio.febo@gmail.com> writes:
> >
> >> * gnu/packages/statistics.scm (r-gmodels): New variable.
> >> ---
> >>  gnu/packages/statistics.scm | 19 +++++++++++++++++++
> >>  1 file changed, 19 insertions(+)
> >
> > Thanks for the patch, but I get the same problem as with your other
> > patch:
> >
> >     error: corrupt patch at line 10
> >
> > I don’t know if this is a problem on my end or with your email.
>
> The message contains both a text/html and a text/plain version.
>
> Ra: Could you turn off HTML altogether, or use ‘git send-email’?  I
> think that’s the best way to make sure it works for everyone.
>
> Thanks,
> Ludo’.
>
>
The patch file works as expected.
I will follow Ludo's advice next time.


Cheers
--
Ra

[-- Attachment #2: Type: text/html, Size: 2837 bytes --]

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

end of thread, other threads:[~2017-01-16 12:41 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-13 19:11 [PATCH] gnu: Add r-gmodels Ra
2017-01-13 21:55 ` Ricardo Wurmus
2017-01-13 22:31   ` Leo Famulari
2017-01-14  0:31     ` Ra
2017-01-14 10:09     ` Ricardo Wurmus
2017-01-14 17:19   ` Ludovic Courtès
2017-01-14 19:51     ` Ra
2017-01-16 12:40       ` Ra

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