./textproc/mxml, Small XML parsing library

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.10, Package name: mxml-2.10, Maintainer: pkgsrc-users

Mini-XML is a small XML parsing library that you can use to
read XML and XML-like data files in your application without
requiring large non-standard libraries.


Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 259.178 KB

Version history: (Expand)


CVS history: (Expand)


   2024-11-14 13:10:04 by Niclas Rosenvik | Files touched by this commit (2)
Log message:
mxml: try to fix build on darwin

The package tries to run mxmldoc-static on
OSX causing build problems, this is to create
a docset bundle but the docsetutil program
is not guarranteed to exist since it was
removed in XCode 9.3, so comment that section
out to fix the build problem.
Should fix PR pkg/58770 .
   2021-10-26 13:23:42 by Nia Alarie | Files touched by this commit (1161)
Log message:
textproc: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Unfetchable distfiles (fetched conditionally?):
./textproc/convertlit/distinfo clit18src.zip
   2021-10-07 17:02:49 by Nia Alarie | Files touched by this commit (1162)
Log message:
textproc: Remove SHA1 hashes for distfiles
   2019-11-04 22:43:49 by Roland Illig | Files touched by this commit (155)
Log message:
textproc: align variable assignments

pkglint -Wall -F --only aligned --only indent -r

No manual corrections.
   2016-07-15 15:14:11 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
Updated textproc/mxml to 2.10
-----------------------------
CHANGES IN Mini-XML 2.10    - 2016-06-12
        - The version number in mxml.h was wrong (Bug #532)
        - The mxml.spec file was out of date (Bug #521)
        - Mini-XML no longer allows malformed element names (Bug #509)
        - mxmlLoad* and mxmlSAXLoad* did not properly create text nodes when
          MXML_TEXT_CALLBACK was specified (Bug #531)
        - mxmlDelete used a recursive algorithm which could require large
          amounts of stack space depending on the file (Bug #549, CVE-2016-4570)
        - mxmlWrite* used a recursive algorithm which could require large
          amounts of stack space depending on the file (Bug #549, CVE-2016-4571)
   2016-05-05 08:29:30 by Thomas Klausner | Files touched by this commit (1)
Log message:
Remove patch that's not in distinfo.
   2016-03-08 14:52:36 by Niclas Rosenvik | Files touched by this commit (2) | Package updated
Log message:
Forgot to add files that where part of the mxml update to version 2.9.
   2016-03-08 14:50:47 by Niclas Rosenvik | Files touched by this commit (4)
Log message:
Update mxml to version 2.9.

Changelog:

CHANGES IN Mini-XML 2.9

	- mxmlLoad* did not correctly load value nodes with MXML_NO_CALLBACK
	  or MXML_TEXT_CALLBACK (Bug #502)

CHANGES IN Mini-XML 2.8

	- Now call docsetutil using xcrun on OS X (Bug #458)
	- mxmldoc did not escape special HTML characters inside @code foo@
	  comments.
	- Fixed a memory leak in mxmlElementDeleteAttr (Bug #452)
	- Added MXML_MAJOR/MINOR_VERSION definitions to mxml.h (Bug $461)
	- Fixed a bug reading UTF-16 characters from a file (Bug #454)
	- Fixed a memory leak when loading invalid XML (Bug #496)
	- Fixed an XML fragment loading problem (Bug #494)

CHANGES IN Mini-XML 2.7

	- Added 64-bit configurations to the VC++ project files (STR #129)
	- Fixed conformance of mxmldoc's HTML and CSS output.
	- Added data accessor ("get") functions and made the mxml_node_t and
	  mxml_index_t structures private but still available in the Mini-XML
	  header to preserve source compatibility (STR #118)
	- Updated the source headers to reference the Mini-XML license and its
	  exceptions to the LGPL2 (STR #108)
	- Fixed a memory leak when loading a badly-formed XML file (STR #121)
      	- Added a new mxmlFindPath() function to find the value node of a
	  named element (STR #110)
	- Building a static version of the library did not work on Windows
	  (STR #112)
	- The shared library did not include a destructor for the thread-
	  specific data key on UNIX-based operating systems (STR #103)
	- mxmlLoad* did not error out on XML with multiple root nodes (STR #101)
	- Fixed an issue with the _mxml_vstrdupf function (STR #107)
	- mxmlSave* no longer write all siblings of the passed node, just that
	  node and its children (STR #109)