r8106 - in /branches/upstream/libb-keywords-perl/current: Changes MANIFEST META.yml lib/B/Keywords.pm t/01pod.t t/02pod-coverage.t t/03yaml.t t/04boilerplate.t t/05critic.t

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Tue Oct 9 01:16:24 UTC 2007


Author: rmayorga-guest
Date: Tue Oct  9 01:16:24 2007
New Revision: 8106

URL: http://svn.debian.org/wsvn/?sc=1&rev=8106
Log:
[svn-upgrade] Integrating new upstream version, libb-keywords-perl (1.08)

Removed:
    branches/upstream/libb-keywords-perl/current/t/01pod.t
    branches/upstream/libb-keywords-perl/current/t/02pod-coverage.t
    branches/upstream/libb-keywords-perl/current/t/03yaml.t
    branches/upstream/libb-keywords-perl/current/t/04boilerplate.t
    branches/upstream/libb-keywords-perl/current/t/05critic.t
Modified:
    branches/upstream/libb-keywords-perl/current/Changes
    branches/upstream/libb-keywords-perl/current/MANIFEST
    branches/upstream/libb-keywords-perl/current/META.yml
    branches/upstream/libb-keywords-perl/current/lib/B/Keywords.pm

Modified: branches/upstream/libb-keywords-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libb-keywords-perl/current/Changes?rev=8106&op=diff
==============================================================================
--- branches/upstream/libb-keywords-perl/current/Changes (original)
+++ branches/upstream/libb-keywords-perl/current/Changes Tue Oct  9 01:16:24 2007
@@ -36,3 +36,5 @@
   - Added UNITCHECK
 1.07 Feb 14, 2007
   - Added EQ GE GT NE LE LT for 5.6.
+1.08
+  - Removed useless author tests

Modified: branches/upstream/libb-keywords-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/branches/upstream/libb-keywords-perl/current/MANIFEST?rev=8106&op=diff
==============================================================================
--- branches/upstream/libb-keywords-perl/current/MANIFEST (original)
+++ branches/upstream/libb-keywords-perl/current/MANIFEST Tue Oct  9 01:16:24 2007
@@ -5,10 +5,5 @@
 MANIFEST			This list of files
 META.yml
 README
-t/01pod.t
-t/02pod-coverage.t
-t/03yaml.t
-t/04boilerplate.t
-t/05critic.t
 t/10basic.t
 t/11keywords.t

Modified: branches/upstream/libb-keywords-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libb-keywords-perl/current/META.yml?rev=8106&op=diff
==============================================================================
--- branches/upstream/libb-keywords-perl/current/META.yml (original)
+++ branches/upstream/libb-keywords-perl/current/META.yml Tue Oct  9 01:16:24 2007
@@ -1,9 +1,9 @@
 --- #YAML:1.0
 name:                B-Keywords
-version:             1.06
+version:             1.08
 abstract:            Lists of reserved barewords and symbol names
 license:             ~
-generated_by:        ExtUtils::MakeMaker version 6.31
+generated_by:        ExtUtils::MakeMaker version 6.36
 distribution_type:   module
 requires:     
 meta-spec:

Modified: branches/upstream/libb-keywords-perl/current/lib/B/Keywords.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libb-keywords-perl/current/lib/B/Keywords.pm?rev=8106&op=diff
==============================================================================
--- branches/upstream/libb-keywords-perl/current/lib/B/Keywords.pm (original)
+++ branches/upstream/libb-keywords-perl/current/lib/B/Keywords.pm Tue Oct  9 01:16:24 2007
@@ -1,19 +1,18 @@
 ## no critic (PodSections,UseWarnings,Interpolation,EndWithOne,NoisyQuotes)
-# $Id: /src/B-Keywords/trunk/lib/B/Keywords.pm 30165 2007-02-14T17:19:30.874598Z josh  $
 
 package B::Keywords;
 
 use strict;
 
 require Exporter;
-*import = \&Exporter::import;
+*import = *import = \&Exporter::import;
 use vars qw( @EXPORT_OK %EXPORT_TAGS );
 @EXPORT_OK = qw( @Scalars @Arrays @Hashes @FileHandles @Symbols
     @Functions @Barewords );
 %EXPORT_TAGS = ( ':all' => \@EXPORT_OK );
 
 use vars '$VERSION';
-$VERSION = '1.06';
+$VERSION = '1.08';
 
 use vars '@Scalars';
 @Scalars = (
@@ -387,6 +386,7 @@
 
 # This quote is blatantly copied from ErrantStory.com, Michael Poe's
 # comic.
+BEGIN { $^W = 0 }
 "You know, when you stop and think about it, Cthulhu is a bit a Mary Sue isn't he?"
 
 __END__




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