Well, for example, Bundle::CPAN ignores the Makefile.PL.

Instead, it reads the .pm file to look for specially formateed POD entries instead!

This means there's no capability to do platform-senstive Bundle:: modules. In fact, there's no capability to do ANY sort of interesting things.

You write it in the POD, hope you don't accidentally write something in the POD that the CPAN client will mistake for a module, and than pack it up with a Makefile.PL that does nothing.

Oh, and because Bundle:: modules are never installed, you can never tell whether a Bundle:: module has been installed of not.

They are completely invisible.

This can lead to some scenarios where you want a specific tarball version installed (not just a class) and because the Bundle:: doesn't know if it is installed, it just reinstalls the same package all over again.

If two modules both use the same Bundle:: in your recursion tree, well then it will install it TWICE!

Oh, and don't expect to be able to use them if you write your own CPAN client or installer, because you yourself have to implement the weirdness inside of them.

And you can't install a Bundle module by hand with Makefile.PL... well you can, except it will lie to you, because only what's in the POD matters, not what's in the Makefile.PL, so you have to maintain the dep list twice.

In reply to Re^3: Task:: or Bundle:: by adamk
in thread Task:: or Bundle:: by brainsick

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.