r54726 - in /branches/upstream/libconfig-mvp-perl/current: ./ lib/Config/ lib/Config/MVP/ lib/Config/MVP/Assembler/ lib/Config/MVP/Reader/ t/lib/Config/MVP/Reader/ t/lib/Foo/

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Wed Mar 24 16:26:59 UTC 2010


Author: gregoa
Date: Wed Mar 24 16:26:15 2010
New Revision: 54726

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=54726
Log:
[svn-upgrade] Integrating new upstream version, libconfig-mvp-perl (0.100780)

Modified:
    branches/upstream/libconfig-mvp-perl/current/Changes
    branches/upstream/libconfig-mvp-perl/current/LICENSE
    branches/upstream/libconfig-mvp-perl/current/META.json
    branches/upstream/libconfig-mvp-perl/current/META.yml
    branches/upstream/libconfig-mvp-perl/current/Makefile.PL
    branches/upstream/libconfig-mvp-perl/current/README
    branches/upstream/libconfig-mvp-perl/current/dist.ini
    branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP.pm
    branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Assembler.pm
    branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Assembler/WithBundles.pm
    branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader.pm
    branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Findable.pm
    branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Finder.pm
    branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Hash.pm
    branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Section.pm
    branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Sequence.pm
    branches/upstream/libconfig-mvp-perl/current/t/lib/Config/MVP/Reader/Test.pm
    branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Bar.pm
    branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Baz.pm
    branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boo1.pm
    branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boo2.pm
    branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boondle.pm
    branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Metaboondle.pm
    branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Quux.pm

Modified: branches/upstream/libconfig-mvp-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/Changes?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/Changes (original)
+++ branches/upstream/libconfig-mvp-perl/current/Changes Wed Mar 24 16:26:15 2010
@@ -1,4 +1,7 @@
 Revision history for Config-MVP
+
+0.100780  2010-03-19 22:16:16 America/New_York
+          the alias attr on Section is now lazy so that mvp_aliases is called
 
 0.093350  2009-12-01 06:58:48 America/New_York
           added Config::MVP::Reader::Hash for use by adapter writers

Modified: branches/upstream/libconfig-mvp-perl/current/LICENSE
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/LICENSE?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/LICENSE (original)
+++ branches/upstream/libconfig-mvp-perl/current/LICENSE Wed Mar 24 16:26:15 2010
@@ -1,4 +1,4 @@
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2009 by Ricardo Signes.
+This software is Copyright (c) 2010 by Ricardo Signes.
 
 This is free software, licensed under:
 
@@ -270,7 +270,7 @@
 
 --- The Artistic License 1.0 ---
 
-This software is Copyright (c) 2009 by Ricardo Signes.
+This software is Copyright (c) 2010 by Ricardo Signes.
 
 This is free software, licensed under:
 

Modified: branches/upstream/libconfig-mvp-perl/current/META.json
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/META.json?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/META.json (original)
+++ branches/upstream/libconfig-mvp-perl/current/META.json Wed Mar 24 16:26:15 2010
@@ -1,23 +1,30 @@
 {
    "resources" : {
-      "repository" : "http://github.com/rjbs/config-mvp"
+      "repository" : "git://git.codesimply.com/Config-MVP.git"
    },
    "meta-spec" : {
       "version" : 1.4,
       "url" : "http://module-build.sourceforge.net/META-spec-v1.4.html"
    },
-   "generated_by" : "Dist::Zilla version 1.093290",
-   "version" : "0.093350",
+   "generated_by" : "Dist::Zilla version 1.100730",
+   "version" : "0.100780",
    "name" : "Config-MVP",
    "author" : [
       "Ricardo Signes <rjbs at cpan.org>"
    ],
    "license" : "perl",
+   "build_requires" : {},
    "requires" : {
+      "Test::More" : "0.88",
+      "Moose::Role" : "0",
       "Tie::IxHash" : "0",
+      "File::Spec" : "0",
       "Module::Pluggable::Object" : "0",
       "Moose" : "0"
    },
-   "abstract" : "multivalue-property package-oriented configuration"
+   "abstract" : "multivalue-property package-oriented configuration",
+   "configure_requires" : {
+      "ExtUtils::MakeMaker" : "6.11"
+   }
 }
 

Modified: branches/upstream/libconfig-mvp-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/META.yml?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/META.yml (original)
+++ branches/upstream/libconfig-mvp-perl/current/META.yml Wed Mar 24 16:26:15 2010
@@ -2,16 +2,22 @@
 abstract: 'multivalue-property package-oriented configuration'
 author:
   - 'Ricardo Signes <rjbs at cpan.org>'
-generated_by: 'Dist::Zilla version 1.093290'
+build_requires: {}
+configure_requires:
+  ExtUtils::MakeMaker: 6.11
+generated_by: 'Dist::Zilla version 1.100730'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
   version: 1.4
 name: Config-MVP
 requires:
