Package: release.debian.org Severity: normal User: [email protected] Usertags: unblock
Please unblock package ipadic As discussed in http://bugs.debian.org/682970 , I removed excessive changes. Diff with testing source attached. Now it fixes gross bug caused by multi-arch migration of chasen. unblock ipadic/2.7.0+main-3 -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (10, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.4-trunk-amd64 (SMP w/8 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff --git a/debian/changelog b/debian/changelog index 4431308..d46f86c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,22 @@ +ipadic (2.7.0+main-3) unstable; urgency=low + + * Remove excessive changes in -2 such as bump of Standards-Version + and debhelper compat with copyright adjustment to get this package + version unblocked for wheezy. + + -- Osamu Aoki <[email protected]> Sat, 28 Jul 2012 09:50:27 +0900 + +ipadic (2.7.0+main-2) unstable; urgency=low + + [ Evgeni Golov ] + * Get path to makemat and makeda via chasen-config --mkchadic + Closes: #680834 + + [ Osamu Aoki ] + * Fix copyright file and bump Standards-Version to 3.9.3. + + -- Osamu Aoki <[email protected]> Tue, 10 Jul 2012 21:16:23 +0900 + ipadic (2.7.0+main-1) unstable; urgency=low * Bump source version and re-upload after orig.tar.gz removal diff --git a/debian/utf8dict b/debian/utf8dict index 936d1a5..20d807c 100755 --- a/debian/utf8dict +++ b/debian/utf8dict @@ -6,6 +6,7 @@ set -e utf8="utf8" VERSION=$( dpkg-parsechangelog | awk '/^Version: /{print $2}' | cut -d':' -f2 | cut -d'-' -f1 | sed 's/\+\|\~/-/') +CHASEN_MKCHADIC_DIR=`chasen-config --mkchadic` # Create UTF-8 dictionary data in ${utf8} rm -rf ${utf8} @@ -34,6 +35,6 @@ if [ -z `grep '(ENCODE "u")' ${utf8}/ipadic.rc` ] && fi # for matrix.cha table.cha -(cd ${utf8} && /usr/lib/chasen/makemat -i w) +(cd ${utf8} && $CHASEN_MKCHADIC_DIR/makemat -i w) # for chadic.da chadic.lex chadic.dat -(cd ${utf8} && /usr/lib/chasen/makeda -i w chadic *.dic) +(cd ${utf8} && $CHASEN_MKCHADIC_DIR/makeda -i w chadic *.dic)

