logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

App::DocKnot::Release - Release a distribution tarball

Author

       Russ Allbery <rra@cpan.org>

Class Methods

       new(ARGS)
           Create  a  new  App::DocKnot::Release  object.  This should be used for all subsequent actions.  ARGS
           should be a hash reference with one or more of the following keys:

           archivedir
               The release area into which to put the distribution tarball.  The current  distribution  will  be
               put  in  a  subdirectory named after the "distribution.section" key in the package configuration.
               Older versions will be moved to the ARCHIVE subdirectory of archivedir.  Required if not  set  in
               the global configuration file.

           distdir
               The  directory  from  which  to  get the new distribution tarball, normally generated by "docknot
               dist".  The latest version in this directory will be used.  Required if not  set  in  the  global
               configuration file.

           metadata
               The  path  to  the  metadata  for  the  package  on which to operate.  Default: docs/docknot.yaml
               relative to the current directory.

Description

       This component of DocKnot releases a distribution tarball (normally created by "docknot dist" or
       App::DocKnot::Dist), maintains a software distribution directory, and updates a version and release date
       database.

Instance Methods

release()
           Copy the distribution tarball (in multiple formats, with PGP signatures) into a release area, updates
           symlink pointing to the latest version, and move any old release to an archive area.

           If "versions" is set in the global configuration file, updates the .versions file found at that  path
           with the new release version and release date.  See App::DocKnot::Spin::Versions for more information
           about .versions files.

Name

       App::DocKnot::Release - Release a distribution tarball

Requirements

       Perl 5.24 or later and the modules File::BaseDir, File::ShareDir, Git::Repository, Path::Tiny, and
       YAML::XS, all of which are available from CPAN.

See Also

docknot(1), App::DocKnot::Config, App::DocKnot::Dist, App::DocKnot::Spin::Versions

       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/>.

perl v5.38.2                                       2024-07-14                         App::DocKnot::Release(3pm)

Synopsis

           use App::DocKnot::Release;
           my $docknot = App::DocKnot::Release->new();
           $docknot->release();

See Also