There are several reasons for this. I'll tell you the first few things that come to my mind.

Automatic package builders use heuristics to determine specific information. For example they "guess" the license of a module, which can get you into serious troubles as a distributor. They "guess" the build-dependencies. This usually works well for pure-perl modules with a complete PREREQ_PM list, but fails for almost any module which doesn't use pure-perl only.

Packages generated by those tools tend to be low-quality. They don't use common best-practices in packaging, they use outdated stuff like compatibility versions (debian/compat) and they have no clue about what documentation should be in the package and what shouldn't.

Beside that they are, at least in my experience, not very robust. Not only the generated packages are broken (do not build, install, work, whatever), even the tools itself croak from time to time, if they don't like the module they should package.

These might not be the most important things, but they might be enough to see that one shouldn't create debian source packages in a full automated fashion.

Nevertheless, even I use dh-make-perl and friends from time to time. Most perl packages look the same from the debian packagers point of view. This makes it possible to use dh-make-perl to do the boring things, like a first debian/rules version, etc. and concentrate on those things that the tools can't do for you: Checking the copyright information, finding a good package description, ...

HTH, Flo


In reply to Re^3: Seek Perl module to build .deb files by rafl
in thread Seek Perl module to build .deb files by jkeenan1

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.