Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-Text-Soundex-3.05-bp153.1.1 RPM for armv7hl

From OpenSuSE Ports Leap 15.3 for armv7hl

Name: perl-Text-Soundex Distribution: SUSE Linux Enterprise 15 SP3
Version: 3.05 Vendor: openSUSE
Release: bp153.1.1 Build date: Mon Feb 15 10:40:17 2021
Group: Development/Libraries/Perl Build host: obs-arm-6
Size: 48586 Source RPM: perl-Text-Soundex-3.05-bp153.1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: http://search.cpan.org/dist/Text-Soundex/
Summary: Implementation of the soundex algorithm
Soundex is a phonetic algorithm for indexing names by sound, as pronounced
in English. The goal is for names with the same pronunciation to be encoded
to the same representation so that they can be matched despite minor
differences in spelling. Soundex is the most widely known of all phonetic
algorithms and is often used (incorrectly) as a synonym for "phonetic
algorithm". Improvements to Soundex are the basis for many modern phonetic
algorithms. (Wikipedia, 2007)

This module implements the original soundex algorithm developed by Robert
Russell and Margaret Odell, patented in 1918 and 1922, as well as a
variation called "American Soundex" used for US census data, and current
maintained by the National Archives and Records Administration (NARA).

The soundex algorithm may be recognized from Donald Knuth's *The Art of
Computer Programming*. The algorithm described by Knuth is the NARA
algorithm.

The value returned for strings which have no soundex encoding is defined
using '$Text::Soundex::nocode'. The default value is 'undef', however
values such as ''Z000'' are commonly used alternatives.

For backward compatibility with older versions of this module the
'$Text::Soundex::nocode' is exported into the caller's namespace as
'$soundex_nocode'.

In scalar context, 'soundex()' returns the soundex code of its first
argument. In list context, a list is returned in which each element is the
soundex code for the corresponding argument passed to 'soundex()'. For
example, the following code assigns @codes the value '('M200', 'S320')':

   @codes = soundex qw(Mike Stok);

To use 'Text::Soundex' to generate codes that can be used to search one of
the publically available US Censuses, a variant of the soundex algorithm
must be used:

    use Text::Soundex;
    $code = soundex_nara($name);

An example of where these algorithm differ follows:

    use Text::Soundex;
    print soundex("Ashcraft"), "\n";       # prints: A226
    print soundex_nara("Ashcraft"), "\n";  # prints: A261

Provides

Requires

License

HPND

Changelog

* Sat Nov 14 2015 coolo@suse.com
  - updated to 3.05
    see /usr/share/doc/packages/perl-Text-Soundex/Changes
* Mon Oct 19 2015 coolo@suse.com
  - set license to HPND
* Fri Apr 17 2015 coolo@suse.com
  - updated to 3.04
    see /usr/share/doc/packages/perl-Text-Soundex/Changes
    3.04  Thu Feb  7 15:53:09 EST 2013 <rjbs@cpan.org>
    The module is going to be removed from the core distribution of perl, and will
    now warn (under warnings) if loaded from its installed-to-core location.
* Sun May 15 2011 jw@novell.com
  - initial pull from CPAN with cpanspec_obs-0.7
* Sun May 15 2011 jw@novell.com
  - initial package 3.03
    * created by cpanspec 1.78.04

Files

/usr/lib/perl5/vendor_perl/5.26.1/armv7l-linux-thread-multi
/usr/lib/perl5/vendor_perl/5.26.1/armv7l-linux-thread-multi/Text
/usr/lib/perl5/vendor_perl/5.26.1/armv7l-linux-thread-multi/Text/Soundex.pm
/usr/lib/perl5/vendor_perl/5.26.1/armv7l-linux-thread-multi/auto/Text
/usr/lib/perl5/vendor_perl/5.26.1/armv7l-linux-thread-multi/auto/Text/Soundex
/usr/lib/perl5/vendor_perl/5.26.1/armv7l-linux-thread-multi/auto/Text/Soundex/Soundex.so
/usr/share/doc/packages/perl-Text-Soundex
/usr/share/doc/packages/perl-Text-Soundex/Changes
/usr/share/doc/packages/perl-Text-Soundex/LICENSE
/usr/share/doc/packages/perl-Text-Soundex/README
/usr/share/man/man3/Text::Soundex.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 16:43:41 2024