summaryrefslogtreecommitdiff
path: root/textproc/lua-expat
AgeCommit message (Collapse)AuthorFilesLines
2011-06-04Update textproc/lua-expat to 1.2.0.schnoebe2-9/+9
Required for updating chat/prosody to 0.8.1, which helps handle the "billion laughs" exploits on XML parsers and XMPP servers. Change log as recorded in the README: Version 1.2.0 [02/Jun/2011] * support for the StartDoctypeDecl handler * add parser:stop() to abort parsing inside a callback
2010-07-06Transfer ownership to pkgsrc-users. pancake's address is not valid anyjmmv1-2/+2
more and he has agreed in private mail to drop maintainership.
2009-12-15Updated lua-expat to 1.1.0.fhajny7-67/+81
Changes in 1.1.0: * Adapted to work on both Lua 5.0 and Lua 5.1 * Updated to use Expat 2.0.0 Changes in 1.0.2: * Minor bugfix, lom correct module name is lxp.lom Changes in 1.0.1: * Minor changes for compatibility with Expat version 1.95.8 pkgsrc changes: * Changed installation scheme to use the lang/lua/module.mk framework
2009-07-09Make a sentence read betteragc1-2/+2
2009-07-09Fix typosagc1-2/+2
2009-07-07user-destdir supportjoerg1-5/+6
2009-05-20Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlibwiz1-2/+2
major change. Reported by Robert Elz in PR 41345.
2008-08-17Add -fPIC to CFLAGS. Fixes broken build on amd64 and probably others.dholland1-1/+3
2007-02-22pkglint cleanup; update HOMEPAGE/MASTER_SITES.wiz1-2/+2
From Sergey Svishchev in private mail.
2006-09-09Rename variable MAKEFILE to MAKE_FILE.obache1-2/+2
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz1-2/+2
of the shlib major bump. PKGREVISION++ for the dependencies.
2005-09-04Bump the PKGREVISION of packages that linked against the lua sharedjlam1-2/+2
library after lang/lua was libtoolized in lua-5.0.2nb4.
2005-06-17Create directories before installing files into them.jlam1-1/+3
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digests to the SHA1 ones.agc1-1/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-08-27Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,jlam2-4/+4
which are the full option names used to set rpath directives for the linker and the compiler, respectively. In places were we are invoking the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is inserted in case the flag is a word, e.g. -rpath. The default values of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the compiler that you use. They may be overridden on a ${OPSYS}-specific basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG, respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
2004-04-05Initial import of lua-expat from pkgsrc-wip, packaged by pancake.xtraeme7-0/+101
LuaExpat is a XML parser based on the Expat XML parser. It allows Lua programs to: - Process a XML document incrementally , thus being able to handle huge documents without memory penalties; - Register handler functions wich are called by the parser during the processing of the document, handling the document elements or text.