can't disttest as a direct dep of dist contruction - doesn't wipe the distdir and...
[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
55 for (scalar `git status`) {
56 /Your branch is (behind|ahead of)/ && die "Not synced with upstream";
57 }
58
59 for (scalar `git diff`) {
60 length && die "Oustanding changes";
61 }
62 my @cached = grep /^\+/, `git diff --cached -U0`;
63 @cached == 2 or die "Pre-commit Changes not just Changes line";
64 $cached[0] eq "+++ b/Changes\n" or die "Changes not changed";
65 my $ymd = sprintf(
66 "%i-%02i-%02i", (localtime)[5]+1900, (localtime)[4]+1, (localtime)[3]
67 );
68 $cached[1] eq "+$ARGV[0] - $ymd\n" or die "Changes new line should be: \n\n$ARGV[0] - $ymd\n ";
69}
70
42e08a83 71sub MY::postamble { <<'END'; }
5154970c 72preflight:
73 perl -Idistar/lib -MDistar -erun_preflight $(VERSION)
e06cbac3 74upload: preflight $(DISTVNAME).tar$(SUFFIX)
5154970c 75 cpan-upload $(DISTVNAME).tar$(SUFFIX)
42e08a83 76release: upload
77 git commit -a -m "Release commit for $(VERSION)"
78 git tag release_$(VERSION)
79 git push
80 git push --tags
5154970c 81distdir: readmefile
82readmefile: create_distdir
83 pod2text $(VERSION_FROM) >$(DISTVNAME)/README
42e08a83 84END
85
86{
87 no warnings 'redefine';
88 sub main::WriteMakefile {
89 my %args = @_;
42e08a83 90 ExtUtils::MakeMaker::WriteMakefile(
2f88acd6 91 LICENSE => 'perl',
42e08a83 92 @_, AUTHOR => our $Author, ABSTRACT_FROM => $args{VERSION_FROM},
93 test => { TESTS => ($args{test}{TESTS}||'').' xt/*.t' },
94 );
95 }
96}
97
98END {
99 write_manifest_skip()
100}
101
1021;