[Mboost-commits] r859 - /

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed Aug 12 11:50:00 CEST 2015


Author: hofner
Date: 2015-08-12 11:49:59 +0200 (Wed, 12 Aug 2015)
New Revision: 859

Modified:
   README.md
   checks.R
   svn_release.txt
Log:
Updated release instructions and scripts

Modified: README.md
===================================================================
--- README.md	2015-08-12 09:47:20 UTC (rev 858)
+++ README.md	2015-08-12 09:49:59 UTC (rev 859)
@@ -1,19 +1,33 @@
 mboost
 ======
 
-[![Build Status](https://travis-ci.org/hofnerb/mboost.svg?branch=master)](https://travis-ci.org/hofnerb/mboost) 
+[![Build Status](https://travis-ci.org/hofnerb/mboost.svg?branch=master)](https://travis-ci.org/hofnerb/mboost)
 [![](http://cranlogs.r-pkg.org/badges/mboost)](http://cran.rstudio.com/web/packages/mboost/index.html)
 
-`mboost` implements boosting algorithms for fitting generalized linear, additive and interaction models 
-to potentially high-dimensional data. 
+`mboost` implements boosting algorithms for fitting generalized linear, additive and interaction models
+to potentially high-dimensional data.
 
 This [GitHub repository](https://github.com/hofnerb/mboost) is essentially just
 a copy of the r-forge repository which is hosted at
 [R-forge](https://r-forge.r-project.org/projects/mboost).
 
-## Installation
+## Using mboost
 
-- Current version (from CRAN): 
+For installation instructions see below.
+
+Instructions on how to use `mboost` can be found in various places:
+- Have a look at the tutorials:
+  - [mboost tutorial](http://cran.r-project.org/web/packages/mboost/vignettes/mboost_tutorial.pdf)
+  - [mboost 2.0](http://cran.r-project.org/web/packages/mboost/vignettes/mboost.pdf)
+- Visit the [project homepage](http://mboost.r-forge.r-project.org/) and see further tutorials and references there.
+
+## Reporting Issues (etc.)
+
+For issues, bugs, feature requests etc. please use the [GitHub Issues](https://github.com/hofnerb/mboost/issues).
+
+## Installation Instructions
+
+- Current version (from CRAN):
   ```
   install.packages("mboost")
   ```
@@ -37,20 +51,13 @@
   install.packages("devtools")
   ```
 
-- Alternatively, both the current patch and development versions of `mboost` (or `mboostDevel` respectively) 
+- Alternatively, both the current patch and development versions of `mboost` (or `mboostDevel` respectively)
   can be downloaded from R-forge if it was successfully built:
   ```
   install.packages("mboost", repos = "http://r-forge.r-project.org")
   ## or
   install.packages("mboostDevel", repos = "http://r-forge.r-project.org")
   ```
-  However, currently these builds often don't succeed and furthermore are only available 
+  However, currently these builds often don't succeed and furthermore are only available
   for recent versions of R.
-  
-## Using mboost
 
-Instructions on how to use `mboost` can be found in various places:
-- Have a look at the tutorials:
-  - [mboost tutorial](http://cran.r-project.org/web/packages/mboost/vignettes/mboost_tutorial.pdf)
-  - [mboost 2.0](http://cran.r-project.org/web/packages/mboost/vignettes/mboost.pdf)
-- Visit the [project homepage](http://mboost.r-forge.r-project.org/) and see further tutorials and references there.

Modified: checks.R
===================================================================
--- checks.R	2015-08-12 09:47:20 UTC (rev 858)
+++ checks.R	2015-08-12 09:49:59 UTC (rev 859)
@@ -1,4 +1,5 @@
 make_check <- function(srcpkg, dir = "./") {
+   require("tools")
    if (dir == "") dir <- "./"
    .libPaths("")
    options(repos = "http://CRAN.at.R-project.org")
@@ -13,11 +14,13 @@
        dir.create(cdir)
    } else {
        system(paste("rm -rf", cdir))
+       dir.create(cdir)
    }
    if (!file.exists(ddir)) {
        dir.create(ddir)
    } else {
        system(paste("rm -rf", ddir))
+       dir.create(ddir)
    }
    file.copy(srcpkg, ddir)
    download.packages(pkg, repos = options("repos"), destdir = cdir)

Modified: svn_release.txt
===================================================================
--- svn_release.txt	2015-08-12 09:47:20 UTC (rev 858)
+++ svn_release.txt	2015-08-12 09:49:59 UTC (rev 859)
@@ -28,7 +28,7 @@
     Update inst/NEWS.Rd (see also "How to preview NEWS.Rd files")
     Update Date and Version in /man/mboost_package.Rd
 
-    R CMD build --resave-data --compact-vignettes pkg/mboostPatch && R CMD check --as-cran mboost_XXX.tar.gz
+    R CMD build --resave-data --compact-vignettes pkg/mboostPatch && R CMD check --as-cran --run-donttest mboost_XXX.tar.gz
 
     If differences to .Rout.save occure:
        - Manually check differences. You might want to use something like:
@@ -60,7 +60,7 @@
     Commit changes to pkg/mboostPatch/
 
     Now build package without test folder to be submitted to CRAN
-       R CMD buildCRAN --resave-data --compact-vignettes pkg/mboostPatch && R CMD check --as-cran mboost_XXX.tar.gz
+       R CMD buildCRAN --resave-data --compact-vignettes pkg/mboostPatch && R CMD check --as-cran --run-donttest mboost_XXX.tar.gz
     To use the script copy it to R RHOME (< enter this in the console) /bin and make it executable.
 
     Check that reverse dependencies don't break.



More information about the Mboost-commits mailing list