
CPAN::Packager::Manual - User manual

This is the CPAN::Packager users manual.

cpan-packager creates RPM and Deb packages of CPAN distributions. Given a module name, cpan-packager will automatically analyze dependencies, download, build, test, provision, and install packages.

cpan CPAN::Packager
Apply patches/rpm/perlreq.patch to /usr/lib/rpm/perl.req. Otherwise, perl.req extracts needles module dependencies.
Copy conf/debian/rules* to the ~/.dh-make-perl directory. Otherwise, you may experience conflicts. For example: perllocal.pod.

$ sudo cpan-packager --module Test::Exception --builder RPM --conf \ conf/config-rpm.yaml --verbose
The resulting package may be found at: ~/.cpanpackager/rpm
$ sudo cpan-packager --module Test::Exception --builder Deb --conf \ conf/config-deb.yaml --verbose
The resulting package may be found at: ~/.cpanpackager/deb
The builder you'd like to use to build the module. Either "RPM" or "Deb".
The local filesystem path to your CPAN::Packager configuration file. An example configuration file is available at:
http://github.com/dann/p5-cpan-packager/tree/master/conf/
If you're building RPM's, you'll want the 'config-rpm.yaml' configuration file.
If you're building Deb's, you'll want the 'config-deb.yaml' configuration file.
The name of the module that you'd like to build. For example: Test::Reporter.
Always build CPAN modules even if the module is already installed.
Emit additional information and diagnostics.
The path to a file containing the list of modules that should be built. There should be one module per line. For example:
Foo::Bar Wibble::Plink

The configuration file is YAML-based and is comprised of two main sections, the "global" section, and the "modules" section. The configuration schema is defined in: CPAN::Packager::Config::Schema
This section defines common configuration entities.
Accepts one or more CPAN mirror arguments. These mirrors are used to retrieve the module(s) being packaged in addition to their dependencies. For example, a local CPAN::Mini mirror, or a "real" mirror may be referenced:
An example configuration section for "cpan_mirrors" may look like:
---
global:
cpan_mirrors:
- http://ftp.funet.fi/pub/languages/perl/CPAN/
- file:///home/dann/minicpan
Correct misspelt package name.
The incorrect module name which you want to fix.
The correct module name.
Suppresses generation of a given required dependency. Sometimes authors create dependencies on modules the packager can't find This allows the packager to arbitrarily supress a given requirement.
The module which you don't want to depend.
Skip module name resolution.
The module which you want to skip name resolution.
Fix incorrect module name.
The incorrect module name which you want to fix.
The correct module name.
This section defines module-specific configuration entities.
Specifies the module to which this configuration applies. For example: Test::Reporter.
Forcefully removes module dependencies.
Given module is removed from the dependency list of the package being built. For example: Test::Reporter.
Forcefully adds module dependencies.
Given module is added to the dependency list of the package being built. For example: Test::Reporter.
Causes "make test" to be skipped for given module. This is useful when you don't want a module's failing tests to prevent the module from being built and installed.
Build the package forcefully if the package is installed already.
This is useful if you want to fetch modules from CPAN and use patched CPAN module.
The file path of gzipped tarball containing CPAN source.
The directory path of CPAN module source direcotry which contains Makefile.PL or Build.PL
The distribution version.
The CPAN module name.
Allows for specifying patch files to be inserted into the spec file and applied when building the source.
The CPAN module version.
This specifies the release of the package itself (not the module that's being packaged). This is most commonly used when you want to re-package the same version of a given module. You may want to do this, for example, if the original packaging was somehow in error, or perhaps if you want to adjust the package's metadata.
Ordinarilly, a module like, for example, Test::Reporter would be given a package name of perl-Test-Reporter (RPM) or libtest-reporter-perl (Deb), by default. However, if for some reason you need to define your own package name, this option will allow you to do just that. This can be useful in conjunction with the "obsoletes" option, if you need to forcefully "override" an existing "identical" package on the system.
This option specifies the epoch of a package. This is primarily useful in the situation where, for example, RPM's version comparison algorithm isn't doing what you expect. Bumping the epoch integer up will force RPM to consider the package as being newer even if it would ordinarily consider it being older, version-wise.
Accepts multiple "package" arguments. Causes the package being built to obsolete the given packages.
In the case of RPM, an example package argument may be: perl-Compress-Zlib. For example, since the IO-Compress distribution superceeds and deprecates the Compress-Zlib distribution, the configuration section for the IO::Compress module may obsolete the perl-Compress-Zlib package, as above.

You may use CPAN::Packager with minicpan. First, establish your local minicpan mirror:
minicpan -r http://ftp.funet.fi/pub/languages/perl/CPAN/ -l ~/minicpan
Then, just set the path to your local minicpan mirror in your configuration file:
---
global:
cpan_mirrors:
- file:///home/dann/minicpan
Write the module's configuration as such:
- module: Acme
custom:
tgz_path: ~/.cpanpackager/custom_module/Acme-1.11111.tar.gz
patches:
- ~/.cpanpackager/custom_module/acme_test.patch
dist_name: Acme
version: 1.11111
The patch should, for example, look like:
--- Acme-1.11111/t/acme.t.orig 2010-01-26 22:26:51.000000000 +0900
+++ Acme-1.11111/t/acme.t 2010-01-26 22:26:39.000000000 +0900
@@ -1,8 +1,10 @@
use lib 't', 'lib';
use strict;
use warnings;
-use Test::More tests => 2;
+use Test::More tests => 3;
use Acme;
ok(acme->is_acme);
ok(acme->is_perfect);
+ok 1;
It is possible for a CPAN::Packager user to explicitly specify installation locations for a distribution's libraries, documentation, man pages, binaries, and scripts. Setting both of the below environment variables, for example, will accomplish this.
PERL_MM_OPT="INSTALLVENDORMAN1DIR=/usr/local/share/man/man1 INSTALLVENDORMAN3DIR=/usr/local/share/man/man3 INSTALLVENDORBIN=/usr/local/bin INSTALLVENDORSCRIPT=/usr/local/bin" PERL_MB_OPT="--config installvendorman1dir=/usr/local/share/man/man1 --config installvendorman3dir=/usr/local/share/man/man3 --config installvendorbin=/usr/local/bin --config installvendorscript=/usr/local/bin"
Additionally, for RPMs, you may specify the directory in which non-man documentation (Changes, README, etc) are installed via adding an entry to your ~/.rpmmacros file:
%_defaultdocdir /usr/local/share/doc

Environment variable CPAN_PACKAGER_TEST_LIVE can be used to execute live tests.
Environment variable CPAN_PACKAGER_ENABLE_DUMP can be used to dump variables.

Please report any bugs or feature requests to this project's GitHub repository at:
http://github.com/dann/p5-cpan-packager/issues
Thank you!

Takatoshi Kitano <kitano.tk@gmail.com>