[H5r-commits] r97 - / inst
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Mon Jul 7 00:28:51 CEST 2014
Author: extemporaneousb
Date: 2014-07-07 00:28:49 +0200 (Mon, 07 Jul 2014)
New Revision: 97
Modified:
DESCRIPTION
INSTALL
inst/CRAN_prepare_h5r.sh
Log:
Changed the INSTALL file to remove the note about trying to compile on windows. Added the SystemRequirements field.
Modified: DESCRIPTION
===================================================================
--- DESCRIPTION 2013-07-08 21:52:52 UTC (rev 96)
+++ DESCRIPTION 2014-07-06 22:28:49 UTC (rev 97)
@@ -1,12 +1,12 @@
Package: h5r
Type: Package
Title: Interface to HDF5 Files
-Version: 1.4.7
+Version: 1.4.9
Date: 2011-09-19
Author: James Bullard
-Maintainer: James Bullard <jbullard at pacificbiosciences.com>
+Maintainer: James Bullard <extemporaneousb at yahoo.com>
Depends: R (>= 2.10.0), methods
Imports: utils, methods
Description: A package for reading and writing HDF5 files.
License: LGPL
-
+SystemRequirements: HDF5 (http://www.hdfgroup.org/)
Modified: INSTALL
===================================================================
--- INSTALL 2013-07-08 21:52:52 UTC (rev 96)
+++ INSTALL 2014-07-06 22:28:49 UTC (rev 97)
@@ -1,23 +1,17 @@
INSTALLATION INSTRUCTIONS FOR THE h5r R PACKAGE
Currently, this package works and has been tested with >= hdf5-1.8.4
-(we build with 1.8.8) on Mac OSX, Linux, and Windows. The package will
-most likely work on most POSIX systems where R (>= 2.10) works.
+on Mac OSX, Linux, and Windows.
-The hdf group (http://www.hdfgroup.org) provides binaries for common
-platforms. Unfortunately, the binaries they provide for Windows
-platforms are not compatible with R because they are based on
-Microsoft's compiler. Therefore, we provide MinGw-based static
-libraries to compile against. It is non-trivial to get a functioning
-MinGW-based Windows binary. These binaries are available in the source
-download at R-forge under the 'windows' directory.
-
Unix
----
-To install, a working hdf5 installation must exist. This can be
-downloaded at: http://www.hdfgroup.org/downloads/index.html#hdf5
+To install h5r, a working hdf5 installation must exist. This can be
+downloaded at: http://www.hdfgroup.org/downloads/index.html#hdf5 or
+on a debian based system:
+sudo apt-get install libhdf5-serial libhdf5-serial-dev
+
If the hdf5 libraries and header files are installed in standard
places (/usr, /usr/local) then the configure script should pick them
up and have no problem. If you have not installed hdf5 in a standard
@@ -29,21 +23,15 @@
If you install to a non-standard location like this, then you must set
your LD_LIBRARY_PATH environment variable to contain the directory:
$HDF5_HOME/libs, otherwise, at run-time, there will be no means to
-find the hdf5.so.
+find hdf5.so.
WINDOWS
-------
The easiest way to get a working Windows version is to download the
-pre-built version from CRAN. However, if a user wants to build from
-scratch then they should directly download from the source repostitory
-at: https://r-forge.r-project.org/projects/h5r/
+pre-built version from CRAN.
-That download will have pre-built static hdf5 libraries. One can then
-just build using 'R CMD INSTALL h5r'
-
HELP
----
-Please contact jbullard at pacificbiosciences.com if you have any
-questions.
+Please contact extemporaneousb at yahoo.com if you have any questions.
Modified: inst/CRAN_prepare_h5r.sh
===================================================================
--- inst/CRAN_prepare_h5r.sh 2013-07-08 21:52:52 UTC (rev 96)
+++ inst/CRAN_prepare_h5r.sh 2014-07-06 22:28:49 UTC (rev 97)
@@ -1,8 +1,8 @@
#!/bin/sh
SOURCE=h5r
-TARGET=scratch/h5r-CRAN
-RCMD=/home/UNIXHOME/jbullard/projects/software/R/common/R-3.1-install/bin/R
+TARGET=/tmp/h5r-CRAN
+RCMD=`which R`
rm -rf $TARGET
rsync -av $SOURCE/ $TARGET/
More information about the H5r-commits
mailing list