[boxer] 03/33: Use version with modern assignment. Extend copyright to current year.

Jonas Smedegaard dr at jones.dk
Sun Nov 5 18:28:16 UTC 2017


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

js pushed a commit to annotated tag debian/1.1.5-1
in repository boxer.

commit 0c9290952ec2029aa9a427cea8bd3c37a42edf5a
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Wed Jun 29 19:27:46 2016 +0200

    Use version with modern assignment. Extend copyright to current year.
---
 bin/boxer                         | 25 ++++++++++++++++++++-----
 lib/Boxer.pm                      | 23 ++++++++++++++++-------
 lib/Boxer/CLI.pm                  | 31 ++++++++++++++++++++-----------
 lib/Boxer/CLI/Command.pm          | 36 ++++++++++++++++++++++++++++++++----
 lib/Boxer/CLI/Command/About.pm    | 34 +++++++++++++++++++++++++++++++---
 lib/Boxer/CLI/Command/Aliases.pm  | 34 +++++++++++++++++++++++++++++++---
 lib/Boxer/CLI/Command/Commands.pm | 35 ++++++++++++++++++++++++++++++++---
 lib/Boxer/CLI/Command/Compose.pm  | 35 ++++++++++++++++++++++++++++++++---
 lib/Boxer/Role/Interact.pm        | 35 ++++++++++++++++++++++++++++++++---
 lib/Boxer/Task.pm                 | 32 ++++++++++++++++++++++++++++++--
 lib/Boxer/Task/Classify.pm        | 34 +++++++++++++++++++++++++++++++---
 lib/Boxer/Task/Serialize.pm       | 34 +++++++++++++++++++++++++++++++---
 lib/Boxer/Types.pm                | 36 ++++++++++++++++++++++++++++++++----
 13 files changed, 370 insertions(+), 54 deletions(-)

diff --git a/bin/boxer b/bin/boxer
index e408184..cb3e1fe 100755
--- a/bin/boxer
+++ b/bin/boxer
@@ -2,20 +2,28 @@
 
 =encoding UTF-8
 
+=head1 NAME
+
+boxer - boxer command line utils
+
 =cut
 
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 
 use Boxer::CLI;
 Boxer::CLI->run;
 
-__END__
+=head1 VERSION
 
-=head1 NAME
+Version v1.1.4
 
-boxer - boxer command line utils
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 =head1 SYNOPSIS
 
@@ -122,11 +130,15 @@ L<https://metacpan.org/search?q=Boxer::CLI::Command>.
 
 =head1 AUTHOR
 
-Jonas Smedegaard E<lt>dr at jones.dkE<gt>.
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
 
 =head1 COPYRIGHT AND LICENCE
 
-This software is copyright (c) 2013-2015 by Jonas Smedegaard.
+Copyright © 2013-2016 Jonas Smedegaard
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -137,3 +149,6 @@ THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
 WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
+=cut
+
+1;
diff --git a/lib/Boxer.pm b/lib/Boxer.pm
index 4b46181..c328d22 100644
--- a/lib/Boxer.pm
+++ b/lib/Boxer.pm
@@ -11,15 +11,16 @@ Boxer - system deployment ninja tricks
 use v5.14;
 use utf8;
 use strictures 2;
-
+use version;
 use Role::Commons -all;
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+=head1 VERSION
 
-1;
+Version v1.1.4
 
-__END__
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 =head1 DESCRIPTION
 
@@ -36,11 +37,15 @@ L<boxer>.
 
 =head1 AUTHOR
 
-Jonas Smedegaard E<lt>dr at jones.dkE<gt>.
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
 
 =head1 COPYRIGHT AND LICENCE
 
-This software is copyright (c) 2013-2015 by Jonas Smedegaard.
+Copyright © 2013-2016 Jonas Smedegaard
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -50,3 +55,7 @@ the same terms as the Perl 5 programming language system itself.
 THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
 WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
