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


In reply to Re: [dzil/podweaver] who added =head1 NAME? by Khen1950fx
in thread [dzil/podweaver] who added =head1 NAME? by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.