[libpdl-linearalgebra-perl] 04/11: Change VERSION to 0.06_01 for CPAN release

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 f18ce8d51fe4686ea0e79053e469d2d5eba903ae
Author: Chris Marshall <devel.chm.01 at gmail.com>
Date:   Wed Nov 27 14:17:35 2013 -0500

    Change VERSION to 0.06_01 for CPAN release
---
 Changes                 | 4 ++++
 Complex/Makefile.PL     | 2 +-
 Complex/Makefile.PL.pkg | 4 ++--
 Complex/complex.pd      | 6 ++++--
 LinearAlgebra.pm        | 3 ++-
 Makefile.PL             | 2 +-
 Real/Makefile.PL        | 2 +-
 Real/Makefile.PL.pkg    | 2 +-
 Real/real.pd            | 6 ++++--
 Special/Makefile.PL     | 2 +-
 Special/Special.pm      | 4 +++-
 Trans/Makefile.PL       | 2 +-
 Trans/Makefile.PL.pkg   | 2 +-
 Trans/trans.pd          | 6 ++++--
 14 files changed, 30 insertions(+), 17 deletions(-)

diff --git a/Changes b/Changes
index 4479784..0e7eacc 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension PDL::LinearAlgebra
 
+0.06_01  Sun Nov 17 11:21:52 2013
+
+  * update build to work with new PDL_Indx data type
+
 0.06  Thu Oct 09 00:00:00 2007
 
   * remove conflicting cplx routine (thanks to P. Dupre)
diff --git a/Complex/Makefile.PL b/Complex/Makefile.PL
index a2c8cad..cbcb73e 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.07,
+	'VERSION' => '0.06_01',
 );
 
 # Add genpp rule
diff --git a/Complex/Makefile.PL.pkg b/Complex/Makefile.PL.pkg
index e48869c..1ae266a 100755
--- a/Complex/Makefile.PL.pkg
+++ b/Complex/Makefile.PL.pkg
@@ -14,8 +14,8 @@ $hash{LIBS}[0] .= $^O =~ /MSWin/ ? '' : '-L/usr/lib/atlas -llapack -lf77blas -lc
 $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/lapack.lib' if $^O =~ /MSWin/;
 WriteMakefile(
 	%hash,
-	VERSION_FROM => "",
-	VERSION => 0.03,
+	'VERSION_FROM' => "",
+	'VERSION' => '0.06_01',
 );
 
 # Add genpp rule
diff --git a/Complex/complex.pd b/Complex/complex.pd
index 50c0719..7f61e7a 100644
--- a/Complex/complex.pd
+++ b/Complex/complex.pd
@@ -2,13 +2,15 @@
 
 
 do('../Config');
-our $VERSION = 0.07;
+our $VERSION = '0.06_01';
+pp_setversion(qq{'$VERSION'});
+$VERSION = eval $VERSION;
+
 use PDL::Exporter;
 
 
 
 
-pp_setversion(0.07);
 
 
 if ($config{CBLAS}){
diff --git a/LinearAlgebra.pm b/LinearAlgebra.pm
index e4904c2..dbf47d1 100644
--- a/LinearAlgebra.pm
+++ b/LinearAlgebra.pm
@@ -20,7 +20,8 @@ use constant{
 
 use strict;
 
-our $VERSION = 0.06;
+our $VERSION = '0.06_01';
+$VERSION = eval $VERSION;
 
 @PDL::LinearAlgebra::ISA = qw/PDL::Exporter/;
 @PDL::LinearAlgebra::EXPORT_OK = qw/t diag issym minv mtriinv msyminv mposinv mdet mposdet mrcond positivise
diff --git a/Makefile.PL b/Makefile.PL
index 7449b4c..c5640be 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -2,7 +2,7 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
         'NAME' => 'PDL::LinearAlgebra',
-        'VERSION' => 0.07,
+        'VERSION' => '0.06_01',
         '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 4444756..b557360 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.07,
+	'VERSION' => '0.06_01',
 );
 
 # Add genpp rule
diff --git a/Real/Makefile.PL.pkg b/Real/Makefile.PL.pkg
index eb36429..047789b 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.07,
+	'VERSION' => '0.06_01',
 );
 
 # Add genpp rule
diff --git a/Real/real.pd b/Real/real.pd
index 2fb5aa0..59e229e 100644
--- a/Real/real.pd
+++ b/Real/real.pd
@@ -4,14 +4,16 @@
 
 do('../Config');
 
-our $VERSION = 0.07;
+our $VERSION = '0.06_01';
+pp_setversion(qq{'$VERSION'});
+$VERSION = eval $VERSION;
+
 use PDL::Exporter;
 
 
 #TODO 
 # dot
 
-pp_setversion(0.07);
 
 sub generate_code($){
 	if ($config{WITHOUT_THREAD}){
diff --git a/Special/Makefile.PL b/Special/Makefile.PL
index ae8011c..660746e 100755
--- a/Special/Makefile.PL
+++ b/Special/Makefile.PL
@@ -2,7 +2,7 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
         'NAME' => 'PDL::LinearAlgebra::Special',
-        'VERSION' => 0.07,
+        'VERSION' => '0.06_01',
        );
 __END__
 
diff --git a/Special/Special.pm b/Special/Special.pm
index 3c15c70..e3f1477 100644
--- a/Special/Special.pm
+++ b/Special/Special.pm
@@ -12,7 +12,9 @@ no warnings 'uninitialized';
 @EXPORT_OK  = qw( mhilb mvander mpart mhankel mtoeplitz mtri mpascal mcompanion);
 %EXPORT_TAGS = (Func=>[@EXPORT_OK]);
 
-our $VERSION = 0.03;
+our $VERSION = '0.06_01';
+$VERSION = eval $VERSION;
+
 our @ISA = ( 'PDL::Exporter');
 
 use strict;
diff --git a/Trans/Makefile.PL b/Trans/Makefile.PL
index 7622102..dc8292b 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.07,
+	'VERSION' => '0.06_01',
 );
 
 # Add genpp rule
diff --git a/Trans/Makefile.PL.pkg b/Trans/Makefile.PL.pkg
index 2c07b6f..5422553 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.07,
+	'VERSION' => '0.06_01',
 );
 
 # Add genpp rule
diff --git a/Trans/trans.pd b/Trans/trans.pd
index 68a24ee..3a9ed35 100644
--- a/Trans/trans.pd
+++ b/Trans/trans.pd
@@ -1,4 +1,7 @@
-our $VERSION = 0.07;
+our $VERSION = '0.06_01';
+pp_setversion(qq{'$VERSION'});
+$VERSION = eval $VERSION;
+
 use PDL::Exporter;
 
 if ($^O =~ /MSWin/) {
@@ -89,7 +92,6 @@ double z_abs(dcomplex *z)
 ');
 
 
-pp_setversion(0.07);
 
 pp_addpm({At=>'Top'},<<'EOD');
 use PDL::Func;

-- 
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