NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Irrelevant (Score:2, Interesting)
Frankly, it is just silly hair splitting.
sky
Re:Working Perl (Score:2, Insightful)
In short, if you use rpm or dpkg, you shouldn't be using CPAN in the first place. This has nothing to do with the skill or dedication of the packagers. It's a fundamental incompatibility.
Reply to This
Parent
Re:Working Perl (Score:1)
Certainly in Debian, a few CPAN modules are packaged as libfoo-perl. There has been talk IIRC of a Debian-specific version of CPAN.pm or something similar which will inform apt (probably by wrapping the equivs package) when new perl modules are installed or upgraded by CPAN.
It would in theory be possible to "automatically" convert every module on CPAN to a Debian module. Perhaps we need to set up apt.perl.org as some kind of automagic gateway ;)
Re:Working Perl (Score:2, Informative)
In practice too. Well, not *every* module, but every module that is packaged in the standard way can be very easily compiled into a .deb:
.deb to be installed immediately.
apt-get install dh-make-perl
dh-make-perl --build --cpan Foo::Bar
or
dh-make-perl --build --cpanplus Foo::Bar
You can supply --install if you want the new
Re:Working Perl (Score:2, Informative)
This is already possible on the *BSD systems, with a clever hack called BSDPAN. This is a modification to the Perl build on those systems that sticks some hooks in to the ExtUtils::* modules, so that 'perl Makefile.PL; make; make test; make install' also registers the module's files with the local package management system.
BSDPA [pm.org]
Re: Packaging CPAN (Score:1)
Re:Working Perl (Score:1)
#g-cpan.pl MODULE
makes a
Re:Working Perl (Score:1)
Yet Another Just another perl hacker,
Re:Working Perl (Score:2, Insightful)