Re: [R-pkg-devel] Namespace problem with pre-R 3.0.0 package

2016-03-03 Thread Sebastien Moretti
I have just found that R 2 filled by itself the NAMESPACE file with # Export all names exportPattern(".") # Import all packages listed as Imports or Depends import( cluster ) So I filled the NAMESPACE file with that and gave it to R 3 Now functions are found! Is it enough to do that?

Re: [R-pkg-devel] Namespace problem with pre-R 3.0.0 package

2016-03-03 Thread Sebastien Moretti
I have just found that R 2 filled by itself the NAMESPACE file with # Export all names exportPattern(".") # Import all packages listed as Imports or Depends import( cluster ) So I filled the NAMESPACE file with that and gave it to R 3 Now functions are found! Is it enough to do that?

Re: [R-pkg-devel] Namespace problem with pre-R 3.0.0 package

2016-03-03 Thread Martyn Plummer
On Thu, 2016-03-03 at 16:42 +0100, Uwe Ligges wrote: > > On 03.03.2016 16:08, Martyn Plummer wrote: > > On Thu, 2016-03-03 at 15:45 +0100, Sebastien Moretti wrote: > > > I have just found that R 2 filled by itself the NAMESPACE file > > > with > > > # Export all names > > > exportPattern(".") > >

Re: [R-pkg-devel] Namespace problem with pre-R 3.0.0 package

2016-03-03 Thread Martyn Plummer
On Thu, 2016-03-03 at 15:45 +0100, Sebastien Moretti wrote: > I have just found that R 2 filled by itself the NAMESPACE file with > # Export all names > exportPattern(".") > > # Import all packages listed as Imports or Depends > import( >    cluster > ) > > > So I filled the NAMESPACE file with

Re: [R-pkg-devel] Namespace problem with pre-R 3.0.0 package

2016-03-03 Thread Sebastien Moretti
I have just found that R 2 filled by itself the NAMESPACE file with # Export all names exportPattern(".") # Import all packages listed as Imports or Depends import( cluster ) So I filled the NAMESPACE file with that and gave it to R 3 Now functions are found! Is it enough to do that? Is it

[R-pkg-devel] Namespace problem with pre-R 3.0.0 package

2016-03-03 Thread Sebastien Moretti
Hi I have issues with an R package developed in 2004. It works perfectly in R < 3. It can be installed in R > 3 but functions are not available. Documentation I found is not really helpful for me who are not an R master. I have already fixed some problems with R CMD check but remaining ones