X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FCPANPLUS-Dist-Gentoo.git;a=blobdiff_plain;f=README;h=d62db4dbd627737d222d5a644c2e3e024861cd37;hp=a1127f620c0d9090c7ba92acc7448e64ea1f0a1f;hb=ac86d926fe1f232054032ab4f36c301b8e5eccaa;hpb=7aa1972cf85390e3b6432fe63d1120dbb5967fdd diff --git a/README b/README index a1127f6..d62db4d 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME CPANPLUS::Dist::Gentoo - CPANPLUS backend generating Gentoo ebuilds. VERSION - Version 0.05 + Version 0.09 SYNOPSIS cpan2dist --format=CPANPLUS::Dist::Gentoo \ @@ -29,20 +29,98 @@ DESCRPITON "perl-gcpan" (in that order) rather than "perl-gcpanp". INSTALLATION - After installing this module, you should append "perl-gcpanp" to your + Before installing this module, you should append "perl-gcpanp" to your /etc/portage/categories file. + You have two ways for installing this module : + + * Use the perl overlay located at + . It + contains an ebuild for CPANPLUS::Dist::Gentoo. + + * Bootstrap an ebuild for CPANPLUS::Dist::Gentoo using itself. Note + that if your Gentoo system "perl" is "5.8.x", CPANPLUS and its + dependencies are not installed and not even available in the main + portage tree. So you need to bootstrap them as well. + + First, fetch tarballs for CPANPLUS and CPANPLUS::Dist::Gentoo : + + $ cd /tmp + $ wget http://search.cpan.org/CPAN/authors/id/K/KA/KANE/CPANPLUS-0.88.tar.gz + $ wget http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/CPANPLUS-Dist-Gentoo-0.09.tar.gz + + Log in as root and unpack them in e.g. your home directory : + + # cd + # tar xzf /tmp/CPANPLUS-0.88.tar.gz + # tar xzf /tmp/CPANPLUS-Dist-Gentoo-0.09.tar.gz + + Set up environment variables so that the toolchain is temporarily + available : + + # export OLDPATH=$PATH + # export PATH=/root/CPANPLUS-0.88/bin:$PATH + # export PERL5LIB=/root/CPANPLUS-Dist-Gentoo-0.09/blib/lib:/root/CPANPLUS-0.88/lib:/root/CPANPLUS-0.88/inc/bundle + + Make sure you don't have an old ".cpanplus" configuration visible : + + # [ -d /root/.cpanplus ] && mv /root/.cpanplus{,.bak} + + Bootstrap CPANPLUS : + + # cd /root/CPANPLUS-Dist-Gentoo-0.09 + # samples/g-cpanp CPANPLUS + + Reset the environment : + + # export PATH=$OLDPATH + # unset PERL5LIB OLDPATH + + Emerge CPANPLUS with the ebuilds you've just generated : + + # emerge -tv CPANPLUS + + As of september 2009, "podlators" and "ExtUtils-MakeMaker" may fail + to emerge due to collisions. You can work around this by disabling + the "protect-owned" "FEATURE" for them : + + # FEATURES="-protect-owned" emerge podlators + # FEATURES="-protect-owned" emerge ExtUtils-MakeMaker + + You may need to run each of these commands two times for them to + succeed. + + At this point, you can bootstrap CPANPLUS::Dist::Gentoo using the + system CPANPLUS : + + # PERL5LIB=/root/CPANPLUS-Dist-Gentoo-0.09/blib/lib samples/g-cpanp CPANPLUS::Dist::Gentoo + # emerge -tv CPANPLUS-Dist-Gentoo + METHODS - All the methods are inherited from CPANPLUS::Dist::Base. Please refer to - its documentation for precise information on what's done at each step. + This module inherits all the methods from CPANPLUS::Dist::Base. Please + refer to its documentation for precise information on what's done at + each step. + + "intuit_license" + Returns an array reference to a list of Gentoo licences identifiers + under which the current distribution is released. + + "update_manifest" + Updates the Manifest file for the ebuild associated to the current dist + object. + + "ebuild_source" + Returns the source of the ebuild for the current dist object, or "undef" + when one of the dependencies couldn't be mapped to an existing ebuild. DEPENDENCIES Gentoo (). - CPANPLUS, IPC::Cmd (core modules since 5.9.5), version (since 5.009). + CPANPLUS, IPC::Cmd (core modules since 5.9.5), Parse::CPAN::Meta (since + 5.10.1). - Cwd (since perl 5) File::Path (5.001), File::Copy (5.002), - File::Spec::Functions (5.00504). + Cwd, Carp (since perl 5), File::Path (5.001), File::Copy (5.002), + File::Spec (5.00405), List::Util (5.007003). SEE ALSO cpan2dist. @@ -67,8 +145,7 @@ SUPPORT perldoc CPANPLUS::Dist::Gentoo ACKNOWLEDGEMENTS - The module is to some extend cargo-culted from CPANPLUS::Dist::Deb and - CPANPLUS::Dist::Mdv. + The module was inspired by CPANPLUS::Dist::Deb and CPANPLUS::Dist::Mdv. Kent Fredric, for testing and suggesting improvements.