switch makefile trick
[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   '' => qr{[^/]*\.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     /^# On branch master/ || die "Not on master. EEEK";
65     /Your branch is (behind|ahead of)/ && die "Not synced with upstream";
66   }
67
68   for (scalar `git diff`) {
69     length && die "Oustanding changes";
70   }
71   my $ymd = sprintf(
72     "%i-%02i-%02i", (localtime)[5]+1900, (localtime)[4]+1, (localtime)[3]
73   );
74   my @cached = grep /^\+/, `git diff --cached -U0`;
75   @cached > 0 or die "Please add:\n\n$ARGV[0] - $ymd\n\nto Changes and git add";
76   @cached == 2 or die "Pre-commit Changes not just Changes line";
77   $cached[0] eq "+++ b/Changes\n" or die "Changes not changed";
78   $cached[1] eq "+$ARGV[0] - $ymd\n" or die "Changes new line should be: \n\n$ARGV[0] - $ymd\n ";
79 }
80
81 sub MY::postamble { <<'END'; }
82 preflight:
83         perl -IDistar/lib -MDistar -erun_preflight $(VERSION)
84 release: preflight
85         $(MAKE) disttest
86         rm -rf $(DISTVNAME)
87         $(MAKE) $(DISTVNAME).tar$(SUFFIX)
88         cpan-upload $(DISTVNAME).tar$(SUFFIX)
89         git commit -a -m "Release commit for $(VERSION)"
90         git tag v$(VERSION) -m "release v$(VERSION)"
91         git push --tags
92         git push
93 distdir: readmefile
94 readmefile: create_distdir
95         pod2text $(VERSION_FROM) >$(DISTVNAME)/README
96         $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) -MExtUtils::Manifest=maniadd -e 'eval { maniadd({q{README} => q{README file (added by Distar)}}) } ' \
97           -e '    or print "Could not add README to MANIFEST: $${'\''@'\''}\n"' --
98 END
99
100 {
101   no warnings 'redefine';
102   sub main::WriteMakefile {
103     my %args = @_;
104     ExtUtils::MakeMaker::WriteMakefile(
105       LICENSE => 'perl',
106       @_, AUTHOR => our $Author, ABSTRACT_FROM => $args{VERSION_FROM},
107       test => { TESTS => ($args{test}{TESTS}||'t/*.t').' xt/*.t' },
108     );
109   }
110 }
111
112 END {
113   write_manifest_skip() unless $Ran_Preflight
114 }
115
116 1;