commit 795ef9aa8a223049b14d7840b8fddc28cbb73147
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Sun Jul 26 17:09:49 2009 -0400
Move Chages to Chances_CVS to prep for git log
We plan to move from a manual Changes file to an automatically
generated one extracted from the git log messages. The initial
command is "git log --stat" and will be added to the make dist
command eventually. For now, just generate by hand before making
a CPAN distribution.
Changes | 3983 -----------------------------------------------------------
Changes_CVS | 3983 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 3983 insertions(+), 3983 deletions(-)
commit 762871346e6ce8de9f15ce35c701f6c7330d1a09
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Wed Jul 22 13:50:00 2009 -0400
Added PERL5OPT unset for podselect command
Missed the podselect in Basic/Gen/Makefile.PL.
This unsets PERL5OPT before running podselect
in the generated Makefile. That should prevent
false failures due to Devel::Autoflush not being
available...
Basic/Gen/Makefile.PL | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
commit bc0f8efeb105754c0a0037250962ac74bce7f4fa
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Mon Jul 20 07:27:27 2009 -0400
Make tilde test check against `echo ~` result
Since the goal is to give the same result as the
shell (i.e. bash) expansion of ~, and since all the
false test failures had the PDL::AutoLoader giving
the same result as `echo ~`, I've just made that
the result to check against.
t/autoload.t | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 494e151b73df0de71dcbd8b6c576813974483b46
Author: sisyphus_ <sisyphus1@optusnet.com.au>
Date: Mon Jul 20 13:48:03 2009 +1000
Win32 - MSVC-specific fix for setvaltobad() for PDL_Float
In Basic/Bad/bad.pd:
Provide special handling for setvaltobad() wrt PDL_Float piddles.
Applies only to MSVC++ compilers prior to version 8.0.
Thanks to creamygoodness, BrowserUk, ig and ELISHEVA:
http://www.perlmonks.org/index.pl?node_id=781347
Basic/Bad/bad.pd | 26 +++++++++++++++++++++++++-
1 files changed, 25 insertions(+), 1 deletions(-)
commit 081038b048f69e5b467f54764ea89f244dcd43b7
Author: sisyphus_ <sisyphus1@optusnet.com.au>
Date: Mon Jul 20 13:22:54 2009 +1000
Win32 - Reduce scope of MSVC-specific bugfix
Some MS compiler bugs have been fixed in later
versions of the compiler.
This allows us to change each occurrence of:
#ifdef _MSC_VER
to:
#if defined _MSC_VER && _MSC_VER < 1400
Basic/Core/pdlcore.c.PL | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
commit 1faadeec55cd3c1dd21339bd50331eb8983c0347
Author: sisyphus_ <sisyphus1@optusnet.com.au>
Date: Mon Jul 20 13:14:13 2009 +1000
Basic/Core/Dev.pm - tweak setting of WriteMakefile() LIBS
Instead of specifying LIBS=>[] (on those occasions when LIBS
should be empty) pdlpp_stdargs_int() and pdlpp_stdargs() would
have LIBS=>[''] and LIBS=>[' '] respectively.
Minor rewrite to pdlpp_stdargs_int() and pdlpp_stdargs() to fix this.
Basic/Core/Dev.pm | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
commit 3895fdf00591a26575af8b24084f011e7e7dd15b
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Sat Jul 18 14:18:38 2009 -0400
Added $! to another Basic/Core/Dev.pm die message
Basic/Core/Dev.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 2a720756b87d77f061f2a09aeffa2d789c06246c
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Fri Jul 17 09:21:16 2009 -0400
Added $! to Basic/Core/Dev.pm tempfile error
The die when trylink failed to open its temporary
output file did not include the system error reported.
That has been added to the output to improve debugging.
IDEA: Maybe we should grep die() in the source and make
sure all errors actually include $! if relevant.
Basic/Core/Dev.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 3094252e25685d57e48674d250ffc3ca4ffe0601
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Fri Jul 17 09:01:27 2009 -0400
Added diag print for t/dumper.t small sdump()
There have been persistent t/dumper.t failures
on some BSD platforms. Adding a diag() to print
the result of the first sdump() string to give
a clue as to what the problem is.
t/dumper.t | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 262b36dbdcd998e07a1497b0e99f1196dd7a2f59
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Wed Jul 15 20:11:19 2009 -0400
Minor tweakws to .gitignore and MANIFEST.SKIP
.gitignore | 7 ++++++-
MANIFEST.SKIP | 5 +++++
2 files changed, 11 insertions(+), 1 deletions(-)
commit fb61e3296b8b867952eb19dba3c77b368ebc8213
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Wed Jul 15 20:03:17 2009 -0400
Fix readflex() to work with File::LinearRaid
readflex() in IO/FlexRaw/FlexRaw.pm use method syntax for
read with an input file handle. This failed with a tied
file handle as is used by File::LinearRaid. Replacing the
usage $d->read(...) by read($d, ...) fixed the incompatibility.
I don't know if it should have worked the other way or not.
IO/FlexRaw/FlexRaw.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 3b58ac761e72df3366e5e9a5f5a81cc6785bc425
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Wed Jul 15 08:44:32 2009 -0400
Fold in [dn]make correction to PERL5OPT fix
The "fix" for the -MDevel::Autoflush did not
work with dmake or nmake (presumably because of
the non-sh command shell). Here is a fix from
Sisyphus. Thanks, Rob.
Basic/Pod/Makefile.PL | 10 ++++++++--
Makefile.PL | 11 ++++++++++-
2 files changed, 18 insertions(+), 3 deletions(-)
commit 6142d6296241f77cb72973434db41475889c9d5a
Author: Chris Marshall <chm@alum.mit.edu>
Date: Mon Jul 13 18:06:23 2009 -0400
Cleaning up and updating README-type files
General wordsmithing in:
BUGS: reordering the information needed to clarify things
DEPENDENCIES: minor cleanup
DEVELOPMENT: minor cleanups and update for git
Release_Notes: updated with stub for PDL-2.4.4_06
BUGS | 59 +++++++++++++++++++++++++++++----------------------------
DEPENDENCIES | 5 +--
DEVELOPMENT | 58 +++++++++++++++++++++++++++++++------------------------
Release_Notes | 17 ++++++++++++++++
4 files changed, 82 insertions(+), 57 deletions(-)
commit 93f62cd6af55505254c2458f0c37fbb488adcd24
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Mon Jul 13 09:05:06 2009 -0400
Updated version to 2.4.4_06git for development.
Basic/PDL.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit d94b896d32562303175926760c5a418c45971a5c
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Sat Jul 11 19:08:50 2009 -0400
Update Release_Notes for 2.4.4_05 release
Release_Notes | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
commit a7a0653382b5abb339d4cc8143669eb6ef87b8b6
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Sat Jul 11 19:06:34 2009 -0400
Set $PDL::VERSION to 2.4.4_05 for re-release
There was a missing tab in the earlier release.
This fixes that oops. Rereleaseing to CPAN.
Basic/PDL.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit ea7498273c90f120b3c0e0665319c3475c5dc772
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Sat Jul 11 18:58:19 2009 -0400
Fix missing tab in Basic/Pod/Makefile.PL
That breaks the "fix" for the podselect problem.
Basic/Pod/Makefile.PL | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
commit c5a417b7a8cbcf56bd747daeb3b6d5ccb82fe323
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri Jul 10 16:10:44 2009 -0400
Modified Release_Notes for 2.4.4_05git
Copied the basic section leaving space
for additions as the release progresses.
Release_Notes | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
commit 2e37777a700ecffe4f7412ba5a0553db9e861635
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri Jul 10 16:00:48 2009 -0400
Changed VERSION to 2.4.4_05git
The $PDL::VERSION is changed to 2.4.4_05git for more
development. The pattern I've decided to try is the
development release for a given version, say 2.4.4_05
is the same base with the string 'git' added on the
end. When the release is made, the git suffix is
removed and the distribution gnerated from there.
Basic/PDL.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 537d4d7f0d3d286b730cac453ea30d1e96228119
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri Jul 10 15:30:43 2009 -0400
Change $PDL::VERSION to 2.4.4_04 for release
Another developer's snapshot with more bug fixes
on a CPAN near you soon...
Basic/PDL.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 80620964e4d30b7d99cb6e006ee942aaeadf57a9
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri Jul 10 15:29:49 2009 -0400
Update Release_Notes for PDL-2.4.4_04 release
Release_Notes | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
commit 6966b3131c474313473822133394768d396d9da5
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri Jul 10 15:27:16 2009 -0400
Unset PERL5OPT for podselect in Makefile.PL
Makefile.PL | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
commit 100a3114b05e4afeb156485d94f89320861b697a
Merge: 1401619... 2146da8...
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri Jul 10 11:25:57 2009 -0400
Merge branch 'master' of ssh://marshallch@pdl.git.sourceforge.net/gitroot/pdl
commit 14016191b5bd805ecc1bba6ca57e8d532f166418
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri Jul 10 11:22:36 2009 -0400
Unset PERL5OPT for podselect in Basic/Pod
The podselect command is a perl script and is
affected by the PERL5OPT environment variable.
Unfortunately, the CPAN Testers environment
sets PERL5OPT to load Devel::AutoFlush which
is a problem if that module is not in the
default, system perl @INC.
Basic/Pod/Makefile.PL | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 2146da8709eb37ccaefd5baf4c7f610d609560e7
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Thu Jul 9 22:11:39 2009 -0400
Added warning about parallel make to INSTALL file
Parallel make builds fail on some (all?) platforms.
I've added a warning to the INSTALL file not to use
-j # options for parallel builds. Ideally we would
detect the condition but I have found no clean way
to do so at the moment.
INSTALL | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
commit 822c0e08c0243b054d6f87dcd61841083d745c46
Merge: b1270b4... 5b15c19...
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Thu Jul 9 21:53:00 2009 -0400
Merge branch 'master' of ssh://marshallch@pdl.git.sourceforge.net/gitroot/pdl
commit 5b15c1942df0ac3fcb03a18fad82e1d545f04b65
Author: Chris Marshall <chm@alum.mit.edu>
Date: Thu Jul 9 13:59:18 2009 -0400
Update readme type files for PDL
Updated the BUGS, INSTALL, Known_problems, README, and
Release_Notes files to clean up references to cvs,
add info on current bugs, and correct URLs to sf.net.
BUGS | 16 ++++++++--------
INSTALL | 2 +-
Known_problems | 5 +++++
README | 2 +-
Release_Notes | 35 +++++++++++++++++++++--------------
5 files changed, 36 insertions(+), 24 deletions(-)
commit 8fa0c9830a02943125dbebbeee2bb5bd541c2995
Author: Chris Marshall <chm@alum.mit.edu>
Date: Thu Jul 9 13:09:16 2009 -0400
Fix t/autoload.t bug in tilde expand test
The AutoLoader module code for tilde expansion was corrected
but this test was using the previous method to check. This
makes the test consistent with the new code.
t/autoload.t | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit b1270b46b05019ab859b7e730eeef8a5cde34a09
Merge: b1c7bd8... 479e8a3...
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Tue Jun 30 23:17:12 2009 -0400
Merge branch 'master' of ssh://marshallch@pdl.git.sourceforge.net/gitroot/pdl
commit 479e8a3d2d9472e31768c143d788373d786601a2
Author: Chris Marshall <chm@alum.mit.edu>
Date: Thu Jun 18 15:04:59 2009 -0400
Update the various top level PDL readmes
Updated DEPENDENCIES, Known_problems, README and Release_Notes
in preparation for a coming developers release.
DEPENDENCIES | 16 ++++++++--------
Known_problems | 7 ++++---
README | 8 ++++----
Release_Notes | 24 +++++++++++++++++++++++-
4 files changed, 39 insertions(+), 16 deletions(-)
commit b1c7bd8ffa91fdfc181aa8ceba4b01672110c43a
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Tue Jun 16 21:12:28 2009 -0400
Added friendly .perldlrc suggsetion to perldl docs
A user suggested recommending documentation for new perldl
users on starting from the default.perldlrc file. This
avoids some mistakes such as forgetting to "use PDL;" etc.
perldl.PL | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
commit 16058ffa1a5621d1e57ed1e83e63c39c4ce63613
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Tue Jun 9 21:31:14 2009 -0400
Add cast toe $GENERIC(a) for setvaltonan()
This fixes the case where it was not possible to
set the value to bad for a non-double piddle since
it was difficult/impossible to create the exact
floating point representation of some floats starting
from default doubles. This make the implementation
symmetric with that of setbadtoval().
Basic/Bad/bad.pd | 2 +-
t/bad.t | 7 ++++++-
2 files changed, 7 insertions(+), 2 deletions(-)
commit a28c0a44f80d471a94fa001d929bf379f48ce041
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Tue Jun 9 21:30:17 2009 -0400
Add some more intermediate files to ignore.
.gitignore | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
commit 3f225b92dc76c204a8d62da484dee63eb173c86b
Author: Chris Marshall <chm@alum.mit.edu>
Date: Thu Jun 4 13:05:33 2009 -0400
Make PDL require perl 5.6.2 or above.
CPAN Testers have *no* PASS's on record for any
version of PDL for perl 5.6.0 or 5.6.1. This
modification makes that more explicit in the
configuration process. This is effectively a NO-OP.
DEPENDENCIES | 2 +-
Makefile.PL | 2 +-
Release_Notes | 18 ++++++++++++++++++
3 files changed, 20 insertions(+), 2 deletions(-)
commit 23463ebfc2bc40098106ac8b865145cad4195525
Author: Derek Lamb <lambd@users.sourceforge.net>
Date: Thu May 28 12:03:23 2009 -0400
Update FAQ for CVS->Git migration
Removed references to CVS repos except for auxiliary repositories. Included basi
c git instructions, which I'll see if are correct during this push.
Basic/Pod/FAQ.pod | 97 ++++++++++++++++++++++++-----------------------------
1 files changed, 44 insertions(+), 53 deletions(-)
commit cb8f83e41a27fdcc44600c4ed0d438a39c14f357
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Fri May 22 15:14:40 2009 -0400
Change $PDL::VERSION to 2.4.4_03git for devel
Basic/PDL.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit eb60aabbf51831e42d78521db341296caa348bf0
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Fri May 22 15:10:33 2009 -0400
Fix t/proj_transform to skip when no earth_image()
Missing jpegtopnm functionality in NetPBM or other
causes earth_image() to fail on some platforms.
This modifies the test to skip the remaining tests
if earth_image() can not be loading. NOTE: we should
add better config and tests for the Pic and Pnm
image routines.
t/proj_transform.t | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
commit aec6bc506a26f1f2f093cb7d98775e3d2de18cc6
Author: Chris Marshall <chm@alum.mit.edu>
Date: Tue May 19 13:09:13 2009 -0400
Updated Release_Notes and version for PDL-2.4.4_03
This release includes fixes to date and additional
diagnostics for tracking down remaining CPAN
testers failures. See the Release_Notes for
outstanding problems and path forward. -chm
Basic/PDL.pm | 2 +-
Release_Notes | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 62 insertions(+), 1 deletions(-)
commit 5bcc5c51cecdc8636bf969cec6ba934c63eefc53
Author: Chris Marshall <chm@alum.mit.edu>
Date: Mon May 18 12:02:09 2009 -0400
Added a few more entries to .gitignore
.gitignore | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
commit c99ab05fa7153e644287499adf9c057d8c8b90b9
Author: Chris Marshall <chm@alum.mit.edu>
Date: Mon May 18 10:54:10 2009 -0400
Added ../Basic/Core to @INC for BAD demo builds
The build process for the bad value demos used
PDL::Config to determine if badvals were enabled.
Since Config.pm is not installed until after the
compiles, this caused build failures on some systems.
I'm not sure why it didn't happen more often.
Now we have "use lib '../Basic/Core'" which should
make things work here.
Demos/BAD2_demo.pm.PL | 1 +
Demos/BAD_demo.pm.PL | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
commit c9f86423d5b825d6b06cb7e7ffa6e61325c8e093
Author: Chris Marshall <chm@alum.mit.edu>
Date: Mon May 18 10:19:52 2009 -0400
Fixed trylink() error on temp file failure
Added 'trylink: ' to the file open error message
in trylink() from Basic/Core/Dev.pm to allow for
better debugging. There may be a problem with
$PDL::Config{TEMPFILE} generation that gives bad
results for some configurations.
Basic/Core/Dev.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 6714c8ea95b5c3a7391222de89a99bfd3017bfce
Author: Chris Marshall <chm@alum.mit.edu>
Date: Mon May 18 10:02:37 2009 -0400
Added .dll and .dll.a skip patterns in t/
MANIFEST.SKIP | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
commit 8ec8c134349c8425b52824dbe0a44b5c90600de5
Author: Chris Marshall <chm@alum.mit.edu>
Date: Mon May 18 10:00:40 2009 -0400
Added filename diags to rpnm subroutine
Added the filename tried when rpnm() gives an
error about being unable to open a file. I
hope this will allow me to track down an ongoing
earth_image() failure in CPAN testing.
IO/Pnm/pnm.pd | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit f20f31ba877faa078bd186817d0afa0855c23f85
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Sun May 17 14:14:12 2009 -0400
$PDL::VERSION to 2.4.4_02git for development
Basic/PDL.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 7f187641b623644c498bc374134e2a683cc5c14e
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri May 15 13:15:40 2009 -0400
Added .git and .inlinepdlpp to MANIFEST.SKIP
MANIFEST.SKIP | 326 +++++++++++++++++++++++++++++----------------------------
1 files changed, 164 insertions(+), 162 deletions(-)
commit 61334cdf93253905cb72e8912a1c58d139f96172
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri May 15 10:12:54 2009 -0400
Set version to 2.4.4_02 for CPAN devel release
Basic/PDL.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit e2cb69aeb0fca86f896811f2dc6288cb7f4dffe9
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri May 15 09:59:59 2009 -0400
Turn on diagnostics for 16bit pic tests
Added notes about need for current NetPBM to
get pass with 16bit pic tests. Enabled debug
output for t/pic_16bit to get more info on
build tests.
DEPENDENCIES | 7 +++++--
IO/Pnm/Pic.pm | 2 +-
t/pic_16bit.t | 4 +++-
3 files changed, 9 insertions(+), 4 deletions(-)
commit ded8990f28af63fd8e8aa545f047cbbaad3b409e
Author: Chris Marshall <chm@alum.mit.edu>
Date: Thu May 14 17:05:56 2009 -0400
Fixed earth_image() test to make plan count ok
t/proj_transform.t | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
commit b3f8bb88e530bae243841ead026f627fad0d5f8b
Author: Chris Marshall <chm@alum.mit.edu>
Date: Thu May 14 15:48:17 2009 -0400
Improved diagnostics and granularity of tests
This was in response to a failure of this test
in CPAN automated testing. It was unclear from the
test output what or from where the problem was
coming. This adds a couple more checks that should
help us locate the problem.
t/proj_transform.t | 122 +++++++++++++++++++++++++++++-----------------------
1 files changed, 68 insertions(+), 54 deletions(-)
commit be8c0cf0491ffb7f4cc02453bdecedeed56e6d84
Author: Chris Marshall <chm@alum.mit.edu>
Date: Thu May 14 15:45:21 2009 -0400
Fix params parsing in load_projection_information
Removing a spurious comma that resulted in an
invalid parameter name. Someone familiar with
the PROJ4 binding internals needs to review
this function as it looks like there may be
other problems here.
Lib/GIS/Proj/Proj.pd | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit b6143bf6aaff0452e2c6218782130661677109f5
Author: Chris Marshall <chm@alum.mit.edu>
Date: Thu May 14 15:43:51 2009 -0400
Change version to 2.4.4_02git
Basic/PDL.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit dc3526dd7498a1154f7559fe4139f4fcf0e3eb9d
Author: Chris Marshall <chm@alum.mit.edu>
Date: Wed May 13 14:37:14 2009 -0400
Changes to PDL-2.4.4git for PDL-2.4.4_01 release
Updated some of the PDL install documents and modified
the VERSION for upload to CPAN.
Basic/PDL.pm | 2 +-
DEVELOPMENT | 123 +++++++------------------------------------------------
Known_problems | 7 ++-
README | 2 +-
Release_Notes | 20 +++++++++
5 files changed, 42 insertions(+), 112 deletions(-)
commit d40e805b5964e90742721f017d274333a7ea29fa
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Tue May 5 22:20:49 2009 -0400
Add arg check for empty piddle to hist function
The hist routine fails if given an empty piddle to
work with. This adds a check for the case where
the number of elements in the piddle is zero and
barfs appropriately.
Basic/Core/Basic.pm | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
commit 4a4059f3813c5e2128dd57e3a7e23f5faf33c280
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Wed Apr 29 18:51:04 2009 -0400
Added the Changes for the t/pic_16bit.t commit.
Changes | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
commit 9e239ffb1eb0e52cc67ab2a1c6aff677b3dcb17d
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Wed Apr 29 18:44:35 2009 -0400
Fix sf.net bug 2784016
This fixes sourceforge.net bug number 2784016 originally reported
via rt.cpan.org where the t/pic_16bit.t test checked for pnmtopng
with a very english specific test. The test has been modified to
be less english specific. This is still far from full i8n of PDL.
t/pic_16bit.t | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
commit 6048e3d6f082a3299d10b4920db41388f3762eb4
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Thu Apr 23 18:52:48 2009 -0400
Fixed test 17 in t/plplot.t
Fixed test 17 in t/plplot.t to use a magnitude difference test
rather than equality for the floating point quanitities.
Changes | 3 +++
t/plplot.t | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
commit 5a31fe28398581c840b652d6d42964a156270545
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Thu Apr 23 11:04:35 2009 -0400
Fix t/autoload.t per sf bug number 2339726
Fixed test 3 of autoload.t per the SF.net bug #2339726
report by zowie.
Changes | 3 +++
t/autoload.t | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
commit edb132bc9bdecd1d1f80a7675c23028d92e49896
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Thu Apr 23 11:00:21 2009 -0400
F bug #2753869 fixed with pctover()/oddpctover()
This fixes SF bug #2753869 and also corrects the calculations
performed for both the pctover() and oddpctover() functions.
pctover() should now be consistent with NIST recommendations
and MS Excel. oddpctover() should now be the basic textbook
implementation.
Basic/Ufunc/ufunc.pd | 38 +++++++++++++++++++++++---------------
Changes | 6 ++++++
t/ufunc.t | 10 ++++++++--
3 files changed, 37 insertions(+), 17 deletions(-)