add a version number so we can rely on new features
[p5sagit/Distar.git] / lib / Distar.pm
CommitLineData
42e08a83 1package Distar;
2
3use strictures 1;
4use base qw(Exporter);
ca3b3b8a 5use ExtUtils::MakeMaker ();
6use ExtUtils::MM ();
42e08a83 7
ca313d5a 8use Config;
28268771 9use File::Spec;
ca313d5a 10
37e295d8 11our $VERSION = '0.001000';
12$VERSION = eval $VERSION;
13
42e08a83 14our @EXPORT = qw(
5154970c 15 author manifest_include run_preflight
42e08a83 16);
17
18sub import {
19 strictures->import;
20 shift->export_to_level(1,@_);
21}
22
23sub author { our $Author = shift }
24
d7998bfa 25our $Ran_Preflight;
26
42e08a83 27our @Manifest = (
28 'lib' => '.pm',
29 't' => '.t',
30 't/lib' => '.pm',
31 'xt' => '.t',
32 'xt/lib' => '.pm',
1d950b4a 33 '' => qr{[^/]*\.PL},
42e08a83 34 '' => qr{Changes|MANIFEST|README|META\.yml},
42e08a83 35 'maint' => qr{[^.].*},
36);
37
38sub manifest_include {
39 push @Manifest, @_;
40}
41
42sub write_manifest_skip {
43 use autodie;
44 my @files = @Manifest;
45 my @parts;
46 while (my ($dir, $spec) = splice(@files, 0, 2)) {
47 my $re = ($dir ? $dir.'/' : '').
48 ((ref($spec) eq 'Regexp')
49 ? $spec
50 : !ref($spec)
51 ? ".*\Q${spec}\E"
a3e39afd 52 # print ref as well as stringification in case of overload ""
42e08a83 53 : die "spec must be string or regexp, was: ${spec} (${\ref $spec})");
54 push @parts, $re;
55 }
56 my $final = '^(?!'.join('|', map "${_}\$", @parts).')';
57 open my $skip, '>', 'MANIFEST.SKIP';
58 print $skip "${final}\n";
59 close $skip;
60}
61
5154970c 62sub run_preflight {
d7998bfa 63 $Ran_Preflight = 1;
12b4d7c3 64 my $version = $ARGV[0];
d7998bfa 65
5154970c 66 system("git fetch");
67
ca313d5a 68 my $make = $Config{make};
28268771 69 my $null = File::Spec->devnull;
ca313d5a 70
12b4d7c3 71 require File::Find;
72 File::Find::find({ no_chdir => 1, wanted => sub {
73 return
74 unless -f && /\.pm$/;
75 my $file_version = MM->parse_version($_);
76 die "Module $_ version $file_version doesn't match dist version $version"
77 unless $file_version eq 'undef' || $file_version eq $version;
78 }}, 'lib');
79
4df609ef 80 for (scalar `"$make" manifest 2>&1 >$null`) {
ca313d5a 81 $_ && die "$make manifest changed:\n$_ Go check it and retry";
41c39fda 82 }
83
5154970c 84 for (scalar `git status`) {
50d3c4ad 85 /^# On branch master/ || die "Not on master. EEEK";
325f6231 86 /Your branch is behind|Your branch and .*? have diverged/ && die "Not synced with upstream";
5154970c 87 }
88
89 for (scalar `git diff`) {
7374f43f 90 length && die "Outstanding changes";
5154970c 91 }
5154970c 92 my $ymd = sprintf(
93 "%i-%02i-%02i", (localtime)[5]+1900, (localtime)[4]+1, (localtime)[3]
94 );
59fcfa65 95 my @cached = grep /^\+/, `git diff --cached -U0`;
12b4d7c3 96 @cached > 0 or die "Please add:\n\n$version - $ymd\n\nto Changes stage Changes (git add Changes)";
59fcfa65 97 @cached == 2 or die "Pre-commit Changes not just Changes line";
c373c51b 98 $cached[0] =~ /^\+\+\+ .\/Changes\n/ or die "Changes not changed";
12b4d7c3 99 $cached[1] eq "+$version - $ymd\n" or die "Changes new line should be: \n\n$version - $ymd\n ";
5154970c 100}
101
ca3b3b8a 102{
103 package Distar::MM;
104 our @ISA = @ExtUtils::MM::ISA;
105 @ExtUtils::MM::ISA = (__PACKAGE__);
106
107 sub new {
108 my ($class, $args) = @_;
109 return $class->SUPER::new({
110 LICENSE => 'perl',
111 %$args,
112 AUTHOR => $Distar::Author,
113 ABSTRACT_FROM => $args->{VERSION_FROM},
114 test => { TESTS => ($args->{test}{TESTS}||'t/*.t').' xt/*.t' },
115 });
116 }
117
118 sub dist_test {
119 my $self = shift;
120 my $dist_test = $self->SUPER::dist_test(@_) . <<'END';
b0401762 121
ca3b3b8a 122# --- Distar section:
5154970c 123preflight:
584b890c 124 perl -IDistar/lib -MDistar -erun_preflight $(VERSION)
72932296 125release: preflight
126 $(MAKE) disttest
27dbd26e 127 rm -rf $(DISTVNAME)
128 $(MAKE) $(DISTVNAME).tar$(SUFFIX)
42e08a83 129 git commit -a -m "Release commit for $(VERSION)"
401ece0b 130 git tag v$(VERSION) -m "release v$(VERSION)"
65a1f7d9 131 cpan-upload $(DISTVNAME).tar$(SUFFIX)
2c636792 132 git push origin v$(VERSION) HEAD
5154970c 133distdir: readmefile
134readmefile: create_distdir
135 pod2text $(VERSION_FROM) >$(DISTVNAME)/README
046ee554 136 $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) ../Distar/helpers/add-readme-to-manifest
ca3b3b8a 137
42e08a83 138END
a2f6bc7b 139 if (open my $fh, '<', 'maint/Makefile.include') {
ca3b3b8a 140 $dist_test .= do { local $/; <$fh> };
a2f6bc7b 141 }
ca3b3b8a 142 return $dist_test;
42e08a83 143 }
144}
145
146END {
d7998bfa 147 write_manifest_skip() unless $Ran_Preflight
42e08a83 148}
149
1501;