App::Pinto::Command::pull(3pm) | User Contributed Perl Documentation | App::Pinto::Command::pull(3pm) |
App::Pinto::Command::pull - pull archives from upstream repositories
version 0.14
pinto --root=REPOSITORY_ROOT pull [OPTIONS] TARGET ...
This command locates packages in your upstream repositories and then pulls the distributions providing those packages into your repository and registers them on a stack. Then it recursively locates and pulls all the distributions that are necessary to satisfy their prerequisites. You can also request to directly pull particular distributions.
When locating packages, Pinto first looks at the packages that already exist in the local repository, then Pinto looks at the packages that are available on the upstream repositories.
Arguments are the targets that you want to pull. Targets can be specified as packages (with or without a version specification) or as distributions. Targets can be expressed in a number of ways, so please see "TARGETS" below for more information.
You can also pipe arguments to this command over STDIN. In that case, blank lines and lines that look like comments (i.e. starting with "#" or ';') will be ignored.
When searching for a package (or one of its prerequisites), always take the latest satisfactory version of the package found amongst all the upstream repositories, rather than just taking the first satisfactory version that is found. Remember that Pinto only searches the upstream repositories when the local repository does not already contain a satisfactory version of the package.
The default style is "concise". However, the default style can changed by setting the "PINTO_DIFF_STYLE" environment variable to your preferred STYLE. This variable affects the default style for diff reports generated by all other commands too.
Normally, failure to pull a target (or its prerequisites) causes the command to immediately abort and rollback the changes to the repository. But if "--no-fail" is set, then only the changes caused by the failed target (and its prerequisites) will be rolled back and the command will continue processing the remaining targets.
This option is useful if you want to throw a list of targets into a repository and see which ones are problematic. Once you've fixed the broken ones, you can throw the whole list at the repository again.
Skip any prerequisite with name PACKAGE if a satisfactory version cannot be found. However, a warning will be given whenever this occurrs. This option only has effect when recursively fetching prerequisites for the targets (See also the "--recurse" option). This option can be repeated.
Skips all missing prerequisites if a satisfactory version cannot be found. However, a warning will be given whenever this occurrs. This option will silently override the "--skip-missing-prerequisite" option and only has effect when recursively fetching prerequisites for the targets (See also the "--recurse" option).
Targets are a compact notation that identifies the things you want to pull into your repository. Targets come in two flavors: package targets and distribution targets.
A package target consists of a package name and (optionally) a version specification. Here are some examples:
Foo::Bar # Any version of Foo::Bar Foo::Bar~1.2 # Foo::Bar version 1.2 or higher Foo::Bar==1.2 # Only version 1.2 of Foo::Bar Foo::Bar<1,2!=1.3,<=1.9 # Complex version range
Package names are case-sensitive, and the version specification must follow the format used by CPAN::Meta::Requirements. All whitespace within the target will be discarded. If your version specification contains any special shell characters, take care to quote or escape them in your command.
In all cases, pinto queries the local repository and then each upstream repository in order, and pulls the first distribution it can find that provides a package which satisfies the version specification.
A distribution target consists of an author ID, zero or more subdirectories, and the distribution name and version number. This corresponds to the actual path where the distribution archive lives in the repository or CPAN mirror. Here are some examples.
SHAKESPEARE/King-Lear-1.2.tar.gz # A specific distribution SHAKESPEARE/tragedies/Hamlet-4.2.tar.gz # Same, but with a subdirectory
The author ID will always be forced to uppercase, but the reset of the path is case-sensitive.
PAUSE <http://pause.perl.org> has no strict rules on how packages are versioned. It is quite common to see a package with the same verison number (or no version at all) in many releases of a distribution. So when you specify a package target with a precise version or version range, what you actually get is the latest distribution (chronologically) that has a package which satisfies the target. Most of the time this works out fine because you usally pull the "main module" of the distribution and authors always increment that version in each release.
Since most CPAN mirrors only report the latest version of a package they have, they often cannot satisfy package targets that have a precise version specification. However, the mirror at <http://cpan.stratopan.com> is special and can locate a precise version of any package.
Package targets always resolve to production releases, unless you specify a precise developer release version (e.g. "Foo::Bar==1.03_01"). But since most CPAN mirrors do not index developer releases, this only works when using the mirror at <http://cpan.stratopan.com>. However, you can usually pull a developer release from any mirror by using a distribution target. Remember that developer releases are those with an underscore in the version number.
For repositories created with Pinto version 0.098 or later, the first upstream source is "http://cpan.stratopan.com" (unless you configure it otherwise). For repositories created with older versions, you can manually add "http://cpan.stratopan.com" to the "sources" parameter in the configuration file located at .pinto/config/pinto.ini within the repository.
Jeffrey Ryan Thalhammer <jeff@stratopan.com>
This software is copyright (c) 2015 by Jeffrey Ryan Thalhammer.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-10-16 | perl v5.34.0 |