Changeset 2747

Show
Ignore:
Timestamp:
12/07/07 11:07:58 (6 years ago)
Author:
naoya_t
Message:

r2734@localhost: naochan | 2007-12-07 10:27:46 +0900
changed copyright & license notices

Location:
lang/perl/Encode-BOCU1/trunk
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Encode-BOCU1/trunk/Changes

    r2743 r2747  
    77        - optimized version 
    88 
     90.03  Mon Jul 03 22:00:00 2006 
     10    - changed copyright & license notices 
    911 
  • lang/perl/Encode-BOCU1/trunk/META.yml

    r2741 r2747  
    22#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX# 
    33name:         Encode-BOCU1 
    4 version:      0.02 
     4version:      0.03 
    55version_from: lib/Encode/BOCU1.pm 
    66installdirs:  site 
  • lang/perl/Encode-BOCU1/trunk/Makefile

    r2741 r2747  
    5353NAME = Encode::BOCU1 
    5454NAME_SYM = Encode_BOCU1 
    55 VERSION = 0.02 
     55VERSION = 0.03 
    5656VERSION_MACRO = VERSION 
    57 VERSION_SYM = 0_02 
     57VERSION_SYM = 0_03 
    5858DEFINE_VERSION = -D$(VERSION_MACRO)=\"$(VERSION)\" 
    59 XS_VERSION = 0.02 
     59XS_VERSION = 0.03 
    6060XS_VERSION_MACRO = XS_VERSION 
    6161XS_DEFINE_VERSION = -D$(XS_VERSION_MACRO)=\"$(XS_VERSION)\" 
     
    238238DIST_DEFAULT = tardist 
    239239DISTNAME = Encode-BOCU1 
    240 DISTVNAME = Encode-BOCU1-0.02 
     240DISTVNAME = Encode-BOCU1-0.03 
    241241 
    242242 
     
    431431        $(NOECHO) $(ECHO) '#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#' >> META.yml 
    432432        $(NOECHO) $(ECHO) 'name:         Encode-BOCU1' >> META.yml 
    433         $(NOECHO) $(ECHO) 'version:      0.02' >> META.yml 
     433        $(NOECHO) $(ECHO) 'version:      0.03' >> META.yml 
    434434        $(NOECHO) $(ECHO) 'version_from: lib/Encode/BOCU1.pm' >> META.yml 
    435435        $(NOECHO) $(ECHO) 'installdirs:  site' >> META.yml 
     
    699699# Creates a PPD (Perl Package Description) for a binary distribution. 
    700700ppd: 
    701         $(NOECHO) $(ECHO) '<SOFTPKG NAME="$(DISTNAME)" VERSION="0,02,0,0">' > $(DISTNAME).ppd 
     701        $(NOECHO) $(ECHO) '<SOFTPKG NAME="$(DISTNAME)" VERSION="0,03,0,0">' > $(DISTNAME).ppd 
    702702        $(NOECHO) $(ECHO) '    <TITLE>$(DISTNAME)</TITLE>' >> $(DISTNAME).ppd 
    703703        $(NOECHO) $(ECHO) '    <ABSTRACT></ABSTRACT>' >> $(DISTNAME).ppd 
  • lang/perl/Encode-BOCU1/trunk/README

    r2741 r2747  
    2929COPYRIGHT AND LICENCE 
    3030 
    31 Based on pure-perl port of "Sample C Sources" on http://www.unicode.org/notes/tn6/, 
     31Based on pure-perl port of "Sample C Code" on http://www.unicode.org/notes/tn6/, 
    3232written by Markus W. Scherer on 2002jan24 and is 
    3333 
     
    3535All Rights Reserved. 
    3636 
    37 This code is distributed under the X license (ICU version). 
     37The "Sample C Code" is under the X license (ICU version). 
    3838ICU License : http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html 
    3939 
  • lang/perl/Encode-BOCU1/trunk/blib/lib/Encode/BOCU1.pm

    r2743 r2747  
    88use base qw(Encode::Encoding); 
    99 
    10 our $VERSION = '0.02'; 
     10our $VERSION = '0.03'; 
    1111 
    1212__PACKAGE__->Define('bocu1'); 
     
    257257BOCU-1 is a MIME-compatible application of the Binary Ordered Compression for Unicode 
    258258[BOCU] base algorithm. 
     259 
     260Encode::BOCU1 enables to convert any encoding systems supported by Encode.pm 
     261from/to BOCU-1 through UTF-8. 
     262 
     263=head1 SEE ALSO 
     264 
    259265http://www.unicode.org/notes/tn6/ 
    260266http://icu.sourceforge.net/docs/papers/binary_ordered_compression_for_unicode.html 
    261267 
    262 Encode::BOCU1 enables to convert any encoding systems supported by Encode.pm 
    263 from/to BOCU-1 through UTF-8. 
    264  
    265268=head1 COPYRIGHT AND LICENSE 
    266269 
    267 Copyright (C) 2006 Naoya Tozuka E<lt>naoyat@naochan.comE<gt> 
    268  
    269 Based on pure-perl port of "Sample C Sources" on http://www.unicode.org/notes/tn6/. 
    270 "Sample C Sources" are licensed under the X license (ICU version). 
    271 This module is licensed under the same license. 
    272  
    273 BOCU ("Binary-Ordered Compression For Unicode") is patent-protected technology of IBM. 
     270Based on pure-perl port of "Sample C Code" on http://www.unicode.org/notes/tn6/, 
     271written by Markus W. Scherer on 2002jan24 and is 
     272 
     273Copyright (C) 2002, International Business Machines Corporation and others. 
     274All Rights Reserved. 
     275 
     276The "Sample C Code" is under the X license (ICU version). 
     277ICU License : http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html 
     278 
     279BOCU "Binary-Ordered Compression For Unicode" is a patent-protected technology of IBM. 
    274280(US Patent 6737994) 
    275281 
    276 ICU License : http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html 
     282Ported and modified by Naoya Tozuka E<lt>naoyat@naochan.comE<gt> 
     283As with the original C code, this port is licensed under the X license (ICU version). 
    277284 
    278285=cut 
  • lang/perl/Encode-BOCU1/trunk/lib/Encode/BOCU1.pm

    r2743 r2747  
    88use base qw(Encode::Encoding); 
    99 
    10 our $VERSION = '0.02'; 
     10our $VERSION = '0.03'; 
    1111 
    1212__PACKAGE__->Define('bocu1'); 
     
    257257BOCU-1 is a MIME-compatible application of the Binary Ordered Compression for Unicode 
    258258[BOCU] base algorithm. 
     259 
     260Encode::BOCU1 enables to convert any encoding systems supported by Encode.pm 
     261from/to BOCU-1 through UTF-8. 
     262 
     263=head1 SEE ALSO 
     264 
    259265http://www.unicode.org/notes/tn6/ 
    260266http://icu.sourceforge.net/docs/papers/binary_ordered_compression_for_unicode.html 
    261267 
    262 Encode::BOCU1 enables to convert any encoding systems supported by Encode.pm 
    263 from/to BOCU-1 through UTF-8. 
    264  
    265268=head1 COPYRIGHT AND LICENSE 
    266269 
    267 Copyright (C) 2006 Naoya Tozuka E<lt>naoyat@naochan.comE<gt> 
    268  
    269 Based on pure-perl port of "Sample C Sources" on http://www.unicode.org/notes/tn6/. 
    270 "Sample C Sources" are licensed under the X license (ICU version). 
    271 This module is licensed under the same license. 
    272  
    273 BOCU ("Binary-Ordered Compression For Unicode") is patent-protected technology of IBM. 
     270Based on pure-perl port of "Sample C Code" on http://www.unicode.org/notes/tn6/, 
     271written by Markus W. Scherer on 2002jan24 and is 
     272 
     273Copyright (C) 2002, International Business Machines Corporation and others. 
     274All Rights Reserved. 
     275 
     276The "Sample C Code" is under the X license (ICU version). 
     277ICU License : http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html 
     278 
     279BOCU "Binary-Ordered Compression For Unicode" is a patent-protected technology of IBM. 
    274280(US Patent 6737994) 
    275281 
    276 ICU License : http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html 
     282Ported and modified by Naoya Tozuka E<lt>naoyat@naochan.comE<gt> 
     283As with the original C code, this port is licensed under the X license (ICU version). 
    277284 
    278285=cut