What better way to start the year than to bring a fresh new breath to an old favorite? As you read, a new version of Git::CPAN::Patch should be making its way to CPAN.
This new version is a massive refactoring of the module’s guts, which will affect both end-users and developers. For the best. Mostly. Or so I hope.
What’s in It for End-Users?
One Main Command to Rule Them All
This is the most obvious advantage. The cli interface has been collapsed to a single main command, git-cpan
which, thanks to the way git
discovers its subcommands, can also be called the old-fashioned way.
$ git-cpan –help
Missing command
usage:
git-cpan command [long options…] git-cpan help
git-cpan command –help
global options:
–help –usage -? Prints this usage information. [Flag]
–man Prints the command’s manpage [Flag]
available commands:
clone
format-patch
help Prints this usage information
import
send-email
send-patch
sources
squash
update
which
# but this still works
$ git cpan sources –help
usage:
% git-cpan sources Foo::Bar
options:
–backpan show backpan information [Flag]
–help –usage -? Prints this usage information. [Flag]
–nocpan show cpan information [Flag]
–norepository show repository information [Flag]
–root Location of the Git repository [Default:"."]
[/bash]
New Lifecycle
The gaggle of subcommands have been stream-lined and modified. For the vast majority of users, it means that the life-cycle of a patch will now look like:
[bash]$ git-cpan clone Git::CPAN::Patchfetching https://cpan.metacpan.org/authors/id/Y/YA/YANICK/Git-CPAN-Patch-0.8.0.tar.gz
creating Git-CPAN-Patch
created tag ‘v0.8.0’ (a0e8c70fd931a796292c92fc9e7576790be4e175)
$ cd Git-CPAN-Patch/
$ echo foo >> MANIFEST
$ git commit -m "yadah" MANIFEST
[master 85ab598] yadah
1 file changed, 1 insertion(+)
$ git-cpan send-patch
0001-yadah.patch
Who should the emails appear to be from? [Yanick Champoux <[email protected]>]
Message-ID to be used as In-Reply-To for the first email?
Send this email? ([y]es|[n]o|[q]uit|[a]ll): y
0001-yadah.patch
Emails will be sent from: Yanick Champoux <[email protected]>
(mbox) Adding cc: Yanick Champoux <[email protected]> from line ‘From: Yanick Champoux <[email protected]>’
From: Yanick Champoux <[email protected]>
To: [email protected]
Cc: Yanick Champoux <[email protected]>
Subject: [PATCH] yadah
Date: Tue, 1 Jan 2013 16:58:05 -0500
Message-Id: <[email protected]>
X-Mailer: git-send-email 1.7.9.5
The Cc list above has been expanded by additional
addresses found in the patch commit message. By default
send-email prompts before sending whenever this occurs.
This behavior is controlled by the sendemail.confirm
configuration setting.
For additional information, run ‘git send-email –help’.
To retain the current behavior, but squelch this message,
run ‘git config –global sendemail.confirm auto’.
OK. Log says:
Sendmail: /usr/sbin/sendmail -i [email protected] [email protected]
From: Yanick Champoux <[email protected]>
To: [email protected]
Cc: Yanick Champoux <[email protected]>
Subject: [PATCH] yadah
Date: Tue, 1 Jan 2013 16:58:05 -0500
Message-Id: <[email protected]>
X-Mailer: git-send-email 1.7.9.5
Result: OK
[/bash]
Friggin’ Fast
Last but not least, almost all ties to CPANPlus have been severed in favor of MetaCPAN, which means that cloning a distribution from CPAN is now very, very fast.
[bash]$ time git-cpan clone Git::CPAN::Patch my-clone-dirfetching https://cpan.metacpan.org/authors/id/Y/YA/YANICK/Git-CPAN-Patch-0.8.0.tar.gz
creating my-clone-dir
created tag ‘v0.8.0’ (5640120bf0e1cd7e08429723fd1e737f9e56b487)
real 0m3.025s
user 0m1.180s
sys 0m0.456s
[/bash]
Oh Yeah, I Probably Broke Lotsa Things Too
The dark side of any major rewrite: lots of options previously supported have been put on ice, and I doubtlessly messed up here and there. But such is the price of progress… In any case, just be prepared to caveat your emptor when you download the new version and, by all means, don’t be shy about submitting bug reports.
Under the Hood
Huge changes here. I wanted for a long time to tighten the way the module’s scripts are handled and cut a little bit on the system()
calls. After test-driving MooseX::App::Cmd, MooseX::App, and MooX::Cmd, I decided to try my luck with MooseX::App. (The three modules, incidentally, are very close to each other in term of feature-set. To decide which one would be best for me, I ended up writing the same Proof of Concept mini-app with each of them. If anyone’s interested, I can share the results on GitHub.)
Net result: everything is much more concise and organized.
Functionality used by more than one command got shoved in roles. For example, interactions with the repository are now the dominion of Git::CPAN::Patch::Role::Git
:
use strict;
use warnings;
use Method::Signatures;
use version;
use Git::Repository;
use Moose::Role;
use MooseX::App::Role;
use MooseX::SemiAffordanceAccessor;
option root => (
is => ‘rw’,
isa => ‘Str’,
default => ‘.’ ,
documentation => ‘Location of the Git repository’,
);
has git => (
is => ‘ro’,
isa => ‘Git::Repository’,
lazy => 1,
default => method {
Git::Repository->new(
work_tree => $self->root
);
},
handles => {
git_run => ‘run’,
},
);
method last_commit {
eval { $self->git_run(‘rev-parse’, ‘–verify’, ‘cpan/master’) }
}
method last_imported_version {
my $last_commit = $self->last_commit or return version->parse(0);
my $last = join "\n", $self->git_run( log => ‘–pretty=format:%b’, ‘-n’, 1, $last_commit );
$last =~ /git-cpan-module:\ (.*?) \s+ git-cpan-version: \s+ (\S+)/sx
or die "Couldn’t parse message:\n$last\n";
return version->parse($2);
}
method tracked_distribution {
my $last_commit = $self->last_commit or return;
my $last = join "\n", $self->git_run( log => ‘–pretty=format:%b’, ‘-n’, 1, $last_commit );
$last =~ /git-cpan-module:\s+ (.*?) \s+ git-cpan-version: \s+ (\S+)/sx
or die "Couldn’t parse message:\n$last\n";
return $1;
}
method first_import {
return !$self->last_commit;
}
1;
[/perl]
One of the very nice things about this is that as soon as a command consumes that Git role, it automatically absorbs the cli options related to it as well. Lovely DRY stuff, that is.
Another win in terms of DRYness is how commands that build on each other don’t have to repeat anything. For example, the clone
command is just like import
, but it also initializes the Git repository and smacks the master
branch on the CPAN checkout. And its module reflects just that:
use 5.10.0;
use strict;
use warnings;
use autodie;
use Path::Class;
use Method::Signatures;
use MooseX::App::Command;
extends ‘Git::CPAN::Patch::Command::Import’;
before import_release => method($release) {
state $first = 1;
return unless $first;
my $target = $self->extra_argv->[1] || $release->dist_name;
say "creating $target";
dir($target)->mkpath;
Git::Repository->run( init => $target );
$self->set_root($target);
$first = 0;
};
after import_release => method(…) {
$self->git_run( ‘reset’, ‘–hard’, $self->last_commit );
};
__PACKAGE__->meta->make_immutable;
1;
[/perl]
Doing Things to MooseX:App
Although I said that MooseX::App
was the cli system module closest to what I wanted, it wasn’t exactly what I wanted as you can suspect. So I had to do a couple of things. Some were fairly clean and already pushed as patches, others…shamefully monkeypatched from within Git::CPAN::Patch. (I know, I know, I’m a bad boy.) I added a global --man
option sprouting the whole script’s manpage via Pod::Usage to go along the already-present --help
. I was also not in love with the commands using underscores instead of dashes and easily fixed that. And lastly, the usage summary for the sub-commands was hard-coded, which is distinctly sub-optimal when they are supposed to take arguments. Well, what I did so far is fairly horrible (and will be made less atrocious soon, I swear), but I’m happy to report that the usage now mirrors the sub-command’s SYNOPSIS
.
usage:
% git-cpan sendpatch
description:
This command runs git cpan-format-patch and then if there is one patch
file runs git cpan-send-email.
Multiple patches are not sent because git send-email creates a separate
message for each patch file, resulting in multiple tickets.
options:
–help –usage -? Prints this usage information. [Flag]
–root Location of the Git repository [Default:"."]
[/bash]
What’s Next?
Clearly, fixing all that I broke during the refactoring frenzy is a must. Then, I’ll tap in the fact that the MetaCPAN information includes the location of the module’s official repository to add the possibility to clone the module from there as well. And, continuing in that vein, I’ll look into potential synergies between Git::CPAN::Patch
and App::gh.
3 Comments. Leave new
How did you figure out how to use MooX::Cmd? The documentation is useless and explains nothing.
The documentation is not that bad, really. The trick is to read it, experiment a wee bit, then read it again, and repeat the cycle until the Eurekas set in. Of course, being more pig-headed than any self-respecting bulldogs is a helpful skill to see you through the process. :-)
I’ve tried reading and experimenting and I’ve got nothing. The code doesn’t do anything. Not surprising considering the documentation doesn’t say which, if any, of the classes needs to be instantiated, or what method needs to be run (running a sample “execute” method does nothing).
Nor does it say what you need to do if you want to skip a link in the chain and only have “myapp command”, but not “myapp”, run a command.