The NetBSD Project

CVS log for pkgsrc/textproc/libxml2/PLIST

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / textproc / libxml2

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.47.8.1 / (download) - annotate - [select for diffs], Sat Mar 4 12:54:51 2023 UTC (13 months, 2 weeks ago) by spz
Branch: pkgsrc-2022Q4
Changes since 1.47: +20 -106 lines
Diff to previous 1.47 (colored) next main 1.48 (colored) to selected 1.39 (colored)

Pullup ticket #6737 - requested by taca
textproc/libxml2: security update

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.166-1.167
- textproc/libxml2/Makefile.common                              1.17-1.19
- textproc/libxml2/PLIST                                        1.48
- textproc/libxml2/distinfo                                     1.142-1.143
- textproc/libxml2/patches/patch-Makefile.in                    deleted
- textproc/libxml2/patches/patch-catalog.c                      deleted
- textproc/libxml2/patches/patch-configure                      1.5
- textproc/libxml2/patches/patch-doc_examples_Makefile.in       deleted
- textproc/libxml2/patches/patch-encoding.c                     1.4
- textproc/libxml2/patches/patch-error.c                        1.1
- textproc/libxml2/patches/patch-python_libxml.c                deleted
- textproc/libxml2/patches/patch-python_libxml.py               deleted
- textproc/libxml2/patches/patch-python_libxml2.py              deleted
- textproc/libxml2/patches/patch-python_setup.py                deleted
- textproc/libxml2/patches/patch-xmlcatalog.c                   deleted

-------------------------------------------------------------------
   Module Name:	pkgsrc
   Committed By:	wiz
   Date:		Sun Jan 22 10:30:09 UTC 2023

   Modified Files:
   	pkgsrc/textproc/libxml2: Makefile Makefile.common PLIST distinfo
   	pkgsrc/textproc/libxml2/patches: patch-configure patch-encoding.c
   Removed Files:
   	pkgsrc/textproc/libxml2/patches: patch-Makefile.in patch-catalog.c
   	    patch-doc_examples_Makefile.in patch-python_libxml.c
   	    patch-python_libxml.py patch-python_libxml2.py
   	    patch-python_setup.py patch-xmlcatalog.c

   Log Message:
   libxml2: update to 2.10.3.

   NEWS file for libxml2

   v2.10.3: Oct 14 2022

   ### Security

   - [CVE-2022-40304] Fix dict corruption caused by entity reference cycles
   - [CVE-2022-40303] Fix integer overflows with XML_PARSE_HUGE
   - Fix overflow check in SAX2.c

   ### Portability

   - win32: Fix build with VS2013

   ### Build system

   - cmake: Set SOVERSION

   v2.10.2: Aug 29 2022

   ### Improvements

   - Remove set-but-unused variable in xmlXPathScanName
   - Silence -Warray-bounds warning

   ### Build system

   - build: require automake-1.16.3 or later (Xi Ruoyao)
   - Remove generated files from distribution

   ### Test suite

   - Don't create missing.xml when running testapi

   v2.10.1: Aug 25 2022

   ### Regressions

   - Fix xmlCtxtReadDoc with encoding

   ### Bug fixes

   - Fix HTML parser with threads and --without-legacy

   ### Build system

   - Fix build with Python 3.10
   - cmake: Disable version script on macOS
   - Remove Makefile rule to build testapi.c

   ### Documentation

   - Switch back to HTML output for API documentation
   - Port doc/examples/index.py to Python 3
   - Fix order of exports in libxml2-api.xml
   - Remove libxml2-refs.xml

   v2.10.0: Aug 17 2022

   ### Security

   - [CVE-2022-2309] Reset nsNr in xmlCtxtReset
   - Reserve byte for NUL terminator and report errors consistently in xmlBuf and
     xmlBuffer (David Kilzer)
   - Fix missing NUL terminators in xmlBuf and xmlBuffer functions (David Kilzer)
   - Fix integer overflow in xmlBufferDump() (David Kilzer)
   - xmlBufAvail() should return length without including a byte for NUL
     terminator (David Kilzer)
   - Fix ownership of xmlNodePtr & xmlAttrPtr fields in xmlSetTreeDoc() (David
     Kilzer)
   - Use xmlNewDocText in xmlXIncludeCopyRange
   - Fix use-after-free bugs when calling xmlTextReaderClose() before
     xmlFreeTextReader() on post-validating parser (David Kilzer)
   - Use UPDATE_COMPAT() consistently in buf.c (David Kilzer)
   - fix: xmlXPathParserContext could be double-delete in  OOM case. (jinsub ahn)

   ### Removals and deprecations

   - Disable XPointer location support by default
   - Remove outdated xml2Conf.sh
   - Deprecate module init and cleanup functions
   - Remove obsolete XML Software Autoupdate (XSA) file
   - Remove DOCBparser
   - Remove obsolete Python test framework
   - Remove broken VxWorks support
   - Remove broken Mac OS 9 support
   - Remove broken bakefile support
   - Remove broken Visual Studio 2010 support
   - Remove broken Windows CE support
   - Deprecate IDREF-related functions in valid.h
   - Deprecate legacy functions
   - Disable legacy support by default
   - Deprecate all functions in nanoftp.h
   - Disable FTP support by default
   - Add XML_DEPRECATED macro
   - Remove elfgcchack.h

   ### Regressions

   - Skip incorrectly opened HTML comments
   - Restore behavior of htmlDocContentDumpFormatOutput() (David Kilzer)

   ### Bug fixes

   - Fix memory leak with invalid XSD
   - Make XPath depth check work with recursive invocations
   - Fix memory leak in xmlLoadEntityContent error path
   - Avoid double-free if malloc fails in inputPush
   - Properly fold whitespace around the QName value when validating an XSD
     schema. (Damjan Jovanovic)
   - Add whitespace folding for some atomic data types that it's missing on.
     (Damjan Jovanovic)
   - Don't add IDs containing unexpanded entity references

   ### Improvements

   - Avoid calling xmlSetTreeDoc
   - Simplify xmlFreeNode
   - Don't reset nsDef when changing node content
   - Fix unintended fall-through in xmlNodeAddContentLen
   - Remove unused xmlBuf functions (David Kilzer)
   - Implement xpath1() XPointer scheme
   - Add configuration flag for XPointer locations support
   - Fix compiler warnings in Python code
   - Mark more static data as `const` (David Kilzer)
   - Make xmlStaticCopyNode non-recursive
   - Clean up encoding switching code
   - Simplify recursive pthread mutex
   - Use non-recursive mutex in dict.c
   - Fix parser progress checks
   - Avoid arithmetic on freed pointers
   - Improve buffer allocation scheme
   - Remove unneeded #includes
   - Add support for some non-standard escapes in regular expressions. (Damjan
     Jovanovic)
   - htmlParseComment: handle abruptly-closed comments (Mike Dalessio)
   - Add let variable tag support (Oliver Diehl)
   - Add value-of tag support (Oliver Diehl)
   - Remove useless call to xmlRelaxNGCleanupTypes
   - Don't include ICU headers in public headers
   - Update `xmlStrlen()` to use POSIX / ISO C `strlen()` (Mike Dalessio)
   - Fix unused variable warnings with disabled features
   - Only warn on invalid redeclarations of predefined entities
   - Remove unneeded code in xmlreader.c
   - Rework validation context flags

   ### Portability

   - Use NAN/INFINITY if available to init XPath NaN/Inf (Sergey Kosukhin)
   - Fix Python tests on macOS
   - Fix xmlCleanupThreads on Windows
   - Fix reinitialization of library on Windows
   - Don't mix declarations and code in runtest.c
   - Use portable python shebangs (David Seifert)
   - Use critical sections as mutex on Windows
   - Don't set HAVE_WIN32_THREADS in win32config.h
   - Use stdint.h with newer MSVC
   - Remove cruft from win32config.h
   - Remove isinf/isnan emulation in win32config.h
   - Always fopen files with "rb"
   - Remove __DJGPP__ checks
   - Remove useless __CYGWIN__ checks

   ### Build system

   - Don't autogenerate doc/examples/Makefile.am
   - cmake: Install libxml.m4 on UNIX-like platforms (Daniel E)
   - cmake: Use symbol versioning on UNIX-like platforms (Daniel E)
   - Port genUnicode.py to Python 3
   - Port gentest.py to Python 3
   - cmake: Fix build without thread support
   - cmake: Install documentation in CMAKE_INSTALL_DOCDIR
   - cmake: Remove non needed files in docs dir (Daniel E)
   - configure: move XML_PRIVATE_LIBS after WIN32_EXTRA_LIBADD is set
     (Christopher Degawa)
   - Move local Autoconf macros into m4 directory
   - Use XML_PRIVATE_LIBS in libxml2_la_LIBADD
   - Update libxml-2.0-uninstalled.pc.in
   - Remove LIBS from XML_PRIVATE_LIBS
   - Add WIN32_EXTRA_LIBADD to XML_PRIVATE_LIBS
   - Don't overlink executables
   - cmake: Adjust paths for UNIX or UNIX-like target systems (Daniel Engberg)
   - build: Make use of variables in libxml's pkg-config file (Daniel Engberg)
   - Avoid obsolescent `test -a` constructs (David Seifert)
   - Move AM_MAINTAINER_MODE to AM section
   - configure.ac: make AM_SILENT_RULES([yes]) unconditional (David Seifert)
   - Streamline documentation installation
   - Don't try to recreate COPYING symlink
   - Detect libm using libtool's macros (David Seifert)
   - configure.ac: disable static libraries by default (David Seifert)
   - python/Makefile.am: nest python docs in $(docdir) (David Seifert)
   - python/Makefile.am: rely on global AM_INIT_AUTOMAKE (David Seifert)
   - Makefile.am: install examples more idiomatically (David Seifert)
   - configure.ac: remove useless AC_SUBST (David Seifert)
   - Respect `--sysconfdir` in source files (David Seifert)
   - Ignore configure backup file created by recent autoreconf too (Vadim Zeitlin)
   - Only install *.html and *.c example files
   - Remove --with-html-dir option
   - Rework documentation build system
   - Remove old website
   - Use AM_PATH_PYTHON/PKG_CHECK_MODULES for python bindings (David Seifert)
   - Update genChRanges.py
   - Update build_glob.py
   - Remove ICONV_CONST test
   - Remove obsolete AC_HEADER checks
   - Don't check for standard C89 library functions
   - Don't check for standard C89 headers
   - Remove special configuration for certain maintainers

   ### Test suite, CI

   - Disable network in API tests
   - testapi: remove leading slash from "/missing.xml" (Mike Gilbert)
   - Build Autotools CI tests out of source tree (VPATH)
   - Add --with-minimum build to CI tests
   - Fix warnings when testing --with-minimum build
   - cmake: Run all tests when threads are disabled
   - Also build CI tests with -Werror
   - Move doc/examples tests to new test suite
   - Simplify 'make check' targets
   - Fix schemas and relaxng tests
   - Remove unused result files
   - Allow missing result files in runtest
   - Move regexp tests to runtest
   - Move SVG tests to runtest.c
   - Move testModule to new test suite
   - Move testThreads to new test suite
   - Remove major parts of old test suite
   - Make testchar return an error on failure (Tony Tascioglu)
   - Add CI job for static build
   - python/tests: open() relative to test scripts (David Seifert)
   - Port some test scripts to Python 3

   ### Documentation

   - Improve documentation of tree manipulation API
   - Update xml2-config man page
   - Consolidate man pages
   - Rename xmlcatalog_man.xml
   - Make examples a standalone HTML page
   - Fix documentation in entities.c
   - Add note about optimization flags


   To generate a diff of this commit:
   cvs rdiff -u -r1.165 -r1.166 pkgsrc/textproc/libxml2/Makefile
   cvs rdiff -u -r1.16 -r1.17 pkgsrc/textproc/libxml2/Makefile.common
   cvs rdiff -u -r1.47 -r1.48 pkgsrc/textproc/libxml2/PLIST
   cvs rdiff -u -r1.141 -r1.142 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r1.2 -r0 pkgsrc/textproc/libxml2/patches/patch-Makefile.in \
       pkgsrc/textproc/libxml2/patches/patch-doc_examples_Makefile.in \
       pkgsrc/textproc/libxml2/patches/patch-python_setup.py
   cvs rdiff -u -r1.1 -r0 pkgsrc/textproc/libxml2/patches/patch-catalog.c \
       pkgsrc/textproc/libxml2/patches/patch-python_libxml.py \
       pkgsrc/textproc/libxml2/patches/patch-python_libxml2.py \
       pkgsrc/textproc/libxml2/patches/patch-xmlcatalog.c
   cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/libxml2/patches/patch-configure
   cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/libxml2/patches/patch-encoding.c
   cvs rdiff -u -r1.4 -r0 pkgsrc/textproc/libxml2/patches/patch-python_libxml.c

-------------------------------------------------------------------
   Module Name:	pkgsrc
   Committed By:	gutteridge
   Date:		Thu Jan 26 01:49:16 UTC 2023

   Modified Files:
   	pkgsrc/textproc/libxml2: Makefile.common distinfo
   Added Files:
   	pkgsrc/textproc/libxml2/patches: patch-error.c

   Log Message:
   libxml2: Make sure that error messages are valid UTF-8

   Fixes segfaults with itstool, which were breaking various MATE package
   builds. (This is the third time a variant of a patch to fix this same
   issue has been applied here.)


   To generate a diff of this commit:
   cvs rdiff -u -r1.17 -r1.18 pkgsrc/textproc/libxml2/Makefile.common
   cvs rdiff -u -r1.142 -r1.143 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/libxml2/patches/patch-error.c

