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