in reply to Re: Can I please have *simple* modules?
in thread Can I please have *simple* modules?

One of our clients distributes a minicpan with his application. The user starts with a "run_me" file on the distro CD. That script configures CPAN.pm in memory (so it doesn't change or overwrite local settings), then installs everything from its own repository. Using CPAN::Mini::Inject and some other magic, we can add or replace any file.

It's certainly a pain when the external module authors don't acccept patches or can't be reached, but for most people they don't need to upgrade. That we might have to modify somebody else's code to deal with updates isn't all that worrisome: imagine writing all that code from scratch! We're in a pretty good place when that's our major annoyance. We've been living a pretty good life. :)

--
brian d foy <brian@stonehenge.com>
Subscribe to The Perl Review
  • Comment on Re^2: Can I please have *simple* modules?

Replies are listed 'Best First'.
Re^3: Can I please have *simple* modules?
by perrin (Chancellor) on Nov 23, 2005 at 18:41 UTC
    I just noticed that Module::Install seems able to do all this too: find dependencies, package them up, and install them with your project.