+1;
diff --git a/lib/Boxer/CLI.pm b/lib/Boxer/CLI.pm
index 2878189..0c6f4f5 100644
--- a/lib/Boxer/CLI.pm
+++ b/lib/Boxer/CLI.pm
@@ -2,26 +2,27 @@ package Boxer::CLI;
 
 =encoding UTF-8
 
+=head1 NAME
+
+Boxer::CLI - boxer command line utils
+
 =cut
 
 use v5.14;
 use utf8;
 use strictures 2;
-
-use App::Cmd::Setup -app;
-
+use version;
 use Role::Commons -all;
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+use App::Cmd::Setup -app;
 
-1;
+=head1 VERSION
 
-__END__
+Version v1.1.4
 
-=head1 NAME
+=cut
 
-Boxer::CLI - boxer command line utils
+our $VERSION = version->declare("v1.1.4");
 
 =head1 SYNOPSIS
 
@@ -38,11 +39,15 @@ L<boxer>, L<Boxer>.
 
 =head1 AUTHOR
 
-Jonas Smedegaard E<lt>dr at jones.dkE<gt>.
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
 
 =head1 COPYRIGHT AND LICENCE
 
-This software is copyright (c) 2013-2015 by Jonas Smedegaard.
+Copyright © 2013-2016 Jonas Smedegaard
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -52,3 +57,7 @@ the same terms as the Perl 5 programming language system itself.
 THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
 WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
+1;
diff --git a/lib/Boxer/CLI/Command.pm b/lib/Boxer/CLI/Command.pm
index f13b4b3..b978216 100644
--- a/lib/Boxer/CLI/Command.pm
+++ b/lib/Boxer/CLI/Command.pm
@@ -7,6 +7,8 @@ package Boxer::CLI::Command;
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 
 use App::Cmd::Setup-command;
 
@@ -15,10 +17,14 @@ use File::HomeDir qw<>;
 use File::Temp qw<>;
 use JSON qw<>;
 use Path::Class qw<>;
-use Role::Commons -all;
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+=head1 VERSION
+
+Version v1.1.4
+
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 my %config;
 
@@ -100,5 +106,27 @@ sub save_config
 	print $fh $config;
 }
 
-1;
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
 
+our $AUTHORITY = 'cpan:JONASS';
+
+=head1 COPYRIGHT AND LICENCE
+
+Copyright © 2013-2016 Jonas Smedegaard
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=head1 DISCLAIMER OF WARRANTIES
+
+THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
+1;
diff --git a/lib/Boxer/CLI/Command/About.pm b/lib/Boxer/CLI/Command/About.pm
index 0d9d326..ab6d3d1 100644
--- a/lib/Boxer/CLI/Command/About.pm
+++ b/lib/Boxer/CLI/Command/About.pm
@@ -7,14 +7,19 @@ package Boxer::CLI::Command::About;
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 
 use Boxer::CLI -command;
 use namespace::clean;
 
-use Role::Commons -all;
+=head1 VERSION
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+Version v1.1.4
+
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 use constant {
 	abstract   => q[list which boxer plugins are installed],
@@ -59,4 +64,27 @@ sub execute
 	}
 }
 
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
+
+=head1 COPYRIGHT AND LICENCE
+
+Copyright © 2013-2016 Jonas Smedegaard
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=head1 DISCLAIMER OF WARRANTIES
+
+THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
 1;
diff --git a/lib/Boxer/CLI/Command/Aliases.pm b/lib/Boxer/CLI/Command/Aliases.pm
index 4f5d87d..cc111d9 100644
--- a/lib/Boxer/CLI/Command/Aliases.pm
+++ b/lib/Boxer/CLI/Command/Aliases.pm
@@ -7,16 +7,21 @@ package Boxer::CLI::Command::Aliases;
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 
 use match::simple qw(match);
 
 use Boxer::CLI -command;
 use namespace::clean;
 
