]> git.vpit.fr Git - perl/modules/CPANPLUS-Dist-Gentoo.git/blobdiff - README
Update VPIT::TestHelpers to 15e8aee3
[perl/modules/CPANPLUS-Dist-Gentoo.git] / README
diff --git a/README b/README
index d62db4dbd627737d222d5a644c2e3e024861cd37..897c62def298868a82826e53ebd0dc1d1ac2df2b 100644 (file)
--- a/README
+++ b/README
@@ -2,98 +2,150 @@ NAME
     CPANPLUS::Dist::Gentoo - CPANPLUS backend generating Gentoo ebuilds.
 
 VERSION
-    Version 0.09
+    Version 0.12
 
 SYNOPSIS
+        # Using default values from your make.conf
+        cpan2dist --format=CPANPLUS::Dist::Gentoo --buildprereq Some::Module
+
+        # Specifying your own options
         cpan2dist --format=CPANPLUS::Dist::Gentoo \
                   --dist-opts overlay=/usr/local/portage \
                   --dist-opts distdir=/usr/portage/distfiles \
                   --dist-opts manifest=yes \
                   --dist-opts keywords=x86 \
-                  --dist-opts header="# Copyright 1999-2008 Gentoo Foundation" \
+                  --dist-opts header="# Begin" \
                   --dist-opts footer="# End" \
                   Any::Module You::Like
 
-DESCRPITON
+DESCRIPTION
     This module is a CPANPLUS backend that recursively generates Gentoo
-    ebuilds for a given package in the specified overlay (defaults to
-    /usr/local/portage), updates the manifest, and even emerges it (together
-    with its dependencies) if the user requires it. You need write
-    permissions on the directory where Gentoo fetches its source files
-    (usually /usr/portage/distfiles). The valid "KEYWORDS" for the generated
-    ebuilds are by default those given in "ACCEPT_KEYWORDS", but you can
-    specify your own with the "keywords" dist-option.
+    ebuilds for a given package in the default overlay, updates the
+    manifest, and even emerges it (together with its dependencies) if the
+    user requires it.
 
     The generated ebuilds are placed into the "perl-gcpanp" category. They
     favour depending on a "virtual", on "perl-core", "dev-perl" or
-    "perl-gcpan" (in that order) rather than "perl-gcpanp".
+    "perl-gcpan" (in that order) rather than "perl-gcpanp". Existing ebuilds
+    will be searched into the main "PORTDIR" portage tree and then into the
+    overlays listed in "PORTDIR_OVERLAY".
 
-INSTALLATION
-    Before installing this module, you should append "perl-gcpanp" to your
-    /etc/portage/categories file.
+OPTIONS
+    You can pass specific options to cpan2dist by using the "--dist-opts"
+    command-line argument followed by a "key=value" pair, where "key" is the
+    option name and "value" is what it is set to. "--dist-opts" can be used
+    several times.
 
-    You have two ways for installing this module :
+    The valid option "key"s are :
 
-    *   Use the perl overlay located at
-        <http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git>. It
-        contains an ebuild for CPANPLUS::Dist::Gentoo.
+    *   "manifest"
 
-    *   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.
+        A boolean that indicates whether the Manifest file should be
+        generated by running "ebuild manifest" onto the generated ebuilds.
 
-        First, fetch tarballs for CPANPLUS and CPANPLUS::Dist::Gentoo :
+        Defaults to "yes".
 
-            $ 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
+    *   "overlay"
 
-        Log in as root and unpack them in e.g. your home directory :
+        The path of the overlay in which the generated ebuilds will be
+        written.
 
