up vote 3 down vote favorite
1
share [g+] share [fb]

I have recently started some Perl development and use CPAN to install all my packages. I was wondering if there are some "best practices" to manage required packages for a script or application. So far, I'm doing it the inelegant and cumbersome way. I have a script which looks like this :

install Foo::Bar
install Zulu::Car
...

and then I do

$perl -MCPAN -e shell < mycpan.foo
link|improve this question

50% accept rate
I ended up using Module::Install and created a Makefile.PL of the form: use inc::Module::Install; .. requires 'Foo::Bar'; requires 'Zulu::Car'; .. – ankimal Nov 11 '09 at 1:50
feedback

4 Answers

Even if you won't be uploading it, build your application like a CPAN module.

That basically means you have a Makefile.PL that describes the dependencies formally, and your application is in the script/ directory as myapplication (assuming it's a command line/desktop app).

Then, someone can use the CPAN client to install your module and it's dependencies directly, but untarring the tarball and then running

cpan .

Alternatively, the pip tool will let people install your application from a remote URL directly.

pip http://someserver.com/Your-Application-0.01.tar.gz

link|improve this answer
How could you forget to mention Task? :) – brian d foy Nov 6 '09 at 18:18
feedback

This is why Task::* distributions exist. You list all the distributions that you want to install as dependencies in your Task:: distribution. The Task distro itself doesn't supply anything.

If you are inside the directory where you have set up your Task:

 $ cpan .

If you have you Task in a MiniCPAN or DPAN, then you can install it by name:

 $ cpan Task::WhateverYouCalledIt

Once CPAN.pm gets ahold of it, it will automatically install all of the dependencies.

link|improve this answer
feedback

I wouldn't be happy if I downloaded your script and it automatically installed some CPAN packages. The normal thing to do is to simply list the dependencies in the documentation, and let the user install them himself in whatever manner he prefers.

If you're creating a CPAN module yourself, there is a standard way of denoting dependencies in your CPAN installation script, which is created for you with your distribution maker (e.g. ExtUtils::MakeMaker or Module::Install).

link|improve this answer
Why the downvote? – Ether Nov 6 '09 at 1:37
1  
It shouldn't be necessary to use wetware for this, that's a last resort – Adam Kennedy Nov 6 '09 at 4:05
feedback

I've found that for large-scale production systems relying on a third-party code source such as CPAN for production deployments is impractical. Therefore I have always used a system such as apt, rpm, or GNU stow to build packages for all of a system's dependencies, and then a deployment script which uses the package manager to deploy all necessary packages to production servers.

link|improve this answer
Why the downvote? – nohat Nov 11 '09 at 13:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.