Summary: | New port: textproc/luaexpat XML Parser for Lua using the Expat library | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Andrew Lewis <dru> | ||||||
Component: | Individual Port(s) | Assignee: | Philip M. Gollucci <pgollucci> | ||||||
Status: | Closed FIXED | ||||||||
Severity: | Affects Only Me | ||||||||
Priority: | Normal | ||||||||
Version: | Latest | ||||||||
Hardware: | Any | ||||||||
OS: | Any | ||||||||
Attachments: |
|
Description
Andrew Lewis
2009-07-03 05:30:04 UTC
Responsible Changed From-To: freebsd-ports-bugs->pgollucci I'll take it. Patch to change e-mail address. I think this will be better in the long run. Apologies for the inconvenience. pgollucci 2009-07-14 06:02:55 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/luaexpat Makefile distinfo pkg-descr pkg-plist textproc/luaexpat/files patch-config patch-makefile Log: LuaExpat is a SAX XML parser based on the Expat library. SAX is the Simple API for XML and allows programs to: * process a XML document incrementally, thus being able to handle huge documents without memory penalties; * register handler functions which are called by the parser during the processing of the document, handling the document elements or text. With an event-based API like SAX the XML document can be fed to the parser in chunks, and the parsing begins as soon as the parser receives the first document chunk. LuaExpat reports parsing events (such as the start and end of elements) directly to the application through callbacks. The parsing of huge documents can benefit from this piecemeal operation. WWW: http://www.keplerproject.org/luaexpat PR: ports/136265 Submitted by: Andrew Lewis <dru at silenceisdefeat.net> Revision Changes Path 1.1355 +1 -0 ports/textproc/Makefile 1.1 +32 -0 ports/textproc/luaexpat/Makefile (new) 1.1 +3 -0 ports/textproc/luaexpat/distinfo (new) 1.1 +32 -0 ports/textproc/luaexpat/files/patch-config (new) 1.1 +19 -0 ports/textproc/luaexpat/files/patch-makefile (new) 1.1 +15 -0 ports/textproc/luaexpat/pkg-descr (new) 1.1 +4 -0 ports/textproc/luaexpat/pkg-plist (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed. Thanks! |