Re: [R-pkg-devel] The problem with resubmitting the package to the Cran

2023-11-11 Thread Duncan Murdoch

On 11/11/2023 3:54 a.m., Karolina Marek wrote:

Hello,

I am writing again about submitting the package to the CRA - per ARMA,
which was archived on 2022-05-25, as it required the archived package
'matlab'. The new version of the 'matlab' was resubmitted to the Cran on
2022-06-01. When I try to submit the package, I receive the following
NOTES:

  Checking CRAN incoming feasibility ... NOTE

* checking for non-standard things in the check directory ... NOTE
Found the following files/directories:
   ‘PARMA21del1_ident'

This time I put also the link to the repository on github:
https://github.com/Klona9/r-perARMA.git
gh repo clone Klona9/r-perARMA


I will be very glad for any help.


Your examples for `parma_ident` appear to create a directory named 
"PARMA21del1_ident" below the current directory.  You can't create files 
there, you need to create them in tempdir().


Duncan Murdoch

__
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel


[R-pkg-devel] The problem with resubmitting the package to the Cran

2023-11-11 Thread Karolina Marek
Hello,

I am writing again about submitting the package to the CRA - per ARMA,
which was archived on 2022-05-25, as it required the archived package
'matlab'. The new version of the 'matlab' was resubmitted to the Cran on
2022-06-01. When I try to submit the package, I receive the following
NOTES:

 Checking CRAN incoming feasibility ... NOTE

* checking for non-standard things in the check directory ... NOTE
Found the following files/directories:
  ‘PARMA21del1_ident'

This time I put also the link to the repository on github:
https://github.com/Klona9/r-perARMA.git
gh repo clone Klona9/r-perARMA


I will be very glad for any help.

Best regards,

Karolina

[[alternative HTML version deleted]]

__
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel


Re: [R-pkg-devel] The problem with resubmitting the package to the Cran

2023-11-09 Thread Uwe Ligges




On 08.11.2023 17:54, Karolina Marek wrote:

Hello,

I have the following case. I would like to resubmit a package to the Cran -
per ARMA, which was archived on 2022-05-25, as it required the archived
package 'matlab'. The new version of the 'matlab' was resubmitted to the
Cran on 2022-06-01. So we would like that our package will also return to
the Cran. I didn't change anything significant in the code inside. However,
when I try to submit the package, I receive the following NOTES:

  checking CRAN incoming feasibility ... NOTE

* checking for non-standard things in the check directory ... NOTE
Found the following files/directories:
   ‘PARMA21del1_ident'


Apparently you create this file during the checks. So examples or 
vignette code executed by users may write it into the user filespace. 
You must not write their by default nor in examples etc.
Let the user choose the filename and otherwise, e.g., in examples, use 
tempdir() as a location for writing files.


Best,
Uwe Ligges





I don't know really what this note mean and can I put the package
anyway to Cran?



Best regards,

Karolina

[[alternative HTML version deleted]]

__
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel


__
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel


Re: [R-pkg-devel] The problem with resubmitting the package to the Cran

2023-11-09 Thread Alexandre Courtiol
Dear Karolina,
It means that you have an unexpected file or folder called
"PARMA21del1_ident" inside your package.
So either remove it or list it in a file called .Rbuildignore which you
place at the root of the package folder.
Best,
Alex

On Thu, 9 Nov 2023 at 09:57, Karolina Marek 
wrote:

> Hello,
>
> I have the following case. I would like to resubmit a package to the Cran -
> per ARMA, which was archived on 2022-05-25, as it required the archived
> package 'matlab'. The new version of the 'matlab' was resubmitted to the
> Cran on 2022-06-01. So we would like that our package will also return to
> the Cran. I didn't change anything significant in the code inside. However,
> when I try to submit the package, I receive the following NOTES:
>
>  checking CRAN incoming feasibility ... NOTE
>
> * checking for non-standard things in the check directory ... NOTE
> Found the following files/directories:
>   ‘PARMA21del1_ident'
>
> I don't know really what this note mean and can I put the package
> anyway to Cran?
>
>
>
> Best regards,
>
> Karolina
>
> [[alternative HTML version deleted]]
>
> __
> R-package-devel@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-package-devel
>


-- 
Alexandre Courtiol, www.datazoogang.de

[[alternative HTML version deleted]]

__
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel


Re: [R-pkg-devel] The problem with resubmitting the package to the Cran

2023-11-09 Thread Mark Padgham

You'll need to fix that note before resubmitting. If you can share a
link to a public repository, people in this list will likely be able to
help.

regards, Mark

On 11/8/23 17:54, Karolina Marek wrote:

Hello,

I have the following case. I would like to resubmit a package to the Cran -
per ARMA, which was archived on 2022-05-25, as it required the archived
package 'matlab'. The new version of the 'matlab' was resubmitted to the
Cran on 2022-06-01. So we would like that our package will also return to
the Cran. I didn't change anything significant in the code inside. However,
when I try to submit the package, I receive the following NOTES:

  checking CRAN incoming feasibility ... NOTE

* checking for non-standard things in the check directory ... NOTE
Found the following files/directories:
   ‘PARMA21del1_ident'

I don't know really what this note mean and can I put the package
anyway to Cran?



Best regards,

Karolina

[[alternative HTML version deleted]]

__
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel


__
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel


[R-pkg-devel] The problem with resubmitting the package to the Cran

2023-11-09 Thread Karolina Marek
Hello,

I have the following case. I would like to resubmit a package to the Cran -
per ARMA, which was archived on 2022-05-25, as it required the archived
package 'matlab'. The new version of the 'matlab' was resubmitted to the
Cran on 2022-06-01. So we would like that our package will also return to
the Cran. I didn't change anything significant in the code inside. However,
when I try to submit the package, I receive the following NOTES:

 checking CRAN incoming feasibility ... NOTE

* checking for non-standard things in the check directory ... NOTE
Found the following files/directories:
  ‘PARMA21del1_ident'

I don't know really what this note mean and can I put the package
anyway to Cran?



Best regards,

Karolina

[[alternative HTML version deleted]]

__
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel