summaryrefslogtreecommitdiff
path: root/textproc
AgeCommit message (Collapse)AuthorFilesLines
2009-01-07Update to 1.0.10:wiz3-20/+11
Omega 1.0.10 (2008-12-23): build system: * This release now uses newer versions of the autotools (autoconf 2.62 -> 2.63; automake 1.10.1 -> 1.10.2). The newer autoconf fixes a regression in autoconf 2.62 (and so Omega 1.0.7) with detecting the endian-ness of some platforms. Omega 1.0.9 (2008-10-31): documentation: * docs/overview.html: Document HTML parsing a bit, including robots meta and htdig_noindex. omega: * omega: Catch std::exception and report what its what() method returns. * omega: Remove undocumented and non-functional support for numeric sorting via CGI parameter SORT=#<slot> (SORT=<slot> works as before). build system: * configure: Sync warning flag handling changes from xapian-core to eliminate many warnings from GCC 4.3. Omega 1.0.8 (2008-09-04): documentation: * Fix a few typos and improve wording in a few places. indexers: * omindex: + If the character encoding is specified using <meta http-equiv=...> in an HTML document then reparse the document if it isn't the encoding we're already using so that any preceding <title> is converted correctly (bug#292). + Convert text from meta tag parameters to UTF-8 (bug#293). + Handle <meta charset="..."> (new in HTML 5). + Fix bug in HTML tag parameter parsing which was probably just a small performance penalty in real world cases, but could perhaps result in parsing bogus extra parameters in carefully contrived situations. portability: * Add missing <signal.h>, noted on FreeBSD by Henrik Brix Andersen.
2009-01-07Update to 1.0.10:wiz2-7/+7
Xapian-core 1.0.10 (2008-12-23): API: * Composing an OP_NEAR query with two non-term subqueries now throws UnimplementedError instead of AssertionError (in a --enable-assertions build) or leading to unexpected results (otherwise). This partly addresses bug#201. * Using a MultiValueSorter with no values set no longer causes a hang or segmentation fault (but it is still rather pointless!) matcher: * If we're using values for sorting and for another purpose, cache the Document::Internal object created to get the value for sorting, like we do between other uses. flint backend: * If the disk became full while flushing database changes to disk, the WritableDatabase object would throw a DatabaseError exception but be left in an inconsistent state such that further use could lead to the database on disk ending up in a "corrupt" state (theoretically fixable, but no tool to fix such a database exists). Now we try to ensure that the object is left in a consistent state, but if doing so throws a further exception, we put the WritableDatabase object in a "closed" state such that further attempts to use it throw an exception. * Create the lockfile "flintlock" with permissions 0666 so that the umask is honoured just like we do for the other files (previously we used 0600). Previously it wasn't possible to lock a database for update if it was owned by another user, even if you otherwise had sufficient permissions via "group" or "other". * Fix garbled exception message when a base file can't be reread. quartz backend: * Fix garbled exception message when a base file can't be reread. remote backend: * xapian-tcpsrv and xapian-progsrv now accept -w as a short form of --writable, as was always intended. build system: * This release now uses newer versions of the autotools (autoconf 2.62 -> 2.63; automake 1.10.1 -> 1.10.2). documentation: * INSTALL: Add new paragraphs about HP's aCC and IRIX (adapted from footnotes in PLATFORMS). * PLATFORMS: HP testdrive has been shut down, so all mark all those machines as "no longer available". Update atreus' build report to 1.0.10. * docs/queryparser.html: Add link to valueranges.html. examples: * delve: Add missing "and" to --help output. Report termfreq and collection freq for each term we're asked about. portability: * Fix to build with GCC 4.4 snapshot. Xapian-core 1.0.9 (2008-10-31): API: * Database::get_spelling_suggestion() is now faster (15% speed up for parsing queries with FLAG_SPELLING_CORRECTION set in a test on real world data). * Fix OP_ELITE_SET segmentation fault due to excess floating point precision on x86 Linux (and possibly other platforms). * Database::allterms_begin() over multiple databases now gives a TermIterator with operations O(log(n)) rather than potentially O(n) in the number of databases. * Add new Database methods metadata_keys_begin() and metadata_keys_end() to allow the complete list of metadata in a database to be retrieved (this API addition is needed so that copydatabase can copy database metadata). testsuite: * Remove the cached test databases before running the testsuite. * apitest: Fix cursordelbug1 to work on Microsoft Windows (bug#301). * apitest,queryparsertest: Skip tests which fail because the timer granularity is too coarse to measure how long the test took. In practice, this is only an issue on Microsoft Windows (bug#300 and bug#308). matcher: * Adjust percent cutoff calculations in the matcher in a way which corresponds to the change to percentage calculations made in 1.0.7 to allow for excess precision. * Query::MatchAll no longer gives match results ranked by increasing document length. flint backend: * xapian-compact: Fix crash while compacting spelling table for a single database when built with MSVC, and probably other platforms, though Linux got lucky and happened to work (bug#305). build system: * configure: Disable -Wconversion for now - it's not useful for older GCC and is buggy in GCC 4.3. * configure: Set -Wstrict-overflow to 1 instead of 5, to avoid unreasonable warnings under GCC 4.3. documentation: * Minor improvements to API documentation, including documenting the XAPIAN_FLUSH_THRESHOLD environmental variable in WriteableDatabase::flush() (bug#306). * valueranges.html: Fix typos in example code, and drop superfluous empty destructor from ValueRangeProcessor subclass. * HACKING: Several improvements. examples: * copydatabase: Also copy user metadata. Xapian-core 1.0.8 (2008-09-04): API: * Fix output of RSet::get_description testsuite: * Report subtotals per backend, rather than per testgroup per backend to make the output easier to read. flint backend: * Fix WritableDatabase::add_document() and replace_document() not to be O(n*n) in the number of values in the new document. * Fix handling of a table created lazily after the database has had commits, and which is then cursored while still in sequential mode. * Fix failure to remove all the Btree entries in some cases when all the postings for a term are removed. (bug#287) * xapian-inspect: Show the help message on start-up. Correct the documented alias for next from ' ' to ''. Avoid reading outside of input string when it is empty. (bug#286) quartz backend: * Backport fix from flint for WritableDatabase::add_document() and replace_document() not to be O(n*n) in the number of values in the new document. build system: * configure: Report bug report URL in --help output. * xapian-config: Report bug report URL in --help output. * configure: Fix deprecation error for --enable-debug=full to say to instead use '--enable-assertions --enable-log' not '--enable-debug --enable-log'. documentation: * valueranges.html: Expand on some sections. examples: * quest: Fix to catch QueryParserError instead of const char * which QueryParser threw in Xapian < 1.0.0. * copydatabase: Use C++ forms of C headers. Only treat '\' as a directory separator on platforms where it is. Update counter every 13 counting up to the end so that the digits all "rotate" and the counter ends up on the exact total. portability: * Eliminate literal top-bit-set characters in testsuite source code.
2009-01-07Update to 1.0.8:wiz2-8/+10
2008-07-05 Redland Version 1.0.8 Released Updated to use [1]Rasqal 0.9.16 (from 0.9.15) Updated to use [2]Raptor 1.4.18 (from 1.4.16) Added a 'trees' indexed in-memory storage Improvements to low-memory and other failures of resource allocation API additions and changes to concepts, parser and serializer classes. Fixed Issue [3]0000256 NOTE: The next release of redland will NOT include raptor and rasqal in the tarball, they will be separate download dependencies. See the [4]1.0.8 Release Notes for the full details of the changes.
2009-01-07Update to 0.9.16:wiz4-11/+11
2008-07-05 Rasqal Version 0.9.16 Released WARNING: ABI AND API CHANGED in this release. Rasqal 0.9.16 is incompatible with 0.9.15. Added a rasqal_world object used for all constructor functions Removed deprecated functions and macros Fixed some memory leaks and made some low-memory resiliance fixes Query result sets can be read/written from sparql XML results format Improved error syntax error reporting See the Raptor 0.9.16 Release Notes for the full details of the changes.
2009-01-07Update to 3.5.1:wiz3-7/+13
iso-codes 3.5.1 --------------- Tobias Quathamer <toddy@debian.org> Fri, 2 January 2009 [ ISO 4217 translations ] * Dutch by Freek de Kruijf (TP) * Indonesian by Erwid M Jadied (TP) * Vietnamese by Clytie Siddall (TP) [ ISO 15924 translations ] * Indonesian by Erwid M Jadied (TP) * Traditional Chinese by Wei-Lun Chao (TP) [ ISO 639 translations ] * Vietnamese by Clytie Siddall (TP) * Asturian by Marcos Alvarez Costales (TP) [ ISO 3166 translations ] * Vietnamese by Clytie Siddall (TP) iso-codes 3.5 ------------- Tobias Quathamer <toddy@debian.org> Wed, 3 December 2008 [ General ] * Add note about missing file iso_3166.tab in README. Closes: #498367 [ ISO-639-3 ] * Update to 2008-11-10 [ ISO-4217 ] * Replace acronym "SDR" with "Special Drawing Rights" [ ISO-3166 translations ] * Portuguese by Miguel Figueiredo * Simplified Chinese by LI Daobing (TP) * Indonesian by Andhika Padmawan (TP) * Irish by Kevin Scannell (TP) * Korean by Changwoo Ryu (TP) * Finnish by Tommi Vainikainen (TP) * Dutch by Freek de Kruijf (TP) * Estonian by Tõivo Leedjärv * Occitan correction by Yannick Marchegay. Closes: alioth#311228 * Polish by Łukasz Paździora. Closes: #505898 * Esperanto by Edmund GRIMLEY EVANS (TP) [ ISO-3166-2 translations ] * Finnish by Tommi Vainikainen (TP) * French completed by Christian Perrier * Occitan correction by Yannick Marchegay. Closes: alioth#311229 [ ISO-639-3 translations ] * French updated by Christian Perrier * Occitan correction by Yannick Marchegay. Closes: alioth#311231 [ ISO-639 translations ] * Simplified Chinese by LI Daobing (TP) * Italian by Milo Casagrande (TP) * Finnish by Tommi Vainikainen (TP) * Dutch by Freek de Kruijf (TP) * Occitan correction by Yannick Marchegay. Closes: alioth#311230 * German completed by Tobias Quathamer * Esperanto by Edmund GRIMLEY EVANS (TP) [ ISO-4217 translations ] * Occitan correction by Yannick Marchegay. Closes: alioth#311232 * German completed by Tobias Quathamer [ ISO-15924 translations ] * Occitan correction by Yannick Marchegay. Closes: alioth#311227
2009-01-07Update to 2.24.2:wiz3-283/+313
2.24.2: * Fixed another two memory leaks. (Armin Burgmeier) Bug #563321 (Arjan Franzen) * Removed obsolete MSVC6 project files (Armin Burgmeier) 2.24.1: * Added new Schema and SchemaValidator classes to MSVC project files (Arjan Franzen, Arming Burgmeier) Bug #563664. * Avoid a memory leak in Validator::check_for_exception. (Arjan Franzen, Murray Cumming) Bug #563321. * Avoid a memory leak in schema class. (Balazs Tirpak, Murray Cumming) Bug #312216. 2.24.0: Changes since 2.22: * Attribute: Return the correct value even when using a namespace. (Murray Cumming) Bug #547689 (Sergei Fedorov) * Added Schema and SchemaValidator classes, demonstrated in examples/schemavalidation. (Emilien KIA) Bug #312216. * Element: Added add_child_text() with a previous_node parameter, for adding between existing nodes. Added add_child_text_before() too. * Node: Added add_child() with a previous_node parameter, for adding between existing nodes. Added add_child_before() too. (Murray Cumming) * SaxParser: added parse_chunk_raw(). (Armin Burgmeier)
2009-01-06+gnome-subtitleskefren1-1/+3
+sublib
2009-01-06Initial import of gnome-subtitles 0.8, a subtitle editor for the GNOMEkefren5-0/+97
desktop
2009-01-06Initial import of sublib 0.9, a C# library for subtitles editing andkefren6-0/+76
conversion
2009-01-05Update to 0.14.1:wiz2-6/+6
Changes in 0.14.1: ------------------ * Fixed some LTR issues, more remain on bug #563559 (Shaun McCance) * chmod +x gnome-doc-{tool,prepare} on configure, #557732 (Christian Persch) * Symlink non-localized figured to C figures, #557227 (Christian Persch) * Updated translations: ar (Khaled Hosny) ja (Mitsuya Shibata)
2009-01-05+sub2srtkefren1-1/+2
2009-01-05Initial import of sub2srt 0.5.2, a small perl script that convertskefren4-0/+35
.sub format (microdvd and subrip) to .srt (subviewer)
2009-01-05Add p5-podlators.he1-1/+2
2009-01-05Import p5-podlators version 2.2.1.he3-0/+32
collection of pod related perl modules: - Pod::Man - Pod::ParseLink - Pod::Text - Pod::Text::Color - Pod::Text::Overstrike - Pod::Text::Termcap
2009-01-04Move scrollkeeper/omf.mk to rarian/omf.mk.wiz3-5/+4
scrollkeeper is nowadays included in rarian, so the omf.mk file should be there as well. Adapt all references.
2009-01-04Add support for the options frameworkhubertf2-4/+32
Enable support for w3m and lynx Add support for links Default to links, as w3m doesn't build on Mac OS X
2009-01-04Update tokyodystpoia to 0.9.9.obache3-9/+8
Changes: 2009-01-03 Mikio Hirabayashi <mikio@users.sourceforge.net> * dystsearch.c (readparameters): semicolon separater is now supported. - Release: 0.9.9
2009-01-04+p5-Data-HexDumpadrianp1-1/+2
2009-01-04NAMEadrianp4-0/+35
Data::HexDump - A Simple Hexadecial Dumper DESCRIPTION Dump in hexadecimal the content of a scalar. The result is returned in a string. Each line of the result consists of the offset in the source in the leftmost column of each line, followed by one or more columns of data from the source in hexadecimal. The rightmost column of each line shows the printable characters (all others are shown as single dots)
2009-01-02Update from version 0.06nb1 to 0.06nb2.he3-3/+17
Pkgsrc changes: o Apply fix from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=470250 to prevent this module from looping on input "words" longer than the current wrap coloumn. Problem also reported upstream via CPAN's RT system.
2008-12-26Call this version 0.3 as 0.30 to avoid downgrade.obache1-2/+2
Previous version was named as 0.12.
2008-12-20Removed a "not" operator that accidentally got in here.rillig1-2/+2
2008-12-19Update to soprano 2.1.1markd2-6/+6
adds a README file pointing to the Sesame2 sources as requested by linux distributors.
2008-12-18Does not parallel build safely.roy1-1/+2
ok: ahoka
2008-12-15Bump PKGREVISION for tokyocabinet shlib revbump.obache2-4/+4
2008-12-12Update from version 0.66nb1 to 0.68.he2-7/+8
Pkgsrc changes: o Add dependency on p5-Filter for Filter::Util::Call Upstream changes: version: 0.68 date: Thu Dec 4 01:00:44 PST 2008 changes: - Used update Test::Base to ensure Filter::Util::Call version: 0.67 date: Mon Dec 1 02:34:21 PST 2008 changes: - Add YAML::Any - Move ysh to YAML::Shell - Add doc section explaining YAML::Old
2008-12-12Update from version 0.27 to 0.29.he2-6/+6
Upstream changes: version: 0.29 date: Tue Nov 11 22:57:07 PST 2008 changes: - Check SvNIOK when dumping and format if quotes when it's a string that looks like a number - Parse plain scalars as numbers when they look like numbers - Load nulls as newSV(0) instead of &PL_sv_undef to avoid "Modification of non-creatable hash value attempted" errors version: 0.28 date: Mon Jun 23 15:23:24 PDT 2008 changes: - Apply UTF8 patch supplied by KLEINJ in rt.cpan#36734
2008-12-11updated to 0.606rhaen2-7/+6
Changelog: 0.606 Wed Dec 3 00:09:34 GMT 2008 <joe@kafsemo.org> - Ensure META.yml spec version matches URL. 0.605 Mon Dec 1 23:01:21 GMT 2008 <joe@kafsemo.org> - Use MIT license, formalising David Megginson's original ("No warranty. Commercial and non-commercial use freely permitted."). - Fix from Yanick Champoux for dataElements namespaces (#41359).
2008-12-09Update distinfo.taca1-2/+2
(patch-aa's comment was added after creating distinfo?)
2008-12-07Revision bump for shlib major bumo of tokyocabinet.obache2-2/+4
2008-12-06Update to 2.0.15:wiz3-7/+15
version 2.0.15 (2008-12-01): * Additional translations (see po/ChangeLog). * Add missing G_BEGIN_DECLS/G_END_DECLS for C++ support * Fix feature request #2101451 by removing the sub-menu of the context menu as any other in-line spell checker does. * Fix feature request #1523881, #1643622 and #2054637 by adding a Language selector sub-menu. * Fix feature request #1362304 by fixing docs/Makefile.am to install gtkspell.devhelp so that it shows in devhelp
2008-12-04Add a patch file, which should have been committed in the previous commit.minskim1-0/+13
2008-12-04Fix a bug that was causing false negative safe mode warnings.minskim2-2/+4
http://hg.sharesource.org/asciidoc/rev/fa6db1ff4369 Suggested by Tom Yu in PR 40101. Bump PKGREVISION.
2008-11-28Update from versio n0.97nb1 to 0.99.he2-7/+7
Pkgsrc changes: o Change to use Module::Build Upstream changes: 0.99 October 03 2008 - Now can exclude some paths from the comparison: - http://rt.cpan.org/Ticket/Display.html?id=39705 0.98 September 13 2008 - Added the LICENSE section to the POD (Kwalitee). - Added the "use warnings" (Kwalitee). - Added the "Repository URL" on the resources page.
2008-11-28Updated from version 0.50nb1 to 0.52.he2-10/+9
Pkgsrc changes: o Adjusted dependencies to fit the new requirements. Upstream changes: 0.52 - 2008-11-19 - Fix spelling of QuoteCharacter 0.51 - 2008-11-19 - Added QuoteCharecter parameter to new() to control quoting of attributes (perigrin) - Added Tests and Docs
2008-11-28Added p5-XML-SAX-Base.he1-1/+2
2008-11-28Import p5-XML-SAX-Base version 1.02.he3-0/+43
This module has a very simple task - to be a base class for PerlSAX drivers and filters. It's default behaviour is to pass the input directly to the output unchanged. It can be useful to use this module as a base class so you don't have to, for example, implement the characters() callback. The main advantages that it provides are easy dispatching of events the right way (ie it takes care for you of checking that the handler has implemented that method, or has defined an AUTOLOAD), and the guarantee that filters will pass along events that they aren't implementing to handlers downstream that might nevertheless be interested in them.
2008-11-28Update from version 0.14 to 0.16.he2-6/+6
Upstream changes: 0.16 2008, Nov 25 (19:42) - Workaround with a bug for perl 5.8.x - Added support for multiple lexers at the same time; - Added support to the 'x' flag on the MRULES; 0.15 2008, Nov 23 (21:27) - Fixed some issues with a global variable.
2008-11-25Update textproc/p5-XML-Atom to 0.32; changes since 0.31 include:kleink2-6/+6
0.32 2008.11.23 * Added base and lang to Entry and Feed object. Fixed xml:base attributes. (Simon Wistow)
2008-11-24Add fixes for security vulnerabilities reported in CVE-2008-4225 andtron5-3/+98
CVE-2008-4226 from "libxml2" SVN repository. Bump package revision.
2008-11-23Explain why this only works with python21.snj1-2/+2
2008-11-22Update from version 1.33nb1 to 1.37.he2-7/+6
Upstream changes: 1.37 - November 18, 2008 - Extracted the common parts of parse() and parsefile() into one method (Refactoring - Shlomi Fish) - Incorporated a modified version of a patch from Simon Wistow to add support for the "xml:base" attribute. - Renamed t/items-are-0.t into the more descriptive t/test-generated-items.t , to highlight its significance and make it easier to notice. - Enabled backwards-compatibility mode for the "description" item to not become a hash-ref by default if xml:base is specified. 1.36 - October 7, 2008 - ->parse() now explicitly returns $self. - http://rt.cpan.org/Public/Bug/Display.html?id=34914 - ->parsefile() now explicitly returns $self. - http://rt.cpan.org/Public/Bug/Display.html?id=34914 - Applied a patch to change the RSS-0.91 DTD URL from my.netscape.com to rssboard.org: - http://rt.cpan.org/Ticket/Display.html?id=39780 - Reformatted the Changes file to standardize on 4-space-indents. - Small documentation patch: (add_item with dc:date) - http://rt.cpan.org/Ticket/Display.html?id=39780 1.35 - September 13, 2008 - Added a Module::Build-based Build.PL so we'll have an easier time with the META.yml and the Kwalitee. - Kwalitee - added "use warnings" to all Perl files. - now depending on at least perl-5.6.0. - Kwalitee - fixed the "use" statement of "Test::Run::CmdLine::Iface" to a runtime require. 1.34 - September 12, 2008 - fixed a typo in the documentation of lib/XML/RSS.pm - "regardless" instead of "regarless". - http://rt.cpan.org/Public/Bug/Display.html?id=37916 - (Reported by Reuben Thomas, Fixed by Shlomif). - fixed a code fragment - pop() instead of shift() for older items, and while() instead of if(): - http://rt.cpan.org/Public/Bug/Display.html?id=39231 - (Reported by Dave, Fixed by Shlomif).
2008-11-22Updated from version 1.68 to 1.69.he2-6/+6
Upstream changes: 1.69 - fix incorrect output of getAttributeNS and possibly other methods on UTF-8 - added $node_or_xpc->exists($xpath) method - remove accidental debug output from XML::LibXML::SAX::Builder
2008-11-22Update from version 0.39nb1 to 0.39nb2.he1-3/+3
Pkgsrc changes: o Fix typo in HOMEPAGE URL, bump package revision
2008-11-22Update from version 0.03nb1 to 0.05.he2-8/+6
Pkgsrc changes: o No longer a Module::Build module, so adapt. Upstream changes: 0.05 2008-08-28 00:00:00 - Adden new contact information - No more os x garbage files (hopefully) 0.04 2008-08-28 00:00:00 - Removed Build.PL
2008-11-22Update from version 1.0.21nb1 to 1.0.24.he2-8/+7
Upstream changes: 1.0.24 2008-11-16T14:33:30 - Add trust_list_start_value patch from Ricardo Signes (RT#40814) to enable <li value='X'> output for list numbering. This feature is disabled by default. 1.0.23 2008-11-02T18:24:30 - Ship a release with the correct contents so that the tests pass. 1.0.22 2008-10-23T18:24:44 - RT#37909 - Fix + in email addresses. - RT#40303 - Fix use in Mason by adding "use re 'eval'" to both files. - Add SVN repository to Makefile.PL - Remove META.yml from source control so it is regenerated automatically.
2008-11-22Updated from version 0.52nb1 to 0.58.he2-7/+6
Upstream changes: 2008-10-30 0.58 - H.Merijn Brand <h.m.brand@xs4all.nl> * Small typo in test message (RT#40410, JPL) * Parse error test on "\0 (RT#40507) * Fixed allow_loose_escapes bug disclosed by RT#40507 2008-10-21 0.57 - H.Merijn Brand <h.m.brand@xs4all.nl> * Don't bootstrap twice. Don't know how/when it came in there 2008-10-21 0.56 - H.Merijn Brand <h.m.brand@xs4all.nl> * Update to ppport.h 3.14_01 * Updated docs (Unicode, TODO, Release Plan) * As Text::CSV::Encoded is about to be released, refer to it in the documentation * Default for eol is "", undef now treated as "" * Don't print $\ twice (eol prevails over $\ in ->print ()) Fix only works in perl5.8 and up * Undef treated as 0 for boolean attributes * Trailing whitespace in pod removed * Sync up doc with latest Text::CSV::Encoded * YAML declared 1.4 (META.yml) instead of 1.1 (YAML) 2008-10-15 0.55 - H.Merijn Brand <h.m.brand@xs4all.nl> * Improve documentation on eol * Unicode on perl-5.8.[0-2] sucks. Don't use it! * Test error codes in expected IO failures * Allow SetDiag to be used as class method * Document the MS/Excel separation character * Hint that eof is not an error per se (RT#40047) 2008-09-04 0.54 - H.Merijn Brand <h.m.brand@xs4all.nl> * IO failure in print () was not propagated (ilmari, RT#38960) 2008-09-01 0.53 - H.Merijn Brand <h.m.brand@xs4all.nl> * SvUPGRADE is a safer choice than sv_upgrade (Lubomir Rintel, RT#38890) * bring docs in sync with reality for msg 2023 * Default eol for print is $\ * examples/csv-check should default to CSV , not to ; * Tests for SetDiag (0) * Tests for error 2030 * Code cleanup (Devel::Cover++)
2008-11-22Add commented-out HOMEPAGE using search.cpan.org.he1-1/+2
2008-11-22Update from version 0.37nb1 to 0.38.he2-7/+6
Upstream changes: Release 0.38 - 8 March, 2008 ---------------------------- * fixed problem when creating an empty Entry. Thanks to Frank Wiegand.
2008-11-20update to detex-2.8, which has fixes for flex included (allows itchuck4-26/+26
to compile on Darwin).