have disttest on release include xt tests and RELEASE_TESTING=1
[p5sagit/Distar.git] / lib / Distar.pm
CommitLineData
42e08a83 1package Distar;
2
362ec4af 3use strict;
4use warnings FATAL => 'all';
42e08a83 5use base qw(Exporter);
ca3b3b8a 6use ExtUtils::MakeMaker ();
7use ExtUtils::MM ();
42e08a83 8
f6286f60 9our $VERSION = '0.002000';
37e295d8 10$VERSION = eval $VERSION;
11
e076eedb 12my $MM_VER = eval $ExtUtils::MakeMaker::VERSION;
13
42e08a83 14our @EXPORT = qw(
be032607 15 author manifest_include readme_generator
42e08a83 16);
17
18sub import {
2852faf3 19 strict->import;
20 warnings->import(FATAL => 'all');
42e08a83 21 shift->export_to_level(1,@_);
22}
23
e076eedb 24sub author {
25 our $Author = shift;
26 $Author = [ $Author ]
27 if !ref $Author;
28}
42e08a83 29
30our @Manifest = (
31 'lib' => '.pm',
7b9318ce 32 'lib' => '.pod',
42e08a83 33 't' => '.t',
34 't/lib' => '.pm',
35 'xt' => '.t',
36 'xt/lib' => '.pm',
1d950b4a 37 '' => qr{[^/]*\.PL},
f1ef306e 38 '' => qr{Changes|MANIFEST|README|LICENSE|META\.yml},
42e08a83 39 'maint' => qr{[^.].*},
40);
41
42sub manifest_include {
43 push @Manifest, @_;
44}
45
6e83c113 46sub readme_generator {
f6286f60 47 die "readme_generator unsupported" if @_ && $_[0];
6e83c113 48}
49
42e08a83 50sub write_manifest_skip {
0fa73f76 51 my ($mm) = @_;
42e08a83 52 my @files = @Manifest;
53 my @parts;
54 while (my ($dir, $spec) = splice(@files, 0, 2)) {
55 my $re = ($dir ? $dir.'/' : '').
56 ((ref($spec) eq 'Regexp')
57 ? $spec
58 : !ref($spec)
59 ? ".*\Q${spec}\E"
a3e39afd 60 # print ref as well as stringification in case of overload ""
42e08a83 61 : die "spec must be string or regexp, was: ${spec} (${\ref $spec})");
62 push @parts, $re;
63 }
0fa73f76 64 my $dist_name = $mm->{DISTNAME};
65 my $include = join '|', map "${_}\$", @parts;
66 my $final = "^(?:\Q$dist_name\E-v?[0-9_.]+/|(?!$include))";
19916679 67 open my $skip, '>', 'MANIFEST.SKIP'
68 or die "can't open MANIFEST.SKIP: $!";
42e08a83 69 print $skip "${final}\n";
70 close $skip;
71}
72
ca3b3b8a 73{
74 package Distar::MM;
9af7ff2e 75 our @ISA = @MM::ISA;
76 @MM::ISA = (__PACKAGE__);
ca3b3b8a 77
78 sub new {
79 my ($class, $args) = @_;
80 return $class->SUPER::new({
180e908e 81 LICENSE => 'perl_5',
53e1282f 82 MIN_PERL_VERSION => '5.006',
0cc25268 83 AUTHOR => ($MM_VER >= 6.5702 ? $Distar::Author : join(', ', @$Distar::Author)),
c12b6d29 84 %$args,
ca3b3b8a 85 ABSTRACT_FROM => $args->{VERSION_FROM},
c194baba 86 test => { TESTS => ($args->{test}{TESTS}||'t/*.t').' xt/*.t xt/*/*.t' },
0a3fdb23 87 realclean => { FILES => (
88 ($args->{realclean}{FILES}||'')
89 . ' Distar/ MANIFEST.SKIP MANIFEST MANIFEST.bak'
90 ) },
ca3b3b8a 91 });
92 }
93
eddb1ce6 94 sub flush {
95 my $self = shift;
0fa73f76 96 Distar::write_manifest_skip($self);
eddb1ce6 97 $self->SUPER::flush(@_);
98 }
99
ca3b3b8a 100 sub dist_test {
101 my $self = shift;
8ab5ea70 102 my $dist_test = $self->SUPER::dist_test(@_);
103
81d518f6 104 $dist_test .= <<"END";
b0401762 105
ca3b3b8a 106# --- Distar section:
81d518f6 107
108REMAKE = \$(PERLRUN) Makefile.PL @{[ map { $self->quote_literal($_) } @ARGV ]}
109
110END
111 $dist_test .= <<'END';
5154970c 112preflight:
be032607 113 $(ABSPERLRUN) Distar/helpers/preflight $(VERSION)
3e632431 114releasetest:
115 $(MAKE) disttest RELEASE_TESTING=1 TEST_FILES="$(TEST_FILES)"
116release: preflight releasetest
81d518f6 117 $(RM_RF) $(DISTVNAME)
27dbd26e 118 $(MAKE) $(DISTVNAME).tar$(SUFFIX)
42e08a83 119 git commit -a -m "Release commit for $(VERSION)"
401ece0b 120 git tag v$(VERSION) -m "release v$(VERSION)"
65a1f7d9 121 cpan-upload $(DISTVNAME).tar$(SUFFIX)
2c636792 122 git push origin v$(VERSION) HEAD
5154970c 123distdir: readmefile
f6286f60 124readmefile: create_distdir $(DISTVNAME)/README
125 $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) ../Distar/helpers/add-to-manifest README
126$(DISTVNAME)/README: $(VERSION_FROM)
127 $(NOECHO) $(MKPATH) $(DISTVNAME)
128 pod2text $(VERSION_FROM) >$(DISTVNAME)/README
de048fa8 129disttest: distmanicheck
792c9e91 130distmanicheck: create_distdir
131 cd $(DISTVNAME) && $(ABSPERLRUN) "-MExtUtils::Manifest=manicheck" -e "exit manicheck"
e7a78651 132nextrelease:
133 $(ABSPERLRUN) Distar/helpers/add-changelog-heading $(VERSION) Changes
c1a1a773 134 GIT_DIFF_OPTS=-u`$(ABSPERLRUN) Distar/helpers/changelog-context $(VERSION) Changes` git add -p Changes
0edb27b8 135refresh:
136 cd Distar && git pull
137 rm Makefile
138 $(REMAKE)
8ab5ea70 139END
ca3b3b8a 140
81d518f6 141 my $include = '';
142 if (open my $fh, '<', 'maint/Makefile.include') {
143 $include = "\n# --- Makefile.include:\n" . do { local $/; <$fh> };
144 }
145
8ab5ea70 146 for my $type ('', 'minor', 'major') {
147 if ($include !~ /^bump$type:/m) {
148 my $arg = $type || '$(V)';
149 $dist_test .= <<"END"
150bump$type:
81d518f6 151 \$(ABSPERLRUN) Distar/helpers/bump-version --git \$(VERSION) $arg
152 \$(RM_F) \$(FIRST_MAKEFILE)
ece2756d 153 \$(REMAKE)
42e08a83 154END
8ab5ea70 155 }
a2f6bc7b 156 }
8ab5ea70 157
158 $dist_test .= $include . "\n";
159
ca3b3b8a 160 return $dist_test;
42e08a83 161 }
162}
163
42e08a83 1641;