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.
Build your own (Score:2)
Can you get a dedicated perl user that owns /usr/local/perl and install your own instance there [perl.org], where you can manage the modules yourself? Can you install your own instance as your own development user somewhere in /home or something?
Not having access to Text::CSV_XS is ridiculous. Having to wait two weeks for it is ridiculous. Not being able to put it in a development area yourself to work with would be beyond ridiculous, but hopefully you can at least install the module somewhere you have write acce
J. David works really hard, has a passion for writing good software, and knows many of the world's best Perl programmers
Re:Build your own (Score:1)
in the linked journal, you are using CPAN for moudle installation. do you do that in production environment? if not, do you build pkg for each module for every version of Perl? do you reuse some of the Perl modules built against older Perl?
also, you mention the update of symbolic links from
/usr/local/bin/to/usr/local/perl??/bin/. such asperldoc,splain. my question is why aren't those links in/usr/local/perl???/bin/? how do you cope with those links if you have more than two Perl installed? I will do some more research on this and hopefully have a better solution for our enviroment.Reply to This
Parent
Re: (Score:2)
in the linked journal, you are using CPAN for moudle installation. do you do that in production environment? if not, do you build pkg for each module for every version of Perl? do you reuse some of the Perl modules built against older Perl?
Sadly, when it comes to Perl, the lines between development and production are badly blurred in my organization. Happily, it tends to affect only me. :)
I have gone the route of building Solaris packages for Perl modules. I would never do this again, if I could help it. I believe the ideal situation would be a production installation of Perl managed by CPAN shell and never touched to add or upgrade a module until all code had run regression tests against a development instance that had been so updated
J. David works really hard, has a passion for writing good software, and knows many of the world's best Perl programmers