.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man v6.0.2 (Pod::Simple 3.45) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" .\" Required to disable full justification in groff 1.23.0. .if n .ds AD l .\" ======================================================================== .\" .IX Title "CPANPLUS::Hacking 3" .TH CPANPLUS::Hacking 3 2025-12-14 "perl v5.42.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME CPANPLUS::Hacking \- developing CPANPLUS .SH DESCRIPTION .IX Header "DESCRIPTION" This document attempts to describe how to develop with the CPANPLUS environment most easily, how certain things work and why. .PP This is basically a quick\-start guide to people who want to add features or patches to CPANPLUS. .SH "OBTAINING CPANPLUS" .IX Header "OBTAINING CPANPLUS" Checkout CPANPLUS from its GIT repository at . .SH "INSTALLING CPANPLUS" .IX Header "INSTALLING CPANPLUS" CPANPLUS follows the standard perl module installation process: .PP .Vb 4 \& perl Makefile.PL \& make \& make test \& make install .Ve .SH "CONFIGURING CPANPLUS" .IX Header "CONFIGURING CPANPLUS" When running \f(CW\*(C`perl Makefile.PL\*(C'\fR you will be prompted to configure. If you have already done so, and merely wish to update the \f(CW\*(C`Makefile\*(C'\fR, simply run: .PP .Vb 1 \& perl Makefile.PL JFDI=1 .Ve .PP This will keep your configuration intact. Note however, if there are changes to the default configuration file \f(CW\*(C`Config.pm\-orig\*(C'\fR, you should either delete your current config file and reconfigure, or patch your config file from the new entries in \f(CW\*(C`Config.pm\-orig\*(C'\fR. .SH "RUNNING CPANPLUS FROM DEVELOPMENT ENVIRONMENT" .IX Header "RUNNING CPANPLUS FROM DEVELOPMENT ENVIRONMENT" If you\*(Aqd rather not install the development version to your \&\f(CW\*(C`site_perl\*(C'\fR directory, that\*(Aqs no problem. You can set your \f(CW\*(C`PERL5LIB\*(C'\fR environment variable to CPANPLUS\*(Aq \f(CW\*(C`lib\*(C'\fR directory, and you can run it from there. .SH "RUNNING CPANPLUS TESTS" .IX Header "RUNNING CPANPLUS TESTS" Tests are what tells us if CPANPLUS is working. If a test is not working, try to run it explicitly like this: .PP .Vb 1 \& perl \-I/path/to/cpanplus/lib t/XX_name_of_test.t 1 .Ve .PP The extra \*(Aq1\*(Aq makes sure that all the messages and errors (they might be errors we\*(Aqre testing for!) are being printed rather than kept quiet. This is a great way to find out the context of any failures that may occur. .PP If you believe this test failure proves a bug in CPANPLUS, the long output of the test file is something we\*(Aqd like to see alongside your bug report. .SH "FINDING BUGS" .IX Header "FINDING BUGS" Sometimes you might find bugs in CPANPLUS\*(Aq behaviour. If you encounter these in a development snapshot, we\*(Aqd appreciate a complete patch (as described below in the "SENDING PATCHES" section. .PP If it\*(Aqs way over your head, then of course reporting the bug is always better than not reporting it at all. Before you do so though, make sure you have the \fBlatest\fR development snapshot, and the bug still persists there. If so, report the bug to this address: .PP .Vb 1 \& bug\-cpanplus@rt.cpan.org .Ve .PP A good \f(CW\*(C`patch\*(C'\fR would have the following characteristics: .IP "Problem description" 4 .IX Item "Problem description" Describe clearly what the bug is you found, and what it should have done instead. .IP "Program demonstrating the bug" 4 .IX Item "Program demonstrating the bug" Show us how to reproduce the bug, in a simple of a program as possible .IP "[OPTIONAL] A patch to the test suite to test for the bug" 4 .IX Item "[OPTIONAL] A patch to the test suite to test for the bug" Amend our test suite by making sure this bug will be found in this, and future versions of CPANPLUS (see "SUPPLYING PATCHES") .IP "[OPTIONAL] A patch to the code + tests + documentation" 4 .IX Item "[OPTIONAL] A patch to the code + tests + documentation" Fix the bug, update the docs & tests. That way your bug will be gone forever :) .SH "SUPPLYING PATCHES" .IX Header "SUPPLYING PATCHES" Patches are a good thing, and they are welcome. Especially if they fix bugs you\*(Aqve found along the way, or that others have reported. .PP We prefer patches in the following format: .IP \(bu 4 In \f(CW\*(C`diff \-u\*(C'\fR or \f(CW\*(C`diff \-c\*(C'\fR format .IP \(bu 4 From the root of the snapshot .IP \(bu 4 Including patches for code + tests + docs .IP \(bu 4 Sent per mail to bug\-cpanplus@rt.cpan.org .IP \(bu 4 With subject containing \f(CW\*(C`[PATCH]\*(C'\fR + description of the patch .PP You will always be informed if a patch is applied or rejected, and in case of rejection why that is (perhaps you can tweak the patch to have it accepted after all).