ispellcat (0.6-10) debian-dir only changes

Summary

 debian/aspell-ca.dirs           |    3 
 debian/aspell-ca.info-aspell    |   12 +
 debian/aspell-ca.links          |    1 
 debian/aspell-ca.postinst       |    9 
 debian/ca.dat                   |    8 
 debian/changelog                |  411 ++++++++++++++++++++++++++++++++++++++++
 debian/compat                   |    1 
 debian/control                  |   57 +++++
 debian/copyright                |   78 +++++++
 debian/filter_aspell_aff        |   32 +++
 debian/icatalan.dirs            |    3 
 debian/icatalan.info-ispell     |   34 +++
 debian/icatalan.links           |    4 
 debian/myspell-ca.dirs          |    2 
 debian/myspell-ca.info-hunspell |   11 +
 debian/myspell-ca.info-myspell  |    2 
 debian/rules                    |  135 +++++++++++++
 debian/strip_mwl                |   21 ++
 debian/utf-8.sed                |   26 ++
 debian/wcatalan.dirs            |    1 
 debian/wcatalan.info-wordlist   |   11 +
 debian/wcatalan.links           |    1 
 22 files changed, 863 insertions(+)

    
download this patch

Patch contents

--- ispellcat-0.6.orig/debian/ca.dat
+++ ispellcat-0.6/debian/ca.dat
@@ -0,0 +1,8 @@
+# Catalan data file
+name ca
+charset iso8859-1
+special ' -*- · -*- - -*-
+soundslike generic
+affix          ca
+affix-compress true
+repl-table     ca_affix.dat
--- ispellcat-0.6.orig/debian/aspell-ca.links
+++ ispellcat-0.6/debian/aspell-ca.links
@@ -0,0 +1 @@
+var/lib/aspell/ca.rws usr/lib/aspell/ca.rws
--- ispellcat-0.6.orig/debian/compat
+++ ispellcat-0.6/debian/compat
@@ -0,0 +1 @@
+7
--- ispellcat-0.6.orig/debian/aspell-ca.dirs
+++ ispellcat-0.6/debian/aspell-ca.dirs
@@ -0,0 +1,3 @@
+usr/lib/aspell
+usr/share/aspell
+var/lib/aspell
--- ispellcat-0.6.orig/debian/wcatalan.info-wordlist
+++ ispellcat-0.6/debian/wcatalan.info-wordlist
@@ -0,0 +1,11 @@
+Language: catala (Catalan)
+Hash-Name: catala
+Emacsen-Name: catala
+Casechars: [A-ZÁÈÉËIÏÎÑÓÓÖÚÜÇa-zàèéëíïîñòóöúüç]
+Not-Casechars: [^A-ZÁÈÉËIÏÎÑÓÓÖÚÜÇa-zàèéëíïîñòóöúüç]
+Otherchars: [---'.·]
+Many-Otherchars: yes
+Additionalchars: àèéëíïîñòóöúüçÁÈÉËIÏÎÑÓÓÖÚÜÇ
+Ispell-Args: -B -d catala
+Extended-Character-Mode: ~list
+Coding-System: iso-8859-1
--- ispellcat-0.6.orig/debian/filter_aspell_aff
+++ ispellcat-0.6/debian/filter_aspell_aff
@@ -0,0 +1,32 @@
+#!/usr/bin/perl -w
+
+my $change_count;
+
+while ( <STDIN> ){
+  chomp;
+  if ( /^(SFX|PFX)/ ) {
+    my $code     = $_;
+    my $comments = ( /\#/ ) ? $_ : '';
+    $code        =~ s/\#.*$//;
+    $comments    =~ s/^[^\#]*//;
+    my ($afx,$flag,$strip,$add,$match) = split (' ',$code);
+    if ( $match and $match eq '.' and $strip ne '0'){
+      $change_count++;
+      my $txt = "$afx $flag $strip $add $strip";
+      $txt .= "     $comments" if $comments;
+      print "$txt\n";
+    } else {
+      print "$_\n";
+    }
+  } else {
+    print "$_\n";
+  }
+}
+
+if ( $change_count ) {
+  print STDERR "filter_aspell_aff info: Changed $change_count flag entries\n";
+} else {
+  print STDERR " ******** =========================================\n";
+  print STDERR "   *** filter_aspell_aff ***: No changes. Is filter any longer needed?\n";
+  print STDERR " ******** =========================================\n";
+}
--- ispellcat-0.6.orig/debian/myspell-ca.info-hunspell
+++ ispellcat-0.6/debian/myspell-ca.info-hunspell
@@ -0,0 +1,11 @@
+Language: catala8 (Catalan 8 bits)
+Hash-Name: ca_ES
+Emacsen-Name: catala8
+Casechars: [A-ZÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇa-zàáãèéëíïîñòóöúüç]
+Not-Casechars: [^A-ZÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇa-zàáãèéëíïîñòóöúüç]
+Otherchars: [---'.·]
+Many-Otherchars: yes
+Additionalchars: ÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇàáãèéëíïîñòóöúüç
+Ispell-Args: -B
+Hunspell-Locales: ca
+Coding-System: iso-8859-1
--- ispellcat-0.6.orig/debian/strip_mwl
+++ ispellcat-0.6/debian/strip_mwl
@@ -0,0 +1,21 @@
+#!/usr/bin/perl -w
+
+$inputfile="catalan-i.dic";
+$ignore="CDVWYZ";
+
+open (INPUTFILE,"< $inputfile") || die "Could not open inputfile: $inputfile";
+
+while (<INPUTFILE>){
+    chomp;
+    ($root,$flags)=split('/');
+    if ( $flags ){
+	$flags=~s/[$ignore]*//g;
+    }
+    if ( $flags ){
+	print "$root/$flags\n";
+    } else {
+	print "$root\n";
+    }
+}
+
+close INPUTFILE;
--- ispellcat-0.6.orig/debian/icatalan.info-ispell
+++ ispellcat-0.6/debian/icatalan.info-ispell
@@ -0,0 +1,34 @@
+Language: catala TeX (Catalan Tex)
+Hash-Name: catala
+Emacsen-Name: catala-tex
+Debconf-Display: no
+Casechars: [A-ZÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇa-zàáãèéëíïîñòóöúüç]
+Not-Casechars: [^A-ZÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇa-zàáãèéëíïîñòóöúüç]
+Otherchars: [---'.·]
+Many-Otherchars: yes
+Ispell-Args:-B
+Additionalchars: ÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇàáãèéëíïîñòóöúüç
+Extended-Character-Mode: ~tex
+Coding-System: iso-8859-1
+
+Language: catala8 (Catalan 8 bits)
+Hash-Name: catala
+Emacsen-Name: catala8
+Casechars: [A-ZÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇa-zàáãèéëíïîñòóöúüç]
+Not-Casechars: [^A-ZÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇa-zàáãèéëíïîñòóöúüç]
+Otherchars: [---'.·]
+Many-Otherchars: yes
+Additionalchars: ÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇàáãèéëíïîñòóöúüç
+Ispell-Args: -B
+Extended-Character-Mode: ~list
+Coding-System: iso-8859-1
+
+Language: catala-utf8 (Catalan utf-8)
+Hash-Name: catala
+Emacsen-Name: catala-utf8
+Debconf-Display: no
+Emacs-Display: no
+Jed-Display: no
+Ispell-Args: -B
+Extended-Character-Mode: ~utf8
+Coding-System: utf-8
--- ispellcat-0.6.orig/debian/myspell-ca.info-myspell
+++ ispellcat-0.6/debian/myspell-ca.info-myspell
@@ -0,0 +1,2 @@
+# Catalan
+DICT ca ES ca_ES
--- ispellcat-0.6.orig/debian/wcatalan.links
+++ ispellcat-0.6/debian/wcatalan.links
@@ -0,0 +1 @@
+/usr/share/dict/catala /usr/share/dict/catalan
--- ispellcat-0.6.orig/debian/aspell-ca.postinst
+++ ispellcat-0.6/debian/aspell-ca.postinst
@@ -0,0 +1,9 @@
+#!/bin/sh -e
+
+COMPAT="ca.compat"
+
+if [ "$1" = "reconfigure" ] || [ "$DEBCONF_RECONFIGURE" ]; then
+    echo "0" > "/var/lib/aspell/$COMPAT"
+fi
+
+#DEBHELPER#
--- ispellcat-0.6.orig/debian/copyright
+++ ispellcat-0.6/debian/copyright
@@ -0,0 +1,78 @@
+-*- coding: utf-8 -*-
+This package was debianized by Agustín Martín Domingo <agmartin@debian.org> on
+Tue, 17 Apr 2001 13:57:02 +0200.
+Jordi Mallach <jordi@debian.org> took over the package on
+Mon, 27 Aug 2001 17:18:37 +0200.
+
+It was downloaded from <http://www.jmoratinos.com/>.
+
+Copyright 2001-2002 Ignasi Labastida i Juan
+Copyright 2002-2006 Joan Moratinos
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+
+Debian packaging copyright:
+
+ Debian changes are
+   Copyright 2001-2008 Jordi Mallach
+   Copyright 2001-2008 Agustin Martin
+ and may be redistributed and/or modified under the terms of the
+ GNU General Public License (GPL) as published by the Free
+ Software Foundation; either version 2 of the License, or (at
+ your option) any later version.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+------------------------------------------------------------------------------
+
+License history:
+
+Version 0.1 of ispellcat was done by Ignasi Labastida i Pla. He agreed
+to licence ispellcat under the GNU General Public Licence in a mail addressed
+to Agustín Martín and Jordi Mallach. You can find an excerpt of such mail at
+the end of this file.
+
+Starting from version 0.2, ispellcat was developed by Joan Moratinos,
+<jmo@softcatala.org> based on the Catalan wordlist by Joan Dolç and
+other sources. He also licenced the package under the GNU GPL.
+
+=== Ignasi's licence statement ==
+
+From: Ignasi Labastida i Juan <nasi@optica.ub.es>
+Subject: Re: licencia de ispellcat
+To: Agustín Martín Domingo <agmartin@aq.upm.es>
+Cc: Ignasi Labastida i Juan <nasi@optica.fao.ub.es>,
+        Jordi Mallach <jordi@sindominio.net>
+Message-ID: <3AFA7217.649C0884@optica.ub.es>
+Date: Thu, 10 May 2001 12:48:55 +0200
+X-Mailer: Mozilla 4.76 [ca] (Win98; U)
+
+Hola Agustín, y por extensión a Jordi,
+
+Referente a tu último mensaje:
+Las modificaciones hechas por suse o redhat no me han sido comunicadas. Me inter
+esaría ver el diff
+para ver las diferencias.
+Perfecto la licencia GPL.
+Las direcciones de correo son las misas, se trata de un alias. Pon la que quiera
+s.
+
+Un saludo,
+Ignasi
+
+--
+Ignasi Labastida i Juan
+Laboratori d'Òptica. Departament de Física Aplicada i Òptica
+Universitat de Barcelona
+Av. Diagonal 647, E08028 Barcelona, Catalonia, Spain
+Tel. +34 934021203     Fax  +34 934021142
+E-mail: nasi@optica.ub.es
+=================================
--- ispellcat-0.6.orig/debian/wcatalan.dirs
+++ ispellcat-0.6/debian/wcatalan.dirs
@@ -0,0 +1 @@
+usr/share/dict
--- ispellcat-0.6.orig/debian/myspell-ca.dirs
+++ ispellcat-0.6/debian/myspell-ca.dirs
@@ -0,0 +1,2 @@
+usr/share/myspell/dicts
+usr/share/myspell/infos/ooo
--- ispellcat-0.6.orig/debian/changelog
+++ ispellcat-0.6/debian/changelog
@@ -0,0 +1,411 @@
+ispellcat (0.6-10) unstable; urgency=low
+
+  * Make sure we no longer create Mozilla* symlinks in new destdir
+    by using installdeb-myspell (> 1.4).
+
+ -- Agustin Martin Domingo <agmartin@debian.org>  Wed, 25 Nov 2009 13:28:04 +0100
+
+ispellcat (0.6-9) unstable; urgency=low
+
+  * Rebuild against dictionaries-common.dev 1.3.1 to have
+    mozilla symlinks fixed.
+
+ -- Agustin Martin Domingo <agmartin@debian.org>  Tue, 25 Aug 2009 17:07:50 +0200
+
+ispellcat (0.6-8) unstable; urgency=low
+
+  * Bump Standards Version to 3.8.3. No changes required.
+  * Install myspell dicts in new location. Use new
+    installdeb-myspell (at least 1.3) for this and for
+    compatibility symlinks (Closes: #541942).
+
+ -- Agustin Martin Domingo <agmartin@debian.org>  Tue, 25 Aug 2009 15:27:55 +0200
+
+ispellcat (0.6-7) unstable; urgency=low
+
+  * debian/*.info-*spell, debian/control:
+    - Do not explicitly add '-d <lang>' to ispell-args. New
+      dictionaries-common will take care of that.
+  * debian/control:
+    - Build Dep on at least dictionaries-common-dev 1.2 to use
+      new debhelper snippets.
+  * Raise debhelper compat level to 7. Use dh_prep.
+  * Raise Standards-Version to 3.8.1. No changes required.
+
+ -- Agustin Martin Domingo <agmartin@debian.org>  Mon, 16 Mar 2009 12:22:25 +0100
+
+ispellcat (0.6-6) unstable; urgency=low
+
+  * Use 7bit Homepage link (Closes: #488676).
+  * Convert wcatalan wordlist to utf-8 (Closes: #384417).
+  * Add ${misc:Depends} to packages Depends, useful in case
+    any of the dh_* scripts implies aditional dependencies.
+  * Use dictionaries-common extra registration support for
+    myspell/hunspell dicts.
+  * Make myspell-ca provide hunspell-ca and friends.
+
+ -- Agustin Martin Domingo <agmartin@debian.org>  Tue, 17 Feb 2009 13:55:04 +0100
+
+ispellcat (0.6-5) unstable; urgency=low
+
+  * Make sure no md5sums are added for variable /var/lib/{a,i}spell stuff.
+
+ -- Agustin Martin Domingo <agmartin@debian.org>  Tue, 23 Sep 2008 11:02:30 +0200
+
+ispellcat (0.6-4) unstable; urgency=low
+
+  * debian/strip_mwl:
+    - Use catalan-i.dic instead of catalan-m.dic.
+  * debian/filter_aspell_aff:
+    - New perl script to fix some buggy aspell flag entries.
+  * debian/rules:
+    - Use debian/filter_aspell_aff to filter catalan-m.aff.
+    - Use tr to handle replacement of extraneous U+0095 characters
+      to U+00B7.
+    - Do not filter out numeric flags for aspell.
+  * debian/control:
+    - Added Vcs entries to the new SVN locations.
+
+ -- Agustin Martin Domingo <agmartin@debian.org>  Tue, 01 Jul 2008 18:00:43 +0200
+
+ispellcat (0.6-3) unstable; urgency=low
+
+  * Try to get max compression from prezip and gzip (LP #73302).
+  * Bump Standards-Version to 3.8.0 (no changes needed).
+  * Make wcatalan priority optional, matching most other wordlist
+    packages.
+  * Add a Homepage field.
+
+ -- Jordi Mallach <jordi@debian.org>  Fri, 13 Jun 2008 17:22:20 +0200
+
+ispellcat (0.6-2) unstable; urgency=low
+
+  * catalan-m.dic: replace a few extraneous U+0095 characters by U+00B7,
+    which is the correct middle dot character.
+
+ -- Jordi Mallach <jordi@debian.org>  Wed, 11 Jun 2008 19:29:17 +0200
+
+ispellcat (0.6-1) unstable; urgency=low
+
+  [ Jordi Mallach ]
+  * New upstream release (20061016 for ispell, 20080609 for myspell).
+    - includes words suggested by Robert (closes: #467292).
+  * Forward port Agustín's patch from 0.5, and submitted it upstream.
+  * Use sort -u instead of uniq to remove repeated words from wcatalan,
+    slightly reducing the wordlist size. Thanks Marc Coll and Agustín
+    (closes: #454772).
+  * icatalan.docs: removed, no longer needed.
+
+  [ Agustín Martín Domingo ]
+  * debian/control:
+    - Bumped standards version to 3.7.3. No changes needed.
+    - Updated to use the new iceape-browser, iceweasel and icedove names.
+  * debian/copyright improved.
+  * Removed trailing whitespace in control, rules, copyright and changelog.
+  * Move reconfigure compat initialization from config to
+    postinst. debian/aspell-ca.overrides is no longer needed.
+
+ -- Jordi Mallach <jordi@debian.org>  Tue, 10 Jun 2008 00:00:03 +0200
+
+ispellcat (0.5-3) unstable; urgency=low
+
+  * debian/control:
+    - fix typo in aspell-ca's description (thanks Simon Waters,
+      closes: #362739).
+    - make icatalan Architecture: all.
+    - bump Standards-Version to 3.7.0.0 (no changes required).
+  * debian/rules: switch to autogenerated ispell hash. Don't install it
+    at build time; make the necessary changes for dictionaries-common to
+    generate it on postinst.
+  * debian/icatalan.links: add extra ispell links.
+
+ -- Jordi Mallach <jordi@debian.org>  Thu, 27 Apr 2006 03:31:35 +0200
+
+ispellcat (0.5-2) unstable; urgency=low
+
+  * debian/ca.dat: don't allow . at the end of words, it causes
+    unexpected results.
+  * debian/control: add Agustín to Uploaders.
+  * debian/rules:
+    - strip words with numbers and dots. Generates some false positives,
+      but fixes the problems with some words ending with a dot being
+      marked as misspellings (closes: #362914).
+    - get rid of a UUOC.
+
+ -- Jordi Mallach <jordi@debian.org>  Thu, 27 Apr 2006 00:10:58 +0200
+
+ispellcat (0.5-1) unstable; urgency=low
+
+  [ Agustin Martin Domingo ]
+  * catalan-m.aff,debian/ca.dat, debian/rules, debian/aspell-ca.config:
+    Improve aspell stuff (closes: #345242, #311391):
+    - Use the complete dictionary for aspell with affix compression.
+    - Replace catalan-m.aff by the one from aspell site to fix some aspell
+      problems. This should work well for myspell.
+    - Allow . at end of words in aspell.
+    - For aspell strip words containing numbers or '.' not at end of word.
+    - Make sure aspell hash is rebuilt on package reconfiguration. Add
+      overrides file to keep lintian happy.
+  * debian/rules: Make sure no cruft is left on purge (closes: #353300).
+  * debian/control: Update dependencies for aspel-ca and myspell-ca.
+
+  [ Jordi Mallach ]
+  * New upstream release (20041027 for ispell, 20051227 for myspell)
+  * Apply Agustín's changes to the new myspell .aff file.
+  * debian/strip_mwl: use the more complete myspell .dic file to generate the
+    wordlist.
+
+ -- Jordi Mallach <jordi@debian.org>  Tue,  4 Apr 2006 11:01:23 +0200
+
+ispellcat (0.4-6) unstable; urgency=low
+
+  * debian/control:
+    - build-depend on aspell again for prezip (closes: #330714).
+    - bump Standards-Version to 3.6.2.0, no changes needed.
+
+ -- Jordi Mallach <jordi@debian.org>  Fri, 30 Sep 2005 01:14:00 +0200
+
+ispellcat (0.4-5) unstable; urgency=low
+
+  * The "That POP THE TRUNK business had me too busy to properly do
+    aspell transitions" release.
+  * debian/rules: install aspell-ca files in the right dir
+    (closes: #325358), ACK doko's NMU.
+  * debian/dirs: adjust dirs.
+  * Switch to autobuilt aspell dictionary hashes, as advised by Brian Nelson
+    (closes: #319680).
+    - debian/control:
+      + add debconf-2.0 alternatives to all debconf dependencies.
+      + aspell-ca Provides: aspell-dictionary.
+      + aspell-ca Depends: on aspell (>= 0.60.3-3).
+      + don't build-depend on aspell.
+    - debian/rules:
+      + necessary changes for aspell-autobuildhash.
+      + move aspell-ca to binary-indep.
+
+ -- Jordi Mallach <jordi@debian.org>  Wed, 28 Sep 2005 18:29:24 +0200
+
+ispellcat (0.4-4.1) unstable; urgency=low
+
+  * Fix target directory for aspell dictionaries (closes: #325358).
+
+ -- Matthias Klose <doko@debian.org>  Tue, 13 Sep 2005 10:49:19 +0000
+
+ispellcat (0.4-4) unstable; urgency=low
+
+  * The "Finnish sea is made of SWEET water!" release.
+  * debian/control:
+    - adjust build-depends and depends to aspell (>= 0.60.3-2) for the C++
+      transition.
+    - change priority of dictionaries to "optional", per the Dictionaries
+      Policy (closes: #301767).
+
+ -- Jordi Mallach <jordi@debian.org>  Tue, 12 Jul 2005 09:42:46 +0200
+
+ispellcat (0.4-3) unstable; urgency=low
+
+  * Transition to Aspell 0.60 (closes: #295012).
+  * debian/control:
+    + build-depend on aspell-bin (>> 0.60).
+    + change Provides: from aspell-dictionary to aspell6-dictionary.
+  * debian/aspell-ca.dirs: updated.
+  * debian/rules: install aspell-ca files into /usr/lib/aspell-0.60/.
+  * debian/copyright: recoded as UTF-8.
+
+ -- Jordi Mallach <jordi@debian.org>  Wed, 16 Feb 2005 00:04:19 +0100
+
+ispellcat (0.4-2) unstable; urgency=low
+
+  * Apply patch from Guillem Jover:
+    - add UTF-8 support.
+    - remove Aspell-Locales.
+    - change language descriptions so the show up ok in Debconf under
+      UTF-8 terminals.
+    - add some missing OtherChars.
+    - remove redundant and invalid AdditionalChars.
+    Many thanks, Guillem! (closes: #286985)
+  * debian/wcatalan.info-wordlist: remove "8bit" suffixes to the wordlist
+    names.
+
+ -- Jordi Mallach <jordi@debian.org>  Sat, 29 Jan 2005 18:51:30 +0100
+
+ispellcat (0.4-1) unstable; urgency=low
+
+  * New upstream release (20030528 for ispell, 20040130 for myspell).
+  * debian/control: transition to the new dictionaries-common .config files
+    (thanks, Agustín Martín Domingo; closes: #232183, #232185).
+    + make icatalan and wcatalan depend on dictionaries-common (>= 0.20).
+    + tighten dictionaries-common-dev build-dependency to (>= 0.20).
+
+ -- Jordi Mallach <jordi@debian.org>  Wed, 11 Feb 2004 14:50:38 +0100
+
+ispellcat (0.3-3) unstable; urgency=low
+
+  * debian/control: tighten build-deps on dictionaries-common-dev to
+    (>= 0.16.0) due to dictionaries policy changes.
+  * debian/icatalan.links: add required link to support Abiword's Enchant.
+  * debian/icatalan.info-ispell: fix Language: so Debconf can display it
+    correctly.
+  * debian/rules:
+    + use installdeb-myspell.
+    + don't create myspell .diff and .aff links.
+  * debian/myspell.post{inst,rm}: removed, handled by installdeb-myspell now.
+
+ -- Jordi Mallach <jordi@debian.org>  Fri,  2 Jan 2004 02:59:25 +0100
+
+ispellcat (0.3-2) unstable; urgency=low
+
+  * debian/control: sync more descriptions with other dictionary packages.
+
+ -- Jordi Mallach <jordi@debian.org>  Wed, 19 Nov 2003 16:34:31 +0100
+
+ispellcat (0.3-1) unstable; urgency=low
+
+  * New upstream release (20030528 for ispell, 20031009 for myspell).
+  * The source package now includes a myspell dictionary/affixes list.
+  * debian/changelog: recoded as UTF-8.
+  * debian/control:
+    + removed the leading "The" from the short descriptions.
+    + add a new binary package: myspell-ca. Work based on Josep Monés i
+      Teixidor's unofficial myspell-ca package. Thanks!
+    + bump Standards-Version to 3.6.1.0.
+  * debian/copyright: change upstream download url to Joan's homepage.
+  * debian/myspell-ca.info-myspell: new info file for myspell-ca.
+  * debian/rules: install new myspell stuff.
+
+ -- Jordi Mallach <jordi@debian.org>  Mon, 17 Nov 2003 16:40:40 +0100
+
+ispellcat (0.2-3) unstable; urgency=low
+
+  * debian/aspell-ca.info-aspell: fix Casechars, Not-Casechars, Otherchars
+    and Additionalchars, they were missing some Catalan characters.
+  * debian/icatalan.info-spell: likewise.
+
+ -- Jordi Mallach <jordi@debian.org>  Wed, 22 Jan 2003 21:56:20 +0100
+
+ispellcat (0.2-2) unstable; urgency=low
+
+  * debian/ca.dat: aspell definition file for Catalan. Thanks to Agustín
+    Martín Domingo for the tips on this.
+  * debian/aspell-ca.aspell-info: info file for aspell-ca, from Agustín.
+  * debian/control:
+    + add Build-Depends: on aspell-bin (>> 0.50).
+    + add a binary section for aspell-ca.
+    + change priority of wcatalan from optional to extra.
+  * debian/rules: create a new aspell-ca package, basing it on ispell-da.
+  * debian/wcatalan.dirs: added aspell-ca dirs.
+  * debian/wcatalan.docs: removed.
+
+ -- Jordi Mallach <jordi@debian.org>  Tue, 21 Jan 2003 18:08:02 +0100
+
+ispellcat (0.2-1) unstable; urgency=low
+
+  * New upstream version, from different authors. From now, we're using
+    Softcatalà's new ispell dictionary, which is more complete and
+    maintained.
+  * debian/{control,copyright}: adapt descriptions and copyright noticed for
+    the new authors.
+  * debian/control:
+    + bump debhelper's Build-Depend to (>= 4.0.0).
+    + Standards-Version: 3.5.8.0 (no changes).
+  * debian/rules:
+    + change build rules for the new filenames.
+    + use debian/strip_mwl to generate catalan.words.debian.
+    + move arguments to dh_installdocs to package.docs.
+    + remove DH_COMPAT.
+  * debian/compat: use DH_COMPAT=4.
+  * debian/strip_mwl: new script from Agustín Martín Domingo. Helps stripping
+    the worldlist from 200Mb to 7, by discarding some flags.
+  * debian/{LEEME.licencia,README}: removed.
+
+ -- Jordi Mallach <jordi@debian.org>  Fri, 29 Nov 2002 12:15:03 +0100
+
+ispellcat (0.1-7) unstable; urgency=low
+
+  * Rebuild against recent dictionaries-common-dev.
+  * debian/control: Build-Depend: on dictionaries-common-dev (>= 0.8.4).
+
+ -- Jordi Mallach <jordi@debian.org>  Thu, 31 Oct 2002 15:17:46 +0100
+
+ispellcat (0.1-6) unstable; urgency=low
+
+  * debian/control: oops, forgot to lower Pre-Depends: dictionaries-common
+    to simple Depends:.
+
+ -- Jordi Mallach <jordi@debian.org>  Wed, 16 Oct 2002 14:05:25 +0200
+
+ispellcat (0.1-5) unstable; urgency=low
+
+  * debian/control: Standards-Version: 3.5.7.0.
+  * debian/rules: use binary-indep to build wcatalan.
+  * Integrated changes from the dict-common team. The following changes were
+    done by Agustín Martín Domingo.
+  * Adapted control file to the new policy.
+  * Set wcatalan priority to optional as it should be
+  * Removed postinst and prerm for icatalan and wcatalan.
+  * Adapted rules file to use the debhelper like helpers from the new
+    policy support.
+  * Added files icatalan.info-ispell and icatalan.info-wordlist as
+    required by policy.
+  * Added a Pspell-Ispell field to icatalan.info-ispell file with contents
+    'ca iso8859-1'. Since we use installdeb-ispell this will autogenerate
+    the appropiate pspell-ispell pwli files.
+
+ -- Jordi Mallach <jordi@debian.org>  Mon, 14 Oct 2002 15:33:02 +0200
+
+ispellcat (0.1-4) unstable; urgency=low
+
+  * debian/control:
+    + added Provides: ispell-dictionary to icatalan
+      (closes: #149852, thanks Jaume).
+    + Replace "ç" with "c" in Joan Dolç's surname, to make the
+      package descriptions ASCII-only (closes: #147698).
+  * debian/changelog: removed Emacs local variables.
+
+ -- Jordi Mallach <jordi@debian.org>  Thu, 13 Jun 2002 14:08:50 +0200
+
+ispellcat (0.1-3) unstable; urgency=low
+
+  * The "typo fixing" release.
+  * debian/{changelog,control,copyright}: language names should be
+    capitalized in English (closes: #124747, #125472). Thanks, Matt!
+  * debian/rules: misc. cleanups.
+
+ -- Jordi Mallach <jordi@debian.org>  Tue, 18 Dec 2001 11:39:35 +0100
+
+ispellcat (0.1-2) unstable; urgency=low
+
+  * New Maintainer.
+  * debian/control:
+    + Standards-Version: 3.5.6.0.
+    + added versioned Build-Dependency for debhelper 3.0.0.
+    + set Maintainer: to me.
+  * debian/rules:
+    + DH_COMPAT=3.
+    + substitute `pwd` calls with $(CURDIR).
+    + removed dh_installdebconf call.
+    + install debian/README with the docs too.
+  * debian/copyright:
+    + added a note about me taking over.
+    + removed "()" from "Authors", so that nitpicking program called
+      lintian shuts up.
+    + added a pointer to LEEME.licencia.
+
+ -- Jordi Mallach <jordi@debian.org>  Mon, 27 Aug 2001 17:18:37 +0200
+
+ispellcat (0.1-1) unstable; urgency=low
+
+  * Initial Release.
+  * debian/rules: upstream catala.hash do not conform with current
+    buildhash. Rebuilding catala.hash as catala.debian.hash and
+    installing it.
+  * debian/rules: need to expand the Catalan wordlist. It still has the
+    /K suffix applied
+  * Upstream author agrees to put the package under the GPL. Added
+    license notice.
+  * Added an emacs snippet to register the Catalan dictionary under
+    emacs. This modifies ispell-dictionary-alist, but unfortunately
+    the menus are not modified under emacs > 19. At least it can be
+    selected with ispell-change-dictionary.
+
+ -- Agustín Martín Domingo <agmartin@debian.org>  Thu, 10 May 2001 13:19:33 +0200
--- ispellcat-0.6.orig/debian/utf-8.sed
+++ ispellcat-0.6/debian/utf-8.sed
@@ -0,0 +1,26 @@
+s/@aacute;/á/g
+s/@Aacute;/Á/g
+s/@agrave;/à/g
+s/@Agrave;/À/g
+s/@eacute;/é/g
+s/@Eacute;/É/g
+s/@egrave;/è/g
+s/@Egrave;/È/g
+s/@iacute;/í/g
+s/@Iacute;/Í/g
+s/@iuml;/ï/g
+s/@Iuml;/Ü/g
+s/@oacute;/ó/g
+s/@Oacute;/Ó/g
+s/@ograve;/ò/g
+s/@Ograve;/Ò/g
+s/@uacute;/ú/g
+s/@Uacute;/Ú/g
+s/@uuml;/ü/g
+s/@Uuml;/Ü/g
+s/@ccedilla;/ç/g
+s/@Ccedilla;/Ç/g
+s/@ntilde;/ñ/g
+s/@Ntilde;/Ñ/g
+s/@middledot;/·/g
+
--- ispellcat-0.6.orig/debian/icatalan.dirs
+++ ispellcat-0.6/debian/icatalan.dirs
@@ -0,0 +1,3 @@
+usr/lib/ispell
+usr/share/ispell
+var/lib/ispell
--- ispellcat-0.6.orig/debian/aspell-ca.info-aspell
+++ ispellcat-0.6/debian/aspell-ca.info-aspell
@@ -0,0 +1,12 @@
+Language: catala8 (Catalan 8 bits)
+Hash-Name: catala
+Emacsen-Name: catala8
+Casechars: [A-ZÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇa-zàáãèéëíïîñòóöúüç]
+Not-Casechars: [^A-ZÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇa-zàáãèéëíïîñòóöúüç]
+Otherchars: [---'.·]
+Many-Otherchars: yes
+Additionalchars: ÀÁÃÈÉËÍÏÎÑÒÓÖÚÜÇàáãèéëíïîñòóöúüç
+Ispell-Args: -B
+Extended-Character-Mode: ~list
+Coding-System: iso-8859-1
+Aspell-Locales: ca
--- ispellcat-0.6.orig/debian/icatalan.links
+++ ispellcat-0.6/debian/icatalan.links
@@ -0,0 +1,4 @@
+/usr/lib/ispell/catala.aff  /usr/lib/ispell/catalan.aff
+/var/lib/ispell/catala.hash /usr/lib/ispell/catala.hash
+/usr/lib/ispell/catala.hash /usr/lib/ispell/catalan.hash
+/usr/lib/ispell/catala.hash /usr/share/enchant/ispell/catalan.hash
--- ispellcat-0.6.orig/debian/control
+++ ispellcat-0.6/debian/control
@@ -0,0 +1,57 @@
+Source: ispellcat
+Section: text
+Priority: optional
+Build-Depends: aspell, ispell, debhelper (>= 7), dictionaries-common-dev (>=1.4)
+Maintainer: Jordi Mallach <jordi@debian.org>
+Uploaders: Agustin Martin Domingo <agmartin@debian.org>
+Homepage: http://www.softcatala.org/wiki/Corrector_ortogr%C3%A0fic
+Vcs-Browser: http://svn.debian.org/viewsvn/collab-maint/deb-maint/ispellcat/trunk/
+Vcs-Svn: svn://svn.debian.org/collab-maint/deb-maint/ispellcat/trunk
+Standards-Version: 3.8.3
+
+Package: icatalan
+Architecture: all
+Priority: optional
+Depends: ${misc:Depends}, dictionaries-common (>= 1.1), ispell, debconf | debconf-2.0
+Provides: ispell-dictionary
+Suggests: wcatalan
+Description: Catalan dictionary for ispell
+ This is the Catalan dictionary for ispell as put together by
+ Joan Moratinos using data from different sources.
+
+Package: wcatalan
+Priority: optional
+Architecture: all
+Depends: ${misc:Depends}, dictionaries-common (>= 1.1), debconf | debconf-2.0
+Provides: wordlist
+Description: Catalan dictionary words for /usr/share/dict
+ This package provides the file /usr/share/dict/catala containing
+ an alphabetic list of Catalan words.
+ .
+ It was put together by Joan Moratinos using data from different sources.
+
+Package: aspell-ca
+Priority: optional
+Architecture: all
+Depends: ${misc:Depends}, aspell (>= 0.60.3-3), dictionaries-common (>= 1.1)
+Provides: aspell-dictionary
+Description: Catalan dictionary for aspell
+ This package contains all the required files to add support for the
+ Catalan language to the GNU Aspell spell checker.
+ .
+ It was put together by Joan Moratinos using data from different sources.
+
+Package: myspell-ca
+Priority: optional
+Architecture: all
+Depends: ${misc:Depends}, dictionaries-common (>= 1.1)
+Provides: openoffice.org-spellcheck-ca, hunspell-ca,
+ myspell-dictionary, myspell-dictionary-ca,
+ hunspell-dictionary, hunspell-dictionary-ca
+Suggests: openoffice.org (>= 1.0.3-3), iceape-browser | iceweasel | icedove
+Conflicts: openoffice.org (<= 1.0.3-2), hunspell-ca
+Description: Catalan dictionary for myspell
+ This is the Catalan dictionary for use with the myspell spellchecker
+ which is currently used within OpenOffice.org and the Mozilla spellchecker.
+ .
+ It was put together by Joan Moratinos using data from different sources.
--- ispellcat-0.6.orig/debian/rules
+++ ispellcat-0.6/debian/rules
@@ -0,0 +1,135 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+ADICT_DIR = $(CURDIR)/debian/aspell-ca
+IDICT_DIR = $(CURDIR)/debian/icatalan
+MDICT_DIR = $(CURDIR)/debian/myspell-ca
+WORDS_DIR = $(CURDIR)/debian/wcatalan
+OOOTMP    = ooo-tmp
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	chmod +x debian/strip_mwl
+
+        # Substitute UTF-8 encoded chars
+	sed -f debian/utf-8.sed catalan-i.aff > catalan-i.debian.aff
+
+#	This generates the icatalan hash file.
+#	As of ispellcat 0.5-3, the ispell has is autogenerated at
+#	install time. The .hash is still needed here for wcatalan.
+	buildhash catalan-i.dic catalan-i.debian.aff catala.debian.hash
+	gzip --best -c catalan-i.dic > catala.mwl.gz
+
+#	This generates the wcatalan wordlist.
+	debian/strip_mwl | ispell -d $(CURDIR)/catala.debian -e | \
+		tr -s ' ' '\n' | grep -v ^[0-9] | sort -u | \
+		iconv -f latin1 -t utf-8 > catala.words.debian
+
+#	Filter extraneous U+0095 characters to U+00B7, which is the correct middle dot character.
+	cat catalan-m.dic | tr '\225' '\267' > catalan-m.dic.fixed
+	@if cmp catalan-m.dic catalan-m.dic.fixed 2>&1 > /dev/null; then \
+		echo "  **WARNING**: catalan-m.dic and catalan-m.dic.fixed are already the same"; fi
+
+#	Fix some buggy aspell flag entries
+	perl -f debian/filter_aspell_aff < catalan-m.aff > catalan-m.aff.fixed
+
+#	This generates aspell-ca stuff.
+#	As of ispellcat 0.4-5, the aspell hash is autogenerated at
+#	install time.
+#	ln -s debian/ca.dat .
+#	cat catala.words.debian | \
+#		aspell --local-data-dir=$(CURDIR) --lang=ca \
+#			create master ./ca.rws
+#	prezip -c catalan-m.dic | gzip -c > ca.cwl.gz
+	LANG=C sort catalan-m.dic.fixed | \
+		grep -v -e ^[a-zA-Z]*[0-9] -e '\.' | \
+		prezip -s -c | gzip --best -c > ca.cwl.gz
+
+	echo "add ca.rws" > ca.multi
+	echo "add ca.multi" > catalan.alias
+	echo "add ca.multi" > catala.alias
+	echo "add ca.multi" > català.alias
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+	rm -f catalan-i.debian.aff
+	rm -f catala.debian.hash catalan-i.dic.stat catalan-i.dic.cnt
+	rm -f catalan-m.dic.fixed catalan-m.aff.fixed
+	rm -f catala.words.debian
+	rm -f ca.rws ca.dat
+	rm -f ca.multi catalan.alias catala.alias català.alias
+	rm -f ca.cwl.gz catala.mwl.gz
+	rm -rf $(OOOTMP)
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_prep
+	dh_installdirs
+
+	# icatalan stuff
+#	install -m 644 catala.debian.hash $(IDICT_DIR)/usr/lib/ispell/catala.hash
+	install -m 644 catala.mwl.gz $(IDICT_DIR)/usr/share/ispell
+	install -m 644 catalan-i.debian.aff $(IDICT_DIR)/usr/lib/ispell/catala.aff
+	touch $(IDICT_DIR)/var/lib/ispell/catala.compat
+	touch $(IDICT_DIR)/var/lib/ispell/catala.hash
+
+	# wcatalan stuff
+	install -m 644 catala.words.debian $(WORDS_DIR)/usr/share/dict/catala
+
+	# aspell-ca stuff
+	install -m 644 ca.cwl.gz $(ADICT_DIR)/usr/share/aspell
+	install -m 644 debian/ca.dat $(ADICT_DIR)/usr/lib/aspell/ca.dat
+	install -m 644 catalan-m.aff.fixed $(ADICT_DIR)/usr/lib/aspell/ca_affix.dat
+	install -m 644 ca.multi $(ADICT_DIR)/usr/lib/aspell/ca.multi
+	install -m 644 catalan.alias $(ADICT_DIR)/usr/lib/aspell/catalan.alias
+	install -m 644 catala.alias $(ADICT_DIR)/usr/lib/aspell/catala.alias
+	install -m 644 català.alias $(ADICT_DIR)/usr/lib/aspell/català.alias
+	touch $(ADICT_DIR)/var/lib/aspell/ca.rws
+	touch $(ADICT_DIR)/var/lib/aspell/ca.compat
+
+#	install -m 644 ca_phonet.dat $(ADICT_DIR)/usr/lib/aspell/ca_phonet.dat
+
+	# myspell-ca stuff
+	#install -m 644 catalan-m.dic.fixed $(MDICT_DIR)/usr/share/myspell/dicts/ca_ES.dic
+	#install -m 644 catalan-m.aff.fixed $(MDICT_DIR)/usr/share/myspell/dicts/ca_ES.aff
+#	install -m 644 debian/myspell-ca.info-myspell $(MDICT_DIR)/usr/share/myspell/infos/ooo/myspell-ca
+	mkdir -p $(OOOTMP)
+	install -m 644 catalan-m.dic.fixed $(OOOTMP)/ca_ES.dic
+	install -m 644 catalan-m.aff.fixed $(OOOTMP)/ca_ES.aff
+
+binary-indep: build install
+	dh_testdir -i
+	dh_testroot -i
+	dh_installdocs -i
+	installdeb-aspell -paspell-ca
+	installdeb-ispell -picatalan
+	installdeb-myspell -pmyspell-ca --srcdir=$(OOOTMP)
+	installdeb-hunspell -pmyspell-ca
+	installdeb-wordlist -pwcatalan
+	dh_installdebconf -paspell-ca
+	dh_link -i
+	dh_installchangelogs -i
+	dh_compress -i
+	dh_fixperms -i
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i -Xvar/lib/aspell -Xvar/lib/ispell
+	dh_builddeb -i
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install