r9144 - in /branches/upstream/libchemistry-elements-perl/current: Changes Elements.pm META.yml Makefile.PL

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Fri Nov 9 23:07:56 UTC 2007


Author: gregoa-guest
Date: Fri Nov  9 23:07:56 2007
New Revision: 9144

URL: http://svn.debian.org/wsvn/?sc=1&rev=9144
Log:
[svn-upgrade] Integrating new upstream version, libchemistry-elements-perl (1.05)

Modified:
    branches/upstream/libchemistry-elements-perl/current/Changes
    branches/upstream/libchemistry-elements-perl/current/Elements.pm
    branches/upstream/libchemistry-elements-perl/current/META.yml
    branches/upstream/libchemistry-elements-perl/current/Makefile.PL

Modified: branches/upstream/libchemistry-elements-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libchemistry-elements-perl/current/Changes?rev=9144&op=diff
==============================================================================
--- branches/upstream/libchemistry-elements-perl/current/Changes (original)
+++ branches/upstream/libchemistry-elements-perl/current/Changes Fri Nov  9 23:07:56 2007
@@ -1,4 +1,8 @@
 Revision history for Perl extension Chemistry::Elements.
+
+1.05 - Fri Nov  9 05:26:15 2007
+	* cleanups for the move from CVS to SVN, and latest kwalitee
+	* no need to upgrade
 
 1.04 - Mon Jul 30 19:48:04 2007
 	* Updated distro to use new subversion repo, and for kwalitee

Modified: branches/upstream/libchemistry-elements-perl/current/Elements.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libchemistry-elements-perl/current/Elements.pm?rev=9144&op=diff
==============================================================================
--- branches/upstream/libchemistry-elements-perl/current/Elements.pm (original)
+++ branches/upstream/libchemistry-elements-perl/current/Elements.pm Fri Nov  9 23:07:56 2007
@@ -1,6 +1,9 @@
 package Chemistry::Elements;
 
 use strict;
+use warnings;
+no warnings;
+
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD
              $debug %names %elements $maximum_Z);
 
@@ -9,7 +12,7 @@
 @ISA       = qw(Exporter);
 @EXPORT_OK = qw(get_Z get_symbol get_name);
 @EXPORT    = qw();
-$VERSION   = 1.04;
+$VERSION   = 1.05;
 
 use subs qw(_get_name_by_Z
             _get_symbol_by_Z

Modified: branches/upstream/libchemistry-elements-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libchemistry-elements-perl/current/META.yml?rev=9144&op=diff
==============================================================================
--- branches/upstream/libchemistry-elements-perl/current/META.yml (original)
+++ branches/upstream/libchemistry-elements-perl/current/META.yml Fri Nov  9 23:07:56 2007
@@ -1,13 +1,14 @@
 --- #YAML:1.0
 name:                Chemistry-Elements
-version:             1.04
-abstract:            ~
+version:             1.05
+abstract:            Perl extension for working with Chemical Elements
 license:             perl
-generated_by:        ExtUtils::MakeMaker version 6.32
+generated_by:        ExtUtils::MakeMaker version 6.36
 distribution_type:   module
 requires:     
+    Test::More:                    0
 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.3.html
+    version: 1.3
 author:
     - brian d foy <bdfoy at cpan.org>

Modified: branches/upstream/libchemistry-elements-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libchemistry-elements-perl/current/Makefile.PL?rev=9144&op=diff
==============================================================================
--- branches/upstream/libchemistry-elements-perl/current/Makefile.PL (original)
+++ branches/upstream/libchemistry-elements-perl/current/Makefile.PL Fri Nov  9 23:07:56 2007
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL 2297 2007-07-31 00:47:32Z comdog $
+# $Id: Makefile.PL 2362 2007-11-09 11:25:58Z comdog $
 use ExtUtils::MakeMaker;
 
 eval "use Test::Manifest 1.14";
@@ -6,6 +6,7 @@
 WriteMakefile(
 	'NAME'			=> 'Chemistry::Elements',
 	'VERSION_FROM'	=> 'Elements.pm',
+	'ABSTRACT'      => 'Perl extension for working with Chemical Elements',
 	'LICENSE'		=> 'perl',
 	'AUTHOR'        => 'brian d foy <bdfoy at cpan.org>',
 
@@ -13,6 +14,10 @@
 		'Elements.pm'         => '$(INST_LIBDIR)/Elements.pm',
 		},
 
+	'PREREQ_PM'     => {
+		'Test::More' => 0,
+		},
+		
 	'MAN3PODS'		=> {
 		'Elements.pm' => '$(INST_MAN3DIR)/Chemistry::Elements.3',
 		},




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