[Rd] duplication regression (?)

2014-04-14 Thread Scott Kostyshak
Below is an example of output that changed as a result of r64970. I did not see any NEWS item suggesting this change is expected. Note that the example is contrived and I don't have a use case for it. I stumbled across it when playing with recent changes in R relating to duplication. Does the

Re: [Rd] R 3.1.0: 'R CMD Sweave' deletes non tex files created upon batch mode exit

2014-04-14 Thread Martin Maechler
Marc Schwartz marc_schwa...@me.com on Sun, 13 Apr 2014 10:22:55 -0500 writes: [on the R-SIG-Mac mailing list] : Hi all, With R version 3.1.0 on OSX, using either the Snow Leopard or the Mavericks binary installation on a Mac with fully updated Mavericks, there has been

Re: [Rd] R 3.1.0: 'R CMD Sweave' deletes non tex files created upon batch mode exit

2014-04-14 Thread Marc Schwartz
Hi Martin, Thanks for your confirmation on this. I normally do not use R CMD Sweave, as I too run under ESS in normal day to day operations. This finding was a quirk of having a particular Rnw document that I occasionally run using R CMD Sweave and I had done so over the weekend, realizing

Re: [Rd] R 3.1.0: 'R CMD Sweave' deletes non tex files created upon batch mode exit

2014-04-14 Thread Henrik Bengtsson
Until fixed, one way to fool R here without changing the vignette or anything else seems to be (verified on Windows): mkdir figures set SWEAVE_OPTIONS=prefix.string=figures/fig R CMD Sweave foo.Rnw That obviously has some limitations. /Henrik On Mon, Apr 14, 2014 at 5:28 AM, Martin Maechler

[Rd] question about code signing

2014-04-14 Thread Ivan Zaigralin
Greetings! I maintain R SlackBuild for Slackware and derivatives, and it would make me sleep easier if I could verify gpg signatures of the sources I refer to. Is there any way to get the source signed with gpg, by any chance, preferably in tarball form? signature.asc Description: OpenPGP

[Rd] best way to write tests when sort() evaluates differently in R CMD check due to LC_COLLATE locale setting?

2014-04-14 Thread Skye Bender-deMoll
Dear R devel, What is the correct way to write package tests that could possibly fail due to locale collation behavior? Is it safe/proper for me to call Sys.setlocale(LC_COLLATE, en_US.UTF-8) in each test file? Or should I explicitly force collation to C before writing tests? Or do I need