Apparently some package installers on some systems like Debian fail to create .packlist files for installed modules! This policy oversight breaks critical parts of the perl toolchain that depend on core utilities like
ExtUtils::Installed. Has anyone in the past ~25 years this has been the case written a program that heals these broken installations by traversing @INC and automagically manufacturing any missing .packlist files? Seems like a neat project for me or one of you Perl professionals but I wouldn't
want to reinvent any wheels. Thanks
Date: Wed, 4 Dec 2002 17:06:17 +0100
Debian-Perl-Policy and .packlist?
lists.debian.org/debian-policy/2002/12/msg00009.html
Date 2012-01-17T18:06:02
Debian Bug report logs #656242 perl: .packlist file missing
bugs-devel.debian.org/cgi-bin/bugreport.cgi?bug=656242
PS - Also wonder if they fail to install MYMETA.json and install.json and the bundle files?
# archlib: The core .packlist
perl -MConfig -e 'print `ls -la "$Config{archlib}/.packlist"`'
perl -MConfig -e 'print `cat "$Config{archlib}/.packlist"`'
# archlib/auto: dist/bundle
perl -MConfig -e 'open $pipe, qq[ls -la "$Config{archlib}/auto" |];pri
+nt while <$pipe>'
# sitearch/auto: dist/.packlist
perl -MConfig -e 'open $pipe, qq[ls -la "$Config{sitearch}/auto" |];pr
+int while <$pipe>'
# sitearch/.meta: dist/install.json and dist/MYMETA.json
perl -MConfig -e 'open $pipe, qq[ls -la "$Config{sitearch}/.meta" |];p
+rint while <$pipe>'
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.