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