{{
# vim: set ts=8 sts=2 sw=2 tw=100 et noeol :

    $authors = join("\n", map "author              = $_", @{$dist->authors});
    $copyright_year = (localtime)[5] + 1900;
    '';
}}name                = {{ $dist->name }}
{{ $authors }}
copyright_holder    = {{ $dist->copyright_holder }}
copyright_year      = {{ $copyright_year }}
license             = {{ $dist->_license_class }}
{{
    ($zilla_plugin) = ($dist->name =~ /^Dist-Zilla-Plugin-(.+)$/g);
    $zilla_plugin
        ? ( $zilla_plugin =~ s/-/::/g, "\n[Bootstrap::lib]\n[$zilla_plugin]\n" )
        : ''
}}
[@Author::ETHER]
:version = {{ Dist::Zilla::PluginBundle::Author::ETHER->VERSION }}
bugtracker = github
{{
    ($zilla_plugin || $dist->name =~ /^Moose/ ? "Test::MinimumVersion.max_target_perl = 5.008003\n" : '')
    . ($zilla_plugin ? <<RESOURCES

[MetaResources]
x_IRC = irc://irc.perl.org/#distzilla
x_MailingList = http://dzil.org/#mailing-list

[Prereqs]
Dist::Zilla = 4.300039  ; v2 meta-compliant licence field
RESOURCES
: 'Test::MinimumVersion.max_target_perl = 5.020    ; may go higher later on
') }}
[Prereqs / DevelopRequires]
Test::Warnings = 0
{{
    $dist->name =~ /^Test/
        ? <<RESOURCES

[MetaResources]
x_IRC = irc://irc.perl.org/#perl-qa
x_MailingList = http://lists.perl.org/list/perl-qa.html
RESOURCES
        : ''
}}{{
    $zilla_plugin || $dist->name =~ /^Moose/ ? <<CHECKBREAKS : ''

[Test::CheckBreaks]
:version = 0.017
conflicts_module = Moose::Conflicts
conflicts_module = Module::Runtime::Conflicts
CHECKBREAKS
}}