in reply to [dzil/podweaver] who added =head1 NAME?

You didn't give much information, but I'd be willing to bet that you're missing some prerequisites, and your config might need some tweaking.

First, what happened to the weaver.ini? You need a weaver.ini and a dist.ini. See: Of Modernizing My Own Modules by NPEREZ. He gives the urls for templates for dist.ini and weaver.ini. PodWeaver should be as easy as this in your dist.ini:

dist.ini

1: [PodWeaver]
Or this in your weaver.ini:

weaver.ini

1: [@DEFAULT] 2: 3: [-Transformer] 4: transformer = List
Second, before you can get there, run these bundles to make sure that you have all the modules that you'll need for setup.

ForMoose:

#!/usr/bin/perl use strict; use warnings; use CPAN; CPAN::Shell->install( "namespace::clean", "namespace::autoclean", "Class::MOP", "Eval::Closure", "Package::DeprecationManager", "Sub::Name", "Test::Fatal", "Dist::CheckConflicts", "Data::OptList", "Devel::GlobalDestruction", "List::MoreUtils", "MRO::Compat", "Params::Util", "Scalar::Util", "Sub::Exporter", "Task::Weaken", "Moose", "MooseX::Role::WithOverloading", "Moose::Autobox", "Package::Stash::XS", "Package::Stash");
For dzil
#!usr/bin/perl use strict; use warnings; use CPAN; CPAN::Shell->install( "App::Cmd::Setup", "CPAN::Meta::Converter", "CPAN::Meta::Prereqs", "CPAN::Meta::Validator", "CPAN::Uploader", "Config::MVP::Reader", "Config::MVP::Reader::Findable::ByExtension", "Config::MVP::Reader::INI", "List::MoreUtils", "Log::Dispatchouli", "Perl::PrereqScanner", "Pod::Eventual", "String::Formatter", "Version::Requirements", "Sub::Exporter::ForMethods", "Pod::Elemental", "Pod::Elemental::PerlMunger", "Pod::Weaver", "PPI");
For Dist::Zilla and plugins:

Task::Dist::Zilla