[libpdl-linearalgebra-perl] 24/24: Update VERSION to 0.12 and fix one last package problem

Dima Kogan dima at secretsauce.net
Mon Aug 31 06:57:21 UTC 2015


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

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

commit be2ca0f81343ed82df9b39ae5698d62ce1aa9b28
Author: Chris Marshall <devel.chm.01 at gmail.com>
Date:   Mon Jun 8 10:43:33 2015 -0400

    Update VERSION to 0.12 and fix one last package problem
---
 Changes             | 5 +++++
 Complex/Makefile.PL | 1 +
 Complex/complex.pd  | 2 +-
 LinearAlgebra.pm    | 5 +++--
 Makefile.PL         | 1 +
 Real/Makefile.PL    | 1 +
 Real/real.pd        | 2 +-
 Special/Makefile.PL | 1 +
 Special/Special.pm  | 2 +-
 Trans/Makefile.PL   | 1 +
 Trans/trans.pd      | 2 +-
 11 files changed, 17 insertions(+), 6 deletions(-)

diff --git a/Changes b/Changes
index fcdb082..5f3cec9 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,11 @@
 Revision history for Perl extension PDL::LinearAlgebra
 
 
+0.12  Mon Jun  8 10:42:52 EDT 2015
+
+  * Fix last 'package PDL::Complex'
+  * Add 'clean' option to remove *~ files
+
 0.11
 
   * Hide PDL and PDL::Complex package declarations from
diff --git a/Complex/Makefile.PL b/Complex/Makefile.PL
index 822f153..ed8e3ff 100755
--- a/Complex/Makefile.PL
+++ b/Complex/Makefile.PL
@@ -24,6 +24,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 WriteMakefile(
 	%hash,
 	'VERSION_FROM' => 'complex.pd',
+        'clean' => { FILES => '*~' },
 );
 
 # Add genpp rule
diff --git a/Complex/complex.pd b/Complex/complex.pd
index 6725226..92a8f71 100644
--- a/Complex/complex.pd
+++ b/Complex/complex.pd
@@ -2,7 +2,7 @@
 
 
 do('../Config');
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 pp_setversion(qq{'$VERSION'});
 $VERSION = eval $VERSION;
 
diff --git a/LinearAlgebra.pm b/LinearAlgebra.pm
index b2e4c7a..f7df7ff 100644
--- a/LinearAlgebra.pm
+++ b/LinearAlgebra.pm
@@ -20,7 +20,7 @@ use constant{
 
 use strict;
 
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 $VERSION = eval $VERSION;
 
 @PDL::LinearAlgebra::ISA = qw/PDL::Exporter/;
@@ -47,7 +47,8 @@ sub neginf() { $neginf->copy };
 
 {
 
-package PDL::Complex;
+package # hide from CPAN indexer
+  PDL::Complex;
 
 use PDL::Types;
 
diff --git a/Makefile.PL b/Makefile.PL
index d2c4422..5e88db9 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -22,6 +22,7 @@ WriteMakefile(
 	'PREREQ_PM' => { "PDL" => 0, "constant" => 1.03, },
         'DIR' =>  [ qw/Trans Real Complex Special/],
         'dist' => { PREOP=>'$(PERL) -MPDL::Core::Dev -e pdlpp_mkgen $(DISTVNAME)' }, # GENERATED subdir in dist tarball
+        'clean' => { FILES => '*~' },
        );
 __END__
 
diff --git a/Real/Makefile.PL b/Real/Makefile.PL
index 85448e1..fe60f86 100755
--- a/Real/Makefile.PL
+++ b/Real/Makefile.PL
@@ -26,6 +26,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 WriteMakefile(
 	%hash,
 	'VERSION_FROM' => 'real.pd',
+        'clean' => { FILES => '*~' },
 );
 
 # Add genpp rule
diff --git a/Real/real.pd b/Real/real.pd
index 14c6274..f1b66d1 100644
--- a/Real/real.pd
+++ b/Real/real.pd
@@ -4,7 +4,7 @@
 
 do('../Config');
 
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 pp_setversion(qq{'$VERSION'});
 $VERSION = eval $VERSION;
 
diff --git a/Special/Makefile.PL b/Special/Makefile.PL
index 5f98ea2..b1ddef2 100755
--- a/Special/Makefile.PL
+++ b/Special/Makefile.PL
@@ -3,6 +3,7 @@ use ExtUtils::MakeMaker;
 WriteMakefile(
         'NAME' => 'PDL::LinearAlgebra::Special',
         'VERSION_FROM' => 'Special.pm',
+        'clean' => { FILES => '*~' },
        );
 __END__
 
diff --git a/Special/Special.pm b/Special/Special.pm
index df243c1..6c8ec28 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.11';
+our $VERSION = '0.12';
 $VERSION = eval $VERSION;
 
 our @ISA = ( 'PDL::Exporter');
diff --git a/Trans/Makefile.PL b/Trans/Makefile.PL
index ed2cc61..cd720cb 100644
--- a/Trans/Makefile.PL
+++ b/Trans/Makefile.PL
@@ -21,6 +21,7 @@ $hash{LDLOADLIBS} .= 'oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.li
 WriteMakefile(
 	%hash,
 	'VERSION_FROM' => 'trans.pd',
+        'clean' => { FILES => '*~' },
 );
 
 # Add genpp rule
diff --git a/Trans/trans.pd b/Trans/trans.pd
index a9b9472..fef4fd6 100644
--- a/Trans/trans.pd
+++ b/Trans/trans.pd
@@ -1,4 +1,4 @@
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 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