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