don't overwrite manifest after preflight
[p5sagit/Distar.git] / lib / Distar.pm
1 package Distar;
2
3 use strictures 1;
4 use base qw(Exporter);
5
6 our @EXPORT = qw(
7   author manifest_include run_preflight
8 );
9
10 sub import {
11   strictures->import;
12   shift->export_to_level(1,@_);
13 }
14
15 sub author { our $Author = shift }
16
17 our $Ran_Preflight;
18
19 our @Manifest = (
20   'lib' => '.pm',
21   't' => '.t',
22   't/lib' => '.pm',
23   'xt' => '.t',
24   'xt/lib' => '.pm',
25   '' => '.PL',
26   '' => qr{Changes|MANIFEST|README|META\.yml},
27   'maint' => qr{[^.].*},
28 );
29
30 sub manifest_include {
31   push @Manifest, @_;
32 }
33
34 sub write_manifest_skip {
35   use autodie;
36   my @files = @Manifest;
37   my @parts;
38   while (my ($dir, $spec) = splice(@files, 0, 2)) {
39     my $re = ($dir ? $dir.'/' : '').
40       ((ref($spec) eq 'Regexp')
41         ? $spec
42         : !ref($spec)
43           ? ".*\Q${spec}\E"
44             # print ref as well as stringification in case of overload ""
45           : die "spec must be string or regexp, was: ${spec} (${\ref $spec})");
46     push @parts, $re;
47   }
48   my $final = '^(?!'.join('|', map "${_}\$", @parts).')';
49   open my $skip, '>', 'MANIFEST.SKIP';
50   print $skip "${final}\n";
51   close $skip;
52 }
53
54 sub run_preflight {
55   $Ran_Preflight = 1;
56
57   system("git fetch");
58
59   for (scalar `make manifest 2>&1 >/dev/null`) {
60     $_ && die "make manifest changed:\n$_ Go check it and retry";
61   }
62
63   for (scalar `git status`) {
64     /Your branch is (behind|ahead of)/ && die "Not synced with upstream";
65   }
66
67   for (scalar `git diff`) {
68     length && die "Oustanding changes";
69   }
70   my $ymd = sprintf(
71     "%i-%02i-%02i", (localtime)[5]+1900, (localtime)[4]+1, (localtime)[3]
72   );
73   my @cached = grep /^\+/, `git diff --cached -U0`;
74   @cached > 0 or die "Please add:\n\n$ARGV[0] - $ymd\n\nto Changes and git add";
75   @cached == 2 or die "Pre-commit Changes not just Changes line";
76   $cached[0] eq "+++ b/Changes\n" or die "Changes not changed";
77   $cached[1] eq "+$ARGV[0] - $ymd\n" or die "Changes new line should be: \n\n$ARGV[0] - $ymd\n ";
78 }
79
80 sub MY::postamble { <<'END'; }
81 preflight:
82         perl -IDistar/lib -MDistar -erun_preflight $(VERSION)
83 upload: preflight $(DISTVNAME).tar$(SUFFIX)
84         cpan-upload $(DISTVNAME).tar$(SUFFIX)
85 release: upload
86         git commit -a -m "Release commit for $(VERSION)"
87         git tag v$(VERSION) -m "release v$(VERSION)"
88         git push --tags
89         git push
90 distdir: readmefile
91 readmefile: create_distdir
92         pod2text $(VERSION_FROM) >$(DISTVNAME)/README
93         $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) -MExtUtils::Manifest=maniadd -e 'eval { maniadd({q{README} => q{README file (added by Distar)}}) } ' \
94           -e '    or print "Could not add README to MANIFEST: $${'\''@'\''}\n"' --
95 END
96
97 {
98   no warnings 'redefine';
99   sub main::WriteMakefile {
100     my %args = @_;
101     ExtUtils::MakeMaker::WriteMakefile(
102       LICENSE => 'perl',
103       @_, AUTHOR => our $Author, ABSTRACT_FROM => $args{VERSION_FROM},
104       test => { TESTS => ($args{test}{TESTS}||'t/*.t').' xt/*.t' },
105     );
106   }
107 }
108
109 END {
110   write_manifest_skip() unless $Ran_Preflight
111 }
112
113 1;