X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDistar.pm;h=510e3e7c8b288de8da3aae22541cabcf9f138370;hb=a69e85aab1581b3acfe74224afa816431ed63e22;hp=5ffd7b5f4ef7650ed98a9330ab50a7e8a03fe651;hpb=452dfa09a0bbc41ab7103894868f0bec4b0bb921;p=p5sagit%2FDistar.git diff --git a/lib/Distar.pm b/lib/Distar.pm index 5ffd7b5..510e3e7 100644 --- a/lib/Distar.pm +++ b/lib/Distar.pm @@ -1,32 +1,41 @@ package Distar; -use strictures 1; +use strict; +use warnings FATAL => 'all'; use base qw(Exporter); +use ExtUtils::MakeMaker (); +use ExtUtils::MM (); -use Config; -use File::Spec; +our $VERSION = '0.002000'; +$VERSION = eval $VERSION; + +my $MM_VER = eval $ExtUtils::MakeMaker::VERSION; our @EXPORT = qw( - author manifest_include run_preflight + author manifest_include readme_generator ); sub import { - strictures->import; + strict->import; + warnings->import(FATAL => 'all'); shift->export_to_level(1,@_); } -sub author { our $Author = shift } - -our $Ran_Preflight; +sub author { + our $Author = shift; + $Author = [ $Author ] + if !ref $Author; +} our @Manifest = ( 'lib' => '.pm', + 'lib' => '.pod', 't' => '.t', 't/lib' => '.pm', 'xt' => '.t', 'xt/lib' => '.pm', '' => qr{[^/]*\.PL}, - '' => qr{Changes|MANIFEST|README|META\.yml}, + '' => qr{Changes|MANIFEST|README|LICENSE|META\.yml}, 'maint' => qr{[^.].*}, ); @@ -34,8 +43,11 @@ sub manifest_include { push @Manifest, @_; } +sub readme_generator { + die "readme_generator unsupported" if @_ && $_[0]; +} + sub write_manifest_skip { - use autodie; my @files = @Manifest; my @parts; while (my ($dir, $spec) = splice(@files, 0, 2)) { @@ -49,78 +61,100 @@ sub write_manifest_skip { push @parts, $re; } my $final = '^(?!'.join('|', map "${_}\$", @parts).')'; - open my $skip, '>', 'MANIFEST.SKIP'; + open my $skip, '>', 'MANIFEST.SKIP' + or die "can't open MANIFEST.SKIP: $!"; print $skip "${final}\n"; close $skip; } -sub run_preflight { - $Ran_Preflight = 1; +{ + package Distar::MM; + our @ISA = @MM::ISA; + @MM::ISA = (__PACKAGE__); + + sub new { + my ($class, $args) = @_; + return $class->SUPER::new({ + LICENSE => 'perl_5', + MIN_PERL_VERSION => '5.006', + AUTHOR => ($MM_VER >= 6.5702 ? $Distar::Author : join(', ', @$Distar::Author)), + %$args, + ABSTRACT_FROM => $args->{VERSION_FROM}, + test => { TESTS => ($args->{test}{TESTS}||'t/*.t').' xt/*.t xt/*/*.t' }, + realclean => { FILES => ( + ($args->{realclean}{FILES}||'') + . ' Distar/ MANIFEST.SKIP MANIFEST MANIFEST.bak' + ) }, + }); + } - system("git fetch"); + sub flush { + my $self = shift; + Distar::write_manifest_skip(); + $self->SUPER::flush(@_); + } - my $make = $Config{make}; - my $null = File::Spec->devnull; + sub dist_test { + my $self = shift; + my $dist_test = $self->SUPER::dist_test(@_); - for (scalar `"$make" manifest 2>&1 >$null`) { - $_ && die "$make manifest changed:\n$_ Go check it and retry"; - } + $dist_test .= <<"END"; - for (scalar `git status`) { - /^# On branch master/ || die "Not on master. EEEK"; - /Your branch is behind|Your branch and .*? have diverged/ && die "Not synced with upstream"; - } +# --- Distar section: - for (scalar `git diff`) { - length && die "Outstanding changes"; - } - my $ymd = sprintf( - "%i-%02i-%02i", (localtime)[5]+1900, (localtime)[4]+1, (localtime)[3] - ); - my @cached = grep /^\+/, `git diff --cached -U0`; - @cached > 0 or die "Please add:\n\n$ARGV[0] - $ymd\n\nto Changes stage Changes (git add Changes)"; - @cached == 2 or die "Pre-commit Changes not just Changes line"; - $cached[0] =~ /^\+\+\+ .\/Changes\n/ or die "Changes not changed"; - $cached[1] eq "+$ARGV[0] - $ymd\n" or die "Changes new line should be: \n\n$ARGV[0] - $ymd\n "; -} +REMAKE = \$(PERLRUN) Makefile.PL @{[ map { $self->quote_literal($_) } @ARGV ]} -sub MY::postamble { - my $post = <<'END'; +END + $dist_test .= <<'END'; preflight: - perl -IDistar/lib -MDistar -erun_preflight $(VERSION) + $(ABSPERLRUN) Distar/helpers/preflight $(VERSION) release: preflight $(MAKE) disttest - rm -rf $(DISTVNAME) + $(RM_RF) $(DISTVNAME) $(MAKE) $(DISTVNAME).tar$(SUFFIX) git commit -a -m "Release commit for $(VERSION)" git tag v$(VERSION) -m "release v$(VERSION)" cpan-upload $(DISTVNAME).tar$(SUFFIX) - git push origin --tags HEAD + git push origin v$(VERSION) HEAD distdir: readmefile -readmefile: create_distdir +readmefile: create_distdir $(DISTVNAME)/README + $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) ../Distar/helpers/add-to-manifest README +$(DISTVNAME)/README: $(VERSION_FROM) + $(NOECHO) $(MKPATH) $(DISTVNAME) pod2text $(VERSION_FROM) >$(DISTVNAME)/README - $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) ../Distar/helpers/add-readme-to-manifest +disttest: distmanicheck +distmanicheck: create_distdir + cd $(DISTVNAME) && $(ABSPERLRUN) "-MExtUtils::Manifest=manicheck" -e "exit manicheck" +nextrelease: + $(ABSPERLRUN) Distar/helpers/add-changelog-heading $(VERSION) Changes + git add -p Changes +refresh: + cd Distar && git pull + rm Makefile + $(REMAKE) END + + my $include = ''; if (open my $fh, '<', 'maint/Makefile.include') { - $post .= do { local $/; <$fh> }; + $include = "\n# --- Makefile.include:\n" . do { local $/; <$fh> }; } - return $post; -} -{ - no warnings 'redefine'; - sub main::WriteMakefile { - my %args = @_; - ExtUtils::MakeMaker::WriteMakefile( - LICENSE => 'perl', - @_, AUTHOR => our $Author, ABSTRACT_FROM => $args{VERSION_FROM}, - test => { TESTS => ($args{test}{TESTS}||'t/*.t').' xt/*.t' }, - ); - } -} + for my $type ('', 'minor', 'major') { + if ($include !~ /^bump$type:/m) { + my $arg = $type || '$(V)'; + $dist_test .= <<"END" +bump$type: + \$(ABSPERLRUN) Distar/helpers/bump-version --git \$(VERSION) $arg + \$(RM_F) \$(FIRST_MAKEFILE) + \$(REMAKE) +END + } + } -END { - write_manifest_skip() unless $Ran_Preflight + $dist_test .= $include . "\n"; + + return $dist_test; + } } 1;