[dh-make-perl] 01/04: add $VERSION to all modules
Damyan Ivanov
dmn at alioth.debian.org
Fri Aug 9 13:50:10 UTC 2013
This is an automated email from the git hooks/post-receive script.
dmn pushed a commit to branch master
in repository dh-make-perl.
commit d1602d41419c041d0eeabba169c7c012b6820a64
Author: Damyan Ivanov <dmn at debian.org>
Date: Fri Aug 9 14:09:53 2013 +0200
add $VERSION to all modules
otherwise the CPAN indexer refuses to process them, since
the new toolchain puts no version it the META
---
lib/Debian/AptContents.pm | 2 ++
lib/Debian/Control.pm | 2 ++
lib/Debian/Control/FromCPAN.pm | 2 ++
lib/Debian/Control/Stanza.pm | 2 ++
lib/Debian/Control/Stanza/Binary.pm | 2 ++
lib/Debian/Control/Stanza/CommaSeparated.pm | 2 ++
lib/Debian/Control/Stanza/Source.pm | 2 ++
lib/Debian/Dependencies.pm | 2 ++
lib/Debian/Dependency.pm | 2 ++
lib/Debian/DpkgLists.pm | 3 +++
lib/Debian/Rules.pm | 2 ++
lib/Debian/WNPP/Bug.pm | 2 ++
lib/Debian/WNPP/Query.pm | 2 ++
lib/DhMakePerl/Command/Packaging.pm | 3 +++
lib/DhMakePerl/Command/dump_config.pm | 2 ++
lib/DhMakePerl/Command/help.pm | 2 ++
lib/DhMakePerl/Command/locate.pm | 2 ++
lib/DhMakePerl/Command/make.pm | 1 +
lib/DhMakePerl/Command/refresh.pm | 2 ++
lib/DhMakePerl/Command/refresh_cache.pm | 2 ++
lib/DhMakePerl/Config.pm | 2 ++
lib/DhMakePerl/PodParser.pm | 2 ++
lib/DhMakePerl/Utils.pm | 3 +++
23 files changed, 48 insertions(+)
diff --git a/lib/Debian/AptContents.pm b/lib/Debian/AptContents.pm
index 5901063..f945e44 100644
--- a/lib/Debian/AptContents.pm
+++ b/lib/Debian/AptContents.pm
@@ -3,6 +3,8 @@ package Debian::AptContents;
use strict;
use warnings;
+our $VERSION = '0.77';
+
=head1 NAME
Debian::AptContents - parse/search through apt-file's Contents files
diff --git a/lib/Debian/Control.pm b/lib/Debian/Control.pm
index 30f9d0d..3405abf 100644
--- a/lib/Debian/Control.pm
+++ b/lib/Debian/Control.pm
@@ -51,6 +51,8 @@ package Debian::Control;
use base 'Class::Accessor';
use strict;
+our $VERSION = '0.77';
+
__PACKAGE__->mk_accessors(qw( source binary binary_tie _parser ));
use Parse::DebControl;
diff --git a/lib/Debian/Control/FromCPAN.pm b/lib/Debian/Control/FromCPAN.pm
index d5803ce..b583604 100644
--- a/lib/Debian/Control/FromCPAN.pm
+++ b/lib/Debian/Control/FromCPAN.pm
@@ -14,6 +14,8 @@ Debian::Control::FromCPAN - fill F<debian/control> from unpacked CPAN distributi
package Debian::Control::FromCPAN;
use strict;
+
+our $VERSION = '0.77';
use Carp qw(croak);
use base 'Debian::Control';
diff --git a/lib/Debian/Control/Stanza.pm b/lib/Debian/Control/Stanza.pm
index 000f2a2..6339ed3 100644
--- a/lib/Debian/Control/Stanza.pm
+++ b/lib/Debian/Control/Stanza.pm
@@ -24,6 +24,8 @@ require v5.10.0;
use strict;
+our $VERSION = '0.71';
+
use base qw( Class::Accessor Tie::IxHash );
use Carp qw(croak);
diff --git a/lib/Debian/Control/Stanza/Binary.pm b/lib/Debian/Control/Stanza/Binary.pm
index cd33803..6c1dace 100644
--- a/lib/Debian/Control/Stanza/Binary.pm
+++ b/lib/Debian/Control/Stanza/Binary.pm
@@ -86,6 +86,8 @@ package Debian::Control::Stanza::Binary;
use strict;
+our $VERSION = '0.77';
+
use base 'Debian::Control::Stanza';
use constant fields => qw(
diff --git a/lib/Debian/Control/Stanza/CommaSeparated.pm b/lib/Debian/Control/Stanza/CommaSeparated.pm
index 63152e8..4ee15d7 100644
--- a/lib/Debian/Control/Stanza/CommaSeparated.pm
+++ b/lib/Debian/Control/Stanza/CommaSeparated.pm
@@ -9,6 +9,8 @@ Debian::Control::Stanza::CommaSeparated - comma separated debian/control field a
use strict;
use warnings;
+our $VERSION = '0.66';
+
use Array::Unique;
use Text::ParseWords qw(quotewords);
diff --git a/lib/Debian/Control/Stanza/Source.pm b/lib/Debian/Control/Stanza/Source.pm
index 6d26bef..a5a2317 100644
--- a/lib/Debian/Control/Stanza/Source.pm
+++ b/lib/Debian/Control/Stanza/Source.pm
@@ -74,6 +74,8 @@ package Debian::Control::Stanza::Source;
use strict;
+our $VERSION = '0.73';
+
use base qw(Debian::Control::Stanza);
use constant fields => qw (
diff --git a/lib/Debian/Dependencies.pm b/lib/Debian/Dependencies.pm
index a7aa1ce..e6481b0 100644
--- a/lib/Debian/Dependencies.pm
+++ b/lib/Debian/Dependencies.pm
@@ -3,6 +3,8 @@ package Debian::Dependencies;
use strict;
use warnings;
+our $VERSION = '0.67';
+
use AptPkg::Config;
use Debian::Dependency;
diff --git a/lib/Debian/Dependency.pm b/lib/Debian/Dependency.pm
index c11b4a1..3ce1f98 100644
--- a/lib/Debian/Dependency.pm
+++ b/lib/Debian/Dependency.pm
@@ -3,6 +3,8 @@ package Debian::Dependency;
use strict;
use warnings;
+our $VERSION = '0.77';
+
use AptPkg::Config;
use Carp;
use Dpkg::Version ();
diff --git a/lib/Debian/DpkgLists.pm b/lib/Debian/DpkgLists.pm
index 6454644..dd21b7a 100644
--- a/lib/Debian/DpkgLists.pm
+++ b/lib/Debian/DpkgLists.pm
@@ -2,6 +2,9 @@ package Debian::DpkgLists;
use strict;
use warnings;
+
+our $VERSION = '0.71';
+
use Cwd;
=head1 NAME
diff --git a/lib/Debian/Rules.pm b/lib/Debian/Rules.pm
index f6f9b44..baae4d8 100644
--- a/lib/Debian/Rules.pm
+++ b/lib/Debian/Rules.pm
@@ -1,5 +1,7 @@
package Debian::Rules;
+our $VERSION = '0.66';
+
=head1 NAME
Debian::Rules - handy manipulation of debian/rules
diff --git a/lib/Debian/WNPP/Bug.pm b/lib/Debian/WNPP/Bug.pm
index 0aac657..9d999ee 100644
--- a/lib/Debian/WNPP/Bug.pm
+++ b/lib/Debian/WNPP/Bug.pm
@@ -3,6 +3,8 @@ package Debian::WNPP::Bug;
use strict;
use warnings;
+our $VERSION = '0.64';
+
=head1 NAME
Debian::WNPP::Bug - handy representation of Debian WNPP bug reports
diff --git a/lib/Debian/WNPP/Query.pm b/lib/Debian/WNPP/Query.pm
index e9fdeff..24a62bc 100644
--- a/lib/Debian/WNPP/Query.pm
+++ b/lib/Debian/WNPP/Query.pm
@@ -2,6 +2,8 @@ package Debian::WNPP::Query;
use strict;
use warnings;
+our $VERSION = '0.74';
+
=head1 NAME
Debian::WNPP::Query - offline storage of Debian's work-needing package lists
diff --git a/lib/DhMakePerl/Command/Packaging.pm b/lib/DhMakePerl/Command/Packaging.pm
index 75b7975..74149b9 100644
--- a/lib/DhMakePerl/Command/Packaging.pm
+++ b/lib/DhMakePerl/Command/Packaging.pm
@@ -2,6 +2,9 @@ package DhMakePerl::Command::Packaging;
use strict;
use warnings;
+
+our $VERSION = '0.77';
+
use feature 'switch';
=head1 NAME
diff --git a/lib/DhMakePerl/Command/dump_config.pm b/lib/DhMakePerl/Command/dump_config.pm
index 3fbf026..998ab67 100644
--- a/lib/DhMakePerl/Command/dump_config.pm
+++ b/lib/DhMakePerl/Command/dump_config.pm
@@ -8,6 +8,8 @@ DhMakePerl::Command::dump_config - dh-make-perl dump-config implementation
use strict; use warnings;
+our $VERSION = '0.65';
+
use base 'DhMakePerl';
=head1 METHODS
diff --git a/lib/DhMakePerl/Command/help.pm b/lib/DhMakePerl/Command/help.pm
index 764afe2..7a12afa 100644
--- a/lib/DhMakePerl/Command/help.pm
+++ b/lib/DhMakePerl/Command/help.pm
@@ -12,6 +12,8 @@ This module implements the I<help> command of L<dh-make-perl(1)>.
use strict; use warnings;
+our $VERSION = '0.65';
+
use base 'DhMakePerl';
use Pod::Usage;
diff --git a/lib/DhMakePerl/Command/locate.pm b/lib/DhMakePerl/Command/locate.pm
index 8e22c32..dc48f0b 100644
--- a/lib/DhMakePerl/Command/locate.pm
+++ b/lib/DhMakePerl/Command/locate.pm
@@ -12,6 +12,8 @@ This module implements the I<locate> command of L<dh-make-perl(1)>.
use strict; use warnings;
+our $VERSION = '0.66';
+
use base 'DhMakePerl';
use DhMakePerl::Utils qw(is_core_module);
diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index 432829f..675fd72 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -2,6 +2,7 @@ package DhMakePerl::Command::make;
use warnings;
use strict;
+our $VERSION = '0.77';
use 5.010; # we use smart matching
use base 'DhMakePerl::Command::Packaging';
diff --git a/lib/DhMakePerl/Command/refresh.pm b/lib/DhMakePerl/Command/refresh.pm
index 6d545a6..a296706 100644
--- a/lib/DhMakePerl/Command/refresh.pm
+++ b/lib/DhMakePerl/Command/refresh.pm
@@ -12,6 +12,8 @@ This module implements the I<refresh> command of L<dh-make-perl(1)>.
use strict; use warnings;
+our $VERSION = '0.77';
+
use base 'DhMakePerl::Command::Packaging';
use Debian::Control::FromCPAN;
use Debian::WNPP::Query ();
diff --git a/lib/DhMakePerl/Command/refresh_cache.pm b/lib/DhMakePerl/Command/refresh_cache.pm
index c6ba49c..1dfe626 100644
--- a/lib/DhMakePerl/Command/refresh_cache.pm
+++ b/lib/DhMakePerl/Command/refresh_cache.pm
@@ -12,6 +12,8 @@ This module implements the I<refresh-cache> command of L<dh-make-perl(1)>.
use strict; use warnings;
+our $VERSION = '0.65';
+
use base 'DhMakePerl';
=head1 METHODS
diff --git a/lib/DhMakePerl/Config.pm b/lib/DhMakePerl/Config.pm
index f07dc0d..7e19b83 100644
--- a/lib/DhMakePerl/Config.pm
+++ b/lib/DhMakePerl/Config.pm
@@ -3,6 +3,8 @@ package DhMakePerl::Config;
use strict;
use warnings;
+our $VERSION = '0.77';
+
=head1 NAME
DhMakePerl::Config - dh-make-perl configuration class
diff --git a/lib/DhMakePerl/PodParser.pm b/lib/DhMakePerl/PodParser.pm
index 65e8c37..0fa1a99 100644
--- a/lib/DhMakePerl/PodParser.pm
+++ b/lib/DhMakePerl/PodParser.pm
@@ -3,6 +3,8 @@ package DhMakePerl::PodParser;
use strict;
use warnings;
+our $VERSION = '0.51';
+
use base qw(Pod::Parser);
=head1 NAME
diff --git a/lib/DhMakePerl/Utils.pm b/lib/DhMakePerl/Utils.pm
index e959b0a..f503add 100644
--- a/lib/DhMakePerl/Utils.pm
+++ b/lib/DhMakePerl/Utils.pm
@@ -1,5 +1,8 @@
package DhMakePerl::Utils;
+
+our $VERSION = '0.71';
+
=head1 NAME
DhMakePerl::Utils - helper routined for dh-make-perl and alike
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/dh-make-perl.git
More information about the Pkg-perl-cvs-commits
mailing list