[Bps-public-commit] r16989 - Locale-Maketext-Lexicon/trunk

clint at bestpractical.com clint at bestpractical.com
Sat Nov 22 14:40:35 EST 2008


Author: clint
Date: Sat Nov 22 14:40:35 2008
New Revision: 16989

Added:
   Locale-Maketext-Lexicon/trunk/LICENSE
Modified:
   Locale-Maketext-Lexicon/trunk/Changes
   Locale-Maketext-Lexicon/trunk/MANIFEST
   Locale-Maketext-Lexicon/trunk/Makefile.PL

Log:
Changes for version 0.73

Modified: Locale-Maketext-Lexicon/trunk/Changes
==============================================================================
--- Locale-Maketext-Lexicon/trunk/Changes	(original)
+++ Locale-Maketext-Lexicon/trunk/Changes	Sat Nov 22 14:40:35 2008
@@ -1,3 +1,22 @@
+[Changes for 0.73 - 2008-10-28]
+ * Locale::Maketext::Extract::Plugin::TextTemplate
+   - renamed MyParser to Locale::Maketext::Extract::Plugin::TextTemplate::Parser
+     to avoid namespace clashes
+ * CPANTS improvements
+   - Updated the Makefile to list all mentioned modules
+   - Added a LICENSE file
+   - added a Test::Pod test
+
+[Changes for 0.72 - 2008-10-10]
+
+Contributed by: Clinton Gormley (DRTECH)
+
+ * Locale::Maketext::Extract::Plugin::TT2
+   - fixed bug where extracted strings still had escaped quotes and backslashes
+   - if args are literal, they're now wrapped in double quotes instead of
+     single quotes
+   - special characters in args are escaped properly
+
 [Changes for 0.71 - 2008-10-05]
 
 * Bump version number of Locale::Maketext::Extract::Plugin::TextTemplate

Added: Locale-Maketext-Lexicon/trunk/LICENSE
==============================================================================
--- (empty file)
+++ Locale-Maketext-Lexicon/trunk/LICENSE	Sat Nov 22 14:40:35 2008
@@ -0,0 +1,24 @@
+Copyright 2002-2008 by Audrey Tang <cpan at audreyt.org>.
+
+This software is released under the MIT license cited below.
+
+
+The "MIT" License
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.

Modified: Locale-Maketext-Lexicon/trunk/MANIFEST
==============================================================================
--- Locale-Maketext-Lexicon/trunk/MANIFEST	(original)
+++ Locale-Maketext-Lexicon/trunk/MANIFEST	Sat Nov 22 14:40:35 2008
@@ -31,8 +31,9 @@
 lib/Locale/Maketext/Lexicon/Gettext.pm
 lib/Locale/Maketext/Lexicon/Msgcat.pm
 lib/Locale/Maketext/Lexicon/Tie.pm
+LICENSE
 Makefile.PL
-MANIFEST			This list of files
+MANIFEST            This list of files
 MANIFEST.SKIP
 META.yml
 README
@@ -45,7 +46,8 @@
 t/6-gettext.t
 t/7-comments.t
 t/8-plugin-args.t
-t/99-bug-import-for-subclasses.t
+t/9-bug-import-for-subclasses.t
+t/91-pod_test.t
 t/comments.po
 t/gencat.m
 t/locale/en/LC_MESSAGES/test.mo

Modified: Locale-Maketext-Lexicon/trunk/Makefile.PL
==============================================================================
--- Locale-Maketext-Lexicon/trunk/Makefile.PL	(original)
+++ Locale-Maketext-Lexicon/trunk/Makefile.PL	Sat Nov 22 14:40:35 2008
@@ -10,9 +10,17 @@
 perl_version    '5.005';
 all_from        'lib/Locale/Maketext/Lexicon.pm';
 install_script  'script/xgettext.pl';
-requires        'Locale::Maketext' => '0.01';
-recommends      'Template'  => '2.20';
-recommends      'YAML' => '0.66';
+requires        'Locale::Maketext'     => '0.01';
+recommends      'Template'             => '2.20';
+recommends      'Template::Constants'  => '2.75';
+recommends      'YAML'                 => '0.66';
+recommends      'YAML::Loader'         => '0.66';
+recommends      'HTML::Parser'         => '3.56';
+recommends      'Lingua::EN::Sentence' => '0.25';
+test_requires   'Test::More'           => '0';
+if ( $^O eq 'MSWin32' ) {
+    recommends  'Win32::Console' => '0.09';
+}
 include_deps    'Test::More';
 
 WriteAll;



More information about the Bps-public-commit mailing list