Init package for mecab-ipadic

This commit is contained in:
peijiankang 2022-10-10 10:03:11 +08:00
parent aa52136ea0
commit f194dfaa0a
4 changed files with 307 additions and 0 deletions

99
LICENSE.Fedora Normal file
View File

@ -0,0 +1,99 @@
===============================================
Mar 9th, 2007
Written by Mamoru Tasaka
<mtasaka@ioa.s.u-tokyo.ac.jp>
Clarification of the license of mecab-ipadic
on Fedora
===============================================
The English version of the license of mecab-ipadic
(which is included as "LICENSE.en" in this rpm )
contains the part which came from ICOT Free software
license, which contains the following paragraph.
-----------------------------------------------
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.
-----------------------------------------------
At the time I was writing this document, debian regarded
mecab-ipadic as NON-free as they judged this paragraph problematic.
So I asked Mr. Tom "spot" Callaway if this software can be
legally accepted, and he asked FSF (The Free Software
Foundation) if they can accept this license as free.
The opinion of FSF on this passage was as below.
-----------------------------------------------
Debian's beef is with the following paragraph of the license:
<This part is the same as the above paragraph>
They have two complaints. I've given my thoughts on both, but I can't
make a final determination on either; that would be for RMS and Eben.
* They believe that when the license talks about something being
"distributed substantially in the same form as set out herein," it's
referring to the program -- implying that you can't radically alter
the software (i.e., take a piece of it and incorporate it in some
totally different software). I understand why they think that. On
the other hand, I'm skeptical that this is the licensor's intent; I
think they just want to keep you from messing up the warranty
disclaimer too much. Unusually for Debian, apparently nobody tried to
clear this up with the original authors. It might be worthwhile to
try that. As it stands, I think we'd want to steer clear as well, as
we did with the original Artistic license.
* They object to the requirement that you follow the law. I'm not sure
if we have a general policy on this, but I know we've accepted similar
restrictions as being free before (the Intel Open Source License has
similar, though narrower, language), so I think we would still
consider the license free as well even with this text.
If you can get some kind of clarification on the first point, I'd be
happy to escalate this for further discussion.
-----------------------------------------------
So Mr Callaway asked me to clarify the intend of the original author
with respect to the word "substantially".
However, according to the original Japanese version of
this license (which is included as "LICENSE.jp.html" in this rpm),
the part of the license which corresponds to the ICOT license
paragraph, which contains the words "substantially", reads
as below (in English):
-----------------------------------------------
Each user of this program may freely use, modify and make a copy of
this program. "To modify this program" used herein includes
* to improve or to extend this program to make it better its
function, performance, and the quality
* to add programs and documents you created by yourself,
however, it ("to modify this program") is not limited to the above.
Each user of this program may distribute to others
this program itself, or the modified version of this program,
provided
* the section three ("no warranty") of this license is
included in it,
freely as long as the distribution won't violate the laws
which may relate to the distribution.
-----------------------------------------------
So as mecab developers mention, who maintain mecab-ipadic
software currently, and also in my opinion, it does not seem
to appear in the Japanese license the part which corresponds to
the words "substantially in the same form". And in the Japanese
license it is mentioned what to call "the modified version", which
declares that the original developer imposes no limitation
for modifying this software.
Mr Callaway finally declared this license OK for Fedora
on Mar 8th, 2007.
-----------------------------------------------
This is good. Add a text file which says exactly what you just said as
LICENSE.Fedora, include it in %doc, and it is ok for Fedora.
~spot
-----------------------------------------------

Binary file not shown.

111
mecab-ipadic.spec Normal file
View File

