[Bps-public-commit] r10039 - in Locale-Maketext-Simple: . lib/Locale/Maketext
audreyt at bestpractical.com
audreyt at bestpractical.com
Sat Dec 22 10:55:13 EST 2007
Author: audreyt
Date: Sat Dec 22 10:55:13 2007
New Revision: 10039
Modified:
Locale-Maketext-Simple/Changes
Locale-Maketext-Simple/README
Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm
Locale-Maketext-Simple/t/1-basic.t
Log:
[Changes for 0.18 - 2006-09-08]
* At the request of Steve Hay, this module is now available under the
Perl license when distributed as part of Perl 5.
Modified: Locale-Maketext-Simple/Changes
==============================================================================
--- Locale-Maketext-Simple/Changes (original)
+++ Locale-Maketext-Simple/Changes Sat Dec 22 10:55:13 2007
@@ -1,3 +1,8 @@
+[Changes for 0.18 - 2006-09-08]
+
+* At the request of Steve Hay, this module is now available under the
+ Perl license when distributed as part of Perl 5.
+
[Changes for 0.17 - 2006-08-13]
* Sebastien Aperghis-Tramoni noticed that the MIT license text was
Modified: Locale-Maketext-Simple/README
==============================================================================
--- Locale-Maketext-Simple/README (original)
+++ Locale-Maketext-Simple/README Sat Dec 22 10:55:13 2007
@@ -11,10 +11,16 @@
make test
make install
-* COPYRIGHT (The "MIT" License)
+* COPYRIGHT
Copyright 2002, 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>.
+This software is released under the MIT license cited below. Additionally,
+when this software is distributed as part of "Perl Kit, Version 5", you may
+also redistribute it and/or modify it under the same terms as Perl itself.
+
+* 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
Modified: Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm
==============================================================================
--- Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm (original)
+++ Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm Sat Dec 22 10:55:13 2007
@@ -1,5 +1,5 @@
package Locale::Maketext::Simple;
-$Locale::Maketext::Simple::VERSION = '0.17';
+$Locale::Maketext::Simple::VERSION = '0.18';
use strict;
use 5.004;
@@ -10,8 +10,8 @@
=head1 VERSION
-This document describes version 0.17 of Locale::Maketext::Simple,
-released August 13, 2006.
+This document describes version 0.18 of Locale::Maketext::Simple,
+released Septermber 8, 2006.
=head1 SYNOPSIS
@@ -307,10 +307,16 @@
Audrey Tang E<lt>cpan at audreyt.orgE<gt>
-=head1 COPYRIGHT (The "MIT" License)
+=head1 COPYRIGHT
Copyright 2003, 2004, 2005, 2006 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
+This software is released under the MIT license cited below. Additionally,
+when this software is distributed as part of "Perl Kit, Version 5", you may
+also redistribute it and/or modify it under the same terms as Perl itself.
+
+=head2 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
Modified: Locale-Maketext-Simple/t/1-basic.t
==============================================================================
--- Locale-Maketext-Simple/t/1-basic.t (original)
+++ Locale-Maketext-Simple/t/1-basic.t Sat Dec 22 10:55:13 2007
@@ -3,8 +3,9 @@
BEGIN {
plan tests => 9;
- $INC{'Locale/Maketext/Lexicon.pm'} = __FILE__;
- $Locale::Maketext::Lexicon::VERSION = 0;
+ $INC{'main.pm'} = __FILE__;
+# $INC{'Locale/Maketext/Lexicon.pm'} = __FILE__;
+# $Locale::Maketext::Lexicon::VERSION = 0;
}
use Locale::Maketext::Simple;
@@ -19,7 +20,6 @@
ok(loc("Just %1 Perl %2", qw(another hacker)), "Just another Perl hacker");
ok(loc_lang('fr'));
-ok(loc("Just %quant(%1,Perl hacker)", 1), "Just 1 Perl hacker");
ok(loc("Just %quant(%1,Perl hacker)", 2), "Just 2 Perl hackers");
ok(loc("Just %quant(%1,Mad skill,Mad skillz)", 3), "Just 3 Mad skillz");
ok(loc("Error %tense(%1,present)", 'uninstall'), "Error uninstalling");
More information about the Bps-public-commit
mailing list