Codebase list libconfig-properties-perl-upstream / 359d0a7
add repository metadata; prepare for release 1.79 Salvador Fandino 8 years ago
3 changed file(s) with 16 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
00 Revision history for Perl extension Config::Properties.
1
2 1.79 May 7, 2015
3 - add repository metadata
14
25 1.78 May 7, 2015
36 - accept any end of line terminator (i.e. "\r\n", "\r" or "\n")
11
22 use ExtUtils::MakeMaker;
33
4 WriteMakefile( 'NAME' => 'Config::Properties',
5 'VERSION_FROM' => 'lib/Config/Properties.pm',
6 'PREREQ_PM' => { 'Test::More' => 0,
7 'File::Temp' => 0,
8 'Text::Wrap' => '2001.0929' } );
4 my %opts = ( NAME => 'Config::Properties',
5 VERSION_FROM => 'lib/Config/Properties.pm',
6 ABSTRACT_FROM => 'lib/Config/Properties.pm',
7 PREREQ_PM => { 'Test::More' => 0,
8 'File::Temp' => 0,
9 'Text::Wrap' => '2001.0929' });
10
11 $opts{META_MERGE} = { resources =>
12 { repository => 'https://github.com/salva/p5-Config-Properties' } }
13 if $ExtUtils::MakeMaker::VERSION >= 6.46;
14
15 WriteMakefile(%opts);
22 use strict;
33 use warnings;
44
5 our $VERSION = '1.78';
5 our $VERSION = '1.79';
66
77 use IO::Handle;
88 use Carp;