summaryrefslogtreecommitdiff
path: root/textproc
AgeCommit message (Collapse)AuthorFilesLines
2008-06-01Update to 2.3. From the changelog:schmonz3-35/+35
- add SKIP_INTERNAL_LINKS (tx Christian Siefkes) - prelim JS support, various fixes, improved performances (tx Johannes Fitz)
2008-06-01Update to 1.0.19. From the changelog:schmonz3-6/+21
- Clean up local stuff for settings. - Do a little cleanup of intialisation (more needed) - Remove copy pasted regexes from Text::MultiMarkdown - Fix bug with line breaks in links - http://bugs.debian.org/459885, thanks to patches and test input / output provided by Adeodato Simó. (See t/37anchormultilinebugs.t) - Incorperated MDTest1.1's tests, and made most of the Text-Markdown and Text-MultiMarkdown tests in MDTest format. - Add and document an accessor for the parsed markdown URLs. - Fix html4tags option in Markdown.pl and MultiMarkdown.pl - Remove auto_install from Makefile.PL, this is a deprecated feature and it shouldn't be being used at all.
2008-05-30Bump PKGREVISION for gtkspell API bump.wiz1-1/+2
2008-05-30Update to 2.0.13:wiz4-20/+34
version 2.0.13 (2008-05-20): * Additional translations (see po/ChangeLog). * Enchant support (support for pspell/aspell dropped) (Dom Lachowicz) version 2.0.12 (2008-05-09): * Make debug, quiet and build_suggestion_menu static in gtkspell.c to prevent exporting them. * One additional translation (see po/ChangeLog). * Move spell-checking library from Libs to Libs.private in gtkspell-2.0.pc * Update autogen.sh to use intltool * Fix warnings with -Wstrict-prototypes by Richard Laager Bump API for dependency changes.
2008-05-30Added devel/p5-Array-RefElem version 1.00abs1-1/+4
Added devel/p5-Cache-FastMmap version 1.26 Added devel/p5-parent version 0.221 Added textproc/p5-Lingua-EN-Inflect-Number version 1.1 Added textproc/p5-Text-SimpleTable version 0.03 Added textproc/p5-YAML-Tiny version 1.32
2008-05-30Import textproc/p5-Lingua-EN-Inflect-Number 1.1abs3-0/+30
This module extends the functionality of Lingua::EN::Inflect with three new functions available for export.
2008-05-30Import textproc/p5-Text-SimpleTable-0.03abs3-0/+27
Simple eyecandy ASCII tables, as seen in Catalyst. WWW: http://search.cpan.org/dist/Text-SimpleTable/
2008-05-30Import textproc/p5-YAML-Tiny-1.32abs3-0/+43
YAML::Tiny is a perl class for reading and writing YAML-style files, written with as little code as possible, reducing load time and memory overhead. Most of the time it is accepted that Perl applications use a lot of memory and modules. The ::Tiny family of modules is specifically intended to provide an ultralight and zero-dependency alternative to many more-thorough standard modules. This module is primarily for reading human-written files (like simple config files) and generating very simple human-readable files. Note that I said human-readable and not geek-readable. The sort of files that your average manager or secretary should be able to look at and make sense of. YAML::Tiny does not generate comments, it won't necesarily preserve the order of your hashes, and it will normalise if reading in and writing out again. It only supports a very basic subset of the full YAML specification.
2008-05-29update to 2.22.0drochner3-282/+283
this switches to the gnome-2.22 release branch
2008-05-28Updated texproc/p5-YAML-Syck to 1.04abs2-7/+9
[Changes for 1.04 (JSON::Syck 0.29) - 2008-02-17] * The 'Name "YAML::Syck::ImplicitBinary" used only once: possible typo' warnings no longer triggers in Perl 5.10 when running with perl -w. Reported by: Jesse Vincent [Changes for 1.03 (JSON::Syck 0.29) - 2008-02-16] * JSON::Syck: When $JSON::Syck::SingleQuote is false, implicit booleans such as "yes" and "no" should be dumped with double quotes, instead of single quotes (which breaks RFC 4627). Reported by: cho45 [Changes for 1.02 (JSON::Syck 0.28) - 2008-02-16] * JSON::Syck: Colons in single-quoted strings are no longer loaded with an extra space after it. Reported by: Agent Zhang [Changes for 1.01 (JSON::Syck 0.27) - 2008-01-19] * JSON::XS is now promoted prominiently in JSON::Syck's documentation. * Added support for Perl 5.11 and its first-class Regexp objects. Contributed by: Andreas Koenig * Tests no longer fail incorrectly when JSON.pm 2.00+ is installed. Contributed by: Andreas Koenig * Removed the unused Syck bytecode modules (yamlbyte.h and yaml2byte.c) to further reduce our memory footprint. [Changes for 1.00 (JSON::Syck 0.26) - 2007-12-10] * When $YAML::Syck::SingleQuote is set to true, Dump() now emits newlines in strings correctly. (Previously it would emit extra newlines.) [Changes for 0.99 (JSON::Syck 0.26) - 2007-10-23] * TODOify tests as appropriate for Perl 5.005 and Perl 5.6.x. [Changes for 0.98 (JSON::Syck 0.26) - 2007-10-13] * Restore support for Perl 5.005 and earlier. [Changes for 0.97 (JSON::Syck 0.26) - 2007-09-03] * When loading !!perl/code with $YAML::Syck::LoadCode set to false, YAML::Syck now returns a coderef that does nothing (i.e. sub {}), in accordance with YAML.pm's treatment, instead of returning the actual code of the sub as a string. Contributed by: Florian Ragwitz [Changes for 0.96 (JSON::Syck 0.26) - 2007-08-08] * The always-quote rule now applies to all implicit booleans and null values, i.e. strings that match the following regex: /y|Y |n|N |yes|Yes|YES |no|No|NO |true|True|TRUE |false|False|FALSE |on|On|ON |off|Off|OFF |null|Null|NULL |~ /x * Bare literals "Y", "N", "y" and "n" are now recognized as booleans when loading with implicit typing turned on. * Mixed case strings that does not represent implicit boolean values, such as "yES" and "nO", are no longer always-quoted. Contributed by: Malcolm Studd [Changes for 0.95 (JSON::Syck 0.26) - 2007-08-04] * "Yes" and "no" (including all upper/lower case forms) are now always dumped in quoted form to avoid ambiguities when loaded by loaders with ImplicitTyping set to true. Reported by: Malcolm Studd * lib/YAML/Syck.pod is merged back into lib/YAML/Syck.pm. (No functional changes.) [Changes for 0.94 (JSON::Syck 0.26) - 2007-07-10] * Repair broken PAUSE upload, again. (Sigh.) [Changes for 0.93 (JSON::Syck 0.26) - 2007-07-10] * Repair broken PAUSE upload. [Changes for 0.92 (JSON::Syck 0.26) - 2007-07-10] * Allow for LoadFile(*FH) and DumpFile(*FH), in addition to ($fh) and (\*FH). Also, new tests for LoadFile and DumpFile. Contributed by: Adriano Ferreira [Changes for 0.91 (JSON::Syck 0.26) - 2007-06-23] * Corrected loading Regexps with all combinations of quantifiers. Contributed by: Ingy döt Net [Changes for 0.90 (JSON::Syck 0.26) - 2007-06-22] * Regexes are now dump/loaded correctly with modifiers, with a new representation: "--- !!perl/regexp:main (?i-xsm:1)", instead of the old mapping with a REGEXP key. The old form still loads correctly; the new form corresponds to YAML.pm 0.63 and later. Requested by: Ingy döt Net * Loading regexes with modifiers no longer involves an eval"" call. [Changes for 0.88 (JSON::Syck 0.26) - 2007-06-17] * New dependency: Scalar::Util, for LoadFile and DumpFile functions. You can safely do without that module if you do not make use of the two functions. * LoadFile and DumpFile now accept glob values, and reject unopened handles properly instead of silently ignores it. Contributed by: Adriano Ferreira [Changes for 0.87 (JSON::Syck 0.25) - 2007-06-17] * New LoadFile and DumpFile functions for JSON::Syck. * JSON::Syck now actually exports its functions if you ask for it. * LoadFile and DumpFile now accept IO objects in addition to file names. Requested by: Adriano Ferreira [Changes for 0.86 (JSON::Syck 0.24) - 2007-06-16] * Support for dumping and loading regexps created by qr//, including blessed once. Note that loading Regexp values dumped by YAML.pm currently discards modifiers.
2008-05-27Remove setup of environment variables from configure scriptobache6-13/+133
to avoid unwanted detection of pre-installed tools.
2008-05-26Mark some packages as not for bulk building on HPUX.tnn1-1/+3
2008-05-26Yet another tmac PLIST fix.tnn1-2/+2
This whole mess needs to be cleaned up and sanitised.
2008-05-26sync with base pkgdrochner2-6/+6
2008-05-26Second round of explicit pax dependencies. As reminded by tnn@,joerg13-39/+52
many packages used to use ${PAX}. Use the common way of directly calling pax, it is created as tool after all.
2008-05-25Explicitly add pax dependency in those Makefiles that use it (or havejoerg2-2/+4
patches to add it). Drop pax from the default USE_TOOLS list. Make bsdtar the default for those places that wanted gtar to extract long links etc, as bsdtar can be built of the tree.
2008-05-22Remove textproc/p5-String-Random which was a duplicate oftnn5-26/+1
security/p5-String-Random. Merge changes from the textproc one into the security one.
2008-05-22update to libxslt 1.2.4recht3-7/+8
fixes the security issue reported in: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-1767 http://secunia.com/advisories/30315/ http://bugzilla.gnome.org/show_bug.cgi?id=527297 1.1.24: May 13 20088: - Documentation: man page fix (Vincent Lefevre). - Bug fixes: pattern bug fix, key initialization problems, exclusion of unknown namespaced element on top of stylesheets, python generator syntactic cleanup (Martin)
2008-05-21Update to 1.4.2:wiz2-7/+7
Bug fixes.
2008-05-20Update to 2.1:wiz3-9/+8
iso-codes 2.1 ------------- Tobias Toedter <toddy@debian.org> Sun, 4 May 2008 [ ISO-3166 ] * Changes from ISO-3166 MA Newsletter VI-2: - MD shortname to "Moldova" - ME full name to "Montenegro" [ ISO-3166-2 ] * Removed extraneous blanks from Malta (MT) entries; unfuzzied the resulting .po deltas. Closes: alioth#310645 [ ISO-639 translations ] * Vietnamese by Clytie Siddall (TP) * Dutch by Freek de Kruijf (TP) * Esperanto by Edmund GRIMLEY EVANS (TP) [ ISO-3166 translations ] * Slovenian by Primož Peterlin (TP) * Hungarian by Gabor Kelemen (TP) * Spanish by Javier Fernández-Sanguino Peña * Lithuanian by Kestutis Biliūnas * Vietnamese by Clytie Siddall * Bulgarian by Damyan Ivanov * Tamil by Tirumurti Vasudevan [ ISO-3166-2 translations ] * Slovenian by Primož Peterlin (TP) * Lithuanian by Kestutis Biliūnas [ ISO-4217 translations ] * Slovenian by Primož Peterlin (TP) * Hungarian by Gabor Kelemen (TP) [ ISO-15924 translations ] * Thai by Theppitak Karoonboonyanan * Slovenian by Primož Peterlin (TP)
2008-05-09Update raptor to version 1.4.17markd4-9/+11
The main changes to this release are: Added two new JSON serializers: resource-centric 'json' (Talis RDF/JSON) and triple-centric 'json-triples'. Made I/O Stream class raptor_iostream support reading as well as writing with new constructors and new methods. Added a new public SAX2 API class raptor_sax2 exposing the existing internal API which has been around since the first release of Raptor 8 years ago and runs on top of either expat or libxml2. Added new public error handlers structure raptor_error_handlers containing a set of (function, data pointers) pairs called raptor_handler_closure for each error log level. Added raptor_log_level enum for the error log level. Added an initialization function for the structure, raptor_error_handlers_init(). Several other API changes, fixes and improvements were made. 1.4.16 changes: Provide 100% support for the GRDDL W3C Recommendation of 2007-09-11. The Turtle parser and serializer were updated to support @base for specifying a base URI, following Turtle of 2007-09-11. The Turtle and RDF/XML serializers had performance improvements for large graphs. Added a TRiG Parser based on Turtle with named graph support. Several other API changes, fixes and improvements were made.
2008-05-08Supports DESTDIRjoerg1-1/+3
2008-05-04Add an HTTP download option to MASTER_SITESdsainty1-2/+3
2008-05-01Add destdir support to catdoc and catdoc-tk.obache3-5/+10
Fixes PR 38545.
2008-04-29Note addition of textproc/ruby-will-paginate.jlam1-1/+2
2008-04-29Initial import of ruby18-will-paginate-2.2.2 asjlam4-0/+82
textproc/ruby-will-paginate. Pagination is just limiting the number of records displayed. Why should you let it get in your way while developing, then? This library makes magic happen. Did you ever want to be able to do just this on a model: @posts = Post.paginate :page => params[:page], :order => 'created_at DESC' and then render the page links with a single view helper? Well, now you can. <%= will_paginate @posts %>
2008-04-29Update to 0.60.6:wiz10-199/+31
Complete list of changes from 0.60.5: * Compile fixes for Gcc 4.3. * Updated to Libtool 2.2.2 and Automake 1.10.1 * Minor tweak to suggestion code which improved suggestion results in certain cases. * Always line buffer stdout and stderr in the Aspell utility when there is the potential for it to be used interactively through a pipe. * Removed debug output in `aspell munch-list'. * Other minor updates and bug fixes.
2008-04-28Update to 2.291:schmonz2-7/+7
- add shbang, fix wrapping (tx Christian Siefkes)
2008-04-28sync w/ base pkgdrochner2-6/+6
2008-04-28Enable p5-iCal-Parsermjl1-1/+2
2008-04-28Import p5-iCal-Parser 1.14.mjl3-0/+31
This module processes iCalendar (vCalendar 2.0) files as specified in RFC 2445 into a data structure. It handles recurrences ("RRULE"s), exclusions ("EXDATE"s), event updates (events with a "RECURRENCE-ID"), and nested data structures ("ATTENDEES" and "VALARM"s).
2008-04-26Update to 1.0.8:wiz4-16/+19
* version 1.0.8 "Autumn leaves" - Win32 fixes (Tor Lillqvist) - Added Occitan translation (Yannig Marchegay) - Added Slovenian translation (Matic Zgur) - Added Dzongkha translation (Pema Geyleg) - Added Xhosa translation (Adi Attar) - Added Kinyarwanda translation (Steve Murphy) - Added Nepali translation (Pawan Chitrakar) - Added Korean translation (Changwoo Ryu) - Added Galician translation (Ignacio Casal Quinteiro)
2008-04-25Update PYTHON_VERSIONS_COMPATIBLEjoerg16-32/+23
- assume that Python 2.4 and 2.5 are compatible and allow checking for fallout. - remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+ default. Modify the others to deal with the removals.
2008-04-25Passes all tests, so enable for Python 2.5.tnn1-2/+2
2008-04-25Remove the right version.joerg1-2/+2
2008-04-25Explicitly include Python 2.1 as it is required by Zope 2.5.joerg1-1/+3
2008-04-25Remove removed Python versions.joerg1-2/+2
2008-04-25Add python dependency for gtk-doc-depscan. Configure stopped withoutwiz1-1/+2
it, so no PKGREVISION++.
2008-04-24Update to 1.10. Fix HOMEPAGE.wiz3-9/+10
GTK-Doc 1.10 (Mar 20 2008) ============ Changes o 460753 : enable vpath build in gtkdoc-mkhtml o 503119 : Add dependency on content_files to SGML target o 127049 : building reference documentation fails when builddir != s... o 481811 : Inline function bodies are confused with declarations o 448879 : Use a footer when generating HTML documentation o 492005 : Deprecation guard warnings for properties and signals o 498521 : Inconsistent compiler flags passed in gtk-doc.make o 365913 : gtk-doc output is not predictable o 446648 : gtk-doc does not handle forward typedef'd enums o 468278 : Display proper types for properties o 497367 : don't use US-ASCII for output encoding o 501066 : Missing quotes around gtkdoc-rebase check cause a warning o 508897 : [PATCH] Fix build when gtk-doc is not installed o 509539 : Building documentation aborts when no .types file is present o 512154 : Struct member type attributes are limited to one token o 513318 : gtk-doc.el doesn't work fine with emacs22 Contributors Benjamin Otte Carlos Garnacho Damon Chaplin David Nečas Frederic Peters Joe Marcus Clarke Kouhei Sutou Loïc Minier Mathias Hasselmann Petteri Räty Rouslan Solomakhin Stefan Kost Sven Herzberg Yeti
2008-04-24Update to version 0.37markd4-67/+14
Release 0.37 - 21 Setember, 2006 -------------------------------- * added support for 'conference' key (alias for inproceedings) Release 0.36 - 24 July, 2005 ---------------------------- * fixed url where btparse should be downloaded from. (stupid bug) Release 0.35 - 23 July, 2005 ---------------------------- * changed from 0.33 to 0.35 to maintain relation with btparse. * some tests now use Test::More (more tests will change soon) * the way the module initializes changed. Now the module can be included to check its version.
2008-04-24Update to version 0.35markd3-8/+12
Changes: Adds a package-config configuration file and minor bugfix.
2008-04-23Update to 2.05:wiz2-6/+6
2.05 Wed Jan 24 2008 - fix tests failure under perl 5.6.x, thanks to David Cantrell for cpan testing it 2.04 Wed Jan 23 2008 - use own expand_tabs instead of Text::Tabs - avoid segfaults when pos() is used inside of regexp 2.03 Wed Nov 7 2007 - delete a lot of unused code - many micro optimisations - performance improvements, up to 1.5x in total - clanups of Makefile, README
2008-04-23Fix PLIST - bump PKGREVISIONabs1-5/+5
2008-04-22Update to 2.6.32:wiz3-11/+11
2.6.32: Apr 8 2008 * Documentation: returning heap memory to kernel (Wolfram Sang), trying to clarify xmlCleanupParser() use, xmlXPathContext improvement (Jack Jansen), improve the *Recover* functions documentation, XmlNodeType doc link fix (Martijn Arts) * Bug fixes: internal subset memory leak (Ashwin), avoid problem with paths starting with // (Petr Sumbera), streaming XSD validation callback patches (Ashwin), fix redirection on port other than 80 (William Brack), SAX2 leak (Ashwin), XInclude fragment of own document (Chris Ryan), regexp bug with '.' (Andrew Tosh), flush the writer at the end of the document (Alfred Mickautsch), output I/O bug fix (William Brack), writer CDATA output after a text node (Alex Khesin), UTF-16 encoding detection (William Brack), fix handling of empty CDATA nodes for Safari team, python binding problem with namespace nodes, improve HTML parsing (Arnold Hendriks), regexp automata build bug, memory leak fix (Vasily Chekalkin), XSD test crash, weird system parameter entity parsing problem, allow save to file:///X:/ windows paths, various attribute normalisation problems, externalSubsetSplit fix (Ashwin), attribute redefinition in the DTD (Ashwin), fix in char ref parsing check (Alex Khesin), many out of memory handling fixes (Ashwin), XPath out of memory handling fixes (Alvaro Herrera), various realloc problems (Ashwin), UCS4 encoding conversion buffer size (Christian Fruth), problems with EatName functions on memory errors, BOM handling in external parsed entities (Mark Rowe) * Code cleanup: fix build under VS 2008 (David Wimsey), remove useless mutex in xmlDict (Florent Guilian), Mingw32 compilation fix (Carlo Bramini), Win and MacOS EOL cleanups (Florent Guiliani), iconv need a const detection (Roumen Petrov), simplify xmlSetProp (Julien Charbon), cross compilation fixes for Mingw (Roumen Petrov), SCO Openserver build fix (Florent Guiliani), iconv uses const on Win32 (Rob Richards), duplicate code removal (Ashwin), missing malloc test and error reports (Ashwin), VMS makefile fix (Tycho Hilhorst) * improvements: better plug of schematron in the normal error handling (Tobias Minich)
2008-04-22Update to 1.4.1:wiz4-75/+7
Included hunspell upgraded to 1.2.2, pkgsrc patches integrated.
2008-04-21sync w/ base pkgdrochner2-6/+6
2008-04-19Update MASTER_SITES and HOMEPAGE location.obache1-3/+3
2008-04-19old MASTER_SITES seems dead, use savannah.nongnu instead.obache1-2/+2
2008-04-19cannot connect ftp site now.obache1-2/+3
add http site to MASTER_SITES.
2008-04-18textproc/libxslt [1.22 -> 1.2.23]bjs3-20/+20
one nominal change in pkgsrc: - MASTER_SITES+=${MASTER_SITE_GNOME} is commented out. They evidently have not placed this product on their shelves yet. changes since prior release --------------------------- * python/generator.py: fix an infinite loop bug * libxslt/xsltutils.c: avoid a scary realloc() loop should fix #520383 * libexslt/date.c: applied patch from Peter Pawlowski fixing a timezone offset problem, fixes #521680 * libxslt/namespaces.c: a bit of space/tabs cleanup * doc/xsltproc.xml doc/xsltproc.1 doc/xsltproc.html: small fix to man page synopsis, should fix #525822 * libexslt/functions.c: fixed minor error reported on the mailing list by Mark Howe, which caused a segfault if func:result was postitioned as top-level element. * doc/xsltproc.xml doc/xsltproc.1: fix maxdepth default value documentation fixes #519921. * libxslt/extensions.c: fixed minor error bug #516483 * libxslt/xslt.c: applied documentation patch from Jason Viers for xsltParseStylesheetDoc * doc/xslt.html doc/docbook.html: fix links for Cygwin DocBook setup as suggested by Philippe Bourcier * libxslt/keys.c, libxslt/pattern.c, libxslt/xsltInternals.h: fixed a problem on superfluous re-generation of keys reported on the mailing list by Josef Urban. * configure.in: avoid a problem in configure if an old gcrypt version is installed, patch from Brent Cowgill, fixes #500390 * libexslt/common.c, libexslt/dynamic.c: After discussion on Bugzilla with Peter Pawlowski, added same code for preventing deletion of function result during garbage collection (see bug #495995). * libexslt/strings.c: Added code to mark the results of str:tokenize and str:split as "function result" to avoid garbage-collecting them during global variable initialisation. Should fix bug #495995. * python/libxslt.c: changed iterator argument for Py_Dict_Next from int to ssize_t (seems Python docs are incorrect) to fix x86_64 bug #489854. * python/libxslt.c: applied patch from Daniel Gryniewicz to fix a segfault caused by a parameter array not being preset to zero.