refactor README handling
[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
ca313d5a 9use Config;
28268771 10use File::Spec;
ca313d5a 11
f6286f60 12our $VERSION = '0.002000';
37e295d8 13$VERSION = eval $VERSION;
14
e076eedb 15my $MM_VER = eval $ExtUtils::MakeMaker::VERSION;
16
42e08a83 17our @EXPORT = qw(
be032607 18 author manifest_include readme_generator
42e08a83 19);
20
21sub import {
2852faf3 22 strict->import;
23 warnings->import(FATAL => 'all');
42e08a83 24 shift->export_to_level(1,@_);
25}
26
e076eedb 27sub author {
28 our $Author = shift;
29 $Author = [ $Author ]
30 if !ref $Author;
31}
42e08a83 32
33our @Manifest = (
34 'lib' => '.pm',
7b9318ce 35 'lib' => '.pod',
42e08a83 36 't' => '.t',
37 't/lib' => '.pm',
38 'xt' => '.t',
39 'xt/lib' => '.pm',
1d950b4a 40 '' => qr{[^/]*\.PL},
42e08a83 41 '' => qr{Changes|MANIFEST|README|META\.yml},
42e08a83 42 'maint' => qr{[^.].*},
43);
44
45sub manifest_include {
46 push @Manifest, @_;
47}
48
6e83c113 49sub readme_generator {
f6286f60 50 die "readme_generator unsupported" if @_ && $_[0];
6e83c113 51}
52
42e08a83 53sub write_manifest_skip {
42e08a83 54 my @files = @Manifest;
55 my @parts;
56 while (my ($dir, $spec) = splice(@files, 0, 2)) {
57 my $re = ($dir ? $dir.'/' : '').
58 ((ref($spec) eq 'Regexp')
59 ? $spec
60 : !ref($spec)
61 ? ".*\Q${spec}\E"
a3e39afd 62 # print ref as well as stringification in case of overload ""
42e08a83 63 : die "spec must be string or regexp, was: ${spec} (${\ref $spec})");
64 push @parts, $re;
65 }
66 my $final = '^(?!'.join('|', map "${_}\$", @parts).')';
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;
96 Distar::write_manifest_skip();
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)
72932296 114release: preflight
115 $(MAKE) disttest
81d518f6 116 $(RM_RF) $(DISTVNAME)
27dbd26e 117 $(MAKE) $(DISTVNAME).tar$(SUFFIX)
42e08a83 118 git commit -a -m "Release commit for $(VERSION)"
401ece0b 119 git tag v$(VERSION) -m "release v$(VERSION)"
65a1f7d9 120 cpan-upload $(DISTVNAME).tar$(SUFFIX)
2c636792 121 git push origin v$(VERSION) HEAD
5154970c 122distdir: readmefile
f6286f60 123readmefile: create_distdir $(DISTVNAME)/README
124 $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) ../Distar/helpers/add-to-manifest README
125$(DISTVNAME)/README: $(VERSION_FROM)
126 $(NOECHO) $(MKPATH) $(DISTVNAME)
127 pod2text $(VERSION_FROM) >$(DISTVNAME)/README
de048fa8 128disttest: distmanicheck
792c9e91 129distmanicheck: create_distdir
130 cd $(DISTVNAME) && $(ABSPERLRUN) "-MExtUtils::Manifest=manicheck" -e "exit manicheck"
e7a78651 131nextrelease:
132 $(ABSPERLRUN) Distar/helpers/add-changelog-heading $(VERSION) Changes
133 git add -p Changes
0edb27b8 134refresh:
135 cd Distar && git pull
136 rm Makefile
137 $(REMAKE)
8ab5ea70 138END
ca3b3b8a 139
81d518f6 140 my $include = '';
141 if (open my $fh, '<', 'maint/Makefile.include') {
142 $include = "\n# --- Makefile.include:\n" . do { local $/; <$fh> };
143 }
144
8ab5ea70 145 for my $type ('', 'minor', 'major') {
146 if ($include !~ /^bump$type:/m) {
147 my $arg = $type || '$(V)';
148 $dist_test .= <<"END"
149bump$type:
81d518f6 150 \$(ABSPERLRUN) Distar/helpers/bump-version --git \$(VERSION) $arg
151 \$(RM_F) \$(FIRST_MAKEFILE)
ece2756d 152 \$(REMAKE)
42e08a83 153END
8ab5ea70 154 }
a2f6bc7b 155 }
8ab5ea70 156
157 $dist_test .= $include . "\n";
158
ca3b3b8a 159 return $dist_test;
42e08a83 160 }
161}
162
42e08a83 1631;