test that VERSION has been changed earlier
[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 {
42e08a83 43 my @files = @Manifest;
44 my @parts;
45 while (my ($dir, $spec) = splice(@files, 0, 2)) {
46 my $re = ($dir ? $dir.'/' : '').
47 ((ref($spec) eq 'Regexp')
48 ? $spec
49 : !ref($spec)
50 ? ".*\Q${spec}\E"
a3e39afd 51 # print ref as well as stringification in case of overload ""
42e08a83 52 : die "spec must be string or regexp, was: ${spec} (${\ref $spec})");
53 push @parts, $re;
54 }
55 my $final = '^(?!'.join('|', map "${_}\$", @parts).')';
19916679 56 open my $skip, '>', 'MANIFEST.SKIP'
57 or die "can't open MANIFEST.SKIP: $!";
42e08a83 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
ca313d5a 66 my $make = $Config{make};
28268771 67 my $null = File::Spec->devnull;
ca313d5a 68
a973b068 69 system("git fetch");
70 if (system("git rev-parse --quiet --verify v$version >$null") == 0) {
71 die "Tag v$version already exists!";
72 }
73
12b4d7c3 74 require File::Find;
75 File::Find::find({ no_chdir => 1, wanted => sub {
76 return
77 unless -f && /\.pm$/;
78 my $file_version = MM->parse_version($_);
79 die "Module $_ version $file_version doesn't match dist version $version"
80 unless $file_version eq 'undef' || $file_version eq $version;
81 }}, 'lib');
82
4df609ef 83 for (scalar `"$make" manifest 2>&1 >$null`) {
ca313d5a 84 $_ && die "$make manifest changed:\n$_ Go check it and retry";
41c39fda 85 }
86
5154970c 87 for (scalar `git status`) {
50d3c4ad 88 /^# On branch master/ || die "Not on master. EEEK";
325f6231 89 /Your branch is behind|Your branch and .*? have diverged/ && die "Not synced with upstream";
5154970c 90 }
91
92 for (scalar `git diff`) {
7374f43f 93 length && die "Outstanding changes";
5154970c 94 }
5154970c 95 my $ymd = sprintf(
96 "%i-%02i-%02i", (localtime)[5]+1900, (localtime)[4]+1, (localtime)[3]
97 );
e2d04df8 98 my $changes_line = "$version $ymd\n";
59fcfa65 99 my @cached = grep /^\+/, `git diff --cached -U0`;
e2d04df8 100 @cached > 0 or die "Please add:\n\n$changes_line\nto Changes stage Changes (git add Changes)";
59fcfa65 101 @cached == 2 or die "Pre-commit Changes not just Changes line";
c373c51b 102 $cached[0] =~ /^\+\+\+ .\/Changes\n/ or die "Changes not changed";
e2d04df8 103 $cached[1] eq "+$changes_line" or die "Changes new line should be: \n\n$changes_line ";
5154970c 104}
105
ca3b3b8a 106{
107 package Distar::MM;
108 our @ISA = @ExtUtils::MM::ISA;
109 @ExtUtils::MM::ISA = (__PACKAGE__);
110
111 sub new {
112 my ($class, $args) = @_;
113 return $class->SUPER::new({
114 LICENSE => 'perl',
115 %$args,
116 AUTHOR => $Distar::Author,
117 ABSTRACT_FROM => $args->{VERSION_FROM},
118 test => { TESTS => ($args->{test}{TESTS}||'t/*.t').' xt/*.t' },
119 });
120 }
121
122 sub dist_test {
123 my $self = shift;
124 my $dist_test = $self->SUPER::dist_test(@_) . <<'END';
b0401762 125
ca3b3b8a 126# --- Distar section:
5154970c 127preflight:
584b890c 128 perl -IDistar/lib -MDistar -erun_preflight $(VERSION)
72932296 129release: preflight
130 $(MAKE) disttest
27dbd26e 131 rm -rf $(DISTVNAME)
132 $(MAKE) $(DISTVNAME).tar$(SUFFIX)
42e08a83 133 git commit -a -m "Release commit for $(VERSION)"
401ece0b 134 git tag v$(VERSION) -m "release v$(VERSION)"
65a1f7d9 135 cpan-upload $(DISTVNAME).tar$(SUFFIX)
2c636792 136 git push origin v$(VERSION) HEAD
5154970c 137distdir: readmefile
138readmefile: create_distdir
139 pod2text $(VERSION_FROM) >$(DISTVNAME)/README
046ee554 140 $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) ../Distar/helpers/add-readme-to-manifest
ca3b3b8a 141
42e08a83 142END
a2f6bc7b 143 if (open my $fh, '<', 'maint/Makefile.include') {
ca3b3b8a 144 $dist_test .= do { local $/; <$fh> };
a2f6bc7b 145 }
ca3b3b8a 146 return $dist_test;
42e08a83 147 }
148}
149
150END {
d7998bfa 151 write_manifest_skip() unless $Ran_Preflight
42e08a83 152}
153
1541;