-use Role::Commons -all;
+=head1 VERSION
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+Version v1.1.4
+
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 use constant {
 	abstract   => q[show aliases for boxer commands],
@@ -64,4 +69,27 @@ sub execute
 	}
 }
 
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
+
+=head1 COPYRIGHT AND LICENCE
+
+Copyright © 2013-2016 Jonas Smedegaard
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=head1 DISCLAIMER OF WARRANTIES
+
+THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
 1;
diff --git a/lib/Boxer/CLI/Command/Commands.pm b/lib/Boxer/CLI/Command/Commands.pm
index 32a2067..8989af7 100644
--- a/lib/Boxer/CLI/Command/Commands.pm
+++ b/lib/Boxer/CLI/Command/Commands.pm
@@ -7,14 +7,19 @@ package Boxer::CLI::Command::Commands;
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 
 use Boxer::CLI -command;
 use namespace::clean;
 
-use Role::Commons -all;
+=head1 VERSION
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+Version v1.1.4
+
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 require App::Cmd::Command::commands;
 our @ISA;
@@ -32,4 +37,28 @@ sub sort_commands
 	my @tail  = sort grep { $_ !~ $float } @commands;
 	return ( \@head, \@tail );
 }
+
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
+
+=head1 COPYRIGHT AND LICENCE
+
+Copyright © 2013-2016 Jonas Smedegaard
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=head1 DISCLAIMER OF WARRANTIES
+
+THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
 1;
diff --git a/lib/Boxer/CLI/Command/Compose.pm b/lib/Boxer/CLI/Command/Compose.pm
index 64597b9..690e0e7 100644
--- a/lib/Boxer/CLI/Command/Compose.pm
+++ b/lib/Boxer/CLI/Command/Compose.pm
@@ -7,15 +7,21 @@ package Boxer::CLI::Command::Compose;
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 
 use Boxer::CLI -command;
 use namespace::clean;
 
 use Module::Runtime qw/use_module/;
-use Role::Commons -all;
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+=head1 VERSION
+
+Version v1.1.4
+
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 use constant {
 	abstract   => q[compose system recipe from reclass node],
@@ -77,4 +83,27 @@ sub execute
 	}
 }
 
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
+
+=head1 COPYRIGHT AND LICENCE
+
+Copyright © 2013-2016 Jonas Smedegaard
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=head1 DISCLAIMER OF WARRANTIES
+
+THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
 1;
diff --git a/lib/Boxer/Role/Interact.pm b/lib/Boxer/Role/Interact.pm
index d02bd4c..68e93cd 100644
--- a/lib/Boxer/Role/Interact.pm
+++ b/lib/Boxer/Role/Interact.pm
@@ -7,13 +7,19 @@ package Boxer::Role::Interact;
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 
 use Moo::Role;
 use MooX::Types::MooseLike::Base qw< Bool >;
