Skip to content

Commit 33752a4

Browse files
Dist-Zilla-Plugin-MakeMaker-Awesome-0.34
- issue a warning when version ranges are passed through to ExtUtils::MakeMaker, which cannot parse them and treats them as '0' (see Perl-Toolchain-Gang/ExtUtils-MakeMaker#215) - omit EXE_FILES argument to WriteMakefile() if there are no such files
1 parent add0856 commit 33752a4

File tree

4 files changed

+30
-12
lines changed

4 files changed

+30
-12
lines changed

CONTRIBUTING

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ follow any of the steps in this document to submit a patch or bug report;
1111
these are just recommendations, intended to help you (and help us help you
1212
faster).
1313

14+
This distribution has a TODO file in the repository; you may want to check
15+
there to see if your issue or patch idea is mentioned.
16+
1417
The distribution is managed with Dist::Zilla (https://metacpan.org/release/Dist-Zilla).
1518
This means than many of the usual files you might expect are not in the
1619
repository, but are generated at release time (e.g. Makefile.PL).
@@ -97,4 +100,4 @@ request to the .mailmap file to contain the correct mapping.
97100

98101

99102
This file was generated via Dist::Zilla::Plugin::GenerateFile::ShareDir 0.005 from a
100-
template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.081.
103+
template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.092.

Changes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Revision history for Dist-Zilla-Plugin-MakeMaker-Awesome
22

3-
{{$NEXT}}
3+
0.34 2015-05-21 02:46:56Z
44
- issue a warning when version ranges are passed through to
55
ExtUtils::MakeMaker, which cannot parse them and treats them as '0'
66
(see https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/issues/215)

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This software is copyright (c) 2014 by Ævar Arnfjörð Bjarmason.
1+
This software is copyright (c) 2015 by Ævar Arnfjörð Bjarmason.
22

33
This is free software; you can redistribute it and/or modify it under
44
the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@ b) the "Artistic License"
1212

1313
--- The GNU General Public License, Version 1, February 1989 ---
1414

15-
This software is Copyright (c) 2014 by Ævar Arnfjörð Bjarmason.
15+
This software is Copyright (c) 2015 by Ævar Arnfjörð Bjarmason.
1616

1717
This is free software, licensed under:
1818

@@ -272,7 +272,7 @@ That's all there is to it!
272272

273273
--- The Artistic License 1.0 ---
274274

275-
This software is Copyright (c) 2014 by Ævar Arnfjörð Bjarmason.
275+
This software is Copyright (c) 2015 by Ævar Arnfjörð Bjarmason.
276276

277277
This is free software, licensed under:
278278

README.pod

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Dist::Zilla::Plugin::MakeMaker::Awesome - A more awesome MakeMaker plugin for L<
88

99
=head1 VERSION
1010

11-
version 0.33
11+
version 0.34
1212

1313
=head1 SYNOPSIS
1414

@@ -58,6 +58,7 @@ key-value pairs, for example:
5858
WriteMakefile_arg = ( $^O eq 'solaris' ? ( CCFLAGS => '-Wall' ) : ())
5959

6060
Can be used more than once.
61+
Available since version 0.21.
6162

6263
=for stopwords DynamicPrereqs
6364

@@ -69,10 +70,12 @@ a look at L<[DynamicPrereqs]|Dist::Zilla::Plugin::DynamicPrereqs> for this.
6970
=head2 header
7071

7172
A line of code which is included near the top of F<Makefile.PL>. Can be used more than once.
73+
Available since version 0.26.
7274

7375
=head2 footer
7476

7577
A line of code which is included at the bottom of F<Makefile.PL>. Can be used more than once.
78+
Available since version 0.26.
7679

7780
=head2 delimiter
7881

@@ -83,18 +86,24 @@ this character at the front allows you to use leading whitespace in an option
8386
string. This is crucial for the formatting of F<Makefile>s, but a nice thing
8487
to have when inserting any block of code.
8588

89+
Available since version 0.27.
90+
8691
=head2 test_file
8792

8893
A glob path given to the C<< test => { TESTS => ... } >> parameter for
8994
L<ExtUtils::MakeMaker/WriteMakefile>. Can be used more than once.
9095
Defaults to F<.t> files under F<t/>. B<NOT> a directory name, despite the name.
9196

97+
Available since version 0.21.
98+
9299
=head2 exe_file
93100

94101
The file given to the C<EXE_FILES> parameter for
95102
L<ExtUtils::MakeMaker/WriteMakefile>. Can be used more than once.
96103
Defaults to using data from C<:ExecDir> plugins.
97104

105+
Available since version 0.21.
106+
98107
=head1 SUBCLASSING
99108

100109
You can further customize the content of F<Makefile.PL> by subclassing this plugin,
@@ -336,10 +345,20 @@ code and passing complex data structures to C<WriteMakefile>.
336345
(_(__/ ./ / \_\ \.
337346
(_(___/ \_____)_)
338347

339-
=head1 AUTHOR
348+
=head1 AUTHORS
349+
350+
=over 4
351+
352+
=item *
340353

341354
Ævar Arnfjörð Bjarmason <[email protected]>
342355

356+
=item *
357+
358+
Karen Etheridge <[email protected]>
359+
360+
=back
361+
343362
=head1 COPYRIGHT AND LICENSE
344363

345364
This software is copyright (c) 2015 by Ævar Arnfjörð Bjarmason.
@@ -349,16 +368,12 @@ the same terms as the Perl 5 programming language system itself.
349368

350369
=head1 CONTRIBUTORS
351370

352-
=for stopwords Karen Etheridge Jesse Luehrs Robin Smidsrød Vladimir Timofeev
371+
=for stopwords Jesse Luehrs Robin Smidsrød Vladimir Timofeev
353372

354373
=over 4
355374

356375
=item *
357376

358-
Karen Etheridge <[email protected]>
359-
360-
=item *
361-
362377
Jesse Luehrs <[email protected]>
363378

364379
=item *

0 commit comments

Comments
 (0)