[libpdl-linearalgebra-perl] 05/11: VERSION to 0.06_02 and add PDL to CONFIGURE_REQUIRES

Dima Kogan dima at secretsauce.net
Thu Nov 28 20:21:56 UTC 2013


This is an automated email from the git hooks/post-receive script.

dkogan-guest pushed a commit to branch chm
in repository libpdl-linearalgebra-perl.

commit a12a20797278244b7c4e144836c71f2d2c2aab9d
Author: Chris Marshall <devel.chm.01 at gmail.com>
Date:   Wed Nov 27 14:23:18 2013 -0500

    VERSION to 0.06_02 and add PDL to CONFIGURE_REQUIRES
    
    This should fix the CPAN Testers build failures and allow for
    a new official release.
---
 Changes                 | 4 ++++
 Complex/Makefile.PL     | 2 +-
 Complex/Makefile.PL.pkg | 2 +-
 Complex/complex.pd      | 2 +-
 LinearAlgebra.pm        | 2 +-
 Makefile.PL             | 3 ++-
 Real/Makefile.PL        | 2 +-
 Real/Makefile.PL.pkg    | 2 +-
 Real/real.pd            | 2 +-
 Special/Makefile.PL     | 2 +-
 Special/Special.pm      | 2 +-
 Trans/Makefile.PL       | 2 +-
 Trans/Makefile.PL.pkg   | 2 +-
 Trans/trans.pd          | 2 +-
 14 files changed, 18 insertions(+), 13 deletions(-)

diff --git a/Changes b/Changes
index 0e7eacc..8b187d7 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension PDL::LinearAlgebra
 
+0.06_02  Wed Nov 27 14:19:17 EST 2013
+
+  * fix CPAN dependency info so PDL is used for config
+
 0.06_01  Sun Nov 17 11:21:52 2013
 
   * update build to work with new PDL_Indx data type
diff --git a/Complex/Makefile.PL b/Complex/Makefile.PL
index cbcb73e..4053292 100755
--- a/Complex/Makefile.PL
+++ b/Complex/Makefile.PL
@@ -16,7 +16,7 @@ $hash{LIBS}[0] .= $^O =~ /MSWin/ ? '' : '-L/usr/lib/atlas -llapack -lblas -latla
 $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib  comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib  netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib  version.lib odbc32.lib odbccp32.lib msvcrt.lib  ../lapack/libacml.lib "C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\lib\msvcrt.lib" ' if $^O =~ /MSWin/;
 WriteMakefile(
 	%hash,
-	'VERSION' => '0.06_01',
+	'VERSION' => '0.06_02',
 );
 
 # Add genpp rule
diff --git a/Complex/Makefile.PL.pkg b/Complex/Makefile.PL.pkg
index 1ae266a..87b72af 100755
--- a/Complex/Makefile.PL.pkg
+++ b/Complex/Makefile.PL.pkg
@@ -15,7 +15,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 WriteMakefile(
 	%hash,
 	'VERSION_FROM' => "",
-	'VERSION' => '0.06_01',
+	'VERSION' => '0.06_02',
 );
 
 # Add genpp rule
diff --git a/Complex/complex.pd b/Complex/complex.pd
index 7f61e7a..f1290c7 100644
--- a/Complex/complex.pd
+++ b/Complex/complex.pd
@@ -2,7 +2,7 @@
 
 
 do('../Config');
-our $VERSION = '0.06_01';
+our $VERSION = '0.06_02';
 pp_setversion(qq{'$VERSION'});
 $VERSION = eval $VERSION;
 