-------------------------------------------------------------------
   Module Name:	pkgsrc
   Committed By:	jperkin
   Date:		Fri Jan 27 14:49:37 UTC 2023

   Modified Files:
   	pkgsrc/textproc/libxml2: Makefile Makefile.common

   Log Message:
   libxml2: Ensure --sysconfdir is passed.

   Fixes widespread breakage of recent update on systems where PKG_SYSCONFDIR
   is not PREFIX/etc so the catalog files could not be found.

   Move PKGREVISION out of Makefile.common and bump.


   To generate a diff of this commit:
   cvs rdiff -u -r1.166 -r1.167 pkgsrc/textproc/libxml2/Makefile
   cvs rdiff -u -r1.18 -r1.19 pkgsrc/textproc/libxml2/Makefile.common

Revision 1.48 / (download) - annotate - [select for diffs], Sun Jan 22 10:30:08 2023 UTC (14 months, 3 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1, pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, HEAD
Changes since 1.47: +20 -106 lines
Diff to previous 1.47 (colored) to selected 1.39 (colored)

libxml2: update to 2.10.3.

NEWS file for libxml2

v2.10.3: Oct 14 2022

### Security

- [CVE-2022-40304] Fix dict corruption caused by entity reference cycles
- [CVE-2022-40303] Fix integer overflows with XML_PARSE_HUGE
- Fix overflow check in SAX2.c

### Portability

- win32: Fix build with VS2013

### Build system

- cmake: Set SOVERSION


v2.10.2: Aug 29 2022

### Improvements

- Remove set-but-unused variable in xmlXPathScanName
- Silence -Warray-bounds warning

### Build system

- build: require automake-1.16.3 or later (Xi Ruoyao)
- Remove generated files from distribution

### Test suite

- Don't create missing.xml when running testapi


v2.10.1: Aug 25 2022

### Regressions

- Fix xmlCtxtReadDoc with encoding

### Bug fixes

- Fix HTML parser with threads and --without-legacy

### Build system

- Fix build with Python 3.10
- cmake: Disable version script on macOS
- Remove Makefile rule to build testapi.c

### Documentation

- Switch back to HTML output for API documentation
- Port doc/examples/index.py to Python 3
- Fix order of exports in libxml2-api.xml
- Remove libxml2-refs.xml


v2.10.0: Aug 17 2022

### Security

- [CVE-2022-2309] Reset nsNr in xmlCtxtReset
- Reserve byte for NUL terminator and report errors consistently in xmlBuf and
  xmlBuffer (David Kilzer)
- Fix missing NUL terminators in xmlBuf and xmlBuffer functions (David Kilzer)
- Fix integer overflow in xmlBufferDump() (David Kilzer)
- xmlBufAvail() should return length without including a byte for NUL
  terminator (David Kilzer)
- Fix ownership of xmlNodePtr & xmlAttrPtr fields in xmlSetTreeDoc() (David
  Kilzer)
- Use xmlNewDocText in xmlXIncludeCopyRange
- Fix use-after-free bugs when calling xmlTextReaderClose() before
  xmlFreeTextReader() on post-validating parser (David Kilzer)
- Use UPDATE_COMPAT() consistently in buf.c (David Kilzer)
- fix: xmlXPathParserContext could be double-delete in  OOM case. (jinsub ahn)

### Removals and deprecations

- Disable XPointer location support by default
- Remove outdated xml2Conf.sh
- Deprecate module init and cleanup functions
- Remove obsolete XML Software Autoupdate (XSA) file
- Remove DOCBparser
- Remove obsolete Python test framework
- Remove broken VxWorks support
- Remove broken Mac OS 9 support
- Remove broken bakefile support
- Remove broken Visual Studio 2010 support
- Remove broken Windows CE support
- Deprecate IDREF-related functions in valid.h
- Deprecate legacy functions
- Disable legacy support by default
- Deprecate all functions in nanoftp.h
- Disable FTP support by default
- Add XML_DEPRECATED macro
- Remove elfgcchack.h

### Regressions

- Skip incorrectly opened HTML comments
- Restore behavior of htmlDocContentDumpFormatOutput() (David Kilzer)

### Bug fixes

- Fix memory leak with invalid XSD
- Make XPath depth check work with recursive invocations
- Fix memory leak in xmlLoadEntityContent error path
- Avoid double-free if malloc fails in inputPush
- Properly fold whitespace around the QName value when validating an XSD
  schema. (Damjan Jovanovic)
- Add whitespace folding for some atomic data types that it's missing on.
  (Damjan Jovanovic)
- Don't add IDs containing unexpanded entity references

### Improvements

- Avoid calling xmlSetTreeDoc
- Simplify xmlFreeNode
- Don't reset nsDef when changing node content
- Fix unintended fall-through in xmlNodeAddContentLen
- Remove unused xmlBuf functions (David Kilzer)
- Implement xpath1() XPointer scheme
- Add configuration flag for XPointer locations support
- Fix compiler warnings in Python code
- Mark more static data as `const` (David Kilzer)
- Make xmlStaticCopyNode non-recursive
- Clean up encoding switching code
- Simplify recursive pthread mutex
- Use non-recursive mutex in dict.c
- Fix parser progress checks
- Avoid arithmetic on freed pointers
- Improve buffer allocation scheme
- Remove unneeded #includes
- Add support for some non-standard escapes in regular expressions. (Damjan
  Jovanovic)
- htmlParseComment: handle abruptly-closed comments (Mike Dalessio)
- Add let variable tag support (Oliver Diehl)
- Add value-of tag support (Oliver Diehl)
- Remove useless call to xmlRelaxNGCleanupTypes
- Don't include ICU headers in public headers
- Update `xmlStrlen()` to use POSIX / ISO C `strlen()` (Mike Dalessio)
- Fix unused variable warnings with disabled features
- Only warn on invalid redeclarations of predefined entities
- Remove unneeded code in xmlreader.c
- Rework validation context flags

### Portability

- Use NAN/INFINITY if available to init XPath NaN/Inf (Sergey Kosukhin)
- Fix Python tests on macOS
- Fix xmlCleanupThreads on Windows
- Fix reinitialization of library on Windows
- Don't mix declarations and code in runtest.c
- Use portable python shebangs (David Seifert)
- Use critical sections as mutex on Windows
- Don't set HAVE_WIN32_THREADS in win32config.h
- Use stdint.h with newer MSVC
- Remove cruft from win32config.h
- Remove isinf/isnan emulation in win32config.h
- Always fopen files with "rb"
- Remove __DJGPP__ checks
- Remove useless __CYGWIN__ checks

### Build system

- Don't autogenerate doc/examples/Makefile.am
- cmake: Install libxml.m4 on UNIX-like platforms (Daniel E)
- cmake: Use symbol versioning on UNIX-like platforms (Daniel E)
- Port genUnicode.py to Python 3
- Port gentest.py to Python 3
- cmake: Fix build without thread support
- cmake: Install documentation in CMAKE_INSTALL_DOCDIR
- cmake: Remove non needed files in docs dir (Daniel E)
- configure: move XML_PRIVATE_LIBS after WIN32_EXTRA_LIBADD is set
  (Christopher Degawa)
- Move local Autoconf macros into m4 directory
- Use XML_PRIVATE_LIBS in libxml2_la_LIBADD
- Update libxml-2.0-uninstalled.pc.in
- Remove LIBS from XML_PRIVATE_LIBS
- Add WIN32_EXTRA_LIBADD to XML_PRIVATE_LIBS
- Don't overlink executables
- cmake: Adjust paths for UNIX or UNIX-like target systems (Daniel Engberg)
- build: Make use of variables in libxml's pkg-config file (Daniel Engberg)
- Avoid obsolescent `test -a` constructs (David Seifert)
- Move AM_MAINTAINER_MODE to AM section
- configure.ac: make AM_SILENT_RULES([yes]) unconditional (David Seifert)
- Streamline documentation installation
- Don't try to recreate COPYING symlink
- Detect libm using libtool's macros (David Seifert)
- configure.ac: disable static libraries by default (David Seifert)
- python/Makefile.am: nest python docs in $(docdir) (David Seifert)
- python/Makefile.am: rely on global AM_INIT_AUTOMAKE (David Seifert)
- Makefile.am: install examples more idiomatically (David Seifert)
- configure.ac: remove useless AC_SUBST (David Seifert)
- Respect `--sysconfdir` in source files (David Seifert)
- Ignore configure backup file created by recent autoreconf too (Vadim Zeitlin)
- Only install *.html and *.c example files
- Remove --with-html-dir option
- Rework documentation build system
- Remove old website
- Use AM_PATH_PYTHON/PKG_CHECK_MODULES for python bindings (David Seifert)
- Update genChRanges.py
- Update build_glob.py
- Remove ICONV_CONST test
- Remove obsolete AC_HEADER checks
- Don't check for standard C89 library functions
- Don't check for standard C89 headers
- Remove special configuration for certain maintainers

### Test suite, CI

- Disable network in API tests
- testapi: remove leading slash from "/missing.xml" (Mike Gilbert)
- Build Autotools CI tests out of source tree (VPATH)
- Add --with-minimum build to CI tests
- Fix warnings when testing --with-minimum build
- cmake: Run all tests when threads are disabled
- Also build CI tests with -Werror
- Move doc/examples tests to new test suite
- Simplify 'make check' targets
- Fix schemas and relaxng tests
- Remove unused result files
- Allow missing result files in runtest
- Move regexp tests to runtest
- Move SVG tests to runtest.c
- Move testModule to new test suite
- Move testThreads to new test suite
- Remove major parts of old test suite
- Make testchar return an error on failure (Tony Tascioglu)
- Add CI job for static build
- python/tests: open() relative to test scripts (David Seifert)
- Port some test scripts to Python 3

### Documentation

- Improve documentation of tree manipulation API
- Update xml2-config man page
- Consolidate man pages
- Rename xmlcatalog_man.xml
- Make examples a standalone HTML page
- Fix documentation in entities.c
- Add note about optimization flags

Revision 1.47 / (download) - annotate - [select for diffs], Sat Mar 12 07:33:22 2022 UTC (2 years, 1 month ago) by kim
Branch: MAIN
CVS Tags: pkgsrc-2022Q4-base, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1
Branch point for: pkgsrc-2022Q4
Changes since 1.46: +3 -4 lines
Diff to previous 1.46 (colored) to selected 1.39 (colored)

textproc/libxml2: Update to 2.9.13

NEWS:

v2.9.13: Feb 19 2022:
   - Security:
  [CVE-2022-23308] Use-after-free of ID and IDREF attributes
  (Thanks to Shinji Sato for the report)
  Use-after-free in xmlXIncludeCopyRange (David Kilzer)
  Fix Null-deref-in-xmlSchemaGetComponentTargetNs (huangduirong)
  Fix memory leak in xmlXPathCompNodeTest
  Fix null pointer deref in xmlStringGetNodeList
  Fix several memory leaks found by Coverity (David King)

   - Fixed regressions:
  Fix regression in RelaxNG pattern matching
  Properly handle nested documents in xmlFreeNode
  Fix regression with PEs in external DTD
  Fix random dropping of characters on dumping ASCII encoded XML (Mohammad Razavi)
  Revert "Make schema validation fail with multiple top-level elements"
  Fix regression when parsing invalid HTML tags in push mode
  Fix regression parsing public IDs literals in HTML
  Fix buffering in xmlOutputBufferWrite
  Fix whitespace when serializing empty HTML documents
  Fix XPath recursion limit
  Fix regression in xmlNodeDumpOutputInternal
  Work around lxml API abuse

   - Bug fixes:
  Fix xmlSetTreeDoc with entity references
  Fix double counting of CRLF in comments
  Make sure to grow input buffer in xmlParseMisc
  Don't ignore xmllint options after "-"
  Don't normalize namespace URIs in XPointer xmlns() scheme
  Fix handling of XSD with empty namespace
  Also register HTML document nodes
  Make xmllint return an error if arguments are missing
  Fix handling of ctxt->base in xmlXPtrEvalXPtrPart
  Fix xmllint --maxmem
  Fix htmlReadFd, which was using a mix of xml and html context functions (Finn Barber)
  Move current position before possible calling of ctxt->sax->characters (Yulin Li)
  Fix parse failure when 4-byte character in UTF-16 BE is split across a chunk (David Kilzer)
  Patch to forbid epsilon-reduction of final states (Arne Becker)
  Avoid segfault at exit when using custom memory functions (Mike Dalessio)

   - Tests, code quality, fuzzing:
  Remove .travis.yml
  Make xmlFuzzReadString return a zero size in error case
  Fix unused function warning in testapi.c
  Update NewsML DTD in test suite
  Add more checks for malloc failures in xmllint.c
  Avoid potential integer overflow in xmlstring.c
  Run CI tests with UBSan implicit-conversion checks
  Fix casting of line numbers in SAX2.c
  Fix integer conversion warnings in hash.c
  Add explicit casts in runtest.c
  Fix integer conversion warning in xmlIconvWrapper
  Add suffix to unsigned constant in xmlmemory.c
  Add explicit casts in testchar.c
  Fix integer conversion warnings in xmlstring.c
  Add explicit cast in xmlURIUnescapeString
  Remove unused variable in xmlCharEncOutFunc (David King)

   - Build system, portability:
  Remove xmlwin32version.h
  Fix fuzzer test with VPATH build
  Support custom prefix when installing Python module
  Remove Makefile.win
  Remove CVS and SVN-related code
  Port python 3.x module to Windows and improve distutils (Chun-wei Fan)
  Correctly install the HTML examples into their subdirectory (Mattia Rizzolo)
  Refactor the settings of $docdir (Mattia Rizzolo)
  Remove unused configure checks (Ben Boeckel)
  python/Makefile.am: use *_LIBADD, not *_LDFLAGS for LIBS (Sam James)
  Fix check for libtool in autogen.sh
  Use version in configure.ac for CMake (Timothy Lyanguzov)
  Add CMake alias targets for embedded projects (Markus Rickert)

   - Documentation:
  Remove SVN keyword anchors
  Rework README
  Remove README.cvs-commits
  Remove old ChangeLog
  Update hyperlinks
  Remove README.docs
  Remove MAINTAINERS
  Remove xmltutorial.pdf
  Upload documentation to GitLab pages
  Document how to escape XML_CATALOG_FILES
  Fix libxml2.doap
  Update URL for libxml++ C++ binding (Kjell Ahlstedt)
  Generate devhelp2 index file (Emmanuele Bassi)
  Mention XML_CATALOG_FILES is space-separated (Jan Tojnar)
  Add documentaiton for xmllint exit code 10 (Rainer Canavan)
  Fix some validation errors in the FAQ (David King)
  Add instructions on how to use CMake to compile libxml (Markus Rickert)

Revision 1.46 / (download) - annotate - [select for diffs], Wed Nov 6 13:19:43 2019 UTC (4 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2, pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4
Changes since 1.45: +0 -1 lines
Diff to previous 1.45 (colored) to selected 1.39 (colored)

libxml2: update to 2.9.10.

This is a relatively large release, Nick fixed a number of bugs
and improved the code in many areas, among other things removing
some recursive behaviour of the code in various places. Includes
various portability fixes, documentation updates and cleanups:

Documentation:
- Fix a few more typos ("fonction") (Nick Wellnhofer)
- Large batch of typo fixes (Jared Yanovich)
- Fix typos: tree: move{ -> s}, reconcil{i -> }ed, h{o -> e}ld by... (Jan Pokorný)
- Fix typo: xpath: simpli{ -> fi}ed (Jan Pokorný)
- Doc: do not mislead towards "infeasible" scenario wrt. xmlBufNodeDump (Jan Pokorný)
- Fix comments in test code (zhouzhongyuan)
- fix comment in testReader.c (zhouzhongyuan)

Portability:
- Fix some release issues on Fedora 30 (Daniel Veillard)
- Fix exponent digits when running tests under old MSVC (Daniel Richard G)
- Work around buggy ceil() function on AIX (Daniel Richard G)
- Don't call printf with NULL string in runtest.c (Daniel Richard G)
- Switched from unsigned long to ptrdiff_t in parser.c (Stephen Chenney)
- timsort.h: support older GCCs (Jérôme Duval)
- Make configure.ac work with older pkg-config (Nick Wellnhofer)
- Stop defining _REENTRANT on some Win32 platforms (Nick Wellnhofer)
- Fix nanohttp.c on MinGW (Nick Wellnhofer)
- Fix Windows compiler warning in testC14N.c (Nick Wellnhofer)
- Merge testThreadsWin32.c into testThreads.c (Nick Wellnhofer)
- Fix Python bindings under Windows (Nick Wellnhofer)

Bug Fixes:
- Another fix for conditional sections at end of document (Nick Wellnhofer)
- Fix for conditional sections at end of document (Nick Wellnhofer)
- Make sure that Python tests exit with error code (Nick Wellnhofer)
- Audit memory error handling in xpath.c (Nick Wellnhofer)
- Fix error code in xmlTextWriterStartDocument (Nick Wellnhofer)
- Fix integer overflow when counting written bytes (Nick Wellnhofer)
- Fix uninitialized memory access in HTML parser (Nick Wellnhofer)
- Fix memory leak in xmlSchemaValAtomicType (Nick Wellnhofer)
- Disallow conditional sections in internal subset (Nick Wellnhofer)
- Fix use-after-free in xmlTextReaderFreeNodeList (Nick Wellnhofer)
- Fix Regextests (Nick Wellnhofer)
- Fix empty branch in regex (Nick Wellnhofer)
- Fix integer overflow in entity recursion check (Nick Wellnhofer)
- Don't read external entities or XIncludes from stdin (Nick Wellnhofer)
- Fix Schema determinism check of ##other namespaces (Nick Wellnhofer)
- Fix potential null deref in xmlSchemaIDCFillNodeTables (zhouzhongyuan)
- Fix potential memory leak in xmlBufBackToBuffer (Nick Wellnhofer)
- Fix error message when processing XIncludes with fallbacks (Nick Wellnhofer)
- Fix memory leak in xmlRegEpxFromParse (zhouzhongyuan)
- 14:00 is a valid timezone for xs:dateTime (Nick Wellnhofer)
- Fix memory leak in xmlParseBalancedChunkMemoryRecover (Zhipeng Xie)
- Fix potential null deref in xmlRelaxNGParsePatterns (Nick Wellnhofer)
- Misleading error message with xs:{min|max}Inclusive (bettermanzzy)
- Fix memory leak in xmlXIncludeLoadTxt (Wang Kirin)
- Partial fix for comparison of xs:durations (Nick Wellnhofer)
- Fix null deref in xmlreader buffer (zhouzhongyuan)
- Fix unability to RelaxNG-validate grammar with choice-based name class (Jan Pokorný)
- Fix unability to validate ambiguously constructed interleave for RelaxNG (Jan Pokorný)
- Fix possible null dereference in xmlXPathIdFunction (zhouzhongyuan)
- fix memory leak in xmlAllocOutputBuffer (zhouzhongyuan)
- Fix unsigned int overflow (Jens Eggerstedt)
- dict.h: gcc 2.95 doesn't allow multiple storage classes (Nick Wellnhofer)
- Fix another code path in xmlParseQName (Nick Wellnhofer)
- Make sure that xmlParseQName returns NULL in error case (Nick Wellnhofer)
- Fix build without reader but with pattern (Nick Wellnhofer)
- Fix memory leak in xmlAllocOutputBufferInternal error path (Nick Wellnhofer)
- Fix unsigned integer overflow (Nick Wellnhofer)
- Fix return value of xmlOutputBufferWrite (Nick Wellnhofer)
- Fix parser termination from "Double hyphen within comment" error (David Warring)
- Fix call stack overflow in xmlFreePattern (Nick Wellnhofer)
- Fix null deref in previous commit (Nick Wellnhofer)
- Fix memory leaks in xmlXPathParseNameComplex error paths (Nick Wellnhofer)
- Check for integer overflow in xmlXPtrEvalChildSeq (Nick Wellnhofer)
- Fix xmllint dump of XPath namespace nodes (Nick Wellnhofer)
- Fix float casts in xmlXPathSubstringFunction (Nick Wellnhofer)
- Fix null deref in xmlregexp error path (Nick Wellnhofer)
- Fix null pointer dereference in xmlTextReaderReadOuterXml (Nick Wellnhofer)
- Fix memory leaks in xmlParseStartTag2 error paths (Nick Wellnhofer)
- Fix memory leak in xmlSAX2StartElement (Nick Wellnhofer)
- Fix commit "Memory leak in xmlFreeID (xmlreader.c)" (Nick Wellnhofer)
- Fix NULL pointer deref in xmlTextReaderValidateEntity (Nick Wellnhofer)
- Memory leak in xmlFreeTextReader (Nick Wellnhofer)
- Memory leak in xmlFreeID (xmlreader.c) (Nick Wellnhofer)

Improvements:
- Run XML conformance tests under CI (Nick Wellnhofer)
- Update GitLab CI config (Nick Wellnhofer)
- Propagate memory errors in valuePush (Nick Wellnhofer)
- Propagate memory errors in xmlXPathCompExprAdd (Nick Wellnhofer)
- Make xmlFreeDocElementContent non-recursive (Nick Wellnhofer)
- Enable continuous integration via GitLab CI (Nick Wellnhofer)
- Avoid ignored attribute warnings under GCC (Nick Wellnhofer)
- Make xmlDumpElementContent non-recursive (Nick Wellnhofer)
- Make apibuild.py ignore ATTRIBUTE_NO_SANITIZE (Nick Wellnhofer)
- Mark xmlExp* symbols as removed (Nick Wellnhofer)
- Make xmlParseConditionalSections non-recursive (Nick Wellnhofer)
- Adjust expected error in Python tests (Nick Wellnhofer)
- Make xmlTextReaderFreeNodeList non-recursive (Nick Wellnhofer)
- Make xmlFreeNodeList non-recursive (Nick Wellnhofer)
- Make xmlParseContent and xmlParseElement non-recursive (Nick Wellnhofer)
- Remove executable bit from non-executable files (Nick Wellnhofer)
- Fix expected output of test/schemas/any4 (Nick Wellnhofer)
- Optimize build instructions in README (zhouzhongyuan)
- xml2-config.in: Output CFLAGS and LIBS on the same line (Hugh McMaster)
- xml2-config: Add a --dynamic switch to print only shared libraries (Hugh McMaster)
- Annotate functions with __attribute__((no_sanitize)) (Nick Wellnhofer)
- Fix warnings when compiling without reader or push parser (Nick Wellnhofer)
- Remove unused member `doc` in xmlSaveCtxt (Nick Wellnhofer)
- Limit recursion depth in xmlXPathCompOpEvalPredicate (Nick Wellnhofer)
- Remove -Wno-array-bounds (Nick Wellnhofer)
- Remove unreachable code in xmlXPathCountFunction (Nick Wellnhofer)
- Improve XPath predicate and filter evaluation (Nick Wellnhofer)
- Limit recursion depth in xmlXPathOptimizeExpression (Nick Wellnhofer)
- Disable hash randomization when fuzzing (Nick Wellnhofer)
- Optional recursion limit when parsing XPath expressions (Nick Wellnhofer)
- Optional recursion limit when evaluating XPath expressions (Nick Wellnhofer)
- Use break statements in xmlXPathCompOpEval (Nick Wellnhofer)
- Optional XPath operation limit (Nick Wellnhofer)
- Fix compilation with --with-minimum (Nick Wellnhofer)
- Check XPath stack after calling functions (Nick Wellnhofer)
- Remove debug printf in xmlreader.c (Nick Wellnhofer)
- Always define LIBXML_THREAD_ENABLED when enabled (Michael Haubenwallner)
- Regenerate NEWS (Nick Wellnhofer)
- Change git repo URL (Nick Wellnhofer)
- Change bug tracker URL (Nick Wellnhofer)
- Remove outdated HTML file (Nick Wellnhofer)
- Fix unused function warning in testapi.c (Nick Wellnhofer)
- Add some generated test files to .gitignore (Nick Wellnhofer)
- Remove unneeded function pointer casts (Nick Wellnhofer)
- Fix -Wcast-function-type warnings (GCC 8) (Nick Wellnhofer)
- Fix -Wformat-truncation warnings (GCC 8) (Nick Wellnhofer)

Cleanups:
- Rebuild docs (Nick Wellnhofer)
- Disable xmlExp regex code (Nick Wellnhofer)
- Remove redundant code in xmlRelaxNGValidateState (Nick Wellnhofer)
- Remove redundant code in xmlXPathCompRelationalExpr (Nick Wellnhofer)

  Thanks Nick and all who helped contribute to this release!

Revision 1.44.12.1 / (download) - annotate - [select for diffs], Mon Nov 3 19:39:07 2014 UTC (9 years, 5 months ago) by tron
Branch: pkgsrc-2014Q3
Changes since 1.44: +2 -1 lines
Diff to previous 1.44 (colored) next main 1.45 (colored) to selected 1.39 (colored)

Pullup ticket #4538 - requested by drochner
textproc/libxml2: security update
textproc/py-libxml2: security update

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.132-1.133
- textproc/libxml2/PLIST                                        1.45
- textproc/libxml2/distinfo                                     1.104-1.105
- textproc/libxml2/patches/patch-ba                             1.3
- textproc/libxml2/patches/patch-parser.c                       deleted
- textproc/libxml2/patches/patch-xzlib.c                        deleted
- textproc/py-libxml2/Makefile                                  1.50
- textproc/py-libxml2/distinfo                                  1.31
- textproc/py-libxml2/patches/patch-ab                          1.3
- textproc/py-libxml2/patches/patch-ac                          1.2
- textproc/py-libxml2/patches/patch-drv_libxml2.py              deleted

---
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Fri Oct 17 15:46:47 UTC 2014

   Modified Files:
           pkgsrc/textproc/libxml2: Makefile PLIST distinfo
   Removed Files:
           pkgsrc/textproc/libxml2/patches: patch-parser.c patch-xzlib.c

   Log Message:
   update to 2.9.2
   -security fixes:
    -Fix for CVE-2014-3660 billion laugh variant
    -CVE-2014-0191 Do not fetch external parameter entities (was patched
     in pkgsrc)
   -many bugfixes, doc fixes, cleanup
   -added cmake macro

---
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Mon Oct 20 19:11:23 UTC 2014

   Modified Files:
           pkgsrc/textproc/py-libxml2: Makefile distinfo
           pkgsrc/textproc/py-libxml2/patches: patch-ab patch-ac
   Removed Files:
           pkgsrc/textproc/py-libxml2/patches: patch-drv_libxml2.py

   Log Message:
   sync w/ base pkg

---
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Tue Oct 28 18:55:57 UTC 2014

   Modified Files:
           pkgsrc/textproc/libxml2: Makefile distinfo
   Added Files:
           pkgsrc/textproc/libxml2/patches: patch-ba

   Log Message:
   pull in two patches from upstream to fix regressions:
   -catalog initialization problem
   -problem with entity expansion
   This hopefully fixes build failures in KDE3 packages, reported by Joerg.
   bump PKGREV

Revision 1.45 / (download) - annotate - [select for diffs], Fri Oct 17 15:46:47 2014 UTC (9 years, 6 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1, pkgsrc-2014Q4-base, pkgsrc-2014Q4
Changes since 1.44: +2 -1 lines
Diff to previous 1.44 (colored) to selected 1.39 (colored)

update to 2.9.2
-security fixes:
 -Fix for CVE-2014-3660 billion laugh variant
 -CVE-2014-0191 Do not fetch external parameter entities (was patched
  in pkgsrc)
-many bugfixes, doc fixes, cleanup
-added cmake macro

Revision 1.44 / (download) - annotate - [select for diffs], Sun May 26 09:22:14 2013 UTC (10 years, 10 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base, pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2
Branch point for: pkgsrc-2014Q3
Changes since 1.43: +2 -1 lines
Diff to previous 1.43 (colored) to selected 1.39 (colored)

Changes 2.9.1:
Features:
Support for Python3,
Add xmlXPathSetContextNode and xmlXPathNodeEval

Documentation:
Add documentation for xmllint --xpath
Fix the URL of the SAX documentation from James
Fix spelling of "length"

Portability:
Fix python bindings with versions older than 2.7
rebuild docs:Makefile.am
elfgcchack.h after rebuild in doc
elfgcchack for buf module
Fix a uneeded and wrong extra link parameter
Few cleanup patches for Windows
Fix rpmbuild --nocheck
Fix for win32/configure.js and WITH_THREAD_ALLOC
Fix Broken multi-arch support in xml2-config
Fix a portability issue for GCC < 3.4.0
Windows build fixes
Fix a thread portability problem
Downgrade autoconf requirement to 2.63

Bug Fixes:
Fix a linking error for python bindings
Fix a couple of return without value
Improve the hashing functions
Improve handling of xmlStopParser()
Remove risk of lockup in dictionary initialization
Activate detection of encoding in external subset
Fix an output buffer flushing conversion bug
Fix an old bug in xmlSchemaValidateOneElement
Fix configure cannot remove messages
fix schema validation in combination with xsi:nil
xmlCtxtReadFile doesn't work with literal IPv6 URLs
Fix a few problems with setEntityLoader
Detect excessive entities expansion upon replacement
Fix the flushing out of raw buffers on encoding conversions
Fix some buffer conversion issues
When calling xmlNodeDump make sure we grow the buffer quickly
Fix an error in the progressive DTD parsing code
xmllint should not load DTD by default when using the reader
Try IBM-037 when looking for EBCDIC handlers
Fix potential out of bound access
Fix large parse of file from memory
Fix a bug in the nsclean option of the parser
Fix a regression in 2.9.0 breaking validation while streaming
Remove potential calls to exit()

Improvements:
Regenerated API, and testapi, rebuild documentation
Fix tree iterators broken by 2to3 script
update all tests for Python3 and Python2
A few more fixes for python 3 affecting libxml2.py
Fix compilation on Python3
Converting apibuild.py to python3
First pass at starting porting to python3
updated configure.in for python3
Add support for xpathRegisterVariable in Python
Added a regression tests from bug 694228 data
Cache presence of '<' in entities content
Avoid extra processing on entities
Python binding for xmlRegisterInputCallback
Python bindings: DOM casts everything to xmlNode
Define LIBXML_THREAD_ALLOC_ENABLED via xmlversion.h
Adding streaming validation to runtest checks
Add a --pushsmall option to xmllint

Cleanups:
Switched comment in file to UTF-8 encoding
Extend gitignore
Silent the new python test on input
Cleanup of a duplicate test
Cleanup on duplicate test expressions
Fix compiler warning after 153cf15905cf4ec080612ada6703757d10caba1e
Spec cleanups and a fix for multiarch support
Silence a clang warning
Cleanup the Copyright to be pure MIT Licence wording
rand_seed should be static in dict.c
Fix typos in parser comments

Revision 1.43 / (download) - annotate - [select for diffs], Sat Sep 15 10:23:38 2012 UTC (11 years, 7 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4, pkgsrc-2012Q3-base, pkgsrc-2012Q3
Changes since 1.42: +1 -2 lines
Diff to previous 1.42 (colored) to selected 1.39 (colored)

Changes 2.9.0:
Features:
* A few new API entry points,
* More resilient push parser mode,
* A lot of portability improvement,
* Faster XPath evaluation

Revision 1.42 / (download) - annotate - [select for diffs], Sun Jun 3 22:18:33 2012 UTC (11 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base, pkgsrc-2012Q2
Changes since 1.41: +2 -1 lines
Diff to previous 1.41 (colored) to selected 1.39 (colored)

Update to 2.8.0:

2.8.0: May 23 2012

    Features: - add lzma compression support (Anders F Bjorklund)

    Documentation: xmlcatalog: Add uri and delegateURI to possible
    add types in man page. (Ville Skyttä), Update README.tests
    (Daniel Veillard), URI handling code is not OOM resilient
    (Daniel Veillard), Fix an error in comment (Daniel Veillard),
    Fixed bug #617016 (Daniel Mustieles), Fixed two typos in the
    README document (Daniel Neel), add generated html files (Anders
    F Bjorklund), Clarify the need to use xmlFreeNode after
    xmlUnlinkNode (Daniel Veillard), Improve documentation a bit
    (Daniel Veillard), Updated URL for lxml python bindings (Daniel
    Veillard)

    Portability: Restore code for Windows compilation (Daniel
    Veillard), Remove git error message during configure (Christian
    Dywan), xmllint: Build fix for endTimer if !defined(HAVE_GETTIMEOFDAY)
    (Patrick R. Gansterer), remove a bashism in confgure.in (John
    Hein), undef ERROR if already defined (Patrick R. Gansterer),
    Fix library problems with mingw-w64 (Michael Cronenworth), fix
    windows build. ifdef addition from bug 666491 makes no sense
    (Rob Richards), prefer native threads on win32 (Sam Thursfield),
    Allow to compile with Visual Studio 2010 (Thomas Lemm), Fix
    mingw's snprintf configure check (Andoni Morales), fixed a
    64bit big endian issue (Marcus Meissner), Fix portability
    failure if netdb.h lacks NO_ADDRESS (Daniel Veillard), Fix
    windows build from lzma addition (Rob Richards), autogen: Only
    check for libtoolize (Colin Walters), Fix the Windows build
    files (Patrick von Reth), 634846 Remove a linking option breaking
    Windows VC10 (Daniel Veillard), 599241 fix an initialization
    problem on Win64 (Andrew W. Nosenko), fix win build (Rob
    Richards)

    Bug fixes: Part for rand_r checking missing (Daniel Veillard),
    Cleanup on randomization (Daniel Veillard), Fix undefined
    reference in python module (Pacho Ramos), Fix a race in
    xmlNewInputStream (Daniel Veillard), Fix weird streaming RelaxNG
    errors (Noam), Fix various bugs in new code raised by the API
    checking (Daniel Veillard), Fix various problems with "make
    dist" (Daniel Veillard), Fix a memory leak in the xzlib code
    (Daniel Veillard), HTML parser error with <noscript> in the
    <head> (Denis Pauk), XSD: optional element in complex type
    extension (Remi Gacogne), Fix html serialization error and
    htmlSetMetaEncoding() (Daniel Veillard), Fix a wrong return
    value in previous patch (Daniel Veillard), Fix an uninitialized
    variable use (Daniel Veillard), Fix a compilation problem with
    --minimum (Brandon Slack), Remove redundant and ungarded include
    of resolv.h (Daniel Veillard), xinclude with parse="text" does
    not use the entity loader (Shaun McCance), Allow to parse 1
    byte HTML files (Denis Pauk), Patch that fixes the skipping of
    the HTML_PARSE_NOIMPLIED flag (Martin Schröder), Avoid memory
    leak if xmlParserInputBufferCreateIO fails (Lin Yi-Li), Prevent
    an infinite loop when dumping a node with encoding problems
    (Timothy Elliott), xmlParseNodeInContext problems with an empty
    document (Tim Elliott), HTML element position is not detected
    propperly (Pavel Andrejs), Fix an off by one pointer access
    (Jüri Aedla), Try to fix a problem with entities in SAX mode
    (Daniel Veillard), Fix a crash with xmllint --path on empty
    results (Daniel Veillard), Fixed bug #667946 (Daniel Mustieles),
    Fix a logic error in Schemas Component Constraints (Ryan Sleevi),
    Fix a wrong enum type use in Schemas Types (Nico Weber), Fix
    SAX2 builder in case of undefined attributes namespace (Daniel
    Veillard), Fix SAX2 builder in case of undefined element
    namespaces (Daniel Veillard), fix reference to STDOUT_FILENO
    on MSVC (Tay Ray Chuan), fix a pair of possible out of array
    char references (Daniel Veillard), Fix an allocation error when
    copying entities (Daniel Veillard), Make sure the parser returns
    when getting a Stop order (Chris Evans), Fix some potential
    problems on reallocation failures(parser.c) (Xia Xinfeng), Fix
    a schema type duration comparison overflow (Daniel Veillard),
    Fix an unimplemented part in RNG value validation (Daniel
    Veillard), Fix missing error status in XPath evaluation (Daniel
    Veillard), Hardening of XPath evaluation (Daniel Veillard),
    Fix an off by one error in encoding (Daniel Veillard), Fix
    RELAX NG include bug #655288 (Shaun McCance), Fix XSD validation
    bug #630130 (Toyoda Eizi), Fix some potential problems on
    reallocation failures (Chris Evans), __xmlRaiseError: fix use
    of the structured callback channel (Dmitry V. Levin),
    __xmlRaiseError: fix the structured callback channel's data
    initialization (Dmitry V. Levin), Fix memory corruption when
    xmlParseBalancedChunkMemoryInternal is called from
    xmlParseBalancedChunk (Rob Richards), Small fix for previous
    commit (Daniel Veillard), Fix a potential freeing error in
    XPath (Daniel Veillard), Fix a potential memory access error
    (Daniel Veillard), Reactivate the shared library versionning
    script (Daniel Veillard)

    Improvements: use mingw C99 compatible functions {v}snprintf
    instead those from MSVC runtime (Roumen Petrov), New symbols
    added for the next release (Daniel Veillard), xmlTextReader
    bails too quickly on error (Andy Lutomirski), Use a hybrid
    allocation scheme in xmlNodeSetContent (Conrad Irwin), Use
    buffers when constructing string node lists. (Conrad Irwin),
    Add HTML parser support for HTML5 meta charset encoding
    declaration (Denis Pauk), wrong message for double hyp"whereis"
    command to xmllint shell (Ryan), Improve xmllint shell (Ryan),
    add function xmlTextReaderRelaxNGValidateCtxt() (Noam Postavsky),
    Add --system support to autogen.sh (Daniel Veillard), Add hash
    randomization to hash and dict structures (Daniel Veillard),
    included xzlib in dist (Anders F Bjorklund), move xz/lzma
    helpers to separate included files (Anders F Bjorklund), add
    generated devhelp files (Anders F Bjorklund), add XML_WITH_LZMA
    to api (Anders F Bjorklund), autogen.sh: Honor NOCONFIGURE
    environment variable (Colin Walters), Improve the error report
    on undefined REFs (Daniel Veillard), Add exception for new W3C
    PI xml-model (Daniel Veillard), Add options to ignore the
    internal encoding (Daniel Veillard), testapi: use the right
    type for the check (Stefan Kost), various: handle return values
    of write calls (Stefan Kost), testWriter:
    xmlTextWriterWriteFormatElement wants an int instead of a long
    int (Stefan Kost), runxmlconf: update to latest testsuite
    version (Stefan Kost), configure: add -Wno-long-long to CFLAGS
    (Stefan Kost), configure: support silent automake rules if
    possible (Stefan Kost), xmlmemory: add a cast as size_t has no
    portable printf modifier (Stefan Kost), __xmlRaiseError: remove
    redundant schannel initialization (Dmitry V. Levin), __xmlRaiseError:
    do cheap code check early (Dmitry V. Levin)

    Cleanups: Cleanups before 2.8.0-rc2 (Daniel Veillard), Avoid
    an extra operation (Daniel Veillard), Remove vestigial
    de-ANSI-fication support. (Javier Jardón), autogen.sh: Fix
    typo (Javier Jardón), Do not use unsigned but unsigned int
    (Daniel Veillard), Remove two references to u_short (Daniel
    Veillard), Fix -Wempty-body warning from clang (Nico Weber),
    Cleanups of lzma support (Daniel Veillard), Augment the list
    of ignored files (Daniel Veillard), python: remove unused
    variable (Stefan Kost), python: flag two unused args (Stefan
    Kost), configure: acconfig.h is deprecated since autoconf-2.50
    (Stefan Kost), xpath: remove unused variable (Stefan Kost)

Revision 1.41 / (download) - annotate - [select for diffs], Sun Jun 14 18:17:21 2009 UTC (14 years, 10 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2
Changes since 1.40: +1 -11 lines
Diff to previous 1.40 (colored) to selected 1.39 (colored)

Remove @dirrm entries from PLISTs

Revision 1.40 / (download) - annotate - [select for diffs], Thu May 3 13:19:00 2007 UTC (16 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, pkgsrc-2008Q1-base, pkgsrc-2008Q1, pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, cwrapper, cube-native-xorg-base, cube-native-xorg
Changes since 1.39: +2 -1 lines
Diff to previous 1.39 (colored)

Update to 2.6.28:

2.6.28: Apr 17 2007:
   - Documentation: comment fixes (Markus Keim), xpath comments fixes too
      (James Dennett)
   - Bug fixes: XPath bug (William Brack), HTML parser autoclose stack usage
      (Usamah Malik), various regexp bug fixes (DV and William), path conversion
      on Windows (Igor Zlatkovic), htmlCtxtReset fix (Michael Day), XPath
      principal node of axis bug, HTML serialization of some codepoint
      (Steven Rainwater), user data propagation in XInclude (Michael Day),
      standalone and XML decl detection (Michael Day), Python id ouptut
      for some id, fix the big python string memory leak, URI parsing fixes
      (Stéphane Bidoul and William), long comments parsing bug (William),
      concurrent threads initialization (Ted Phelps), invalid char
      in text XInclude (William), XPath memory leak (William), tab in
      python problems (Andreas Hanke), XPath node comparison error
      (Oleg Paraschenko), cleanup patch for reader (Julien Reichel),
      XML Schemas attribute group (William), HTML parsing problem (William),
      fix char 0x2d in regexps (William), regexp quantifier range with
      min occurs of 0 (William), HTML script/style parsing (Mike Day)
   - Improvement: make xmlTextReaderSetup() public
   - Compilation and postability: fix a missing include problem (William),
      __ss_familly on AIX again (Björn Wiberg), compilation without zlib
      (Michael Day), catalog patch for Win32 (Christian Ehrlicher),
      Windows CE fixes (Andreas Stricke)
   - Various CVS to SVN infrastructure changes

Revision 1.39 / (download) - annotate - [selected], Mon Oct 30 20:57:30 2006 UTC (17 years, 5 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2007Q1-base, pkgsrc-2007Q1, pkgsrc-2006Q4-base, pkgsrc-2006Q4
Changes since 1.38: +56 -56 lines
Diff to previous 1.38 (colored)

update to 2.6.27
changes:
-XPath improvements
-optimization / caching
-build and portability fixes
-bugfixes
-documentation improvements

pkgsrc change: seperate user doc and devhelp files - migrate the latter
to share/gtk-doc/html

Revision 1.38 / (download) - annotate - [select for diffs], Mon May 15 08:27:32 2006 UTC (17 years, 11 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2
Changes since 1.37: +33 -2 lines
Diff to previous 1.37 (colored) to selected 1.39 (colored)

Always install documentation files.  Previously they were installed on
Linux but not on NetBSD because the install command works differently
when a wild card matching fails.

Bump PKGREVISION.

Revision 1.37 / (download) - annotate - [select for diffs], Fri Sep 30 19:58:00 2005 UTC (18 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1, pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.36: +176 -121 lines
Diff to previous 1.36 (colored) to selected 1.39 (colored)

Update to 2.6.22:

2.6.22: Sep 12 2005:
   - build fixes: compile without schematron (Stéphane Bidoul)
   - bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i,
      CDATA push parser bug, xmlElemDump problem with XHTML1 doc,
      XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx,
      fix some output formatting for meta element (Rob Richards),
      script and style XHTML1 serialization (David Madore), Attribute
      derivation fixups in XSD (Kasimier Buchcik), better IDC error
      reports (Kasimier Buchcik)

   - improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards),
      add XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements
      preparing for derive (Kasimier Buchcik).
   - documentation: generation of gtk-doc like docs, integration with
      devhelp.

pkgsrc change: install docs into share/doc instead of share/doc/html.

Ok'd by maintainer, recht.

Revision 1.36 / (download) - annotate - [select for diffs], Mon Sep 5 07:37:50 2005 UTC (18 years, 7 months ago) by recht
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q3
Changes since 1.35: +2 -0 lines
Diff to previous 1.35 (colored) to selected 1.39 (colored)

update tp 2.6.21

2.6.21: Sep 4 2005:
   - build fixes: Cygwin portability fixes (Gerrit P. Haase), calling
      convention problems on Windows (Marcus Boerger), cleanups based on
      Linus' sparse tool, update of win32/configure.js (Rob Richards),
      remove warnings on Windows(Marcus Boerger), compilation without SAX1,
      detection of the Python binary, use $GCC inestad of $CC = 'gcc' (Andrew
      W. Nosenko), compilation/link with threads and old gcc, compile
      problem by C370 on Z/OS,
   - bug fixes: http_proxy environments (Peter Breitenlohner), HTML UTF-8
      bug (Jiri Netolicky), XPath NaN compare bug (William Brack),
      htmlParseScript potential bug, Schemas regexp handling of spaces,
      Base64 Schemas comparisons NIST passes, automata build error xsd:all,
      xmlGetNodePath for namespaced attributes (Alexander Pohoyda),
      xmlSchemas foreign namespaces handling, XML Schemas facet comparison
      (Kupriyanov Anatolij), xmlSchemaPSimpleTypeErr error report (Kasimier
      Buchcik), xml: namespace ahndling in Schemas (Kasimier), empty model
      group in Schemas (Kasimier), wilcard in Schemas (Kasimier), URI
      composition (William), xs:anyType in Schemas (Kasimier), Python resolver
      emmitting error messages directly, Python xmlAttr.parent (Jakub Piotr
      Clapa), trying to fix the file path/URI conversion,
      xmlTextReaderGetAttribute fix (Rob Richards), xmlSchemaFreeAnnot memleak
      (Kasimier), HTML UTF-8 serialization, streaming XPath, Schemas determinism
      detection problem, XInclude bug, Schemas context type (Dean Hill),
      validation fix (Derek Poon), xmlTextReaderGetAttribute[Ns] namespaces
      (Rob Richards), Schemas type fix (Kuba Nowakowski), UTF-8 parser bug,
      error in encoding handling, xmlGetLineNo fixes, bug on entities handling,
      entity name extraction in error handling with XInclude, text nodes
      in HTML body tags (Gary Coady), xml:id and IDness at the treee level
      fixes, XPath streaming patterns bugs.
   - improvements: structured interfaces for schemas and RNG error reports
      (Marcus Boerger), optimization of the char data inner loop parsing
      (thanks to Behdad Esfahbod for the idea), schematron validation
      though not finished yet, xmlSaveOption to omit XML declaration,
      keyref match error reports (Kasimier), formal expression handling
      code not plugged yet, more lax mode for the HTML parser,
      parser XML_PARSE_COMPACT option for text nodes allocation.
   - documentation: xmllint man page had --nonet duplicated

Revision 1.35 / (download) - annotate - [select for diffs], Sun Jan 16 22:28:34 2005 UTC (19 years, 3 months ago) by recht
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base, pkgsrc-2005Q2, pkgsrc-2005Q1-base, pkgsrc-2005Q1
Changes since 1.34: +3 -1 lines
Diff to previous 1.34 (colored) to selected 1.39 (colored)

update to 2.6.17

This release includes a lot of fixes and improvement to existing
features plus a few new APIs:

* build fixes:
 - Windows
 - warnings removal (William Brack)
 - maintainer-clean dependency(William)
 - build in a different directory (William)
 - fixing --with-minimum configure build (William)
 - BeOS build (Marcin Konicki)
 - compilation on AIX (Dan McNichol)
* bug fixes:
 - xmlTextReaderHasAttributes (Rob Richards)
 - xmlCtxtReadFile() to use the catalog(s)
 - loop on output (William Brack)
 - XPath memory leak
 - ID deallocation problem (Steve Shepard)
 - debugDumpNode crash (William)
 - warning not using error callback (William)
 - xmlStopParser bug (William)
 - UTF-16 with BOM on DTDs (William)
 - namespace bug on empty elements in push mode (Rob Richards)
 - line and col computations fixups (Aleksey Sanin)
 - xmlURIEscape fix (William)
 - xmlXPathErr on bad range (William)
 - patterns with too many steps
 - bug in RNG choice optimization
 - line number sometimes missing.
* improvements:
 - XSD Schemas (Kasimier Buchcik)
 - xmlUTF8Strpos speedup (William)
 - XSD error reports (Kasimier Buchcik)
* new APIs:
 - added xmlDictExists()
 - GetLineNumber and GetColumnNumber for the xmlReader (Aleksey Sanin)
 - Dynamic Shared Libraries APIs (mostly Joel Reed)
 - error extraction API from regexps
 - new XMLSave option for format (Phil Shafer)
* documentation:
 - site improvement (John Fleck), FAQ entries (William).

Revision 1.33.2.1 / (download) - annotate - [select for diffs], Tue Nov 30 00:04:43 2004 UTC (19 years, 4 months ago) by salo
Branch: pkgsrc-2004Q3
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored) next main 1.34 (colored) to selected 1.39 (colored)

Pullup ticket 159 - requested by Havard Eidnes
security fix for libxml2

        Module Name:    pkgsrc
        Committed By:   xtraeme
        Date:           Thu Oct 21 05:28:17 UTC 2004

        Modified Files:
                pkgsrc/doc: CHANGES TODO
                pkgsrc/textproc/libxml2: Makefile distinfo

        Log Message:
        Update textproc/libxml2 to 2.6.14, this is a bugfix release.
---
        Module Name:    pkgsrc
        Committed By:   recht
        Date:           Sun Oct 31 10:40:51 UTC 2004

        Modified Files:
                pkgsrc/textproc/libxml2: Makefile buildlink3.mk distinfo
                pkgsrc/textproc/libxml2/patches: patch-aa patch-ab

        Log Message:
        update to libxml2-2.6.15

        changes:

        * security fixes on the nanoftp and nanohttp modules
        For details see:
        http://www.securityfocus.com/archive/1/379383/2004-10-24/2004-10-30/0

        * build fixes:
          - xmllint detection bug in configure
          - building outside the source tree (Thomas Fitzsimmons)
        * bug fixes:
          - HTML parser on broken ASCII chars in names (William)
          - Python paths (Malcolm Tredinnick)
          - xmlHasNsProp and default namespace (William)
          - saving to python file objects (Malcolm Tredinnick)
          - DTD lookup fix (Malcolm)
          - save back <group> in catalogs (William)
          - tree build fixes (DV and Rob Richards)
          - Schemas memory bug
          - structured error handler on Python 64bits
          - thread local memory deallocation
          - memory leak reported by Volker Roth
          - xmlValidateDtd in the presence of an internal subset
          - entities and _private problem (William)
          - xmlBuildRelativeURI error (William).
        * improvements:
          - better XInclude error reports (William)
          - tree debugging module and tests
          - convenience functions at the Reader API (Graham Bennett)
          - add support for PI in the HTML parser.

        Update BUILDLINK_RECOMMENDED to 2.6.15 for the security fix.
---
        Module Name:    pkgsrc
        Committed By:   minskim
        Date:           Wed Nov  3 16:41:56 UTC 2004

        Modified Files:
                pkgsrc/textproc/py-libxml2: Makefile distinfo

        Log Message:
        Sync with libxml2-2.6.15.

        Changes since 2.6.12:
           - saving to python file objects (Malcolm Tredinnick)
           - structured error handler on Python 64bits
           - Python space/tabs cleanups
           - Python libxml2 driver improvement
---
        Module Name:    pkgsrc
        Committed By:   recht
        Date:           Thu Nov 11 21:01:15 UTC 2004

        Modified Files:
                pkgsrc/textproc/libxml2: Makefile distinfo
                pkgsrc/textproc/libxml2/patches: patch-aa patch-ab

        Log Message:
        update to 2.6.16

        2.6.16: Nov 10 2004:
           - general hardening and bug fixing crossing all the API based on
             new automated regression testing
           - build fix: IPv6 build and test on AIX (Dodji Seketeli)
           - bug fixes: problem with XML::Libxml reported by Petr Pajas,
             encoding conversion functions return values, UTF-8 bug affecting
             XPath reported by Markus Bertheau, catalog problem with NULL
             entries (William Brack)
           - documentation: fix to xmllint man page, some API function
             descritpion were updated.
           - improvements: DTD validation APIs provided at the Python level
             (Brent Hendricks)
---
        Module Name:    pkgsrc
        Committed By:   minskim
        Date:           Thu Nov 25 18:37:43 UTC 2004

        Modified Files:
                pkgsrc/textproc/py-libxml2: Makefile distinfo
                pkgsrc/textproc/py-libxml2/patches: patch-aa

        Log Message:
        Update py-libxml2 to 2.6.16.

        Changes:
          - improvements: DTD validation APIs provided at the Python level.

Revision 1.34 / (download) - annotate - [select for diffs], Wed Sep 22 08:09:55 2004 UTC (19 years, 7 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.33: +1 -5 lines
Diff to previous 1.33 (colored) to selected 1.39 (colored)

Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:

	lib/libfoo.a
	lib/libfoo.la
	lib/libfoo.so
	lib/libfoo.so.0
	lib/libfoo.so.0.1

one simply needs:

	lib/libfoo.la

and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.

Also make LIBTOOLIZE_PLIST default to "yes".

Revision 1.33 / (download) - annotate - [select for diffs], Thu Sep 2 11:13:27 2004 UTC (19 years, 7 months ago) by jmmv
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base
Branch point for: pkgsrc-2004Q3
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored) to selected 1.39 (colored)

Update to 2.6.13:

   - build fixes: Windows and zlib (Igor Zlatkovic), -O flag with gcc,
    Solaris compiler warning, fixing RPM BuildRequires,
   - fixes: DTD loading on Windows (Igor), Schemas error reports APIs
    (Kasimier Buchcik), Schemas validation crash, xmlCheckUTF8 (William Brack
    and Julius Mittenzwei), Schemas facet check (Kasimier), default namespace
    problem (William), Schemas hexbinary empty values, encoding error could
    genrate a serialization loop.
   - Improvements: Schemas validity improvements (Kasimier), added --path
    and --load-trace options to xmllint
   - documentation: tutorial update (John Fleck)

Revision 1.32 / (download) - annotate - [select for diffs], Tue Aug 24 11:39:01 2004 UTC (19 years, 7 months ago) by drochner
Branch: MAIN
Changes since 1.31: +2 -2 lines
Diff to previous 1.31 (colored) to selected 1.39 (colored)

update to 2.6.12
changes:
-improvements: DocBook catalog build scrip (William), xmlcatalog tool
 (Albert Chin), xmllint --c14n option, no_proxy environment (Mike Hommey),
 xmlParseInNodeContext() addition, extend xmllint --shell, allow XInclude
 to not generate start/end nodes, extend xmllint --version to include
 CVS tag (William)
+bugfixes

Revision 1.29.2.1 / (download) - annotate - [select for diffs], Thu Jul 15 19:33:08 2004 UTC (19 years, 9 months ago) by agc
Branch: pkgsrc-2004Q2
Changes since 1.29: +30 -1 lines
Diff to previous 1.29 (colored) next main 1.30 (colored) to selected 1.39 (colored)

Pullup ticket 59 to the pkgsrc-2004Q2 branch, requested by Grant Beattie.

Fix for libxml2 on the branch. No corresponding commit to the trunk, as
the package has been updated to a newer version on the trunk.

Revision 1.31 / (download) - annotate - [select for diffs], Tue Jul 6 13:52:25 2004 UTC (19 years, 9 months ago) by xtraeme
Branch: MAIN
Changes since 1.30: +2 -2 lines
Diff to previous 1.30 (colored) to selected 1.39 (colored)

Update textproc/libxml2 to 2.6.11.

2.6.11: July 5 2004:
   - Schemas: a lot of changes and improvements by Kasimier Buchcik for
    attributes, namespaces and simple types.
   - build fixes: --with-minimum (William Brack),  some gcc cleanup
    (William), --with-thread-alloc (William)
   - portability: Windows binary package change (Igor Zlatkovic), Catalog
    path on Windows
   - documentation: update to the tutorial (John Fleck), xmllint return code
    (John Fleck), man pages (Ville Skytta),
   - bug fixes: C14N bug serializing namespaces (Aleksey Sanin), testSAX
    properly initialize the library (William), empty node set in XPath
    (William), xmlSchemas errors (William), invalid charref problem pointed
    by Morus Walter, XInclude xml:base generation (William), Relax-NG bug
    with div processing (William), XPointer and xml:base problem(William),
    Reader and entities, xmllint return code for schemas (William), reader
    streaming problem (Steve Ball), DTD serialization problem (William),
    libxml.m4 fixes (Mike Hommey), do not provide destructors as methods on
    Python classes, xmlReader buffer bug, Python bindings memory interfaces
    improvement (with Stéphane Bidoul), Fixed the push parser to be back to
    synchronous behaviour.
   - improvement: custom per-thread I/O enhancement (Rob Richards), register
    namespace in debug shell (Stefano Debenedetti), Python based regression
    test for non-Unix users (William), dynamically increase the number of
    XPath extension functions in Python and fix a memory leak (Marc-Antoine
    Parent and William)
   - performance: hack done with Arjan van de Ven to reduce ELF footprint
    and generated code on Linux, plus use gcc runtime profiling to optimize
    the code generated in the RPM packages.

Revision 1.30 / (download) - annotate - [select for diffs], Thu Jul 1 15:14:03 2004 UTC (19 years, 9 months ago) by recht
Branch: MAIN
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored) to selected 1.39 (colored)

update to 2.6.10 and take maintainership
use xmlsoft's FTP since GNOME's hasn't got this version

2.6.10: May 17 2004

- build fixes: --without-html problems, make check without make all
- portability: problem with xpath.c on Windows (MSC and Borland), memcmp
  vs. strncmp on Solaris, XPath tests on Windows (Mark Vakoc), C++
  do not use "list" as parameter name, make tests work with Python 1.5
  (Ed Davis),
- improvements: made xmlTextReaderMode public, small buffers resizing
  (Morten Welinder), add --maxmem option to xmllint, add
  xmlPopInputCallback() for Matt Sergeant, refactoring of
  serialization escaping, added escaping customization
- bugfixes: xsd:extension (Taihei Goi), assorted regexp bugs
  (William Brack), xmlReader end of stream problem, node deregistration with
  reader, URI escaping and filemanes, XHTML1 formatting (Nick Wellnhofer),
  regexp transition reduction (William), various XSD Schemas fixes (Kasimier
  Buchcik), XInclude fallback problem (William), weird problems with DTD
  (William), structured error handler callback context (William), reverse
  xmlEncodeSpecialChars() behaviour back to escaping '"'

Revision 1.29 / (download) - annotate - [select for diffs], Mon Apr 19 14:24:57 2004 UTC (20 years ago) by jmmv
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base
Branch point for: pkgsrc-2004Q2
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored) to selected 1.39 (colored)

Update to 2.6.9:
- implement xml:id Working Draft, relaxed XPath id() checking
- bugfixes: xmlCtxtReset (Brent Hendricks), line number and CDATA (Dave
  Beckett), Relax-NG compilation (William Brack), Regexp patches (with
  William), xmlUriEscape (Mark Vakoc), a Relax-NG notAllowed problem (with
  William), Relax-NG name classes compares (William), XInclude duplicate
  fallback (William), external DTD encoding detection (William), a DTD
  validation bug (William), xmlReader Close() fix, recusive extention
  schemas
- improvements: use xmlRead* APIs in test tools (Mark Vakoc), indenting
  save optimization, better handle IIS broken HTTP redirect  behaviour (Ian
  Hummel), HTML parser frameset (James Bursa), libxml2-python RPM
  dependancy, XML Schemas union support (Kasimier Buchcik), warning removal
  clanup (William), keep ChangeLog compressed when installing from RPMs
- documentation: examples and xmlDocDumpMemory docs (John Fleck), new
  example (load, xpath, modify, save), xmlCatalogDump() comments,
- Windows: Borland C++ builder (Eric Zurcher), work around Microsoft
  compiler NaN handling bug (Mark Vakoc)

Revision 1.28 / (download) - annotate - [select for diffs], Sun Mar 28 21:31:46 2004 UTC (20 years ago) by jmmv
Branch: MAIN
Changes since 1.27: +6 -4 lines
Diff to previous 1.27 (colored) to selected 1.39 (colored)

Update to 2.6.8:

2.6.8: Mar 23 2004:
   - First step of the cleanup of the serialization code and APIs
   - XML Schemas: mixed content (Adam Dickmeiss), QName handling fixes (Adam
    Dickmeiss), anyURI for "" (John Belmonte)
   - Python: Canonicalization C14N support added (Anthony Carrico)
   - xmlDocCopyNode() extension (William)
   - Relax-NG: fix when processing XInclude results (William), external
    reference in interleave (William), missing error on <choice>
    failure (William), memory leak in schemas datatype facets.
   - xmlWriter: patch for better DTD support (Alfred Mickautsch)
   - bug fixes: xmlXPathLangFunction memory leak (Mike Hommey and William
    Brack), no ID errors if using HTML_PARSE_NOERROR, xmlcatalog fallbacks to
    URI on SYSTEM lookup failure, XInclude parse flags inheritance (William),
    XInclude and XPointer fixes for entities (William), XML parser bug
    reported by Holger Rauch, nanohttp fd leak (William),  regexps char
    groups '-' handling (William), dictionnary reference counting problems,
    do not close stderr.
   - performance patches from Petr Pajas
   - Documentation fixes: XML_CATALOG_FILES in man pages (Mike Hommey)
   - compilation and portability fixes: --without-valid, catalog cleanups
    (Peter Breitenlohner), MingW patch (Roland Schwingel), cross-compilation
    to Windows (Christophe de Vienne),  --with-html-dir fixup (Julio Merino
    Vidal), Windows build (Eric Zurcher)

Revision 1.27 / (download) - annotate - [select for diffs], Mon Feb 23 21:49:05 2004 UTC (20 years, 2 months ago) by xtraeme
Branch: MAIN
CVS Tags: pkgsrc-2004Q1-base, pkgsrc-2004Q1
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (colored) to selected 1.39 (colored)

Upgrade libxml2 to 2.6.7.

2.6.7: Feb 23 2004:
   - documentation: tutorial updates (John Fleck), benchmark results
   - xmlWriter: updates and fixes (Alfred Mickautsch, Lucas Brasilino)
   - XPath optimization (Petr Pajas)
   - DTD ID handling optimization
   - bugfixes: xpath number with  > 19 fractional (William Brack), push
    mode with unescaped '>' characters, fix xmllint --stream --timing, fix
    xmllint --memory --stream memory usage, xmlAttrSerializeTxtContent
    handling NULL, trying to fix Relax-NG/Perl interface.
   - python: 2.3 compatibility, whitespace fixes (Malcolm Tredinnick)
   - Added relaxng option to xmllint --shell

Revision 1.26 / (download) - annotate - [select for diffs], Thu Feb 12 22:18:13 2004 UTC (20 years, 2 months ago) by xtraeme
Branch: MAIN
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored) to selected 1.39 (colored)

Upgrade libxml2 to 2.6.6.

Changes:

2.6.6: Feb 12 2004:
   - nanohttp and nanoftp: buffer overflow error on URI parsing (Igor and
    William) reported by Yuuichi Teranishi
   - bugfixes: make test and path issues, xmlWriter attribute serialization
    (William Brack), xmlWriter indentation (William), schemas validation
    (Eric Haszlakiewicz), XInclude dictionnaries issues (William and Oleg
    Paraschenko), XInclude empty fallback (William), HTML warnings (William),
    XPointer in XInclude (William), Python namespace serialization,
    isolat1ToUTF8 bound error (Alfred Mickautsch), output of parameter
    entities in internal subset (William), internal subset bug in push mode,
    <xs:all> fix (Alexey Sarytchev)
   - Build: fix for automake-1.8 (Alexander Winston), warnings removal
    (Philip Ludlam), SOCKLEN_T detection fixes (Daniel Richard), fix
    --with-minimum configuration.
   - XInclude: allow the 2001 namespace without warning.
   - Documentation: missing example/index.html (John Fleck), version
    dependancies (John Fleck)
   - reader API: structured error reporting (Steve Ball)
   - Windows compilation: mingw, msys (Mikhail Grushinskiy), function
    prototype (Cameron Johnson), MSVC6 compiler warnings, _WINSOCKAPI_
  patch
   - Parsers: added xmlByteConsumed(ctxt) API to get the byte offest in
    input.

Revision 1.25 / (download) - annotate - [select for diffs], Sat Jan 31 22:13:52 2004 UTC (20 years, 2 months ago) by xtraeme
Branch: MAIN
Changes since 1.24: +4 -2 lines
Diff to previous 1.24 (colored) to selected 1.39 (colored)

Update to 2.6.5, provided by Min Sik Kim in PR pkg/24271.

Changes:

   - Bugfixes: dictionnaries for schemas (William Brack), regexp segfault
    (William), xs:all problem (William), a number of XPointer bugfixes
    (William), xmllint error go to stderr, DTD validation problem with
    namespace, memory leak (William), SAX1 cleanup and minimal options fixes
    (Mark Vadoc), parser context reset on error (Shaun McCance), XPath union
    evaluation problem (William) , xmlReallocLoc with NULL (Aleksey Sanin),
    XML Schemas double free (Steve Ball), XInclude with no href, argument
    callbacks order for XPath callbacks (Frederic Peters)
   - Documentation: python scripts (William Brack), xslt stylesheets (John
    Fleck), doc (Sven Zimmerman), I/O example.
   - XInclude: various fixes for conformance, problem related to dictionnary
    references (William & me), recursion (William)
   - xmlWriter: indentation (Lucas Brasilino), memory leaks (Alfred
    Mickautsch),
   - xmlSchemas: normalizedString datatype (John Belmonte)
   - code cleanup for strings functions (William)
   - Windows: compiler patches (Mark Vakoc)
   - Parser optimizations, a few new XPath and dictionnary APIs for future
    XSLT optimizations.

Revision 1.24 / (download) - annotate - [select for diffs], Fri Dec 26 21:49:08 2003 UTC (20 years, 3 months ago) by jmmv
Branch: MAIN
Changes since 1.23: +12 -3 lines
Diff to previous 1.23 (colored) to selected 1.39 (colored)

Update to 2.6.4, from Min Sik Kim in PR pkg/23895 with some changes by me:

2.6.4: Dec 24 2003:
   - Windows build fixes (Igor Zlatkovic)
   - Some serious XInclude problems reported by Oleg Paraschenko and
   - Unix and Makefile packaging fixes (me, William Brack,
   - Documentation improvements (John Fleck, William Brack), example fix
    (Lucas Brasilino)
   - bugfixes: xmlTextReaderExpand() with xmlReaderWalker, XPath handling of
    NULL strings (William Brack) , API building reader or parser from
    filedescriptor should not close it, changed XPath sorting to be stable
    again (William Brack), xmlGetNodePath() generating '(null)' (William
    Brack), DTD validation and namespace bug (William Brack), XML Schemas
    double inclusion behaviour

2.6.3: Dec 10 2003:
   - documentation updates and cleanup (DV, William Brack, John Fleck)
   - added a repository of examples, examples from Aleksey Sanin, Dodji
    Seketeli, Alfred Mickautsch
   - Windows updates: Mark Vakoc, Igor Zlatkovic, Eric Zurcher, Mingw
    (Kenneth Haley)
   - Unicode range checking (William Brack)
   - code cleanup (William Brack)
   - Python bindings: doc (John Fleck),  bug fixes
   - UTF-16 cleanup and BOM issues (William Brack)
   - bug fixes: ID and xmlReader validation, XPath (William Brack),
    xmlWriter (Alfred Mickautsch), hash.h inclusion problem, HTML parser
    (James Bursa), attribute defaulting and validation, some serialization
    cleanups, XML_GET_LINE macro, memory debug when using threads (William
    Brack), serialization of attributes and entities content, xmlWriter
    (Daniel Schulman)
   - XInclude bugfix, new APIs and update to the last version including the
    namespace change.
   - XML Schemas improvements: include (Robert Stepanek), import and
    namespace handling, fixed the regression tests troubles, added examples
    based on Eric van der Vlist book, regexp fixes
   - preliminary pattern support for streaming (needed for schemas
    constraints), added xmlTextReaderPreservePattern() to collect subdocument
    when streaming.
   - various fixes in the structured error handling

Revision 1.23 / (download) - annotate - [select for diffs], Thu Dec 4 19:33:38 2003 UTC (20 years, 4 months ago) by xtraeme
Branch: MAIN
Changes since 1.22: +55 -42 lines
Diff to previous 1.22 (colored) to selected 1.39 (colored)

Updated to 2.6.2 provided by Min Sik Kim PR pkg/23488.

Changes:

2.6.2: Nov 4 2003:
   - XPath context unregistration fixes
   - text node coalescing fixes (Mark Lilback)
   - API to screate a W3C Schemas from an existing document (Steve Ball)
   - BeOS patches (Marcin 'Shard' Konicki)
   - xmlStrVPrintf function added (Aleksey Sanin)
   - compilation fixes (Mark Vakoc)
   - stdin parsing fix (William Brack)
   - a posteriori DTD validation fixes
   - xmlReader bug fixes: Walker fixes, python bindings
   - fixed xmlStopParser() to really stop the parser and errors
   - always generate line numbers when using the new xmlReadxxx
  functions
   - added XInclude support to the xmlReader interface
   - implemented XML_PARSE_NONET parser option
   - DocBook XSLT processing bug fixed
   - HTML serialization for <p> elements (William Brack and me)
   - XPointer failure in XInclude are now handled as resource errors
   - fixed xmllint --html to use the HTML serializer on output (added
    --xmlout to implement the previous behaviour of saving it using the XML
    serializer)

2.6.1: Oct 28 2003:
   - Mostly bugfixes after the big 2.6.0 changes
   - Unix compilation patches: libxml.m4 (Patrick Welche), warnings cleanup
    (William Brack)
   - Windows compilation patches (Joachim Bauch, Stephane Bidoul, Igor
    Zlatkovic)
   - xmlWriter bugfix (Alfred Mickautsch)
   - chvalid.[ch]: couple of fixes from Stephane Bidoul
   - context reset: error state reset, push parser reset (Graham
  Bennett)
   - context reuse: generate errors if file is not readable
   - defaulted attributes for element coming from internal entities
    (Stephane Bidoul)
   - Python: tab and spaces mix (William Brack)
   - Error handler could crash in DTD validation in 2.6.0
   - xmlReader: do not use the document or element _private field
   - testSAX.c: avoid a problem with some PIs (Massimo Morara)
   - general bug fixes: mandatory encoding in text decl, serializing
    Document Fragment nodes, xmlSearchNs 2.6.0 problem (Kasimier Buchcik),
    XPath errors not reported,  slow HTML parsing of large documents.

2.6.0: Oct 20 2003:
   - Major revision release: should be API and ABI compatible but got a lot
    of change
   - Increased the library modularity, far more options can be stripped out,
    a --with-minimum configuration will weight around 160KBytes
   - Use per parser and per document dictionnary, allocate names and small
    text nodes from the dictionnary
   - Switch to a SAX2 like parser rewrote most of the XML parser core,
    provides namespace resolution and defaulted attributes, minimize memory
    allocations and copies, namespace checking and specific error handling,
    immutable buffers, make predefined entities static structures, etc...
   - rewrote all the error handling in the library, all errors can be
    intercepted at a structured level, with precise information
  available.
   - New simpler and more generic XML and HTML parser APIs, allowing to
    easilly modify the parsing options and reuse parser context for multiple
    consecutive documents.
   - Similar new APIs for the xmlReader, for options and reuse, provided new
    functions to access content as const strings, use them for Python
  bindings
   - a  lot of other smaller API improvements: xmlStrPrintf (Aleksey Sanin),
    Walker i.e. reader on a document tree based on Alfred Mickautsch code,
    make room in nodes for line numbers, reference counting and future PSVI
    extensions, generation of character ranges to be checked with faster
    algorithm (William),  xmlParserMaxDepth (Crutcher Dunnavant), buffer
    access

Revision 1.22 / (download) - annotate - [select for diffs], Sun Oct 5 10:10:06 2003 UTC (20 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored) to selected 1.39 (colored)

Update to 2.5.11:
A bugfix only release:
    * risk of crash in Relax-NG
    * risk of crash when using multithreaded programs

Revision 1.21 / (download) - annotate - [select for diffs], Fri Aug 29 11:22:22 2003 UTC (20 years, 7 months ago) by xtraeme
Branch: MAIN
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored) to selected 1.39 (colored)

Updated to 2.5.10

Changes:

2.5.10: Aug 15 2003:
A bugfixes only release   - Windows Makefiles (William Brack)
   - UTF-16 support fixes (Mark Itzcovitz)
   - Makefile and portability (William Brack) automake, Linux alpha, Mingw
    on Windows (Mikhail Grushinskiy)
   - HTML parser (Oliver Stoeneberg)
   - XInclude performance problem reported by Kevin Ruscoe
   - XML parser performance problem reported by Grant Goodale
   - xmlSAXParseDTD() bug fix from Malcolm Tredinnick
   - and a couple other cleanup


2.5.9: Aug 9 2003:
   - bugfixes: IPv6 portability, xmlHasNsProp (Markus Keim), Windows build
    (Wiliam Brake, Jesse Pelton, Igor), Schemas (Peter Sobisch), threading
    (Rob Richards), hexBinary type (), UTF-16 BOM (Dodji Seketeli),
    xmlReader, Relax-NG schemas compilation, namespace handling,  EXSLT (Sean
    Griffin), HTML parsing problem (William Brack), DTD validation for mixed
    content + namespaces, HTML serialization, library initialization,
    progressive HTML parser
   - better interfaces for Relax-NG error handling (Joachim Bauch, )
   - adding xmlXIncludeProcessTree() for XInclud'ing in a subtree
   - doc fixes and improvements (John Fleck)
   - configure flag for -with-fexceptions when embedding in C++
   - couple of new UTF-8 helper functions (William Brack)
   - general encoding cleanup + ISO-8859-x without iconv (Peter Jacobi)
   - xmlTextReader cleanup + enum for node types (Bjorn Reese)
   - general compilation/warning cleanup Solaris/HP-UX/... (William
  Brack)

Revision 1.20 / (download) - annotate - [select for diffs], Fri Jul 11 23:28:04 2003 UTC (20 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.19: +14 -12 lines
Diff to previous 1.19 (colored) to selected 1.39 (colored)

Update to 2.5.8; add test target.
Changes since 2.5.7:
- bugfixes: XPath, XInclude, file/URI mapping, UTF-16 save (Mark
  Itzcovitz), UTF-8 checking, URI saving, error printing (William Brack),
  PI related memleak, compilation without schemas or without xpath (Joerg
  Schmitz-Linneweber/Garry Pennington), xmlUnlinkNode problem with DTDs,
  rpm problem on , i86_64, removed a few compilation problems from 2.5.7,
  xmlIOParseDTD, and xmlSAXParseDTD (Malcolm Tredinnick)
- portability: DJGPP (MsDos) , OpenVMS (Craig A. Berry)
- William Brack fixed multithreading lock problems
- IPv6 patch for FTP and HTTP accesses (Archana Shah/Wipro)
- Windows fixes (Igor Zlatkovic,  Eric Zurcher), threading (Stéphane
  Bidoul)
- A few W3C Schemas Structure improvements
- W3C Schemas Datatype improvements (Charlie Bozeman)
- Python bindings for thread globals (Stéphane Bidoul), and method/class
  generator
- added --nonet option to xmllint
- documentation improvements (John Fleck)

Revision 1.19 / (download) - annotate - [select for diffs], Tue Jul 1 09:45:54 2003 UTC (20 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.18: +6 -7 lines
Diff to previous 1.18 (colored) to selected 1.39 (colored)

Update to 2.5.7nb1: Install example files in share/examples
instead of share/doc/examples. Noted by Kimmo Suominen.

Revision 1.18 / (download) - annotate - [select for diffs], Thu May 8 09:34:58 2003 UTC (20 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored) to selected 1.39 (colored)

Update to 2.5.7:
   - Relax-NG: Compiling to regexp and streaming validation on top of the
    xmlReader interface, added to xmllint --stream
   - xmlReader: Expand(), Next() and DOM access glue, bug fixes
   - Support for large files: RGN validated a 4.5GB instance
   - Thread support is now configured in by default
   - Fixes: update of the Trio code (Bjorn), WXS Date and Duration fixes
    (Charles Bozeman), DTD and namespaces (Brent Hendricks), HTML push parser
    and zero bytes handling, some missing Windows file path conversions,
    behaviour of the parser and validator in the presence of "out of memory"
    error conditions
   - extended the API to be able to plug a garbage collecting memory
    allocator, added xmlMallocAtomic() and modified the allocations
    accordingly.
   - Performances: removed excessive malloc() calls, speedup of the push and
    xmlReader interfaces, removed excessive thread locking
   - Documentation: man page (John Fleck), xmlReader documentation
   - Python: adding binding for xmlCatalogAddLocal (Brent M Hendricks)

Revision 1.17 / (download) - annotate - [select for diffs], Thu Apr 10 09:34:04 2003 UTC (21 years ago) by wiz
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored) to selected 1.39 (colored)

Update to 2.5.6:
2.5.6: Apr 1 2003:
   - Fixed W3C XML Schemas datatype, should be compliant now except for
    binHex and base64 which are not supported yet.
   - bug fixes: non-ASCII IDs, HTML output, XInclude on large docs and
    XInclude entities handling, encoding detection on external subsets, XML
    Schemas bugs and memory leaks, HTML parser (James Bursa)
   - portability: python/trio (Albert Chin), Sun compiler warnings
   - documentation: added --relaxng option to xmllint man page (John)
   - improved error reporting: xml:space, start/end tag mismatches, Relax NG
    errors

Revision 1.16 / (download) - annotate - [select for diffs], Wed Mar 26 14:55:12 2003 UTC (21 years ago) by jmmv
Branch: MAIN
Changes since 1.15: +4 -2 lines
Diff to previous 1.15 (colored) to selected 1.39 (colored)

Update to 2.5.5.  Changes in this version:

* Lot of fixes on the Relax NG implementation. More testing including
  DocBook and TEI examples.
* Increased the support for W3C XML Schemas datatype.
* Several bug fixes in the URI handling layer.
* Bug fixes: HTML parser, xmlReader, DTD validation, XPath, encoding
  conversion, line counting in the parser.
* Added support for $XMLLINT_INDENT environment variable, FTP delete
* Fixed the RPM spec file name.

Revision 1.15 / (download) - annotate - [select for diffs], Tue Mar 4 16:52:07 2003 UTC (21 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.14: +2 -2 lines
Diff to previous 1.14 (colored) to selected 1.39 (colored)

Update to 2.5.4.
* Conformance testing and lot of fixes on Relax NG and XInclude implementation
* Implementation of XPointer element() scheme
* Bug fixes: XML parser, XInclude entities merge, validity checking on namespaces,
  2 serialization bugs, node info generation problems, a DTD regexp generation problem.
* Portability: windows updates and path canonicalization (Igor)
* A few typo fixes (Kjartan Maraas)
* Python bindings generator fixes (Stephane Bidoul)

Revision 1.14 / (download) - annotate - [select for diffs], Mon Feb 24 20:40:16 2003 UTC (21 years, 1 month ago) by jmmv
Branch: MAIN
Changes since 1.13: +109 -54 lines
Diff to previous 1.13 (colored) to selected 1.39 (colored)

Update to 2.5.3.

Changes in the package:
- Enable threading.
- Move html documentation and examples where they should be.
- Use catalogs.mk to get and set default system-wide catalogs.

Changes since 2.4.25:

2.5.3: Feb 10 2003:
   - RelaxNG and XML Schemas datatypes improvements, and added a first
    version of RelaxNG Python bindings
   - Fixes: XLink (Sean Chittenden), XInclude (Sean Chittenden), API fix for
    serializing namespace nodes, encoding conversion bug, XHTML1
  serialization
   - Portability fixes: Windows (Igor), AMD 64bits RPM spec file
2.5.2: Feb 5 2003:
   - First implementation of RelaxNG, added --relaxng flag to xmllint
   - Schemas support now compiled in by default.
   - Bug fixes: DTD validation, namespace checking, XInclude and entities,
    delegateURI in XML Catalogs, HTML parser, XML reader (Stéphane Bidoul),
    XPath parser and evaluation,  UTF8ToUTF8 serialization, XML reader memory
    consumption, HTML parser, HTML serialization in the presence of
  namespaces
   - added an HTML API to check elements and attributes.
   - Documentation improvement, PDF for the tutorial (John Fleck), doc
    patches (Stefan Kost)
   - Portability fixes: NetBSD (Julio Merino), Windows (Igor Zlatkovic)
   - Added python bindings for XPointer, contextual error reporting
    (Stéphane Bidoul)
   - URI/file escaping problems (Stefano Zacchiroli)
2.5.1: Jan 8 2003:
   - Fixes a memory leak and configuration/compilation problems in 2.5.0
   - documentation updates (John)
   - a couple of XmlTextReader fixes
2.5.0: Jan 6 2003:
   - New XmltextReader interface based on C#
    API (with help of Stéphane Bidoul)
   - Windows: more exports, including the new API (Igor)
   - XInclude fallback fix
   - Python: bindings for the new API, packaging (Stéphane Bidoul),
    drv_libxml2.py Python xml.sax driver (Stéphane Bidoul), fixes, speedup
    and iterators for Python-2.2 (Hannu Krosing)
   - Tutorial fixes (john Fleck and Niraj Tolia) xmllint man update
  (John)
   - Fix an XML parser bug raised by Vyacheslav Pindyura
   - Fix for VMS serialization (Nigel Hall) and config (Craig A. Berry)
   - Entities handling fixes
   - new API to optionally track node creation and deletion (Lukas
  Schroeder)
   - Added documentation for the XmltextReader interface and some XML guidelines
2.4.30: Dec 12 2002:
   - 2.4.29 broke the python bindings, rereleasing
   - Improvement/fixes of the XML API generator, and couple of minor code
    fixes.
2.4.29: Dec 11 2002:
   - Windows fixes (Igor): Windows CE port, pthread linking, python bindings
    (Stéphane Bidoul), Mingw (Magnus Henoch), and export list updates
   - Fix for prev in python bindings (ERDI Gergo)
   - Fix for entities handling (Marcus Clarke)
   - Refactored the XML and HTML dumps to a single code path, fixed XHTML1
    dump
   - Fix for URI parsing when handling URNs with fragment identifiers
   - Fix for HTTP URL escaping problem
   - added an TextXmlReader (C#) like API (work in progress)
   - Rewrote the API in XML generation script, includes a C parser and saves
    more informations needed for C# bindings
2.4.28: Nov 22 2002:
   - a couple of python binding fixes
   - 2 bug fixes in the XML push parser
   - potential memory leak removed (Martin Stoilov)
   - fix to the configure script for Unix (Dimitri Papadopoulos)
   - added encoding support for XInclude parse="text"
   - autodetection of XHTML1 and specific serialization rules added
   - nasty threading bug fixed (William Brack)
2.4.27: Nov 17 2002:
   - fixes for the Python bindings
   - a number of bug fixes: SGML catalogs, xmlParseBalancedChunkMemory(),
    HTML parser,  Schemas (Charles Bozeman), document fragment support
    (Christian Glahn), xmlReconciliateNs (Brian Stafford), XPointer,
    xmlFreeNode(), xmlSAXParseMemory (Peter Jones), xmlGetNodePath (Petr
    Pajas), entities processing
   - added grep to xmllint --shell
   - VMS update patch from Craig A. Berry
   - cleanup of the Windows build with support for more compilers (Igor),
    better thread support on Windows
   - cleanup of Unix Makefiles and spec file
   - Improvements to the documentation (John Fleck)
2.4.26: Oct 18 2002:
   - Patches for Windows CE port, improvements on Windows paths handling
   - Fixes to the validation  code (DTD and Schemas), xmlNodeGetPath() ,
    HTML serialization, Namespace compliance,  and a number of small
  problems

Revision 1.13 / (download) - annotate - [select for diffs], Thu Jan 2 22:44:48 2003 UTC (21 years, 3 months ago) by jmmv
Branch: MAIN
CVS Tags: netbsd-1-6-1-base, netbsd-1-6-1
Changes since 1.12: +1 -2 lines
Diff to previous 1.12 (colored) to selected 1.39 (colored)

The lib/pkgconfig has been added to the list of standard directories, so do
not try to remove it, even if empty.

Revision 1.12 / (download) - annotate - [select for diffs], Wed Nov 6 07:56:51 2002 UTC (21 years, 5 months ago) by tron
Branch: MAIN
Changes since 1.11: +1 -7 lines
Diff to previous 1.11 (colored) to selected 1.39 (colored)

Upon approval by Martti Kuparinen downgrade the "libxml2" package to
version 2.4.25. Version 2.4.26 has just too many bugs which e.g.
break building the KDE 2 desktop. This fixes PR pkg/18873 by myself.

Revision 1.11 / (download) - annotate - [select for diffs], Tue Oct 29 11:37:39 2002 UTC (21 years, 5 months ago) by martti
Branch: MAIN
Changes since 1.10: +8 -2 lines
Diff to previous 1.10 (colored) to selected 1.39 (colored)

Updated libxml2 to 2.4.26

* bug fixes

Revision 1.10 / (download) - annotate - [select for diffs], Thu Oct 3 14:06:15 2002 UTC (21 years, 6 months ago) by martti
Branch: MAIN
Changes since 1.9: +4 -22 lines
Diff to previous 1.9 (colored) to selected 1.39 (colored)

Updated libxml2 to 2.4.25

* bug fixes

Revision 1.9 / (download) - annotate - [select for diffs], Sat Aug 31 00:49:24 2002 UTC (21 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored) to selected 1.39 (colored)

Update to 2.4.24:
    * XPath fixes (William), xf:escape-uri() (Wesley Terpstra)
    * Python binding fixes: makefiles (William), generator, rpm build, x86-64 (fcrozat)
    * HTML <style> and boolean attributes serializer fixes
    * C14N improvements by Aleksey
    * doc cleanups: Rick Jones
    * Windows compiler makefile updates: Igor and Elizabeth Barham
    * XInclude: implementation of fallback and xml:base fixup added

Revision 1.8 / (download) - annotate - [select for diffs], Sun Aug 25 18:40:11 2002 UTC (21 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.7: +1 -1 lines
Diff to previous 1.7 (colored) to selected 1.39 (colored)

Merge changes in packages from the buildlink2 branch that have
buildlink2.mk files back into the main trunk.  This provides sufficient
buildlink2 infrastructure to start merging other packages from the
buildlink2 branch that have already been converted to use the buildlink2
framework.

Revision 1.5.2.2 / (download) - annotate - [select for diffs], Thu Aug 22 11:12:46 2002 UTC (21 years, 8 months ago) by jlam
Branch: buildlink2
Changes since 1.5.2.1: +3 -2 lines
Diff to previous 1.5.2.1 (colored) next main 1.6 (colored) to selected 1.39 (colored)

Merge changes from pkgsrc-current into the buildlink2 branch for the
packages that have buildlink2.mk files.

Revision 1.7 / (download) - annotate - [select for diffs], Fri Jul 12 15:45:02 2002 UTC (21 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgviews-base, pkgviews, netbsd-1-6-RELEASE-base, netbsd-1-6, buildlink2-base
Changes since 1.6: +3 -2 lines
Diff to previous 1.6 (colored) to selected 1.39 (colored)

Update to 2.4.23.
Changes since 2.4.21:
* performances patches: Peter Jacobi
* c14n fixes, testsuite and performances: Aleksey Sanin
* added xmlDocFormatDump: Chema Celorio
* new tutorial: John Fleck
* new hash functions and performances: Sander Vesik, portability fix
  from Peter Jacobi
* a number of bug fixes: XPath (William Brack, Richard Jinks), XML and
  HTML parsers, ID lookup function
* removal of all remaining sprintf: Aleksey Sanin
* a number of bug fixes: configure scripts, base handling, parser, memory
  usage, HTML parser, XPath, documentation (Christian Cornelssen),
  indentation, URI parsing
* Optimizations for XMLSec, fixing and making public some of the network
  protocol handlers (Aleksey)
* performance patch from Gary Pennington
* Charles Bozeman provided date and time support for XML Schemas datatypes

Revision 1.5.2.1 / (download) - annotate - [select for diffs], Sun Jun 23 19:02:18 2002 UTC (21 years, 10 months ago) by jlam
Branch: buildlink2
Changes since 1.5: +34 -28 lines
Diff to previous 1.5 (colored) to selected 1.39 (colored)

Merge from pkgsrc-current to buildlink2 branch.

Revision 1.6 / (download) - annotate - [select for diffs], Fri May 17 13:02:29 2002 UTC (21 years, 11 months ago) by martti
Branch: MAIN
Changes since 1.5: +34 -28 lines
Diff to previous 1.5 (colored) to selected 1.39 (colored)

Updated libxml2 to 2.4.21 (only bug fixes according to ChangeLog)

Revision 1.5 / (download) - annotate - [select for diffs], Fri Apr 26 10:32:37 2002 UTC (21 years, 11 months ago) by martti
Branch: MAIN
Branch point for: buildlink2
Changes since 1.4: +37 -5 lines
Diff to previous 1.4 (colored) to selected 1.39 (colored)

Updated libxml2 to 2.4.20

* lots of bug fixes

Revision 1.4 / (download) - annotate - [select for diffs], Tue Jan 29 07:40:11 2002 UTC (22 years, 2 months ago) by martti
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH003
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored) to selected 1.39 (colored)

Updated libxml2 to 2.4.13

* several bug fixes
* documentation fixes

(ChangeLog is almost 200 lines for 2.4.12 -> 2.4.13)

Revision 1.3 / (download) - annotate - [select for diffs], Mon Dec 10 13:29:31 2001 UTC (22 years, 4 months ago) by taca
Branch: MAIN
Changes since 1.2: +6 -3 lines
Diff to previous 1.2 (colored) to selected 1.39 (colored)

update libxml2 package to 2.4.12.

Changes from 2.4.10 are various bug fixes and it become over 4000 bytes.
Please look at libxml2-2.4.12/ChangeLog in detail.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Nov 16 20:59:32 2001 UTC (22 years, 5 months ago) by tron
Branch: MAIN
Changes since 1.1: +4 -2 lines
Diff to previous 1.1 (colored) to selected 1.39 (colored)

Uppdate "libxml2" package to version 2.4.10. Changes since version 2.4.6:
- URI escaping fix (Joel Young)
- added xmlGetNodePath() (for paths or XPointers generation)
- Fixes namespace handling problems when using DTD and validation
  improvements on xmllint: Morus Walter patches for --format and
  --encode, Stefan Kost and Heiko Rupp improvements on the --shell
- fixes for xmlcatalog linking pointed by Weiqi Gao
- fixes to the HTML parser
- fixes more catalog bugs
- avoid a compilation problem, improve xmlGetLineNo()
- fixed SGML catalogs broken in previous release, updated xmlcatalog
  tool
- fixed a compile errors and some includes troubles.
- exported some debugging interfaces
- serious rewrite of the catalog code
- integrated Gary Pennington thread safety patch, added configure option
  and regression tests
- removed an HTML parser bug
- fixed a couple of potentially serious validation bugs
- integrated the SGML DocBook support in xmllint
- changed the nanoftp anonymous login passwd
- some I/O cleanup and a couple of interfaces for Perl wrapper
- general bug fixes
- updated xmllint man page by John Fleck
- some VMS and Windows updates
This will hopefully fix PR pkg/14336.

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 31 22:57:23 2001 UTC (22 years, 5 months ago) by zuntum
Branch: MAIN
Diff to selected 1.39 (colored)

Move pkg/ files into package's toplevel directory

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>