[Bps-public-commit] Locale-Maketext-Simple branch, master, updated. f4562b6b855a085d1791f8d1f33d4ac90acc6edd
jesse
jesse at bestpractical.com
Wed Jul 8 17:25:04 EDT 2009
The branch, master has been updated
via f4562b6b855a085d1791f8d1f33d4ac90acc6edd (commit)
via 6130b639b283071bd4708094cec33353b94bdc09 (commit)
via d1b9fa1e865d6a86161e1d06f3994e10590911a4 (commit)
from 3327d72439624383e0fbe8eb080282ee4314b2af (commit)
Summary of changes:
Changes | 10 ++++++++++
Makefile.PL | 19 +++++++++++++------
lib/Locale/Maketext/Simple.pm | 2 +-
3 files changed, 24 insertions(+), 7 deletions(-)
- Log -----------------------------------------------------------------
commit d1b9fa1e865d6a86161e1d06f3994e10590911a4
Author: Jesse Vincent <jesse at bestpractical.com>
Date: Wed Jul 8 15:42:04 2009 -0400
0.20 releng
diff --git a/Changes b/Changes
index ae70f19..879bc05 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+[Changes for 0.20 - 2009-07-08]
+
+* MANIFEST fixes (no code changes) - Tomas Doran
+
[Changes for 0.19 - 2009-07-07]
* Bumped the version dependency to 5.005
diff --git a/lib/Locale/Maketext/Simple.pm b/lib/Locale/Maketext/Simple.pm
index 01abeae..85de626 100644
--- a/lib/Locale/Maketext/Simple.pm
+++ b/lib/Locale/Maketext/Simple.pm
@@ -1,5 +1,5 @@
package Locale::Maketext::Simple;
-$Locale::Maketext::Simple::VERSION = '0.19';
+$Locale::Maketext::Simple::VERSION = '0.20';
use strict;
use 5.005;
commit 6130b639b283071bd4708094cec33353b94bdc09
Author: Jesse Vincent <jesse at bestpractical.com>
Date: Wed Jul 8 17:23:22 2009 -0400
Updated Makefile.PL to switch to Makemaker, as L::M::S is now dual-lifed
-Thanks to Jerry D. Hedden
diff --git a/Makefile.PL b/Makefile.PL
index d6557f9..4cab4e1 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,9 +1,16 @@
#!/usr/bin/perl
-use inc::Module::Install 0.68;
+use ExtUtils::MakeMaker;
-name 'Locale-Maketext-Simple';
-license 'MIT';
-all_from 'lib/Locale/Maketext/Simple.pm';
-
-sign; WriteAll;
+WriteMakefile(
+ 'NAME' => 'Locale::Maketext::Simple',
+ 'AUTHOR' => 'Audrey Tang <cpan AT audreyt DOT org>',
+ 'VERSION_FROM' => 'lib/Locale/Maketext/Simple.pm',
+ 'ABSTRACT_FROM' => 'lib/Locale/Maketext/Simple.pm',
+ 'LICENSE' => 'MIT',
+ 'INSTALLDIRS' => ($] >= 5.010 ? 'perl' : 'site'),
+ ((ExtUtils::MakeMaker->VERSION() lt '6.25')
+ ? ('PL_FILES' => { }) : ()),
+ ((ExtUtils::MakeMaker->VERSION() gt '6.30')
+ ? ('LICENSE' => 'perl') : ()),
+);
commit f4562b6b855a085d1791f8d1f33d4ac90acc6edd
Author: Jesse Vincent <jesse at bestpractical.com>
Date: Wed Jul 8 17:24:47 2009 -0400
Updated changes file
diff --git a/Changes b/Changes
index 879bc05..cffc871 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,9 @@
+
+[Changes for 0.21 - ]
+
+* MakeMaker Makefile.PL which takes into account the fact that
+ we're now dual-lifed contributed by Jerry D. Hedden
+
[Changes for 0.20 - 2009-07-08]
* MANIFEST fixes (no code changes) - Tomas Doran
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list