diff --git a/LinearAlgebra.pm b/LinearAlgebra.pm
index dbf47d1..b769a4f 100644
--- a/LinearAlgebra.pm
+++ b/LinearAlgebra.pm
@@ -20,7 +20,7 @@ use constant{
 
 use strict;
 
-our $VERSION = '0.06_01';
+our $VERSION = '0.06_02';
 $VERSION = eval $VERSION;
 
 @PDL::LinearAlgebra::ISA = qw/PDL::Exporter/;
diff --git a/Makefile.PL b/Makefile.PL
index c5640be..94841f6 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -2,7 +2,8 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
         'NAME' => 'PDL::LinearAlgebra',
-        'VERSION' => '0.06_01',
+        'VERSION' => '0.06_02',
+        'CONFIGURE_REQUIRES' =>  { "PDL" => 0, },
         'BUILD_REQUIRES' =>  { "PDL" => 0, },
 	'PREREQ_PM' => { "PDL" => 0, },
         'DIR' =>  [ qw/Trans Real Complex Special/],
diff --git a/Real/Makefile.PL b/Real/Makefile.PL
index b557360..3c80b6c 100755
--- a/Real/Makefile.PL
+++ b/Real/Makefile.PL
@@ -17,7 +17,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 
 WriteMakefile(
 	%hash,
-	'VERSION' => '0.06_01',
+	'VERSION' => '0.06_02',
 );
 
 # Add genpp rule
diff --git a/Real/Makefile.PL.pkg b/Real/Makefile.PL.pkg
index 047789b..ddf41fd 100755
--- a/Real/Makefile.PL.pkg
+++ b/Real/Makefile.PL.pkg
@@ -16,7 +16,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 WriteMakefile(
 	%hash,
 	'VERSION_FROM' => "",
-	'VERSION' => '0.06_01',
+	'VERSION' => '0.06_02',
 );
 
 # Add genpp rule
diff --git a/Real/real.pd b/Real/real.pd
index 59e229e..6b479f4 100644
--- a/Real/real.pd
+++ b/Real/real.pd
@@ -4,7 +4,7 @@
 
 do('../Config');
 
-our $VERSION = '0.06_01';
+our $VERSION = '0.06_02';
 pp_setversion(qq{'$VERSION'});
 $VERSION = eval $VERSION;
 
diff --git a/Special/Makefile.PL b/Special/Makefile.PL
index 660746e..8366996 100755
--- a/Special/Makefile.PL
+++ b/Special/Makefile.PL
@@ -2,7 +2,7 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
         'NAME' => 'PDL::LinearAlgebra::Special',
-        'VERSION' => '0.06_01',
+        'VERSION' => '0.06_02',
        );
 __END__
 
diff --git a/Special/Special.pm b/Special/Special.pm
index e3f1477..e14d5d8 100644
--- a/Special/Special.pm
+++ b/Special/Special.pm
@@ -12,7 +12,7 @@ no warnings 'uninitialized';
 @EXPORT_OK  = qw( mhilb mvander mpart mhankel mtoeplitz mtri mpascal mcompanion);
 %EXPORT_TAGS = (Func=>[@EXPORT_OK]);
 
-our $VERSION = '0.06_01';
+our $VERSION = '0.06_02';
 $VERSION = eval $VERSION;
 
 our @ISA = ( 'PDL::Exporter');
diff --git a/Trans/Makefile.PL b/Trans/Makefile.PL
index dc8292b..7aa8bee 100644
--- a/Trans/Makefile.PL
+++ b/Trans/Makefile.PL
@@ -16,7 +16,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 
 WriteMakefile(
 	%hash,
-	'VERSION' => '0.06_01',
+	'VERSION' => '0.06_02',
 );
 
 # Add genpp rule
diff --git a/Trans/Makefile.PL.pkg b/Trans/Makefile.PL.pkg
index 5422553..3863aab 100644
--- a/Trans/Makefile.PL.pkg
+++ b/Trans/Makefile.PL.pkg
@@ -15,7 +15,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 WriteMakefile(
 	%hash,
 	'VERSION_FROM' => "",
-	'VERSION' => '0.06_01',
+	'VERSION' => '0.06_02',
 );
 
 # Add genpp rule
diff --git a/Trans/trans.pd b/Trans/trans.pd
index 3a9ed35..69fda56 100644
--- a/Trans/trans.pd
+++ b/Trans/trans.pd
@@ -1,4 +1,4 @@
-our $VERSION = '0.06_01';
+our $VERSION = '0.06_02';
 pp_setversion(qq{'$VERSION'});
 $VERSION = eval $VERSION;
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libpdl-linearalgebra-perl.git



More information about the Pkg-perl-cvs-commits mailing list