5aba3ce8f8c1fa4409dec799785fe28ec547d916
[p5sagit/Distar.git] / lib / Distar.pm
1 package Distar;
2 use strict;
3 use warnings FATAL => 'all';
4 use base qw(Exporter);
5 use ExtUtils::MakeMaker ();
6 use ExtUtils::MM ();
7
8 our $VERSION = '0.002000';
9 $VERSION = eval $VERSION;
10
11 my $MM_VER = eval $ExtUtils::MakeMaker::VERSION;
12
13 our @EXPORT = qw(
14   author manifest_include readme_generator
15 );
16
17 sub import {
18   strict->import;
19   warnings->import(FATAL => 'all');
20   shift->export_to_level(1,@_);
21 }
22
23 sub author {
24   our $Author = shift;
25   $Author = [ $Author ]
26     if !ref $Author;
27 }
28
29 our @Manifest = (
30   'lib' => '.pm',
31   'lib' => '.pod',
32   't' => '.t',
33   't/lib' => '.pm',
34   'xt' => '.t',
35   'xt/lib' => '.pm',
36   '' => qr{[^/]*\.PL},
37   '' => qr{Changes|MANIFEST|README|LICENSE|META\.yml},
38   'maint' => qr{[^.].*},
39 );
40
41 sub manifest_include {
42   push @Manifest, @_;
43 }
44
45 sub readme_generator {
46   die "readme_generator unsupported" if @_ && $_[0];
47 }
48
49 sub write_manifest_skip {
50   my ($mm) = @_;
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"
59             # print ref as well as stringification in case of overload ""
60           : die "spec must be string or regexp, was: ${spec} (${\ref $spec})");
61     push @parts, $re;
62   }
63   my $dist_name = $mm->{DISTNAME};
64   my $include = join '|', map "${_}\$", @parts;
65   my $final = "^(?:\Q$dist_name\E-v?[0-9_.]+/|(?!$include))";
66   open my $skip, '>', 'MANIFEST.SKIP'
67     or die "can't open MANIFEST.SKIP: $!";
68   print $skip "${final}\n";
69   close $skip;
70 }
71
72 {
73   package Distar::MM;
74   our @ISA = @MM::ISA;
75   @MM::ISA = (__PACKAGE__);
76
77   sub new {
78     my ($class, $args) = @_;
79     return $class->SUPER::new({
80       LICENSE => 'perl_5',
81       MIN_PERL_VERSION => '5.006',
82       AUTHOR => ($MM_VER >= 6.5702 ? $Distar::Author : join(', ', @$Distar::Author)),
83       ABSTRACT_FROM => $args->{VERSION_FROM},
84       %$args,
85       test => { TESTS => ($args->{test}{TESTS}||'t/*.t').' xt/*.t xt/*/*.t' },
86       realclean => { FILES => (
87         ($args->{realclean}{FILES}||'')
88         . ' Distar/ MANIFEST.SKIP MANIFEST MANIFEST.bak'
89       ) },
90     });
91   }
92
93   sub flush {
94     my $self = shift;
95     Distar::write_manifest_skip($self);
96     $self->SUPER::flush(@_);
97   }
98
99   sub special_targets {
100     my $self = shift;
101     my $targets = $self->SUPER::special_targets(@_);
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;
115     $targets;
116   }
117
118   sub dist_test {
119     my $self = shift;
120
121     my $include = '';
122     if (open my $fh, '<', 'maint/Makefile.include') {
123       $include = "\n# --- Makefile.include:\n\n" . do { local $/; <$fh> };
124       $include =~ s/\n?\z/\n/;
125     }
126
127     my @bump_targets =
128       grep { $include !~ /^bump$_(?: +\w+)*:/m } ('', 'minor', 'major');
129
130     my %vars = (
131       REMAKE => join(' ', '$(PERLRUN)', 'Makefile.PL', map { $self->quote_literal($_) } @ARGV),
132       BRANCH => $self->{BRANCH} ||= 'master',
133       CHANGELOG => $self->{CHANGELOG} ||= 'Changes',
134     );
135
136     join('',
137       $self->SUPER::dist_test(@_),
138       "\n\n# --- Distar section:\n\n",
139       (map "$_ = $vars{$_}\n", sort keys %vars),
140       <<'END',
141
142 preflight:
143         $(ABSPERLRUN) Distar/helpers/preflight $(VERSION) --changelog=$(CHANGELOG) --branch=$(BRANCH)
144 releasetest:
145         $(MAKE) disttest RELEASE_TESTING=1 PASTHRU="$(PASTHRU) TEST_FILES=\"$(TEST_FILES)\""
146 release: preflight releasetest
147         $(RM_RF) $(DISTVNAME)
148         $(MAKE) $(DISTVNAME).tar$(SUFFIX)
149         git commit -a -m "Release commit for $(VERSION)"
150         git tag v$(VERSION) -m "release v$(VERSION)"
151         cpan-upload $(DISTVNAME).tar$(SUFFIX)
152         git push origin v$(VERSION) HEAD
153 distdir: readmefile
154 readmefile: create_distdir
155         $(NOECHO) $(MAKE) $(DISTVNAME)/README
156 $(DISTVNAME)/README: $(VERSION_FROM)
157         $(NOECHO) $(MKPATH) $(DISTVNAME)
158         pod2text $(VERSION_FROM) >$(DISTVNAME)/README
159         $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) ../Distar/helpers/add-to-manifest README
160 disttest: distmanicheck
161 distmanicheck: create_distdir
162         cd $(DISTVNAME) && $(ABSPERLRUN) "-MExtUtils::Manifest=manicheck" -e "exit manicheck"
163 nextrelease:
164         $(ABSPERLRUN) Distar/helpers/add-changelog-heading --git $(VERSION) $(CHANGELOG)
165 refresh:
166         cd Distar && git pull
167         $(RM_F) $(FIRST_MAKEFILE)
168         $(REMAKE)
169 END
170       map(sprintf(<<'END', "bump$_", ($_ || '$(V)')), @bump_targets),
171 %s:
172         $(ABSPERLRUN) Distar/helpers/bump-version --git $(VERSION) %s
173         $(RM_F) $(FIRST_MAKEFILE)
174         $(REMAKE)
175 END
176       $include,
177       "\n",
178     );
179   }
180 }
181
182 1;