The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

pinto - manage a Pinto repository

VERSION

version 0.043

SYNOPSIS

  pinto --root=REPOSITORY_ROOT [global options] COMMAND [command options] [args]

DESCRIPTION

pinto is a tool for creating and managing a custom CPAN-like repository of Perl modules. The purpose of such a repository is to provide a stable, curated stack of dependencies from which you can reliably build, test, and deploy your application using the standard Perl tool chain. pinto provides various commands for gathering and managing distribution dependencies within the repository, so that you can control precisely which dependencies go into your application.

GLOBAL OPTIONS

The following options are available for all commands.

--root DIRECTORY | URL
-r DIRECTORY | URL

Specifies the root of your repository. This is mandatory for (almost) all commands unless you've set the PINTO_REPOSITORY_ROOT environment variable to point to your repository. The root can be a path to a local directory, or the URL where a pintod server is listening.

--nocolor

Do not colorize diagnostic messages according to severity.

--password PASS
-p PASS

The password to use for server authentication. This is only relevant if using a remote repository. If the PASS is "-" then you will be prompted for a password.

--quiet
-q

Report only fatal errors. This option silently overrides the --verbose options.

--username NAME
-u NAME

The username to user for server authentication. This is only relevant if using a remote repository. Defaults to your current login.

--verbose
-v

Display more diagnostic messages. This switch can be repeated multiple times for greater effect.

COMMANDS

pinto supports several commands that perform various operations on your repository, or report information about your repository. To get a listing of all the available commands:

  $> pinto commands

Each command has its own options and arguments. To get a brief summary:

  $> pinto help COMMAND

To see the complete manual for a command:

  $> pinto manual COMMAND

CONFIGURATION

The .pinto/config directory of every repository contains a configuration file named pinto.ini. This file will be generated for you whenever you create a new repository. Thereafter, it is up to you to manually adjust the configuration file as you see fit.

The configuration file is in the typical INI-file format. Parameters are NAME = VALUE pairs. Blank lines are ignored, leading and trailing whitespace is discarded. Comments start with a semi-colon (;).

log_level = debug|notice|info|warn|error

Sets the minimum logging level for the repository's log file. The default is notice. This is independent of the screen logs that pinto emits.

sources = URL [ URL URL ... ]

A space-delimited list of the URLs of the repositories that pinto will pull dependencies from. These could be public CPAN mirrors, the BackPAN, a private CPAN::Mini mirror, or other Pinto repositories. Defaults to http://cpan.perl.org.

IMPORTANT NOTE

pinto is just a front-end. To do anything useful, you'll also need to install one of the back-ends, which ship separately. If you need to create new repositories and/or work directly with repositories on the local disk, then install Pinto. If you already have a repository on a remote host that is running pintod, then install Pinto::Remote. If you're not sure what you need, then install Task::Pinto to get the whole kit.

SEE ALSO

Pinto::Manual for general information on using Pinto.

pintod to allow remote access to your Pinto repository.

AUTHOR

Jeffrey Thalhammer <jeff@imaginative-software.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Imaginative Software Systems.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.