[Chicago-talk] "I don't have permission to install a moduleonthe system!"

petemar1 petemar1 at perlmonk.org
Sat Dec 27 09:23:53 CST 2003


Does this look right as a line in .bashrc:

    export CVSROOT=/home/petemar1/.cvsroot/

???


When I do this:

    $ cvs co scrapebay;

I get a nasty error:

    cvs checkout: cannot find module `scrapebay' - ignored

Argh.


-----Original Message-----
From: chicago-talk-bounces at mail.pm.org
[mailto:chicago-talk-bounces at mail.pm.org]On Behalf Of Steven Lembark
Sent: Saturday, December 27, 2003 3:07 AM
To: Chicago.pm chatter
Subject: RE: [Chicago-talk] "I don't have permission to install a
moduleonthe system!"




-- petemar1 <petemar1 at perlmonk.org>

> Is there a way of resolving module dependencies without manually
> installing(munging) everything? I recall there's a cpan module that
> auto-installs modules, but don't remember it's name.


$ cd;
$ mkdir sandbox/
$ cd sandbox;
$ mkdir lib;
$ cvs co <project name>;

# at this point you have a working copy of the project
# under $HOME/sandbox/blah and a library directory in
# $HOME/sandbox/lib
#
# Now install the module into the sandbox's lib directory

$ cd <wherever>;
$ perl Makefile.PL PREFIX=~/sandbox/lib;
$ make test install; # lets assume it worked...

# now you have a choice. if you can get the SysAdmin's
# to install FindBin::libs then skip the next step.

$ perl -MCPAN -e shell;
> get FindBin::libs;

> cd FindBin-libs-0.13;
> perl Makefile.PL PREFIX=~/sandbox/lib;
$ make test install; # lets assume this works also...

$ cd <project name>;
$ ln -fs ../lib/FindBin .;

# ok, you now have a copy of the module under
# $HOME/sandbox/lib/whatever... now you have a
# choice. if anything perl knows h

$ vi <your #! code>
  add the line "use FindBin::libs;" to your source.

OK, you're done forever. Wherever you land the #! code
if there is any "lib" directory above it that has your
module in it you'll get the module. If you can get the
SA's to install FindBin::libs wherever perl can find it
(default is site_perl/<version>) then you can install
your own code and never worry about invading the holy
santuary of /usr/local again [or getting hit by
lightning for your sins :-].

If they won't install it then the symlink'll do the trick
since '.' is normally on the default @INC (check this via
"perl -V").

There are doc's on setting up a standard sandbox for
shared development or regression testing.






--
Steven Lembark                               2930 W. Palmer
Workhorse Computing                       Chicago, IL 60647
                                            +1 888 359 3508
_______________________________________________
Chicago-talk mailing list
Chicago-talk at mail.pm.org
http://mail.pm.org/mailman/listinfo/chicago-talk



More information about the Chicago-talk mailing list