Re: [R-pkg-devel] How to (conditionally) use an archived package (without Suggests)?

2018-02-25 Thread meik michalke
g specific parts (support for several natural languages) of one huge package into several add-on packages, and these add-on packages were rejected from CRAN so i can't make any of them a dependecy. meaning they're not even archived :-D viele grüße :: m.eik -- dipl. psych. meik mic

[R-pkg-devel] stages of package loading

2018-02-25 Thread meik michalke
s the dependency of A. it seems .onLoad() is not the right place for X to search for A or B, because it always throws the message when the first of both packages is being loaded. any suggestions? viele grüße :: m.eik -- dipl. psych. meik michalke abt. f"ur diagnostik und differentielle p

Re: [R-pkg-devel] How to (conditionally) use an archived package (without Suggests)?

2018-02-25 Thread meik michalke
Am Sonntag, 25. Februar 2018, 06:35:52 CET schrieb Dirk Eddelbuettel: > On 25 February 2018 at 11:51, meik michalke wrote: > | 'Additional_repositories' is meant for R package repositories, it won't > | work with source code git repos. if a package is in 'Suggests&

Re: [R-pkg-devel] stages of package loading

2018-02-25 Thread meik michalke
Am Sonntag, 25. Februar 2018, 12:38:35 CET schrieb meik michalke: > now i want to load A and B without X falsely informing me that they are > missing. i.e., it should be clear to X that A is available and currently > being loaded when X itself is loaded as the dependency of A. >