From: masayu-a Date: Tue, 22 Jul 2008 13:00:45 +0000 (+0000) Subject: perl module & chmod +x tests/*.sh X-Git-Tag: release-2.4.5~3 X-Git-Url: http://git.osdn.net/view?p=chasen-legacy%2Fchasen.git;a=commitdiff_plain;h=00a70ecd1e00b8bcaedbf71e206d58262ece992c perl module & chmod +x tests/*.sh --- diff --git a/NEWS b/NEWS index b696252..47305f6 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,13 @@ NEWS About detail changes after v.2.2.0, see the file ChangeLog. ---------------------------------------------------------------------- +ChaSen 2.4.4 (2008/07/24) +---------------------------------------------------------------------- +- perl module is updated. + (Changed to BSD License) +- chmod +x tests/*.sh + +---------------------------------------------------------------------- ChaSen 2.4.3 (2008/05/31) ---------------------------------------------------------------------- - bug fix diff --git a/configure.in b/configure.in index a8b1487..8694dd5 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ AC_INIT(README) AC_PREREQ(2.59) -AM_INIT_AUTOMAKE(chasen, 2.4.3) +AM_INIT_AUTOMAKE(chasen, 2.4.4-preview1) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE diff --git a/perl/ChaSen.pm b/perl/ChaSen.pm index 6677c40..31c5477 100644 --- a/perl/ChaSen.pm +++ b/perl/ChaSen.pm @@ -1,5 +1,5 @@ # -# $Id: ChaSen.pm,v 1.1 2007/03/13 07:40:10 masayu-a Exp $ +# $Id: ChaSen.pm,v 1.2 2008/07/22 13:00:45 masayu-a Exp $ package Text::ChaSen; @@ -17,19 +17,17 @@ Text::ChaSen - ChaSen library module for perl =head1 DESCRIPTION ¤³¤Î¥â¥¸¥å¡¼¥ë¤Ï¡¢ÆàÎÉÀèü²Ê³Øµ»½ÑÂç³Ø¤¬³«È¯¤·¤¿ÆüËܸì·ÁÂÖÁDzòÀÏ -¥½¥Õ¥È¥¦¥§¥¢"Ããä¦"¤òperl¤«¤é»È¤¦¤¿¤á¤Î¤â¤Î¤Ç¤¢¤ë¡£ +¥½¥Õ¥È¥¦¥§¥¢"Ããä¥"¤òperl¤«¤é»È¤¦¤¿¤á¤Î¤â¤Î¤Ç¤¢¤ë¡£ =over 4 =item getopt_argv($arg1, $arg2, ...) -Ãã䦤˥ª¥×¥·¥ç¥ó¤òÅϤ·¡¢½é´ü²½¤ò¹Ô¤¦¡£¥ª¥×¥·¥ç¥ó¤Ï¡¢chasen¥³¥Þ¥ó¥É +Ãã䥤˥ª¥×¥·¥ç¥ó¤òÅϤ·¡¢½é´ü²½¤ò¹Ô¤¦¡£¥ª¥×¥·¥ç¥ó¤Ï¡¢chasen¥³¥Þ¥ó¥É ¤Ë»ØÄê¤Ç¤­¤ë¤â¤Î¤Ë½à¤º¤ë¤¬¡¢C<-s>¤äC<-D>¤Ê¤É¤Î¥µ¡¼¥Ð¤ä¥¯¥é¥¤¥¢¥ó¥È¤Ë´Ø¤¹¤ë ¥ª¥×¥·¥ç¥ó¤ÏÍøÍѤǤ­¤Ê¤¤¡£ ¤Þ¤¿¡¢°ìÈֺǽé¤Î¥ª¥×¥·¥ç¥ó¤Ï¥×¥í¥°¥é¥à¤Î¥Õ¥¡¥¤¥ë̾¤Ç¤¢¤ë¡£ -=back - Î㤨¤Ð¡¢¼¡¤Î¤è¤¦¤Ê°ú¿ô¤Ç¼Â¹Ô¤·¤¿chasen¥³¥Þ¥ó¥É¤¬¤¢¤ë¡£ $ chasen C<-j> C<-F> '%m ' @@ -47,6 +45,8 @@ getopt_argv('chasen', 'C<-j>', 'C<-F>', '%m '); ·ÁÂÖÁDzòÀϤò¹Ô¤¤¡¢·ë²Ì¤òʸ»úÎó¤È¤·¤ÆÊÖ¤¹¡£¤³¤Î´Ø¿ô¤Ï¡¢°ÊÁ°¤Î¥Ð¡¼¥¸¥ç¥ó ¤È¤Î¸ß´¹À­¤Î¤¿¤á¤À¤±¤Ë¸ºß¤¹¤ë¡£ +=back + =head1 COPYRIGHT Copyright(c) 1998, 1999 NOKUBI Takatsugu @@ -132,7 +132,7 @@ require DynaLoader; %EXPORT_TAGS = (all => [qw(getopt_argv sparse_tostr fparse_tostr sparse_tostr_long)]); -$VERSION = '1.03'; +$VERSION = '1.04'; bootstrap Text::ChaSen $VERSION; diff --git a/perl/ChaSen.xs b/perl/ChaSen.xs index 72a4b37..f5fa493 100644 --- a/perl/ChaSen.xs +++ b/perl/ChaSen.xs @@ -3,7 +3,7 @@ Copyright(c) 1998-2000 NOKUBI Takatsugu Copyright(c) 1997 Nara Institute of Science and Technorogy. All Rights Reserved. -$Id: ChaSen.xs,v 1.1 2007/03/13 07:40:10 masayu-a Exp $ +$Id: ChaSen.xs,v 1.2 2008/07/22 13:00:45 masayu-a Exp $ */ #ifdef __cplusplus diff --git a/perl/ChangeLog b/perl/ChangeLog index 509e587..f33ebb2 100644 --- a/perl/ChangeLog +++ b/perl/ChangeLog @@ -1,3 +1,9 @@ +2000-12-18 NOKUBI Takatsugu + + * Verison 1.04. + + * ChaSen.pm: Fixed bad pod syntax. + 2000-04-07 NOKUBI Takatsugu * Version 1.03. diff --git a/perl/README b/perl/README index a1eede4..ddaf0a1 100644 --- a/perl/README +++ b/perl/README @@ -1,6 +1,6 @@ -$Id: README,v 1.1 2007/03/13 07:40:10 masayu-a Exp $ +$Id: README,v 1.2 2008/07/22 13:00:45 masayu-a Exp $ -Text-ChaSen-1.01 +Text-ChaSen 1. $B$O$8$a$K(B @@ -11,8 +11,8 @@ Text-ChaSen-1.01 2. $B%$%s%9%H!<%k(B -Text-ChaSen-1.01.tar.gz$B$rE83+$7!":n@.$5$l$?%G%#%l%/%H%j(B -Text-ChaSen-1.01$B$K0\F0$7$^$9!#(B +Text-ChaSen-{$version}.tar.gz$B$rE83+$7!":n@.$5$l$?%G%#%l%/%H%j(B +Text-ChaSen-{$version}$B$K0\F0$7$^$9!#(B $B Copyright(c) 1997 Nara Institute of Science and Technorogy. All Rights Reserved. -Use, reproduction, and distribution of this software is permitted. -Any copy of this software, whether in its original form or modified, -must include both the above copyright notice and the following -paragraphs. - -Nara Institute of Science and Technology (NAIST), -the copyright holders, disclaims all warranties with regard to this -software, including all implied warranties of merchantability and -fitness, in no event shall NAIST be liable for -any special, indirect or consequential damages or any damages -whatsoever resulting from loss of use, data or profits, whether in an -action of contract, negligence or other tortuous action, arising out -of or in connection with the use or performance of this software. - -The Japanese morphological dictionary included in this system -originates from ICOT Free Software. The following conditions for ICOT -Free Software applies to the morphological dictionary of the system. - -Each User may also freely distribute the Program, whether in its -original form or modified, to any third party or parties, PROVIDED -that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear -on, or be attached to, the Program, which is distributed substantially -in the same form as set out herein and that such intended -distribution, if actually made, will neither violate or otherwise -contravene any of the laws and regulations of the countries having -jurisdiction over the User or the intended distribution itself. - -NO WARRANTY - -The program was produced on an experimental basis in the course of the -research and development conducted during the project and is provided -to users as so produced on an experimental basis. Accordingly, the -program is provided without any warranty whatsoever, whether express, -implied, statutory or otherwise. The term "warranty" used herein -includes, but is not limited to, any warranty of the quality, -performance, merchantability and fitness for a particular purpose of -the program and the nonexistence of any infringement or violation of -any right of any third party. - -Each user of the program will agree and understand, and be deemed to -have agreed and understood, that there is no warranty whatsoever for -the program and, accordingly, the entire risk arising from or -otherwise connected with the program is assumed by the user. - -Therefore, neither ICOT, the copyright holder, or any other -organization that participated in or was otherwise related to the -development of the program and their respective officials, directors, -officers and other employees shall be held liable for any and all -damages, including, without limitation, general, special, incidental -and consequential damages, arising out of or otherwise in connection -with the use or inability to use the program or any product, material -or result produced or otherwise obtained by using the program, -regardless of whether they have been advised of, or otherwise had -knowledge of, the possibility of such damages at any time during the -project or thereafter. Each user will be deemed to have agreed to the -foregoing by his or her commencement of use of the program. The term -"use" as used herein includes, but is not limited to, the use, -modification, copying and distribution of the program and the -production of secondary products from the program. - -In the case where the program, whether in its original form or -modified, was distributed or delivered to or received by a user from -any person, organization or entity other than ICOT, unless it makes or -grants independently of ICOT any specific warranty to the user in -writing, such person, organization or entity, will also be exempted -from and not be held liable to the user for any such damages as noted -above as far as the program is concerned. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. The name Nara Institute of Science and Technology may not be used to +endorse or promote products derived from this software without specific +prior written permission. + +THIS SOFTWARE IS PROVIDED BY Nara Institute of Science and Technology +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE Nara Institute +of Science and Technology BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +