unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: Submitting Patch for r-dyn  Description for cran Package
       [not found] <20180320001145.Horde.fuQ-DGy6EMUqKib6eerL_wU@swecha.org>
@ 2018-03-19 21:50 ` Ricardo Wurmus
  2018-03-20  1:49   ` Sahithi Yarlagadda
  0 siblings, 1 reply; 2+ messages in thread
From: Ricardo Wurmus @ 2018-03-19 21:50 UTC (permalink / raw)
  To: sahi; +Cc: guix-devel

Hi,

thank you for your contribution!

Unfortunately, your email was way too big for me to even open :) Could
you please resend it with only the relevant changes?  The changes to the
“.po” files should not be part of the patch.

Let’s take a closer look at the R package you’ve added.

> +(define-public r-dyn
> +  (package
> +    (name "r-dyn")
> +    (version "0.2-9.6")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (cran-uri "dyn" version))
> +       (sha256
> +        (base32
> +         "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
> +    (build-system r-build-system)
> +    (propagated-inputs
> +     `(("r-zoo" ,r-zoo)))
> +    (home-page "https://cran.r-project.org/web/packages/dyn")
> +    (synopsis "Time Series Regression")

Please make all worlds except for the first lowercase.

> +    (description
> +     "Time series regression. The dyn class interfaces ts, irts(), zoo() and
> +zooreg() time series classes to lm(), glm(), loess(), quantreg::rq(), MASS::rlm(),
> + MCMCpack::MCMCregress(), quantreg::rq(), randomForest::randomForest() and other
> + regression functions allowing those functions to be used with time series including
> +specifications that may contain lags, diffs and missing values.")

The first sentence is just a sentence fragment.  Could you please turn
it into a full sentence?

Please leave two spaces between sentences.

The functions that are mentioned in the description should be wrapped in
@code{…} syntax.

Have you tried building this package?  (I have not.)

Please also add a copyright line to the very top of the file.

One more thing: in Guix we follow certain conventions when it comes to
commit messages.  You can take a look at previous commit messages (with
“git log”) to see examples.

In this case the message would look like this:

--8<---------------cut here---------------start------------->8---
gnu: Add r-dyn.

* gnu/packages/cran.scm (r-dyn): New variable.
--8<---------------cut here---------------end--------------->8---

Would you like to send an updated version of your patch?

Thanks again for giving this a try!

--
Ricardo

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

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

* Re: Submitting Patch for r-dyn Description for cran Package
  2018-03-19 21:50 ` Submitting Patch for r-dyn Description for cran Package Ricardo Wurmus
@ 2018-03-20  1:49   ` Sahithi Yarlagadda
  0 siblings, 0 replies; 2+ messages in thread
From: Sahithi Yarlagadda @ 2018-03-20  1:49 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Hi


On Tuesday 20 March 2018 03:20 AM, Ricardo Wurmus wrote:
> Hi,
>
> thank you for your contribution!
>
> Unfortunately, your email was way too big for me to even open :) Could
> you please resend it with only the relevant changes?  The changes to the
> “.po” files should not be part of the patch.
Oops! I have built the package and then sent the patch. Ill make a patch
from the source changes and send it.
This is what i did
1) Downloaded Source
2) setup environment
3) ./bootstrap, ./configure, ./make
4) then made changes to .scm file in /gnu/packages
5) built using

    ./pre-inst-env guix build r-dyn
6) git link
7) then did the patch.

> Let’s take a closer look at the R package you’ve added.
>
>> +(define-public r-dyn
>> +  (package
>> +    (name "r-dyn")
>> +    (version "0.2-9.6")
>> +    (source
>> +     (origin
>> +       (method url-fetch)
>> +       (uri (cran-uri "dyn" version))
>> +       (sha256
>> +        (base32
>> +         "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
>> +    (build-system r-build-system)
>> +    (propagated-inputs
>> +     `(("r-zoo" ,r-zoo)))
>> +    (home-page "https://cran.r-project.org/web/packages/dyn")
>> +    (synopsis "Time Series Regression")
> Please make all worlds except for the first lowercase.
>
>> +    (description
>> +     "Time series regression. The dyn class interfaces ts, irts(), zoo() and
>> +zooreg() time series classes to lm(), glm(), loess(), quantreg::rq(), MASS::rlm(),
>> + MCMCpack::MCMCregress(), quantreg::rq(), randomForest::randomForest() and other
>> + regression functions allowing those functions to be used with time series including
>> +specifications that may contain lags, diffs and missing values.")
> The first sentence is just a sentence fragment.  Could you please turn
> it into a full sentence?
>
> Please leave two spaces between sentences.
>
> The functions that are mentioned in the description should be wrapped in
> @code{…} syntax.
>
> Have you tried building this package?  (I have not.)
Yes it was successfully built and was stored in /gnu/store/.........
>
> Please also add a copyright line to the very top of the file.
>
> One more thing: in Guix we follow certain conventions when it comes to
> commit messages.  You can take a look at previous commit messages (with
> “git log”) to see examples.
>
> In this case the message would look like this:
>
> --8<---------------cut here---------------start------------->8---
> gnu: Add r-dyn.
>
> * gnu/packages/cran.scm (r-dyn): New variable.
> --8<---------------cut here---------------end--------------->8---
>
> Would you like to send an updated version of your patch?
>
> Thanks again for giving this a try!
>
> --
> Ricardo
>
> GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
> https://elephly.net
>
>
>

-- 
Regards
Sahithi

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

end of thread, other threads:[~2018-03-20  1:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20180320001145.Horde.fuQ-DGy6EMUqKib6eerL_wU@swecha.org>
2018-03-19 21:50 ` Submitting Patch for r-dyn Description for cran Package Ricardo Wurmus
2018-03-20  1:49   ` Sahithi Yarlagadda

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