[Getdata-commits] SF.net SVN: getdata:[832] trunk/getdata
Scientific Database Format
Brought to you by:
ketiltrout
|
From: <ket...@us...> - 2013-05-15 00:53:38
|
Revision: 832
http://sourceforge.net/p/getdata/code/832
Author: ketiltrout
Date: 2013-05-15 00:53:35 +0000 (Wed, 15 May 2013)
Log Message:
-----------
GetData-0.8.4.
Modified Paths:
--------------
trunk/getdata/ChangeLog
trunk/getdata/README
trunk/getdata/RELEASE_NOTES.in
trunk/getdata/m4/version.m4
Modified: trunk/getdata/ChangeLog
===================================================================
--- trunk/getdata/ChangeLog 2013-05-15 00:52:52 UTC (rev 831)
+++ trunk/getdata/ChangeLog 2013-05-15 00:53:35 UTC (rev 832)
@@ -1,3 +1,6 @@
+2013-05-14 D. V. Wiebe <ge...@ke...> svn:832
+ GetData-0.8.4 released.
+
2013-04-11 D. V. Wiebe <ge...@ke...> svn:830
GetData-0.8.4rc2:
Modified: trunk/getdata/README
===================================================================
--- trunk/getdata/README 2013-05-15 00:52:52 UTC (rev 831)
+++ trunk/getdata/README 2013-05-15 00:53:35 UTC (rev 832)
@@ -55,9 +55,10 @@
- C++ (libgetdata++)
- Fortran 77 (libfgetdata)
- Fortran 95 (libf95getdata)
- - Python (pygetdata)
- the Interactive Data Language (IDL; idl_getdata)
+ - MATLAB (libgetdata-matlab and associated MEX files)
- Perl (GetData.pm)
+ - Python (pygetdata)
Documentation for the various bindings, if present, can be found in files
named `README.<language>' in the doc/ directory. The C interface is described
@@ -138,7 +139,22 @@
the associated encoding scheme and fail gracefully if encountering dirfiles so
encoded.
+Building bindings requires appropriate compilers/interpreters and libraries for
+the various languages. In particular:
+- the C++ bindings require a C++90 compliant compiler
+- the Fortran-77 bindings require a Fortran-77 compliant compiler
+- the Fortran-95 bindings require both a Fortran-95 compliant compiler and a
+ Fortran-77 compiler (because the Fortran-95 bindings are built on top of
+ the Fortran-77 bindings)
+- the IDL bindings require a licenced IDL interpreter, version 5.5 or later;
+ they will not work on an unlicenced interpreter in timed demo mode
+- the MATLAB bindings require both a MATLAB interpreter and a MEX compiler
+- the Perl bindings require a Perl5 interpreter version 5.6 or later, as well
+ as the Math::Complex and Module::Build modules.
+- the Python bindings require Python 2.3 or later. NumPy is also highly
+ recommended for efficient use.
+
USING THE LIBRARY
=================
Modified: trunk/getdata/RELEASE_NOTES.in
===================================================================
--- trunk/getdata/RELEASE_NOTES.in 2013-05-15 00:52:52 UTC (rev 831)
+++ trunk/getdata/RELEASE_NOTES.in 2013-05-15 00:53:35 UTC (rev 832)
@@ -1,4 +1,4 @@
-GetData 0.8.3 is known to compile and pass the test suite on the following
+GetData 0.8.4 is known to compile and pass the test suite on the following
systems (including C++ and Fortran bindings):
Linux:
@@ -21,11 +21,11 @@
---------------------------------------------------------------------------
Four packages are available:
-* getdata-0.8.3.tar.bz2/.gz: the full source code to the library, with
+* getdata-0.8.4.tar.bz2/.gz: the full source code to the library, with
bindings. This package uses the GNU autotools build system, and is
designed for POSIX systems (UNIX, Linux, BSD, MacOS X, Cygwin, MSys,
&c.)
-* getdata_win-0.8.3.zip: a reduced source code package, with the CMake
+* getdata_win-0.8.4.zip: a reduced source code package, with the CMake
build system designed to be built on Microsoft Windows, either using
the free MinGW compiler, or else Microsoft's Visual C++ compiler.
(The full source package above can also be built using MinGW, if the
@@ -34,12 +34,12 @@
package lacks support for compressed dirfiles, the Legacy API, and a
few other features. This build is used in native Microsoft Windows
builds of kst2.
-* idl_getdata-0.8.3.tar.bz2/.gz: the Interactive Data Language (IDL)
+* idl_getdata-0.8.4.tar.bz2/.gz: the Interactive Data Language (IDL)
bindings, packaged separately with an autotools build system, designed
to be built against an already installed version of GetData. Due to
licensing restrictions, pre-built packages rarely come with these
bindings, and this package allows end-users to add support for IDL
-* matlab_getdata-0.8.3.tar.bz2/.gz: the MATLAB bindings, packaged separately
+* matlab_getdata-0.8.4.tar.bz2/.gz: the MATLAB bindings, packaged separately
with an autotools build system, designed to be built against an already
installed version of GetData. Due to licensing restrictions, pre-built
packages rarely come with these bindings, and this package allows end-users
Modified: trunk/getdata/m4/version.m4
===================================================================
--- trunk/getdata/m4/version.m4 2013-05-15 00:52:52 UTC (rev 831)
+++ trunk/getdata/m4/version.m4 2013-05-15 00:53:35 UTC (rev 832)
@@ -21,7 +21,7 @@
m4_define(getdata_major, 0)
m4_define(getdata_minor, 8)
m4_define(getdata_revision, 4)
-m4_define(getdata_extra, [rc2])
+m4_define(getdata_extra, [])
m4_define(getdata_version,
getdata_major.getdata_minor.getdata_revision[]getdata_extra)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|