@ -0,0 +1,111 @@
# This spec file is very similar with mecab-jumandic
%define majorver 2.7.0
%define date 20070801
%define mecabver 0.96
# The data in MeCab dic are compiled by arch-dependent binaries
# and the created data are arch-dependent.
# However, this package does not contain any executable binaries
# so debuginfo rpm is not created.
%define debug_package %{nil}
Name: mecab-ipadic
Version: %{majorver}.%{date}
Release: 22
Summary: IPA dictionary for MeCab
License: mecab-ipadic
URL: http://mecab.sourceforge.net/
Source0: http://downloads.sourceforge.net/mecab/%{name}-%{majorver}-%{date}.tar.gz
#Source2: http://www.icot.or.jp/ARCHIVE/terms-and-conditions-for-IFS-J.html
Source2: http://www.jipdec.or.jp/icot/ARCHIVE/terms-and-conditions-for-IFS-J.html
Source3: LICENSE.Fedora
BuildRequires: make
BuildRequires: mecab-devel >= %{mecabver}
Requires: mecab >= %{mecabver}
%description
MeCab IPA is a dictionary for MeCab using CRF estimation
based on IPA corpus.
This dictionary is for UTF-8 use.
%package EUCJP
Summary: IPA dictionary for Mecab with encoded by EUC-JP
Requires: mecab >= %{mecabver}
%description EUCJP
MeCab IPA is a dictionary for MeCab using CRF estimation
based on IPA corpus.
This dictionary is for EUC-JP use.
%prep
%setup -q -n %{name}-%{majorver}-%{date}
%build
# First build on UTF-8
%configure \
--with-mecab-config=%{_bindir}/mecab-config \
--with-charset=utf8
%{__make} %{?_smp_mflags}
# Preserve them
%{__mkdir} UTF-8
%{__cp} -p \
*.bin *.dic *.def dicrc \
UTF-8/
# Next build on EUC-JP
# This is the default, however Fedora uses UTF-8 so
# for Fedora this must be the option.
%{__make} clean
%configure \
--with-mecab-config=%{_bindir}/mecab-config
%{__make} %{?_smp_mflags}
%install
# First install EUC-JP
%{__rm} -rf $RPM_BUILD_ROOT
%{__make} install DESTDIR=$RPM_BUILD_ROOT
%{__mv} $RPM_BUILD_ROOT%{_libdir}/mecab/dic/ipadic \
$RPM_BUILD_ROOT%{_libdir}/mecab/dic/ipadic-EUCJP
# Next install UTF-8
%{__mv} -f UTF-8/* .
%{__make} install DESTDIR=$RPM_BUILD_ROOT
%{__cp} -p %{SOURCE2} LICENSE.jp.html
%{__cp} -p %{SOURCE3} .
%post
# Note: post should be okay. mecab-dic expects that
# mecab is installed in advance.
if test -f %{_sysconfdir}/mecabrc ; then
%{__sed} -i -e 's|^dicdir.*|dicdir = %{_libdir}/mecab/dic/ipadic|' \
%{_sysconfdir}/mecabrc || :
fi
%post EUCJP
# Note: post should be okay. mecab-dic expects that
# mecab is installed in advance.
if test -f %{_sysconfdir}/mecabrc ; then
%{__sed} -i -e 's|^dicdir.*|dicdir = %{_libdir}/mecab/dic/ipadic-EUCJP|' \
%{_sysconfdir}/mecabrc || :
fi
%files
%doc COPYING LICENSE.* README
%{_libdir}/mecab/dic/ipadic/
%files EUCJP
%doc COPYING LICENSE.* README
%{_libdir}/mecab/dic/ipadic-EUCJP/
%changelog
* Mon Oct 10 2022 peijiankang <peijiankang@kylinos.cn> - 2.7.0.20070801-22
- Init package for mecab-ipadic

View File

@ -0,0 +1,97 @@
<HTML>
<HEAD><TITLE>Terms and conditions for use of IFS</TITLE></HEAD>
<BODY BACKGROUND="PICS/tile-blue.gif">
<CENTER><H1>
ICOT$B%U%j!<%=%U%H%&%'%"$NMxMQ>r7o(B
</H1>
</CENTER>
<HR width=95% align="center" size=7><P>
<DL>
<DD>
<H2>
<B>$B#1!%#I#C#O#TL5=~8x3+%=%U%H%&%'%"$NL\E*(B</B>
</H2><P>
$B:bCDK!?M?7@$Be%3%s%T%e!<%?5;=Q3+H/5!9=(B ($B0J2<!"(BICOT$B$H$$$&(B) $B$O!"F|K\9qDL(B
$B>&;:6H>J$h$j0QBw$5$l!"Bh8^@$Be%3%s%T%e!<%?!&%W%m%8%'%/%H$r?d?J$7$F$-$?!#(B
$B$^$?!"J?@.#5G/EY$+$i$O!"$3$N%W%m%8%'%/%H$N8e7Q%W%m%8%'%/%H$H$7$F!"Bh8^(B
$B@$Be%3%s%T%e!<%?$N8&5f4pHW2=%W%m%8%'%/%H$r?d?J$7$F$$$k!#Bh8^@$Be%3%s%T%e!<(B
$B%?!&%W%m%8%'%/%H$*$h$S$=$N8e7Q%W%m%8%'%/%H(B($B0J2<!"$3$l$i$N0lO"$N%W%m%8%'(B
$B%/%H$rK\%W%m%8%'%/%H$H$$$&(B)$B$O!"JBNs?dO@=hM}$rCf3K%a%+%K%:%`$H$9$k?7$7(B
$B$$%3%s%T%e!<%?$N4pAC5;=Q$rAO=P$7!"$=$NCN8+$H5;=Q$r@$3&$N8&5f<T$H6&M-$9(B
$B$k$3$H$K$h$C$F!"%3%s%T%e!<%?2J3X$NH/E8$K9W8%$9$k$3$H$rL\E*$H$7$F$$$k!#(B
<P>
$BK\%W%m%8%'%/%H$K$h$C$F!"JBNs?dO@%^%7%s!"JBNs?dO@%=%U%H%&%'%"5;=Q$H$$$C(B
$B$??7$7$$5;=Q$,3+H/$5$l!"$^$?!"$3$&$7$?5;=Q3+H/$KH<$$!"B?$/$N@h?JE*$J%=(B
$B%U%H%&%'%"$,;n:n$5$l$F$$$k!#$3$l$i$N%=%U%H%&%'%"$O!"4pACE*$J8&5f3+H/CJ(B
$B3,$K$"$k$?$a!"B?$/$N8&5f<T$K9-$aH/E8$5$;$F$$$/$Y$-$b$N$G$"$k!#(B<P>
$B$=$3$G!"(BICOT$B$O!"K\%W%m%8%'%/%H$N9q:]9W8%$NL\E*$K4U$_!"Cx:n8"$,9q$G$O$J(B
$B$/(BICOT$B$K5"B0$9$k$3$H$H$J$k$3$l$i$N8&5f3+H/CJ3,$N%=%U%H%&%'%"$r!"!V(BICOT
$BL5=~8x3+%=%U%H%&%'%"!W$H$7$F8x3+$7$F$-$?!#$3$l$i$N%=%U%H%&%'%"$K$D$$$F(B
$B$O!"8&5f3+H/$N$?$a$N>c32$H$J$k$$$C$5$$$N@)Ls$r$O$:$9$3$H$K$h$C$F!"B?$/(B
$B$N8&5f<T$NJ}!9$K<+M3$KMxMQ$7$F$b$i$$!"?7$7$$%3%s%T%e!<%?2J3X$X$N9W8%$r(B
$B<BA)$7$?$$$H9M$($F$$$k!#(B<P>
$BK\%W%m%0%i%`5Z$S%I%-%e%a%s%H(B($B0J2<!"K\%W%m%0%i%`$H$$$&(B)$B$O!"!V(BICOT$BL5=~8x(B
$B3+%=%U%H%&%'%"!W$N0l$D$H$7$F!"(BICOT$B$K$*$$$FL5=~$GG[I[$7$F$$$k$b$N$G$"$k!#(B
<P><BR>
<HR width=95% align="center" size=7><P>
<H2>
<B>$B#2!%;HMQ!"JQ99!"J#@=!"G[I[$N<+M3(B</B>
</H2><P>
$BK\%W%m%0%i%`$NMxMQ<T$O!"$=$N;HMQ!"JQ99!"J#@=$r<+M3$K9T$&$3$H$,$G$-$k!#(B
$B$3$3$G$$$&JQ99$K$O!"K\%W%m%0%i%`$N5!G=!"@-G=!"IJ<A$r8~>e$5$;$k$?$a$K2~(B
$BNI!"3HD%$r9T$&$3$H!"$b$7$/$O<+$i3+H/$7$?%W%m%0%i%`$d%I%-%e%a%s%H$rK\%W(B
$B%m%0%i%`$KDI2C$9$k$3$H$,4^$^$l$k$,!"$=$l$@$1$K$O8BDj$5$l$J$$!#(B<P>
$BK\%W%m%0%i%`$NMxMQ<T$O!"K\!V(BICOT$BL5=~8x3+%=%U%H%&%'%"$NMxMQ>r7o!WBh(B3$B9`(B
($B!VL5J]>Z!W(B)$B$,5-$5$l$F$$$k$3$H$r>r7o$H$7$F!"4XO"K!Na$K0cH?$7$J$$8B$j!"(B
$BK\%W%m%0%i%`$=$N$b$N!"$^$?$OK\%W%m%0%i%`$NJQ99HG$rBh;0<T$X<+M3$KG[I[$9(B
$B$k$3$H$,$G$-$k!#(B<P>
<HR width=95% align="center" size=7><P>
<H2>
<B>$B#3!%(B$BL5J]>Z(B</B>
</H2><P>
$BK\%W%m%0%i%`$O!"K\%W%m%8%'%/%H$N8&5f3+H/$N;n:nJ*$r!X$"$k$,$^$^!Y$N>uBV(B
$B$GDs6!$9$k$b$N$G$"$k!#$3$N$?$a!"L@<(E*$G$"$k$+L[<(E*$G$"$k$+!"$^$?$OK!(B
$BNa$N5,Dj$K$h$j@8$:$k$b$N$G$"$k$+H]$+$rLd$o$:!"0l@Z$NJ]>Z$r$D$1$J$$$GDs(B
$B6!$5$l$k$b$N$G$"$k!#$3$3$G$$$&J]>Z$H$O!"%W%m%0%i%`$NIJ<A!"@-G=!";T>l@-!"(B
$BFCDjL\E*E,9g@-!"$*$h$SB>$NBh;0<T$N8"Mx$X$NL5?/32$K$D$$$F$NJ]>Z$r4^$`$,!"(B
$B$=$l$K8BDj$5$l$k$b$N$G$O$J$$!#(B<P>
$BK\%W%m%0%i%`$NMxMQ<T$O!"K\%W%m%0%i%`$,L5J]>Z$G$"$k$3$H$r>5Bz$7!"K\%W%m(B
$B%0%i%`$,L5J]>Z$G$"$k$3$H$K$h$k$9$Y$F$N%j%9%/$rMxMQ<T<+?H$GIi$&$b$N$H$9(B
$B$k!#(B<P>
$B=>$C$F!"MxMQ<T$,K\%W%m%0%i%`$rMxMQ$7$?$3$H!"$^$?$OMxMQ$G$-$J$$$3$H!"$b(B
$B$7$/$OK\%W%m%0%i%`$rMxMQ$7$FF@$i$l$?7k2L$K5/0x$9$k0l@Z$NB;32$K$D$$$F!"(B
$BCx:n8"<T$G$"$k(BICOT$B$*$h$SK\%W%m%0%i%`$N3+H/$K4XM?$7$?4XO"5!4XJB$S$K$=$l(B
$B$i$NLr?&0w5Z$S=>6H0w$O!"$=$N$h$&$JB;32$NH/@8$9$k2DG=@-$K$D$$$F!"CN$C$F(B
$B$$$?$+H]$+$K$+$+$o$i$:!"2?$i$N@UG$$bIi$o$J$$!#K\%W%m%0%i%`$NMxMQ<T$O!"(B
$BK\%W%m%0%i%`$NMxMQ$r3+;O$7$?$3$H$K$h$j$3$l$r>5Bz$7$F$$$k$b$N$H$_$J$5$l(B
$B$k!#$3$3$G$$$&MxMQ$H$O!"K\%W%m%0%i%`$N;HMQ!"JQ99!"J#@=!"G[I[!"Fs<!E*Cx(B
$B:nJ*$N:n@.$r4^$`$,$3$l$i$K8BDj$5$l$J$$!#(B<P>
$BMxMQ<T$,K\%W%m%0%i%`$=$N$b$N!"$^$?$OK\%W%m%0%i%`$NJQ99HG$r!"(BICOT$B0J30$N(B
$BBh;0<T$+$iG[I[$r<u$1$?>l9g$K$*$$$F$b!"G[I[$r9T$C$?Bh;0<T$,FH<+$KFCJL$J(B
$BJ]>Z$rJ8=q$G9T$o$J$$8B$j!"G[I[$r9T$C$?Bh;0<T$O!"$=$NMxMQ<T$KBP$7$F!"K\(B
$B%W%m%0%i%`$K4X78$9$k8B$j$K$*$$$FF1MM$K2?$i$N@UG$$rIi$o$J$$$b$N$H$9$k!#(B
<P>
</DL>
</BODY>
</HTML>