summaryrefslogtreecommitdiff
path: root/textproc
AgeCommit message (Collapse)AuthorFilesLines
2006-02-15Fixed pkglint warnings.rillig1-11/+7
2006-02-15Updated to version 0.07.heinz2-8/+7
Pkgsrc changes: - New prerequisite package p5-Class-ErrorHandler. - Removed dependency on p5-Cryp-DES. Crypt::DES is not used anywhere in the package. Changes since version 0.06: =========================== 0.07 2005.05.25 - Allow passing in Name and Macro parameters on encode and decode, rather than just at initialization. - Use Class::ErrorHandler instead of our own built-in error-handling class. - Switched to using Module::Install in Makefile.PL.
2006-02-13Merge rdversion.mk into buildlink3.mk and obsolete it.taca2-18/+9
2006-02-11Fixed quoting in the sed command.rillig1-5/+5
2006-02-10Fix buildling on Darwin/MacOSXadam3-3/+16
2006-02-10Only allow python 2.3 or 2.4, as older versions cause problems at runtimejmmv2-4/+5
WRT Unicode. Found by jnemeth@. Bump PKGREVISION to 3.
2006-02-07update to 0.34.2drochner2-7/+6
changes: bugfixes
2006-02-07sync with libxmldrochner2-7/+6
2006-02-07"foo=bar break" in a for loop assigns foo only for the duration ofjoerg2-20/+30
break, not in the global scope. This means that the automatic detection of boost::regex isn't caried into global scope, so fix this. No idea how this could have ever worked.
2006-02-07Patch away dead dmalloc libadd as exposed by libtool 1.5.22.joerg2-1/+15
2006-02-06Fix DISTNAME: derive PKGNAME from DISTNAME, to avoid problems with PKGREVISIONtonio1-3/+3
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg200-326/+400
2006-02-04Update PDF-API2 to version 0.51. The API is not backward compatible withben2-8/+7
the previous version of this package. Over the last several years, there have been too many changes and fixes to list here.
2006-02-03Update testproc/p5-Data-FormValidator to 4.12abs2-7/+6
Changes since 3.63 4.12 Thu Jan 5 21:07:50 EST 2006 [INTERNALS] - Fix test suite to pass when CGI::Simple is not installed (Lee Carmichael, Davide Dente) 4.11 Tue Jan 3 18:38:23 EST 2006 [ENHANCEMENTS] - A new constraint for minimum image dimensions was added in Data::FormValidator::Constraints::Upload (Lee Carmichael) [INTERNALS] - refactoring of Upload.pm and t/upload.t (Lee Carmichael) 4.10 Thu Dec 22 19:55:34 EST 2005 [ENHANCEMENTS] - The msgs key can now take a callback, allow users to override how error message generation is done. Some alternative message generate routines will hopefully be published soon. (Cees Hek, Chris Laco and others) - New profile key: untaint_regexp_map (Michael Peters) [BUG FIXES] - bug was fixed for dependent fields that had false values, but were valid (Emanuele Zeppieri) - Failed constraints for multiple fields with the same name no longer return duplicate error messages (Will Hawes) - value of any_errors was wrongly added to msgs even when there are no errors (RT#14942, report and test script by Michael Graham) [INTERNALS] - bump Date::Calc requirement (RT#15715) 4.02 Wed Aug 31 21:22:58 EST 2005 [ENHANCEMENTS] - the use of custom signal handers for "die" has now been localized to avoid interfering with other applications. (Josh Miller). - initial support for qr in constraint_method profile key [BUG FIXES] - Updated ::Constraints example docs to be accurate: recommend :closures, not :all [INTERNALS] - provide a more accurate debugging message for constraint_method_regexp_map 4.01 Sat Aug 20 13:16:47 EST 2005 [ENHANCEMENTS] - get_input_data() now supports the parameters "as_hashref => 1" to return the input data in a uniform way. [INTERNALS] - Constraints may refer to fields that are 'unknown' to Data::FormValidator. These unknown values will remain unfiltered as before. (Michael Peters). - _get_data() was renamed to _get_input_as_hash(). You shouldn't care. 4.00 Sun Aug 14 10:57:25 EST 2005 *** NOTE *** This a major update with a significant code changes. While the test suite indicates we have 100% compatibility with 3.x, you are encouraged to test this release with your own applications before deploying it in a production environment. [ENHANCEMENTS] - The constraints interface has been overhauled to be more intuitive to use with parameterized constraints. This included added new two new profile keys: 'constraint_methods' and 'constraint_method_regexp_map'. All of the old syntax is still supported, but de-emphasized in the documentation. See RELEASE_NOTES for details. - A new method has been added to help building custom constraints: "set_current_constraint_name('foo')" will set the name of a constraint from within itself. An alias named 'name_this()' is provided for brevity. See the section on "Writing your own constraints" in DFV::Constraints for details. - success() method added to Results object. This is an easy way to check that there were no missing or invalid fields. (Michael Peters). - 'separator' was misspelled consistently in the the docs, code and tests. The proper spelling as well as the legacy typo spelling are now supported, although the typo'ed version is no longer documented, except for here. :) Thanks to Terrence Brannon for spotting this. - The 'msgs' hash in the profile is now validated to make sure it includes only valid keys. This should help to spot some errors faster. - ::Constraints::Upload now supports CGI::Simple, thanks to David Emery. - Documentation for required_regexp has been improved. (William McKee) - support for coderefs as default values (Marcello) - Improved field_filters documentation, thanks to Andrew Brosnan. [BUG FIXES] - RT#12220: Canadian Province RE were updated. (Steve Simms). - The preferred MIME type was not being returned by the 'file_format' constraint for file uploads. This would have only affected cases where the mime type sent by the browser differed from the one detected by DFV. Thanks to Randal Schwartz for spotting this. (RT#12744). - Profile re-use when constraint_regexp_map is used is now fixed (Thanks to Cees Hek). - The date_and_time constraint now understands this format: MMDDYYYY. (RT#12111, thanks to JMAY) - This one is worth a brief explanation. When this old syntax was used: my ( $valid, $missing, $invalid, $unknown ) = Data::FormValidator->validate({}, {} ); $invalid would be returned as an empty arrayref if there were no invalids. This return value was undocumented, and was later changed to be 'undef' sometime between 3.50 and 3.70. However, I found that some applications, including Cascade, depended on the undocumented return value (which they shouldn't have). I have now reverted the behavior to returning an empty arrayref in this case, added a test for it, and updated the docs to be explicit about the return value. This will save some people unexpected breakages when upgrading DFV from a very old version with very old applications. Those who use the $results object are unaffected. [INTERALS] - Add many failing TODO tests for built-in filters. See t/filters_builtin.t - A new test was added to check that no warnings are emitted when an untainted constraint returns undef (Michael Peters)
2006-02-03Bump PKGREVISION of these packages which affected (fixed) bytaca1-1/+2
fix of REPLACE_RUBY, the impact was big or small.
2006-02-03Fixed pkglint warnings.rillig1-7/+7
2006-02-02Update textproc/p5-YAML to 0.57 - needed for p5-Catalyst-5.63abs2-7/+7
Changes since 0.39: version: 0.57 date: Wed Feb 1 23:06:25 PST 2006 changes: - Add obligatory '1;' to end of each module. --- version: 0.56 date: Mon Jan 30 10:26:33 PST 2006 change: - Add Module::Install::TestBase support --- version: 0.55 date: Sun Jan 29 19:03:35 PST 2006 change: - Load YAML::Node because Module::Build expects it to be loaded. We can undo this when Module::Build starts loading it for itself. --- version: 0.54 date: Sun Jan 29 17:28:46 PST 2006 change: - Remove dependency on Class::Spiffy (and/or Spiffy). --- version: 0.53 date: Thu Jan 19 06:03:17 PST 2006 change: - Depend on Class::Spiffy instead of Spiffy. No source filtering. --- version: 0.52 date: Wed Jan 18 14:25:24 PST 2006 change: - Error in Spiffy-0.26 causing problems. Require 0.27 --- version: 0.51 date: Sat Jan 14 17:09:09 GMT 2006 change: - Tests pass on win32 and cygwin - Don't gpg sign the distribution tarball --- version: 0.50 date: Sun Dec 25 11:09:18 PST 2005 changes: - Major refactoring of YAML.pm - Completely OO with same old functional UI - Support the $YAML::Stringify option which most be on for objects to get stringified. Otherwise dump the object. - Can dump overloaded objects now. - Completely refactor test suite using Test::Base - Create Test::YAML - Make test framework compatible with YAML::Syck - Test-Base-0.45 - Reviewed all rt bugs. fixed many - Reviewed all emailed bugs. Fixed many. - Helped audrey complete YAML::Syck and worked on interoperability issues - Test well known yaml docs like svk and META.yml - Eliminate unsafe string evals - Can use with autouse. Spiffy-0.25 - Support YAML::Marshall to help classes that want to do their own marshalling - Make objects tags configurable - -M option for ysh to test other implementations like YAML::Syck
2006-01-31Add and enable p5-XML-Atom-SimpleFeed.kleink1-1/+2
2006-01-31Initial import of p5-XML-Atom-SimpleFeed 0.7kleink4-0/+30
This module exists to generate basic Atom syndication feeds. While it does not provide a full, object-oriented interface into all the nooks and crannies of Atom feeds, an Atom parser, or an Atom client API, it should be useful for people who want to generate valid Atom feeds of their content quickly and easily.
2006-01-30Add and enable p5-XML-Atom.kleink1-1/+2
2006-01-30Initial import of p5-XML-Atom 0.16.kleink4-0/+36
Atom is a syndication, API, and archiving format for weblogs and other data. XML::Atom implements the feed format as well as a client for the API.
2006-01-29Prepare some code for an aspell-loadable-filter options,wiz2-4/+29
which is not yet enabled because it currently does not work, but this way it is easier to test.
2006-01-29Update to 1.1, aspell6 version of the dictionary.wiz3-8/+12
Probably other changes too.
2006-01-29Update to 0.2.24, changes undocumented.wiz4-36/+44
2006-01-29Update to 1.4.52. Changes unknown, but since it is a wordlist,wiz4-35/+44
I expect better words :)
2006-01-25Remove some compat hacks from NetBSD's libc which are not necessaryjoerg2-1/+58
and in fact harmful in a standalone binary.
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz59-104/+118
of the shlib major bump. PKGREVISION++ for the dependencies.
2006-01-24Update to 4.1. From the changelog:schmonz2-6/+6
* removed socket timeout * added support for chardet library
2006-01-23Security fix for CVE-2005-3126:salo3-2/+64
"The kantiword script in antiword allow local users to overwrite arbitrary files via a symlink attack on temporary output and error files." Replace the naive mktemp usage with something that actually works.
2006-01-22The Perl program fo/pdf2index is installed with the correct scriptrillig1-3/+5
interpreter. Removed NO_CONFIGURE, because it conflicts with REPLACE_PERL. Added a runtime dependency on Perl. Bumped PKGREVISION.
2006-01-22Try to fix bulk build failure (which I cannot reproduce).wiz2-4/+12
2006-01-22Update to 2.0.0:wiz3-21/+6
Release 2.0.0 Wed Jan 11 2006 - We no longer use the "check" library for C unit testing; we always use the (partial) internal implementation of the API. - Report XML_NS setting via XML_GetFeatureList(). - Fixed headers for use from C++. - XML_GetCurrentLineNumber() and XML_GetCurrentColumnNumber() now return unsigned integers. - Added XML_LARGE_SIZE switch to enable 64-bit integers for byte indexes and line/column numbers. - Updated to use libtool 1.5.22 (the most recent). - Added support for AmigaOS. - Some mostly minor bug fixes. SF issues include: 1006708, 1021776, 1023646, 1114960, 1156398, 1221160, 1271642.
2006-01-21Update package Makefile now that bsd.pkg.extract.mk is using thejlam1-2/+2
"extract" script for extraction. Many cases where a custom EXTRACT_CMD simply copied the distfile into the work directory are no longer needed. The extract script also hides differences between pax and tar behind a common command-line interface, so we no longer need code that's conditional on whether EXTRACT_USING is tar or pax.
2006-01-21Use MASTER_SITE_SOURCEFORGE_JP.rxg1-3/+2
2006-01-20Drop maintainership. I can't seriously be the maintainer of so manyjmmv7-14/+14
packages - specially of packages that I haven't touched for a long while or those that other people can handle better than me.
2006-01-20Update to 0.4.4:jmmv3-8/+8
Changes in 0.4.4: ----------------- * Added missing GPL and LGPL texts (Shaun McCance) * Added another fix for line numbering, #317270 (Brent Smith) * Updated translations: bn (Mahay Alam Khan) et (Ivar Smolin) (33/47 languages with 100% translation) Changes in 0.4.3: ----------------- * Fix for loops on old bourne shells, #317308 (Shaun McCance) * Fix paths when $(srcdir) is absolute (Shaun McCance) * Fix DESTDIR support #318007 (Frederic Crozat) * Updated translations: it (Alessio Frusciante) (32/46 languages with 100% translation)
2006-01-20Fix build under Mac OS X:jmmv7-10/+173
- Properly instantiate required templates. - Properly detect some functions (such as strtoul). - Do not use unavailable Mach threads.
2006-01-14update to libxml2 2.6.23recht3-11/+11
changes: Portability fixes: - Windows (Rob Richards) - getaddrinfo on Windows (Kolja Nowak - Rob Richards) - icc warnings (Kjartan Maraas) - --with-minimum compilation fixes (William Brack) - error case handling fix on Solaris (Albert Chin) - don't use 'list' as parameter name reported by Samuel Diaz Garcia - more old Unices portability fixes (Albert Chin) - MinGW compilation (Mark Junker) - HP-UX compiler warnings (Rick Jones) Code cleanup: - xmlReportError (Adrian Mouat) - remove xmlBufferClose (Geert Jansen) - unreachable code (Oleksandr Kononenko) - refactoring parsing code (Bjorn Reese) Bug fixes: - xmlBuildRelativeURI and empty path (William Brack) - combinatory explosion and performances in regexp code - leak in xmlTextReaderReadString() - xmlStringLenDecodeEntities problem (Massimo Morara) - Identity Constraints bugs and a segfault (Kasimier Buchcik) - XPath pattern based evaluation bugs (DV & Kasimier) - xmlSchemaContentModelDump() memory leak (Kasimier) - potential leak in xmlSchemaCheckCSelectorXPath() - xmlTextWriterVSprintf() misuse of vsnprintf (William Brack) - XHTML serialization fix (Rob Richards) - CRLF split problem (William) - issues with non-namespaced attributes in xmlAddChild(), xmlAddNextSibling() and xmlAddPrevSibling() (Rob Richards) - HTML parsing of script - Python must not output to stdout (Nic Ferrier) - exclusive C14N namespace visibility (Aleksey Sanin) - XSD dataype totalDigits bug (Kasimier Buchcik) - error handling when writing to an xmlBuffer (Rob Richards) - runtest schemas error not reported (Hisashi Fujinaka) - signed/unsigned problem in date/time code (Albert Chin) - fix XSI driven XSD validation (Kasimier) - parsing of xs:decimal (Kasimier) - fix DTD writer output (Rob Richards) - leak in xmlTextReaderReadInnerXml (Gary Coady) - regexp bug affecting schemas (Kasimier) - configuration of runtime debugging (Kasimier) - xmlNodeBufGetContent bug on entity refs (Oleksandr Kononenko) - xmlRegExecPushString2 bug (Sreeni Nair) - compilation and build fixes (Michael Day) - removed dependancies on xmlSchemaValidError (Kasimier) - bug with <xml:foo/> - more XPath pattern based evaluation fixes (Kasimier) Improvements: - XSD Schemas redefinitions/restrictions (Kasimier Buchcik) - node copy checks and fix for attribute (Rob Richards) - counted transition bug in regexps - ctxt->standalone = -2 to indicate no standalone attribute was found - add xmlSchemaSetParserStructuredErrors() (Kasimier Buchcik) - add xmlTextReaderSchemaValidateCtxt() to API (Kasimier) - handle gzipped HTTP resources (Gary Coady) - add htmlDocDumpMemoryFormat. (Rob Richards) Documentation: - typo (Michael Day) - libxml man page (Albert Chin) - save function to XML buffer (Geert Jansen) - small doc fix (Aron Stansvik)
2006-01-13Add and enable p5-SGMLS, p5-Text-CharWidth, p5-Text-WrapI18N, and po4a.wiz1-1/+5
2006-01-13Initial import of po4a-4.23:wiz5-0/+81
The po4a (po for anything) project goal is to ease translations (and more interestingly, the maintenance of translations) using gettext tools on areas where they were not expected like documentation. In po4a each documentation format is handled by a module. For now, there exist modules for the pod format (in which the perl documentation is written), the good old man pages, and the documentation of the kernel compilation options. Some other modules are underway, like for sgml, xml, or texinfo.
2006-01-13Initial import of p5-Text-WrapI18N-0.06:wiz4-0/+35
This is a module which intends to substitute Text::Wrap, which supports internationalized texts including: - multibyte encodings such as UTF-8, EUC-JP, EUC-KR, GB2312, and Big5, - fullwidth characters like east Asian characters which appear in UTF-8, EUC-JP, EUC-KR, GB2312, Big5, and so on, - combining characters like diacritical marks which appear in UTF-8, ISO-8859-11 (aka TIS-620), and so on, and - languages which don't use whitespaces between words, like Chinese and Japanese. The text is to be given in locale encoding, not always in UTF-8. (Of course locale encoding is UTF-8 in UTF-8 locales.)
2006-01-13Initial import of p5-Text-CharWidth-0.04:wiz4-0/+41
This is a module to provide equivalent feature as wcwidth(3) and wcswidth(3). This also provides mblen(3) equivalent subroutine. mbwidth() and mbswidth() are provided subroutines corresponding wcwidth(3) and wcswidth(3) in C language. The prefix "mb" expresses that they handles "multibyte character" in C meaning, i.e., character encoding specified by LC_CTYPE locale. These subroutines are used to get the width of characters on terminal. Though most characters have width of 1, there are exceptions. Fullwidth characters are characters with width of 2. Most of east Asian characters such as Hiragana, Katakana, Hangul, Han Ideogram are fullwidth. Combining characters are characters with width of 0. Unicode has many combining characters like diacritical marks. There are languages which need combining characters such as Thai and Vietnamese. Thus, if you would like to format international texts on terminal, you will have to be aware of variation of character width and will want to use this module.
2006-01-13Initial import of p5-SGMLS-1.03.2:wiz5-0/+123
This distribution contains SGMLS.pm, a perl5 class library for parsing the output from James Clark's SGMLS and NSGMLS parsers.
2006-01-13Use DIST_SUBDIR to cope with a change in the distfile:tonio2-6/+8
This change fixes a bug with entities for -,\ and / Bump PKGREVISION, and take maintainership (issues of changing distfiles have been advertised upstream)
2006-01-12Use the (new) provided catalog file instead of our own (it's more complete).jmmv4-7/+20
Bump PKGREVISION to 2. Closes PR pkg/32375 by Andrew Klingenberg.
2006-01-11Update to 1.1.2, provided by OBATA Akio in PR 32365:wiz4-14/+15
2005-12-15 Mikio Hirabayashi * estraier.c (est_db_open): "ESTDBHUGE" was added. * estraier.c (est_regex_replace): "&" was to be handled. * estraier.c (est_cond_set_expander): new function. * estcmd.c (runput, rungather): "-lg" was renamed to "-xl", and "-xh" was added. * estseek.c (showdoc): a bug about calculating similarity was fixed. * estseek.c (realmain): "qxpndcmd" was added. * estseek.c (expandquery): new function. * estmaster.c (realmain, startup): "-ro" option was added. * estmaster.c (sendnodecmdsearchui): the output format modified for OpenSearch 1.1. - Release: 1.1.2 2005-12-04 Mikio Hirabayashi * estraier.c (est_keyword_num, est_keyword_rec_size): new functions. * estraier.c (est_keyword_iter_init, est_keyword_iter_next): new functions. * estraier.c (est_search_union): scoring was to use standard deviation. * estraier.c (est_expand_keyword_bw, est_expand_keyword_ew): new functions. * estraier.c (est_db_open): "ESTDBLARGE" was added. * estseek.c (realmain, setsimilarphrase): "smlrtune" was added. * estseek.c (realmain, showpage): "relkeynum" was added. * estmaster.c (startup, setsimilarphrase): "uismlrtune" was added. * estmaster.c (sendnodecmdsearchatom, nodecmdopensearch): conformed to draft 2. - Release: 1.1.1 2005-11-11 Mikio Hirabayashi * estraier.c (est_eclipse_scores): accuracy was improved. * estraier.c (est_narrow_scores): a bug of segmentation fault was fixed. * estraier.c (est_regex_new, est_regex_delete, est_regex_match): new functions. * estraier.c (est_expand_word_rx): new function. * estreier.c (est_db_put_keywords, est_db_get_keywords): new functions. * estraier.c (est_db_measure_doc): new function. * estraier.c (est_db_set_vectorizer): abolished. * estcmd.c (runextkeys, procextkeys): "-no" was added. * estcmd.c (runpurge, procpurge, runextkeys, procextkeys): "-attr" was added. * estcmd.c (rundraft, procdraft): "-kn" was added. * estcmd.c (procgather): a bug of handling drive characters on Windows was fixed. * estseek.c (realmain, makeshownuri): "lprefix" and so on were abolished. * estmaster.c (startup, makeshownuri): "uilprefix" and so on were abolished. * estmaster.c (startup, sendnodecmdputdoc): "lateextkeys" was added. * estmaster.c (searchlocal): a bug of segmentation fault was fixed. - Release: 1.0.6 2005-11-08 Mikio Hirabayashi * estraier.c (est_narrow_scores): speed of attribute search was improved. * estcmd.c (doputdoc, procpurge, procextkeys): local paths was to be printed. * estcmd.c (doputdoc): "@size" was to be added even with "-fo" option. * estcmd.c (procsearch): "_lfile" was to be printed when human readable mode. * estcmd.c (procout, procedit, procget, procuriid): retrieving by local path was added. * estcmd.c (procpurge): retrieving by local path was added. * estcmd.c (runiconv, prociconv): new functions. * estcmd.c (procedit): "-pc" was to convert the encoding of the attribute value. * estseek.c (realmain, showform): "clipview" attribute was added. - Release: 1.0.5 2005-11-02 Mikio Hirabayashi * estraier.c (est_vector_cosine): new function. * estraier.c (est_eclipse_scores): new function. * estcmd.c (runsearch, procsearch): "-ec" option was added. * estcmd.c (procgather, procpurge): "-no" option was added. * estcmd.c (urltopath): a bug about drive letter was fixed. * estcmd.c (runlist, proclist): "-lp" option was added. * estseek.cgi (showresult): similar eclipse was implemented. * estmaster.c (startup, searchlocal): "rateuri" attribute was added. * estmaster.c (sendmenudata): new function. - Release: 1.0.4
2006-01-10Pass LDFLAGS down to configure twice: once using the normal LDFLAGSjoerg1-4/+2
done automatically, once as ILDFLAGS, which ends up to be actually used. This fixes rpath linkage on DragonFly.
2006-01-10Fix compilation against more recent ELK.joerg3-8/+36
2006-01-10Use PTHREAD_* instead of -lpthread.joerg2-1/+32
2006-01-10Uses makeinfo.joerg1-1/+2