Bug 136265 - New port: textproc/luaexpat XML Parser for Lua using the Expat library
Summary: New port: textproc/luaexpat XML Parser for Lua using the Expat library
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Philip M. Gollucci
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-07-03 05:30 UTC by Andrew Lewis
Modified: 2009-07-14 07:10 UTC (History)
0 users

See Also:


Attachments
file.shar (4.58 KB, text/plain)
2009-07-03 05:30 UTC, Andrew Lewis
no flags Details
luaexpat.Makefile.patch.txt (591 bytes, text/plain; charset="UTF-8")
2009-07-11 00:30 UTC, Andrew Lewis
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Lewis 2009-07-03 05:30:04 UTC
Requires changes to devel/lua50-compat51 to build with Lua 5.0, see here:
http://www.freebsd.org/cgi/query-pr.cgi?pr=136264

Fix: Patch attached with submission follows:
Comment 1 Philip M. Gollucci freebsd_committer freebsd_triage 2009-07-08 04:21:24 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pgollucci

I'll take it.
Comment 2 Andrew Lewis 2009-07-11 00:30:02 UTC
Patch to change e-mail address. I think this will be better in the long run. 
Apologies for the inconvenience.
Comment 3 dfilter service freebsd_committer freebsd_triage 2009-07-14 07:03:04 UTC
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"
Comment 4 Philip M. Gollucci freebsd_committer freebsd_triage 2009-07-14 07:03:42 UTC
State Changed
From-To: open->closed

Committed. Thanks!