always skip distdir in manifest
[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)
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
c1a1a773 133 GIT_DIFF_OPTS=-u`$(ABSPERLRUN) Distar/helpers/changelog-context $(VERSION) Changes` 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;