in reply to How do I get CPANPLUS (or some other tool) to resolve dependencies when installing local .tar.gz packages?

I guess you can type cpan . as of 1.9xx (not totally sure about the version, but it's kinda new).

Well, I should say you have to untar it ...

( tar -zxvvf package.tar.gz cd package* && cpan . )

(I've gone and assumed a dash/bash/sh type shell.)

Oh, no, I missed that the local packages depend on eachother. :( There probably is a way to do that, but I don't know it. I did get a Bundle::JetsFavorites to work out of my ~/.cpan/ dir once. Perhaps it's a similar process.

-Paul

  • Comment on Re: How do I get CPANPLUS (or some other tool) to resolve dependencies when installing local .tar.gz packages?
  • Select or Download Code

Replies are listed 'Best First'.
Re^2: How do I get CPANPLUS (or some other tool) to resolve dependencies when installing local .tar.gz packages?
by Anonymous Monk on Dec 04, 2007 at 16:48 UTC
    That would install a singe package but wouldn't correctly resolve dependencies for local packages that aren't on the cpan if I understand it correctly.
      No. cpan . resolves all dependencies and installs the distribution in the current directory.