Dist-Zilla-Plugin-Git-2.051/000770 000766 000024 00000000000 14633614203 015724 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/Makefile_git.PL000644 000766 000024 00000003173 14633614203 020550 0ustar00etherstaff000000 000000 # # This file is part of Dist-Zilla-Plugin-Git # # This software is copyright (c) 2009 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # # this section comes from Makefile.git.PL and is inserted into Makefile.PL # Git 1.5.4 introduced the --exclude-standard option to git ls-files, # which Git::Check needs to work properly. use version; my $need_version = version->parse('1.5.4'); eval { my $git_version = `git --version` or die "Unable to execute git\n"; $git_version =~ /git \s+ version \s* ( \d+ (?: \.\d+ )+ )( [-.]rc\d+)?/x or die "Unable to determine git version\n"; my $rc = $2 || ''; $git_version = version->parse("$1"); die "git $need_version or later required, you have $git_version$rc\n" if $git_version < $need_version or $git_version == $need_version and $rc; 1; } or do { print $@; if (parse_args()->{FORCE_INSTALL}) { print "FORCE_INSTALL specified, attempting to install anyway.\n"; } else { print <<"END MESSAGE"; \nDist::Zilla::Plugin::Git requires git $need_version or later in your PATH, and it wasn't found. If you want to install anyway, run PERL_MM_OPT=FORCE_INSTALL $^X Makefile.PL END MESSAGE exit 0; # Indicate missing non-Perl prerequisite } # end else not FORCE_INSTALL }; # end do when Git prerequisite is not met sub parse_args { require ExtUtils::MakeMaker; require Text::ParseWords; ExtUtils::MakeMaker::parse_args( my $tmp = {}, Text::ParseWords::shellwords($ENV{PERL_MM_OPT} || ''), @ARGV, ); return $tmp->{ARGS} || {}; } Dist-Zilla-Plugin-Git-2.051/INSTALL000644 000766 000024 00000004662 14633614203 016770 0ustar00etherstaff000000 000000 This is the Perl distribution Dist-Zilla-Plugin-Git. Installing Dist-Zilla-Plugin-Git is straightforward. ## Installation with cpanm If you have cpanm, you only need one line: % cpanm Dist::Zilla::Plugin::Git If it does not have permission to install modules to the current perl, cpanm will automatically set up and install to a local::lib in your home directory. See the local::lib documentation (https://metacpan.org/pod/local::lib) for details on enabling it in your environment. ## Installing with the CPAN shell Alternatively, if your CPAN shell is set up, you should just be able to do: % cpan Dist::Zilla::Plugin::Git ## Manual installation As a last resort, you can manually install it. If you have not already downloaded the release tarball, you can find the download link on the module's MetaCPAN page: https://metacpan.org/pod/Dist::Zilla::Plugin::Git Untar the tarball, install configure prerequisites (see below), then build it: % perl Makefile.PL % make && make test Then install it: % make install On Windows platforms, you should use `dmake` or `nmake`, instead of `make`. If your perl is system-managed, you can create a local::lib in your home directory to install modules to. For details, see the local::lib documentation: https://metacpan.org/pod/local::lib The prerequisites of this distribution will also have to be installed manually. The prerequisites are listed in one of the files: `MYMETA.yml` or `MYMETA.json` generated by running the manual build process described above. ## Configure Prerequisites This distribution requires other modules to be installed before this distribution's installer can be run. They can be found under the "configure_requires" key of META.yml or the "{prereqs}{configure}{requires}" key of META.json. ## Other Prerequisites This distribution may require additional modules to be installed after running Makefile.PL. Look for prerequisites in the following phases: * to run make, PHASE = build * to use the module code itself, PHASE = runtime * to run tests, PHASE = test They can all be found in the "PHASE_requires" key of MYMETA.yml or the "{prereqs}{PHASE}{requires}" key of MYMETA.json. ## Documentation Dist-Zilla-Plugin-Git documentation is available as POD. You can run `perldoc` from a shell to read the documentation: % perldoc Dist::Zilla::Plugin::Git For more information on installing Perl modules via CPAN, please see: https://www.cpan.org/modules/INSTALL.html Dist-Zilla-Plugin-Git-2.051/CONTRIBUTING000644 000766 000024 00000010677 14633614203 017574 0ustar00etherstaff000000 000000 CONTRIBUTING Thank you for considering contributing to this distribution. This file contains instructions that will help you work with the source code. PLEASE NOTE that if you have any questions or difficulties, you can reach the maintainer(s) through the bug queue described later in this document (preferred), or by emailing the releaser directly. You are not required to follow any of the steps in this document to submit a patch or bug report; these are just recommendations, intended to help you (and help us help you faster). This distribution has a TODO file in the repository; you may want to check there to see if your issue or patch idea is mentioned. The distribution is managed with Dist::Zilla (https://metacpan.org/release/Dist-Zilla). This means than many of the usual files you might expect are not in the repository, but are generated at release time (e.g. Makefile.PL). However, you can run tests directly using the 'prove' tool: $ prove -l $ prove -lv t/some_test_file.t $ prove -lvr t/ In most cases, 'prove' is entirely sufficient for you to test any patches you have. You may need to satisfy some dependencies. The easiest way to satisfy dependencies is to install the last release -- this is available at https://metacpan.org/release/Dist-Zilla-Plugin-Git If you use cpanminus, you can do it without downloading the tarball first: $ cpanm --reinstall --installdeps --with-recommends Dist::Zilla::Plugin::Git Dist::Zilla is a very powerful authoring tool, but requires a number of author-specific plugins. If you would like to use it for contributing, install it from CPAN, then run one of the following commands, depending on your CPAN client: $ cpan `dzil authordeps --missing` or $ dzil authordeps --missing | cpanm You should then also install any additional requirements not needed by the dzil build but may be needed by tests or other development: $ cpan `dzil listdeps --author --missing` or $ dzil listdeps --author --missing | cpanm Or, you can use the 'dzil stale' command to install all requirements at once: $ cpan Dist::Zilla::App::Command::stale $ cpan `dzil stale --all` or $ cpanm Dist::Zilla::App::Command::stale $ dzil stale --all | cpanm You can also do this via cpanm directly: $ cpanm --reinstall --installdeps --with-develop --with-recommends Dist::Zilla::Plugin::Git Once installed, here are some dzil commands you might try: $ dzil build $ dzil test $ dzil test --release $ dzil xtest $ dzil listdeps --json $ dzil build --notgz You can learn more about Dist::Zilla at http://dzil.org/. The code for this distribution is hosted at GitHub. The repository is: https://github.com/karenetheridge/Dist-Zilla-Plugin-Git You can submit code changes by forking the repository, pushing your code changes to your clone, and then submitting a pull request. Please include a suitable end-user-oriented entry in the Changes file describing your change. Detailed instructions for doing that is available here: https://help.github.com/articles/creating-a-pull-request All pull requests for this distribution will be automatically tested on Linux by Travis at: https://travis-ci.com/karenetheridge/Dist-Zilla-Plugin-Git Results will be visible in the pull request on GitHub. Follow the appropriate links for details when tests fail. Changes will not be mergeable until all tests pass. Generated files such as README, CONTRIBUTING, Makefile.PL, LICENSE etc should *not* be included in your pull request, as they will be updated automatically during the next release. If you have found a bug, but do not have an accompanying patch to fix it, you can submit an issue report here: https://rt.cpan.org/Public/Dist/Display.html?Name=Dist-Zilla-Plugin-Git or via email: bug-Dist-Zilla-Plugin-Git@rt.cpan.org There is also a mailing list available for users of this distribution, at http://dzil.org/#mailing-list There is also an irc channel available for users of this distribution, at irc://irc.perl.org/#distzilla If you send me a patch or pull request, your name and email address will be included in the documentation as a contributor (using the attribution on the commit or patch), unless you specifically request for it not to be. If you wish to be listed under a different name or address, you should submit a pull request to the .mailmap file to contain the correct mapping. This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.015 from a template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.163. Dist-Zilla-Plugin-Git-2.051/Changes000640 000766 000024 00000050745 14633614203 017231 0ustar00etherstaff000000 000000 Revision history for Dist::Zilla::Plugin::Git 2.051 2024-06-16 16:53:20Z - skip some tests if git version is not new enough 2.050 2024-06-15 00:02:39Z - [Git::Push] now only pushes annotated and reachable tags (such as a release tag just created by [Git::Tag]), rather than all tags 2.049 2023-12-31 00:04:38Z - fixed implementation of 'push_url' in [Git::Init] (Mikko Koivunalho, PR#6) - new 'stage' option in [Git::Init], to control whether minted files are included in the initial commit (Mikko Koivunalho, PR#7) - amend [Git::GatherDir] docs to not duplicate documentation for attributes inherited from [GatherDir] (ether) - amend [Git::Init] docs to reference init.defaultBranch, not master (ether) - fix warning about disregarded [Git::GatherDir] configs (ether) - support the 'prune_directory' config in [Git::GatherDir] (ether) 2.048 2021-07-10 01:26:31Z - added 'push_url' config option to cause Git::Init to configure a separate url to push to with 'git remote set-url --push' (Curtis Jewell) 2.047 2020-09-12 22:00:12Z - added 'signoff' config option to cause Git::Commit to pass --signoff to git-commit (Sean Whitton, RT#57925, PR#3) - explicitly set the 'master' branch name in tests (Michael McClimon, PR#4) - [Git::GatherDir] now warns on the use of unused [GatherDir] configs 2.046 2019-03-17 01:16:52Z - added %V format code for the version number with the leading 'v' stripped off, if it exists. - changed the default format strings to use 'v%V' rather than 'v%v' for better compatibility with v1.2.3 form version numbers. - convert from MooseX::Types to Types::Standard 2.045 2018-06-03 19:28:19Z - fix possible failure in 2.044: zilla->root is not a Path::Tiny with older Dist::Zilla versions 2.044 2018-06-03 01:37:38Z - fix for Dist::Zilla 7: ensure that the proper directory is used as the base for the repo root and .gitnxtver_cache. 2.043 2017-12-10 00:49:29Z - replace uses of File::HomeDir with a simple glob() 2.042 2017-05-12 16:29:18Z - remove spaces from config data dumped to META, which parses badly on older YAML decoders in the toolchain 2.041 2016-11-16 03:36:23Z - log the git version *properly* into metadata (thanks so much to Dan Book for noticing so quickly!) 2.040 2016-11-16 03:23:50Z - fix tests to no longer rely on . being in @INC - update tests to remove all uses of Test::Fatal::lives_ok - the git version used during the packaging is now logged into the metadata for the built distribution 2.039 2016-05-25 04:17:42Z - no changes since last release 2.038 2016-04-28 04:15:25Z (TRIAL RELEASE) - fix Makefile.PL for when git is not installed or too old 2.037 2016-04-24 23:14:59Z (TRIAL RELEASE) - remove remaining uses of List::MoreUtils (Karen Etheridge) - remove last vestiges of Path::Class, for Dist::Zilla v6 compatibility 2.036 2015-07-04 19:11:06+0200 Europe/Paris - keep dumped configs consistent between builds (Karen Etheridge - github#25) - use MooseX::Types in all modules (Karen Etheridge - github#25) 2.035 2015-06-06 21:50:20+0200 Europe/Paris - handle push.default=nothing by specifying current branch explicitly (christopher madsen, reported by Alastair McGowan-Douglas - github#24) 2.034 2015-05-23 17:41:32+0200 Europe/Paris - replace List::AllUtils with List::MoreUtils (christopher madsen) - don't "use List::MoreUtils" in tests (Karen Etheridge - github#23) 2.033 2015-04-04 21:05:13+0200 Europe/Paris - no functional changes (but note Git::GatherDir change in 2.032-TRIAL) - rewrite documentation to make it clear which plugins are part of @Git (christopher madsen, reported by Kent Fredric - RT#101911) 2.032 2015-03-28 21:38:59+0100 Europe/Paris (TRIAL RELEASE) - rewrite Git::GatherDir to handle non-default root properly. It now supports "~user/" as well as "~/". (christopher madsen, reported by Karen Etheridge - RT#101851) - clear GPG_* environment variables to make tests more robust (christopher madsen) 2.031 2015-03-21 21:56:38+0100 Europe/Paris - no functional changes - tests that check Git version parse versions like 1.9.5.msysgit.0 correctly 2.030 2015-02-28 20:43:24+0100 Europe/Paris - no functional changes - make tests more robust by setting GIT_CONFIG_NOSYSTEM (christopher madsen, reported by Dylan Cali - RT#102287) 2.029 2014-12-21 22:23:24+0100 Europe/Paris - don't "use Moose::Autobox" (Dist::Zilla doesn't use it anymore) (Karen Etheridge - github#22) 2.028 2014-11-30 05:48:59+0100 Europe/Paris - no functional changes - make tests more robust when GIT_* environment variables are set (christopher madsen) 2.027 2014-11-29 21:09:02+0100 Europe/Paris - unify string formatting code into Dist::Zilla::Role::Git::StringFormatter This allows you to use %c (the changelog entry) with Git::Tag. (christopher madsen, suggested by Doug Bell - RT#99990) 2.026 2014-11-22 17:35:45+0100 Europe/Paris - don't "use MooseX::AttributeShortcuts" (wasn't actually using its features) (christopher madsen, suggested by Karen Etheridge - RT#100498) 2.025 2014-10-11 19:05:56 Europe/Paris - add build_warnings option to Git::Check (christopher madsen, suggested by Karen Etheridge - RT#91057) 2.024 2014-09-13 21:21:42 Europe/Paris - add branch option to Git::Init (tuomas jormola - github#21) - Git::Init now logs when it makes the initial commit 2.023 2014-06-14 18:32:30 Europe/Paris - no functional changes - warn that Dist::Zilla::App::CommandHelper::ChainSmoking <= 1.04 is broken (Karen Etheridge - github#20) 2.022 2014-04-19 20:29:22 Europe/Paris - use MX:Path::Tiny Paths type to catch config issues at startup (Kent fredric - github#18 & christopher madsen) - prune files using the prune_file method (Karen Etheridge - github#19) 2.021 2014-04-12 06:01:53 Europe/Paris - add support for MetaConfig (Karen Etheridge - github#17) - fix tests to work on Windows (christopher madsen) 2.020 2014-02-15 20:22:29 Europe/Paris - convert from Path::Class to Path::Tiny (Kent fredric - github#16) - better documentation for allow_dirty_match (christopher madsen, requested by Karen Etheridge) 2.019 2013-11-23 20:49:27 Europe/Paris - fix #90537: wide character in print with ::Commit With Dist::Zilla 5, Git::Commit now writes the commit message in UTF-8 (christopher madsen, reported by Kent fredric) 2.018 2013-11-02 23:24:33 Europe/Paris (TRIAL RELEASE) - use the Config::Git plugin for shared configuration (brendan byrd) You don't have to use Dist::Zilla::Plugin::Config::Git unless you want to, but you do have to install it. 2.017 2013-10-26 19:57:59 Europe/Paris - remove use of deprecated Class::MOP function (Karen Etheridge) - make Git::CommitBuild compatible with Dist::Zilla 5 (Kent fredric, Karen Etheridge, & christopher madsen) 2.016 2013-10-19 18:27:32 Europe/Paris - fix exclude_filename to not match partial paths (Karen Etheridge) If you really intended to match a partial path, use exclude_match instead. - documentation typo fixed in Git::NextVersion (David Steinbrunner) 2.015 2013-07-06 21:14:09 Europe/Paris - bail out of Build.PL unless git 1.5.4 or later is found (christopher madsen) - prevent warnings about chdir(undef) in tests (christopher madsen) 2.014 2013-06-22 17:50:26 Europe/Paris - fix RT#86251 - version-by-branch.t fails with Git 1.8.3 The output of "git rev-list" changed slightly, and this broke Git::NextVersion when using version_by_branch=1. (christopher madsen, reported by zak elep) 2.013 2013-04-13 20:25:39 Europe/Paris - fix RT#84491 - Git::GatherDir does not handle symlinks Symlinks to directories used to make it crash with a cryptic error. It now skips them with a warning, and this is documented. (christopher madsen, reported by Karen Etheridge) - mention Git::GatherDir in Git (christopher madsen, reported by kevin dawson) 2.012 2013-03-27 00:41:08 Europe/Paris - add commit option to Git::Init (tatsuhiko miyagawa) 2.011 2013-03-23 16:19:52 Europe/Paris - fix compatibility with Git::Wrapper 0.028_96 (Don't pass Path::Class objects to Git::Wrapper) (christopher madsen) 2.010 2013-03-16 16:34:22 Europe/Paris - fix RT#83891 - Git::CommitBuild commits non-build files Git::CommitBuild now writes a fresh copy of the built tree to commit, instead of using one that may have been modified by other plugins (Kent fredric & christopher madsen) 2.009 2013-02-08 06:03:33 Europe/Paris - add allow_dirty_match option to Git::Check and Git::Commit (Graham Knop) - change version-by-branch.t to use HEAD~1 instead of HEAD^ Should fix test failure on Windows. (christopher madsen) - Test::Fatal 0.006 or better has been required since 2.007, but that wasn't explicit (christopher madsen, reported by Jonathan Leto) 2.008 2013-01-31 04:06:00 Europe/Paris - fix bug introduced in Git::Push 2.007 that broke remotes with additional parameters (christopher madsen) 2.007 2013-01-26 18:51:24 Europe/Paris - fix RT#82873 - Git::Push should check the remote exists New remotes_must_exist option defaults to true. (christopher madsen, suggested by Olivier Mengué) - switch from Test::Exception to Test::Fatal (christopher madsen) - load some dependencies only when needed (RT#82956) (christopher madsen, suggested by Olivier Mengué) 2.006 2012-12-29 23:17:39 Europe/Paris - document that the include_untracked option of Git::GatherDir requires Git 1.5.4, but has certain issues before Git 1.6.5.2. Adjust tests to skip when necessary. (christopher madsen) - set push.default matching in test config (christopher madsen) Otherwise Git for Windows 1.8.0 hangs in push-multi.t (thanks to christian walde for reporting the issue) 2.005 2012-12-08 22:03:15 Europe/Paris - avoid creating named type constraints (Chris Weyl & christopher madsen) 2.004 2012-12-01 19:58:59 Europe/Paris - improve Git::Commit's parsing of the Changes file (christopher madsen) Blank lines following the version line are no longer included in the commit message. It can now find the current version even if followed by a -TRIAL indicator. It now reads the Changes file that was shipped with the dist, not the one currently on disk. - fix include_untracked option of Git::GatherDir to work with Git 1.5.4.3 (christopher madsen) 2.003 2012-11-19 01:30:29 Europe/Paris - add multiple_inheritance option to Git::CommitBuild (Yanick Champoux) - change version-extraction.t to catch the bug in RT#81061 (christopher madsen with help from Matthew Horsfall) 2.002 2012-11-09 20:59:37 Europe/Paris - fix RT#81061 - Git::NextVersion parsing all versions as 0 (christopher madsen) - add debug-level logging to Git::NextVersion (christopher madsen) 2.001 2012-10-07 23:03:42 Europe/Paris - fix tests to work on Perl 5.12 and older (christopher madsen) 2.000 2012-10-07 06:33:29 Europe/Paris - Despite the version number, this is *not* a major release, just a new numbering scheme. Git::NextVersion now generates the version number. - fix tests to work on windows (christopher madsen) - add t::Util to consolidate common test functions (christopher madsen) 1.122770 2012-10-03 04:28:36 Europe/Paris - fix RT#76703 - add version_by_branch option to Git::NextVersion (christopher madsen) - Git::NextVersion now aborts release if version is duplicated (christopher madsen) - add include_untracked option to Git::GatherDir (christopher madsen) - add untracked_files option to Git::Check (christopher madsen) - Dist::Zilla::Role::Git::Repo now provides the git method (christopher madsen) 1.122530 2012-09-09 03:56:01 Europe/Paris - Git::CommitBuild requires Path::Class 0.22 to get dir->basename (christopher madsen) - Git::GatherDir requires Dist::Zilla 4.200016 to get exclude_filename and exclude_match in GatherDir (christopher madsen) - fix tests to use "git add -f" instead of "git add --force" for compatibility with older versions of Git (christopher madsen) - add 000-report-git-version.t for debugging (christopher madsen) 1.122460 2012-09-02 02:35:25 Europe/Paris - fix RT#78898 - allow_dirty should not be a regex (christopher madsen) This was an unintended side-effect of the fix for gh#19 in 1.113220 add tests to check.t so it doesn't recur 1.121820 2012-06-30 05:36:52 Europe/Paris - require File::Path 2.07 to get make_path (thanks for failing reports, CPAN Testers!) 1.121811 2012-06-29 17:25:42 Europe/Paris - fix an interpolation error that broke CommitBuild 1.121810 2012-06-29 03:01:01 Europe/Paris - uniq the list of files returned by `git ls-files` 1.121800 2012-06-28 04:03:06 Europe/Paris - Require a newer Git::Wrapper for better portability 1.121770 2012-06-25 16:47:30 Europe/Paris - CommitBuild: add missing module 1.121750 2012-06-23 19:03:47 Europe/Paris - CommitBuild: Add build to git directly, bypassing the index (chris weyl) 1.121010 2012-04-10 16:47:39 Europe/Paris - updated Git::GatherDir plugin to support everything DZ's own GatherDir does 1.120970 2012-04-06 08:56:03 Europe/Paris - new plugin GatherDir (geoffrey broadwell, ricardo signes) 1.120860 2012-03-26 12:18:38 Europe/Paris - fix tag-signed.t test on windows (Olivier Mengué) 1.120370 2012-02-06 09:32:58 Europe/Paris - split version-tags finding logic into own attribute (chris weyl) 1.113560 2011-12-22 09:47:39 Europe/Paris - make test pass with Archive::Tar:Wrapper (Randy Stauner) - clean up commit message (Randy Stauner) 1.113220 2011-11-18 09:12:51 Europe/Paris - fix gh#19 - allow to specify alternate repository root (Mike Friedman) 1.112510 2011-09-08 13:45:01 Europe/Paris - fix RT#70805 - remove unneeded tmp directory in tarball 1.112500 2011-09-07 08:49:06 Europe/Paris - fix RT#70742 - tests fail if gpg isn't installed (Mike Doherty) 1.112440 2011-09-01 13:26:02 Europe/Paris - fix gh#16 - unset git env variables for tag_signed.t 1.112380 2011-08-26 10:41:50 Europe/Paris - fix RT##55647 - support signed tags (Mike Doherty) - moved all test corpus to corpus/ - renamed tests to remove leading number 1.112070 2011-07-26 08:46:42 Europe/Paris - fix gh#13 - supplying default git config 1.112060 2011-07-25 10:25:29 Europe/Paris - fix RT#66705 - localization of HOME in tests - fix RT#69616 & RT#69701 - make dzp-git work with Git::Wrapper 0.015 1.111590 2011-06-08 09:43:35 Europe/Paris - mocks HOME to avoid test failures (David Golden) 1.111460 2011-05-26 14:37:08 Europe/Paris - fix RT#68474 - Git::NextVersion assumes all tags are version-related (rob@hoelz.ro) 1.110500 2011-02-19 12:43:19 Europe/Paris - add 'add_files_in' to Commit so you can commit an entire dir (Apocalypse) If you need the same concept for Check please let us know! 1.110480 2011-02-17 18:03:06 Europe/Paris - CommitBuild support for release_message (nigel metheringham) - Also supports %v & %t format tags, more appropriate for message on commit build of the released package (nigel metheringham) 1.110330 2011-02-02 10:36:33 Europe/Paris - fix RT#62484 - add a link to Git::NextVersion in main documentation 1.103520 2010-12-18 09:45:57 Europe/Paris - fix Commit so %t actually works (christopher madsen) 1.103500 2010-12-16 11:44:32 Europe/Paris - add config & remote options to Init (christopher madsen) 1.103470 2010-12-13 17:32:36 Europe/Paris - add time_zone option to Tag & Commit (christopher madsen) It now defaults to your local time. Previous versions always used UTC. - Tag & Commit accept %t to indicate trial release status (christopher madsen) - NextVersion resets $/ to guard against misbehaving plugins (alan young) 1.102810 2010-10-08 18:01:32 Europe/Paris - add Git::NextVersion adapted from BumpVersionFromGit (daGolden) 1.102430 2010-08-31 17:12:24 Europe/Paris - fix RT#60740 - allow retrieval of applied tag in git (Matt Follett) 1.102380 2010-08-26 09:39:33 Europe/Paris - fix hang on windows (alexandr ciornii) 1.102090 2010-07-28 14:12:20 Europe/Paris - initialize a working git config in all tests 1.102040 2010-07-23 10:45:23 Europe/Paris - fix RT#59587 - cache buildroot to commit on master, not release branch (yanick champoux) 1.102020 2010-07-21 09:00:46 Europe/Paris - fix RT#59586 - there should be no release branch by default for Git::CommitBuild warning: this changes behaviour of Git::CommitBuild 1.102010 2010-07-20 11:00:36 Europe/Paris - fix RT#59505 - support for unstable git versions in push test skips 1.101801 2010-06-29 19:00:13 Europe/Paris - fix RT#56485 - skip push tests for old git versions 1.101800 2010-06-29 18:36:17 Europe/Paris - Git::CommitBuild - new release_branch option to commit result after a release (yanick champoux) - Git::Tag - tag can be applied to a different branch (yanick champoux) - fix RT#58876 - pod description out of date 1.101680 2010-06-17 17:17:07 Europe/Paris - fix RT#58431 - remove Git.pm prereq, use Git::Wrapper (yanick champoux) 1.101650 2010-06-14 16:08:41 Europe/Paris - basic aftermint plugin to git init while dzil new (jesse luehrs) - build commits have their original branch as parent (yanick champoux) 1.101330 2010-05-13 19:27:39 Europe/Paris - Git::Commit recognizes another changelog format (David Golden) 1.101270 2010-05-07 16:56:27 Europe/Paris - fix Brian's name in this file (sorry Brian!) - make CommitBuild log error when build commit fails (michael schout) 1.101230 2010-05-03 17:10:17 Europe/Paris - support for committing results of build in a separate branch (Brian Phillips) - fix test error appearing in weird git configs / setups 1.100970 2010-04-07 08:54:46 Europe/Paris - simplify multi-value args for @Git (christopher madsen) - Require Dist::Zilla 2 (1.100900 needed DZ2, but didn't say so) 1.100960 2010-04-06 16:59:50 Europe/Paris - allow pushing to a different branch (Graham Barr) - allow multi-value args for @git (Graham Barr) - switch to dist-zilla-tester framework for tests (Ricardo Signes) 1.100900 2010-03-31 10:04:49 Europe/Paris - use a method modifier to set mvp_multivalue_args in Role::Git::DirtyFiles (This is required by Dist::Zilla 2.) (christopher madsen) 1.100760 2010-03-17 10:16:56 Europe/Paris - add a BeforeRelease check in Tag to prevent re-releases (christopher madsen) - Commit and Push now pass Git's output to log_debug (christopher madsen) 1.100750 2010-03-16 16:25:56 Europe/Paris - actually use commit_msg (christopher madsen) - Push now logs before pushing (christopher madsen) 1.100741 2010-03-15 18:48:31 Europe/Paris - documentation fix for new push_to param 1.100740 2010-03-15 17:28:12 Europe/Paris - WARNING: parameter "filename" renamed to "changelog" - let commit message include whitespace to next unindented line (David Golden) - set up remote tracking branch during push testing (David Golden) - remove unnecessary 'filename' arg from Push (David Golden) - add 'push_to' argument to Push for multi-repo pushes (David Golden) - give back user possibility to create lightweight tag, default remains annotated tags (christopher madsen) - allow user to change commit message (christopher madsen) - allow user to specify files allowed to be dirty for check & commit (christopher madsen) - refactored allow_dirty in DZ:Role:Git:DirtyFiles (christopher madsen) 1.100690 2010-03-10 13:20:37 Europe/Paris - fix tests to work even when no global git config exists - refactored commit message generation (christopher madsen) 1.100681 2010-03-09 17:26:14 Europe/Paris - bumping minimum dzil version requirement 1.100680 2010-03-09 17:07:45 Europe/Paris - using annotated tags instead of lightweight tags (RT#55352) - minor pod update 1.100660 2010-03-07 13:41:39 Europe/Paris - fix tests to work with git 1.7.0 - fix tests to work with current Dist::Zilla (Ricardo Signes) - provide shorter plugin names to bundle contents (Ricardo Signes) 1.100430 2010-02-12 13:11:39 Europe/Paris - WARNING: no more Makefile.PL supplied, only a Build.PL - using Path::Class in the tests 1.093410 2009-12-07 09:13:07 Europe/Paris - require File::Path 2.07 for remove_tree 1.093300 2009-11-26 11:02:22 Europe/Paris - new param tag_format for DZP:Git:Tag (Ricardo Signes) 1.093260 2009-11-22 11:35:00 Europe/Paris - using internal release command instead of spawning external dzil 1.093250 2009-11-21 18:35:55 Europe/Paris - split plugin in DZP::Git::* (Check, Commit, Tag, Push) - providing a plugin bundle for all git plugins 1.093240 2009-11-20 18:36:28 Europe/Paris - original release - git checks before release: index clean, working copy too, no untracked files - git actions after release: commit changelog, tag, push Dist-Zilla-Plugin-Git-2.051/corpus/000770 000766 000024 00000000000 14633614203 017237 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/MANIFEST000644 000766 000024 00000004743 14633614203 017070 0ustar00etherstaff000000 000000 # This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.032. AUTHOR_PLEDGE CONTRIBUTING Changes INSTALL LICENCE MANIFEST MANIFEST.SKIP META.json META.yml Makefile.PL Makefile_git.PL README corpus/check/Changes corpus/check/foobar corpus/commit-build-custom/Changes corpus/commit-build-custom/dist.ini corpus/commit-build-src-as-parent/Changes corpus/commit-build-src-as-parent/dist.ini corpus/commit-build/Changes corpus/commit-build/dist.ini corpus/commit-dirtydir/Changes corpus/commit-dirtydir/dist.ini corpus/commit-signoff/Changes corpus/commit-signoff/dist.ini corpus/commit-ws/Changes corpus/commit-ws/dist.ini corpus/commit/Changes corpus/commit/dist.ini corpus/dzp-git.pub corpus/dzp-git.sec corpus/gatherdir/lib/DZT/Sample.pm corpus/push-gitconfig/Changes corpus/push-gitconfig/dist.ini corpus/push-multi/Changes corpus/push-multi/dist.ini corpus/push/Changes corpus/push/dist.ini corpus/repo-dir/Changes corpus/repo-dir/dist.ini corpus/tag-signed/Changes corpus/tag-signed/dist.ini corpus/tag/Changes corpus/tag/dist.ini corpus/version-default/Changes corpus/version-default/dist.ini corpus/version-default/foobar corpus/version-regexp/Changes corpus/version-regexp/dist.ini corpus/version-regexp/foobar dist.ini lib/Dist/Zilla/Plugin/Git.pm lib/Dist/Zilla/Plugin/Git/Check.pm lib/Dist/Zilla/Plugin/Git/Commit.pm lib/Dist/Zilla/Plugin/Git/CommitBuild.pm lib/Dist/Zilla/Plugin/Git/GatherDir.pm lib/Dist/Zilla/Plugin/Git/Init.pm lib/Dist/Zilla/Plugin/Git/NextVersion.pm lib/Dist/Zilla/Plugin/Git/Push.pm lib/Dist/Zilla/Plugin/Git/Tag.pm lib/Dist/Zilla/PluginBundle/Git.pm lib/Dist/Zilla/Role/Git/DirtyFiles.pm lib/Dist/Zilla/Role/Git/Repo.pm lib/Dist/Zilla/Role/Git/StringFormatter.pm t/00-report-prereqs.dd t/00-report-prereqs.t t/000-report-git-version.t t/check.t t/commit-build-custom.t t/commit-build-src-as-parent.t t/commit-build.t t/commit-dirtydir.t t/commit-message.t t/commit-signoff.t t/commit-utf8.t t/commit-ws.t t/commit.t t/gatherdir-multi.t t/gatherdir.t t/lib/Dist/Zilla/Plugin/MyTestArchiver.pm t/lib/Util.pm t/push-gitconfig.t t/push-multi.t t/push.t t/repo-dir.t t/tag-signed.t t/tag.t t/version-by-branch.t t/version-default.t t/version-extraction.t t/version-regexp.t t/zzz-check-breaks.t xt/author/00-compile.t xt/author/clean-namespaces.t xt/author/distmeta.t xt/author/eol.t xt/author/kwalitee.t xt/author/minimum-version.t xt/author/mojibake.t xt/author/pod-coverage.t xt/author/pod-syntax.t xt/author/portability.t xt/release/changes_has_content.t xt/release/cpan-changes.t Dist-Zilla-Plugin-Git-2.051/AUTHOR_PLEDGE000644 000766 000024 00000001051 14633614203 017671 0ustar00etherstaff000000 000000 # CPAN Covenant for Dist-Zilla-Plugin-Git I, Jerome Quelin, hereby give modules@perl.org permission to grant co-maintainership to Dist-Zilla-Plugin-Git, if all the following conditions are met: (1) I haven't released the module for a year or more (2) There are outstanding issues in the module's public bug tracker (3) Email to my CPAN email address hasn't been answered after a month (4) The requester wants to make worthwhile changes that will benefit CPAN In the event of my death, then the time-limits in (1) and (3) do not apply. Dist-Zilla-Plugin-Git-2.051/t/000770 000766 000024 00000000000 14633614203 016167 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/xt/000770 000766 000024 00000000000 14633614203 016357 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/README000644 000766 000024 00000000600 14633614203 016603 0ustar00etherstaff000000 000000 This archive contains the distribution Dist-Zilla-Plugin-Git, version 2.051: Update your git repository after release This software is copyright (c) 2009 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. This README file was generated by Dist::Zilla::Plugin::Readme v6.032. Dist-Zilla-Plugin-Git-2.051/MANIFEST.SKIP000644 000766 000024 00000000144 14633614203 017624 0ustar00etherstaff000000 000000 ~$ \$$ ^\# ^blib/ \bcjm_ ^pm_to_blib$ ^Dist-Zilla-Plugin-Git-\d ^_build\b ^Build$ ^Build.bat$ ^tmp/ Dist-Zilla-Plugin-Git-2.051/META.yml000644 000766 000024 00000073713 14633614203 017213 0ustar00etherstaff000000 000000 --- abstract: 'Update your git repository after release' author: - 'Jerome Quelin' build_requires: CPAN::Meta::Check: '0.011' CPAN::Meta::Requirements: '0' Dist::Zilla::File::InMemory: '0' Dist::Zilla::Plugin::Config::Git: '0' Dist::Zilla::Role::Releaser: '0' Dist::Zilla::Tester: '0' Encode: '0' Exporter: '0' ExtUtils::MakeMaker: '0' File::Copy: '0' File::Copy::Recursive: '0' File::Path: '2.07' File::Spec: '0' File::Which: '0' File::pushd: '0' Log::Dispatchouli: '0' Test::DZil: '0' Test::Fatal: '0' Test::More: '0.88' lib: '0' perl: '5.010' utf8: '0' configure_requires: ExtUtils::MakeMaker: '0' Text::ParseWords: '0' perl: '5.010' version: '0' dynamic_config: 0 generated_by: 'Dist::Zilla version 6.032, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: '1.4' name: Dist-Zilla-Plugin-Git no_index: directory: - corpus - t - xt provides: Dist::Zilla::Plugin::Git: file: lib/Dist/Zilla/Plugin/Git.pm version: '2.051' Dist::Zilla::Plugin::Git::Check: file: lib/Dist/Zilla/Plugin/Git/Check.pm version: '2.051' Dist::Zilla::Plugin::Git::Commit: file: lib/Dist/Zilla/Plugin/Git/Commit.pm version: '2.051' Dist::Zilla::Plugin::Git::CommitBuild: file: lib/Dist/Zilla/Plugin/Git/CommitBuild.pm version: '2.051' Dist::Zilla::Plugin::Git::GatherDir: file: lib/Dist/Zilla/Plugin/Git/GatherDir.pm version: '2.051' Dist::Zilla::Plugin::Git::Init: file: lib/Dist/Zilla/Plugin/Git/Init.pm version: '2.051' Dist::Zilla::Plugin::Git::NextVersion: file: lib/Dist/Zilla/Plugin/Git/NextVersion.pm version: '2.051' Dist::Zilla::Plugin::Git::Push: file: lib/Dist/Zilla/Plugin/Git/Push.pm version: '2.051' Dist::Zilla::Plugin::Git::Tag: file: lib/Dist/Zilla/Plugin/Git/Tag.pm version: '2.051' Dist::Zilla::PluginBundle::Git: file: lib/Dist/Zilla/PluginBundle/Git.pm version: '2.051' Dist::Zilla::Role::Git::DirtyFiles: file: lib/Dist/Zilla/Role/Git/DirtyFiles.pm version: '2.051' Dist::Zilla::Role::Git::Repo: file: lib/Dist/Zilla/Role/Git/Repo.pm version: '2.051' Dist::Zilla::Role::Git::StringFormatter: file: lib/Dist/Zilla/Role/Git/StringFormatter.pm version: '2.051' requires: Cwd: '0' DateTime: '0' Dist::Zilla: '4' Dist::Zilla::Plugin::GatherDir: '4.200016' Dist::Zilla::Role::AfterBuild: '0' Dist::Zilla::Role::AfterMint: '0' Dist::Zilla::Role::AfterRelease: '0' Dist::Zilla::Role::BeforeRelease: '0' Dist::Zilla::Role::FilePruner: '0' Dist::Zilla::Role::GitConfig: '0' Dist::Zilla::Role::PluginBundle: '0' Dist::Zilla::Role::VersionProvider: '0' File::Spec::Functions: '0' File::Temp: '0' File::chdir: '0' Git::Wrapper: '0.021' IPC::Open3: '0' IPC::System::Simple: '0' List::Util: '1.45' Module::Runtime: '0' Moose: '0' Moose::Role: '0' MooseX::Has::Sugar: '0' Path::Tiny: '0.048' String::Formatter: '0' Try::Tiny: '0' Type::Utils: '0' Types::Path::Tiny: '0' Types::Standard: '0' Version::Next: '0' constant: '0' namespace::autoclean: '0.09' perl: '5.010' strict: '0' version: '0.80' warnings: '0' resources: IRC: irc://irc.perl.org/#distzilla MailingList: http://dzil.org/#mailing-list bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Dist-Zilla-Plugin-Git homepage: https://github.com/karenetheridge/Dist-Zilla-Plugin-Git repository: https://github.com/karenetheridge/Dist-Zilla-Plugin-Git.git version: '2.051' x_Dist_Zilla: perl: version: '5.040000' plugins: - class: Dist::Zilla::Plugin::Bootstrap::lib config: Dist::Zilla::Role::Bootstrap: $Dist::Zilla::Role::Bootstrap::VERSION: '1.001004' distname: Dist-Zilla-Plugin-Git fallback: 1 try_built: ~ try_built_method: mtime name: Bootstrap::lib version: '1.001002' - class: Dist::Zilla::Plugin::Prereqs config: Dist::Zilla::Plugin::Prereqs: phase: develop type: recommends name: '@Author::ETHER/pluginbundle version' version: '6.032' - class: Dist::Zilla::Plugin::PromptIfStale config: Dist::Zilla::Plugin::PromptIfStale: check_all_plugins: 0 check_all_prereqs: 0 modules: - Dist::Zilla::PluginBundle::Author::ETHER phase: build run_under_travis: 0 skip: [] name: '@Author::ETHER/stale modules, build' version: '0.060' - class: Dist::Zilla::Plugin::FileFinder::ByName name: '@Author::ETHER/Examples' version: '6.032' - class: Dist::Zilla::Plugin::Git::GatherDir config: Dist::Zilla::Plugin::GatherDir: exclude_filename: - CONTRIBUTING - INSTALL - LICENCE - README.pod - TODO exclude_match: [] include_dotfiles: 0 prefix: '' prune_directory: [] root: . Dist::Zilla::Plugin::Git::GatherDir: include_untracked: 0 name: '@Author::ETHER/Git::GatherDir' version: '2.051' - class: Dist::Zilla::Plugin::MetaYAML name: '@Author::ETHER/MetaYAML' version: '6.032' - class: Dist::Zilla::Plugin::MetaJSON name: '@Author::ETHER/MetaJSON' version: '6.032' - class: Dist::Zilla::Plugin::Readme name: '@Author::ETHER/Readme' version: '6.032' - class: Dist::Zilla::Plugin::Manifest name: '@Author::ETHER/Manifest' version: '6.032' - class: Dist::Zilla::Plugin::License name: '@Author::ETHER/License' version: '6.032' - class: Dist::Zilla::Plugin::GenerateFile::FromShareDir config: Dist::Zilla::Plugin::GenerateFile::FromShareDir: destination_filename: CONTRIBUTING dist: Dist-Zilla-PluginBundle-Author-ETHER encoding: UTF-8 has_xs: 0 location: build source_filename: CONTRIBUTING Dist::Zilla::Role::RepoFileInjector: allow_overwrite: 1 repo_root: . version: '0.009' name: '@Author::ETHER/generate CONTRIBUTING' version: '0.015' - class: Dist::Zilla::Plugin::InstallGuide config: Dist::Zilla::Role::ModuleMetadata: Module::Metadata: '1.000038' version: '0.006' name: '@Author::ETHER/InstallGuide' version: '1.200014' - class: Dist::Zilla::Plugin::Test::Compile config: Dist::Zilla::Plugin::Test::Compile: bail_out_on_fail: 1 fail_on_warning: author fake_home: 0 filename: xt/author/00-compile.t module_finder: - ':InstallModules' needs_display: 0 phase: develop script_finder: - ':PerlExecFiles' - '@Author::ETHER/Examples' skips: [] switch: [] name: '@Author::ETHER/Test::Compile' version: '2.058' - class: Dist::Zilla::Plugin::Test::EOL config: Dist::Zilla::Plugin::Test::EOL: filename: xt/author/eol.t finder: - ':ExecFiles' - ':ExtraTestFiles' - ':InstallModules' - ':TestFiles' - '@Author::ETHER/Examples' trailing_whitespace: 1 name: '@Author::ETHER/Test::EOL' version: '0.19' - class: Dist::Zilla::Plugin::MetaTests name: '@Author::ETHER/MetaTests' version: '6.032' - class: Dist::Zilla::Plugin::Test::CPAN::Changes config: Dist::Zilla::Plugin::Test::CPAN::Changes: changelog: Changes name: '@Author::ETHER/Test::CPAN::Changes' version: '0.012' - class: Dist::Zilla::Plugin::Test::ChangesHasContent name: '@Author::ETHER/Test::ChangesHasContent' version: '0.011' - class: Dist::Zilla::Plugin::Test::MinimumVersion config: Dist::Zilla::Plugin::Test::MinimumVersion: max_target_perl: '5.010' name: '@Author::ETHER/Test::MinimumVersion' version: '2.000010' - class: Dist::Zilla::Plugin::PodSyntaxTests name: '@Author::ETHER/PodSyntaxTests' version: '6.032' - class: Dist::Zilla::Plugin::PodCoverageTests name: '@Author::ETHER/PodCoverageTests' version: '6.032' - class: Dist::Zilla::Plugin::Test::Kwalitee config: Dist::Zilla::Plugin::Test::Kwalitee: filename: xt/author/kwalitee.t skiptest: [] name: '@Author::ETHER/Test::Kwalitee' version: '2.12' - class: Dist::Zilla::Plugin::MojibakeTests name: '@Author::ETHER/MojibakeTests' version: '0.8' - class: Dist::Zilla::Plugin::Test::ReportPrereqs name: '@Author::ETHER/Test::ReportPrereqs' version: '0.029' - class: Dist::Zilla::Plugin::Test::Portability config: Dist::Zilla::Plugin::Test::Portability: options: '' name: '@Author::ETHER/Test::Portability' version: '2.001001' - class: Dist::Zilla::Plugin::Test::CleanNamespaces config: Dist::Zilla::Plugin::Test::CleanNamespaces: filename: xt/author/clean-namespaces.t skips: [] name: '@Author::ETHER/Test::CleanNamespaces' version: '0.006' - class: Dist::Zilla::Plugin::Git::Describe name: '@Author::ETHER/Git::Describe' version: '0.008' - class: Dist::Zilla::Plugin::PodWeaver config: Dist::Zilla::Plugin::PodWeaver: config_plugins: - '@Author::ETHER' finder: - ':InstallModules' - ':PerlExecFiles' plugins: - class: Pod::Weaver::Plugin::EnsurePod5 name: '@Author::ETHER/EnsurePod5' version: '4.020' - class: Pod::Weaver::Plugin::H1Nester name: '@Author::ETHER/H1Nester' version: '4.020' - class: Pod::Weaver::Plugin::SingleEncoding name: '@Author::ETHER/SingleEncoding' version: '4.020' - class: Pod::Weaver::Plugin::Transformer name: '@Author::ETHER/List' version: '4.020' - class: Pod::Weaver::Plugin::Transformer name: '@Author::ETHER/Verbatim' version: '4.020' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/header' version: '4.020' - class: Pod::Weaver::Section::Name name: '@Author::ETHER/Name' version: '4.020' - class: Pod::Weaver::Section::Version name: '@Author::ETHER/Version' version: '4.020' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/prelude' version: '4.020' - class: Pod::Weaver::Section::Generic name: SYNOPSIS version: '4.020' - class: Pod::Weaver::Section::Generic name: DESCRIPTION version: '4.020' - class: Pod::Weaver::Section::Generic name: OVERVIEW version: '4.020' - class: Pod::Weaver::Section::Collect name: ATTRIBUTES version: '4.020' - class: Pod::Weaver::Section::Collect name: METHODS version: '4.020' - class: Pod::Weaver::Section::Collect name: FUNCTIONS version: '4.020' - class: Pod::Weaver::Section::Collect name: TYPES version: '4.020' - class: Pod::Weaver::Section::Leftovers name: '@Author::ETHER/Leftovers' version: '4.020' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/postlude' version: '4.020' - class: Pod::Weaver::Section::GenerateSection name: '@Author::ETHER/generate SUPPORT' version: '4.020' - class: Pod::Weaver::Section::Authors name: '@Author::ETHER/Authors' version: '4.020' - class: Pod::Weaver::Section::AllowOverride name: '@Author::ETHER/allow override AUTHOR' version: '0.05' - class: Pod::Weaver::Section::Contributors name: '@Author::ETHER/Contributors' version: '0.009' - class: Pod::Weaver::Section::Legal name: '@Author::ETHER/Legal' version: '4.020' - class: Pod::Weaver::Section::Region name: '@Author::ETHER/footer' version: '4.020' name: '@Author::ETHER/PodWeaver' version: '4.010' - class: Dist::Zilla::Plugin::GithubMeta name: '@Author::ETHER/GithubMeta' version: '0.58' - class: Dist::Zilla::Plugin::AutoMetaResources name: '@Author::ETHER/AutoMetaResources' version: '1.21' - class: Dist::Zilla::Plugin::Authority name: '@Author::ETHER/Authority' version: '1.009' - class: Dist::Zilla::Plugin::MetaNoIndex name: '@Author::ETHER/MetaNoIndex' version: '6.032' - class: Dist::Zilla::Plugin::MetaProvides::Package config: Dist::Zilla::Plugin::MetaProvides::Package: finder: - ':InstallModules' finder_objects: - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' version: '6.032' include_underscores: 0 Dist::Zilla::Role::MetaProvider::Provider: $Dist::Zilla::Role::MetaProvider::Provider::VERSION: '2.002004' inherit_missing: 0 inherit_version: 0 meta_noindex: 1 Dist::Zilla::Role::ModuleMetadata: Module::Metadata: '1.000038' version: '0.006' name: '@Author::ETHER/MetaProvides::Package' version: '2.004003' - class: Dist::Zilla::Plugin::MetaConfig name: '@Author::ETHER/MetaConfig' version: '6.032' - class: Dist::Zilla::Plugin::Keywords config: Dist::Zilla::Plugin::Keywords: keywords: [] name: '@Author::ETHER/Keywords' version: '0.007' - class: Dist::Zilla::Plugin::UseUnsafeInc config: Dist::Zilla::Plugin::UseUnsafeInc: dot_in_INC: 0 name: '@Author::ETHER/UseUnsafeInc' version: '0.002' - class: Dist::Zilla::Plugin::AutoPrereqs name: '@Author::ETHER/AutoPrereqs' version: '6.032' - class: Dist::Zilla::Plugin::Prereqs::AuthorDeps name: '@Author::ETHER/Prereqs::AuthorDeps' version: '0.007' - class: Dist::Zilla::Plugin::MinimumPerl name: '@Author::ETHER/MinimumPerl' version: '1.006' - class: Dist::Zilla::Plugin::Git::Contributors config: Dist::Zilla::Plugin::Git::Contributors: git_version: 2.45.2 include_authors: 0 include_releaser: 1 order_by: commits paths: [] name: '@Author::ETHER/Git::Contributors' version: '0.037' - class: Dist::Zilla::Plugin::StaticInstall config: Dist::Zilla::Plugin::StaticInstall: dry_run: 0 mode: auto name: '@Author::ETHER/StaticInstall' version: '0.012' - class: Dist::Zilla::Plugin::RunExtraTests config: Dist::Zilla::Role::TestRunner: default_jobs: 9 name: '@Author::ETHER/RunExtraTests' version: '0.029' - class: Dist::Zilla::Plugin::CheckSelfDependency config: Dist::Zilla::Plugin::CheckSelfDependency: finder: - ':InstallModules' Dist::Zilla::Role::ModuleMetadata: Module::Metadata: '1.000038' version: '0.006' name: '@Author::ETHER/CheckSelfDependency' version: '0.011' - class: Dist::Zilla::Plugin::Run::AfterBuild config: Dist::Zilla::Plugin::Run::Role::Runner: fatal_errors: 1 quiet: 1 run: - "bash -c \"test -e .ackrc && grep -q -- '--ignore-dir=.latest' .ackrc || echo '--ignore-dir=.latest' >> .ackrc; if [[ `dirname '%d'` != .build ]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo '--ignore-dir=%d' >> .ackrc; fi\"" version: '0.050' name: '@Author::ETHER/.ackrc' version: '0.050' - class: Dist::Zilla::Plugin::Run::AfterBuild config: Dist::Zilla::Plugin::Run::Role::Runner: eval: - "if ('%d' =~ /^%n-[.[:xdigit:]]+$/) { unlink '.latest'; symlink '%d', '.latest'; }" fatal_errors: 0 quiet: 1 version: '0.050' name: '@Author::ETHER/.latest' version: '0.050' - class: Dist::Zilla::Plugin::CheckStrictVersion name: '@Author::ETHER/CheckStrictVersion' version: '0.001' - class: Dist::Zilla::Plugin::CheckMetaResources name: '@Author::ETHER/CheckMetaResources' version: '0.001' - class: Dist::Zilla::Plugin::EnsureLatestPerl config: Dist::Zilla::Plugin::EnsureLatestPerl: Module::CoreList: '5.20240609' name: '@Author::ETHER/EnsureLatestPerl' version: '0.010' - class: Dist::Zilla::Plugin::PromptIfStale config: Dist::Zilla::Plugin::PromptIfStale: check_all_plugins: 1 check_all_prereqs: 1 modules: [] phase: release run_under_travis: 0 skip: [] name: '@Author::ETHER/stale modules, release' version: '0.060' - class: Dist::Zilla::Plugin::Git::Check config: Dist::Zilla::Plugin::Git::Check: untracked_files: die Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: [] allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: git_version: 2.45.2 repo_root: . name: '@Author::ETHER/initial check' version: '2.051' - class: Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts config: Dist::Zilla::Role::Git::Repo: git_version: 2.45.2 repo_root: . name: '@Author::ETHER/Git::CheckFor::MergeConflicts' version: '0.014' - class: Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch config: Dist::Zilla::Role::Git::Repo: git_version: 2.45.2 repo_root: . name: '@Author::ETHER/Git::CheckFor::CorrectBranch' version: '0.014' - class: Dist::Zilla::Plugin::Git::Remote::Check name: '@Author::ETHER/Git::Remote::Check' version: 0.1.2 - class: Dist::Zilla::Plugin::CheckPrereqsIndexed name: '@Author::ETHER/CheckPrereqsIndexed' version: '0.022' - class: Dist::Zilla::Plugin::TestRelease name: '@Author::ETHER/TestRelease' version: '6.032' - class: Dist::Zilla::Plugin::Git::Check config: Dist::Zilla::Plugin::Git::Check: untracked_files: die Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: [] allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: git_version: 2.45.2 repo_root: . name: '@Author::ETHER/after tests' version: '2.051' - class: Dist::Zilla::Plugin::CheckIssues name: '@Author::ETHER/CheckIssues' version: '0.011' - class: Dist::Zilla::Plugin::UploadToCPAN name: '@Author::ETHER/UploadToCPAN' version: '6.032' - class: Dist::Zilla::Plugin::CopyFilesFromRelease config: Dist::Zilla::Plugin::CopyFilesFromRelease: filename: - CONTRIBUTING - INSTALL - LICENCE - LICENSE - ppport.h match: [] name: '@Author::ETHER/copy generated files' version: '0.007' - class: Dist::Zilla::Plugin::ReadmeAnyFromPod config: Dist::Zilla::Role::FileWatcher: version: '0.006' name: '@Author::ETHER/ReadmeAnyFromPod' version: '0.163250' - class: Dist::Zilla::Plugin::Prereqs config: Dist::Zilla::Plugin::Prereqs: phase: develop type: recommends name: '@Author::ETHER/@Git::VersionManager/pluginbundle version' version: '6.032' - class: Dist::Zilla::Plugin::RewriteVersion::Transitional config: Dist::Zilla::Plugin::RewriteVersion: add_tarball_name: 0 finders: - ':ExecFiles' - ':InstallModules' global: 1 skip_version_provider: 0 Dist::Zilla::Plugin::RewriteVersion::Transitional: {} name: '@Author::ETHER/@Git::VersionManager/RewriteVersion::Transitional' version: '0.009' - class: Dist::Zilla::Plugin::MetaProvides::Update name: '@Author::ETHER/@Git::VersionManager/MetaProvides::Update' version: '0.007' - class: Dist::Zilla::Plugin::CopyFilesFromRelease config: Dist::Zilla::Plugin::CopyFilesFromRelease: filename: - Changes match: [] name: '@Author::ETHER/@Git::VersionManager/CopyFilesFromRelease' version: '0.007' - class: Dist::Zilla::Plugin::Git::Commit config: Dist::Zilla::Plugin::Git::Commit: add_files_in: - . commit_msg: '%N-%v%t%n%n%c' signoff: 0 Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: - CONTRIBUTING - Changes - INSTALL - LICENCE - README.pod allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: git_version: 2.45.2 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/@Git::VersionManager/release snapshot' version: '2.051' - class: Dist::Zilla::Plugin::Git::Tag config: Dist::Zilla::Plugin::Git::Tag: branch: ~ changelog: Changes signed: 0 tag: v2.051 tag_format: v%V tag_message: v%v%t Dist::Zilla::Role::Git::Repo: git_version: 2.45.2 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/@Git::VersionManager/Git::Tag' version: '2.051' - class: Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional config: Dist::Zilla::Plugin::BumpVersionAfterRelease: finders: - ':InstallModules' global: 1 munge_makefile_pl: 1 Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional: {} name: '@Author::ETHER/@Git::VersionManager/BumpVersionAfterRelease::Transitional' version: '0.009' - class: Dist::Zilla::Plugin::NextRelease name: '@Author::ETHER/@Git::VersionManager/NextRelease' version: '6.032' - class: Dist::Zilla::Plugin::Git::Commit config: Dist::Zilla::Plugin::Git::Commit: add_files_in: [] commit_msg: 'increment $VERSION after %v release' signoff: 0 Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: - Build.PL - Changes - Makefile.PL allow_dirty_match: - (?^:^lib/.*\.pm$) changelog: Changes Dist::Zilla::Role::Git::Repo: git_version: 2.45.2 repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Author::ETHER/@Git::VersionManager/post-release commit' version: '2.051' - class: Dist::Zilla::Plugin::Prereqs config: Dist::Zilla::Plugin::Prereqs: phase: x_Dist_Zilla type: requires name: '@Author::ETHER/@Git::VersionManager/prereqs for @Git::VersionManager' version: '6.032' - class: Dist::Zilla::Plugin::Git::Push config: Dist::Zilla::Plugin::Git::Push: push_to: - origin remotes_must_exist: 1 Dist::Zilla::Role::Git::Repo: git_version: 2.45.2 repo_root: . name: '@Author::ETHER/Git::Push' version: '2.051' - class: Dist::Zilla::Plugin::GitHub::Update config: Dist::Zilla::Plugin::GitHub::Update: metacpan: 1 name: '@Author::ETHER/GitHub::Update' version: '0.49' - class: Dist::Zilla::Plugin::Run::AfterRelease config: Dist::Zilla::Plugin::Run::Role::Runner: fatal_errors: 0 quiet: 0 run: - REDACTED version: '0.050' name: '@Author::ETHER/install release' version: '0.050' - class: Dist::Zilla::Plugin::Run::AfterRelease config: Dist::Zilla::Plugin::Run::Role::Runner: eval: - 'print "release complete!\xa"' fatal_errors: 1 quiet: 1 version: '0.050' name: '@Author::ETHER/release complete' version: '0.050' - class: Dist::Zilla::Plugin::ConfirmRelease name: '@Author::ETHER/ConfirmRelease' version: '6.032' - class: Dist::Zilla::Plugin::Prereqs config: Dist::Zilla::Plugin::Prereqs: phase: x_Dist_Zilla type: requires name: '@Author::ETHER/prereqs for @Author::ETHER' version: '6.032' - class: Dist::Zilla::Plugin::MakeMaker::Awesome config: Dist::Zilla::Plugin::MakeMaker: make_path: make version: '6.032' Dist::Zilla::Role::TestRunner: default_jobs: '6' version: '6.032' name: MakeMaker::Awesome version: '0.49' - class: Dist::Zilla::Plugin::Prereqs config: Dist::Zilla::Plugin::Prereqs: phase: configure type: requires name: ConfigureRequires version: '6.032' - class: Dist::Zilla::Plugin::Prereqs config: Dist::Zilla::Plugin::Prereqs: phase: runtime type: requires name: Prereqs version: '6.032' - class: Dist::Zilla::Plugin::Prepender name: Prepender version: '2.004' - class: Dist::Zilla::Plugin::Covenant name: Covenant version: 0.1.2 - class: Dist::Zilla::Plugin::Encoding name: Encoding version: '6.032' - class: Dist::Zilla::Plugin::MetaResources name: MetaResources version: '6.032' - class: Dist::Zilla::Plugin::Breaks name: Breaks version: '0.004' - class: Dist::Zilla::Plugin::Test::CheckBreaks config: Dist::Zilla::Plugin::Test::CheckBreaks: conflicts_module: - Module::Runtime::Conflicts - Moose::Conflicts no_forced_deps: 0 Dist::Zilla::Role::ModuleMetadata: Module::Metadata: '1.000038' version: '0.006' name: Test::CheckBreaks version: '0.019' - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' version: '6.032' - class: Dist::Zilla::Plugin::FinderCode name: ':IncModules' version: '6.032' - class: Dist::Zilla::Plugin::FinderCode name: ':TestFiles' version: '6.032' - class: Dist::Zilla::Plugin::FinderCode name: ':ExtraTestFiles' version: '6.032' - class: Dist::Zilla::Plugin::FinderCode name: ':ExecFiles' version: '6.032' - class: Dist::Zilla::Plugin::FinderCode name: ':PerlExecFiles' version: '6.032' - class: Dist::Zilla::Plugin::FinderCode name: ':ShareFiles' version: '6.032' - class: Dist::Zilla::Plugin::FinderCode name: ':MainModule' version: '6.032' - class: Dist::Zilla::Plugin::FinderCode name: ':AllFiles' version: '6.032' - class: Dist::Zilla::Plugin::FinderCode name: ':NoFiles' version: '6.032' - class: Dist::Zilla::Plugin::VerifyPhases name: '@Author::ETHER/PHASE VERIFICATION' version: '0.016' zilla: class: Dist::Zilla::Dist::Builder config: is_trial: 0 version: '6.032' x_author_pledge: version: 1 x_authority: cpan:JQUELIN x_breaks: Dist::Zilla::App::CommandHelper::ChainSmoking: '<= 1.04' x_contributors: - 'Christopher J. Madsen ' - 'Jérôme Quelin ' - 'Karen Etheridge ' - 'Kent Fredric ' - 'Yanick Champoux ' - 'Ricardo Signes ' - 'David Golden ' - 'Graham Knop ' - 'Mike Friedman ' - 'Chris Weyl ' - 'Stephen R. Scaffidi ' - 'Apocalypse ' - 'Curtis Jewell ' - 'Graham Barr ' - 'Mike Doherty ' - 'Mikko Koivunalho ' - 'Randy Stauner ' - 'Alessandro Ghedini ' - 'Alexandr Ciornii ' - 'Brendan Byrd ' - 'Brian Phillips ' - 'David Steinbrunner ' - 'Geoffrey Broadwell ' - 'Harley Pig ' - 'Jesse Luehrs ' - 'Matt Follett ' - 'Michael McClimon ' - 'Michael Schout ' - 'Nigel Metheringham ' - 'Olivier Mengué ' - 'Sean Whitton ' - 'Tatsuhiko Miyagawa ' - 'Tuomas Jormola ' x_generated_by_perl: v5.40.0 x_serialization_backend: 'YAML::Tiny version 1.74' x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later' x_static_install: 0 x_use_unsafe_inc: 0 Dist-Zilla-Plugin-Git-2.051/lib/000770 000766 000024 00000000000 14633614203 016472 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/Makefile.PL000644 000766 000024 00000013526 14633614203 017710 0ustar00etherstaff000000 000000 # # This file is part of Dist-Zilla-Plugin-Git # # This software is copyright (c) 2009 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # # This Makefile.PL for Dist-Zilla-Plugin-Git was generated by # Dist::Zilla::Plugin::MakeMaker::Awesome 0.49. # Don't edit it but the dist.ini and plugins used to construct it. use strict; use warnings; use 5.010; use ExtUtils::MakeMaker; # this section comes from Makefile.git.PL and is inserted into Makefile.PL # Git 1.5.4 introduced the --exclude-standard option to git ls-files, # which Git::Check needs to work properly. use version; my $need_version = version->parse('1.5.4'); eval { my $git_version = `git --version` or die "Unable to execute git\n"; $git_version =~ /git \s+ version \s* ( \d+ (?: \.\d+ )+ )( [-.]rc\d+)?/x or die "Unable to determine git version\n"; my $rc = $2 || ''; $git_version = version->parse("$1"); die "git $need_version or later required, you have $git_version$rc\n" if $git_version < $need_version or $git_version == $need_version and $rc; 1; } or do { print $@; if (parse_args()->{FORCE_INSTALL}) { print "FORCE_INSTALL specified, attempting to install anyway.\n"; } else { print <<"END MESSAGE"; \nDist::Zilla::Plugin::Git requires git $need_version or later in your PATH, and it wasn't found. If you want to install anyway, run PERL_MM_OPT=FORCE_INSTALL $^X Makefile.PL END MESSAGE exit 0; # Indicate missing non-Perl prerequisite } # end else not FORCE_INSTALL }; # end do when Git prerequisite is not met sub parse_args { require ExtUtils::MakeMaker; require Text::ParseWords; ExtUtils::MakeMaker::parse_args( my $tmp = {}, Text::ParseWords::shellwords($ENV{PERL_MM_OPT} || ''), @ARGV, ); return $tmp->{ARGS} || {}; } my %WriteMakefileArgs = ( "ABSTRACT" => "Update your git repository after release", "AUTHOR" => "Jerome Quelin", "CONFIGURE_REQUIRES" => { "ExtUtils::MakeMaker" => 0, "Text::ParseWords" => 0, "version" => 0 }, "DISTNAME" => "Dist-Zilla-Plugin-Git", "LICENSE" => "perl", "MIN_PERL_VERSION" => "5.010", "NAME" => "Dist::Zilla::Plugin::Git", "PREREQ_PM" => { "Cwd" => 0, "DateTime" => 0, "Dist::Zilla" => 4, "Dist::Zilla::Plugin::GatherDir" => "4.200016", "Dist::Zilla::Role::AfterBuild" => 0, "Dist::Zilla::Role::AfterMint" => 0, "Dist::Zilla::Role::AfterRelease" => 0, "Dist::Zilla::Role::BeforeRelease" => 0, "Dist::Zilla::Role::FilePruner" => 0, "Dist::Zilla::Role::GitConfig" => 0, "Dist::Zilla::Role::PluginBundle" => 0, "Dist::Zilla::Role::VersionProvider" => 0, "File::Spec::Functions" => 0, "File::Temp" => 0, "File::chdir" => 0, "Git::Wrapper" => "0.021", "IPC::Open3" => 0, "IPC::System::Simple" => 0, "List::Util" => "1.45", "Module::Runtime" => 0, "Moose" => 0, "Moose::Role" => 0, "MooseX::Has::Sugar" => 0, "Path::Tiny" => "0.048", "String::Formatter" => 0, "Try::Tiny" => 0, "Type::Utils" => 0, "Types::Path::Tiny" => 0, "Types::Standard" => 0, "Version::Next" => 0, "constant" => 0, "namespace::autoclean" => "0.09", "strict" => 0, "version" => "0.80", "warnings" => 0 }, "TEST_REQUIRES" => { "CPAN::Meta::Check" => "0.011", "CPAN::Meta::Requirements" => 0, "Dist::Zilla::File::InMemory" => 0, "Dist::Zilla::Plugin::Config::Git" => 0, "Dist::Zilla::Role::Releaser" => 0, "Dist::Zilla::Tester" => 0, "Encode" => 0, "Exporter" => 0, "ExtUtils::MakeMaker" => 0, "File::Copy" => 0, "File::Copy::Recursive" => 0, "File::Path" => "2.07", "File::Spec" => 0, "File::Which" => 0, "File::pushd" => 0, "Log::Dispatchouli" => 0, "Test::DZil" => 0, "Test::Fatal" => 0, "Test::More" => "0.88", "lib" => 0, "utf8" => 0 }, "VERSION" => "2.051", "test" => { "TESTS" => "t/*.t" } ); my %FallbackPrereqs = ( "CPAN::Meta::Check" => "0.011", "CPAN::Meta::Requirements" => 0, "Cwd" => 0, "DateTime" => 0, "Dist::Zilla" => 4, "Dist::Zilla::File::InMemory" => 0, "Dist::Zilla::Plugin::Config::Git" => 0, "Dist::Zilla::Plugin::GatherDir" => "4.200016", "Dist::Zilla::Role::AfterBuild" => 0, "Dist::Zilla::Role::AfterMint" => 0, "Dist::Zilla::Role::AfterRelease" => 0, "Dist::Zilla::Role::BeforeRelease" => 0, "Dist::Zilla::Role::FilePruner" => 0, "Dist::Zilla::Role::GitConfig" => 0, "Dist::Zilla::Role::PluginBundle" => 0, "Dist::Zilla::Role::Releaser" => 0, "Dist::Zilla::Role::VersionProvider" => 0, "Dist::Zilla::Tester" => 0, "Encode" => 0, "Exporter" => 0, "ExtUtils::MakeMaker" => 0, "File::Copy" => 0, "File::Copy::Recursive" => 0, "File::Path" => "2.07", "File::Spec" => 0, "File::Spec::Functions" => 0, "File::Temp" => 0, "File::Which" => 0, "File::chdir" => 0, "File::pushd" => 0, "Git::Wrapper" => "0.021", "IPC::Open3" => 0, "IPC::System::Simple" => 0, "List::Util" => "1.45", "Log::Dispatchouli" => 0, "Module::Runtime" => 0, "Moose" => 0, "Moose::Role" => 0, "MooseX::Has::Sugar" => 0, "Path::Tiny" => "0.048", "String::Formatter" => 0, "Test::DZil" => 0, "Test::Fatal" => 0, "Test::More" => "0.88", "Try::Tiny" => 0, "Type::Utils" => 0, "Types::Path::Tiny" => 0, "Types::Standard" => 0, "Version::Next" => 0, "constant" => 0, "lib" => 0, "namespace::autoclean" => "0.09", "strict" => 0, "utf8" => 0, "version" => "0.80", "warnings" => 0 ); unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) { delete $WriteMakefileArgs{TEST_REQUIRES}; delete $WriteMakefileArgs{BUILD_REQUIRES}; $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs; } delete $WriteMakefileArgs{CONFIGURE_REQUIRES} unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs); Dist-Zilla-Plugin-Git-2.051/LICENCE000644 000766 000024 00000046432 14633614203 016725 0ustar00etherstaff000000 000000 This software is copyright (c) 2009 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. Terms of the Perl programming language system itself a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or b) the "Artistic License" --- The GNU General Public License, Version 1, February 1989 --- This software is Copyright (c) 2009 by Jerome Quelin. This is free software, licensed under: The GNU General Public License, Version 1, February 1989 GNU GENERAL PUBLIC LICENSE Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The license agreements of most software companies try to keep users at the mercy of those companies. By contrast, our General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. The General Public License applies to the Free Software Foundation's software and to any other program whose authors commit to using it. You can use it for your programs, too. When we speak of free software, we are referring to freedom, not price. Specifically, the General Public License is designed to make sure that you have the freedom to give away or sell copies of free software, that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of a such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any work containing the Program or a portion of it, either verbatim or with modifications. Each licensee is addressed as "you". 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this General Public License and to the absence of any warranty; and give any other recipients of the Program a copy of this General Public License along with the Program. You may charge a fee for the physical act of transferring a copy. 2. You may modify your copy or copies of the Program or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following: a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and b) cause the whole of any work that you distribute or publish, that in whole or in part contains the Program or any part thereof, either with or without modifications, to be licensed at no charge to all third parties under the terms of this General Public License (except that you may choose to grant warranty protection to some or all third parties, at your option). c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the simplest and most usual way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this General Public License. d) You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. Mere aggregation of another independent work with the Program (or its derivative) on a volume of a storage or distribution medium does not bring the other work under the scope of these terms. 3. You may copy and distribute the Program (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: a) accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, b) accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal charge for the cost of distribution) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or, c) accompany it with the information you received as to where the corresponding source code may be obtained. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form alone.) Source code for a work means the preferred form of the work for making modifications to it. For an executable file, complete source code means all the source code for all modules it contains; but, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs, or for standard header files or definitions files that accompany that operating system. 4. You may not copy, modify, sublicense, distribute or transfer the Program except as expressly provided under this General Public License. Any attempt otherwise to copy, modify, sublicense, distribute or transfer the Program is void, and will automatically terminate your rights to use the Program under this License. However, parties who have received copies, or rights to use copies, from you under this General Public License will not have their licenses terminated so long as such parties remain in full compliance. 5. By copying, distributing or modifying the Program (or any work based on the Program) you indicate your acceptance of this license to do so, and all its terms and conditions. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. 7. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of the license which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the license, you may choose any version ever published by the Free Software Foundation. 8. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to humanity, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19xx name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (a program to direct compilers to make passes at assemblers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice That's all there is to it! --- The Perl Artistic License 1.0 --- This software is Copyright (c) 2009 by Jerome Quelin. This is free software, licensed under: The Perl Artistic License 1.0 The "Artistic License" Preamble The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. Definitions: "Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder as specified below. "Copyright Holder" is whoever is named in the copyright or copyrights for the package. "You" is you, if you're thinking about copying or distributing this Package. "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. 1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. 2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. 3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as uunet.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. b) use the modified Package only within your corporation or organization. c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. d) make other distribution arrangements with the Copyright Holder. 4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. b) accompany the distribution with the machine-readable source of the Package with your modifications. c) give non-standard executables non-standard names, and clearly document the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. d) make other distribution arrangements with the Copyright Holder. 5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. You may embed this Package's interpreter within an executable of yours (by linking); this shall be construed as a mere form of aggregation, provided that the complete Standard Version of the interpreter is so embedded. 6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whoever generated them, and may be sold commercially, and may be aggregated with this Package. If such scripts or library files are aggregated with this Package via the so-called "undump" or "unexec" methods of producing a binary executable image, then distribution of such an image shall neither be construed as a distribution of this Package nor shall it fall under the restrictions of Paragraphs 3 and 4, provided that you do not represent such an executable image as a Standard Version of this Package. 7. C subroutines (or comparably compiled subroutines in other languages) supplied by you and linked into this Package in order to emulate subroutines and variables of the language defined by this Package shall not be considered part of this Package, but are the equivalent of input as in Paragraph 6, provided these subroutines do not change the language in any way that would cause it to fail the regression tests for the language. 8. Aggregation of this Package with a commercial distribution is always permitted provided that the use of this Package is embedded; that is, when no overt attempt is made to make this Package's interfaces visible to the end user of the commercial distribution. Such use shall not be construed as a distribution of this Package. 9. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. The End Dist-Zilla-Plugin-Git-2.051/META.json000644 000766 000024 00000144405 14633614203 017360 0ustar00etherstaff000000 000000 { "abstract" : "Update your git repository after release", "author" : [ "Jerome Quelin" ], "dynamic_config" : 0, "generated_by" : "Dist::Zilla version 6.032, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", "version" : 2 }, "name" : "Dist-Zilla-Plugin-Git", "no_index" : { "directory" : [ "corpus", "t", "xt" ] }, "prereqs" : { "configure" : { "requires" : { "ExtUtils::MakeMaker" : "0", "Text::ParseWords" : "0", "perl" : "5.010", "version" : "0" } }, "develop" : { "recommends" : { "Dist::Zilla::PluginBundle::Author::ETHER" : "0.163", "Dist::Zilla::PluginBundle::Git::VersionManager" : "0.007" }, "requires" : { "Encode" : "0", "File::Spec" : "0", "IO::Handle" : "0", "IPC::Open3" : "0", "Pod::Coverage::TrustPod" : "0", "Test::CPAN::Changes" : "0.19", "Test::CPAN::Meta" : "0", "Test::CleanNamespaces" : "0.15", "Test::EOL" : "0", "Test::Kwalitee" : "1.21", "Test::MinimumVersion" : "0", "Test::Mojibake" : "0", "Test::More" : "0.96", "Test::Pod" : "1.41", "Test::Pod::Coverage" : "1.08", "Test::Portability::Files" : "0" } }, "runtime" : { "requires" : { "Cwd" : "0", "DateTime" : "0", "Dist::Zilla" : "4", "Dist::Zilla::Plugin::GatherDir" : "4.200016", "Dist::Zilla::Role::AfterBuild" : "0", "Dist::Zilla::Role::AfterMint" : "0", "Dist::Zilla::Role::AfterRelease" : "0", "Dist::Zilla::Role::BeforeRelease" : "0", "Dist::Zilla::Role::FilePruner" : "0", "Dist::Zilla::Role::GitConfig" : "0", "Dist::Zilla::Role::PluginBundle" : "0", "Dist::Zilla::Role::VersionProvider" : "0", "File::Spec::Functions" : "0", "File::Temp" : "0", "File::chdir" : "0", "Git::Wrapper" : "0.021", "IPC::Open3" : "0", "IPC::System::Simple" : "0", "List::Util" : "1.45", "Module::Runtime" : "0", "Moose" : "0", "Moose::Role" : "0", "MooseX::Has::Sugar" : "0", "Path::Tiny" : "0.048", "String::Formatter" : "0", "Try::Tiny" : "0", "Type::Utils" : "0", "Types::Path::Tiny" : "0", "Types::Standard" : "0", "Version::Next" : "0", "constant" : "0", "namespace::autoclean" : "0.09", "perl" : "5.010", "strict" : "0", "version" : "0.80", "warnings" : "0" } }, "test" : { "recommends" : { "CPAN::Meta" : "2.120900" }, "requires" : { "CPAN::Meta::Check" : "0.011", "CPAN::Meta::Requirements" : "0", "Dist::Zilla::File::InMemory" : "0", "Dist::Zilla::Plugin::Config::Git" : "0", "Dist::Zilla::Role::Releaser" : "0", "Dist::Zilla::Tester" : "0", "Encode" : "0", "Exporter" : "0", "ExtUtils::MakeMaker" : "0", "File::Copy" : "0", "File::Copy::Recursive" : "0", "File::Path" : "2.07", "File::Spec" : "0", "File::Which" : "0", "File::pushd" : "0", "Log::Dispatchouli" : "0", "Test::DZil" : "0", "Test::Fatal" : "0", "Test::More" : "0.88", "lib" : "0", "perl" : "5.010", "utf8" : "0" } }, "x_Dist_Zilla" : { "requires" : { "Dist::Zilla" : "5", "Dist::Zilla::Plugin::Authority" : "1.009", "Dist::Zilla::Plugin::AutoMetaResources" : "0", "Dist::Zilla::Plugin::AutoPrereqs" : "5.038", "Dist::Zilla::Plugin::Bootstrap::lib" : "0", "Dist::Zilla::Plugin::Breaks" : "0", "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional" : "0.004", "Dist::Zilla::Plugin::CheckIssues" : "0", "Dist::Zilla::Plugin::CheckMetaResources" : "0", "Dist::Zilla::Plugin::CheckPrereqsIndexed" : "0.019", "Dist::Zilla::Plugin::CheckSelfDependency" : "0", "Dist::Zilla::Plugin::CheckStrictVersion" : "0", "Dist::Zilla::Plugin::ConfirmRelease" : "0", "Dist::Zilla::Plugin::CopyFilesFromRelease" : "0", "Dist::Zilla::Plugin::Covenant" : "0", "Dist::Zilla::Plugin::Encoding" : "0", "Dist::Zilla::Plugin::EnsureLatestPerl" : "0", "Dist::Zilla::Plugin::FileFinder::ByName" : "0", "Dist::Zilla::Plugin::GenerateFile::FromShareDir" : "0", "Dist::Zilla::Plugin::Git::Check" : "0", "Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch" : "0.004", "Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts" : "0", "Dist::Zilla::Plugin::Git::Commit" : "2.020", "Dist::Zilla::Plugin::Git::Contributors" : "0.029", "Dist::Zilla::Plugin::Git::Describe" : "0.004", "Dist::Zilla::Plugin::Git::GatherDir" : "2.016", "Dist::Zilla::Plugin::Git::Push" : "0", "Dist::Zilla::Plugin::Git::Remote::Check" : "0", "Dist::Zilla::Plugin::Git::Tag" : "0", "Dist::Zilla::Plugin::GitHub::Update" : "0.40", "Dist::Zilla::Plugin::GithubMeta" : "0.54", "Dist::Zilla::Plugin::InstallGuide" : "1.200005", "Dist::Zilla::Plugin::Keywords" : "0.004", "Dist::Zilla::Plugin::License" : "5.038", "Dist::Zilla::Plugin::MakeMaker::Awesome" : "0.35", "Dist::Zilla::Plugin::Manifest" : "0", "Dist::Zilla::Plugin::MetaConfig" : "0", "Dist::Zilla::Plugin::MetaJSON" : "0", "Dist::Zilla::Plugin::MetaNoIndex" : "0", "Dist::Zilla::Plugin::MetaProvides::Package" : "1.15000002", "Dist::Zilla::Plugin::MetaResources" : "0", "Dist::Zilla::Plugin::MetaTests" : "0", "Dist::Zilla::Plugin::MetaYAML" : "0", "Dist::Zilla::Plugin::MinimumPerl" : "1.006", "Dist::Zilla::Plugin::MojibakeTests" : "0.8", "Dist::Zilla::Plugin::NextRelease" : "5.033", "Dist::Zilla::Plugin::PodCoverageTests" : "5.040", "Dist::Zilla::Plugin::PodSyntaxTests" : "5.040", "Dist::Zilla::Plugin::PodWeaver" : "4.008", "Dist::Zilla::Plugin::Prepender" : "0", "Dist::Zilla::Plugin::Prereqs" : "0", "Dist::Zilla::Plugin::Prereqs::AuthorDeps" : "0.006", "Dist::Zilla::Plugin::PromptIfStale" : "0", "Dist::Zilla::Plugin::Readme" : "0", "Dist::Zilla::Plugin::ReadmeAnyFromPod" : "0.142180", "Dist::Zilla::Plugin::RewriteVersion::Transitional" : "0.006", "Dist::Zilla::Plugin::Run::AfterBuild" : "0.041", "Dist::Zilla::Plugin::Run::AfterRelease" : "0.038", "Dist::Zilla::Plugin::RunExtraTests" : "0.024", "Dist::Zilla::Plugin::StaticInstall" : "0.005", "Dist::Zilla::Plugin::Test::CPAN::Changes" : "0.012", "Dist::Zilla::Plugin::Test::ChangesHasContent" : "0", "Dist::Zilla::Plugin::Test::CheckBreaks" : "0.017", "Dist::Zilla::Plugin::Test::CleanNamespaces" : "0.006", "Dist::Zilla::Plugin::Test::Compile" : "2.039", "Dist::Zilla::Plugin::Test::EOL" : "0.17", "Dist::Zilla::Plugin::Test::Kwalitee" : "2.10", "Dist::Zilla::Plugin::Test::MinimumVersion" : "2.000010", "Dist::Zilla::Plugin::Test::Portability" : "2.000007", "Dist::Zilla::Plugin::Test::ReportPrereqs" : "0.022", "Dist::Zilla::Plugin::TestRelease" : "0", "Dist::Zilla::Plugin::UploadToCPAN" : "0", "Dist::Zilla::Plugin::UseUnsafeInc" : "0", "Dist::Zilla::PluginBundle::Author::ETHER" : "0.119", "Dist::Zilla::PluginBundle::Git::VersionManager" : "0.007", "Software::License::Perl_5" : "0", "Types::Path::Tiny" : "0", "Types::Standard" : "0" } } }, "provides" : { "Dist::Zilla::Plugin::Git" : { "file" : "lib/Dist/Zilla/Plugin/Git.pm", "version" : "2.051" }, "Dist::Zilla::Plugin::Git::Check" : { "file" : "lib/Dist/Zilla/Plugin/Git/Check.pm", "version" : "2.051" }, "Dist::Zilla::Plugin::Git::Commit" : { "file" : "lib/Dist/Zilla/Plugin/Git/Commit.pm", "version" : "2.051" }, "Dist::Zilla::Plugin::Git::CommitBuild" : { "file" : "lib/Dist/Zilla/Plugin/Git/CommitBuild.pm", "version" : "2.051" }, "Dist::Zilla::Plugin::Git::GatherDir" : { "file" : "lib/Dist/Zilla/Plugin/Git/GatherDir.pm", "version" : "2.051" }, "Dist::Zilla::Plugin::Git::Init" : { "file" : "lib/Dist/Zilla/Plugin/Git/Init.pm", "version" : "2.051" }, "Dist::Zilla::Plugin::Git::NextVersion" : { "file" : "lib/Dist/Zilla/Plugin/Git/NextVersion.pm", "version" : "2.051" }, "Dist::Zilla::Plugin::Git::Push" : { "file" : "lib/Dist/Zilla/Plugin/Git/Push.pm", "version" : "2.051" }, "Dist::Zilla::Plugin::Git::Tag" : { "file" : "lib/Dist/Zilla/Plugin/Git/Tag.pm", "version" : "2.051" }, "Dist::Zilla::PluginBundle::Git" : { "file" : "lib/Dist/Zilla/PluginBundle/Git.pm", "version" : "2.051" }, "Dist::Zilla::Role::Git::DirtyFiles" : { "file" : "lib/Dist/Zilla/Role/Git/DirtyFiles.pm", "version" : "2.051" }, "Dist::Zilla::Role::Git::Repo" : { "file" : "lib/Dist/Zilla/Role/Git/Repo.pm", "version" : "2.051" }, "Dist::Zilla::Role::Git::StringFormatter" : { "file" : "lib/Dist/Zilla/Role/Git/StringFormatter.pm", "version" : "2.051" } }, "release_status" : "stable", "resources" : { "bugtracker" : { "mailto" : "bug-Dist-Zilla-Plugin-Git@rt.cpan.org", "web" : "https://rt.cpan.org/Public/Dist/Display.html?Name=Dist-Zilla-Plugin-Git" }, "homepage" : "https://github.com/karenetheridge/Dist-Zilla-Plugin-Git", "repository" : { "type" : "git", "url" : "https://github.com/karenetheridge/Dist-Zilla-Plugin-Git.git", "web" : "https://github.com/karenetheridge/Dist-Zilla-Plugin-Git" }, "x_IRC" : "irc://irc.perl.org/#distzilla", "x_MailingList" : "http://dzil.org/#mailing-list" }, "version" : "2.051", "x_Dist_Zilla" : { "perl" : { "version" : "5.040000" }, "plugins" : [ { "class" : "Dist::Zilla::Plugin::Bootstrap::lib", "config" : { "Dist::Zilla::Role::Bootstrap" : { "$Dist::Zilla::Role::Bootstrap::VERSION" : "1.001004", "distname" : "Dist-Zilla-Plugin-Git", "fallback" : 1, "try_built" : null, "try_built_method" : "mtime" } }, "name" : "Bootstrap::lib", "version" : "1.001002" }, { "class" : "Dist::Zilla::Plugin::Prereqs", "config" : { "Dist::Zilla::Plugin::Prereqs" : { "phase" : "develop", "type" : "recommends" } }, "name" : "@Author::ETHER/pluginbundle version", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::PromptIfStale", "config" : { "Dist::Zilla::Plugin::PromptIfStale" : { "check_all_plugins" : 0, "check_all_prereqs" : 0, "modules" : [ "Dist::Zilla::PluginBundle::Author::ETHER" ], "phase" : "build", "run_under_travis" : 0, "skip" : [] } }, "name" : "@Author::ETHER/stale modules, build", "version" : "0.060" }, { "class" : "Dist::Zilla::Plugin::FileFinder::ByName", "name" : "@Author::ETHER/Examples", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Git::GatherDir", "config" : { "Dist::Zilla::Plugin::GatherDir" : { "exclude_filename" : [ "CONTRIBUTING", "INSTALL", "LICENCE", "README.pod", "TODO" ], "exclude_match" : [], "include_dotfiles" : 0, "prefix" : "", "prune_directory" : [], "root" : "." }, "Dist::Zilla::Plugin::Git::GatherDir" : { "include_untracked" : 0 } }, "name" : "@Author::ETHER/Git::GatherDir", "version" : "2.051" }, { "class" : "Dist::Zilla::Plugin::MetaYAML", "name" : "@Author::ETHER/MetaYAML", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::MetaJSON", "name" : "@Author::ETHER/MetaJSON", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Readme", "name" : "@Author::ETHER/Readme", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Manifest", "name" : "@Author::ETHER/Manifest", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::License", "name" : "@Author::ETHER/License", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::GenerateFile::FromShareDir", "config" : { "Dist::Zilla::Plugin::GenerateFile::FromShareDir" : { "destination_filename" : "CONTRIBUTING", "dist" : "Dist-Zilla-PluginBundle-Author-ETHER", "encoding" : "UTF-8", "has_xs" : 0, "location" : "build", "source_filename" : "CONTRIBUTING" }, "Dist::Zilla::Role::RepoFileInjector" : { "allow_overwrite" : 1, "repo_root" : ".", "version" : "0.009" } }, "name" : "@Author::ETHER/generate CONTRIBUTING", "version" : "0.015" }, { "class" : "Dist::Zilla::Plugin::InstallGuide", "config" : { "Dist::Zilla::Role::ModuleMetadata" : { "Module::Metadata" : "1.000038", "version" : "0.006" } }, "name" : "@Author::ETHER/InstallGuide", "version" : "1.200014" }, { "class" : "Dist::Zilla::Plugin::Test::Compile", "config" : { "Dist::Zilla::Plugin::Test::Compile" : { "bail_out_on_fail" : 1, "fail_on_warning" : "author", "fake_home" : 0, "filename" : "xt/author/00-compile.t", "module_finder" : [ ":InstallModules" ], "needs_display" : 0, "phase" : "develop", "script_finder" : [ ":PerlExecFiles", "@Author::ETHER/Examples" ], "skips" : [], "switch" : [] } }, "name" : "@Author::ETHER/Test::Compile", "version" : "2.058" }, { "class" : "Dist::Zilla::Plugin::Test::EOL", "config" : { "Dist::Zilla::Plugin::Test::EOL" : { "filename" : "xt/author/eol.t", "finder" : [ ":ExecFiles", ":ExtraTestFiles", ":InstallModules", ":TestFiles", "@Author::ETHER/Examples" ], "trailing_whitespace" : 1 } }, "name" : "@Author::ETHER/Test::EOL", "version" : "0.19" }, { "class" : "Dist::Zilla::Plugin::MetaTests", "name" : "@Author::ETHER/MetaTests", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Test::CPAN::Changes", "config" : { "Dist::Zilla::Plugin::Test::CPAN::Changes" : { "changelog" : "Changes" } }, "name" : "@Author::ETHER/Test::CPAN::Changes", "version" : "0.012" }, { "class" : "Dist::Zilla::Plugin::Test::ChangesHasContent", "name" : "@Author::ETHER/Test::ChangesHasContent", "version" : "0.011" }, { "class" : "Dist::Zilla::Plugin::Test::MinimumVersion", "config" : { "Dist::Zilla::Plugin::Test::MinimumVersion" : { "max_target_perl" : "5.010" } }, "name" : "@Author::ETHER/Test::MinimumVersion", "version" : "2.000010" }, { "class" : "Dist::Zilla::Plugin::PodSyntaxTests", "name" : "@Author::ETHER/PodSyntaxTests", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::PodCoverageTests", "name" : "@Author::ETHER/PodCoverageTests", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Test::Kwalitee", "config" : { "Dist::Zilla::Plugin::Test::Kwalitee" : { "filename" : "xt/author/kwalitee.t", "skiptest" : [] } }, "name" : "@Author::ETHER/Test::Kwalitee", "version" : "2.12" }, { "class" : "Dist::Zilla::Plugin::MojibakeTests", "name" : "@Author::ETHER/MojibakeTests", "version" : "0.8" }, { "class" : "Dist::Zilla::Plugin::Test::ReportPrereqs", "name" : "@Author::ETHER/Test::ReportPrereqs", "version" : "0.029" }, { "class" : "Dist::Zilla::Plugin::Test::Portability", "config" : { "Dist::Zilla::Plugin::Test::Portability" : { "options" : "" } }, "name" : "@Author::ETHER/Test::Portability", "version" : "2.001001" }, { "class" : "Dist::Zilla::Plugin::Test::CleanNamespaces", "config" : { "Dist::Zilla::Plugin::Test::CleanNamespaces" : { "filename" : "xt/author/clean-namespaces.t", "skips" : [] } }, "name" : "@Author::ETHER/Test::CleanNamespaces", "version" : "0.006" }, { "class" : "Dist::Zilla::Plugin::Git::Describe", "name" : "@Author::ETHER/Git::Describe", "version" : "0.008" }, { "class" : "Dist::Zilla::Plugin::PodWeaver", "config" : { "Dist::Zilla::Plugin::PodWeaver" : { "config_plugins" : [ "@Author::ETHER" ], "finder" : [ ":InstallModules", ":PerlExecFiles" ], "plugins" : [ { "class" : "Pod::Weaver::Plugin::EnsurePod5", "name" : "@Author::ETHER/EnsurePod5", "version" : "4.020" }, { "class" : "Pod::Weaver::Plugin::H1Nester", "name" : "@Author::ETHER/H1Nester", "version" : "4.020" }, { "class" : "Pod::Weaver::Plugin::SingleEncoding", "name" : "@Author::ETHER/SingleEncoding", "version" : "4.020" }, { "class" : "Pod::Weaver::Plugin::Transformer", "name" : "@Author::ETHER/List", "version" : "4.020" }, { "class" : "Pod::Weaver::Plugin::Transformer", "name" : "@Author::ETHER/Verbatim", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/header", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Name", "name" : "@Author::ETHER/Name", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Version", "name" : "@Author::ETHER/Version", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/prelude", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "SYNOPSIS", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "DESCRIPTION", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "OVERVIEW", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "ATTRIBUTES", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "METHODS", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "FUNCTIONS", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "TYPES", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Leftovers", "name" : "@Author::ETHER/Leftovers", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/postlude", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::GenerateSection", "name" : "@Author::ETHER/generate SUPPORT", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Authors", "name" : "@Author::ETHER/Authors", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::AllowOverride", "name" : "@Author::ETHER/allow override AUTHOR", "version" : "0.05" }, { "class" : "Pod::Weaver::Section::Contributors", "name" : "@Author::ETHER/Contributors", "version" : "0.009" }, { "class" : "Pod::Weaver::Section::Legal", "name" : "@Author::ETHER/Legal", "version" : "4.020" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Author::ETHER/footer", "version" : "4.020" } ] } }, "name" : "@Author::ETHER/PodWeaver", "version" : "4.010" }, { "class" : "Dist::Zilla::Plugin::GithubMeta", "name" : "@Author::ETHER/GithubMeta", "version" : "0.58" }, { "class" : "Dist::Zilla::Plugin::AutoMetaResources", "name" : "@Author::ETHER/AutoMetaResources", "version" : "1.21" }, { "class" : "Dist::Zilla::Plugin::Authority", "name" : "@Author::ETHER/Authority", "version" : "1.009" }, { "class" : "Dist::Zilla::Plugin::MetaNoIndex", "name" : "@Author::ETHER/MetaNoIndex", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::MetaProvides::Package", "config" : { "Dist::Zilla::Plugin::MetaProvides::Package" : { "finder" : [ ":InstallModules" ], "finder_objects" : [ { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", "version" : "6.032" } ], "include_underscores" : 0 }, "Dist::Zilla::Role::MetaProvider::Provider" : { "$Dist::Zilla::Role::MetaProvider::Provider::VERSION" : "2.002004", "inherit_missing" : 0, "inherit_version" : 0, "meta_noindex" : 1 }, "Dist::Zilla::Role::ModuleMetadata" : { "Module::Metadata" : "1.000038", "version" : "0.006" } }, "name" : "@Author::ETHER/MetaProvides::Package", "version" : "2.004003" }, { "class" : "Dist::Zilla::Plugin::MetaConfig", "name" : "@Author::ETHER/MetaConfig", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Keywords", "config" : { "Dist::Zilla::Plugin::Keywords" : { "keywords" : [] } }, "name" : "@Author::ETHER/Keywords", "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::UseUnsafeInc", "config" : { "Dist::Zilla::Plugin::UseUnsafeInc" : { "dot_in_INC" : 0 } }, "name" : "@Author::ETHER/UseUnsafeInc", "version" : "0.002" }, { "class" : "Dist::Zilla::Plugin::AutoPrereqs", "name" : "@Author::ETHER/AutoPrereqs", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Prereqs::AuthorDeps", "name" : "@Author::ETHER/Prereqs::AuthorDeps", "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::MinimumPerl", "name" : "@Author::ETHER/MinimumPerl", "version" : "1.006" }, { "class" : "Dist::Zilla::Plugin::Git::Contributors", "config" : { "Dist::Zilla::Plugin::Git::Contributors" : { "git_version" : "2.45.2", "include_authors" : 0, "include_releaser" : 1, "order_by" : "commits", "paths" : [] } }, "name" : "@Author::ETHER/Git::Contributors", "version" : "0.037" }, { "class" : "Dist::Zilla::Plugin::StaticInstall", "config" : { "Dist::Zilla::Plugin::StaticInstall" : { "dry_run" : 0, "mode" : "auto" } }, "name" : "@Author::ETHER/StaticInstall", "version" : "0.012" }, { "class" : "Dist::Zilla::Plugin::RunExtraTests", "config" : { "Dist::Zilla::Role::TestRunner" : { "default_jobs" : 9 } }, "name" : "@Author::ETHER/RunExtraTests", "version" : "0.029" }, { "class" : "Dist::Zilla::Plugin::CheckSelfDependency", "config" : { "Dist::Zilla::Plugin::CheckSelfDependency" : { "finder" : [ ":InstallModules" ] }, "Dist::Zilla::Role::ModuleMetadata" : { "Module::Metadata" : "1.000038", "version" : "0.006" } }, "name" : "@Author::ETHER/CheckSelfDependency", "version" : "0.011" }, { "class" : "Dist::Zilla::Plugin::Run::AfterBuild", "config" : { "Dist::Zilla::Plugin::Run::Role::Runner" : { "fatal_errors" : 1, "quiet" : 1, "run" : [ "bash -c \"test -e .ackrc && grep -q -- '--ignore-dir=.latest' .ackrc || echo '--ignore-dir=.latest' >> .ackrc; if [[ `dirname '%d'` != .build ]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo '--ignore-dir=%d' >> .ackrc; fi\"" ], "version" : "0.050" } }, "name" : "@Author::ETHER/.ackrc", "version" : "0.050" }, { "class" : "Dist::Zilla::Plugin::Run::AfterBuild", "config" : { "Dist::Zilla::Plugin::Run::Role::Runner" : { "eval" : [ "if ('%d' =~ /^%n-[.[:xdigit:]]+$/) { unlink '.latest'; symlink '%d', '.latest'; }" ], "fatal_errors" : 0, "quiet" : 1, "version" : "0.050" } }, "name" : "@Author::ETHER/.latest", "version" : "0.050" }, { "class" : "Dist::Zilla::Plugin::CheckStrictVersion", "name" : "@Author::ETHER/CheckStrictVersion", "version" : "0.001" }, { "class" : "Dist::Zilla::Plugin::CheckMetaResources", "name" : "@Author::ETHER/CheckMetaResources", "version" : "0.001" }, { "class" : "Dist::Zilla::Plugin::EnsureLatestPerl", "config" : { "Dist::Zilla::Plugin::EnsureLatestPerl" : { "Module::CoreList" : "5.20240609" } }, "name" : "@Author::ETHER/EnsureLatestPerl", "version" : "0.010" }, { "class" : "Dist::Zilla::Plugin::PromptIfStale", "config" : { "Dist::Zilla::Plugin::PromptIfStale" : { "check_all_plugins" : 1, "check_all_prereqs" : 1, "modules" : [], "phase" : "release", "run_under_travis" : 0, "skip" : [] } }, "name" : "@Author::ETHER/stale modules, release", "version" : "0.060" }, { "class" : "Dist::Zilla::Plugin::Git::Check", "config" : { "Dist::Zilla::Plugin::Git::Check" : { "untracked_files" : "die" }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [], "allow_dirty_match" : [], "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.45.2", "repo_root" : "." } }, "name" : "@Author::ETHER/initial check", "version" : "2.051" }, { "class" : "Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts", "config" : { "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.45.2", "repo_root" : "." } }, "name" : "@Author::ETHER/Git::CheckFor::MergeConflicts", "version" : "0.014" }, { "class" : "Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch", "config" : { "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.45.2", "repo_root" : "." } }, "name" : "@Author::ETHER/Git::CheckFor::CorrectBranch", "version" : "0.014" }, { "class" : "Dist::Zilla::Plugin::Git::Remote::Check", "name" : "@Author::ETHER/Git::Remote::Check", "version" : "0.1.2" }, { "class" : "Dist::Zilla::Plugin::CheckPrereqsIndexed", "name" : "@Author::ETHER/CheckPrereqsIndexed", "version" : "0.022" }, { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "@Author::ETHER/TestRelease", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Git::Check", "config" : { "Dist::Zilla::Plugin::Git::Check" : { "untracked_files" : "die" }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [], "allow_dirty_match" : [], "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.45.2", "repo_root" : "." } }, "name" : "@Author::ETHER/after tests", "version" : "2.051" }, { "class" : "Dist::Zilla::Plugin::CheckIssues", "name" : "@Author::ETHER/CheckIssues", "version" : "0.011" }, { "class" : "Dist::Zilla::Plugin::UploadToCPAN", "name" : "@Author::ETHER/UploadToCPAN", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::CopyFilesFromRelease", "config" : { "Dist::Zilla::Plugin::CopyFilesFromRelease" : { "filename" : [ "CONTRIBUTING", "INSTALL", "LICENCE", "LICENSE", "ppport.h" ], "match" : [] } }, "name" : "@Author::ETHER/copy generated files", "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod", "config" : { "Dist::Zilla::Role::FileWatcher" : { "version" : "0.006" } }, "name" : "@Author::ETHER/ReadmeAnyFromPod", "version" : "0.163250" }, { "class" : "Dist::Zilla::Plugin::Prereqs", "config" : { "Dist::Zilla::Plugin::Prereqs" : { "phase" : "develop", "type" : "recommends" } }, "name" : "@Author::ETHER/@Git::VersionManager/pluginbundle version", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::RewriteVersion::Transitional", "config" : { "Dist::Zilla::Plugin::RewriteVersion" : { "add_tarball_name" : 0, "finders" : [ ":ExecFiles", ":InstallModules" ], "global" : 1, "skip_version_provider" : 0 }, "Dist::Zilla::Plugin::RewriteVersion::Transitional" : {} }, "name" : "@Author::ETHER/@Git::VersionManager/RewriteVersion::Transitional", "version" : "0.009" }, { "class" : "Dist::Zilla::Plugin::MetaProvides::Update", "name" : "@Author::ETHER/@Git::VersionManager/MetaProvides::Update", "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::CopyFilesFromRelease", "config" : { "Dist::Zilla::Plugin::CopyFilesFromRelease" : { "filename" : [ "Changes" ], "match" : [] } }, "name" : "@Author::ETHER/@Git::VersionManager/CopyFilesFromRelease", "version" : "0.007" }, { "class" : "Dist::Zilla::Plugin::Git::Commit", "config" : { "Dist::Zilla::Plugin::Git::Commit" : { "add_files_in" : [ "." ], "commit_msg" : "%N-%v%t%n%n%c", "signoff" : 0 }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ "CONTRIBUTING", "Changes", "INSTALL", "LICENCE", "README.pod" ], "allow_dirty_match" : [], "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.45.2", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { "time_zone" : "local" } }, "name" : "@Author::ETHER/@Git::VersionManager/release snapshot", "version" : "2.051" }, { "class" : "Dist::Zilla::Plugin::Git::Tag", "config" : { "Dist::Zilla::Plugin::Git::Tag" : { "branch" : null, "changelog" : "Changes", "signed" : 0, "tag" : "v2.051", "tag_format" : "v%V", "tag_message" : "v%v%t" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.45.2", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { "time_zone" : "local" } }, "name" : "@Author::ETHER/@Git::VersionManager/Git::Tag", "version" : "2.051" }, { "class" : "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional", "config" : { "Dist::Zilla::Plugin::BumpVersionAfterRelease" : { "finders" : [ ":InstallModules" ], "global" : 1, "munge_makefile_pl" : 1 }, "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional" : {} }, "name" : "@Author::ETHER/@Git::VersionManager/BumpVersionAfterRelease::Transitional", "version" : "0.009" }, { "class" : "Dist::Zilla::Plugin::NextRelease", "name" : "@Author::ETHER/@Git::VersionManager/NextRelease", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Git::Commit", "config" : { "Dist::Zilla::Plugin::Git::Commit" : { "add_files_in" : [], "commit_msg" : "increment $VERSION after %v release", "signoff" : 0 }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ "Build.PL", "Changes", "Makefile.PL" ], "allow_dirty_match" : [ "(?^:^lib/.*\\.pm$)" ], "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.45.2", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { "time_zone" : "local" } }, "name" : "@Author::ETHER/@Git::VersionManager/post-release commit", "version" : "2.051" }, { "class" : "Dist::Zilla::Plugin::Prereqs", "config" : { "Dist::Zilla::Plugin::Prereqs" : { "phase" : "x_Dist_Zilla", "type" : "requires" } }, "name" : "@Author::ETHER/@Git::VersionManager/prereqs for @Git::VersionManager", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Git::Push", "config" : { "Dist::Zilla::Plugin::Git::Push" : { "push_to" : [ "origin" ], "remotes_must_exist" : 1 }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.45.2", "repo_root" : "." } }, "name" : "@Author::ETHER/Git::Push", "version" : "2.051" }, { "class" : "Dist::Zilla::Plugin::GitHub::Update", "config" : { "Dist::Zilla::Plugin::GitHub::Update" : { "metacpan" : 1 } }, "name" : "@Author::ETHER/GitHub::Update", "version" : "0.49" }, { "class" : "Dist::Zilla::Plugin::Run::AfterRelease", "config" : { "Dist::Zilla::Plugin::Run::Role::Runner" : { "fatal_errors" : 0, "quiet" : 0, "run" : [ "REDACTED" ], "version" : "0.050" } }, "name" : "@Author::ETHER/install release", "version" : "0.050" }, { "class" : "Dist::Zilla::Plugin::Run::AfterRelease", "config" : { "Dist::Zilla::Plugin::Run::Role::Runner" : { "eval" : [ "print \"release complete!\\xa\"" ], "fatal_errors" : 1, "quiet" : 1, "version" : "0.050" } }, "name" : "@Author::ETHER/release complete", "version" : "0.050" }, { "class" : "Dist::Zilla::Plugin::ConfirmRelease", "name" : "@Author::ETHER/ConfirmRelease", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Prereqs", "config" : { "Dist::Zilla::Plugin::Prereqs" : { "phase" : "x_Dist_Zilla", "type" : "requires" } }, "name" : "@Author::ETHER/prereqs for @Author::ETHER", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::MakeMaker::Awesome", "config" : { "Dist::Zilla::Plugin::MakeMaker" : { "make_path" : "make", "version" : "6.032" }, "Dist::Zilla::Role::TestRunner" : { "default_jobs" : "6", "version" : "6.032" } }, "name" : "MakeMaker::Awesome", "version" : "0.49" }, { "class" : "Dist::Zilla::Plugin::Prereqs", "config" : { "Dist::Zilla::Plugin::Prereqs" : { "phase" : "configure", "type" : "requires" } }, "name" : "ConfigureRequires", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Prereqs", "config" : { "Dist::Zilla::Plugin::Prereqs" : { "phase" : "runtime", "type" : "requires" } }, "name" : "Prereqs", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Prepender", "name" : "Prepender", "version" : "2.004" }, { "class" : "Dist::Zilla::Plugin::Covenant", "name" : "Covenant", "version" : "0.1.2" }, { "class" : "Dist::Zilla::Plugin::Encoding", "name" : "Encoding", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::MetaResources", "name" : "MetaResources", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::Breaks", "name" : "Breaks", "version" : "0.004" }, { "class" : "Dist::Zilla::Plugin::Test::CheckBreaks", "config" : { "Dist::Zilla::Plugin::Test::CheckBreaks" : { "conflicts_module" : [ "Module::Runtime::Conflicts", "Moose::Conflicts" ], "no_forced_deps" : 0 }, "Dist::Zilla::Role::ModuleMetadata" : { "Module::Metadata" : "1.000038", "version" : "0.006" } }, "name" : "Test::CheckBreaks", "version" : "0.019" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":IncModules", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":TestFiles", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExtraTestFiles", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExecFiles", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":PerlExecFiles", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ShareFiles", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":MainModule", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":AllFiles", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":NoFiles", "version" : "6.032" }, { "class" : "Dist::Zilla::Plugin::VerifyPhases", "name" : "@Author::ETHER/PHASE VERIFICATION", "version" : "0.016" } ], "zilla" : { "class" : "Dist::Zilla::Dist::Builder", "config" : { "is_trial" : 0 }, "version" : "6.032" } }, "x_author_pledge" : { "version" : 1 }, "x_authority" : "cpan:JQUELIN", "x_breaks" : { "Dist::Zilla::App::CommandHelper::ChainSmoking" : "<= 1.04" }, "x_contributors" : [ "Christopher J. Madsen ", "J\u00e9r\u00f4me Quelin ", "Karen Etheridge ", "Kent Fredric ", "Yanick Champoux ", "Ricardo Signes ", "David Golden ", "Graham Knop ", "Mike Friedman ", "Chris Weyl ", "Stephen R. Scaffidi ", "Apocalypse ", "Curtis Jewell ", "Graham Barr ", "Mike Doherty ", "Mikko Koivunalho ", "Randy Stauner ", "Alessandro Ghedini ", "Alexandr Ciornii ", "Brendan Byrd ", "Brian Phillips ", "David Steinbrunner ", "Geoffrey Broadwell ", "Harley Pig ", "Jesse Luehrs ", "Matt Follett ", "Michael McClimon ", "Michael Schout ", "Nigel Metheringham ", "Olivier Mengu\u00e9 ", "Sean Whitton ", "Tatsuhiko Miyagawa ", "Tuomas Jormola " ], "x_generated_by_perl" : "v5.40.0", "x_serialization_backend" : "Cpanel::JSON::XS version 4.38", "x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later", "x_static_install" : 0, "x_use_unsafe_inc" : 0 } Dist-Zilla-Plugin-Git-2.051/dist.ini000600 000766 000024 00000002425 14633614203 017366 0ustar00etherstaff000000 000000 ; be kind to Emacs users -*-conf-windows-*- name = Dist-Zilla-Plugin-Git author = Jerome Quelin license = Perl_5 copyright_holder = Jerome Quelin copyright_year = 2009 ; During development, you may want to comment out Bootstrap::lib. ; Otherwise, bugs in your new code can keep "dzil test" from running. [Bootstrap::lib] [@Author::ETHER] :version = 0.119 authority = cpan:JQUELIN Test::MinimumVersion.max_target_perl = 5.010 installer = none ; see below -remove = Test::NoTabs -remove = Test::PodSpelling -remove = Test::Pod::No404s ; git-scm.com thinks we are a bot +copy_file_from_release = AUTHOR_PLEDGE StaticInstall.dry_run = 0 ; authordep Types::Standard ; authordep Types::Path::Tiny [MakeMaker::Awesome] :version = 0.35 header_file = Makefile_git.PL [Prereqs / ConfigureRequires] version = 0 Text::ParseWords = 0 [Prereqs] Dist::Zilla = 2.100880 ; Need mvp_multivalue_args in Plugin role [Prepender] [Covenant] [Encoding] encoding = bytes match = ^corpus/ ; -- static meta-information [MetaResources] x_IRC = irc://irc.perl.org/#distzilla x_MailingList = http://dzil.org/#mailing-list [Breaks] Dist::Zilla::App::CommandHelper::ChainSmoking = <= 1.04 [Test::CheckBreaks] :version = 0.017 conflicts_module = Moose::Conflicts conflicts_module = Module::Runtime::Conflicts Dist-Zilla-Plugin-Git-2.051/lib/Dist/000770 000766 000024 00000000000 14633614203 017375 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/000770 000766 000024 00000000000 14633614203 020450 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/Role/000770 000766 000024 00000000000 14633614203 021351 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/Plugin/000770 000766 000024 00000000000 14633614203 021706 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/PluginBundle/000770 000766 000024 00000000000 14633614203 023040 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/PluginBundle/Git.pm000600 000766 000024 00000007051 14633614203 024117 0ustar00etherstaff000000 000000 # # This file is part of Dist-Zilla-Plugin-Git # # This software is copyright (c) 2009 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use 5.008; use strict; use warnings; package Dist::Zilla::PluginBundle::Git; # ABSTRACT: All git plugins in one bundle our $VERSION = '2.051'; use Moose; use Module::Runtime 'use_module'; use namespace::autoclean; with 'Dist::Zilla::Role::PluginBundle'; # bundle all git plugins my @names = qw{ Check Commit Tag Push }; my %multi; for my $name (@names) { my $class = "Dist::Zilla::Plugin::Git::$name"; use_module $class; @multi{$class->mvp_multivalue_args} = (); } sub mvp_multivalue_args { keys %multi; } sub bundle_config { my ($self, $section) = @_; #my $class = ( ref $self ) || $self; my $arg = $section->{payload}; my @config; for my $name (@names) { my $class = "Dist::Zilla::Plugin::Git::$name"; my %payload; foreach my $k (keys %$arg) { $payload{$k} = $arg->{$k} if $class->can($k); } push @config, [ "$section->{name}/$name" => $class => \%payload ]; } return @config; } __PACKAGE__->meta->make_immutable; no Moose; 1; __END__ =pod =encoding UTF-8 =head1 NAME Dist::Zilla::PluginBundle::Git - All git plugins in one bundle =head1 VERSION version 2.051 =head1 SYNOPSIS In your F: [@Git] changelog = Changes ; this is the default allow_dirty = dist.ini ; see Git::Check... allow_dirty = Changes ; ... and Git::Commit commit_msg = v%V%n%n%c ; see Git::Commit tag_format = v%V ; see Git::Tag tag_message = v%V ; see Git::Tag push_to = origin ; see Git::Push =head1 DESCRIPTION This is a plugin bundle to load the most common Git plugins. It is equivalent to: [Git::Check] [Git::Commit] [Git::Tag] [Git::Push] Any options given are passed through to each plugin. See each plugin's documentation for the options it supports. (Plugins just ignore options they don't understand.) =for Pod::Coverage bundle_config mvp_multivalue_args =head1 SEE ALSO =over 4 =item * L Before a release, check that the repo is in a clean state (you have committed your changes). =item * L After a release, commit updated files. =item * L After a release, tag the just-released version. =item * L After a release, push the released code & tag to your public repo. =back For a list of Git plugins in this distribution that are not part of this bundle, see L. =head1 SUPPORT Bugs may be submitted through L (or L). There is also a mailing list available for users of this distribution, at L. There is also an irc channel available for users of this distribution, at L on C|irc://irc.perl.org/#distzilla>. =head1 AUTHOR Jerome Quelin =head1 COPYRIGHT AND LICENCE This software is copyright (c) 2009 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/Plugin/Git.pm000600 000766 000024 00000012363 14633614203 022767 0ustar00etherstaff000000 000000 # # This file is part of Dist-Zilla-Plugin-Git # # This software is copyright (c) 2009 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use 5.008; use strict; use warnings; package Dist::Zilla::Plugin::Git; # git description: v2.050-2-gdfedc3b # ABSTRACT: Update your git repository after release our $VERSION = '2.051'; 1; __END__ =pod =encoding UTF-8 =head1 NAME Dist::Zilla::Plugin::Git - Update your git repository after release =head1 VERSION version 2.051 =head1 DESCRIPTION This set of plugins for L can do interesting things for module authors using Git (L) to track their work. You need Git 1.5.4 or later to use these plugins. Some plugins require a more recent version of Git for certain features. =head2 The @Git Bundle The most commonly used plugins are part of the L<@Git bundle|Dist::Zilla::PluginBundle::Git>. They are: =over 4 =item * L Before a release, check that the repo is in a clean state (you have committed your changes). =item * L After a release, commit updated files. =item * L After a release, tag the just-released version. =item * L After a release, push the released code & tag to your public repo. =back =head2 Non-Bundled Plugins The other plugins in this distribution are not included in the @Git bundle, either because they conflict with L's L<@Basic bundle|Dist::Zilla::PluginBundle::Basic> or because they have more specialized uses. =over 4 =item * L Commits the released files to a separate branch of your repo. =item * L A replacement for Dist::Zilla's standard L plugin that gathers files based on whether they are tracked by Git (conflicts with @Basic because that includes GatherDir). =item * L Can be used in a minting profile (L) to initialize and configure your Git repo automatically when you do S>. =item * L Calculates the version number of your distribution from your Git tags using L. =back =head1 SUPPORT Bugs may be submitted through L (or L). There is also a mailing list available for users of this distribution, at L. There is also an irc channel available for users of this distribution, at L on C|irc://irc.perl.org/#distzilla>. =head1 AUTHOR Jerome Quelin =head1 CONTRIBUTORS =for stopwords Christopher J. Madsen Jérôme Quelin Karen Etheridge Kent Fredric Yanick Champoux Ricardo Signes David Golden Graham Knop Mike Friedman Chris Weyl Stephen R. Scaffidi Apocalypse Curtis Jewell Barr Doherty Mikko Koivunalho Randy Stauner Alessandro Ghedini Alexandr Ciornii Brendan Byrd Brian Phillips Steinbrunner Geoffrey Broadwell Harley Pig Jesse Luehrs Matt Follett Michael McClimon Schout Nigel Metheringham Olivier Mengué Sean Whitton Tatsuhiko Miyagawa Tuomas Jormola =over 4 =item * Christopher J. Madsen =item * Jérôme Quelin =item * Karen Etheridge =item * Kent Fredric =item * Yanick Champoux =item * Ricardo Signes =item * David Golden =item * Graham Knop =item * Mike Friedman =item * Chris Weyl =item * Stephen R. Scaffidi =item * Apocalypse =item * Curtis Jewell =item * Graham Barr =item * Mike Doherty =item * Mikko Koivunalho =item * Randy Stauner =item * Alessandro Ghedini =item * Alexandr Ciornii =item * Brendan Byrd =item * Brian Phillips =item * David Steinbrunner =item * Geoffrey Broadwell =item * Harley Pig =item * Jesse Luehrs =item * Matt Follett =item * Michael McClimon =item * Michael Schout =item * Nigel Metheringham =item * Olivier Mengué =item * Sean Whitton =item * Tatsuhiko Miyagawa =item * Tuomas Jormola =back =head1 COPYRIGHT AND LICENCE This software is copyright (c) 2009 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/Plugin/Git/000770 000766 000024 00000000000 14633614203 022431 5ustar00etherstaff000000 000000 Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/Plugin/Git/CommitBuild.pm000640 000766 000024 00000020375 14633614203 025205 0ustar00etherstaff000000 000000 # # This file is part of Dist-Zilla-Plugin-Git # # This software is copyright (c) 2009 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use 5.008; use strict; use warnings; package Dist::Zilla::Plugin::Git::CommitBuild; # ABSTRACT: Check in build results on separate branch our $VERSION = '2.051'; use Git::Wrapper 0.021 (); # need -STDIN use IPC::Open3; use IPC::System::Simple; # required for Fatalised/autodying system use File::chdir; use File::Spec::Functions qw/ rel2abs catfile /; use File::Temp; use Moose; use namespace::autoclean; use Path::Tiny qw(); use Types::Path::Tiny 'Path'; use MooseX::Has::Sugar; use Types::Standard qw(Str Bool); use Cwd qw(abs_path); use Try::Tiny; use String::Formatter ( method_stringf => { -as => '_format_branch', codes => { b => sub { shift->_source_branch }, }, }, method_stringf => { -as => '_format_message', codes => { b => sub { shift->_source_branch }, h => sub { (shift->git->rev_parse( '--short', 'HEAD' ))[0] }, H => sub { (shift->git->rev_parse('HEAD'))[0] }, t => sub { shift->zilla->is_trial ? '-TRIAL' : '' }, v => sub { shift->zilla->version }, } } ); # debugging... #use Smart::Comments '###'; with 'Dist::Zilla::Role::AfterBuild', 'Dist::Zilla::Role::AfterRelease', 'Dist::Zilla::Role::Git::Repo'; # -- attributes has branch => ( ro, isa => Str, default => 'build/%b', required => 1 ); has release_branch => ( ro, isa => Str, required => 0 ); has message => ( ro, isa => Str, default => 'Build results of %h (on %b)', required => 1 ); has release_message => ( ro, isa => Str, lazy => 1, builder => '_build_release_message' ); has build_root => ( rw, coerce => 1, isa => Path ); has _source_branch => ( is => 'ro', isa => Str, lazy => 1, init_arg=> undef, default => sub { ($_[0]->git->name_rev( '--name-only', 'HEAD' ))[0]; }, ); has multiple_inheritance => ( is => 'ro', isa => Bool, default => 0, ); # -- attribute builders sub _build_release_message { return shift->message; } # -- role implementation around dump_config => sub { my $orig = shift; my $self = shift; my $config = $self->$orig; $config->{+__PACKAGE__} = { (map +($_ => $self->$_), qw(branch release_branch message release_message build_root)), multiple_inheritance => $self->multiple_inheritance ? 1 : 0, blessed($self) ne __PACKAGE__ ? ( version => $VERSION ) : (), }; return $config; }; sub after_build { my ( $self, $args) = @_; # because the build_root mysteriously change at # the 'after_release' stage $self->build_root( $args->{build_root} ); $self->_commit_build( $args, $self->branch, $self->message ); } sub after_release { my ( $self, $args) = @_; $self->_commit_build( $args, $self->release_branch, $self->release_message ); } sub _commit_build { my ( $self, undef, $branch, $message ) = @_; return unless $branch; my $dir = Path::Tiny->tempdir( CLEANUP => 1) ; my $src = $self->git; my $target_branch = _format_branch( $branch, $self ); for my $file ( @{ $self->zilla->files } ) { my ( $name, $content ) = ( $file->name, (Dist::Zilla->VERSION < 5 ? $file->content : $file->encoded_content) ); my ( $outfile ) = $dir->child( $name ); $outfile->parent->mkpath(); $outfile->spew_raw( $content ); chmod $file->mode, "$outfile" or die "couldn't chmod $outfile: $!"; } # returns the sha1 of the created tree object my $tree = $self->_create_tree($src, $dir); my ($last_build_tree) = try { $src->rev_parse("$target_branch^{tree}") }; $last_build_tree ||= 'none'; ### $last_build_tree if ($tree eq $last_build_tree) { $self->log("No changes since the last build; not committing"); return; } my @parents = ( ( $self->_source_branch ) x $self->multiple_inheritance, grep eval { $src->rev_parse({ 'q' => 1, 'verify'=>1}, $_ ) }, $target_branch ); ### @parents my $this_message = _format_message( $message, $self ); my @commit = $src->commit_tree( { -STDIN => $this_message }, $tree, map +( '-p' => $_), @parents ); ### @commit $src->update_ref( 'refs/heads/' . $target_branch, $commit[0] ); } sub _create_tree { my ($self, $repo, $fs_obj) = @_; ### called with: "$fs_obj" if (!$fs_obj->is_dir) { my ($sha) = $repo->hash_object({ w => 1 }, "$fs_obj"); ### hashed: "$sha $fs_obj" return $sha; } my @entries; for my $obj ($fs_obj->children) { ### working on: "$obj" my $sha = $self->_create_tree($repo, $obj); my $mode = sprintf('%o', $obj->stat->mode); # $obj->is_dir ? '040000' : ' my $type = $obj->is_dir ? 'tree' : 'blob'; my $name = $obj->basename; push @entries, "$mode $type $sha\t$name"; } ### @entries my ($sha) = $repo->mktree({ -STDIN => join("\n", @entries, q{}) }); return $sha; } __PACKAGE__->meta->make_immutable; 1; __END__ =pod =encoding UTF-8 =head1 NAME Dist::Zilla::Plugin::Git::CommitBuild - Check in build results on separate branch =head1 VERSION version 2.051 =head1 SYNOPSIS In your F: [Git::CommitBuild] ; these are the defaults branch = build/%b message = Build results of %h (on %b) multiple_inheritance = 0 =head1 DESCRIPTION Once the build is done, this plugin will commit the results of the build to a branch that is completely separate from your regular code branches (i.e. with a different root commit). This potentially makes your repository more useful to those who may not have L and all of its dependencies installed. The plugin accepts the following options: =over 4 =item * branch - L string for where to commit the build contents. A single formatting code (C<%b>) is defined for this attribute and will be substituted with the name of the current branch in your git repository. Defaults to C, but if set explicitly to an empty string causes no build contents checkin to be made. =item * release_branch - L string for where to commit the build contents Same as C, but commit the build content only after a release. No default, meaning no release branch. =item * message - L string for what commit message to use when committing the results of the build. This option supports five formatting codes: =over 4 =item * C<%b> - Name of the current branch =item * C<%H> - Commit hash =item * C<%h> - Abbreviated commit hash =item * C<%v> - The release version number =item * C<%V> - The release version number, but with a leading C removed if it exists =item * C<%t> - The string "-TRIAL" if this is a trial release =back =item * release_message - L string for what commit message to use when committing the results of the release. Defaults to the same as C. =item * multiple_inheritance - Indicates whether the commit containing the build results should have the source commit as a parent. If false (the default), the build branch will be completely separate from the regular code branches. If set to a true value, commits on a build branch will have two parents: the previous build commit and the source commit from which the build was generated. =back =for Pod::Coverage after_build after_release =head1 SUPPORT Bugs may be submitted through L (or L). There is also a mailing list available for users of this distribution, at L. There is also an irc channel available for users of this distribution, at L on C|irc://irc.perl.org/#distzilla>. =head1 AUTHOR Jerome Quelin =head1 COPYRIGHT AND LICENCE This software is copyright (c) 2009 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/Plugin/Git/Check.pm000640 000766 000024 00000013663 14633614203 024014 0ustar00etherstaff000000 000000 # # This file is part of Dist-Zilla-Plugin-Git # # This software is copyright (c) 2009 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use 5.008; use strict; use warnings; package Dist::Zilla::Plugin::Git::Check; # ABSTRACT: Check your git repository before releasing our $VERSION = '2.051'; use Moose; use namespace::autoclean 0.09; use Types::Standard qw(Bool Enum);; with 'Dist::Zilla::Role::AfterBuild', 'Dist::Zilla::Role::BeforeRelease', 'Dist::Zilla::Role::Git::Repo'; with 'Dist::Zilla::Role::Git::DirtyFiles', 'Dist::Zilla::Role::GitConfig'; has build_warnings => ( is=>'ro', isa => Bool, default => 0 ); has untracked_files => ( is=>'ro', isa => Enum([qw(die warn ignore)]), default => 'die' ); sub _git_config_mapping { +{ changelog => '%{changelog}s', } } # -- public methods around dump_config => sub { my $orig = shift; my $self = shift; my $config = $self->$orig; $config->{+__PACKAGE__} = { # build_warnings does not affect the build outcome; do not need to track it untracked_files => $self->untracked_files, blessed($self) ne __PACKAGE__ ? ( version => $VERSION ) : (), }; return $config; }; sub _perform_checks { my ($self, $log_method) = @_; my @issues; my $git = $self->git; my @output; # fetch current branch my ($branch) = map /^\*\s+(.+)/ ? $1 : (), $git->branch; # check if some changes are staged for commit @output = $git->diff( { cached=>1, 'name-status'=>1 } ); if ( @output ) { push @issues, @output . " staged change" . (@output == 1 ? '' : 's'); my $errmsg = "branch $branch has some changes staged for commit:\n" . join "\n", map "\t$_", @output; $self->$log_method($errmsg); } # everything but files listed in allow_dirty should be in a # clean state @output = $self->list_dirty_files($git); if ( @output ) { push @issues, @output . " uncommitted file" . (@output == 1 ? '' : 's'); my $errmsg = "branch $branch has some uncommitted files:\n" . join "\n", map "\t$_", @output; $self->$log_method($errmsg); } # no files should be untracked @output = $git->ls_files( { others=>1, 'exclude-standard'=>1 } ); if ( @output ) { push @issues, @output . " untracked file" . (@output == 1 ? '' : 's'); my $untracked = $self->untracked_files; if ($untracked ne 'ignore') { # If $log_method is log_fatal, switch to log unless # untracked files are fatal. If $log_method is already log, # this is a no-op. $log_method = 'log' unless $untracked eq 'die'; my $errmsg = "branch $branch has some untracked files:\n" . join "\n", map "\t$_", @output; $self->$log_method($errmsg); } } if (@issues) { $self->log( "branch $branch has " . join(', ', @issues)); } else { $self->log( "branch $branch is in a clean state" ); } } # end _perform_checks sub after_build { my $self = shift; $self->_perform_checks('log') if $self->build_warnings; } sub before_release { my $self = shift; $self->_perform_checks('log_fatal'); } __PACKAGE__->meta->make_immutable; 1; __END__ =pod =encoding UTF-8 =head1 NAME Dist::Zilla::Plugin::Git::Check - Check your git repository before releasing =head1 VERSION version 2.051 =head1 SYNOPSIS In your F: [Git::Check] allow_dirty = dist.ini allow_dirty = README changelog = Changes ; this is the default build_warnings = 0 ; this is the default untracked_files = die ; default value (can also be "warn" or "ignore") =head1 DESCRIPTION This plugin checks that your Git repo is in a clean state before releasing. The following checks are performed before releasing: =over 4 =item * there should be no files in the index (staged copy) =item * there should be no untracked files in the working copy =item * the working copy should be clean. The files listed in C can be modified locally, though. =back If those conditions are not met, the plugin will die, and the release will thus be aborted. This lets you fix the problems before continuing. The plugin accepts the following options: =over 4 =item * changelog - the name of your changelog file. defaults to F. =item * allow_dirty - a file that is allowed to have local modifications. This option may appear multiple times. The default list is F and the changelog file given by C. You can use C to prohibit all local modifications. =item * allow_dirty_match - works the same as allow_dirty, but matching as a regular expression instead of an exact filename. =item * build_warnings - if 1, perform the same checks after every build, but as warnings, not errors. Defaults to 0. =item * untracked_files - indicates what to do if there are untracked files. Must be either C (the default), C, or C. C lists the untracked files, while C only prints the total number of untracked files. =back =for Pod::Coverage after_build before_release =head1 SUPPORT Bugs may be submitted through L (or L). There is also a mailing list available for users of this distribution, at L. There is also an irc channel available for users of this distribution, at L on C|irc://irc.perl.org/#distzilla>. =head1 AUTHOR Jerome Quelin =head1 COPYRIGHT AND LICENCE This software is copyright (c) 2009 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/Plugin/Git/NextVersion.pm000640 000766 000024 00000020500 14633614203 025247 0ustar00etherstaff000000 000000 # # This file is part of Dist-Zilla-Plugin-Git # # This software is copyright (c) 2009 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use strict; use warnings; package Dist::Zilla::Plugin::Git::NextVersion; # ABSTRACT: Provide a version number by bumping the last git release tag our $VERSION = '2.051'; use Dist::Zilla 4 (); use version 0.80 (); use Moose; use namespace::autoclean 0.09; use Path::Tiny; use Try::Tiny; use Types::Standard qw(Str RegexpRef Bool ArrayRef); use Type::Utils qw(coerce from as via subtype); use constant _cache_fn => '.gitnxtver_cache'; with 'Dist::Zilla::Role::BeforeRelease', 'Dist::Zilla::Role::AfterRelease', 'Dist::Zilla::Role::FilePruner', 'Dist::Zilla::Role::VersionProvider', 'Dist::Zilla::Role::Git::Repo'; # -- attributes use constant _CoercedRegexp => do { my $tc = subtype as RegexpRef; coerce $tc, from Str, via { qr/$_/ }; $tc; }; has version_regexp => ( is => 'ro', isa => _CoercedRegexp, coerce => 1, default => sub { qr/^v(.+)$/ } ); has first_version => ( is => 'ro', isa => Str, default => '0.001' ); has version_by_branch => ( is => 'ro', isa => Bool, default => 0 ); sub _versions_from_tags { my ($regexp, $tags) = @_; # WARNING: The quotes in "$1" are necessary, because version doesn't # call get magic properly. return [ sort map /$regexp/ ? try { version->parse("$1") } : (), @$tags ]; } # end _versions_from_tags has _all_versions => ( is => 'ro', isa => ArrayRef, init_arg => undef, lazy => 1, default => sub { my $self = shift; my $v = _versions_from_tags($self->version_regexp, [ $self->git->tag ]); if ($self->logger->get_debug) { $self->log_debug("Found version $_") for @$v; } $v; } ); sub _max_version { my $versions = shift; # arrayref of versions sorted in ascending order return $versions->[-1]->stringify if @$versions; return undef; } # end _max_version sub _last_version { my ($self) = @_; my $last_ver; my $by_branch = $self->version_by_branch; my $git = $self->git; local $/ = "\n"; # Force record separator to be single newline if ($by_branch) { my $head; my $cachefile = path($self->zilla->root)->child(_cache_fn); if (-f $cachefile) { ($head) = $git->rev_parse('HEAD'); return $1 if $cachefile->slurp =~ /^\Q$head\E (.+)/; } try { # Note: git < 1.6.1 doesn't understand --simplify-by-decoration or %d my @tags; for ($git->rev_list(qw(--simplify-by-decoration --pretty=%d HEAD))) { /^\s*\((.+)\)/ or next; push @tags, split /,\s*/, $1; } # end for lines from git log s/^tag:\s+// for @tags; # Git 1.8.3 says "tag: X" instead of "X" my $versions = _versions_from_tags($self->version_regexp, \@tags); if ($self->logger->get_debug) { $self->log_debug("Found version $_ on branch") for @$versions; } $last_ver = _max_version($versions); }; if (defined $last_ver) { ($head) = $git->rev_parse('HEAD') unless $head; print { $cachefile->openw } "$head $last_ver\n"; return $last_ver; } } # end if version_by_branch # Consider versions from all branches: $last_ver = _max_version($self->_all_versions); $self->log("WARNING: Unable to find version on current branch") if defined($last_ver) and $by_branch; return $last_ver; } # -- role implementation around dump_config => sub { my $orig = shift; my $self = shift; my $config = $self->$orig; $config->{+__PACKAGE__} = { (map +($_ => $self->$_), qw(version_regexp first_version)), version_by_branch => $self->version_by_branch ? 1 : 0, blessed($self) ne __PACKAGE__ ? ( version => $VERSION ) : (), }; return $config; }; sub before_release { my $self = shift; # Make sure we're not duplicating a version: my $version = version->parse( $self->zilla->version ); $self->log_fatal("version $version has already been tagged") if grep +($_ == $version), @{ $self->_all_versions }; } sub after_release { my $self = shift; # Remove the cache file, just in case: path($self->zilla->root)->child(_cache_fn)->remove; } sub provide_version { my ($self) = @_; # override (or maybe needed to initialize) return $ENV{V} if exists $ENV{V}; my $last_ver = $self->_last_version; return $self->first_version unless defined $last_ver; require Version::Next; my $new_ver = Version::Next::next_version($last_ver); $self->log("Bumping version from $last_ver to $new_ver"); return "$new_ver"; } sub prune_files { my $self = shift; for my $file (@{ $self->zilla->files }) { # Ensure we don't distribute .gitnxtver_cache: next unless $file->name eq _cache_fn; $self->log_debug([ 'pruning %s', $file->name ]); $self->zilla->prune_file($file); } return; } # end prune_files __PACKAGE__->meta->make_immutable; no Moose; 1; __END__ =pod =encoding UTF-8 =head1 NAME Dist::Zilla::Plugin::Git::NextVersion - Provide a version number by bumping the last git release tag =head1 VERSION version 2.051 =head1 SYNOPSIS In your F: [Git::NextVersion] first_version = 0.001 ; this is the default version_by_branch = 0 ; this is the default version_regexp = ^v(.+)$ ; this is the default =head1 DESCRIPTION This does the L role. It finds the last version number from your Git tags, increments it using L, and uses the result as the C parameter for your distribution. In addition, when making a release, it ensures that the version being released has not already been tagged. (The L plugin has a similar check, but Git::Tag only checks for an exact match on the tag. Since Git::NextVersion knows how to extract version numbers from tags, it can find duplicates that Git::Tag would miss.) The plugin accepts the following options: =over =item * C - if the repository has no tags at all, this version is used as the first version for the distribution. It defaults to "0.001". =item * C - if true, consider only tags on the current branch when looking for the previous version. If you have a maintenance branch for stable releases and a development branch for trial releases, you should set this to 1. (You'll also need git version 1.6.1 or later.) The default is to look at all tags, because finding the tags reachable from a branch is a more expensive operation than simply listing all tags. =item * C - regular expression that matches a tag containing a version. It must capture the version into $1. Defaults to ^v(.+)$ which matches the default C from the L plugin. If you change C, you B set a corresponding C. =back You can also set the C environment variable to override the new version. This is useful if you need to bump to a specific version. For example, if the last tag is 0.005 and you want to jump to 1.000 you can set V = 1.000. $ V=1.000 dzil release Because tracing history takes time, if you use the C option, Git::NextVersion will create a F<.gitnxtver_cache> file in your repository root to track the highest version number that is an ancestor of the HEAD revision. You should add F<.gitnxtver_cache> to your F<.gitignore> file. It will automatically be pruned from the distribution. =for Pod::Coverage provide_version prune_files before_release after_release =head1 SUPPORT Bugs may be submitted through L (or L). There is also a mailing list available for users of this distribution, at L. There is also an irc channel available for users of this distribution, at L on C|irc://irc.perl.org/#distzilla>. =head1 AUTHOR Jerome Quelin =head1 COPYRIGHT AND LICENCE This software is copyright (c) 2009 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/Plugin/Git/Commit.pm000640 000766 000024 00000014444 14633614203 024225 0ustar00etherstaff000000 000000 # # This file is part of Dist-Zilla-Plugin-Git # # This software is copyright (c) 2009 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use 5.008; use strict; use warnings; package Dist::Zilla::Plugin::Git::Commit; # ABSTRACT: Commit dirty files our $VERSION = '2.051'; use namespace::autoclean; use File::Temp qw{ tempfile }; use Moose; use MooseX::Has::Sugar; use Types::Standard qw(Str ArrayRef Bool); use Types::Path::Tiny 'Path'; use Path::Tiny 0.048 qw(); # subsumes use Cwd; with 'Dist::Zilla::Role::AfterRelease', 'Dist::Zilla::Role::Git::Repo'; with 'Dist::Zilla::Role::Git::DirtyFiles'; with 'Dist::Zilla::Role::Git::StringFormatter'; with 'Dist::Zilla::Role::GitConfig'; sub _git_config_mapping { +{ changelog => '%{changelog}s', } } # -- attributes has commit_msg => ( ro, isa=>Str, default => 'v%V%n%n%c' ); has add_files_in => ( ro, isa=> ArrayRef[Path], coerce => 1, default => sub { [] }); has signoff => ( ro, isa => Bool, default => 0 ); # -- public methods sub mvp_multivalue_args { qw( add_files_in ) } around dump_config => sub { my $orig = shift; my $self = shift; my $config = $self->$orig; $config->{+__PACKAGE__} = { commit_msg => $self->commit_msg, add_files_in => [ sort @{ $self->add_files_in } ], signoff => $self->signoff, blessed($self) ne __PACKAGE__ ? ( version => $VERSION ) : (), }; return $config; }; sub after_release { my $self = shift; my $git = $self->git; my @output; # check if there are dirty files that need to be committed. # at this time, we know that only those 2 files may remain modified, # otherwise before_release would have failed, ending the release # process. @output = sort { lc $a cmp lc $b } $self->list_dirty_files($git, 1); # add any other untracked files to the commit list if ( @{ $self->add_files_in } ) { my @untracked_files = $git->ls_files( { others=>1, 'exclude-standard'=>1 } ); foreach my $f ( @untracked_files ) { foreach my $path ( @{ $self->add_files_in } ) { if ( Path::Tiny::path( $path )->subsumes( $f ) ) { push( @output, $f ); last; } } } } # if nothing to commit, we're done! return unless @output; # write commit message in a temp file my ($fh, $filename) = tempfile( getcwd . '/DZP-git.XXXX', UNLINK => 1 ); binmode $fh, ':utf8' unless Dist::Zilla->VERSION < 5; print $fh $self->get_commit_message; close $fh; # commit the files in git $git->add( @output ); $self->log_debug($_) for $git->commit( { signoff => $self->signoff, file => $filename } ); $self->log("Committed @output"); } #pod =method get_commit_message #pod #pod This method returns the commit message. The default implementation #pod reads the Changes file to get the list of changes in the just-released version. #pod #pod =cut sub get_commit_message { my $self = shift; return $self->_format_string($self->commit_msg); } # end get_commit_message __PACKAGE__->meta->make_immutable; 1; __END__ =pod =encoding UTF-8 =head1 NAME Dist::Zilla::Plugin::Git::Commit - Commit dirty files =head1 VERSION version 2.051 =head1 SYNOPSIS In your F: [Git::Commit] changelog = Changes ; this is the default =head1 DESCRIPTION Once the release is done, this plugin will record this fact in git by committing changelog and F. The commit message will be taken from the changelog for this release. It will include lines between the current version and timestamp and the next non-indented line, except that blank lines at the beginning or end are removed. B If you are using Git::Commit in conjunction with the L plugin, C<[NextRelease]> must come before C<[Git::Commit]> (or C<[@Git]>) in your F or plugin bundle. Otherwise, Git::Commit will commit the F file before NextRelease has updated it. The plugin accepts the following options: =over 4 =item * changelog - the name of your changelog file. Defaults to F. =item * allow_dirty - a file that will be checked in if it is locally modified. This option may appear multiple times. The default list is F and the changelog file given by C. =item * allow_dirty_match - works the same as allow_dirty, but matching as a regular expression(s) instead of an exact filename(s). =item * add_files_in - a path that will have its new files checked in. This option may appear multiple times. This is used to add files generated during build-time to the repository, for example. The default list is empty. Note: The files have to be generated between the phases BeforeRelease E-E AfterRelease, and after Git::Check + before Git::Commit. =item * commit_msg - the commit message to use. Defaults to C, meaning the version number and the list of changes. The L are documented under L. =item * time_zone - the time zone to use with C<%d>. Can be any time zone name accepted by DateTime. Defaults to C. =back =head1 METHODS =head2 get_commit_message This method returns the commit message. The default implementation reads the Changes file to get the list of changes in the just-released version. =for Pod::Coverage after_release mvp_multivalue_args =head1 SUPPORT Bugs may be submitted through L (or L). There is also a mailing list available for users of this distribution, at L. There is also an irc channel available for users of this distribution, at L on C|irc://irc.perl.org/#distzilla>. =head1 AUTHOR Jerome Quelin =head1 COPYRIGHT AND LICENCE This software is copyright (c) 2009 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut Dist-Zilla-Plugin-Git-2.051/lib/Dist/Zilla/Plugin/Git/Init.pm000640 000766 000024 00000016436 14633614203 023703 0ustar00etherstaff000000 000000 # # This file is part of Dist-Zilla-Plugin-Git # # This software is copyright (c) 2009 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use 5.010; use strict; use warnings; package Dist::Zilla::Plugin::Git::Init; # ABSTRACT: Initialize git repository on dzil new our $VERSION = '2.051'; our %transform = ( lc => sub { lc shift }, uc => sub { uc shift }, '' => sub { shift }, ); use Moose; use Git::Wrapper; use String::Formatter method_stringf => { -as => '_format_string', codes => { n => sub { "\n" }, N => sub { $transform{$_[1] || ''}->( $_[0]->zilla->name ) }, }, }; use Types::Standard qw(Str Bool ArrayRef); with 'Dist::Zilla::Role::AfterMint'; use namespace::autoclean; has commit_message => ( is => 'ro', isa => Str, default => 'initial commit', ); has stage => ( is => 'ro', isa => Bool, default => 1, ); has commit => ( is => 'ro', isa => Bool, default => 1, ); has branch => ( is => 'ro', isa => Str, default => '', ); has remotes => ( is => 'ro', isa => ArrayRef[Str], default => sub { [] }, ); has push_urls => ( is => 'ro', isa => ArrayRef[Str], default => sub { [] }, ); has config_entries => ( is => 'ro', isa => ArrayRef[Str], default => sub { [] }, ); sub mvp_multivalue_args { qw(config_entries remotes push_urls) } sub mvp_aliases { return { config => 'config_entries', remote => 'remotes', push_url => 'push_urls' } } sub after_mint { my $self = shift; my ($opts) = @_; my $git = Git::Wrapper->new("$opts->{mint_root}"); $self->log("Initializing a new git repository in " . $opts->{mint_root}); $git->init; foreach my $configSpec (@{ $self->config_entries }) { my ($option, $value) = split ' ', _format_string($configSpec, $self), 2; $self->log_fatal("invalid syntax for $configSpec!") if not defined $value; $self->log_debug("Configuring $option $value"); $git->config($option, $value); } $git->add("$opts->{mint_root}") unless ! $self->stage; if ($self->commit) { my $message = 'Made initial commit'; if (length $self->branch) { $git->checkout('-b', $self->branch); $message .= ' on branch ' . $self->branch; } $git->commit({ message => _format_string($self->commit_message, $self), 'allow-empty' => 1, }); $self->log($message); } foreach my $remoteSpec (@{ $self->remotes }) { my ($remote, $url) = split ' ', _format_string($remoteSpec, $self), 2; $self->log_fatal("invalid syntax for $remoteSpec!") if not defined $url; $self->log_debug("Adding remote $remote as $url"); $git->remote(add => $remote, $url); } foreach my $remoteSpec (@{ $self->push_urls }) { my ($remote, $url) = split ' ', _format_string($remoteSpec, $self), 2; $self->log_fatal("invalid syntax for $remoteSpec!") if not defined $url; $self->log_debug("Setting push URL for remote $remote to $url"); $git->remote('set-url' => $remote, '--push' => $url); } } __PACKAGE__->meta->make_immutable; 1; __END__ =pod =encoding UTF-8 =head1 NAME Dist::Zilla::Plugin::Git::Init - Initialize git repository on dzil new =head1 VERSION version 2.051 =head1 SYNOPSIS In your F: [Git::Init] commit_message = initial commit ; this is the default stage = 1 ; this is the default commit = 1 ; this is the default branch = ; this is the default (uses init.defaultBranch config) remote = origin https://github.com/USERNAME/%N.git ; no default push_url = origin git@github.com:USERNAME/%{lc}N.git ; no default config = user.email USERID@cpan.org ; there is no default =head1 DESCRIPTION This plugin initializes a git repository when a new distribution is created with C. =head2 Plugin options The plugin accepts the following options: =over 4 =item * commit_message - the commit message to use when checking in the newly-minted dist. Defaults to C. =item * stage - if true (the default), stage (add to Git index) all files in the newly-minted dist directory. If commit option is true and stage is false, Git will create an empty commit. An empty commit is a valid commit and can be used as the first commit (root commit) in a repository. =item * commit - if true (the default), commit the newly-minted dist. If set to a false value, add the files to the Git index but don't actually make a commit. =item * branch - the branch name under which the newly-minted dist is checked in (if C is true). Defaults to an empty string, which means that the Git default branch is used (whatever you have configured in `git config init.defaultBranch`). =item * config - a config setting to make in the repository. No config entries are made by default. A setting is specified as C