From: <li...@us...> - 2013-08-18 22:31:19
|
Revision: 267 http://sourceforge.net/p/bugs-r/code/267 Author: ligges Date: 2013-08-18 22:31:14 +0000 (Sun, 18 Aug 2013) Log Message: ----------- "hotfix": some functions can only be imported under Windows Modified Paths: -------------- trunk/BRugs/DESCRIPTION trunk/BRugs/NAMESPACE Modified: trunk/BRugs/DESCRIPTION =================================================================== --- trunk/BRugs/DESCRIPTION 2013-08-18 16:54:53 UTC (rev 266) +++ trunk/BRugs/DESCRIPTION 2013-08-18 22:31:14 UTC (rev 267) @@ -1,6 +1,6 @@ Package: BRugs Title: R interface to the OpenBUGS MCMC software -Version: 0.8-2 +Version: 0.8-3 Date: 2013-08-18 Author: OpenBUGS was developed by Andrew Thomas, Dave Lunn, David Spiegelhalter and Nicky Best. R interface developed by Uwe Ligges, Sibylle Sturtz, Andrew Gelman, Gregor Gorjanc and Chris Jackson. Linux port and most recent developments by Chris Jackson. Description: Fully-interactive R interface to the OpenBUGS software for Bayesian analysis using MCMC sampling. Runs natively and stably in 32-bit R under Windows. Versions running on Linux and on 64-bit R under Windows are in "beta" status and less efficient. Modified: trunk/BRugs/NAMESPACE =================================================================== --- trunk/BRugs/NAMESPACE 2013-08-18 16:54:53 UTC (rev 266) +++ trunk/BRugs/NAMESPACE 2013-08-18 22:31:14 UTC (rev 267) @@ -1,5 +1,6 @@ importFrom(coda, mcmc, mcmc.list) -importFrom(utils, compareVersion, maintainer, packageDescription, readRegistry) +importFrom(utils, compareVersion, maintainer, packageDescription) +if(tools:::.OStype() == "windows") importFrom(utils, readRegistry) export(BRugsFit, bugsData, bugsInits, buildMCMC, dicClear, dicSet, dicStats, getNumChains, help.BRugs, help.WinBUGS, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |