Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package openthesaurus The files in openthesaurus at some point were converted to UTF-8 which broke the sed statement fixing the de_DE Thesaurus up for Switzerland (ß vs. ss). Which I consider important given that is the only difference between mythes-de and -de-ch and that "ss" is the correct spelling in Switzerland; a thesaurus should have correct spelling... Has now been fixed thanks to a patch reminding me that I forgot that bug again. Anyway, better late than never.. Debdiff attached. unblock openthesaurus/20120516-2 Regards, Rene -- System Information: Debian Release: 7.0 APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -Nru openthesaurus-20120516/debian/changelog openthesaurus-20120516/debian/changelog --- openthesaurus-20120516/debian/changelog 2012-05-16 00:11:33.000000000 +0200 +++ openthesaurus-20120516/debian/changelog 2012-12-18 17:25:04.000000000 +0100 @@ -1,3 +1,10 @@ +openthesaurus (20120516-2) unstable; urgency=low + + * fix sed in debian/rules for utf8-encoded dicts so that ß is correctly + subsituted for -de-ch, thanks Tom Jampen (closes: #685996) + + -- Rene Engelhard <r...@debian.org> Tue, 18 Dec 2012 17:17:04 +0100 + openthesaurus (20120516-1) unstable; urgency=medium * new upstream snapshot diff -Nru openthesaurus-20120516/debian/rules openthesaurus-20120516/debian/rules --- openthesaurus-20120516/debian/rules 2011-09-27 01:22:58.000000000 +0200 +++ openthesaurus-20120516/debian/rules 2012-12-18 17:22:00.000000000 +0100 @@ -22,7 +22,7 @@ unzip -o ooo3/Deutscher-Thesaurus.oxt && \ /usr/share/mythes/th_gen_idx.pl -o th_de_DE_v2.idx \ < th_de_DE_v2.dat && \ - LANG=C cat th_de_DE_v2.dat | sed -e 's/\�/ss/' > th_de_CH_v2.dat; \ + LANG=C cat th_de_DE_v2.dat | sed -e 's/ß/ss/g' > th_de_CH_v2.dat; \ /usr/share/mythes/th_gen_idx.pl -o th_de_CH_v2.idx \ < th_de_CH_v2.dat