-use Role::Commons -all;
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+=head1 VERSION
+
+Version v1.1.4
+
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 has verbose => (
 	is       => 'rw',
@@ -36,4 +42,27 @@ has dryrun => (
 	default  => sub {0},
 );
 
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
+
+=head1 COPYRIGHT AND LICENCE
+
+Copyright © 2013-2016 Jonas Smedegaard
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=head1 DISCLAIMER OF WARRANTIES
+
+THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
 1;
diff --git a/lib/Boxer/Task.pm b/lib/Boxer/Task.pm
index ad17eff..ec676cd 100644
--- a/lib/Boxer/Task.pm
+++ b/lib/Boxer/Task.pm
@@ -7,14 +7,42 @@ package Boxer::Task;
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 use autodie;
 
 use Moo;
 with 'MooX::Role::Logger', 'Boxer::Role::Interact';
 
-use Role::Commons -all;
+=head1 VERSION
+
+Version v1.1.4
+
+=cut
+
+our $VERSION = version->declare("v1.1.4");
+
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
 
 our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+
+=head1 COPYRIGHT AND LICENCE
+
+Copyright © 2013-2016 Jonas Smedegaard
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=head1 DISCLAIMER OF WARRANTIES
+
+THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
 
 1;
diff --git a/lib/Boxer/Task/Classify.pm b/lib/Boxer/Task/Classify.pm
index a644720..11231af 100644
--- a/lib/Boxer/Task/Classify.pm
+++ b/lib/Boxer/Task/Classify.pm
@@ -7,6 +7,8 @@ package Boxer::Task::Classify;
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 use autodie qw(:all);
 use IPC::System::Simple;
 
@@ -19,10 +21,13 @@ use File::BaseDir qw(data_dirs);
 use Capture::Tiny qw(capture_stdout);
 use YAML::XS;
 
-use Role::Commons -all;
+=head1 VERSION
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+Version v1.1.4
+
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 # permit callers to sloppily pass undefined values
 sub BUILDARGS
@@ -86,4 +91,27 @@ sub run
 	);
 }
 
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
+
+=head1 COPYRIGHT AND LICENCE
+
+Copyright © 2013-2016 Jonas Smedegaard
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=head1 DISCLAIMER OF WARRANTIES
+
+THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
 1;
diff --git a/lib/Boxer/Task/Serialize.pm b/lib/Boxer/Task/Serialize.pm
index 0c9fb62..4a85f01 100644
--- a/lib/Boxer/Task/Serialize.pm
+++ b/lib/Boxer/Task/Serialize.pm
@@ -7,6 +7,8 @@ package Boxer::Task::Serialize;
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 use autodie;
 use Carp qw<croak>;
 
@@ -21,10 +23,13 @@ use Try::Tiny;
 use Template::Tiny;
 use File::ShareDir qw(dist_dir);
 
-use Role::Commons -all;
+=head1 VERSION
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+Version v1.1.4
+
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 # permit callers to sloppily pass undefined hash values
 sub BUILDARGS
@@ -244,4 +249,27 @@ sub run
 	$self->outfile->spew( $content . "\n" );
 }
 
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
+
+=head1 COPYRIGHT AND LICENCE
+
+Copyright © 2013-2016 Jonas Smedegaard
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=head1 DISCLAIMER OF WARRANTIES
+
+THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
 1;
diff --git a/lib/Boxer/Types.pm b/lib/Boxer/Types.pm
index 4a8e4f8..51201c2 100644
--- a/lib/Boxer/Types.pm
+++ b/lib/Boxer/Types.pm
@@ -7,6 +7,8 @@ package Boxer::Types;
 use v5.14;
 use utf8;
 use strictures 2;
+use version;
+use Role::Commons -all;
 
 use Type::Library -base,
 	-declare => qw( DataDir ClassDir NodeDir SkelDir Suite );
@@ -14,10 +16,13 @@ use Type::Utils -all;
 use Types::Path::Tiny qw(Dir);
 use Types::Common::String qw(LowerCaseSimpleStr);
 
-use Role::Commons -all;
+=head1 VERSION
 
-our $AUTHORITY = 'cpan:JONASS';
-our $VERSION = 'v1.1.4';
+Version v1.1.4
+
+=cut
+
+our $VERSION = version->declare("v1.1.4");
 
 declare DataDir, as Dir, coercion => 1, message {
 	'Must be an existing directory containing directories for boxer classes and/or boxer nodes';
@@ -39,4 +44,27 @@ declare Suite, as LowerCaseSimpleStr,
 	coercion => 1,
 	message {'Must be a single lowercase word'};
 
-1
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <dr at jones.dk> >>.
+
+=cut
+
+our $AUTHORITY = 'cpan:JONASS';
+
+=head1 COPYRIGHT AND LICENCE
+
+Copyright © 2013-2016 Jonas Smedegaard
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=head1 DISCLAIMER OF WARRANTIES
+
+THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+=cut
+
+1;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/boxer.git



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