From: Duke Leto Date: Tue, 9 Mar 2010 18:37:21 +0000 (-0800) Subject: Update the Changes file for 0.21 and improve .gitignore X-Git-Url: https://repo.or.cz/w/Math-GSL.git/commitdiff_plain/a5787f3b95fb37e2d4dd0dc23ce435cdf6a1ed8d Update the Changes file for 0.21 and improve .gitignore --- diff --git a/.gitignore b/.gitignore index de8b53d..b0ab1dc 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ tags xs/*_wrap.c swig/system.i .prove +Math-GSL-*/ diff --git a/Changes b/Changes index d0081df..10f60d4 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,14 @@ =head1 Math::GSL Changes +=head1 v0.21 - ??? + - Fixed the export of hypergeometric functions + - In instantiation of GSLBuilder in Build.PL, the value for the parameter + include_dirs were corrected to an anonymous empty array, instead of an + empty string. (Jakob Ilves) + - Operator overloading of vector equality (Thierry Moisan) + - Various doc fixes (Pjotr Prins) + - Typemap fixes (Vincent Danjean) + =head1 v0.20 - May 19 2009 - $rng->get($n) will now return the next $n values of the random number generator - Fixed + added test for RT#45044 math-gsl eigenpair bug, reported with patch by Ian Malone diff --git a/META.yml b/META.yml index 59d6c95..ae1786f 100644 --- a/META.yml +++ b/META.yml @@ -6,17 +6,18 @@ author: abstract: Interface to the GNU Scientific Library using SWIG license: gpl resources: - license: ~ -configure_requires: - ExtUtils::PkgConfig: 1.03 + license: http://opensource.org/licenses/gpl-license.php requires: ExtUtils::PkgConfig: 1.03 Scalar::Util: 0 Test::Class: 0.12 Test::Exception: 0.21 Test::More: 0 - perl: 5.8.0 + perl: v5.8.0 version: 0 +configure_requires: + ExtUtils::PkgConfig: 1.03 + Module::Build: 0.35 provides: Math::GSL: file: lib/Math/GSL.pm @@ -219,8 +220,6 @@ provides: file: lib/Math/GSL/Interp.pm Math::GSL::Interp::gsl_interp_accel: file: lib/Math/GSL/Interp.pm - Math::GSL::Interp::gsl_interp_type: - file: lib/Math/GSL/Interp.pm Math::GSL::Interpc: file: lib/Math/GSL/Interp.pm Math::GSL::Linalg: @@ -519,7 +518,7 @@ provides: file: lib/Math/GSL/Wavelet.pm Math::GSL::Waveletc: file: lib/Math/GSL/Wavelet.pm -generated_by: Module::Build version 0.32 +generated_by: Module::Build version 0.35 meta-spec: - url: http://module-build.sourceforge.net/META-spec-v1.2.html - version: 1.2 + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 diff --git a/Makefile.PL b/Makefile.PL index c8e27ac..b708fc3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,4 @@ -# Note: this file was auto-generated by Module::Build::Compat version 0.32 +# Note: this file was auto-generated by Module::Build::Compat version 0.35 require 5.8.0; unless (eval "use Module::Build::Compat 0.02; 1" ) { @@ -28,6 +28,8 @@ require 5.8.0; eval "use Module::Build::Compat 0.02; 1" or die $@; use lib 'inc'; Module::Build::Compat->run_build_pl(args => \@ARGV); - exit(0) unless(-e 'Build'); # cpantesters convention + my $build_script = 'Build'; + $build_script .= '.com' if $^O eq 'VMS'; + exit(0) unless(-e $build_script); # cpantesters convention require GSLBuilder; Module::Build::Compat->write_makefile(build_class => 'GSLBuilder');