summaryrefslogtreecommitdiff
path: root/textproc
AgeCommit message (Collapse)AuthorFilesLines
2010-08-20Added textproc/p5-POD2-Basesno1-1/+2
2010-08-20Importing package for Perl5 module POD2::Base 0.043 intosno3-0/+42
textproc/p5-POD2-Base as dependency of scheduled update of editors/p5-Padre to 0.69. This module is an abstraction of the code in POD2::IT and POD2::FR. These modules belong to the Italian and the French translation projects of core Perl pods. Once a translation package had been installed, the translated documentation can be accessed with: $ perldoc POD2::<lang>::<podname> (where <lang> is a language abbreviation like IT, FR, TLH, etc.) To improve the support to read translated docs, the perldoc utility (since version 3.14_01) was updated to find translated PODs via: $ perldoc -L IT <podpage> $ perldoc -L FR -f <function> $ perldoc -L TH -q <FAQregex>
2010-08-19Added textproc/p5-Lingua-EN-Inflect-Phrasesno1-1/+2
2010-08-19Importing package for Perl5 module Lingua::EN::Inflect::Phrase 0.04 intosno3-0/+34
textproc/p5-Lingua-EN-Inflect-Phrase as dependency of scheduled update of DBIx::Class::Schema::Loader Attempts to pluralize or singularize short English phrases.
2010-08-19add a comment for future updatessno1-1/+3
2010-08-19Added textproc/p5-Lingua-EN-Taggersno1-1/+2
2010-08-19Importing package for Perl5 module Lingua::EN::Tagger 0.16 intosno3-0/+39
textproc/p5-Lingua-EN-Tagger as dependency of scheduled import of Lingua::EN::Inflect::Phrase, which is a dependency of scheduled update of DBIx::Class::Schema::Loader. The module is a probability based, corpus-trained tagger that assigns POS tags to English text based on a lookup dictionary and a set of probability values. The tagger assigns appropriate tags based on conditional probabilities - it examines the preceding tag to determine the appropriate tag for the current word. Unknown words are classified according to word morphology or can be set to be treated as nouns or other parts of speech. The tagger also extracts as many nouns and noun phrases as it can, using a set of regular expressions.
2010-08-19Added textproc/p5-Lingua-Stemsno1-1/+2
2010-08-19Importing package for Perl5 module Lingua::Stem 0.84 intosno3-0/+35
textproc/p5-Lingua-Stem as dependency of scheduled import of Lingua::EN::Tagger, which is a dependency for the scheduled update of DBIx::Class::Schema::Loader. This routine applies stemming algorithms to its parameters, returning the stemmed words as appropriate to the selected locale.
2010-08-19Added textproc/p5-Text-Germansno1-1/+2
2010-08-19Importing package for Perl5 module Text::German 0.06 as dependency ofsno3-0/+31
scheduled import of Lingua::Stem 0.84. This is a rather incomplete implementation of work done by Gudrun Putze-Meier. I have to confess that I never read her original paper. So all credit belongs to her, all bugs are mine. I tried to get some insight from an implementation of two students of mine. They remain anonymous because their work was the wost piece of code I ever saw. My code behaves mostly as their implementation did except it is about 75 times faster.
2010-08-19Added textproc/p5-Snowball-Swedishsno1-1/+2
2010-08-19Importing package for Perl5 module Lingua::Stem::Snowball::Se 1.2 (CPANsno3-0/+30
dist Snowball-Swedish) into textproc/p5-Snowball-Swedish as dependency for scheduled import of Lingua::Stem. The stem function takes a scalar as a parameter and stems the word according to Martin Porters Swedish stemming algorithm, which can be found at the Snowball website: http://snowball.tartarus.org/. It also supports caching if the use_cache option is passed when constructing a new L:S:S:N object.
2010-08-19Added textproc/p5-Snowball-Norwegiansno1-1/+2
2010-08-19Importing package for Perl5 module Lingua::Stem::Snowball::No 1.2sno3-0/+30
(CPAN distribution Snowball-Norwegian) into textproc/p5-Snowball-Norwegian. The stem function takes a scalar as a parameter and stems the word according to Martin Porters Norwegian stemming algorithm, which can be found at the Snowball website: http://snowball.tartarus.org/. It also supports caching if the use_cache option is passed when constructing a new L:S:S:N object.
2010-08-19Added textproc/p5-Lingua-Stem-Snowball-Da version 1.01sno1-1/+2
2010-08-19Importing package for Perl5 module Lingua::Stem::Snowball::Da 1.01 assno3-0/+30
dependency of scheduled import of Lingua::Stem 0.84. The stem function takes a scalar as a parameter and stems the word according to Martin Porters Danish stemming algorithm, which can be found at the Snowball website: http://snowball.tartarus.org/. It also supports caching if the use_cache option is passed when constructing a new L:S:S:D object.
2010-08-19Added textproc/p5-Lingua-Stem-Rusno1-1/+2
2010-08-19Importing package for Perl5 module Lingua::Stem::Ru 0.01 as dependencysno3-0/+33
of scheduled import for Lingua::Stem. This module applies the Porter Stemming Algorithm to its parameters, returning the stemmed words. The algorithm is implemented exactly as described in: * http://snowball.tartarus.org/russian/stemmer.html The code is carefully crafted to work in conjunction with the Lingua::Stem module by Benjamin Franz. This stemmer is also based on the work of Aldo Capini, see Lingua::Stem::It.
2010-08-19Added textproc/p5-Lingua-Stem-Itsno1-1/+2
2010-08-19Importing package for Perl5 module Lingua::Stem::It 0.02 intosno3-0/+33
textproc/p5-Lingua-Stem-It as dependency for Lingua::Stem, which is a dependency of the scheduled update of DBIx::Class::Schema::Loader This module applies the Porter Stemming Algorithm to its parameters, returning the stemmed words. The algorithm is implemented exactly (I hope :-) as described in: http://snowball.tartarus.org/algorithms/italian/stemmer.html The code is carefully crafted to work in conjunction with the Lingua::Stem module by Benjamin Franz, from which I've also borrowed some functionalities (caching and exception list).
2010-08-19Added textproc/p5-Lingua-Stem-Frsno1-1/+2
2010-08-19Importing package for Perl5 module Lingua::Stem::Fr 0.02 intosno3-0/+35
textproc/p5-Lingua-Stem-Fr as dependency of scheduled import of Lingua::Stem as dependency of scheduled update of DBIx::Class::Schema::Loader This module use the a modified version of the Porter Stemming Algorithm to return a stemmed words. The algorithm is implemented as described in: * http://snowball.tartarus.org/french/stemmer.html with some improvement. The code is carefully crafted to work in conjunction with the Lingua::Stem module by Benjamin Franz. This french version is based too, on the work of Aldo Calpini (Italian Version)
2010-08-19Added textproc/p5-Lingua-PT-Stemmersno1-1/+2
2010-08-19Importing package for p5 module Lingua::PT::Stemmer 0.01 as dependencysno3-0/+34
of Lingua::Stem 0.84 import (for DBIx::Class::Schema::Loader update). Implements a Portuguese stemming algorithm proposed in the paper A Stemming Algorithm for the Portuguese Language by Moreira, V. and Huyck, C. Galician is an endangered language spoken in northwest region of Spain. Galician is morphologically similar to Portuguese but phonetics differs greatly. Due to the morphological similarity between Portuguese and Galician, Portuguese stemming algorithm can be adopted to stem Galician texts. See http://bvg.udc.es/recursos_lingua/stemming.html for stemming rules.
2010-08-17Update to 1.48:wiz2-6/+6
1.48 - April 23, 2010 - Fix the $rss->parse($string)->other_method() display (had to add spaces between the << and >>). See: - https://rt.cpan.org/Public/Bug/Display.html?id=56848 - Thanks to Slaven_Rezic for the report.
2010-08-17Updating textproc/p5-YAML-Tiny from 1.43 to 1.44sno2-6/+6
Upstream changes: 1.44 Sun 8 Aug 2010 - No functional changes, upgrading is not required - Minor tweaks to Makefile.PL - Minor cleanup around the refaddr emulation code
2010-08-16Update to 1.12:wiz2-6/+6
[Changes for 1.12 (YAML::Syck 0.35 ) - 2010-08-03] * The tie test proved to be very unstable for 5.8 and it's not relevant for tie actually. I'm converting it to a TODO for now. [Changes for 1.11 (YAML::Syck 0.35 ) - 2010-08-03] * Tests are now stable. releasing 1.11
2010-08-15Update to 20100727:wiz2-6/+6
since 20090107: - new words - on systems without ispell one can use "make AFFIX_EXPANDER=aspell foo" to build dictionaries that need affix expansion to be built
2010-08-07Update to 1.8: Recognize xen and x86 as architectures.wiz2-4/+4
2010-08-07Update to 2.38:wiz2-6/+6
package properly (tx Michael Jenny, Vincent Fretin)
2010-08-06Update tokyodystopia to 0.9.15.obache2-8/+11
2010-08-01 FAL Labs <info@fallabs.com> - site documents were modified. - Release: 0.9.15
2010-08-05+ py-xlrd.obache1-1/+2
2010-08-05Import py-xlrd-0.7.1 as textproc/py-xlrd.obache4-0/+96
Extract data from new and old Excel spreadsheets on any platform. Pure Python (2.1 or later). Strong support for Excel dates. Unicode-aware.
2010-08-04Update p5-Lingua-EN-Inflect from version 1.89.1 to version 1.89.2seb2-7/+7
(uptream version 1.892) Upstream changes: 1.892 Mon Jun 28 11:01:52 2010 - Swatted POD nits (thanks Frank and Paul) - Fixed A() handling of def_A() (thanks Paul) - Fixed PL_eq() handling of adjectives (thanks Paul) - Removed redundant military terms (thanks Paul) - Fixed single-pronumeral ordinals: an a-th, a b-th, etc. (thanks Paul) - Added present participle fixes for 'is/am/are/was/were/have/had/alibi/hoe' (thanks Paul) - Fixed pluralization of verb "quizzes" (thanks Paul)
2010-08-04Update p5-XML-Rabbit from version 0.0.1 to version 0.0.2.seb2-6/+6
Upstream changes: 0.0.2 2010-06-21 15:24:18 Europe/Oslo libxml 2.6.16 is incompatible (David Cantrell)
2010-08-04Update p5-Text-RewriteRules from version 0.21 to version 0.23.seb2-6/+6
Upstream changes: 0.23 2010, May 26 (19:51) - Added /d debug mode for RULES and RULES/m; 0.22 2010, Apr 4 (20:02) - It seems that some code was using an undefined behavior of \G and regular expressions. That code was workarounded not to use it. While it worked perfectly under perl 5.8 and perl 5.10 something changed on perl 5.12 regular expression engine that created this behavior.
2010-08-04Update p5-Text-MicroTemplate from version 0.13 to version 0.14.seb2-6/+6
Upstream changes: 0.14 - optimization (concatenate multi-line string constants at compile time)
2010-08-04Update p5-Text-Markdown from version 1.0.30 to version 1.0.31 (upstreamseb3-20/+7
version 1.000031) Upstream changes: 1.0.31 2010-03-20T23:06:04 - Fix installation of the Markdown.pl script.
2010-08-01+ ruby-hikidocobache1-1/+2
2010-08-01Import ruby-hikidoc-0.0.4 as textproc/ruby-hikidoc.obache4-0/+37
'HikiDoc' is a text-to-HTML conversion tool for web writers. HikiDoc allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid HTML (or XHTML).
2010-08-01Fix dependencyjoerg1-2/+2
2010-07-31Updating textproc/p5-Text-Autoformat from 1.666.0 to 1.669.002sno2-8/+8
pkgsrc changes: - clarify license definition Upstream changes since 1.666.0: 1.669002 Tue Jun 22 15:39:35 2010 - Patched missing case in 'ignore' option handling (thanks Alan) 1.669001 Fri May 28 07:38:36 2010 - Added major improvements to the 'ignore' option (thanks Dan!) 1.668001 Sat Apr 3 15:38:55 2010 - Removed spurious debugging statement in bad Pod. (Thanks Chris)
2010-07-31Updating textproc/p5-Pod-Readme from 0.09 to 0.10sno2-6/+7
pkgsrc changes: - adjust module type (Module::Build) Upstream changes: 0.10 2010-05-19 - David Precious <davidp@preshweb.co.uk> taking over maintainership - Apply POD fix patch from RT #38328, thanks to David A. Desrosiers
2010-07-31Updating textproc/p5-Pod-Coverage from 0.20 to 0.21sno2-6/+7
pkgsrc changes: - add license definition Upstream changes: 0.21 Tuesday 27th July, 2010 Add SCALAR to the stoplist (implementaion method for tied hashes). Report by David Cantrell.
2010-07-31Updating textproc/p5-Pod-POM from 0.25 to 0.27sno2-6/+8
pkgsrc changes: - adding license definition Upstream changes: #------------------------------------------------------------------------ # Version 0.27 2010-04-02 #------------------------------------------------------------------------ * changed 'unless (defined (%{"$class\::ACCEPT"}))' to just 'unless (%{"$class\::ACCEPT"})' in Pod::POM::Node to fix defect #56205 (use of the now deprecated "defined(%hash)" construct) #------------------------------------------------------------------------ # Version 0.26 2009-08-20 #------------------------------------------------------------------------ * updated Makefile.PL to require at least 2001.0929 of Text::Wrap, as versions prior to this always unexpand tabs. * applied Andreas Koenig's encoding patch * changed 'use base' to 'use parent' * split Pod::POM::Nodes into separate modules, retaining the original file to just use all the individual node modules. * added AF to author and copyright info for modules (in addition to ABW)
2010-07-31Updating textproc/p5-YAML-Syck from 1.07 to 1.10sno2-9/+8
pkgsrc changes: - use PERL5_MODULE_TYPE instead of manual depend on M::I - add license definition Upstream changes: [Changes for 1.10 (JSON::Syck 0.32) - 2010-06-06] 1.09 was released with version 0.97 of Module::Install. It had a critical bug that I reported which broke installations on perl 5.8.3 and older. This release is equivalent to 1.09 aside from bumping Module::Install to 0.99 which fixed the bug. [Changes for 1.09 (JSON::Syck 0.32) - 2010-05-29] * Exactly equivalent to 1.08_01, aside from bumping the version numbers [Changes for 1.08_01 (JSON::Syck 0.31_01) - 2010-05-23] * Reset the hash iterator after dumping hashes. Solves RT #54167 and the duplicate RT #34166. * RT #39572: Only print 0.60 compatibility warning if 0.60 or earlier is installed. [Changes for 1.08 (JSON::Syck 0.31) - 2010-05-23] Like the 1.07_01 test release aside from small documentation improvements. * POD link to JSON::XS from JSON::Syck * Include a WARNING section in the YAML::Syck pod that mentions that the module hasn't been actively maintained since 2007, and that perhaps prospective users might want to turn elsewhere. [Changes for 1.07_01 (JSON::Syck 0.30) - 2010-05-20] About: First release by new maintainer (AVAR). The source repository is now hosted in Git at http://github.com/avar/YAML-Syck YAML::Syck is still pretty much abandonware, all its bugs likely to get fixed any time soon. Code fixes: * Strings starting with : are now always quoted. Ruby will interpret anything starting with a colon as a symbol. Before this fix strings exported from YAML::Syck would be interpreted as Ruby symbols when read by Ruby's syck. Release engineering fixes: * Upgrade from Module::Install 0.68 to 0.97 * Bump included Test::More dependency * Remove included inc/attributes.pm dependency. Nothing in our dependencies used this anymore. * Add homepage, bugtracker, and repository metadata to META.yml * Bump perl dependency from 5.00307 to 5.006. 5.005 is all Module::Install supported, and YAML::Syck depends on Scalar::Util which only goes as low as 5.006.
2010-07-31Updating textproc/p5-XML-Twig from 3.34 to 3.35sno2-8/+7
pkgsrc changes: - remove dead master site Upstream changes: version: 3.35 date: # minor maintenance release added: the by_file option to xml_grep that limits the number of hits per file added: allowed the text of ignored elements to be buffered in a string fixed: comments need to be escaped (you can't have 2 '-' in a row), RT#57389 spotted by Konstantin Tchernov https://rt.cpan.org/Ticket/Display.html?id=57389 fixed: after $elt->cut_children, $elt->empty is false RT#54570 spotted and patched by Andrew Pimlott https://rt.cpan.org/Ticket/Display.html?id=54570 fixed: documented the fact that latin1 is ISO-8859-15, see RT#37431 https://rt.cpan.org/Ticket/Display.html?id=37431
2010-07-31Updating textproc/p5-XML-Tidy from 1.2.54 to 1.6sno2-9/+10
pkgsrc changes: - adjust PTVR removal regex - add license definition - adjust dependencies Upstream changes: - 1.6.A7RJKwl Tue Jul 27 19:20:58:47 2010 * added head2 POD for EXPORTED CONSTANTS to try to pass t/00podc.t
2010-07-31Updating textproc/p5-XML-LibXML-Simple from 0.13 to 0.14sno2-6/+8
pkgsrc changes: - adjust dependencies Upstream changes: version 0.14: Fri Jul 16 11:17:49 CEST 2010 Fixes: - do not use /bin/pwd in t/99pod.t - forgot to define xml_in. rt.cpan.org#59172 [Justin Case]