Re: [R-pkg-devel] AppVeyor with LinkingTo: field

2017-02-13 Thread Gábor Csárdi
Indeed, I am sorry, misremembered. G. On Mon, Feb 13, 2017 at 4:36 PM, Dirk Eddelbuettel wrote: > > (off-list) > > On 13 February 2017 at 15:11, Gábor Csárdi wrote: > | You need to put it in 'Imports' as well. Whatever is in LinkingTo, must > be > | in Imports. > > Not true. > > So if you could

Re: [R-pkg-devel] AppVeyor with LinkingTo: field

2017-02-13 Thread Tim Keitt
On Mon, Feb 13, 2017 at 10:31 AM, Tim Keitt wrote: > I am almost there -- only failing on devel in Travis CI. It failing at the > "R CMD build" phase. > > * installing *source* package ‘odeintr’ ... >> ** libs >> I/home/travis/R-bin/lib/R/include -DNDEBUG -I"../inst/include" >> -I"/home/travis/R/

Re: [R-pkg-devel] AppVeyor with LinkingTo: field

2017-02-13 Thread Tim Keitt
On Mon, Feb 13, 2017 at 10:36 AM, Dirk Eddelbuettel wrote: > Not true. > It seems to be a work-around for Travis, but as you say not a general packaging requirement. THK http://www.keittlab.org/ [[alternative HTML version deleted]] __ R-pac

Re: [R-pkg-devel] AppVeyor with LinkingTo: field

2017-02-13 Thread Dirk Eddelbuettel
(off-list) On 13 February 2017 at 15:11, Gábor Csárdi wrote: | You need to put it in 'Imports' as well. Whatever is in LinkingTo, must be | in Imports. Not true. So if you could not tic edd@max:~/git$ cat anytime/DESCRIPTION Package: anytime Type: Package Title: Anything to 'POSIXct' or 'Date'

Re: [R-pkg-devel] AppVeyor with LinkingTo: field

2017-02-13 Thread Tim Keitt
On Mon, Feb 13, 2017 at 9:19 AM, Dirk Eddelbuettel wrote: > [1] http://eddelbuettel.github.io/r-travis/ > This looks useful. I'll have to investigate. THK http://www.keittlab.org/ [[alternative HTML version deleted]] __ R-package-devel@r-pr

Re: [R-pkg-devel] AppVeyor with LinkingTo: field

2017-02-13 Thread Tim Keitt
On Mon, Feb 13, 2017 at 9:11 AM, Gábor Csárdi wrote: > You need to put it in 'Imports' as well. Whatever is in LinkingTo, must be > in Imports. > That did the trick. Thanks. I am almost there -- only failing on devel in Travis CI. It failing at the "R CMD build" phase. * installing *source* pa

Re: [R-pkg-devel] AppVeyor with LinkingTo: field

2017-02-13 Thread Dirk Eddelbuettel
On 13 February 2017 at 09:05, Tim Keitt wrote: | My tests are failing on AppVeyor because BH is not available. How do I | force AppVeyor to install the package? It is in the LinkingTo: field, but | my tests call sourceCpp and it fails there. The Cpp code has the "depends" | directive for BH. It is

Re: [R-pkg-devel] AppVeyor with LinkingTo: field

2017-02-13 Thread Gábor Csárdi
You need to put it in 'Imports' as well. Whatever is in LinkingTo, must be in Imports. Gabor On Mon, Feb 13, 2017 at 3:05 PM, Tim Keitt wrote: > My tests are failing on AppVeyor because BH is not available. How do I > force AppVeyor to install the package? It is in the LinkingTo: field, but > m