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 caa7fcd6f8935840f0170aaff87074e0fcf394c3
Author: Jonas Smedegaard <d...@jones.dk>
Date:   Wed Jan 25 03:51:09 2017 +0100

    Fix add B::World::Flat.
---
 lib/Boxer/World/Flat.pm | 128 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 128 insertions(+)

diff --git a/lib/Boxer/World/Flat.pm b/lib/Boxer/World/Flat.pm
new file mode 100644
index 0000000..68ea9da
--- /dev/null
+++ b/lib/Boxer/World/Flat.pm
@@ -0,0 +1,128 @@
+package Boxer::World::Flat;
+
+=encoding UTF-8
+
+=head1 NAME
+
+Boxer::World::Reclass - software for single use case
+
+=cut
+
+use v5.14;
+use utf8;
+use strictures 2;
+use version;
+use Role::Commons -all;
+use autodie;
+
+use Moo;
+extends 'Boxer::World';
+use Types::Standard qw(Maybe Bool Tuple);
+use Types::TypeTiny qw(StringLike ArrayLike);
+
+use namespace::clean;
+
+=head1 VERSION
+
+Version v1.1.5
+
+=cut
+
+our $VERSION = version->declare("v1.1.5");
+
+=head1 DESCRIPTION
+
+Outside the box is a world of software.
+
+B<Boxer::World::Reclass> is a class describing a collection of software
+available for installation into (or as) an operating system.
+
+=head1 SEE ALSO
+
+L<Boxer>.
+
+=cut
+
+has parts => (
+       is      => 'ro',
+       isa     => Tuple [],
+       default => sub { [] },
+);
+
+has node => (
+       is       => 'ro',
+       isa      => StringLike,
+       required => 1,
+);
+
+has epoch => (
+       is  => 'ro',
+       isa => Maybe [StringLike],
+);
+
+has pkgs => (
+       is       => 'ro',
+       isa      => ArrayLike,
+       required => 1,
+);
+
+has pkgs_auto => (
+       is       => 'ro',
+       isa      => ArrayLike,
+       required => 1,
+);
+
+has pkgs_avoid => (
+       is       => 'ro',
+       isa      => ArrayLike,
+       required => 1,
+);
+
+has tweaks => (
+       is       => 'ro',
+       isa      => ArrayLike,
+       required => 1,
+);
+
+has pkgdesc => (
+       is       => 'ro',
+       isa      => StringLike,
+       required => 1,
+);
+
+has tweakdesc => (
+       is       => 'ro',
+       isa      => StringLike,
+       required => 1,
+);
+
+has nonfree => (
+       is       => 'ro',
+       isa      => Bool,
+       required => 1,
+);
+
+=head1 AUTHOR
+
+Jonas Smedegaard C<< <d...@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

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to