Skip Menu |

This queue is for tickets about the Text-SpellChecker CPAN distribution.

Report information
The Basics
Id: 61366
Status: resolved
Priority: 0/
Queue: Text-SpellChecker

People
Owner: bduggan [...] matatu.org
Requestors: paul [...] city-fan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: RFE: optionally support hunspell backend
Many Linux distributions are migrating from aspell to hunspell as the default spell checking engine; for instance, RHEL-6 uses hunspell everywhere and will not be shipping any aspell dictionaries. It would be nice then for Text-SpellChecker to support hunspell as an optional backed if possible. There is a Text::Hunspell module available that's based on Text::Aspell but unfortunately the API is a little different so it's a non-trivial port (at least not just a s/Aspell/Hunspell/ type job).
On Wed Sep 15 12:28:54 2010, paul@city-fan.org wrote: Show quoted text
> It would be nice then for Text-SpellChecker to support hunspell as an > optional backed if possible.
Thanks, looks pretty straightforward, I'll see what I can do.
As of version 0.07, Text::Hunspell will be used if available.
From: paul [...] city-fan.org
On Thu Sep 16 20:44:51 2010, BDUGGAN wrote: Show quoted text
> As of version 0.07, Text::Hunspell will be used if available.
Thanks, that works great. Just one niggle: the test suite fails if Text::Aspell is unavailable. As a workaround I just deleted the SKIP section that checks for the presence of the English dictionary.
On Fri Sep 17 15:48:06 2010, paul@city-fan.org wrote: Show quoted text
> On Thu Sep 16 20:44:51 2010, BDUGGAN wrote:
> > As of version 0.07, Text::Hunspell will be used if available.
> > Thanks, that works great. Just one niggle: the test suite fails if > Text::Aspell is unavailable.
Thanks, fixed this in 0.08. Brian