in reply to Need help with CPAN gone awry
# file dries.repo [dries] name=Extra Fedora rpms dries - $releasever - $basearch baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/fedora/fc$rele +asever/$basearch/RPMS.dries/
For packages that aren't in this repo, I'd suggest RPM::Specfile and subsequent packaging with cpanflute2 included there.
Note that you have to disable the somewhat braindead /usr/lib/rpm/perl.req like so
foreach $module (sort keys %require) { if (length($require{$module}) == 0) { - print "perl($module)\n"; + warn "perl($module)\n"; } else { # I am not using rpm3.0 so I do not want spaces arround my # operators. Also I will need to change the processing of the # $RPM_* vairable when I upgrage. - print "perl($module) >= $require{$module}\n"; + warn "perl($module) >= $require{$module}\n"; } }
since otherwise you would end up with packages that require perl-Foo-Bar, Foo::Bar being a core package.
--shmem
_($_=" "x(1<<5)."?\n".q·/)Oo. G°\ /
/\_¯/(q /
---------------------------- \__(m.====·.(_("always off the crowd"))."·
");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Need help with CPAN gone awry
by jlk (Hermit) on Sep 15, 2007 at 15:20 UTC | |
by shmem (Chancellor) on Sep 15, 2007 at 16:01 UTC | |
by jlk (Hermit) on Sep 16, 2007 at 17:31 UTC | |
by shmem (Chancellor) on Sep 16, 2007 at 17:53 UTC |