+  File::Spec: 0
   Module::Pluggable::Object: 0
   Moose: 0
+  Moose::Role: 0
+  Test::More: 0.88
   Tie::IxHash: 0
 resources:
-  repository: http://github.com/rjbs/config-mvp
-version: 0.093350
+  repository: git://git.codesimply.com/Config-MVP.git
+version: 0.100780

Modified: branches/upstream/libconfig-mvp-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/Makefile.PL?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/Makefile.PL (original)
+++ branches/upstream/libconfig-mvp-perl/current/Makefile.PL Wed Mar 24 16:26:15 2010
@@ -4,21 +4,40 @@
 
 
 
-use ExtUtils::MakeMaker;
+use ExtUtils::MakeMaker 6.11;
 
-WriteMakefile(
-  DISTNAME  => 'Config-MVP',
-  NAME      => 'Config::MVP',
-  AUTHOR    => "Ricardo\ Signes\ \<rjbs\@cpan\.org\>",
-  ABSTRACT  => "multivalue\-property\ package\-oriented\ configuration",
-  VERSION   => '0.093350',
-  EXE_FILES => [ qw() ],
-  (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
-  PREREQ_PM    => {
-    "Tie::IxHash" => '0',
-    "Module::Pluggable::Object" => '0',
-    "Moose" => '0',
-  },
-  test => {TESTS => 't/*.t'}
-);
 
+
+my %WriteMakefileArgs = (
+                       'test' => {
+                                   'TESTS' => 't/*.t'
+                                 },
+                       'NAME' => 'Config::MVP',
+                       'DISTNAME' => 'Config-MVP',
+                       'CONFIGURE_REQUIRES' => {
+                                                 'ExtUtils::MakeMaker' => '6.11'
+                                               },
+                       'AUTHOR' => 'Ricardo Signes <rjbs at cpan.org>',
+                       'BUILD_REQUIRES' => {},
+                       'ABSTRACT' => 'multivalue-property package-oriented configuration',
+                       'EXE_FILES' => [],
+                       'VERSION' => '0.100780',
+                       'PREREQ_PM' => {
+                                        'Test::More' => '0.88',
+                                        'Moose::Role' => '0',
+                                        'Tie::IxHash' => '0',
+                                        'File::Spec' => '0',
+                                        'Module::Pluggable::Object' => '0',
+                                        'Moose' => '0'
+                                      },
+                       'LICENSE' => 'perl'
+                     );
+
+
+delete $WriteMakefileArgs{LICENSE}
+  unless eval { ExtUtils::MakeMaker->VERSION(6.31) };
+
+WriteMakefile(%WriteMakefileArgs);
+
+
+

Modified: branches/upstream/libconfig-mvp-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/README?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/README (original)
+++ branches/upstream/libconfig-mvp-perl/current/README Wed Mar 24 16:26:15 2010
@@ -1,11 +1,11 @@
 
 
 This archive contains the distribution Config-MVP, version
-0.093350:
+0.100780:
 
   multivalue-property package-oriented configuration
 
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Modified: branches/upstream/libconfig-mvp-perl/current/dist.ini
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/dist.ini?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/dist.ini (original)
+++ branches/upstream/libconfig-mvp-perl/current/dist.ini Wed Mar 24 16:26:15 2010
@@ -7,5 +7,6 @@
 Moose       = 0 ; min ver unknown
 Tie::IxHash = 0 ; min ver unknown
 Module::Pluggable::Object = 0 ; min ver unknown
+Test::More = 0.88
 
 [@RJBS]

Modified: branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Config::MVP;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 # ABSTRACT: multivalue-property package-oriented configuration
 use strict;
 use warnings;
@@ -18,7 +16,7 @@
 
 =head1 VERSION
 
-version 0.093350
+version 0.100780
 
 =head1 SYNOPSIS
 
@@ -225,7 +223,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Modified: branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Assembler.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Assembler.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Assembler.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Assembler.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Config::MVP::Assembler;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 use Moose;
 # ABSTRACT: multivalue-property config-loading state machine
 
@@ -112,7 +110,7 @@
 
 =head1 VERSION
 
-version 0.093350
+version 0.100780
 
 =head1 DESCRIPTION
 
@@ -236,7 +234,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Modified: branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Assembler/WithBundles.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Assembler/WithBundles.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Assembler/WithBundles.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Assembler/WithBundles.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Config::MVP::Assembler::WithBundles;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 use Moose::Role;
 # ABSTRACT: a role to make assemblers expand bundles
 
@@ -77,7 +75,7 @@
 
 =head1 VERSION
 
-version 0.093350
+version 0.100780
 
 =head1 DESCRIPTION
 
@@ -119,7 +117,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Modified: branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Config::MVP::Reader;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 use Moose::Role;
 # ABSTRACT: role to load MVP-style config from a file
 
@@ -33,7 +31,7 @@
 
 =head1 VERSION
 
-version 0.093350
+version 0.100780
 
 =head1 DESCRIPTION
 
@@ -78,7 +76,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Modified: branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Findable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Findable.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Findable.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Findable.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Config::MVP::Reader::Findable;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 use Moose::Role;
 # ABSTRACT: a config class that Config::MVP::Reader::Finder can find
 
@@ -53,7 +51,7 @@
 
 =head1 VERSION
 
-version 0.093350
+version 0.100780
 
 =head1 DESCRIPTION
 
@@ -91,7 +89,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Modified: branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Finder.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Finder.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Finder.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Finder.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Config::MVP::Reader::Finder;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 use Moose;
 with qw(Config::MVP::Reader);
 # ABSTRACT: a reader that finds an appropriate file
@@ -64,7 +62,7 @@
 
 =head1 VERSION
 
-version 0.093350
+version 0.100780
 
 =head1 DESCRIPTION
 
@@ -95,7 +93,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Modified: branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Hash.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Hash.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Hash.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Reader/Hash.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Config::MVP::Reader::Hash;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 use Moose;
 with qw(Config::MVP::Reader);
 # ABSTRACT: a reader that tries to cope with a plain old hashref
@@ -45,7 +43,7 @@
 
 =head1 VERSION
 
-version 0.093350
+version 0.100780
 
 =head1 SYNOPSIS
 
@@ -66,7 +64,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Modified: branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Section.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Section.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Section.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Section.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Config::MVP::Section;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 use Moose;
 # ABSTRACT: one section of an MVP configuration sequence
 
@@ -37,8 +35,9 @@
 
 
 has aliases => (
-  is  => 'ro',
-  isa => 'HashRef',
+  is   => 'ro',
+  isa  => 'HashRef',
+  lazy => 1,
   default => sub {
     my ($self) = @_;
 
@@ -114,7 +113,7 @@
 
 =head1 VERSION
 
-version 0.093350
+version 0.100780
 
 =head1 DESCRIPTION
 
@@ -188,7 +187,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Modified: branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Sequence.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Sequence.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Sequence.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/lib/Config/MVP/Sequence.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Config::MVP::Sequence;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 use Moose;
 # ABSTRACT: an ordered set of named configuration sections
 
@@ -73,7 +71,7 @@
 
 =head1 VERSION
 
-version 0.093350
+version 0.100780
 
 =head1 DESCRIPTION
 
@@ -125,7 +123,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo Signes.
+This software is copyright (c) 2010 by Ricardo Signes.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.

Modified: branches/upstream/libconfig-mvp-perl/current/t/lib/Config/MVP/Reader/Test.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/t/lib/Config/MVP/Reader/Test.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/t/lib/Config/MVP/Reader/Test.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/t/lib/Config/MVP/Reader/Test.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Config::MVP::Reader::Test;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 use Moose;
 with qw(Config::MVP::Reader Config::MVP::Reader::Findable);
 

Modified: branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Bar.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Bar.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Bar.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Bar.pm Wed Mar 24 16:26:15 2010
@@ -1,6 +1,4 @@
 package Foo::Bar;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 sub mvp_multivalue_args { qw(y) }
 1;

Modified: branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Baz.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Baz.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Baz.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Baz.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Foo::Baz;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 sub mvp_multivalue_args { qw(multi) }
 
 1;

Modified: branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boo1.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boo1.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boo1.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boo1.pm Wed Mar 24 16:26:15 2010
@@ -1,5 +1,3 @@
 package Foo::Boo1;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 1;

Modified: branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boo2.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boo2.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boo2.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boo2.pm Wed Mar 24 16:26:15 2010
@@ -1,5 +1,3 @@
 package Foo::Boo2;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 1;

Modified: branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boondle.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boondle.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boondle.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Boondle.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Foo::Boondle;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 
 sub mvp_bundle_config {
   return (

Modified: branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Metaboondle.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Metaboondle.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Metaboondle.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Metaboondle.pm Wed Mar 24 16:26:15 2010
@@ -1,7 +1,5 @@
 package Foo::Metaboondle;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 
 sub mvp_bundle_config {
   return (

Modified: branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Quux.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Quux.pm?rev=54726&op=diff
==============================================================================
--- branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Quux.pm (original)
+++ branches/upstream/libconfig-mvp-perl/current/t/lib/Foo/Quux.pm Wed Mar 24 16:26:15 2010
@@ -1,5 +1,3 @@
 package Foo::Quux;
-our $VERSION = '0.093350';
-
-
+our $VERSION = '0.100780';
 1;




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