-            # cd
-            # tar xzf /tmp/CPANPLUS-0.88.tar.gz
-            # tar xzf /tmp/CPANPLUS-Dist-Gentoo-0.09.tar.gz
+        Defaults to the first overlay listed in "PORTDIR_OVERLAY" (as
+        returned by "emerge --info") or /usr/local/portage if this variable
+        is empty.
+
+    *   "distdir"
+
+        The directory where "ebuild" expects to find the source tarballs.
+        You need write permissions on this directory.
+
+        Defaults to the value of "DISTDIR" (as returned by "emerge --info")
+        or /usr/portage/distfiles if this variable is empty.
+
+    *   "keywords"
+
+        The valid "KEYWORDS" for the generated ebuilds.
+
+        Defaults to the value of "ACCEPT_KEYWORDS" (as returned by "emerge
+        --info") or 'x86' if this variable is empty.
+
+    *   "header"
+
+        A chunk of text that is prepended to every ebuild.
+
+        Defaults to the generic Gentoo Foundation header.
+
+    *   "footer"
 
-        Set up environment variables so that the toolchain is temporarily
-        available :
+        A chunk of text that is appended to every ebuild.
 
-            # 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
+        Defaults to nothing.
 
-        Make sure you don't have an old ".cpanplus" configuration visible :
+    cpan2dist itself takes other options, most notably :
 
-            # [ -d /root/.cpanplus ] && mv /root/.cpanplus{,.bak}
+    *   "--buildprereq" generates an ebuild for every dependency, even for
+        those that are already up-to-date. Setting this option is
+        recommended.
 
-        Bootstrap CPANPLUS :
+    *   "--force" forcefully regenerates ebuilds even if they already exist.
 
-            # cd /root/CPANPLUS-Dist-Gentoo-0.09
-            # samples/g-cpanp CPANPLUS
+    *   "--install" installs the ebuilds after generating them.
 
-        Reset the environment :
+    *   "--skiptest" skips tests while building, which speeds up the
+        building process.
 
-            # export PATH=$OLDPATH
-            # unset PERL5LIB OLDPATH
+    *   "--verbose" shows a lot more information.
 
-        Emerge CPANPLUS with the ebuilds you've just generated :
+    Please refer to cpan2dist documentation for a complete coverage of its
+    abilities.
 
-            # emerge -tv CPANPLUS
+INSTALLATION
+    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
+        <http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git>. It
+        contains an ebuild for CPANPLUS::Dist::Gentoo which will most likely
+        be up-to-date given the reactivity of Gentoo's Perl herd.
+
+    *   Bootstrap an ebuild for CPANPLUS::Dist::Gentoo using itself.
+
+        First, make sure your system "perl" is 5.10 or greater, so that the
+        CPANPLUS toolchain is available.
 
-        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 :
+            $ perl -v
+            This is perl 5, version 12, subversion 2 (v5.12.2)...
 
-            # FEATURES="-protect-owned" emerge podlators
-            # FEATURES="-protect-owned" emerge ExtUtils-MakeMaker
+        "perl" 5.12 is the current stable Perl version in Gentoo. If you
+        still have "perl" "5.8.x", you can upgrade it by running the
+        following commands as root :
 
-        You may need to run each of these commands two times for them to
-        succeed.
+            # emerge -tv ">=dev-lang/perl-5.10"
+            # perl-cleaner --all
 
-        At this point, you can bootstrap CPANPLUS::Dist::Gentoo using the
-        system CPANPLUS :
+        Then, fetch the CPANPLUS::Dist::Gentoo tarball :
+
+            $ cd /tmp
+            $ wget http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/CPANPLUS-Dist-Gentoo-0.12.tar.gz
+
+        Log in as root and unpack it in e.g. your home directory :
+
+            # cd
+            # tar xzf /tmp/CPANPLUS-Dist-Gentoo-0.12.tar.gz
+            # cd CPANPLUS-Dist-Gentoo-0.12
+
+        Bootstrap CPANPLUS::Dist::Gentoo using the bundled shell script
+        "g-cpanp" :
+
+            # perl Makefile.PL
+            # make
+            # PERL5LIB=blib/lib samples/g-cpanp CPANPLUS::Dist::Gentoo
+
+        Finally, emerge the "CPANPLUS-Dist-Gentoo" ebuild you've just
+        generated :
 
-            # PERL5LIB=/root/CPANPLUS-Dist-Gentoo-0.09/blib/lib samples/g-cpanp CPANPLUS::Dist::Gentoo
             # emerge -tv CPANPLUS-Dist-Gentoo
 
 METHODS
@@ -101,6 +153,10 @@ METHODS
     refer to its documentation for precise information on what's done at
     each step.
 
+  "meta"
+    Returns the contents of the META.yml or META.json files as parsed by
+    Parse::CPAN::Meta.
+
   "intuit_license"
     Returns an array reference to a list of Gentoo licences identifiers
     under which the current distribution is released.
@@ -150,7 +206,7 @@ ACKNOWLEDGEMENTS
     Kent Fredric, for testing and suggesting improvements.
 
 COPYRIGHT & LICENSE
-    Copyright 2008-2009 Vincent Pit, all rights reserved.
+    Copyright 2008,2009,2010,2011,2012 Vincent Pit, all rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.