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