App::DocKnot::Dist(3pm) | User Contributed Perl Documentation | App::DocKnot::Dist(3pm) |
App::DocKnot::Dist - Prepare a distribution tarball
use App::DocKnot::Dist; my $docknot = App::DocKnot::Dist->new({ distdir => '/path/to/dist' }); $docknot->make_distribution();
Git, Perl 5.24 or later, and the modules File::BaseDir, File::ShareDir, Git::Repository, IO::Compress::Xz (part of IO-Compress-Lzma), IO::Uncompress::Gunzip (part of IO-Compress), IPC::Run, IPC::System::Simple, Kwalify, List::SomeUtils, Path::Tiny, and YAML::XS, all of which are available from CPAN.
The tools to build whatever type of software distribution is being prepared are also required, since the distribution is built and tested as part of preparing the tarball.
To sign distribution tarballs, the GnuPG command-line program gpg is required. (Any version, either GnuPG v1 or GnuPG v2, should work.)
This component of DocKnot generates distribution tarballs for a package. This is a bit of an odd inclusion in the DocKnot suite, since it's not about generating documentation, but it uses the same configuration and metadata as the rest of DocKnot.
Specifically, App::DocKnot::Dist exports the current branch from Git into a separate working directory, runs the commands appropriate to create a distribution (based on the build system configured in the package metadata), and cleans up the working directory.
This method is provided primarily for testing convenience and is normally just an implementation detail of make_distribution().
This method is provided primarily for testing convenience and is normally just an implementation detail of make_distribution().
If "destdir" already contains a subdirectory whose name matches the "tarname" of the distribution, it will be forcibly removed. In order to successfully remove trees that result from Automake's "make distcheck" failing partway through, App::DocKnot::Dist will change permissions as needed to remove an existing directory. For security reasons, the "distdir" parameter of this module should therefore only be pointed to a trusted directory, not one where an attacker could have written files.
If the native distribution tarball generation commands for the package generate a gzip-compressed tarball but not an xz-compressed tarball, an xz-compressed tarball will be created.
After the distribution is created, check_dist() will be run on it. If any files are missing from the distribution, they will be reported to standard output and then an exception will be thrown.
If the "pgp_key" constructor parameter or global configuration option is set, the generated tarballs will then be signed with that key, using gpg. The generated signature will be armored and stored in a file named by appending ".asc" to the name of the tarball.
Russ Allbery <rra@cpan.org>
Copyright 2019-2022 Russ Allbery <rra@cpan.org>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
docknot(1), App::DocKnot::Config
This module is part of the App-DocKnot distribution. The current version of DocKnot is available from CPAN, or directly from its web site at <https://www.eyrie.org/~eagle/software/docknot/>.
2022-01-20 | perl v5.32.1 |