~ubuntu-branches/ubuntu/wily/libtext-sprintfn-perl/wily

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Package Import Robot
  • Author(s): Jonas Smedegaard, upstream, Jonas Smedegaard
  • Date: 2015-08-04 11:47:58 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20150804114758-ywzpik08uj1h2y1a
Tags: 0.07-1
[ upstream ]
* New release.

[ Jonas Smedegaard ]
* Switch download URL for get-orig-source target.
* Modernize git-buildpackage config: Avoid git- prefix.
* Update copyright info:
  + Extend coverage of packaging to include current year.
  + Use License-Grant and License-Reference fields.
    Thanks to Ben Finney.
  + Replace (yes, not add) main upstream author.
* Bump debhelper compatibility level to 9.
* Add another author-specific download URL to watch file.
* Override lintian regarding build-depending unversioned on debhelper.
* Override lintian regarding license in License-Reference field.
  See bug#786450.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.029.
 
3
use strict;
 
4
use warnings;
 
5
 
 
6
use 5.010001;
 
7
 
 
8
use ExtUtils::MakeMaker;
 
9
 
 
10
 
 
11
 
 
12
my %WriteMakefileArgs = (
 
13
  "ABSTRACT" => "Drop-in replacement for sprintf(), with named parameter support",
 
14
  "AUTHOR" => "perlancar <perlancar\@cpan.org>",
 
15
  "CONFIGURE_REQUIRES" => {
 
16
    "ExtUtils::MakeMaker" => 0,
 
17
    "Perl::osnames" => "0.09"
 
18
  },
 
19
  "DISTNAME" => "Text-sprintfn",
 
20
  "EXE_FILES" => [],
 
21
  "LICENSE" => "perl",
 
22
  "MIN_PERL_VERSION" => "5.010001",
 
23
  "NAME" => "Text::sprintfn",
 
24
  "PREREQ_PM" => {},
 
25
  "TEST_REQUIRES" => {
 
26
    "File::Spec" => 0,
 
27
    "IO::Handle" => 0,
 
28
    "IPC::Open3" => 0,
 
29
    "Test::More" => "0.98"
 
30
  },
 
31
  "VERSION" => "0.07",
 
32
  "test" => {
 
33
    "TESTS" => "t/*.t"
 
34
  }
 
35
);
 
36
 
 
37
 
 
38
my %FallbackPrereqs = (
 
39
  "ExtUtils::MakeMaker" => 0,
 
40
  "File::Spec" => 0,
 
41
  "IO::Handle" => 0,
 
42
  "IPC::Open3" => 0,
 
43
  "Perl::osnames" => "0.09",
 
44
  "Test::More" => "0.98"
 
45
);
 
46
 
 
47
 
 
48
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
 
49
  delete $WriteMakefileArgs{TEST_REQUIRES};
 
50
  delete $WriteMakefileArgs{BUILD_REQUIRES};
 
51
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
 
52
}
 
53
 
 
54
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
 
55
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
 
56
 
 
57
WriteMakefile(%WriteMakefileArgs);
 
58
 
 
59
 
 
60