The NetBSD Project

CVS log for pkgsrc/textproc/libxml2/Makefile

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.179 / (download) - annotate - [select for diffs], Tue Jan 30 00:12:48 2024 UTC (8 weeks, 3 days ago) by gutteridge
Branch: MAIN
CVS Tags: HEAD
Changes since 1.178: +2 -2 lines
Diff to previous 1.178 (colored) to selected 1.35 (colored)

libxml2: restrict _POSIX_C_SOURCE to Linux

Fix build breakage with FreeBSD, where some definitions were then hidden
by __BSD_VISIBLE not being defined, e.g.:

  CC       libxml2_la-nanohttp.lo
nanohttp.c:837:20: error: use of undeclared identifier 'PF_INET6'
        s = socket(PF_INET6, SOCK_STREAM, IPPROTO_TCP);
                   ^
nanohttp.c:842:20: error: use of undeclared identifier 'PF_INET'
        s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
                   ^
2 errors generated.

(Tested on FreeBSD 14 and Fedora Linux 39.)

Revision 1.178 / (download) - annotate - [select for diffs], Sat Jan 27 21:07:16 2024 UTC (2 months ago) by sjmulder
Branch: MAIN
Changes since 1.177: +4 -1 lines
Diff to previous 1.177 (colored) to selected 1.35 (colored)

textproc/libxml2: Fix undefined addrinfo on glibc

On Fedora 39 (only with IPv6 enabled):

  nanoftp.c: In function 'xmlNanoFTPConnect':
  nanoftp.c:798:25: error: storage size of 'hints' isn't known
    798 |         struct addrinfo hints, *tmp, *result;
        |                         ^~~~~

netdb.h and GNU's getaddrinfo(3) show that it's behind a feature macro:

  _POSIX_C_SOURCE >= 200112L

Tested on Fedora 39 and NetBSD 9.

Revision 1.177 / (download) - annotate - [select for diffs], Sat Jan 27 10:06:41 2024 UTC (2 months ago) by wiz
Branch: MAIN
Changes since 1.176: +3 -3 lines
Diff to previous 1.176 (colored) to selected 1.35 (colored)

*libxml2: update to 2.12.4

v2.12.4: Jan 15 2024

### Regressions

- parser: Fix regression parsing standalone declarations
- autotools: Readd --with-xptr-locs configuration option
- parser: Fix build --without-output
- parser: Don't grow or shrink pull parser memory buffers
- io: Fix memory lifetime issue with input buffers


v2.12.3: Dec 12 2023

### Regressions

- parser: Fix namespaces redefined from default attributes

### Build fixes

- include: Rename XML_EMPTY helper macro
- include: Move declaration of xmlInitGlobals
- include: Add missing includes
- include: Move globals from xmlsave.h to parser.h
- include: Readd circular dependency between tree.h and parser.h


v2.12.2: Dec 5 2023

### Regressions

- parser: Fix invalid free in xmlParseBalancedChunkMemoryRecover
- globals: Disable TLS in static Windows builds
- html: Reenable buggy detection of XML declarations
- tree: Fix regression when copying DTDs
- parser: Make CRLF increment line number

### Build fixes

- build: Disable compiler TLS by default
- cmake: Update config.h.cmake.in
- tests: Fix tests --with-valid --without-xinclude


v2.12.1: Nov 23 2023

### Regressions

- hash: Fix deletion of entries during scan
- parser: Only enable SAX2 if there are SAX2 element handlers

### Build fixes

- autotools: Stop checking for snprintf
- dict: Fix '__thread' before 'static'
- fix: pthread weak references in globals.c (Mike Dalessio)
- tests: Fix build with older MSVC


v2.12.0: Nov 16 2023

### Major changes

Most of the known issues leading to quadratic behavior in the XML parser
were fixed. Internal hash tables were rewritten to reduce memory
consumption.

Starting with this release, it should be enough to add the --with-legacy
configuration option to provide maximum ABI compatibility. For example,
if a code module was removed from the default configuration, the option
will add stubs for the removed symbols.

libxml2 will now store global variables in thread-local storage if supported
by the compiler. This avoids allocating the data lazily which can result in
a fatal error condition. A new API function xmlCheckThreadLocalStorage
was added so the allocation can be checked earlier if compiler TLS is not
supported. To prepare for future improvements, some API functions now expect
or return a const xmlError struct.

Several cyclic dependencies in public header files were fixed. As a result,
certain headers won't include other headers as before.

Refactoring of the encoding code has been mostly completed. Calling
xmlSwitchEncoding from client code is now fully supported, for example to
override the encoding for the push parser.

When parsing data from memory, libxml2 will now stream data chunk by chunk
instead of copying the whole buffer (possibly twice with encodings),
reducing peak memory consumption considerably.

A new API function xmlCtxtSetMaxAmplification was added to allow parsing
of files that would otherwise trigger the billion laughs protection.

Several bugs in the regex determinism checks were fixed. Invalid XML
Schemas which previous versions erroneously accepted will now be
rejected.

### Deprecations

- globals: Deprecate xmlLastError
- parser: Deprecate global parser options
- win32: Deprecate old Windows build system

### Bug fixes

- parser: Stop switching to ISO-8859-1 on encoding errors
- parser: Support encoded external PEs in entity values
- string: Fix UTF-8 validation in xmlGetUTF8Char
- SAX2: Allow multiple top-level elements
- parser: Update line number after coalescing text nodes
- parser: Check for truncated multi-byte sequences

### Improvements

- error: Make more xmlError structs constant
- parser: Remove redundant IS_CHAR check in xmlCurrentChar
- parser: Fix stack handling in xmlParseTryOrFinish
- parser: Protect against quadratic default attribute expansion
- parser: Missing checks for disableSAX
- entities: Make xmlFreeEntity public
- examples: Don't use sprintf
- encoding: Suppress -Wcast-align warnings
- parser: Use hash tables to avoid quadratic behavior
- parser: Don't skip CR in xmlCurrentChar
- dict: Rewrite dictionary hash table code
- hash: Rewrite hash table code
- malloc-fail: Report malloc failure in xmlFARegExec
- malloc-fail: Report malloc failure in xmlRegEpxFromParse
- parser: Simplify xmlStringCurrentChar
- regexp: Fix status codes and handle invalid UTF-8
- error: Make xmlGetLastError return a const error
- html: Fix logic in htmlAutoClose
- globals: Move globals back to correct header files
- globals: Use thread-local storage if available
- globals: Rework global state destruction on Windows
- globals: Define globals using macros
- globals: Introduce xmlCheckThreadLocalStorage
- globals: Make xmlGlobalState private
- threads: Move library initialization code to threads.c
- debug: Remove debugging code
- globals: Move code from threads.c to globals.c
- parser: Avoid undefined behavior in xmlParseStartTag2
- schemas: Fix memory leak of annotations in notations
- dict: Update hash function
- dict: Use thread-local storage for PRNG state
- dict: Use xoroshiro64** as PRNG
- xmllint: Fix error messages
- parser: Fix detection of null bytes
- parser: Improve error handling in push parser
- parser: Don't check inputNr in xmlParseTryOrFinish
- parser: Remove push parser debugging code
- tree: Fix copying of DTDs
- legacy: Add stubs for disabled modules
- parser: Allow to set maximum amplification factor
- entities: Don't change doc when encoding entities
- parser: Never use UTF-8 encoding handler
- encoding: Remove debugging code
- malloc-fail: Fix unsigned integer overflow in xmlTextReaderPushData
- html: Remove encoding hack in htmlCreateFileParserCtxt
- parser: Decode all data in xmlCharEncInput
- parser: Stream data when reading from memory
- parser: Optimize xmlLoadEntityContent
- parser: Don't overwrite EOF parser state
- parser: Simplify input pointer updates
- parser: Don't reinitialize parser input members
- encoding: Move rawconsumed accounting to xmlCharEncInput
- parser: Rework encoding detection
- parser: Always create UTF-8 in xmlParseReference
- html: Remove some debugging code in htmlParseTryOrFinish
- malloc-fail: Fix memory leak in xmlCompileAttributeTest
- parser: Recover more input from encoding errors
- malloc-fail: Handle malloc failures in xmlAddEncodingAlias
- malloc-fail: Fix null-deref with xmllint --copy
- xpath: Ignore entity ref nodes when computing node hash
- malloc-fail: Fix null deref after xmlXIncludeNewRef
- SAX: Always validate xml:ids
- Stop using sprintf
- Fix compiler warning on GCC < 8
- regexp: Fix determinism checks
- regexp: Fix checks for eliminated transitions
- regexp: Simplify xmlFAReduceEpsilonTransitions
- regexp: Fix cycle check in xmlFAReduceEpsilonTransitions
- schemas: Fix filename in xmlSchemaValidateFile
- schemas: Fix line numbers in streaming validation
- writer: Add error check in xmlTextWriterEndDocument
- encoding: Stop calling xmlEncodingErr
- xmlIO: Remove some calls to xmlIOErr
- parser: Improve handling of encoding and IO errors
- parser: Move xmlFatalErr to parserInternals.c
- encoding: Rework error codes
- .gitignore: Split up and rearrange .gitignore files
- .gitignore: Add runsuite.log
- Stop calling xmlMemoryDump
- examples: Don't call xmlCleanupParser and xmlMemoryDump
- xpath: Remove remaining references to valueFrame

### Portability

- python: Make it compatible with python3.12 (Daniel Garcia Moreno)

### Build systems

- cmake: Check whether static linking dependencies found in config files
  (James Le Cuirot)
- autotools: Make --with-minimum disable lzma support
- build: Remove some GCC warnings
- Handle NOCONFIG case when setting locations from CMake target properties
  (Markus Rickert)
- cmake: Generate better pkg-config file for SYSROOT builds under CMake
  (James Le Cuirot)
- autoconf: Include non-pkg-config dependency flags in the pkg-config file
  (James Le Cuirot)
- autoconf: Don't bake build time CFLAGS into pkg-config file (James Le Cuirot)
- build: Generate better pkg-config files for static-only builds (James
  Le Cuirot)
- build: Generate better pkg-config file for SYSROOT builds (James Le Cuirot)
- autoconf: Allow custom --with-icu configure option

### Tests

- tests: Also test xmlNextChar in testchar.c
- tests: Start with testparser.c for extra tests
- fuzz: Raise rss_limit_mb
- fuzz: Test xmlTextReaderRead after EOF or failure
- fuzz: Test XML_PARSE_XINCLUDE | XML_PARSE_VALID
- tests: Handle entities in SAX tests
- fuzz: Disable XML_PARSE_SAX1 option in xml fuzzer
- tests: Add more tests for redefined attributes
- hash: Add hash table tests
- tests: Add ATTRIBUTE_NO_SANITIZE_INTEGER macro
- fuzz: Allow to fuzz without push, reader or output modules
- gitlab-ci: Add a "medium" config build
- python: Fix tests on MinGW
- test: Add push parser test with overridden encoding
- testapi: test_xmlSAXDefaultVersion() leaves xmlSAX2DefaultVersionValue set
  to 1 with LIBXML_SAX1_ENABLED (David Kilzer)
- gitlab-ci: Lower _XOPEN_SOURCE value
- testapi: Don't set http_proxy environment variable
- test: Add push parser tests for split UTF-8 sequences
- xinclude: Lower initial table size when fuzzing
- tests: Test streaming schema validation
- runtest: Skip element name in schema error messages

### Documentation

- doc: Add notes about runtest to MAINTAINERS.md
- doc: Don't document internal macros in xmlversion.h
- doc: Allow 'unsigned' without 'int'
- doc: Improve documentation of configuration options


v2.11.6: Nov 16 2023

### Regressions

- threads: Fix --with-thread-alloc
- xinclude: Fix 'last' pointer in xmlXIncludeCopyNode

### Bug fixes

- parser: Fix potential use-after-free in xmlParseCharDataInternal


v2.11.5: Aug 9 2023

### Regressions

- parser: Make xmlSwitchEncoding always skip the BOM
- autotools: Improve iconv check

### Bug fixes

- valid: Fix c1->parent pointer in xmlCopyDocElementContent
- encoding: Always call ucnv_convertEx with flush set to false

### Portability

- autotools: fix Python module file ext for cygwin/msys2 (Christoph Reiter)

### Tests

- runtest: Fix compilation without LIBXML_HTML_ENABLED


v2.11.4: May 18 2023

Fixes a serious regression.

- parser: Fix regression when push parsing UTF-8 sequences


v2.11.3: May 11 2023

Fixes more regressions.

- xinclude: Fix false positives in inclusion loop detection
- autotools: Fix ICU detection
- parser: Fix "huge input lookup" error with push parser
- xpath: Fix build without LIBXML_XPATH_ENABLED
- hash: Fix possible startup crash with old libxslt versions
- autoconf: fix iconv library paths (Mike Dalessio)


v2.11.2: May 5 2023

Fix regressions.

- threads: Fix startup crash with weak symbol hack
- win32: Don't depend on removed .def file
- schemas: Fix memory leak in xmlSchemaValidateStream


v2.11.1: Apr 30 2023

Fixes build and ABI issues.

- cmake: Fix va_copy detection (Luca Niccoli)
- libxml.m4: Fix quoting
- Link with --undefined-version
- libxml2.syms: Revert removal of version information


v2.11.0: Apr 28 2023

### Major changes

Protection against entity expansion attacks, also known as "billion laughs"
has been greatly improved. Malicious files should be detected reliably now
and false positives should be reduced. It is possible though that large
documents which make heavy use of entities are rejected now.

This release finally fixes symbol visibility on UNIX systems. Internal
symbols will now be hidden. While these symbols were never declared in public
headers, it was still possible to declare them manually. Now this won't work.

All symbol information has been removed from the ELF version script to fix
link errors with --no-undefined-version. The version nodes are kept so it
should still be possible to run binaries linked against older versions.

About 90 memory errors in code paths handling malloc failures have been fixed.
While these issues shouldn't impact security, this improves robustness under
memory pressure.

The XInclude engine has been reworked to properly support nested includes.

Several cases of quadratic behavior in the XML push parser have been fixed.

Refactoring has begun on some buffering and encoding code with the goal of
simplifying this part of the code base and improving error reporting.

Other highlights:

- Consolidated private header files.
- Major rework of the autoconf build.
- Deprecated several outdated and internal functions.

Special thanks to Google's Open Source Security Subsidies program for
sponsoring much of the work on this release!

Ongoing work on libxml2 relies on funding. For a list of important open
issues see <https://gitlab.gnome.org/GNOME/libxml2/-/issues/507>

### Security

- Fix use-after-free in xmlParseContentInternal() (David Kilzer)
- xmllint: Fix use-after-free with --maxmem
- parser: Fix OOB read when formatting error message
- entities: Rework entity amplification checks

### Regressions

- parser: Fix regression in xmlParserNodeInfo accounting

### Bug fixes

- Fix memory errors in code handling malloc failures
- encoding: Fix error code in asciiToUTF8
- xpath: number('-') should return NaN
- xmlParseStartTag2() contains typo when checking for default definitions for
  an attribute in a namespace (David Kilzer)
- uri: Fix handling of port numbers
- error: Make sure that error messages are valid UTF-8
- xinclude: Fix nested includes

### Improvements

- xmllint: Validate --maxmem integer option
- xmlValidatePopElement() can return invalid value (-1) (David Kilzer)
- parser: Rework EBCDIC code page detection
- parser: Limit name length in xmlParseEncName
- parser: Rework shrinking of input buffers
- html: Rely on CUR_CHAR to grow the input buffer
- parser: Rely on CUR_CHAR/NEXT to grow the input buffer
- valid: Make xmlValidateElement non-recursive
- html: Fix quadratic behavior in htmlParseTryOrFinish
- xmllint: Fix memory leak with --pattern --stream
- parser: Stop calling xmlParserInputShrink
- html: Impose some length limits
- valid: Allow xmlFreeValidCtxt(NULL)
- parser: Stop calling xmlParserInputGrow
- xinclude: Fix quadratic behavior in xmlXIncludeLoadTxt
- xinclude: Abort immediately if max depth was exceeded
- xpath: Only report the first error
- error: Don't move past current position
- error: Limit number of parser errors
- parser: Lower entity nesting limit with XML_PARSE_HUGE
- parser: Don't increase depth twice when parsing internal entities
- parser: Improve detection of entity loops
- parser: Only report a single entity error
- libxml.h: Remove dubious definition of LIBXML_STATIC
- html: Improve parsing of nested lists
- memory: Don't use locks in xmlMemUsed
- encoding: Remove unused variable xmlDefaultCharEncodingHandler
- Rework initialization code
- Add .editorconfig
- parser: Merge misc, prolog and epilog cases in push parser
- parser: Fix 'consumed' accounting when switching encodings
- html: Fix check for end of comment in push parser
- parser: Fix push parser with 1-3 byte initial chunk
- parser: Rewrite push parser boundary checks
- reader: Switch to xmlParserInputBufferCreateMem
- html: Don't escape ASCII chars in href attributes
- io: Don't shrink memory input buffers
- parser: Don't call xmlSHRINK from push parser
- parser: Ignore cdata argument in xmlParseCharData
- parser: Rework push parser parser progress checks
- io: Fix a few integer overflows in I/O statistics
- io: Rework xmlParserInputBufferGrow with encodings
- io: Remove xmlInputReadCallbackNop
- io: Check for memory buffer early in xmlParserInputGrow
- parser: Fix error message in xmlParseCommentComplex
- Bypass proxy in nanoHTTP for hosts in "no_proxy" (Markus Jörg)
- schemas: Fix infinite loop in xmlSchemaCheckElemSubstGroup
- threads: Remove check for pthread_equal
- xinclude: Rework XInclude cache
- xinclude: Remove inefficient refcounting scheme
- xmllint: Improve handling of empty XPath node sets
- parser: Fix potential memory leak in xmlParseAttValueInternal
- error: Don't use initGenericErrorDefaultFunc
- xpath: Lower XPath recursion limit on Windows
- Stop including sys/types.h
- Don't define WIN32 macro
- Make xmlNewSAXParserCtx take a const sax handler
- Consolidate private header files
- Remove internal macros from parserInternals.h
- Move some HTML functions to correct header file
- xmllint: Stop calling xmlSAXDefaultVersion
- Introduce xmlNewSAXParserCtxt and htmlNewSAXParserCtxt
- Don't mess with parser options in htmlParseDocument
- Remove useless call to htmlDefaultSAXHandlerInit
- Remove htmlDefaultSAXHandler from non-SAX1 build
- Don't initialize SAX handler in htmlReadMemory
- Fix htmlReadMemory mixing up XML and HTML functions
- Don't use default SAX handler to report unrelated errors
- Create stream with buffer in xmlNewStringInputStream
- xmlcatalog: Fix memory leaks

### Code quality

- xzlib: Fix implicit sign change in xz_open
- parser: Simplify calculation of available buffer space
- parser: Use size_t when subtracting input buffer pointers
- parser: Check for integer overflow when updating checkIndex
- xpath: Fix harmless integer overflow in xmlXPathTranslateFunction
- schematron: Use logical and
- relaxng: Remove useless if statement
- schemas: Remove useless if statement
- pattern: Merge identical branches
- regexp: Add sanity check in xmlRegCalloc2
- regexp: Simplify xmlRegAtomPush
- encoding: Cast toupper argument to unsigned char
- uri: Add explicit cast in xmlSaveUri
- buf: Fix return value of xmlBufGetInputBase
- parser: Fix integer overflow of input ID
- parser: Remove useless ent->etype test in xmlParseReference
- parser: Remove useless ent->children tests in xmlParseReference
- xmlmemory.c: Remove xmlMemContentShow
- libxml.h: Add comments and indentation
- libxml.h: Don't include stdio.h
- xmlexports.h: Disable docs for internal macro XMLPUBLIC
- parser: Simplify xmlParseConditionalSections
- io: Rearrange code in xmlSwitchInputEncodingInt
- warnings: Fix -Wstrict-prototypes warning
- warnings: Remove set-but-unused variables
- Fix compiler warnings in SAX2.c
- Fix unused variable warning in python/types.c
- Fix compiler warning in examples
- Fix compiler warnings in fuzzing code
- Remove unused code in nanohttp.c
- Remove or annotate char casts
- Don't use sizeof(xmlChar) or sizeof(char)
- Remove explicit integer casts

### Deprecations

- parser: Deprecate more internal functions
- parser: Deprecate some parser input functions
- parser: Deprecate xmlString*DecodeEntities
- threads: Deprecate some internal functions
- buf: Deprecate static/immutable buffers
- Deprecate internal parser functions
- Deprecate old HTML SAX API
- Generate deprecation warnings for old SAX API
- Mark more functions setting globals as deprecated
- Mark more parser functions as deprecated
- Mark most SAX1 functions as deprecated
- Deprecate some global variables

### Portability

- autoconf: Warn about outdated C compilers
- win32: Remove broken libxml2.def.src
- Remove symbols from version script
- catalog.c: Silence a cast warning on VS 2022 (Lukáš Tyrychtr)
- libxml.h: Remove ancient LynxOS setup
- Use python3 not python (Ross Burton)
- xstc/fixup-tests.py: port to Python 3 (Ross Burton)
- xstc/fixup-tests.py: unify whitespace (Ross Burton)
- Remove hacky heuristic from b2dc5675 (Alex Richardson)
- Avoid creating an out-of-bounds pointer by rewriting a check
  (Alex Richardson)
- Hide internal functions
- Correctly relocate internal pointers after realloc() (Alex Richardson)
- Visual Studio builds: Allow silencing deprecation warnings (Chun-wei Fan)
- Visual Studio: Define XML_DEPRECATED (Chun-wei Fan)
- xmllint: Include <io.h> on Windows
- warnings: Work around MSVC bug
- sources: Silence C4013 warnings on Visual Studio (Chun-wei Fan)
- python/setup.py.in: Improve Windows import patching (Chun-wei Fan)
- python: Create .pyd on Windows
- Fix Python build on Windows
- Fix Windows compiler warnings in python/types.c
- Fix libxml_PyFileGet
- Remove BeOS support
- Fix libxml_PyFileGet with stdout on macOS
- Migrate from PyEval_ to PyObject_
- Port build_glob.py to Python 3
- Port genChRanges.py to Python 3
- xmlexports.h: Remove LIBXML_FASTCALL optimization
- Remove XMLCALL and XMLCDECL macros from public headers
- Remove XMLDECL macro from .c files

### Build systems

- cmake: Link against `dl` and `dld` only when `LIBXML2_WITH_MODULES` is
  enabled (Alexander Kutelev)
- autotools: Fix make distcheck
- Remove RPM build, Makefile.tests, README.tests
- libxml.m4: deprecate AM_PATH_XML2, wrap PKG_CHECK_MODULES instead
  (Ross Burton)
- libxml.m4: fix -Wstrict-prototypes (Sam James)
- cmake: Build static library with -DLIBXML_STATIC
- autotools: Don't use version script on Windows
- autotools: Fix winsock detection
- autotools: Only add network libraries if HTTP/FTP enabled
- autotools: Disable parallel Python build
- python: Don't output missing generators during build
- build: Remove check for broken ss_family
- http: Simplify IPv6 checks
- autotools: Fix network checks on Windows
- Fix detection of GNU libiconv
- cmake: Fix Python installation
- cmake: Don't check for Python 2
- configure.ac: Also check for MSYS host
- Improve network library detection
- Detect ws2_32 with AC_SEARCH_LIBS
- Rework network configure checks
- Remove arg cast configure checks
- Fix dlopen check
- Remove HAVE_WIN32_THREADS configuration flag
- Rework dlopen and pthread detection
- Fix test in configure.ac
- cmake: Enable GCC compiler warnings
- Always link with -no-undefined
- Use AM_CFLAGS and AM_LDFLAGS consistently
- Remove -Wredundant-decls
- Call AC_CHECK_* with multiple arguments
- configure.ac: Remove checks for unused programs
- Rework library detection in configure.ac
- Rearrange configure.ac
- Consolidate zlib and lzma detection
- Remove "runtime debugging"
- Consolidate simple API modules in configure.ac
- Fix dependency resolution in configure.ac
- Fix --with-valid --without-regexps build
- Fix --with-schemas --without-xpath build
- Don't build unneeded .c source files
- Move xmlIsXHTML to tree.c
- Cleanup distribution settings in Makefile.am
- Also clean *.pyc files for Python 2
- Don't distribute libxml2.spec

### Tests

- testchar: Add test for memory pull parser with encoding
- fuzz: Also test init function of URI fuzzer
- fuzz: Separate fuzzer for DTD validation
- gitlab-ci: Enable all "integer" sanitizers
- fuzz: Inject random malloc failures
- fuzz: Support variable integer sizes in fuzz data
- fuzz: Fix duplicate detection in fuzzEntityRecorder
- fuzz: Set filename in xmlFuzzEntityLoader
- fuzz: Allow xmlFuzzReadString(NULL)
- fuzz: Fix Makefile dependencies
- fuzz: Add test/recurse to seed corpus
- fuzz: Add separate XInclude fuzzer
- runsuite: Some errors are expected
- testrecurse: Test entity expansion stats
- testapi.c: Initialize catalog early
- gentest.py: Fix memory leak in API tests
- tests: Enable "runsuite" test
- python/tests/reader2: use absolute paths everywhere (Ross Burton)
- python/tests/reader2: always exit(1) if a test fails (Ross Burton)
- testModule: exit if the module can't be opened (Ross Burton)
- CI: disable modules in gcc:static build (Ross Burton)
- CI: fix CI on MinGW builds (Ross Burton)
- python: Fix memory leak checks
- tests: Check that xmlInitParser doesn't allocate memory
- tests: Fix use-after-free in Python tests
- tests: Remove unneeded #includes
- gitlab-ci: Make Test-Msvc exit if ctest fails
- gitlab-ci: Treat compiler warnings as errors on MSVC
- test: Add test for push parser boundaries
- gitlab-ci: Upgrade image to Ubuntu 22.10, reenable MSan
- gitlab-ci: Reenable LeakSanitizer
- gitlab-ci: Fix llvm-symbolizer
- xinclude: Don't create result doc for test with errors
- xinclude: Also test error messages
- gitlab-ci: Allow cast-align warnings from clang
- gitlab-ci: Fix tar invocation
- gitlab-ci: Move MSVC test to separate script
- gitlab-ci: Fix SUFFIX, remove MINGW_PATH
- gitlab-ci: Consolidate CMake test scripts
- gitlab-ci: Only install MinGW autotools if needed
- gitlab-ci: Only install cmake MinGW package if needed
- gitlab-ci: Install 7-Zip using the .msi
- Use $MSYSTEM and 'bash -lc' in MinGW CI
- Add CI job for MinGW/Autotools
- Consolidate CI scripts
- Allow empty MINGW_PACKAGE_PREFIX
- Move Dockerfile to .gitlab-ci directory
- testapi: Disable on Windows for now
- Disable fuzzer tests if glob.h wasn't found
- Move automata test to runtest.c
- Fix testapi when building --without-sax1

# Documentation

- doc: Remove ancient files
- Remove ancient TODOs
- html: Fix htmlInitAutoClose documentation
- doc: Mention new location of XML catalog as breaking change
- doc: Mention potentially breaking changes in NEWS
- doc: Remove xmlDllMain from documentation and version script
- doc: Mention ${sysconfdir} in man pages
- doc: Document xmlcatalog --convert
- doc: Document xmllint --nodict and --pedantic
- doc: Fix indentation in source XML files
- xmllint: Document --quiet option
- Improve cross-references in API docs
- Improve documentation of globals
- Fix documentation parser
- Support comments for global variables in documentation
- Fix update call in apibuild.py
- Don't index anything in DOC_DISABLE sections
- Fix warnings from apibuild.py
- Start with documentation for maintainers

Revision 1.176 / (download) - annotate - [select for diffs], Sun Dec 17 15:46:59 2023 UTC (3 months, 1 week ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4
Changes since 1.175: +2 -2 lines
Diff to previous 1.175 (colored) to selected 1.35 (colored)

libxml2: bump PKGREVISION for previous

Revision 1.175 / (download) - annotate - [select for diffs], Sun Dec 17 15:43:08 2023 UTC (3 months, 1 week ago) by thor
Branch: MAIN
Changes since 1.174: +3 -3 lines
Diff to previous 1.174 (colored) to selected 1.35 (colored)

textproc/libxml2: actually activate the added args from last commit

Intermediate testing caused the commmit to contain the wrong file.

Revision 1.174 / (download) - annotate - [select for diffs], Sun Dec 17 15:42:08 2023 UTC (3 months, 1 week ago) by thor
Branch: MAIN
Changes since 1.173: +4 -2 lines
Diff to previous 1.173 (colored) to selected 1.35 (colored)

textproc/libxml2: add --with-ftp --with-legacy to fix depdendents

This version of libxml2 drops things other packages depend on, namely
these both cause symbols being missed by py-libxml2 (xmlNanoFTPProxy or
xmlParseQuotedString, for example).

Revision 1.173 / (download) - annotate - [select for diffs], Wed Nov 15 15:53:41 2023 UTC (4 months, 1 week ago) by nia
Branch: MAIN
Changes since 1.172: +7 -2 lines
Diff to previous 1.172 (colored) to selected 1.35 (colored)

libxml2: Fix xml2-config script on systems without -Wl,-R

Revision 1.172 / (download) - annotate - [select for diffs], Wed Nov 8 13:21:06 2023 UTC (4 months, 2 weeks ago) by wiz
Branch: MAIN
Changes since 1.171: +2 -2 lines
Diff to previous 1.171 (colored) to selected 1.35 (colored)

*: recursive bump for icu 74.1

Revision 1.171 / (download) - annotate - [select for diffs], Mon Aug 14 05:25:23 2023 UTC (7 months, 2 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3
Changes since 1.170: +2 -2 lines
Diff to previous 1.170 (colored) to selected 1.35 (colored)

*: recursive bump for Python 3.11 as new default

Revision 1.170 / (download) - annotate - [select for diffs], Wed Apr 19 08:08:46 2023 UTC (11 months, 1 week ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2023Q2-base, pkgsrc-2023Q2
Changes since 1.169: +2 -1 lines
Diff to previous 1.169 (colored) to selected 1.35 (colored)

revbump after textproc/icu update

Revision 1.167.2.1 / (download) - annotate - [select for diffs], Sun Apr 16 14:52:36 2023 UTC (11 months, 1 week ago) by bsiegert
Branch: pkgsrc-2023Q1
Changes since 1.167: +1 -2 lines
Diff to previous 1.167 (colored) next main 1.168 (colored) to selected 1.35 (colored)

Pullup ticket #6753 - requested by gutteridge
textproc/libxml2: security fix
textproc/py-libxml2: security fix

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.169
- textproc/libxml2/Makefile.common                              1.20
- textproc/libxml2/distinfo                                     1.144
- textproc/py-libxml2/Makefile                                  1.85

---
   Module Name:    pkgsrc
   Committed By:   gutteridge
   Date:           Sat Apr 15 13:06:22 UTC 2023

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

   Log Message:
   libxml2 & py-libxml2: update to 2.10.4

   v2.10.4: Apr 11 2023

   ### Security

   - [CVE-2023-29469] Hashing of empty dict strings isn't deterministic
   - [CVE-2023-28484] Fix null deref in xmlSchemaFixupComplexType
   - schemas: Fix null-pointer-deref in xmlSchemaCheckCOSSTDerivedOK

   ### Regressions

   - SAX2: Ignore namespaces in HTML documents
   - io: Fix "buffer full" error with certain buffer sizes

Revision 1.169 / (download) - annotate - [select for diffs], Sat Apr 15 13:06:21 2023 UTC (11 months, 2 weeks ago) by gutteridge
Branch: MAIN
Changes since 1.168: +1 -2 lines
Diff to previous 1.168 (colored) to selected 1.35 (colored)

libxml2 & py-libxml2: update to 2.10.4

v2.10.4: Apr 11 2023

### Security

- [CVE-2023-29469] Hashing of empty dict strings isn't deterministic
- [CVE-2023-28484] Fix null deref in xmlSchemaFixupComplexType
- schemas: Fix null-pointer-deref in xmlSchemaCheckCOSSTDerivedOK

### Regressions

- SAX2: Ignore namespaces in HTML documents
- io: Fix "buffer full" error with certain buffer sizes

Revision 1.168 / (download) - annotate - [select for diffs], Thu Mar 30 09:59:18 2023 UTC (11 months, 4 weeks ago) by rillig
Branch: MAIN
Changes since 1.167: +1 -2 lines
Diff to previous 1.167 (colored) to selected 1.35 (colored)

libxml2: remove unknown configure option

Revision 1.165.2.1 / (download) - annotate - [select for diffs], Sat Mar 4 12:54:51 2023 UTC (12 months, 3 weeks ago) by spz
Branch: pkgsrc-2022Q4
Changes since 1.165: +4 -23 lines
Diff to previous 1.165 (colored) next main 1.166 (colored) to selected 1.35 (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.167 / (download) - annotate - [select for diffs], Fri Jan 27 14:49:37 2023 UTC (14 months ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base
Branch point for: pkgsrc-2023Q1
Changes since 1.166: +3 -1 lines
Diff to previous 1.166 (colored) to selected 1.35 (colored)

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.

Revision 1.166 / (download) - annotate - [select for diffs], Sun Jan 22 10:30:08 2023 UTC (14 months ago) by wiz
Branch: MAIN
Changes since 1.165: +2 -23 lines
Diff to previous 1.165 (colored) to selected 1.35 (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.165 / (download) - annotate - [select for diffs], Wed Nov 23 16:19:03 2022 UTC (16 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2022Q4-base
Branch point for: pkgsrc-2022Q4
Changes since 1.164: +2 -1 lines
Diff to previous 1.164 (colored) to selected 1.35 (colored)

massive revision bump after textproc/icu update

Revision 1.164 / (download) - annotate - [select for diffs], Fri May 6 00:55:54 2022 UTC (22 months, 3 weeks ago) by gutteridge
Branch: MAIN
CVS Tags: pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2
Changes since 1.163: +1 -2 lines
Diff to previous 1.163 (colored) to selected 1.35 (colored)

libxml2: update to 2.9.14, includes security fixes

v2.9.14: May 02 2022:
   - Security:
  [CVE-2022-29824] Integer overflow in xmlBuf and xmlBuffer
  Fix potential double-free in xmlXPtrStringRangeFunction
  Fix memory leak in xmlFindCharEncodingHandler
  Normalize XPath strings in-place
  Prevent integer-overflow in htmlSkipBlankChars() and xmlSkipBlankChars()
    (David Kilzer)
  Fix leak of xmlElementContent (David Kilzer)

   - Bug fixes:
  Fix parsing of subtracted regex character classes
  Fix recursion check in xinclude.c
  Reset last error in xmlCleanupGlobals
  Fix certain combinations of regex range quantifiers
  Fix range quantifier on subregex

   - Improvements:
  Fix recovery from invalid HTML start tags

   - Build system, portability:
  Define LFS macros before including system headers
  Initialize XPath floating-point globals
  configure: check for icu DEFS (James Hilliard)
  configure.ac: produce tar.xz only (GNOME policy) (David Seifert)
  CMakeLists.txt: Fix LIBXML_VERSION_NUMBER
  Fix build with older Python versions
  Fix --without-valid build

Revision 1.163 / (download) - annotate - [select for diffs], Mon Apr 18 19:10:09 2022 UTC (23 months, 1 week ago) by adam
Branch: MAIN
Changes since 1.162: +2 -1 lines
Diff to previous 1.162 (colored) to selected 1.35 (colored)

revbump for textproc/icu update

Revision 1.162 / (download) - annotate - [select for diffs], Sat Mar 12 07:33:22 2022 UTC (2 years ago) by kim
Branch: MAIN
CVS Tags: pkgsrc-2022Q1-base, pkgsrc-2022Q1
Changes since 1.161: +5 -3 lines
Diff to previous 1.161 (colored) to selected 1.35 (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.161 / (download) - annotate - [select for diffs], Wed Dec 8 16:02:43 2021 UTC (2 years, 3 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base, pkgsrc-2021Q4
Changes since 1.160: +2 -2 lines
Diff to previous 1.160 (colored) to selected 1.35 (colored)

revbump for icu and libffi

Revision 1.160 / (download) - annotate - [select for diffs], Wed Jul 21 13:55:07 2021 UTC (2 years, 8 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base, pkgsrc-2021Q3
Changes since 1.159: +2 -1 lines
Diff to previous 1.159 (colored) to selected 1.35 (colored)

libxml2: don't show non-existent -I/usr/include in "xml2-config --cflags"

Check that the iconv include directory actually exists before adding it
to xml2-config. This fixes build of lang/llvm on Darwin. Bump PKGREVISION.

Revision 1.157.4.1 / (download) - annotate - [select for diffs], Tue May 25 14:44:14 2021 UTC (2 years, 10 months ago) by bsiegert
Branch: pkgsrc-2021Q1
Changes since 1.157: +1 -2 lines
Diff to previous 1.157 (colored) next main 1.158 (colored) to selected 1.35 (colored)

Pullup ticket #6458 - requested by nia
textproc/libxml2: security fix

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.159
- textproc/libxml2/Makefile.common                              1.14
- textproc/libxml2/distinfo                                     1.135
- textproc/libxml2/patches/patch-parser.c                       deleted
- textproc/libxml2/patches/patch-python-types.c                 deleted
- textproc/libxml2/patches/patch-python_libxml.c                deleted
- textproc/libxml2/patches/patch-xmlschemas.c                   deleted
- textproc/py-libxml2/Makefile                                  1.68

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Sun May 23 19:31:47 UTC 2021

   Modified Files:
   	pkgsrc/textproc/libxml2: Makefile Makefile.common distinfo
   	pkgsrc/textproc/py-libxml2: Makefile
   Removed Files:
   	pkgsrc/textproc/libxml2/patches: patch-parser.c patch-python-types.c
   	    patch-python_libxml.c patch-xmlschemas.c

   Log Message:
   libxml2: update to 2.9.12

   2.9.12:
   "Brown paper bag release, some recently added sources were missing from
   the 2.9.11 tarball."

   2.9.11:
   "Prompted by CVE-2021-3541, but this includes an awful lot of serious bug
   fixes by Nick and others."

Revision 1.159 / (download) - annotate - [select for diffs], Sun May 23 19:31:47 2021 UTC (2 years, 10 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2021Q2-base, pkgsrc-2021Q2
Changes since 1.158: +1 -2 lines
Diff to previous 1.158 (colored) to selected 1.35 (colored)

libxml2: update to 2.9.12

2.9.12:
"Brown paper bag release, some recently added sources were missing from
the 2.9.11 tarball."

2.9.11:
"Prompted by CVE-2021-3541, but this includes an awful lot of serious bug
fixes by Nick and others."

Revision 1.158 / (download) - annotate - [select for diffs], Wed Apr 21 11:40:41 2021 UTC (2 years, 11 months ago) by adam
Branch: MAIN
Changes since 1.157: +2 -2 lines
Diff to previous 1.157 (colored) to selected 1.35 (colored)

revbump for textproc/icu

Revision 1.157 / (download) - annotate - [select for diffs], Thu Nov 5 09:07:10 2020 UTC (3 years, 4 months ago) by ryoon
Branch: MAIN
CVS Tags: pkgsrc-2021Q1-base, pkgsrc-2020Q4-base, pkgsrc-2020Q4
Branch point for: pkgsrc-2021Q1
Changes since 1.156: +2 -2 lines
Diff to previous 1.156 (colored) to selected 1.35 (colored)

*: Recursive revbump from textproc/icu-68.1

Revision 1.156 / (download) - annotate - [select for diffs], Tue Jun 2 08:22:58 2020 UTC (3 years, 9 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2
Changes since 1.155: +2 -2 lines
Diff to previous 1.155 (colored) to selected 1.35 (colored)

Revbump for icu

Revision 1.154.4.1 / (download) - annotate - [select for diffs], Mon Jan 27 10:13:42 2020 UTC (4 years, 2 months ago) by bsiegert
Branch: pkgsrc-2019Q4
Changes since 1.154: +2 -1 lines
Diff to previous 1.154 (colored) next main 1.155 (colored) to selected 1.35 (colored)

Pullup ticket #6122 - requested by kim
textproc/libxml2: security fix

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.155
- textproc/libxml2/distinfo                                     1.132
- textproc/libxml2/patches/patch-parser.c                       1.7
- textproc/libxml2/patches/patch-xmlschemas.c                   1.1

---
   Module Name:    pkgsrc
   Committed By:   kim
   Date:           Fri Jan 24 10:40:36 UTC 2020

   Modified Files:
           pkgsrc/textproc/libxml2: Makefile distinfo
   Added Files:
           pkgsrc/textproc/libxml2/patches: patch-parser.c patch-xmlschemas.c

   Log Message:
   Apply upstream patch for CVE-2020-7595.
   Apply upstream pull request for CVE-2019-20388.

Revision 1.155 / (download) - annotate - [select for diffs], Fri Jan 24 10:40:36 2020 UTC (4 years, 2 months ago) by kim
Branch: MAIN
CVS Tags: pkgsrc-2020Q1-base, pkgsrc-2020Q1
Changes since 1.154: +2 -1 lines
Diff to previous 1.154 (colored) to selected 1.35 (colored)

Apply upstream patch for CVE-2020-7595.
Apply upstream pull request for CVE-2019-20388.

Revision 1.154 / (download) - annotate - [select for diffs], Mon Nov 4 21:43:38 2019 UTC (4 years, 4 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base
Branch point for: pkgsrc-2019Q4
Changes since 1.153: +2 -2 lines
Diff to previous 1.153 (colored) to selected 1.35 (colored)

textproc: align variable assignments

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

No manual corrections.

Revision 1.153 / (download) - annotate - [select for diffs], Wed Jul 3 16:54:32 2019 UTC (4 years, 8 months ago) by sevan
Branch: MAIN
CVS Tags: pkgsrc-2019Q3-base, pkgsrc-2019Q3
Changes since 1.152: +2 -1 lines
Diff to previous 1.152 (colored) to selected 1.35 (colored)

Avoid trying to disable warnings for array boundary checks on Darwin.
On legacy toolchains e.g Tiger, it results in a hard error as it's not recognised.

Revision 1.151.2.1 / (download) - annotate - [select for diffs], Mon Feb 18 14:05:52 2019 UTC (5 years, 1 month ago) by bsiegert
Branch: pkgsrc-2018Q4
Changes since 1.151: +3 -5 lines
Diff to previous 1.151 (colored) next main 1.152 (colored) to selected 1.35 (colored)

Pullup ticket #5911 - requested by taca
textproc/libxml2, textproc/py-libxml2: security fix

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.152
- textproc/libxml2/Makefile.common                              1.12
- textproc/libxml2/distinfo                                     1.129-1.130
- textproc/libxml2/patches/patch-Makefile.in                    1.1
- textproc/libxml2/patches/patch-aa                             deleted
- textproc/libxml2/patches/patch-ab                             deleted
- textproc/libxml2/patches/patch-ac                             deleted
- textproc/libxml2/patches/patch-ad                             deleted
- textproc/libxml2/patches/patch-ae                             deleted
- textproc/libxml2/patches/patch-catalog.c                      1.1
- textproc/libxml2/patches/patch-configure                      1.1
- textproc/libxml2/patches/patch-doc_examples_Makefile.in       1.1
- textproc/libxml2/patches/patch-parser.c                       deleted
- textproc/libxml2/patches/patch-python_libxml.c                1.1
- textproc/libxml2/patches/patch-result_errors_759573.xml.err   deleted
- textproc/libxml2/patches/patch-xmlcatalog.c                   1.1
- textproc/libxml2/patches/patch-xpath.c                        deleted
- textproc/libxml2/patches/patch-xzlib.c                        deleted
- textproc/py-libxml2/Makefile                                  1.63-1.64
- textproc/py-libxml2/PLIST                                     1.4

---
   Module Name:	pkgsrc
   Committed By:	wiz
   Date:		Wed Jan  9 13:40:51 UTC 2019

   Modified Files:
   	pkgsrc/textproc/libxml2: distinfo
   	pkgsrc/textproc/py-libxml2: Makefile
   Added Files:
   	pkgsrc/textproc/libxml2/patches: patch-python_libxml.c

   Log Message:
   py-libxml2: work around a problem in error handling.

   In some cases, invalid UTF-8 strings were returned which caused
   python interpreter crashes. See

   https://github.com/itstool/itstool/issues/22

   Use a variant of the patch that was used in Fedora.

   Bump PKGREVISION.

---
   Module Name:	pkgsrc
   Committed By:	adam
   Date:		Wed Jan  9 19:09:03 UTC 2019

   Modified Files:
   	pkgsrc/textproc/libxml2: Makefile Makefile.common distinfo
   	pkgsrc/textproc/py-libxml2: Makefile PLIST
   Added Files:
   	pkgsrc/textproc/libxml2/patches: patch-Makefile.in patch-catalog.c
   	    patch-configure patch-doc_examples_Makefile.in patch-xmlcatalog.c
   Removed Files:
   	pkgsrc/textproc/libxml2/patches: patch-aa patch-ab patch-ac patch-ad
   	    patch-ae patch-parser.c patch-result_errors_759573.xml.err
   	    patch-xpath.c patch-xzlib.c

   Log Message:
   libxml2: updated to 2.9.9

   v2.9.9:
   Security:
   CVE-2018-9251 CVE-2018-14567 Fix infinite loop in LZMA decompression
   CVE-2018-14404 Fix nullptr deref with XPath logic ops

   Documentation:
   reader: Fix documentation comment

   Portability:
   Fix MSVC build with lzma
   Variables need 'extern' in static lib on Cygwin
   Really declare dllexport/dllimport for Cygwin
   Merge branch 'patch-2' into 'master'
   Change dir to $THEDIR after ACLOCAL_PATH check autoreconf creates aclocal.m4 in $srcdir
   Improve error message if pkg.m4 couldn't be found
   NaN and Inf fixes for pre-C99 compilers

   Bug Fixes:
   Revert "Support xmlTextReaderNextSibling w/o preparsed doc"
   Fix building relative URIs
   Problem with data in interleave in RelaxNG validation
   Fix memory leak in xmlSwitchInputEncodingInt error path
   Set doc on element obtained from freeElems
   Fix HTML serialization with UTF-8 encoding
   Use actual doc in xmlTextReaderRead*Xml
   Unlink node before freeing it in xmlSAX2StartElement
   Check return value of nodePush in xmlSAX2StartElement
   Free input buffer in xmlHaltParser
   Reset HTML parser input pointers on encoding failure
   Don't run icu_parse_test if EUC-JP is unsupported
   Fix xmlSchemaValidCtxtPtr reuse memory leak
   Fix xmlTextReaderNext with preparsed document
   Remove stray character from comment
   Remove a misleading line from xmlCharEncOutput
   HTML noscript should not close p
   Don't change context node in xmlXPathRoot
   Stop using XPATH_OP_RESET
   Revert "Change calls to xmlCharEncInput to set flush false"

   Improvements:
   Fix "Problem with data in interleave in RelaxNG validation"
   cleanup: remove some unreachable code
   add --relative to testURI
   Remove redefined starts and defines inside include elements
   Allow choice within choice in nameClass in RELAX NG
   Look inside divs for starts and defines inside include
   Add compile and libxml2-config.cmake to .gitignore
   Stop using doc-&gt;charset outside parser code
   Add newlines to 'xmllint --xpath' output
   Don't include SAX.h from globals.h
   Support xmlTextReaderNextSibling w/o preparsed doc
   Don't instruct user to run make when autogen.sh failed
   Run Travis ASan tests with "sudo: required"
   Improve restoring of context size and position
   Simplify and harden nodeset filtering
   Avoid unnecessary backups of the context node
   Fix inconsistency in xmlXPathIsInf

Revision 1.152 / (download) - annotate - [select for diffs], Wed Jan 9 19:09:02 2019 UTC (5 years, 2 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1
Changes since 1.151: +3 -5 lines
Diff to previous 1.151 (colored) to selected 1.35 (colored)

libxml2: updated to 2.9.9

v2.9.9:
Security:
CVE-2018-9251 CVE-2018-14567 Fix infinite loop in LZMA decompression
CVE-2018-14404 Fix nullptr deref with XPath logic ops

Documentation:
reader: Fix documentation comment

Portability:
Fix MSVC build with lzma
Variables need 'extern' in static lib on Cygwin
Really declare dllexport/dllimport for Cygwin
Merge branch 'patch-2' into 'master'
Change dir to $THEDIR after ACLOCAL_PATH check autoreconf creates aclocal.m4 in $srcdir
Improve error message if pkg.m4 couldn't be found
NaN and Inf fixes for pre-C99 compilers

Bug Fixes:
Revert "Support xmlTextReaderNextSibling w/o preparsed doc"
Fix building relative URIs
Problem with data in interleave in RelaxNG validation
Fix memory leak in xmlSwitchInputEncodingInt error path
Set doc on element obtained from freeElems
Fix HTML serialization with UTF-8 encoding
Use actual doc in xmlTextReaderRead*Xml
Unlink node before freeing it in xmlSAX2StartElement
Check return value of nodePush in xmlSAX2StartElement
Free input buffer in xmlHaltParser
Reset HTML parser input pointers on encoding failure
Don't run icu_parse_test if EUC-JP is unsupported
Fix xmlSchemaValidCtxtPtr reuse memory leak
Fix xmlTextReaderNext with preparsed document
Remove stray character from comment
Remove a misleading line from xmlCharEncOutput
HTML noscript should not close p
Don't change context node in xmlXPathRoot
Stop using XPATH_OP_RESET
Revert "Change calls to xmlCharEncInput to set flush false"

Improvements:
Fix "Problem with data in interleave in RelaxNG validation"
cleanup: remove some unreachable code
add --relative to testURI
Remove redefined starts and defines inside include elements
Allow choice within choice in nameClass in RELAX NG
Look inside divs for starts and defines inside include
Add compile and libxml2-config.cmake to .gitignore
Stop using doc-&gt;charset outside parser code
Add newlines to 'xmllint --xpath' output
Don't include SAX.h from globals.h
Support xmlTextReaderNextSibling w/o preparsed doc
Don't instruct user to run make when autogen.sh failed
Run Travis ASan tests with "sudo: required"
Improve restoring of context size and position
Simplify and harden nodeset filtering
Avoid unnecessary backups of the context node
Fix inconsistency in xmlXPathIsInf

Revision 1.151 / (download) - annotate - [select for diffs], Fri Nov 9 15:31:46 2018 UTC (5 years, 4 months ago) by leot
Branch: MAIN
CVS Tags: pkgsrc-2018Q4-base
Branch point for: pkgsrc-2018Q4
Changes since 1.150: +2 -2 lines
Diff to previous 1.150 (colored) to selected 1.35 (colored)

libxml2: Add a patch from upstream to fix CVE-2017-8872

Patch provided by Attila Fülöp via PR pkg/53704, thanks!

Revision 1.150 / (download) - annotate - [select for diffs], Sat Oct 13 09:05:42 2018 UTC (5 years, 5 months ago) by leot
Branch: MAIN
Changes since 1.149: +2 -2 lines
Diff to previous 1.149 (colored) to selected 1.35 (colored)

libxml2: Backport upstream patch for CVE-2018-9251 and CVE-2018-14567

Revision 1.149 / (download) - annotate - [select for diffs], Thu Aug 9 18:44:13 2018 UTC (5 years, 7 months ago) by snj
Branch: MAIN
CVS Tags: pkgsrc-2018Q3-base, pkgsrc-2018Q3
Changes since 1.148: +2 -2 lines
Diff to previous 1.148 (colored) to selected 1.35 (colored)

textproc/libxml2: Fix CVE-2018-14404.

Bump PKGREVISION.

Revision 1.148 / (download) - annotate - [select for diffs], Wed Jun 20 18:22:45 2018 UTC (5 years, 9 months ago) by tez
Branch: MAIN
CVS Tags: pkgsrc-2018Q2-base, pkgsrc-2018Q2
Changes since 1.147: +3 -1 lines
Diff to previous 1.147 (colored) to selected 1.35 (colored)

libxml2: Fix for CVE-2018-9251

from https://bugzilla.gnome.org/show_bug.cgi?id=794914

Revision 1.147 / (download) - annotate - [select for diffs], Wed Mar 14 10:49:00 2018 UTC (6 years ago) by maya
Branch: MAIN
CVS Tags: pkgsrc-2018Q1-base, pkgsrc-2018Q1
Changes since 1.146: +3 -1 lines
Diff to previous 1.146 (colored) to selected 1.35 (colored)

libxml2: fix compilation on Solaris 11.3

We use INFINITY which is available on C99 and later, so be explicit
that we compile C99 code.

Also tested as compiling fine on netbsd-current.

Fixes PR pkg/53098

Revision 1.146 / (download) - annotate - [select for diffs], Sun Sep 10 20:49:20 2017 UTC (6 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3
Changes since 1.145: +1 -3 lines
Diff to previous 1.145 (colored) to selected 1.35 (colored)

Updated libxml2 to 2.9.5.

2.9.5: Sep 04 2017
 Reference Manual
 Security:
   Detect infinite recursion in parameter entities
   (Nick Wellnhofer),
   Fix handling of parameter-entity references (Nick
   Wellnhofer),
   Disallow namespace nodes in XPointer ranges (Nick
   Wellnhofer),
   Fix XPointer paths beginning with range-to (Nick
   Wellnhofer)
 Documentation:
   Documentation fixes (Nick Wellnhofer),
   Spelling and grammar fixes (Nick Wellnhofer)
 Portability:
   Adding README.zOS to list of extra files for the
   release (Daniel Veillard),
   Description of work needed to compile on zOS
   (Stéphane Michaut),
   Porting libxml2 on zOS encoding of code (Stéphane
   Michaut),
   small changes for OS/400 (Patrick Monnerat),
   relaxng.c, xmlschemas.c: Fix build on pre-C99
   compilers (Chun-wei Fan)
 Bug Fixes:
   Problem resolving relative URIs (Daniel
   Veillard),
   Fix unwanted warnings when switching encodings
   (Nick Wellnhofer),
   Fix signature of xmlSchemaAugmentImportedIDC
   (Daniel Veillard),
   Heap-buffer-overflow read of size 1 in
   xmlFAParsePosCharGroup (David Kilzer),
   Fix NULL pointer deref in xmlFAParseCharClassEsc
   (Nick Wellnhofer),
   Fix infinite loops with push parser in recovery
   mode (Nick Wellnhofer),
   Send xmllint usage error to stderr (Nick
   Wellnhofer),
   Fix NULL deref in xmlParseExternalEntityPrivate
   (Nick Wellnhofer),
   Make sure not to call IS_BLANK_CH when parsing
   the DTD (Nick Wellnhofer),
   Fix xmlHaltParser (Nick Wellnhofer),
   Fix pathological performance when outputting
   charrefs (Nick Wellnhofer),
   Fix invalid-source-encoding warnings in
   testWriter.c (Nick Wellnhofer),
   Fix duplicate SAX callbacks for entity content
   (David Kilzer),
   Treat URIs with scheme as absolute in C14N (Nick
   Wellnhofer),
   Fix copy-paste errors in error messages (Nick
   Wellnhofer),
   Fix sanity check in htmlParseNameComplex (Nick
   Wellnhofer),
   Fix potential infinite loop in
   xmlStringLenDecodeEntities (Nick Wellnhofer),
   Reset parser input pointers on encoding failure
   (Nick Wellnhofer),
   Fix memory leak in xmlParseEntityDecl error path
   (Nick Wellnhofer),
   Fix xmlBuildRelativeURI for URIs starting with '.
   /' (Nick Wellnhofer),
   Fix type confusion in xmlValidateOneNamespace
   (Nick Wellnhofer),
   Fix memory leak in xmlStringLenGetNodeList (Nick
   Wellnhofer),
   Fix NULL pointer deref in xmlDumpElementContent
   (Daniel Veillard),
   Fix memory leak in xmlBufAttrSerializeTxtContent
   (Nick Wellnhofer),
   Stop parser on unsupported encodings (Nick
   Wellnhofer),
   Check for integer overflow in memory debug code
   (Nick Wellnhofer),
   Fix buffer size checks in
   xmlSnprintfElementContent (Nick Wellnhofer),
   Avoid reparsing in xmlParseStartTag2 (Nick
   Wellnhofer),
   Fix undefined behavior in
   xmlRegExecPushStringInternal (Nick Wellnhofer),
   Check XPath exponents for overflow (Nick
   Wellnhofer),
   Check for overflow in
   xmlXPathIsPositionalPredicate (Nick Wellnhofer),
   Fix spurious error message (Nick Wellnhofer),
   Fix memory leak in xmlCanonicPath (Nick
   Wellnhofer),
   Fix memory leak in xmlXPathCompareNodeSetValue
   (Nick Wellnhofer),
   Fix memory leak in pattern error path (Nick
   Wellnhofer),
   Fix memory leak in parser error path (Nick
   Wellnhofer),
   Fix memory leaks in XPointer error paths (Nick
   Wellnhofer),
   Fix memory leak in xmlXPathNodeSetMergeAndClear
   (Nick Wellnhofer),
   Fix memory leak in XPath filter optimizations
   (Nick Wellnhofer),
   Fix memory leaks in XPath error paths (Nick
   Wellnhofer),
   Do not leak the new CData node if adding fails
   (David Tardon),
   Prevent unwanted external entity reference (Neel
   Mehta),
   Increase buffer space for port in HTTP redirect
   support (Daniel Veillard),
   Fix more NULL pointer derefs in xpointer.c (Nick
   Wellnhofer),
   Avoid function/data pointer conversion in xpath.c
   (Nick Wellnhofer),
   Fix format string warnings (Nick Wellnhofer),
   Disallow namespace nodes in XPointer points (Nick
   Wellnhofer),
   Fix comparison with root node in xmlXPathCmpNodes
   (Nick Wellnhofer),
   Fix attribute decoding during XML schema
   validation (Alex Henrie),
   Fix NULL pointer deref in XPointer range-to (Nick
   Wellnhofer)
 Improvements:
   Updating the spec file to reflect Fedora 24
   (Daniel Veillard),
   Add const in five places to move 1 KiB to .rdata
   (Bruce Dawson),
   Fix missing part of comment for function
   xmlXPathEvalExpression() (Daniel Veillard),
   Get rid of "blanks wrapper" for parameter
   entities (Nick Wellnhofer),
   Simplify handling of parameter entity references
   (Nick Wellnhofer),
   Deduplicate code in encoding.c (Nick Wellnhofer),
   Make HTML parser functions take const pointers
   (Nick Wellnhofer),
   Build test programs only when needed (Nick
   Wellnhofer),
   Fix doc/examples/index.py (Nick Wellnhofer),
   Fix compiler warnings in threads.c (Nick
   Wellnhofer),
   Fix empty-body warning in nanohttp.c (Nick
   Wellnhofer),
   Fix cast-align warnings (Nick Wellnhofer),
   Fix unused-parameter warnings (Nick Wellnhofer),
   Rework entity boundary checks (Nick Wellnhofer),
   Don't switch encoding for internal parameter
   entities (Nick Wellnhofer),
   Merge duplicate code paths handling PE references
   (Nick Wellnhofer),
   Test SAX2 callbacks with entity substitution
   (Nick Wellnhofer),
   Support catalog and threads tests under
   --without-sax1 (Nick Wellnhofer),
   Misc fixes for 'make tests' (Nick Wellnhofer),
   Initialize keepBlanks in HTML parser (Nick
   Wellnhofer),
   Add test cases for bug 758518 (David Kilzer),
   Fix compiler warning in htmlParseElementInternal
   (Nick Wellnhofer),
   Remove useless check in xmlParseAttributeListDecl
   (Nick Wellnhofer),
   Allow zero sized memory input buffers (Nick
   Wellnhofer),
   Add TODO comment in xmlSwitchEncoding (Nick
   Wellnhofer),
   Check for integer overflow in
   xmlXPathFormatNumber (Nick Wellnhofer),
   Make Travis print UBSan stacktraces (Nick
   Wellnhofer),
   Add .travis.yml (Nick Wellnhofer),
   Fix expected error output in Python tests (Nick
   Wellnhofer),
   Simplify control flow in xmlParseStartTag2 (Nick
   Wellnhofer),
   Disable LeakSanitizer when running API tests
   (Nick Wellnhofer),
   Avoid out-of-bound array access in API tests
   (Nick Wellnhofer),
   Avoid spurious UBSan errors in parser.c (Nick
   Wellnhofer),
   Parse small XPath numbers more accurately (Nick
   Wellnhofer),
   Rework XPath rounding functions (Nick
   Wellnhofer),
   Fix white space in test output (Nick Wellnhofer),
   Fix axis traversal from attribute and namespace
   nodes (Nick Wellnhofer),
   Check for trailing characters in XPath
   expressions earlier (Nick Wellnhofer),
   Rework final handling of XPath results (Nick
   Wellnhofer),
   Make xmlXPathEvalExpression call xmlXPathEval
   (Nick Wellnhofer),
   Remove unused variables (Nick Wellnhofer),
   Don't print generic error messages in XPath tests
   (Nick Wellnhofer)
 Cleanups:
   Fix a couple of misleading indentation errors
   (Daniel Veillard),
   Remove unnecessary calls to xmlPopInput (Nick
   Wellnhofer)

Revision 1.143.2.1 / (download) - annotate - [select for diffs], Wed Jun 21 18:17:36 2017 UTC (6 years, 9 months ago) by bsiegert
Branch: pkgsrc-2017Q1
Changes since 1.143: +2 -2 lines
Diff to previous 1.143 (colored) next main 1.144 (colored) to selected 1.35 (colored)

Pullup ticket #5478 - requested by sevan
textproc/libxml2: security fix

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.144
- textproc/libxml2/distinfo                                     1.115
- textproc/libxml2/patches/patch-valid.c                        1.1

---
   Module Name:    pkgsrc
   Committed By:   maya
   Date:           Sun Jun 11 04:40:53 UTC 2017

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

   Log Message:
   libxml2: Apply upstream patch for CVE-2017-5969.
   (Minor issue, only a denial-of-service when using recover mode)

   bump PKGREVISION

Revision 1.145 / (download) - annotate - [select for diffs], Wed Jun 21 00:23:23 2017 UTC (6 years, 9 months ago) by tez
Branch: MAIN
CVS Tags: pkgsrc-2017Q2-base, pkgsrc-2017Q2
Changes since 1.144: +1 -1 lines
Diff to previous 1.144 (colored) to selected 1.35 (colored)

xmlSnprintfElementContent failed to correctly check the available
buffer space in two locations.
Fixes bug 781333 (CVE-2017-9047) and bug 781701 (CVE-2017-9048).
From: https://git.gnome.org/browse/libxml2/commit/?id=932cc9896ab41475d4aa429c27d9afd175959d74


There were two bugs where parameter-entity references could lead to an
unexpected change of the input buffer in xmlParseNameComplex and
xmlDictLookup being called with an invalid pointer.

Percent sign in DTD Names
=========================
This fixes bug 766956 initially reported by Wei Lei and independently by
Chromium's ClusterFuzz, Hanno Böck, and Marco Grassi. Thanks to everyone
involved.

xmlParseNameComplex with XML_PARSE_OLD10
========================================
This fixes bugs 781205 (CVE-2017-9049) and 781361 (CVE-2017-9050).
Thanks to Marcel Böhme and Thuan Pham for the report.

Additional hardening
====================
A separate check was added in xmlParseNameComplex to validate the
buffer size.

From: https://git.gnome.org/browse/libxml2/commit/?id=e26630548e7d138d2c560844c43820b6767251e3

Revision 1.144 / (download) - annotate - [select for diffs], Sun Jun 11 04:40:53 2017 UTC (6 years, 9 months ago) by maya
Branch: MAIN
Changes since 1.143: +2 -2 lines
Diff to previous 1.143 (colored) to selected 1.35 (colored)

libxml2: Apply upstream patch for CVE-2017-5969.
(Minor issue, only a denial-of-service when using recover mode)

bump PKGREVISION

Revision 1.143 / (download) - annotate - [select for diffs], Fri Dec 30 02:17:48 2016 UTC (7 years, 2 months ago) by dholland
Branch: MAIN
CVS Tags: pkgsrc-2017Q1-base
Branch point for: pkgsrc-2017Q1
Changes since 1.142: +3 -1 lines
Diff to previous 1.142 (colored) to selected 1.35 (colored)

PKGREVISION shouldn't be in Makefile.common, even though the last two
bumps applied to both users.

Revision 1.142 / (download) - annotate - [select for diffs], Fri May 27 23:51:10 2016 UTC (7 years, 10 months ago) by pgoyette
Branch: MAIN
CVS Tags: pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2
Changes since 1.141: +2 -7 lines
Diff to previous 1.141 (colored) to selected 1.35 (colored)

Introduce a Makefile.common so we can share it with textproc/py-libxml2

Revision 1.140.2.1 / (download) - annotate - [select for diffs], Wed May 25 19:07:28 2016 UTC (7 years, 10 months ago) by spz
Branch: pkgsrc-2016Q1
Changes since 1.140: +2 -2 lines
Diff to previous 1.140 (colored) next main 1.141 (colored) to selected 1.35 (colored)

Pullup ticket #5028 - requested by he
textproc/libxml2: security update

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.141
- textproc/libxml2/distinfo                                     1.110-1.112
- textproc/libxml2/patches/patch-aa                             1.29
- textproc/libxml2/patches/patch-ab                             1.29-1.30
- textproc/libxml2/patches/patch-ac                             1.9
- textproc/libxml2/patches/patch-ad                             1.19
- textproc/libxml2/patches/patch-ae                             1.15
- textproc/libxml2/patches/patch-ag                             deleted
- textproc/libxml2/patches/patch-encoding.c                     added at 1.2
- textproc/libxml2/patches/patch-runtest.c                      added at 1.2
- textproc/libxml2/patches/patch-testlimits.c                   added at 1.2
- textproc/libxml2/patches/patch-timsort.h                      added at 1.2
- textproc/libxml2/patches/patch-xmlIO.c                        added at 1.2

-------------------------------------------------------------------
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Tue May 24 12:00:08 UTC 2016

   Modified Files:
   	pkgsrc/textproc/libxml2: Makefile distinfo
   	pkgsrc/textproc/libxml2/patches: patch-aa patch-ab patch-ac patch-ad
   	    patch-ae
   Added Files:
   	pkgsrc/textproc/libxml2/patches: patch-encoding.c patch-runtest.c
   	    patch-testlimits.c patch-timsort.h patch-xmlIO.c
   Removed Files:
   	pkgsrc/textproc/libxml2/patches: patch-ag

   Log Message:
   Update libxml2 to 2.9.4.

   Pkgsrc changes:
    * Add some casts to match types and format strings, plus
      fix value range of toupper() operation.
    * Merge patch-ag into the new patch-encoding.c.
    * Add comments to existing patches which lacked comments.

   Upstream changes to libxml2-2.9.4: May 23 2016

   Security:

      CVE-2016-3627 Avoid building recursive entities
      CVE-2016-1833 Heap-based buffer overread in htmlCurrentChar
      CVE-2016-1835 Heap use-after-free in xmlSAX2AttributeNs
      CVE-2016-1837 Heap use-after-free in htmlParsePubidLiteral
      	      	 and htmlParseSystemiteral
      CVE-2016-1836 Bug 759398: Heap use-after-free in xmlDictComputeFastKey
      CVE-2016-1839 Bug 758605: Heap-based buffer overread in xmlDictAddString
      CVE-2016-1838 Bug 758588: Heap-based buffer overread in
   	      	 xmlParserPrintFileContextInternal
      CVE-2016-1840 Bug 757711: heap-buffer-overflow in xmlFAParsePosCharGroup
      CVE-2016-4483 Avoid an out of bound access when serializing
      		 malformed strings
      CVE-2016-1834 Bug 763071: heap-buffer-overflow in xmlStrncat
      CVE-2016-3705 Add missing increments of recursion depth counter to
      		 XML parser.
      CVE-2016-1762 Heap-based buffer overread in xmlNextChar

      More format string warnings with possible format string vulnerability
      Heap-based buffer-underreads due to xmlParseName
      Fix some format string warnings with possible format string vulnerability
      Unsigned addition may overflow in xmlMallocAtomicLoc()

   Other bugfixes:

      Detect change of encoding when parsing HTML names
      Fix inappropriate fetch of entities content
      Correct the usage of LDFLAGS
      Revert the use of SAVE_LDFLAGS in configure.ac
      libxml2 hardcodes -L/lib in zlib/lzma tests which breaks cross-compiles
      Add more debugging info to runtest
      Implement "runtest -u" mode
      Integer signed/unsigned type mismatch in xmlParserInputGrow()
      Integer overflow parsing port number in URI
      Fix apibuild for a recently added constructv2.9.4-rc2
      Use pkg-config to locate zlib when possible
      Use pkg-config to locate ICU when possible
      Fix an error with regexp on nullable counted char transition
      Fix memory leak with XPath namespace nodes
      Fix namespace axis traversal
      Add a make rule to rebuild for ASAN
      Fix null pointer deref in docs with no root element
      Portability to non C99 compliant compilers
      dict.h: Move xmlDictPtr definition before includes to allow direct
        inclusion.
      Fix XSD validation of URIs with ampersands
      xmlschemastypes.c: accept endOfDayFrag Times set to "24:00:00" mean
        "end of day" and should not cause an error. v2.9.4-rc1
      os400: tell about xmllint and xmlcatalog in README400.
      os400: properly process SGML add in XMLCATALOG command.
      os400: implement CL command XMLCATALOG.
      os400: compile and install program xmlcatalog (qshell-only).
      xmlcatalog: flush stdout before interactive shell input.
      os400: expand tabs in sources, strip trailing blanks.
      os400: implement CL command XMLLINT.
      os400: compile and install program xmllint (qshell-only).
      os400: initscript make_module(): Use options instead of
        positional parameters.
      xmllint: flush stdout before interactive shell input.
      os400: c14n.rpgle: allow *omit for nullable reference parameters.
      os400: use like() for double type.
      os400: use like() for int type.
      os400: use like() for unsigned int type.
      os400: use like() for enum types.
      Add xz to xml2-config --libs output
      Don't recurse into OP_VALUEs in xmlXPathOptimizeExpression
      Fix namespace::node() XPath expression
      Fix OOB write in xmlXPathEmptyNodeSet
      Fix parsing of NCNames in XPath
      Fix OOB read with invalid UTF-8 in xmlUTF8Strsize
      Do normalize string-based datatype value in RelaxNG facet checking
      Fix typo: s{ ec -> cr }cipt
      Fix typos: dictio{ nn -> n }ar{y,ies}
      Fix typos: PATH_{ SEAPARATOR -> SEPARATOR }
      Correct a typo.
      Bug 760921: REGRESSION (8eb55d78): doc/examples/io1 test fails after fix
        for "xmlSaveUri() incorrectly recomposes URIs with rootless paths"
      Bug 760861: REGRESSION (bf9c1dad): Missing results for
        test/schemas/regexp-char-ref_[01].xsd
      error.c: *input->cur == 0 does not mean no error
      Add missing RNG test files
      Bug 760190: configure.ac should be able to build --with-icu without
        icu-config tool
      Bug 760183: REGRESSION (v2.9.3): XML push parser fails with bogus
        UTF-8 encoding error when multi-byte character in large CDATA
        section is split across buffer
      Bug 758572: ASAN crash in make check
      Bug 721158: Missing ICU string when doing --version on xmllint
      python 3: libxml2.c wrappers create Unicode str already
      win32\VC10\config.h and VS 2015
      Add autogen.sh to distrib
      Add configure maintainer mode


   To generate a diff of this commit:
   cvs rdiff -u -r1.140 -r1.141 pkgsrc/textproc/libxml2/Makefile
   cvs rdiff -u -r1.109 -r1.110 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r1.28 -r1.29 pkgsrc/textproc/libxml2/patches/patch-aa \
       pkgsrc/textproc/libxml2/patches/patch-ab
   cvs rdiff -u -r1.8 -r1.9 pkgsrc/textproc/libxml2/patches/patch-ac
   cvs rdiff -u -r1.18 -r1.19 pkgsrc/textproc/libxml2/patches/patch-ad
   cvs rdiff -u -r1.14 -r1.15 pkgsrc/textproc/libxml2/patches/patch-ae
   cvs rdiff -u -r1.12 -r0 pkgsrc/textproc/libxml2/patches/patch-ag
   cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/libxml2/patches/patch-encoding.c \
       pkgsrc/textproc/libxml2/patches/patch-runtest.c \
       pkgsrc/textproc/libxml2/patches/patch-testlimits.c \
       pkgsrc/textproc/libxml2/patches/patch-timsort.h \
       pkgsrc/textproc/libxml2/patches/patch-xmlIO.c

-------------------------------------------------------------------
   Module Name:	pkgsrc
   Committed By:	wiz
   Date:		Tue May 24 21:08:21 UTC 2016

   Modified Files:
   	pkgsrc/textproc/libxml2: distinfo
   	pkgsrc/textproc/libxml2/patches: patch-encoding.c patch-runtest.c
   	    patch-testlimits.c patch-timsort.h patch-xmlIO.c

   Log Message:
   Add upstream bug report URLs (from he@).


   To generate a diff of this commit:
   cvs rdiff -u -r1.110 -r1.111 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/libxml2/patches/patch-encoding.c \
       pkgsrc/textproc/libxml2/patches/patch-runtest.c \
       pkgsrc/textproc/libxml2/patches/patch-testlimits.c \
       pkgsrc/textproc/libxml2/patches/patch-timsort.h \
       pkgsrc/textproc/libxml2/patches/patch-xmlIO.c

-------------------------------------------------------------------
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Wed May 25 07:16:36 UTC 2016

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

   Log Message:
   Submit the typo part of configure upstream, note the bug-ID.


   To generate a diff of this commit:
   cvs rdiff -u -r1.111 -r1.112 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r1.29 -r1.30 pkgsrc/textproc/libxml2/patches/patch-ab

Revision 1.141 / (download) - annotate - [select for diffs], Tue May 24 12:00:08 2016 UTC (7 years, 10 months ago) by he
Branch: MAIN
Changes since 1.140: +2 -2 lines
Diff to previous 1.140 (colored) to selected 1.35 (colored)

Update libxml2 to 2.9.4.

Pkgsrc changes:
 * Add some casts to match types and format strings, plus
   fix value range of toupper() operation.
 * Merge patch-ag into the new patch-encoding.c.
 * Add comments to existing patches which lacked comments.

Upstream changes to libxml2-2.9.4: May 23 2016

Security:

   CVE-2016-3627 Avoid building recursive entities
   CVE-2016-1833 Heap-based buffer overread in htmlCurrentChar
   CVE-2016-1835 Heap use-after-free in xmlSAX2AttributeNs
   CVE-2016-1837 Heap use-after-free in htmlParsePubidLiteral
   	      	 and htmlParseSystemiteral
   CVE-2016-1836 Bug 759398: Heap use-after-free in xmlDictComputeFastKey
   CVE-2016-1839 Bug 758605: Heap-based buffer overread in xmlDictAddString
   CVE-2016-1838 Bug 758588: Heap-based buffer overread in
	      	 xmlParserPrintFileContextInternal
   CVE-2016-1840 Bug 757711: heap-buffer-overflow in xmlFAParsePosCharGroup
   CVE-2016-4483 Avoid an out of bound access when serializing
   		 malformed strings
   CVE-2016-1834 Bug 763071: heap-buffer-overflow in xmlStrncat
   CVE-2016-3705 Add missing increments of recursion depth counter to
   		 XML parser.
   CVE-2016-1762 Heap-based buffer overread in xmlNextChar

   More format string warnings with possible format string vulnerability
   Heap-based buffer-underreads due to xmlParseName
   Fix some format string warnings with possible format string vulnerability
   Unsigned addition may overflow in xmlMallocAtomicLoc()

Other bugfixes:

   Detect change of encoding when parsing HTML names
   Fix inappropriate fetch of entities content
   Correct the usage of LDFLAGS
   Revert the use of SAVE_LDFLAGS in configure.ac
   libxml2 hardcodes -L/lib in zlib/lzma tests which breaks cross-compiles
   Add more debugging info to runtest
   Implement "runtest -u" mode
   Integer signed/unsigned type mismatch in xmlParserInputGrow()
   Integer overflow parsing port number in URI
   Fix apibuild for a recently added constructv2.9.4-rc2
   Use pkg-config to locate zlib when possible
   Use pkg-config to locate ICU when possible
   Fix an error with regexp on nullable counted char transition
   Fix memory leak with XPath namespace nodes
   Fix namespace axis traversal
   Add a make rule to rebuild for ASAN
   Fix null pointer deref in docs with no root element
   Portability to non C99 compliant compilers
   dict.h: Move xmlDictPtr definition before includes to allow direct
     inclusion.
   Fix XSD validation of URIs with ampersands
   xmlschemastypes.c: accept endOfDayFrag Times set to "24:00:00" mean
     "end of day" and should not cause an error. v2.9.4-rc1
   os400: tell about xmllint and xmlcatalog in README400.
   os400: properly process SGML add in XMLCATALOG command.
   os400: implement CL command XMLCATALOG.
   os400: compile and install program xmlcatalog (qshell-only).
   xmlcatalog: flush stdout before interactive shell input.
   os400: expand tabs in sources, strip trailing blanks.
   os400: implement CL command XMLLINT.
   os400: compile and install program xmllint (qshell-only).
   os400: initscript make_module(): Use options instead of
     positional parameters.
   xmllint: flush stdout before interactive shell input.
   os400: c14n.rpgle: allow *omit for nullable reference parameters.
   os400: use like() for double type.
   os400: use like() for int type.
   os400: use like() for unsigned int type.
   os400: use like() for enum types.
   Add xz to xml2-config --libs output
   Don't recurse into OP_VALUEs in xmlXPathOptimizeExpression
   Fix namespace::node() XPath expression
   Fix OOB write in xmlXPathEmptyNodeSet
   Fix parsing of NCNames in XPath
   Fix OOB read with invalid UTF-8 in xmlUTF8Strsize
   Do normalize string-based datatype value in RelaxNG facet checking
   Fix typo: s{ ec -> cr }cipt
   Fix typos: dictio{ nn -> n }ar{y,ies}
   Fix typos: PATH_{ SEAPARATOR -> SEPARATOR }
   Correct a typo.
   Bug 760921: REGRESSION (8eb55d78): doc/examples/io1 test fails after fix
     for "xmlSaveUri() incorrectly recomposes URIs with rootless paths"
   Bug 760861: REGRESSION (bf9c1dad): Missing results for
     test/schemas/regexp-char-ref_[01].xsd
   error.c: *input->cur == 0 does not mean no error
   Add missing RNG test files
   Bug 760190: configure.ac should be able to build --with-icu without
     icu-config tool
   Bug 760183: REGRESSION (v2.9.3): XML push parser fails with bogus
     UTF-8 encoding error when multi-byte character in large CDATA
     section is split across buffer
   Bug 758572: ASAN crash in make check
   Bug 721158: Missing ICU string when doing --version on xmllint
   python 3: libxml2.c wrappers create Unicode str already
   win32\VC10\config.h and VS 2015
   Add autogen.sh to distrib
   Add configure maintainer mode

Revision 1.140 / (download) - annotate - [select for diffs], Fri Feb 26 10:32:47 2016 UTC (8 years, 1 month ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2016Q1-base
Branch point for: pkgsrc-2016Q1
Changes since 1.139: +2 -6 lines
Diff to previous 1.139 (colored) to selected 1.35 (colored)

Use OPSYSVARS.

Revision 1.139 / (download) - annotate - [select for diffs], Sun Nov 22 23:49:03 2015 UTC (8 years, 4 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q4-base, pkgsrc-2015Q4
Changes since 1.138: +2 -3 lines
Diff to previous 1.138 (colored) to selected 1.35 (colored)

Update libxml2 to 2.9.3.

v2.9.3: Nov 20 2015

    Security:
    CVE-2015-8242 Buffer overead with HTML parser in push mode (Hugh Davenport),
    CVE-2015-7500 Fix memory access error due to incorrect entities boundaries (Daniel Veillard),
    CVE-2015-7499-2 Detect incoherency on GROW (Daniel Veillard),
    CVE-2015-7499-1 Add xmlHaltParser() to stop the parser (Daniel Veillard),
    CVE-2015-5312 Another entity expansion issue (David Drysdale),
    CVE-2015-7497 Avoid an heap buffer overflow in xmlDictComputeFastQKey (David Drysdale),
    CVE-2015-7498 Avoid processing entities after encoding conversion failures (Daniel Veillard),
    CVE-2015-8035 Fix XZ compression support loop (Daniel Veillard),
    CVE-2015-7942-2 Fix an error in previous Conditional section patch (Daniel Veillard),
    CVE-2015-7942 Another variation of overflow in Conditional sections (Daniel Veillard),
    CVE-2015-1819 Enforce the reader to run in constant memory (Daniel Veillard)
    CVE-2015-7941_2 Cleanup conditional section error handling (Daniel Veillard),
    CVE-2015-7941_1 Stop parsing on entities boundaries errors (Daniel Veillard),
    Documentation:
    Correct spelling of "calling" (Alex Henrie),
    Fix a small error in xmllint --format description (Fabien Degomme),
    Avoid XSS on the search of xmlsoft.org (Daniel Veillard)
    Portability:
    threads: use forward declarations only for glibc (Michael Heimpold),
    Update Win32 configure.js to search for configure.ac (Daniel Veillard)
    Bug Fixes:
    Bug on creating new stream from entity (Daniel Veillard),
    Fix some loop issues embedding NEXT (Daniel Veillard),
    Do not print error context when there is none (Daniel Veillard),
    Avoid extra processing of MarkupDecl when EOF (Hugh Davenport),
    Fix parsing short unclosed comment uninitialized access (Daniel Veillard),
    Add missing Null check in xmlParseExternalEntityPrivate (Gaurav Gupta),
    Fix a bug in CData error handling in the push parser (Daniel Veillard),
    Fix a bug on name parsing at the end of current input buffer (Daniel Veillard),
    Fix the spurious ID already defined error (Daniel Veillard),
    Fix previous change to node sort order (Nick Wellnhofer),
    Fix a self assignment issue raised by clang (Scott Graham),
    Fail parsing early on if encoding conversion failed (Daniel Veillard),
    Do not process encoding values if the declaration if broken (Daniel Veillard),
    Silence clang's -Wunknown-attribute (Michael Catanzaro),
    xmlMemUsed is not thread-safe (Martin von Gagern),
    Fix support for except in nameclasses (Daniel Veillard),
    Fix order of root nodes (Nick Wellnhofer),
    Allow attributes on descendant-or-self axis (Nick Wellnhofer),
    Fix the fix to Windows locking (Steve Nairn),
    Fix timsort invariant loop re: Envisage article (Christopher Swenson),
    Don't add IDs in xmlSetTreeDoc (Nick Wellnhofer),
    Account for ID attributes in xmlSetTreeDoc (Nick Wellnhofer),
    Remove various unused value assignments (Philip Withnall),
    Fix missing entities after CVE-2014-3660 fix (Daniel Veillard),
    Revert "Missing initialization for the catalog module" (Daniel Veillard)
    Improvements:
    Reuse xmlHaltParser() where it makes sense (Daniel Veillard),
    xmlStopParser reset errNo (Daniel Veillard),
    Reenable xz support by default (Daniel Veillard),
    Recover unescaped less-than character in HTML recovery parsing (Daniel Veillard),
    Allow HTML serializer to output HTML5 DOCTYPE (Shaun McCance),
    Regression test for bug #695699 (Nick Wellnhofer),
    Add a couple of XPath tests (Nick Wellnhofer),
    Add Python 3 rpm subpackage (Tomas Radej),
    libxml2-config.cmake.in: update include directories (Samuel Martin),
    Adding example from bugs 738805 to regression tests (Daniel Veillard)

Revision 1.137.2.1 / (download) - annotate - [select for diffs], Sun Jul 12 09:01:56 2015 UTC (8 years, 8 months ago) by tron
Branch: pkgsrc-2015Q2
Changes since 1.137: +2 -2 lines
Diff to previous 1.137 (colored) next main 1.138 (colored) to selected 1.35 (colored)

Pullup ticket #4767 - requested by he
textproc/libxml2: security patch

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.138
- textproc/libxml2/distinfo                                     1.107
- textproc/libxml2/patches/patch-HTMLparser.c                   1.1

---
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Fri Jul  3 18:55:46 UTC 2015

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

   Log Message:
   Apply the patch for arbitrary-memory-access vulnerability as reported
   in https://bugzilla.gnome.org/show_bug.cgi?id=746048.
   Bump PKGREVISION.

Revision 1.138 / (download) - annotate - [select for diffs], Fri Jul 3 18:55:46 2015 UTC (8 years, 8 months ago) by he
Branch: MAIN
CVS Tags: pkgsrc-2015Q3-base, pkgsrc-2015Q3
Changes since 1.137: +2 -2 lines
Diff to previous 1.137 (colored) to selected 1.35 (colored)

Apply the patch for arbitrary-memory-access vulnerability as reported
in https://bugzilla.gnome.org/show_bug.cgi?id=746048.
Bump PKGREVISION.

Revision 1.136.2.1 / (download) - annotate - [select for diffs], Wed Apr 29 20:35:49 2015 UTC (8 years, 11 months ago) by tron
Branch: pkgsrc-2015Q1
Changes since 1.136: +2 -2 lines
Diff to previous 1.136 (colored) next main 1.137 (colored) to selected 1.35 (colored)

Pullup ticket #4696 - requested by spz
textproc/libxml2: security patch

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.137
- textproc/libxml2/distinfo                                     1.106
- textproc/libxml2/patches/patch-aa                             1.28
- textproc/libxml2/patches/patch-ab                             1.28
- textproc/libxml2/patches/patch-ac                             1.8
- textproc/libxml2/patches/patch-ad                             1.18
- textproc/libxml2/patches/patch-ae                             1.14
- textproc/libxml2/patches/patch-ag                             1.12
- textproc/libxml2/patches/patch-aj                             1.4
- textproc/libxml2/patches/patch-buf.c                          1.1
- textproc/libxml2/patches/patch-include_libxml_tree.h          1.1
- textproc/libxml2/patches/patch-threads.c                      1.5
- textproc/libxml2/patches/patch-xmlreader.c                    1.1

---
   Module Name:	pkgsrc
   Committed By:	spz
   Date:		Fri Apr 24 11:32:29 UTC 2015

   Modified Files:
   	pkgsrc/textproc/libxml2: Makefile distinfo
   	pkgsrc/textproc/libxml2/patches: patch-aa patch-ab patch-ac patch-ad
   	    patch-ae patch-ag patch-aj patch-threads.c
   Added Files:
   	pkgsrc/textproc/libxml2/patches: patch-buf.c
   	    patch-include_libxml_tree.h patch-xmlreader.c

   Log Message:
   patch for CVE-2015-1819 Enforce the reader to run in constant memory
   from https://git.gnome.org/browse/libxml2/commit/?id=213f1fe0d76d30eaed6e5853057defc43e6df2c9

   +general patch refresh

Revision 1.137 / (download) - annotate - [select for diffs], Fri Apr 24 11:32:29 2015 UTC (8 years, 11 months ago) by spz
Branch: MAIN
CVS Tags: pkgsrc-2015Q2-base
Branch point for: pkgsrc-2015Q2
Changes since 1.136: +2 -2 lines
Diff to previous 1.136 (colored) to selected 1.35 (colored)

patch for CVE-2015-1819 Enforce the reader to run in constant memory
from https://git.gnome.org/browse/libxml2/commit/?id=213f1fe0d76d30eaed6e5853057defc43e6df2c9

+general patch refresh

Revision 1.136 / (download) - annotate - [select for diffs], Sun Mar 22 05:53:12 2015 UTC (9 years ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2015Q1-base
Branch point for: pkgsrc-2015Q1
Changes since 1.135: +2 -1 lines
Diff to previous 1.135 (colored) to selected 1.35 (colored)

pass --with-lzma to configure script

Revision 1.135 / (download) - annotate - [select for diffs], Wed Mar 11 22:53:10 2015 UTC (9 years ago) by tnn
Branch: MAIN
Changes since 1.134: +2 -1 lines
Diff to previous 1.134 (colored) to selected 1.35 (colored)

needs dlopen (xmlmodule.c)

Revision 1.134 / (download) - annotate - [select for diffs], Mon Dec 15 11:07:09 2014 UTC (9 years, 3 months ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2014Q4-base, pkgsrc-2014Q4
Changes since 1.133: +2 -1 lines
Diff to previous 1.133 (colored) to selected 1.35 (colored)

Pass explicit path to zlib.

Revision 1.130.2.1 / (download) - annotate - [select for diffs], Mon Nov 3 19:39:07 2014 UTC (9 years, 4 months ago) by tron
Branch: pkgsrc-2014Q3
Changes since 1.130: +3 -3 lines
Diff to previous 1.130 (colored) next main 1.131 (colored) to selected 1.35 (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.133 / (download) - annotate - [select for diffs], Tue Oct 28 18:55:56 2014 UTC (9 years, 5 months ago) by drochner
Branch: MAIN
Changes since 1.132: +2 -1 lines
Diff to previous 1.132 (colored) to selected 1.35 (colored)

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.132 / (download) - annotate - [select for diffs], Fri Oct 17 15:46:47 2014 UTC (9 years, 5 months ago) by drochner
Branch: MAIN
Changes since 1.131: +2 -3 lines
Diff to previous 1.131 (colored) to selected 1.35 (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.131 / (download) - annotate - [select for diffs], Thu Oct 9 14:07:02 2014 UTC (9 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.130: +1 -3 lines
Diff to previous 1.130 (colored) to selected 1.35 (colored)

Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.

Revision 1.130 / (download) - annotate - [select for diffs], Fri Jul 18 10:29:37 2014 UTC (9 years, 8 months ago) by ryoon
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base
Branch point for: pkgsrc-2014Q3
Changes since 1.129: +3 -1 lines
Diff to previous 1.129 (colored) to selected 1.35 (colored)

Fix SCO OpenServer 5.0.7/3.2 build.

Revision 1.128.4.1 / (download) - annotate - [select for diffs], Wed May 21 13:34:55 2014 UTC (9 years, 10 months ago) by tron
Branch: pkgsrc-2014Q1
Changes since 1.128: +2 -2 lines
Diff to previous 1.128 (colored) next main 1.129 (colored) to selected 1.35 (colored)

Pullup ticket #4414 - requested by he
textproc/libxml2: security patch

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.129
- textproc/libxml2/distinfo                                     1.103
- textproc/libxml2/patches/patch-parser.c                       1.1

---
   Module Name:	pkgsrc
   Committed By:	spz
   Date:		Sat May 10 22:45:42 UTC 2014

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

   Log Message:
   add a patch for CVE-2014-0191 aka http://secunia.com/advisories/58018/
   from https://git.gnome.org/browse/libxml2/commit/?id=9cd1c3cfbd32655d60572c0a413e017260c854df

Revision 1.129 / (download) - annotate - [select for diffs], Sat May 10 22:45:42 2014 UTC (9 years, 10 months ago) by spz
Branch: MAIN
CVS Tags: pkgsrc-2014Q2-base, pkgsrc-2014Q2
Changes since 1.128: +2 -2 lines
Diff to previous 1.128 (colored) to selected 1.35 (colored)

add a patch for CVE-2014-0191 aka http://secunia.com/advisories/58018/
from https://git.gnome.org/browse/libxml2/commit/?id=9cd1c3cfbd32655d60572c0a413e017260c854df

Revision 1.128 / (download) - annotate - [select for diffs], Sat Dec 28 23:04:36 2013 UTC (10 years, 3 months ago) by tron
Branch: MAIN
CVS Tags: pkgsrc-2014Q1-base, pkgsrc-2013Q4-base, pkgsrc-2013Q4
Branch point for: pkgsrc-2014Q1
Changes since 1.127: +1 -7 lines
Diff to previous 1.127 (colored) to selected 1.35 (colored)

Remove "-thread" related part of the last change. This is not the
correct fix.

Revision 1.127 / (download) - annotate - [select for diffs], Sat Dec 28 20:23:44 2013 UTC (10 years, 3 months ago) by tron
Branch: MAIN
Changes since 1.126: +11 -1 lines
Diff to previous 1.126 (colored) to selected 1.35 (colored)

Fix build with GCC (4.8?) under Solaris.

This kind of build problem should probably be handled centrally in
"pkgsrc/mk/wrapper/transform-gcc". But I'm not sure how to check
for the platform in that file.

Revision 1.126 / (download) - annotate - [select for diffs], Mon Nov 25 23:30:23 2013 UTC (10 years, 4 months ago) by wiz
Branch: MAIN
Changes since 1.125: +2 -1 lines
Diff to previous 1.125 (colored) to selected 1.35 (colored)

Fix bug in gzip decompression.
https://bugzilla.gnome.org/show_bug.cgi?id=712528

This made gnucash unable to read some of its files.

Bump PKGREVISION.

Revision 1.125 / (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-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2
Changes since 1.124: +2 -3 lines
Diff to previous 1.124 (colored) to selected 1.35 (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.123.2.1 / (download) - annotate - [select for diffs], Sat Apr 20 10:29:46 2013 UTC (10 years, 11 months ago) by tron
Branch: pkgsrc-2013Q1
Changes since 1.123: +2 -2 lines
Diff to previous 1.123 (colored) next main 1.124 (colored) to selected 1.35 (colored)

Pullup ticket #4120 - requested by drochner
textproc/libxml2: security patch

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.124
- textproc/libxml2/distinfo                                     1.99-1.100
- textproc/libxml2/patches/patch-SA53061_1                      1.1-1.2
- textproc/libxml2/patches/patch-SA53061_2                      1.1

---
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Thu Apr 18 10:17:42 UTC 2013

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

   Log Message:
   add patch from upstream to fix Multiple Use-After-Free Vulnerabilities
   (no CVE# assigned yet)
   bump PKGREV

---
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Fri Apr 19 09:47:43 UTC 2013

   Modified Files:
           pkgsrc/textproc/libxml2: distinfo
           pkgsrc/textproc/libxml2/patches: patch-SA53061_1

   Log Message:
   add CVE reference

Revision 1.124 / (download) - annotate - [select for diffs], Thu Apr 18 10:17:42 2013 UTC (10 years, 11 months ago) by drochner
Branch: MAIN
Changes since 1.123: +2 -2 lines
Diff to previous 1.123 (colored) to selected 1.35 (colored)

add patch from upstream to fix Multiple Use-After-Free Vulnerabilities
(no CVE# assigned yet)
bump PKGREV

Revision 1.122.2.1 / (download) - annotate - [select for diffs], Sun Mar 17 11:22:02 2013 UTC (11 years ago) by tron
Branch: pkgsrc-2012Q4
Changes since 1.122: +2 -2 lines
Diff to previous 1.122 (colored) next main 1.123 (colored) to selected 1.35 (colored)

Pullup ticket #4101 - requested by tez
textproc/libxml2: security patch

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.123
- textproc/libxml2/distinfo                                     1.98
- textproc/libxml2/patches/patch-CVE-2013-0338-CVE-2013-0339    1.1

---
   Module Name:    pkgsrc
   Committed By:   tez
   Date:           Fri Mar  8 23:59:31 UTC 2013

   Modified Files:
           pkgsrc/textproc/libxml2: Makefile distinfo
   Added Files:
           pkgsrc/textproc/libxml2/
   patches: patch-CVE-2013-0338-CVE-2013-0339

   Log Message:
   Fix for CVE-2013-0338 & CVE-2013-0339

   from
   https://git.gnome.org/browse/libxml2/commit/?id=23f05e0c33987d6605387b300c4be5da2120a7ab

   bump PKGREVISION

Revision 1.123 / (download) - annotate - [select for diffs], Fri Mar 8 23:59:31 2013 UTC (11 years ago) by tez
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base
Branch point for: pkgsrc-2013Q1
Changes since 1.122: +1 -1 lines
Diff to previous 1.122 (colored) to selected 1.35 (colored)

Fix for CVE-2013-0338 & CVE-2013-0339

from https://git.gnome.org/browse/libxml2/commit/?id=23f05e0c33987d6605387b300c4be5da2120a7ab

bump PKGREVISION

Revision 1.122 / (download) - annotate - [select for diffs], Sat Dec 15 12:39:24 2012 UTC (11 years, 3 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2012Q4-base
Branch point for: pkgsrc-2012Q4
Changes since 1.121: +2 -1 lines
Diff to previous 1.121 (colored) to selected 1.35 (colored)

add patch from upstream to fix possible array underflow, leading
to DOS or possible code injection (CVE-2012-5134)
bump PKGREV

Revision 1.121 / (download) - annotate - [select for diffs], Thu Oct 25 06:56:04 2012 UTC (11 years, 5 months ago) by asau
Branch: MAIN
Changes since 1.120: +1 -2 lines
Diff to previous 1.120 (colored) to selected 1.35 (colored)

Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.

Revision 1.120 / (download) - annotate - [select for diffs], Sat Sep 15 10:23:38 2012 UTC (11 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3
Changes since 1.119: +8 -11 lines
Diff to previous 1.119 (colored) to selected 1.35 (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.118.2.1 / (download) - annotate - [select for diffs], Thu Aug 9 18:05:03 2012 UTC (11 years, 7 months ago) by tron
Branch: pkgsrc-2012Q2
Changes since 1.118: +2 -2 lines
Diff to previous 1.118 (colored) next main 1.119 (colored) to selected 1.35 (colored)

Pullup ticket #3890 - requested by drochner
textproc/libxml2: security patch

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.119
- textproc/libxml2/distinfo                                     1.94
- textproc/libxml2/patches/patch-ba                             1.1
- textproc/libxml2/patches/patch-bb                             1.1

---
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Wed Aug  1 14:51:37 UTC 2012

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

   Log Message:
   add patches from upstream to fix integer overflows which can cause
   DOS or possibly other corruption (CVE-2012-2807)
   bump PKGREV

Revision 1.119 / (download) - annotate - [select for diffs], Wed Aug 1 14:51:37 2012 UTC (11 years, 7 months ago) by drochner
Branch: MAIN
Changes since 1.118: +2 -2 lines
Diff to previous 1.118 (colored) to selected 1.35 (colored)

add patches from upstream to fix integer overflows which can cause
DOS or possibly other corruption (CVE-2012-2807)
bump PKGREV

Revision 1.118 / (download) - annotate - [select for diffs], Thu Jun 14 07:39:36 2012 UTC (11 years, 9 months ago) by sbd
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base
Branch point for: pkgsrc-2012Q2
Changes since 1.117: +3 -1 lines
Diff to previous 1.117 (colored) to selected 1.35 (colored)

Add missing archivers/xz buildlink.

Bump PKGREVISION

Revision 1.117 / (download) - annotate - [select for diffs], Sun Jun 3 22:18:33 2012 UTC (11 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.116: +2 -3 lines
Diff to previous 1.116 (colored) to selected 1.35 (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.115.2.1 / (download) - annotate - [select for diffs], Mon May 21 15:13:36 2012 UTC (11 years, 10 months ago) by tron
Branch: pkgsrc-2012Q1
Changes since 1.115: +2 -2 lines
Diff to previous 1.115 (colored) next main 1.116 (colored) to selected 1.35 (colored)

Pullup ticket #3795 - requested by taca
textproc/libxml2: security patch

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.116
- textproc/libxml2/distinfo                                     1.91-1.92
- textproc/libxml2/patches/patch-threads.c                      1.2
- textproc/libxml2/patches/patch-xpointer.c                     1.2

---
   Module Name:	pkgsrc
   Committed By:	mishka
   Date:		Fri Apr 27 15:05:02 UTC 2012

   Modified Files:
   	pkgsrc/textproc/libxml2: distinfo
   	pkgsrc/textproc/libxml2/patches: patch-threads.c

   Log Message:
   FreeBSD 6 and earlier misses the pthread_equal() stub as well.
   While here, improve comments a little bit.

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Mon May 21 12:22:54 UTC 2012

   Modified Files:
   	pkgsrc/textproc/libxml2: Makefile distinfo
   	pkgsrc/textproc/libxml2/patches: patch-xpointer.c

   Log Message:
   Add fix for http://secunia.com/advisories/49177/ from repository.

   Bump PKGREVISION.

Revision 1.116 / (download) - annotate - [select for diffs], Mon May 21 12:22:53 2012 UTC (11 years, 10 months ago) by taca
Branch: MAIN
Changes since 1.115: +2 -2 lines
Diff to previous 1.115 (colored) to selected 1.35 (colored)

Add fix for http://secunia.com/advisories/49177/ from repository.

Bump PKGREVISION.

Revision 1.115 / (download) - annotate - [select for diffs], Tue Apr 3 09:08:33 2012 UTC (11 years, 11 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base
Branch point for: pkgsrc-2012Q1
Changes since 1.114: +2 -6 lines
Diff to previous 1.114 (colored) to selected 1.35 (colored)

Change behavior of libpthread handling
* Disable linkage with pthread for FreeBSD/DragonFly/NetBSD, they have
  pthread_* () stubs in libc (it result in same as the previous behavior).
  * but NetBSD<4.99.36 does not have pthread_equal() stub in libc,
    so define weak reference to it.
* Treat OpenBSD and MirBSD same as Linux to avoid linkage with libpthread.
* Others will be linked with pthread, fixes PR 46254.

tested NetBSD-5.1.2, and confirmed fixed on NetBSD-4.0.1 and OpenBSD-5.0.

Bump PKGREVISION.

Revision 1.110.2.3 / (download) - annotate - [select for diffs], Mon Mar 12 18:06:49 2012 UTC (12 years ago) by spz
Branch: pkgsrc-2011Q4
Changes since 1.110.2.2: +10 -5 lines
Diff to previous 1.110.2.2 (colored) to branchpoint 1.110 (colored) next main 1.111 (colored) to selected 1.35 (colored)

Pullup ticket #3701 - requested by drochner
textproc/libxml2: security fix and HEAD compatibility

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.113-1.114
- textproc/libxml2/distinfo                                     1.88-1.89
- textproc/libxml2/patches/patch-CVE-2012-0841-aa               1.1
- textproc/libxml2/patches/patch-CVE-2012-0841-ab               1.1
- textproc/libxml2/patches/patch-CVE-2012-0841-ac               1.1
- textproc/libxml2/patches/patch-aa                             1.24
- textproc/libxml2/patches/patch-ab                             1.22
- textproc/libxml2/patches/patch-am                             1.1

-------------------------------------------------------------------
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Wed Feb 22 11:10:18 UTC 2012

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

   Log Message:
   build the library thread-aware, i.e. use <pthread.h> but do not
   link against libpthread. (It doesn't create threads, just uses
   locking.) This seems to be wanted by some applications, eg vlc
   issues a warning on startup (with no visible consequences afaict,
   but anyway).
   I hope this works for other OSes too. If not, we should probably
   add support for these cases to mk/pthread.bl3.mk.
   bump PKGREV

   To generate a diff of this commit:
   cvs rdiff -u -r1.112 -r1.113 pkgsrc/textproc/libxml2/Makefile
   cvs rdiff -u -r1.87 -r1.88 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r1.23 -r1.24 pkgsrc/textproc/libxml2/patches/patch-aa
   cvs rdiff -u -r1.21 -r1.22 pkgsrc/textproc/libxml2/patches/patch-ab
   cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/libxml2/patches/patch-am

-------------------------------------------------------------------
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Fri Mar  9 12:12:28 UTC 2012

   Modified Files:
           pkgsrc/textproc/libxml2: Makefile distinfo
   Added Files:
           pkgsrc/textproc/libxml2/patches: patch-CVE-2012-0841-aa
           patch-CVE-2012-0841-ab patch-CVE-2012-0841-ac

   Log Message:
   Add patch from upstream to add hash randomization.
   Without that, (untrusted) input can fill hash buckets uneven, causing
   high CPU load. (CVE-2012-0841)
   To get a patch which is simple enough to get pulled up to the stable
   pkgsrc branch, I've not touched "configure" but just assumed that
   the POSIX functions rand(), srand() and time() are present.
   bump PKGREV


   To generate a diff of this commit:
   cvs rdiff -u -r1.113 -r1.114 pkgsrc/textproc/libxml2/Makefile
   cvs rdiff -u -r1.88 -r1.89 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/libxml2/patches/patch-CVE-2012-0841-aa \
       pkgsrc/textproc/libxml2/patches/patch-CVE-2012-0841-ab \
       pkgsrc/textproc/libxml2/patches/patch-CVE-2012-0841-ac

Revision 1.114 / (download) - annotate - [select for diffs], Fri Mar 9 12:12:27 2012 UTC (12 years ago) by drochner
Branch: MAIN
Changes since 1.113: +2 -2 lines
Diff to previous 1.113 (colored) to selected 1.35 (colored)

Add patch from upstream to add hash randomization.
Without that, (untrusted) input can fill hash buckets uneven, causing
high CPU load. (CVE-2012-0841)
To get a patch which is simple enough to get pulled up to the stable
pkgsrc branch, I've not touched "configure" but just assumed that
the POSIX functions rand(), srand() and time() are present.
bump PKGREV

Revision 1.113 / (download) - annotate - [select for diffs], Wed Feb 22 11:10:17 2012 UTC (12 years, 1 month ago) by drochner
Branch: MAIN
Changes since 1.112: +10 -5 lines
Diff to previous 1.112 (colored) to selected 1.35 (colored)

build the library thread-aware, i.e. use <pthread.h> but do not
link against libpthread. (It doesn't create threads, just uses
locking.) This seems to be wanted by some applications, eg vlc
issues a warning on startup (with no visible consequences afaict,
but anyway).
I hope this works for other OSes too. If not, we should probably
add support for these cases to mk/pthread.bl3.mk.
bump PKGREV

Revision 1.110.2.2 / (download) - annotate - [select for diffs], Thu Jan 19 06:07:36 2012 UTC (12 years, 2 months ago) by sbd
Branch: pkgsrc-2011Q4
Changes since 1.110.2.1: +2 -2 lines
Diff to previous 1.110.2.1 (colored) to branchpoint 1.110 (colored) to selected 1.35 (colored)

Pullup ticket #3654 - requested by tron
textproc/libxml2 security patch

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.112
- textproc/libxml2/distinfo                                     1.86
- textproc/libxml2/patches/patch-al                             1.3

---
   Module Name:	pkgsrc
   Committed By:	drochner
   Date:		Tue Jan 17 14:43:44 UTC 2012

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

   Log Message:
   add patch from upstream to fix potential DOS problem (CVE-2011-3905)
   bump PKGREV

Revision 1.112 / (download) - annotate - [select for diffs], Tue Jan 17 14:43:43 2012 UTC (12 years, 2 months ago) by drochner
Branch: MAIN
Changes since 1.111: +2 -2 lines
Diff to previous 1.111 (colored) to selected 1.35 (colored)

add patch from upstream to fix potential DOS problem (CVE-2011-3905)
bump PKGREV

Revision 1.110.2.1 / (download) - annotate - [select for diffs], Fri Jan 13 13:10:41 2012 UTC (12 years, 2 months ago) by tron
Branch: pkgsrc-2011Q4
Changes since 1.110: +2 -2 lines
Diff to previous 1.110 (colored) to selected 1.35 (colored)

Pullup ticket #3648 - requested by drochner
textproc/libxml2: security patch

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.111
- textproc/libxml2/distinfo                                     1.85
- textproc/libxml2/patches/patch-al                             1.2

---
   Module Name:	pkgsrc
   Committed By:	drochner
   Date:		Thu Jan 12 11:25:10 UTC 2012

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

   Log Message:
   add 2 patches from upstream:
   -fix buffer overflow on entity references with long name (CVE-2011-3919)
   -fix error handling on realloc() failure
   bump PKGREV

Revision 1.111 / (download) - annotate - [select for diffs], Thu Jan 12 11:25:10 2012 UTC (12 years, 2 months ago) by drochner
Branch: MAIN
Changes since 1.110: +2 -2 lines
Diff to previous 1.110 (colored) to selected 1.35 (colored)

add 2 patches from upstream:
-fix buffer overflow on entity references with long name (CVE-2011-3919)
-fix error handling on realloc() failure
bump PKGREV

Revision 1.109.4.1 / (download) - annotate - [select for diffs], Mon Nov 7 22:28:09 2011 UTC (12 years, 4 months ago) by tron
Branch: pkgsrc-2011Q3
Changes since 1.109: +2 -2 lines
Diff to previous 1.109 (colored) next main 1.110 (colored) to selected 1.35 (colored)

Pullup ticket #3593 - requested by spz
textproc/libxml2: security patch

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.110
- textproc/libxml2/distinfo                                     1.84
- textproc/libxml2/patches/patch-ag                             1.9
- textproc/libxml2/patches/patch-ak                             1.3
- textproc/libxml2/patches/patch-include_libxml_xpath.h         1.1
- textproc/libxml2/patches/patch-xpointer.c                     1.1

---
   Module Name:	pkgsrc
   Committed By:	spz
   Date:		Tue Nov  1 19:21:06 UTC 2011

   Modified Files:
   	pkgsrc/textproc/libxml2: Makefile distinfo
   	pkgsrc/textproc/libxml2/patches: patch-ag patch-ak
   Added Files:
   	pkgsrc/textproc/libxml2/patches: patch-include_libxml_xpath.h
   	    patch-xpointer.c

   Log Message:
   sundry security patches taken from libxml2 git
   among these patches for http://secunia.com/advisories/46632/

Revision 1.110 / (download) - annotate - [select for diffs], Tue Nov 1 19:21:06 2011 UTC (12 years, 4 months ago) by spz
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base
Branch point for: pkgsrc-2011Q4
Changes since 1.109: +2 -2 lines
Diff to previous 1.109 (colored) to selected 1.35 (colored)

sundry security patches taken from libxml2 git
among these patches for http://secunia.com/advisories/46632/

Revision 1.108.2.1 / (download) - annotate - [select for diffs], Sat Jun 11 05:11:54 2011 UTC (12 years, 9 months ago) by sbd
Branch: pkgsrc-2011Q1
Changes since 1.108: +2 -2 lines
Diff to previous 1.108 (colored) next main 1.109 (colored) to selected 1.35 (colored)

Pullup ticket #3451 - requested by tron
textproc/libxml2 security update

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.109
- textproc/libxml2/distinfo                                     1.83
- textproc/libxml2/patches/patch-ak                             1.2
- textproc/libxml2/patches/patch-al                             1.1

---
   Module Name:	pkgsrc
   Committed By:	drochner
   Date:		Mon Jun  6 12:09:01 UTC 2011

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

   Log Message:
   addmore patches from upstream:
   -fix more potential problems on reallocation failures (CVE-2011-1944)
   -Fix memory corruption
   also replace an error handling which doesn't recover from
   integer overflow
   bump PKGREV

Revision 1.109 / (download) - annotate - [select for diffs], Mon Jun 6 12:09:01 2011 UTC (12 years, 9 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2011Q3-base, pkgsrc-2011Q2-base, pkgsrc-2011Q2
Branch point for: pkgsrc-2011Q3
Changes since 1.108: +2 -2 lines
Diff to previous 1.108 (colored) to selected 1.35 (colored)

addmore patches from upstream:
-fix more potential problems on reallocation failures (CVE-2011-1944)
-Fix memory corruption
also replace an error handling which doesn't recover from
integer overflow
bump PKGREV

Revision 1.108 / (download) - annotate - [select for diffs], Mon Feb 28 14:53:04 2011 UTC (13 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2011Q1-base
Branch point for: pkgsrc-2011Q1
Changes since 1.107: +2 -2 lines
Diff to previous 1.107 (colored) to selected 1.35 (colored)

Reset maintainer for retired developers.

Revision 1.107 / (download) - annotate - [select for diffs], Mon Jan 3 12:17:43 2011 UTC (13 years, 2 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2010Q4-base, pkgsrc-2010Q4
Changes since 1.106: +2 -2 lines
Diff to previous 1.106 (colored) to selected 1.35 (colored)

add 3 patches from gnome git:
-fix realloc error handling bug
-fix potential double free (CVE-2010-4494 / SA42721)
bump PKGREVISION

Revision 1.104.4.1 / (download) - annotate - [select for diffs], Sat Nov 27 04:47:33 2010 UTC (13 years, 4 months ago) by sbd
Branch: pkgsrc-2010Q3
Changes since 1.104: +3 -2 lines
Diff to previous 1.104 (colored) next main 1.105 (colored) to selected 1.35 (colored)

Pullup ticket 3286 - requested by tron
Security update for "libxml2" package

Revisions pulled up:
- pkgsrc/textproc/libxml2/Makefile	1.105, 1.106
- pkgsrc/textproc/libxml2/distinfo	1.79, 1.80, 1.81
- pkgsrc/textproc/libxml2/patches/patch-ab	1.19, 1.20, 1.21
- pkgsrc/textproc/libxml2/patches/patch-ae	1.11

-------------------------------------------------------------------------
   Module Name:	pkgsrc
   Committed By:	drochner
   Date:		Thu Nov 25 13:18:39 UTC 2010

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

   Log Message:
   update to 2.7.8
   changes:
   -add code to plug in ICU converters by default
   -Add xmlSaveOption XML_SAVE_WSNONSIG
   -documentation fixes
   -portability fixes
   -bugfixes, in particular for an XPath problem which can be exploited
    to crash the program by a malformed XPath expression (CVE-2010-4008)
   -misc improvements, cleanup


   To generate a diff of this commit:
   cvs rdiff -u -r1.104 -r1.105 pkgsrc/textproc/libxml2/Makefile
   cvs rdiff -u -r1.78 -r1.79 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r1.18 -r1.19 pkgsrc/textproc/libxml2/patches/patch-ab
   cvs rdiff -u -r1.10 -r1.11 pkgsrc/textproc/libxml2/patches/patch-ae

-------------------------------------------------------------------------
   Module Name:	pkgsrc
   Committed By:	hauke
   Date:		Fri Nov 26 12:56:21 UTC 2010

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

   Log Message:
   The Darwin 8 /bin/{,k}sh take offense at empty if .. fi blocks,
   so comment out the entire statement.


   To generate a diff of this commit:
   cvs rdiff -u -r1.79 -r1.80 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r1.19 -r1.20 pkgsrc/textproc/libxml2/patches/patch-ab

-------------------------------------------------------------------------
   Module Name:	pkgsrc
   Committed By:	drochner
   Date:		Fri Nov 26 13:43:25 UTC 2010

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

   Log Message:
   fix an obviously reversed conditional in "configure" which disabled
   symbol versioning, hopefully fixes PR pkg/44154 by Geert Hendrickx
   bump PKGREVISION


   To generate a diff of this commit:
   cvs rdiff -u -r1.105 -r1.106 pkgsrc/textproc/libxml2/Makefile
   cvs rdiff -u -r1.80 -r1.81 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r1.20 -r1.21 pkgsrc/textproc/libxml2/patches/patch-ab

Revision 1.106 / (download) - annotate - [select for diffs], Fri Nov 26 13:43:24 2010 UTC (13 years, 4 months ago) by drochner
Branch: MAIN
Changes since 1.105: +2 -1 lines
Diff to previous 1.105 (colored) to selected 1.35 (colored)

fix an obviously reversed conditional in "configure" which disabled
symbol versioning, hopefully fixes PR pkg/44154 by Geert Hendrickx
bump PKGREVISION

Revision 1.105 / (download) - annotate - [select for diffs], Thu Nov 25 13:18:38 2010 UTC (13 years, 4 months ago) by drochner
Branch: MAIN
Changes since 1.104: +2 -2 lines
Diff to previous 1.104 (colored) to selected 1.35 (colored)

update to 2.7.8
changes:
-add code to plug in ICU converters by default
-Add xmlSaveOption XML_SAVE_WSNONSIG
-documentation fixes
-portability fixes
-bugfixes, in particular for an XPath problem which can be exploited
 to crash the program by a malformed XPath expression (CVE-2010-4008)
-misc improvements, cleanup

Revision 1.104 / (download) - annotate - [select for diffs], Tue Apr 13 16:04:09 2010 UTC (13 years, 11 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2010Q3-base, pkgsrc-2010Q2-base, pkgsrc-2010Q2
Branch point for: pkgsrc-2010Q3
Changes since 1.103: +2 -2 lines
Diff to previous 1.103 (colored) to selected 1.35 (colored)

update to 2.7.7
changes:
-Adding a --xpath option to xmllint
-Make HTML parser non-recursive
-misc portability improvements and bugfixes

Revision 1.103 / (download) - annotate - [select for diffs], Sat Oct 31 03:05:20 2009 UTC (14 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4
Changes since 1.102: +2 -1 lines
Diff to previous 1.102 (colored) to selected 1.35 (colored)

Set LICENSE.

Revision 1.102 / (download) - annotate - [select for diffs], Wed Oct 21 14:55:32 2009 UTC (14 years, 5 months ago) by drochner
Branch: MAIN
Changes since 1.101: +2 -6 lines
Diff to previous 1.101 (colored) to selected 1.35 (colored)

update to 2.7.6
changes:
-bugfixes
-portability and documentation improvements
-cleanup

pkgsrc note: added some tweaks to EBCDIC support, both to fix non-
portable assumptions in the code and to work around NetBSD deficiencies;
now it needs only a little fix to CP273 (newline conversion) to make
the selftest succeed on NetBSD

Revision 1.100.4.1 / (download) - annotate - [select for diffs], Fri Aug 28 07:43:14 2009 UTC (14 years, 7 months ago) by spz
Branch: pkgsrc-2009Q2
Changes since 1.100: +2 -1 lines
Diff to previous 1.100 (colored) next main 1.101 (colored) to selected 1.35 (colored)

Pullup ticket 2873 - requested by tron
security update

Revisions pulled up:
- pkgsrc/textproc/libxml2/Makefile		1.101
- pkgsrc/textproc/libxml2/distinfo		1.72

Files added:
pkgsrc/textproc/libxml2/patches/patch-af	1.5

   Module Name:	pkgsrc
   Committed By:	tron
   Date:		Wed Aug 26 10:20:57 UTC 2009

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

   Log Message:
   Add patch to fix the security vulnerabilites reported in CVE-2009-2414
   and CVE-2009-2416.

   The patch was taken from the latest Fedora 11 "libxml2" source RPM.


   To generate a diff of this commit:
   cvs rdiff -u -r1.100 -r1.101 pkgsrc/textproc/libxml2/Makefile
   cvs rdiff -u -r1.71 -r1.72 pkgsrc/textproc/libxml2/distinfo
   cvs rdiff -u -r0 -r1.5 pkgsrc/textproc/libxml2/patches/patch-af

Revision 1.101 / (download) - annotate - [select for diffs], Wed Aug 26 10:20:57 2009 UTC (14 years, 7 months ago) by tron
Branch: MAIN
CVS Tags: pkgsrc-2009Q3-base, pkgsrc-2009Q3
Changes since 1.100: +2 -1 lines
Diff to previous 1.100 (colored) to selected 1.35 (colored)

Add patch to fix the security vulnerabilites reported in CVE-2009-2414
and CVE-2009-2416.

The patch was taken from the latest Fedora 11 "libxml2" source RPM.

Revision 1.100 / (download) - annotate - [select for diffs], Sat Feb 21 13:58:49 2009 UTC (15 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base, pkgsrc-2009Q1-base, pkgsrc-2009Q1
Branch point for: pkgsrc-2009Q2
Changes since 1.99: +2 -3 lines
Diff to previous 1.99 (colored) to selected 1.35 (colored)

Update to 2.7.3:

2.7.3: Jan 18 2009

    * Build fix: fix build when HTML support is not included.
    * Bug fixes: avoid memory overflow in gigantic text nodes,
    indentation problem on the writed (Rob Richards), xmlAddChildList
    pointer problem (Rob Richards and Kevin Milburn), xmlAddChild
    problem with attribute (Rob Richards and Kris Breuker), avoid
    a memory leak in an edge case (Daniel Zimmermann), deallocate
    some pthread data (Alex Ott).
    * Improvements: configure option to avoid rebuilding docs
    (Adrian Bunk), limit text nodes to 10MB max by default, add
    element traversal APIs, add a parser option to enable pre 2.7
    SAX behavior (Rob Richards), add gcc malloc checking (Marcus
    Meissner), add gcc printf like functions parameters checking
    (Marcus Meissner).

Revision 1.94.4.2 / (download) - annotate - [select for diffs], Wed Nov 26 11:12:09 2008 UTC (15 years, 4 months ago) by rtr
Branch: pkgsrc-2008Q3
Changes since 1.94.4.1: +3 -3 lines
Diff to previous 1.94.4.1 (colored) to branchpoint 1.94 (colored) next main 1.95 (colored) to selected 1.35 (colored)

pullup ticket #2596 - requested by tron
libxml2: update and patch package for security fixes

revisions pulled up:
pkgsrc/textproc/libxml2/Makefile		1.97,1.98,1.99
pkgsrc/textproc/libxml2/distinfo		1.69,1.70
pkgsrc/textproc/libxml2/patches/patch-af	r0,1.3
pkgsrc/textproc/libxml2/patches/patch-ag	r0,1.5
pkgsrc/textproc/libxml2/patches/patch-ah	1.3

   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Thu Oct 16 13:31:57 UTC 2008

   Modified Files:
           pkgsrc/textproc/libxml2: Makefile distinfo
   Removed Files:
           pkgsrc/textproc/libxml2/patches: patch-af patch-ag

   Log Message:
   update to 2.7.2
   changes:
   -Portability fix: fix solaris compilation problem, fix compilation
    if XPath is not configured in
   -Bug fixes: nasty entity bug introduced in 2.7.0, restore old behaviour
    when saving an HTML doc with an xml dump function,
    HTML UTF-8 parsing bug, fix reader custom error handlers
   -Improvement: xmlSave options for more flexibility to save
    as XML/HTML/XHTML, handle leading BOM in HTML documents

   ------------------------------------------------------------------------
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Fri Oct 17 16:06:04 UTC 2008

   Modified Files:
           pkgsrc/textproc/libxml2: Makefile

   Log Message:
   restore the without-threads config arg which I accidentally commented
   out in the last update, bump PKGREVISION
   fixes PR pkg/39755 by David A. Holland

   ------------------------------------------------------------------------

   Module Name:    pkgsrc
   Committed By:   tron
   Date:           Mon Nov 24 13:59:16 UTC 2008

   Modified Files:
           pkgsrc/textproc/libxml2: Makefile distinfo
   Added Files:
           pkgsrc/textproc/libxml2/patches: patch-af patch-ag patch-ah

   Log Message:
   Add fixes for security vulnerabilities reported in CVE-2008-4225 and
   CVE-2008-4226 from "libxml2" SVN repository. Bump package revision.

Revision 1.99 / (download) - annotate - [select for diffs], Mon Nov 24 13:59:16 2008 UTC (15 years, 4 months ago) by tron
Branch: MAIN
CVS Tags: pkgsrc-2008Q4-base, pkgsrc-2008Q4
Changes since 1.98: +2 -2 lines
Diff to previous 1.98 (colored) to selected 1.35 (colored)

Add fixes for security vulnerabilities reported in CVE-2008-4225 and
CVE-2008-4226 from "libxml2" SVN repository. Bump package revision.

Revision 1.98 / (download) - annotate - [select for diffs], Fri Oct 17 16:06:04 2008 UTC (15 years, 5 months ago) by drochner
Branch: MAIN
Changes since 1.97: +3 -2 lines
Diff to previous 1.97 (colored) to selected 1.35 (colored)

restore the without-threads config arg which I accidentally commented
out in the last update, bump PKGREVISION
fixes PR pkg/39755 by David A. Holland

Revision 1.97 / (download) - annotate - [select for diffs], Thu Oct 16 13:31:57 2008 UTC (15 years, 5 months ago) by drochner
Branch: MAIN
Changes since 1.96: +3 -4 lines
Diff to previous 1.96 (colored) to selected 1.35 (colored)

update to 2.7.2
changes:
-Portability fix: fix solaris compilation problem, fix compilation
 if XPath is not configured in
-Bug fixes: nasty entity bug introduced in 2.7.0, restore old behaviour
 when saving an HTML doc with an xml dump function,
 HTML UTF-8 parsing bug, fix reader custom error handlers
-Improvement: xmlSave options for more flexibility to save
 as XML/HTML/XHTML, handle leading BOM in HTML documents
cvs: ----------------------------------------------------------------------

Revision 1.94.4.1 / (download) - annotate - [select for diffs], Sun Oct 12 12:09:10 2008 UTC (15 years, 5 months ago) by rtr
Branch: pkgsrc-2008Q3
Changes since 1.94: +2 -1 lines
Diff to previous 1.94 (colored) to selected 1.35 (colored)

pullup ticket #2553 - requested by tron
libxml2: security fix

revisions pulled up:
pkgsrc/textproc/libxml2/Makefile		1.95
pkgsrc/textproc/libxml2/distinfo		1.67
pkgsrc/textproc/libxml2/patches/patch-af	1.1

   Module Name:    pkgsrc
   Committed By:   tron
   Date:           Thu Oct  9 15:01:27 UTC 2008

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

   Log Message:
   Add a fix for CVE-2008-4409 (also known as CVE-2008-4422) from the
   GNOME bugzilla. Bump package revision.

Revision 1.96 / (download) - annotate - [select for diffs], Thu Oct 9 19:20:36 2008 UTC (15 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.95: +2 -13 lines
Diff to previous 1.95 (colored) to selected 1.35 (colored)

Split off options.mk file.
Remove ancient workaround for sparc64/1.6 problem.

Revision 1.95 / (download) - annotate - [select for diffs], Thu Oct 9 15:01:27 2008 UTC (15 years, 5 months ago) by tron
Branch: MAIN
Changes since 1.94: +2 -1 lines
Diff to previous 1.94 (colored) to selected 1.35 (colored)

Add a fix for CVE-2008-4409 (also known as CVE-2008-4422) from the
GNOME bugzilla. Bump package revision.

Revision 1.93.4.1 / (download) - annotate - [select for diffs], Thu Sep 11 12:22:36 2008 UTC (15 years, 6 months ago) by ghen
Branch: pkgsrc-2008Q2
Changes since 1.93: +3 -3 lines
Diff to previous 1.93 (colored) next main 1.94 (colored) to selected 1.35 (colored)

Pullup ticket 2527 - requested by wiz
security update for libxml2

- pkgsrc/textproc/libxml2/Makefile			1.94
- pkgsrc/textproc/libxml2/distinfo			1.66
- pkgsrc/textproc/libxml2/patches/patch-aa		1.23

   Module Name:		pkgsrc
   Committed By:	wiz
   Date:		Sat Sep  6 14:58:34 UTC 2008

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

   Log Message:
   Update to 2.7.1:

   2.7.1: Sep 1 2008

       * Portability fix: Borland C fix (Moritz Both)
       * Bug fixes: python serialization wrappers, XPath QName corner
         case handking and leaks (Martin)
       * Improvement: extend the xmlSave to handle HTML documents and trees
       * Cleanup: python serialization wrappers

   2.7.0: Aug 30 2008

       * Documentation: switch ChangeLog to UTF-8, improve mutithreads
       and xmlParserCleanup docs
       * Portability fixes: Older Win32 platforms (Rob Richards), MSVC
       porting fix (Rob Richards), Mac OS X regression tests (Sven
       Herzberg), non GNUCC builds (Rob Richards), compilation on
       Haiku (Andreas F�òber)
       * Bug fixes: various realloc problems (Ashwin), potential
       double-free (Ashwin), regexp crash, icrash with invalid whitespace
       facets (Rob Richards), pattern fix when streaming (William
       Brack), various XML parsing and validation fixes based on the
       W3C regression tests, reader tree skipping function fix (Ashwin),
       Schemas regexps escaping fix (Volker Grabsch), handling of
       entity push errors (Ashwin), fix a slowdown when encoder cant
       serialize characters on output
       * Code cleanup: compilation fix without the reader, without
       the output (Robert Schwebel), python whitespace (Martin), many
       space/tabs cleanups, serious cleanup of the entity handling
       code
       * Improvement: switch parser to XML-1.0 5th edition, add parsing
       flags for old versions, switch URI parsing to RFC 3986, add
       xmlSchemaValidCtxtGetParserCtxt (Holger Kaelberer), new hashing
       functions for dictionnaries (based on Stefan Behnel work),
       improve handling of misplaced html/head/body in HTML parser,
       better regression test tools and code coverage display, better
       algorithms to detect various versions of the billion laughts
       attacks, make arbitrary parser limits avoidable as a parser
       option

Revision 1.94 / (download) - annotate - [select for diffs], Sat Sep 6 14:58:34 2008 UTC (15 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base, cube-native-xorg-base, cube-native-xorg
Branch point for: pkgsrc-2008Q3
Changes since 1.93: +3 -3 lines
Diff to previous 1.93 (colored) to selected 1.35 (colored)

Update to 2.7.1:

2.7.1: Sep 1 2008

    * Portability fix: Borland C fix (Moritz Both)
    * Bug fixes: python serialization wrappers, XPath QName corner
      case handking and leaks (Martin)
    * Improvement: extend the xmlSave to handle HTML documents and trees
    * Cleanup: python serialization wrappers

2.7.0: Aug 30 2008

    * Documentation: switch ChangeLog to UTF-8, improve mutithreads
    and xmlParserCleanup docs
    * Portability fixes: Older Win32 platforms (Rob Richards), MSVC
    porting fix (Rob Richards), Mac OS X regression tests (Sven
    Herzberg), non GNUCC builds (Rob Richards), compilation on
    Haiku (Andreas F�òber)
    * Bug fixes: various realloc problems (Ashwin), potential
    double-free (Ashwin), regexp crash, icrash with invalid whitespace
    facets (Rob Richards), pattern fix when streaming (William
    Brack), various XML parsing and validation fixes based on the
    W3C regression tests, reader tree skipping function fix (Ashwin),
    Schemas regexps escaping fix (Volker Grabsch), handling of
    entity push errors (Ashwin), fix a slowdown when encoder cant
    serialize characters on output
    * Code cleanup: compilation fix without the reader, without
    the output (Robert Schwebel), python whitespace (Martin), many
    space/tabs cleanups, serious cleanup of the entity handling
    code
    * Improvement: switch parser to XML-1.0 5th edition, add parsing
    flags for old versions, switch URI parsing to RFC 3986, add
    xmlSchemaValidCtxtGetParserCtxt (Holger Kaelberer), new hashing
    functions for dictionnaries (based on Stefan Behnel work),
    improve handling of misplaced html/head/body in HTML parser,
    better regression test tools and code coverage display, better
    algorithms to detect various versions of the billion laughts
    attacks, make arbitrary parser limits avoidable as a parser
    option

Revision 1.93 / (download) - annotate - [select for diffs], Sun May 4 06:59:51 2008 UTC (15 years, 10 months ago) by dsainty
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base, cwrapper
Branch point for: pkgsrc-2008Q2
Changes since 1.92: +3 -2 lines
Diff to previous 1.92 (colored) to selected 1.35 (colored)

Add an HTTP download option to MASTER_SITES

Revision 1.92 / (download) - annotate - [select for diffs], Tue Apr 22 21:42:07 2008 UTC (15 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.91: +2 -2 lines
Diff to previous 1.91 (colored) to selected 1.35 (colored)

Update to 2.6.32:

2.6.32: Apr 8 2008

* Documentation: returning heap memory to kernel (Wolfram Sang),
  trying to clarify xmlCleanupParser() use, xmlXPathContext
  improvement (Jack Jansen), improve the *Recover* functions
  documentation, XmlNodeType doc link fix (Martijn Arts)
* Bug fixes: internal subset memory leak (Ashwin), avoid problem
  with paths starting with // (Petr Sumbera), streaming XSD validation
  callback patches (Ashwin), fix redirection on port other than 80
  (William Brack), SAX2 leak (Ashwin), XInclude fragment of own
  document (Chris Ryan), regexp bug with '.' (Andrew Tosh), flush
  the writer at the end of the document (Alfred Mickautsch), output
  I/O bug fix (William Brack), writer CDATA output after a text
  node (Alex Khesin), UTF-16 encoding detection (William Brack),
  fix handling of empty CDATA nodes for Safari team, python binding
  problem with namespace nodes, improve HTML parsing (Arnold
  Hendriks), regexp automata build bug, memory leak fix (Vasily
  Chekalkin), XSD test crash, weird system parameter entity parsing
  problem, allow save to file:///X:/ windows paths, various attribute
  normalisation problems, externalSubsetSplit fix (Ashwin), attribute
  redefinition in the DTD (Ashwin), fix in char ref parsing check
  (Alex Khesin), many out of memory handling fixes (Ashwin), XPath
  out of memory handling fixes (Alvaro Herrera), various realloc
  problems (Ashwin), UCS4 encoding conversion buffer size (Christian
  Fruth), problems with EatName functions on memory errors, BOM
  handling in external parsed entities (Mark Rowe)
* Code cleanup: fix build under VS 2008 (David Wimsey), remove
  useless mutex in xmlDict (Florent Guilian), Mingw32 compilation
  fix (Carlo Bramini), Win and MacOS EOL cleanups (Florent Guiliani),
  iconv need a const detection (Roumen Petrov), simplify xmlSetProp
  (Julien Charbon), cross compilation fixes for Mingw (Roumen
  Petrov), SCO Openserver build fix (Florent Guiliani), iconv uses
  const on Win32 (Rob Richards), duplicate code removal (Ashwin),
  missing malloc test and error reports (Ashwin), VMS makefile fix
  (Tycho Hilhorst)
* improvements: better plug of schematron in the normal error
  handling (Tobias Minich)

Revision 1.91 / (download) - annotate - [select for diffs], Tue Jan 15 23:39:03 2008 UTC (16 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base, pkgsrc-2008Q1
Changes since 1.90: +2 -2 lines
Diff to previous 1.90 (colored) to selected 1.35 (colored)

Update to 2.6.31:

2.6.31: Jan 11 2008:
   - Security fix: missing of checks in UTF-8 parsing
   - Bug fixes: regexp bug, dump attribute from XHTML document, fix
      xmlFree(NULL) to not crash in debug mode, Schematron parsing crash
      (Rob Richards), global lock free on Windows (Marc-Antoine Ruel),
      XSD crash due to double free (Rob Richards), indentation fix in
      xmlTextWriterFullEndElement (Felipe Pena), error in attribute type
      parsing if attribute redeclared, avoid crash in hash list scanner if
      deleting elements, column counter bug fix (Christian Schmidt),
      HTML embed element saving fix (Stefan Behnel), avoid -L/usr/lib
      output from xml2-config (Fred Crozat), avoid an xmllint crash
      (Stefan Kost), don't stop HTML parsing on out of range chars.

   - Code cleanup: fix open() call third argument, regexp cut'n paste
      copy error, unused variable in __xmlGlobalInitMutexLock (Hannes Eder),
      some make distcheck realted fixes (John Carr)
   - Improvements: HTTP Header: includes port number (William Brack),
      testURI --debug option,

Revision 1.90 / (download) - annotate - [select for diffs], Wed Oct 31 20:14:45 2007 UTC (16 years, 5 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base, pkgsrc-2007Q4
Changes since 1.89: +10 -1 lines
Diff to previous 1.89 (colored) to selected 1.35 (colored)

make it obey the inet6 option, from Yakovetsky Vladimir per PR pkg/37120
(A single trivial option os not worth wasting an inode, so I've
put it into the Makefile.)

Revision 1.89 / (download) - annotate - [select for diffs], Sat Sep 8 21:58:00 2007 UTC (16 years, 6 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2007Q3-base, pkgsrc-2007Q3
Changes since 1.88: +2 -8 lines
Diff to previous 1.88 (colored) to selected 1.35 (colored)

Convert to use the features framework.

Revision 1.88 / (download) - annotate - [select for diffs], Thu Sep 6 21:51:54 2007 UTC (16 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.87: +2 -3 lines
Diff to previous 1.87 (colored) to selected 1.35 (colored)

Convert all libnbcompat/buildlink3.mk references to inplace.mk.

Revision 1.87 / (download) - annotate - [select for diffs], Wed Aug 29 22:27:09 2007 UTC (16 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.86: +2 -2 lines
Diff to previous 1.86 (colored) to selected 1.35 (colored)

Update to 2.6.30:

* Portability: Solaris crash on error handling, windows path fixes
(Roland Schwarz and Rob Richards), mingw build (Roland Schwarz)

* Bugfixes: xmlXPathNodeSetSort problem (William Brack), leak when
reusing a writer for a new document (Dodji Seketeli), Schemas
xsi:nil handling patch (Frank Gross), relative URI build problem
(Patrik Fimml), crash in xmlDocFormatDump, invalid char in comment
detection bug, fix disparity with xmlSAXUserParseMemory, automata
generation for complex regexp counts problems, Schemas IDC import
problems (Frank Gross), xpath predicate evailation error handling
(William Brack)

Revision 1.86 / (download) - annotate - [select for diffs], Sat Jul 7 15:28:30 2007 UTC (16 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.85: +2 -2 lines
Diff to previous 1.85 (colored) to selected 1.35 (colored)

Update to 2.6.29:

2.6.29: Jun 12 2007:
   - Portability: patches from Andreas Stricke for WinCEi,
      fix compilation warnings (William Brack), avoid warnings on Apple OS/X
      (Wendy Doyle and Mark Rowe), Windows compilation and threading
      improvements (Rob Richards), compilation against old Python versions,
      new GNU tar changes (Ryan Hill)
   - Documentation: xmlURIUnescapeString comment,
   - Bugfixes: xmlBufferAdd problem (Richard Jones), 'make valgrind'
      flag fix (Richard Jones), regexp interpretation of \,
      htmlCreateDocParserCtxt (Jean-Daniel Dupas), configure.in
      typo (Bjorn Reese), entity content failure, xmlListAppend() fix
      (Georges-André Silber), XPath number serialization (William Brack),
      nanohttp gzipped stream fix (William Brack and Alex Cornejo),
      xmlCharEncFirstLine typo (Mark Rowe), uri bug (François Delyon),
      XPath string value of PI nodes (William Brack), XPath node set
      sorting bugs (William Brack), avoid outputting namespace decl
      dups in the writer (Rob Richards), xmlCtxtReset bug, UTF-8 encoding
      error handling, recustion on next in catalogs, fix a Relax-NG crash,
      workaround wrong file: URIs, htmlNodeDumpFormatOutput on attributes,
      invalid character in attribute detection bug, big comments before
      internal subset streaming bug, HTML parsing of attributes with : in
      the name
   - Improvement: keep URI query parts in raw form (Richard Jones),
      embed tag support in HTML (Michael Day)

Revision 1.85 / (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-2007Q2-base, pkgsrc-2007Q2
Changes since 1.84: +2 -2 lines
Diff to previous 1.84 (colored) to selected 1.35 (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.84 / (download) - annotate - [select for diffs], Fri Nov 3 06:56:23 2006 UTC (17 years, 4 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2007Q1-base, pkgsrc-2007Q1, pkgsrc-2006Q4-base, pkgsrc-2006Q4
Changes since 1.83: +2 -1 lines
Diff to previous 1.83 (colored) to selected 1.35 (colored)

DESTDIR support.

Revision 1.83 / (download) - annotate - [select for diffs], Mon Oct 30 20:57:30 2006 UTC (17 years, 5 months ago) by drochner
Branch: MAIN
Changes since 1.82: +4 -6 lines
Diff to previous 1.82 (colored) to selected 1.35 (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.82 / (download) - annotate - [select for diffs], Wed Oct 4 20:20:03 2006 UTC (17 years, 5 months ago) by rillig
Branch: MAIN
Changes since 1.81: +6 -2 lines
Diff to previous 1.81 (colored) to selected 1.35 (colored)

Fixed the "test" phase by adding a dependency on Perl, but only if the
tests are enabled.

Revision 1.81 / (download) - annotate - [select for diffs], Sun Oct 1 08:53:05 2006 UTC (17 years, 6 months ago) by schwarz
Branch: MAIN
Changes since 1.80: +10 -1 lines
Diff to previous 1.80 (colored) to selected 1.35 (colored)


added support for IRIX 5

Revision 1.80 / (download) - annotate - [select for diffs], Fri Jun 9 21:16:38 2006 UTC (17 years, 9 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2
Changes since 1.79: +2 -3 lines
Diff to previous 1.79 (colored) to selected 1.35 (colored)

update to 2.6.26
changes: fixes for bugs and memory leaks, minor optimizations

Revision 1.79 / (download) - annotate - [select for diffs], Mon May 15 08:27:31 2006 UTC (17 years, 10 months ago) by minskim
Branch: MAIN
Changes since 1.78: +2 -1 lines
Diff to previous 1.78 (colored) to selected 1.35 (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.78 / (download) - annotate - [select for diffs], Wed May 3 11:01:17 2006 UTC (17 years, 11 months ago) by drochner
Branch: MAIN
Changes since 1.77: +2 -3 lines
Diff to previous 1.77 (colored) to selected 1.35 (colored)

update to 2.6.24
changes:
-Portability fixes (Windows, HP-UX, gcc-4.1)
-Improvements: xmlDOMWrapReconcileNamespaces xmlDOMWrapCloneNode
-update to Unicode 4.01
-Bug fixes
-man pages updates and cleanups
-New features: Relax NG structure error handlers

Revision 1.77 / (download) - annotate - [select for diffs], Sun Feb 5 23:11:03 2006 UTC (18 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1
Changes since 1.76: +2 -1 lines
Diff to previous 1.76 (colored) to selected 1.35 (colored)

Recursive revision bump / recommended bump for gettext ABI change.

Revision 1.76 / (download) - annotate - [select for diffs], Sat Jan 14 07:50:52 2006 UTC (18 years, 2 months ago) by recht
Branch: MAIN
Changes since 1.75: +2 -2 lines
Diff to previous 1.75 (colored) to selected 1.35 (colored)

update to libxml2 2.6.23

changes:
Portability fixes:
 - Windows (Rob Richards)
 - getaddrinfo on Windows (Kolja Nowak
 - Rob Richards)
 - icc warnings (Kjartan Maraas)
 - --with-minimum compilation fixes (William Brack)
 - error case handling fix on Solaris (Albert Chin)
 - don't use 'list' as parameter name reported by Samuel Diaz Garcia
 - more old Unices portability fixes (Albert Chin)
 - MinGW compilation (Mark Junker)
 - HP-UX compiler warnings (Rick Jones)

Code cleanup:
 - xmlReportError (Adrian Mouat)
 - remove xmlBufferClose (Geert Jansen)
 - unreachable code (Oleksandr Kononenko)
 - refactoring parsing code (Bjorn Reese)

Bug fixes:
 - xmlBuildRelativeURI and empty path (William Brack)
 - combinatory explosion and performances in regexp code
 - leak in xmlTextReaderReadString()
 - xmlStringLenDecodeEntities problem (Massimo Morara)
 - Identity Constraints bugs and a segfault (Kasimier Buchcik)
 - XPath pattern based evaluation bugs (DV & Kasimier)
 - xmlSchemaContentModelDump() memory leak (Kasimier)
 - potential leak in xmlSchemaCheckCSelectorXPath()
 - xmlTextWriterVSprintf() misuse of vsnprintf (William Brack)
 - XHTML serialization fix (Rob Richards)
 - CRLF split problem (William)
 - issues with non-namespaced attributes in xmlAddChild(), xmlAddNextSibling()
   and xmlAddPrevSibling() (Rob Richards)
 - HTML parsing of script
 - Python must not output to stdout (Nic Ferrier)
 - exclusive C14N namespace visibility (Aleksey Sanin)
 - XSD dataype totalDigits bug (Kasimier Buchcik)
 - error handling when writing to an xmlBuffer (Rob Richards)
 - runtest schemas error not reported (Hisashi Fujinaka)
 - signed/unsigned problem in date/time code (Albert Chin)
 - fix XSI driven XSD validation (Kasimier)
 - parsing of xs:decimal (Kasimier)
 - fix DTD writer output (Rob Richards)
 - leak in xmlTextReaderReadInnerXml (Gary Coady)
 - regexp bug affecting schemas (Kasimier)
 - configuration of runtime debugging (Kasimier)
 - xmlNodeBufGetContent bug on entity refs (Oleksandr Kononenko)
 - xmlRegExecPushString2 bug (Sreeni Nair)
 - compilation and build fixes (Michael Day)
 - removed dependancies on xmlSchemaValidError (Kasimier)
 - bug with <xml:foo/>
 - more XPath pattern based evaluation fixes (Kasimier)

Improvements:
 - XSD Schemas redefinitions/restrictions (Kasimier Buchcik)
 - node copy checks and fix for attribute (Rob Richards)
 - counted transition bug in regexps
 - ctxt->standalone = -2 to indicate no standalone attribute was found
 - add xmlSchemaSetParserStructuredErrors() (Kasimier Buchcik)
 - add xmlTextReaderSchemaValidateCtxt() to API (Kasimier)
 - handle gzipped HTTP resources (Gary Coady)
 - add htmlDocDumpMemoryFormat. (Rob Richards)

Documentation:
 - typo (Michael Day)
 - libxml man page (Albert Chin)
 - save function to XML buffer (Geert Jansen)
 - small doc fix (Aron Stansvik)

Revision 1.75 / (download) - annotate - [select for diffs], Mon Dec 5 20:51:06 2005 UTC (18 years, 3 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.74: +2 -2 lines
Diff to previous 1.74 (colored) to selected 1.35 (colored)

Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in

    http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html

Revision 1.74 / (download) - annotate - [select for diffs], Fri Sep 30 19:58:00 2005 UTC (18 years, 6 months ago) by wiz
Branch: MAIN
Changes since 1.73: +3 -3 lines
Diff to previous 1.73 (colored) to selected 1.35 (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.73 / (download) - annotate - [select for diffs], Thu Sep 8 07:31:54 2005 UTC (18 years, 6 months ago) by recht
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q3
Changes since 1.72: +2 -2 lines
Diff to previous 1.72 (colored) to selected 1.35 (colored)

Remove tar from USE_TOOLS again. gtar (was changed to tar later) was added,
to work around problems with the bootstrap pax and libxml2-2.6.20 on
Darwin.

Revision 1.72 / (download) - annotate - [select for diffs], Mon Sep 5 07:37:50 2005 UTC (18 years, 6 months ago) by recht
Branch: MAIN
Changes since 1.71: +2 -2 lines
Diff to previous 1.71 (colored) to selected 1.35 (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.71 / (download) - annotate - [select for diffs], Sat Sep 3 14:23:50 2005 UTC (18 years, 6 months ago) by xtraeme
Branch: MAIN
Changes since 1.70: +2 -2 lines
Diff to previous 1.70 (colored) to selected 1.35 (colored)

USE_TOOLS+=gtar is clearly not the right thing here, replace it
with the 'tar'.

Revision 1.70 / (download) - annotate - [select for diffs], Tue Jul 12 21:15:21 2005 UTC (18 years, 8 months ago) by recht
Branch: MAIN
Changes since 1.69: +3 -3 lines
Diff to previous 1.69 (colored) to selected 1.35 (colored)

update to libxml2 2.6.20

2.6.20: Jul 10 2005:
   -  build fixes: Windows build (Rob Richards), Mingw compilation (Igor
       Zlatkovic), Windows Makefile (Igor), gcc warnings (Kasimier and
       andriy@google.com), use gcc weak references to pthread to avoid the
       pthread dependancy on Linux, compilation problem (Steve Nairn),
       compiling of subset (Morten Welinder), IPv6/ss_family compilation
       (William Brack), compilation when disabling parts of the library,
       standalone test distribution.

   -  bug fixes: bug in lang(), memory cleanup on errors (William Brack),
       HTTP query strings (Aron Stansvik), memory leak in DTD (William),
       integer overflow in XPath (William), nanoftp buffer size, pattern
       "." apth fixup (Kasimier), leak in tree reported by Malcolm Rowe,
       replaceNode patch (Brent Hendricks), CDATA with NULL content
       (Mark Vakoc), xml:base fixup on XInclude (William), pattern
       fixes (William), attribute bug in exclusive c14n (Aleksey Sanin),
       xml:space and xml:lang with SAX2 (Rob Richards), namespace
       trouble in complex parsing (Malcolm Rowe), XSD type QNames fixes
       (Kasimier), XPath streaming fixups (William), RelaxNG bug (Rob Richards),
       Schemas for Schemas fixes (Kasimier), removal of ID (Rob Richards),
       a small RelaxNG leak, HTML parsing in push mode bug (James Bursa),
       failure to detect UTF-8 parsing bugs in CDATA sections, areBlanks()
       heuristic failure, duplicate attributes in DTD bug (William).

   -  improvements: lot of work on Schemas by Kasimier Buchcik both on
       conformance and streaming, Schemas validation messages (Kasimier
       Buchcik, Matthew Burgess), namespace removal at the python level
       (Brent Hendricks), Update to new Schemas regression tests from
       W3C/Nist (Kasimier), xmlSchemaValidateFile() (Kasimier), implementation
       of xmlTextReaderReadInnerXml and xmlTextReaderReadOuterXml (James Wert),
       standalone test framework and programs, new DOM import APIs
       xmlDOMWrapReconcileNamespaces() xmlDOMWrapAdoptNode() and
       xmlDOMWrapRemoveNode(), extension of xmllint capabilities for
       SAX and Schemas regression tests, xmlStopParser() available in
       pull mode too, ienhancement to xmllint --shell namespaces support,
       Windows port of the standalone testing tools (Kasimier and William),
       xmlSchemaValidateStream() xmlSchemaSAXPlug() and xmlSchemaSAXUnplug()
       SAX Schemas APIs, Schemas xmlReader support.

Revision 1.69 / (download) - annotate - [select for diffs], Sun May 22 20:08:35 2005 UTC (18 years, 10 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base, pkgsrc-2005Q2
Changes since 1.68: +2 -2 lines
Diff to previous 1.68 (colored) to selected 1.35 (colored)

Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:

	USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison

Revision 1.68 / (download) - annotate - [select for diffs], Mon Apr 11 21:47:36 2005 UTC (18 years, 11 months ago) by tv
Branch: MAIN
Changes since 1.67: +1 -2 lines
Diff to previous 1.67 (colored) to selected 1.35 (colored)

Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.

Revision 1.67 / (download) - annotate - [select for diffs], Sat Apr 9 15:55:56 2005 UTC (18 years, 11 months ago) by recht
Branch: MAIN
Changes since 1.66: +2 -2 lines
Diff to previous 1.66 (colored) to selected 1.35 (colored)

update to libxml2-2.6.18
  This release include a number of bug fixes, some build fixes and more
improvements on the W3C XML Schemas validation from Kasimier Buchcik:

build fixes:
 - drop .la from RPMs
 - --with-minimum build fix (William Brack)
 - use XML_SOCKLEN_T instead of SOCKLEN_T because it breaks with
   AIX 5.3 compiler
 - fixed elfgcchack.h generation and PLT reduction code on Linux/ELF/gcc4
bug fixes:
 - schemas type decimal fixups (William Brack)
 - xmmlint return code (Gerry Murphy)
 - small schemas fixes (Matthew Burgess and GUY Fabrice)
 - workaround "DAV:" namespace brokeness in c14n (Aleksey Sanin)
 - segfault in Schemas (Kasimier Buchcik)
 - Schemas attribute validation (Kasimier)
 - Prop related functions and xmlNewNodeEatName (Rob Richards)
 - HTML serialization of name attribute on a elements
 - Python error handlers leaks and improvement (Brent Hendricks)
 - uninitialized variable in encoding code
 - Relax-NG validation bug
 - potential crash if gnorableWhitespace is NULL
 - xmlSAXParseDoc and xmlParseDoc signatures
 - switched back to assuming UTF-8 in case no encoding is given
   at serialization time
improvements:
 - lot of work on Schemas by Kasimier Buchcik on facets checking and
   also mixed handling.

Revision 1.66 / (download) - annotate - [select for diffs], Mon Mar 21 23:15:40 2005 UTC (19 years ago) by recht
Branch: MAIN
Changes since 1.65: +2 -2 lines
Diff to previous 1.65 (colored) to selected 1.35 (colored)

update to libxml2-2.6.18

2.6.18: Mar 13 2005:
   -  build fixes: warnings (Peter Breitenlohner), testapi.c generation,
       Bakefile support (Francesco Montorsi), Windows compilation (Joel Reed),
       some gcc4 fixes, HP-UX portability fixes (Rick Jones).
   -  bug fixes: xmlSchemaElementDump namespace (Kasimier Buchcik), push and
       xmlreader stopping on non-fatal errors, thread support for dictionnaries
       reference counting (Gary Coady), internal subset and push problem,
       URL saved in xmlCopyDoc, various schemas bug fixes (Kasimier), Python
       paths fixup (Stephane Bidoul), xmlGetNodePath and namespaces,
       xmlSetNsProp fix (Mike Hommey), warning should not count as error
       (William Brack), xmlCreatePushParser empty chunk, XInclude parser
       flags (William), cleanup FTP and HTTP code to reuse the uri parsing
       and IPv6 (William), xmlTextWriterStartAttributeNS fix (Rob Richards),
       XMLLINT_INDENT being empty (William), xmlWriter bugs (Rob Richards),
       multithreading on Windows (Rich Salz), xmlSearchNsByHref fix (Kasimier),
       Python binding leak (Brent Hendricks), aliasing bug exposed by gcc4
       on s390, xmlTextReaderNext bug (Rob Richards), Schemas decimal type
       fixes (William Brack), xmlByteConsumed static buffer (Ben Maurer).
   -  improvement: speedup parsing comments and DTDs, dictionnary support for
       hash tables, Schemas Identity constraints (Kasimier), streaming XPath
       subset, xmlTextReaderReadString added (Bjorn Reese), Schemas canonical
       values handling (Kasimier), add xmlTextReaderByteConsumed (Aron
       Stansvik),
   -  Documentation: Wiki support (Joel Reed)

Revision 1.65 / (download) - annotate - [select for diffs], Sat Feb 12 16:27:47 2005 UTC (19 years, 1 month ago) by recht
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1
Changes since 1.64: +6 -3 lines
Diff to previous 1.64 (colored) to selected 1.35 (colored)

Work around by the recent buildfailure by rather patching/sed'ing the
catalog path in the relevant files (catalog.c, xmlcatalog.c) directly
rather than defining it in the CFLAGS.
Do not bump pkgrevision since nothing changed in the resulting binaries.

Revision 1.64 / (download) - annotate - [select for diffs], Sun Jan 16 22:28:34 2005 UTC (19 years, 2 months ago) by recht
Branch: MAIN
Changes since 1.63: +2 -2 lines
Diff to previous 1.63 (colored) to selected 1.35 (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.59.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.59: +2 -2 lines
Diff to previous 1.59 (colored) next main 1.60 (colored) to selected 1.35 (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.63 / (download) - annotate - [select for diffs], Thu Nov 11 21:01:15 2004 UTC (19 years, 4 months ago) by recht
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.62: +2 -2 lines
Diff to previous 1.62 (colored) to selected 1.35 (colored)

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)

Revision 1.62 / (download) - annotate - [select for diffs], Sun Oct 31 10:40:50 2004 UTC (19 years, 5 months ago) by recht
Branch: MAIN
Changes since 1.61: +2 -2 lines
Diff to previous 1.61 (colored) to selected 1.35 (colored)

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.

Revision 1.61 / (download) - annotate - [select for diffs], Thu Oct 21 05:28:17 2004 UTC (19 years, 5 months ago) by xtraeme
Branch: MAIN
Changes since 1.60: +2 -3 lines
Diff to previous 1.60 (colored) to selected 1.35 (colored)

Update textproc/libxml2 to 2.6.14, this is a bugfix release.

Revision 1.60 / (download) - annotate - [select for diffs], Sun Oct 3 00:18:20 2004 UTC (19 years, 5 months ago) by tv
Branch: MAIN
Changes since 1.59: +2 -1 lines
Diff to previous 1.59 (colored) to selected 1.35 (colored)

Libtool fix for PR pkg/26633, and other issues.  Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.

Revision 1.59 / (download) - annotate - [select for diffs], Thu Sep 2 11:13:27 2004 UTC (19 years, 6 months ago) by jmmv
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base
Branch point for: pkgsrc-2004Q3
Changes since 1.58: +2 -2 lines
Diff to previous 1.58 (colored) to selected 1.35 (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.58 / (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.57: +2 -3 lines
Diff to previous 1.57 (colored) to selected 1.35 (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.57 / (download) - annotate - [select for diffs], Wed Aug 4 11:19:59 2004 UTC (19 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.56: +2 -1 lines
Diff to previous 1.56 (colored) to selected 1.35 (colored)

Add -Wl,-R${libdir} to xml2-config output, similar to how it is done
in libxml. Bump PKGREVISION.

Revision 1.56 / (download) - annotate - [select for diffs], Tue Jul 6 13:52:25 2004 UTC (19 years, 8 months ago) by xtraeme
Branch: MAIN
Changes since 1.55: +5 -5 lines
Diff to previous 1.55 (colored) to selected 1.35 (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.55 / (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.54: +6 -5 lines
Diff to previous 1.54 (colored) to selected 1.35 (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.54 / (download) - annotate - [select for diffs], Fri May 7 01:14:50 2004 UTC (19 years, 10 months ago) by xtraeme
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base, pkgsrc-2004Q2
Changes since 1.53: +2 -2 lines
Diff to previous 1.53 (colored) to selected 1.35 (colored)

Drop maintainership; I don't have the enough free time to maintain
all these packages.

Revision 1.53 / (download) - annotate - [select for diffs], Mon Apr 19 14:24:57 2004 UTC (19 years, 11 months ago) by jmmv
Branch: MAIN
Changes since 1.52: +2 -5 lines
Diff to previous 1.52 (colored) to selected 1.35 (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.52 / (download) - annotate - [select for diffs], Sun Mar 28 21:31:46 2004 UTC (20 years ago) by jmmv
Branch: MAIN
Changes since 1.51: +4 -3 lines
Diff to previous 1.51 (colored) to selected 1.35 (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.51 / (download) - annotate - [select for diffs], Mon Mar 22 22:25:59 2004 UTC (20 years ago) by snj
Branch: MAIN
CVS Tags: pkgsrc-2004Q1-base, pkgsrc-2004Q1
Changes since 1.50: +2 -3 lines
Diff to previous 1.50 (colored) to selected 1.35 (colored)

Fix build with gcc2 on sparc64.

Revision 1.50 / (download) - annotate - [select for diffs], Mon Feb 23 21:49:05 2004 UTC (20 years, 1 month ago) by xtraeme
Branch: MAIN
Changes since 1.49: +2 -2 lines
Diff to previous 1.49 (colored) to selected 1.35 (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.49 / (download) - annotate - [select for diffs], Sun Feb 22 07:03:20 2004 UTC (20 years, 1 month ago) by minskim
Branch: MAIN
Changes since 1.48: +3 -1 lines
Diff to previous 1.48 (colored) to selected 1.35 (colored)

Enable pkgviews installation.

Revision 1.48 / (download) - annotate - [select for diffs], Sat Feb 14 18:26:29 2004 UTC (20 years, 1 month ago) by jmmv
Branch: MAIN
Changes since 1.47: +2 -2 lines
Diff to previous 1.47 (colored) to selected 1.35 (colored)

PKGCONFIG_OVERRIDE is relative to WRKSRC.

Revision 1.47 / (download) - annotate - [select for diffs], Sat Feb 14 17:21:53 2004 UTC (20 years, 1 month ago) by jlam
Branch: MAIN
Changes since 1.46: +1 -2 lines
Diff to previous 1.46 (colored) to selected 1.35 (colored)

LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globs
relative to ${WRKSRC}.  Remove redundant LIBTOOL_OVERRIDE settings that
are automatically handled by the default setting in bsd.pkg.mk.

Revision 1.46 / (download) - annotate - [select for diffs], Thu Feb 12 22:18:13 2004 UTC (20 years, 1 month ago) by xtraeme
Branch: MAIN
Changes since 1.45: +2 -2 lines
Diff to previous 1.45 (colored) to selected 1.35 (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.45 / (download) - annotate - [select for diffs], Sun Feb 1 10:28:48 2004 UTC (20 years, 2 months ago) by jlam
Branch: MAIN
Changes since 1.44: +4 -4 lines
Diff to previous 1.44 (colored) to selected 1.35 (colored)

bl3ify

Revision 1.44 / (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.43: +4 -5 lines
Diff to previous 1.43 (colored) to selected 1.35 (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.43 / (download) - annotate - [select for diffs], Sat Jan 24 15:13:20 2004 UTC (20 years, 2 months ago) by grant
Branch: MAIN
Changes since 1.42: +2 -2 lines
Diff to previous 1.42 (colored) to selected 1.35 (colored)

replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.

Revision 1.42 / (download) - annotate - [select for diffs], Fri Jan 23 17:18:32 2004 UTC (20 years, 2 months ago) by jmmv
Branch: MAIN
Changes since 1.41: +2 -1 lines
Diff to previous 1.41 (colored) to selected 1.35 (colored)

Bump PKGREVISION due to xmlcatmgr update to 2.0beta1

Revision 1.41 / (download) - annotate - [select for diffs], Wed Dec 31 09:55:43 2003 UTC (20 years, 3 months ago) by seb
Branch: MAIN
Changes since 1.40: +6 -1 lines
Diff to previous 1.40 (colored) to selected 1.35 (colored)

Work around a f77 ICE on NetBSD/sparc64 1.6* by "disabling" f77
completely. Please note that a Fortran compiler is not needed by
this package but configure -libtool in fact- tickles it if one is
found.

Revision 1.40 / (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.39: +2 -2 lines
Diff to previous 1.39 (colored) to selected 1.35 (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.39 / (download) - annotate - [select for diffs], Thu Dec 4 19:33:38 2003 UTC (20 years, 3 months ago) by xtraeme
Branch: MAIN
Changes since 1.38: +3 -3 lines
Diff to previous 1.38 (colored) to selected 1.35 (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.38 / (download) - annotate - [select for diffs], Sun Nov 2 07:02:32 2003 UTC (20 years, 5 months ago) by xtraeme
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored) to selected 1.35 (colored)

I'm the new maintainer.

Revision 1.37 / (download) - annotate - [select for diffs], Sun Oct 5 10:10:06 2003 UTC (20 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.36: +2 -3 lines
Diff to previous 1.36 (colored) to selected 1.35 (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.36 / (download) - annotate - [select for diffs], Sat Sep 13 07:23:36 2003 UTC (20 years, 6 months ago) by jdolecek
Branch: MAIN
Changes since 1.35: +6 -2 lines
Diff to previous 1.35 (colored)

disable threads - it's not clear this is necessary (it's only used
for some optional internal locking), and this library needs to be usable
by nonthreaded programs too, like php4-domxml

bump PKGREVISION for this; buildlink not changed, since library users
generally don't care about this

Revision 1.35 / (download) - annotate - [selected], Fri Aug 29 11:22:21 2003 UTC (20 years, 7 months ago) by xtraeme
Branch: MAIN
Changes since 1.34: +3 -3 lines
Diff to previous 1.34 (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.34 / (download) - annotate - [select for diffs], Thu Jul 17 22:54:29 2003 UTC (20 years, 8 months ago) by grant
Branch: MAIN
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored) to selected 1.35 (colored)

s/netbsd.org/NetBSD.org/

Revision 1.33 / (download) - annotate - [select for diffs], Sun Jul 13 13:53:33 2003 UTC (20 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.32: +2 -1 lines
Diff to previous 1.32 (colored) to selected 1.35 (colored)

PKGREVISION bump for libiconv update.

Revision 1.32 / (download) - annotate - [select for diffs], Fri Jul 11 23:28:04 2003 UTC (20 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.31: +4 -3 lines
Diff to previous 1.31 (colored) to selected 1.35 (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.31 / (download) - annotate - [select for diffs], Fri Jul 4 10:03:37 2003 UTC (20 years, 9 months ago) by skrll
Branch: MAIN
Changes since 1.30: +2 -2 lines
Diff to previous 1.30 (colored) to selected 1.35 (colored)

Improve COMMENT and DESCR a bit.

Revision 1.30 / (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.29: +2 -1 lines
Diff to previous 1.29 (colored) to selected 1.35 (colored)

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

Revision 1.29 / (download) - annotate - [select for diffs], Mon Jun 2 01:16:37 2003 UTC (20 years, 10 months ago) by jschauma
Branch: MAIN
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored) to selected 1.35 (colored)

Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.

Revision 1.28 / (download) - annotate - [select for diffs], Thu May 8 09:34:58 2003 UTC (20 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.27: +2 -4 lines
Diff to previous 1.27 (colored) to selected 1.35 (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.27 / (download) - annotate - [select for diffs], Fri May 2 11:56:31 2003 UTC (20 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.26: +2 -1 lines
Diff to previous 1.26 (colored) to selected 1.35 (colored)

Dependency bumps, needed because of devel/pth's major bump, and related
dependency bumps.

Revision 1.26 / (download) - annotate - [select for diffs], Thu Apr 10 09:34:04 2003 UTC (20 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored) to selected 1.35 (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.25 / (download) - annotate - [select for diffs], Wed Mar 26 14:55:12 2003 UTC (21 years ago) by jmmv
Branch: MAIN
Changes since 1.24: +2 -2 lines
Diff to previous 1.24 (colored) to selected 1.35 (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.24 / (download) - annotate - [select for diffs], Tue Mar 18 15:06:20 2003 UTC (21 years ago) by jmmv
Branch: MAIN
Changes since 1.23: +3 -1 lines
Diff to previous 1.23 (colored) to selected 1.35 (colored)

Use pax instead of tar to install the tutorial.  Hopefully fixes PR pkg/20760.

Revision 1.23 / (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.22: +2 -2 lines
Diff to previous 1.22 (colored) to selected 1.35 (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.22 / (download) - annotate - [select for diffs], Mon Feb 24 20:40:15 2003 UTC (21 years, 1 month ago) by jmmv
Branch: MAIN
Changes since 1.21: +10 -3 lines
Diff to previous 1.21 (colored) to selected 1.35 (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.21 / (download) - annotate - [select for diffs], Wed Nov 6 07:56:51 2002 UTC (21 years, 4 months ago) by tron
Branch: MAIN
CVS Tags: netbsd-1-6-1-base, netbsd-1-6-1
Changes since 1.20: +1 -1 lines
Diff to previous 1.20 (colored) to selected 1.35 (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.20 / (download) - annotate - [select for diffs], Tue Oct 29 11:37:38 2002 UTC (21 years, 5 months ago) by martti
Branch: MAIN
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored) to selected 1.35 (colored)

Updated libxml2 to 2.4.26

* bug fixes

Revision 1.19 / (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.18: +3 -4 lines
Diff to previous 1.18 (colored) to selected 1.35 (colored)

Updated libxml2 to 2.4.25

* bug fixes

Revision 1.18 / (download) - annotate - [select for diffs], Tue Sep 10 16:06:49 2002 UTC (21 years, 6 months ago) by wiz
Branch: MAIN
Changes since 1.17: +2 -1 lines
Diff to previous 1.17 (colored) to selected 1.35 (colored)

Since the major of libiconv was increased during the update to 1.8,
bump dependency to latest libiconv version; recursively also bump all
dependencies of packages depending on libiconv.
Requested by fredb.

Revision 1.17 / (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.16: +2 -2 lines
Diff to previous 1.16 (colored) to selected 1.35 (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.16 / (download) - annotate - [select for diffs], Sun Aug 25 18:40:10 2002 UTC (21 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.15: +6 -5 lines
Diff to previous 1.15 (colored) to selected 1.35 (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.13.2.4 / (download) - annotate - [select for diffs], Thu Aug 22 11:12:46 2002 UTC (21 years, 7 months ago) by jlam
Branch: buildlink2
Changes since 1.13.2.3: +2 -2 lines
Diff to previous 1.13.2.3 (colored) next main 1.14 (colored) to selected 1.35 (colored)

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

Revision 1.15 / (download) - annotate - [select for diffs], Fri Jul 12 15:45:02 2002 UTC (21 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgviews-base, pkgviews, netbsd-1-6-RELEASE-base, netbsd-1-6, buildlink2-base
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored) to selected 1.35 (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.13.2.3 / (download) - annotate - [select for diffs], Sun Jun 23 19:02:17 2002 UTC (21 years, 9 months ago) by jlam
Branch: buildlink2
Changes since 1.13.2.2: +6 -2 lines
Diff to previous 1.13.2.2 (colored) to selected 1.35 (colored)

Merge from pkgsrc-current to buildlink2 branch.

Revision 1.13.2.2 / (download) - annotate - [select for diffs], Fri Jun 21 23:05:44 2002 UTC (21 years, 9 months ago) by jlam
Branch: buildlink2
Changes since 1.13.2.1: +2 -2 lines
Diff to previous 1.13.2.1 (colored) to selected 1.35 (colored)

Rename USE_BUILDLINK2_ONLY to USE_BUILDLINK2 for less verbosity.  Also
convert a few more packages to use the buildlink2 framework.

Revision 1.14 / (download) - annotate - [select for diffs], Fri May 17 13:02:29 2002 UTC (21 years, 10 months ago) by martti
Branch: MAIN
Changes since 1.13: +5 -2 lines
Diff to previous 1.13 (colored) to selected 1.35 (colored)

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

Revision 1.13.2.1 / (download) - annotate - [select for diffs], Sat May 11 02:09:26 2002 UTC (21 years, 10 months ago) by jlam
Branch: buildlink2
Changes since 1.13: +6 -6 lines
Diff to previous 1.13 (colored) to selected 1.35 (colored)

First pass at conversion of various packages to use the buildlink2
framework.  Add many buildlink2.mk files to add to the framework.  Please
see buildlink2.txt for more details.

Revision 1.13 / (download) - annotate - [select for diffs], Sun Apr 28 22:12:05 2002 UTC (21 years, 11 months ago) by wiz
Branch: MAIN
Branch point for: buildlink2
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored) to selected 1.35 (colored)

Uppercase XML.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Apr 26 10:32:37 2002 UTC (21 years, 11 months ago) by martti
Branch: MAIN
Changes since 1.11: +3 -2 lines
Diff to previous 1.11 (colored) to selected 1.35 (colored)

Updated libxml2 to 2.4.20

* lots of bug fixes

Revision 1.11 / (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.10: +2 -2 lines
Diff to previous 1.10 (colored) to selected 1.35 (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.10 / (download) - annotate - [select for diffs], Mon Dec 10 13:29:31 2001 UTC (22 years, 3 months ago) by taca
Branch: MAIN
Changes since 1.9: +2 -3 lines
Diff to previous 1.9 (colored) to selected 1.35 (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.9 / (download) - annotate - [select for diffs], Thu Nov 29 01:12:50 2001 UTC (22 years, 4 months ago) by hubertf
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored) to selected 1.35 (colored)

Get rid of manually adding "nbX" to PKGNAME when a pkg was changed in
pkgsrc. Instead, a new variable PKGREVISION is invented that can get
bumped independent of DISTNAME and PKGNAME.

Example #1:
        DISTNAME=       foo-X.Y
        PKGREVISION=    Z
     => PKGNAME=        foo-X.YnbZ

Example #2:
        DISTNAME=       barthing-X.Y
        PKGNAME=        bar-X.Y
        PKGREVISION=    Z
     => PKGNAME=        bar=X.YnbZ (!)

On subsequent changes, only PKGREVISION needs to be bumped, no more risk
of getting DISTNAME changed accidentally.

Revision 1.8 / (download) - annotate - [select for diffs], Sat Nov 17 15:28:49 2001 UTC (22 years, 4 months ago) by tron
Branch: MAIN
Changes since 1.7: +2 -1 lines
Diff to previous 1.7 (colored) to selected 1.35 (colored)

Work arround broken circular include directives which cause build failures
in the "kdelibs2" package.

Revision 1.7 / (download) - annotate - [select for diffs], Fri Nov 16 20:59:32 2001 UTC (22 years, 4 months ago) by tron
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored) to selected 1.35 (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.6 / (download) - annotate - [select for diffs], Wed Oct 17 20:06:55 2001 UTC (22 years, 5 months ago) by jlam
Branch: MAIN
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored) to selected 1.35 (colored)

Update libxml2 to 2.4.6.  Changes from version 2.4.5 include bug fixes,
minor API enhancements, and updated documentation.

Revision 1.5 / (download) - annotate - [select for diffs], Wed Oct 3 22:36:40 2001 UTC (22 years, 5 months ago) by jlam
Branch: MAIN
Changes since 1.4: +1 -3 lines
Diff to previous 1.4 (colored) to selected 1.35 (colored)

bsd.buildlink.mk will automatically handle the REPLACE_BUILDLINK stuff, so
we can remove REPLACE_BUILDLINK settings containing *-config, *Conf.sh, and
*.pc.

Revision 1.4 / (download) - annotate - [select for diffs], Wed Sep 26 23:22:17 2001 UTC (22 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.3: +3 -2 lines
Diff to previous 1.3 (colored) to selected 1.35 (colored)

Update libxml2 to 2.4.5.  Relevant changes from version 2.4.2 include:

* Bug fixes.
* Do not output hexadecimal charrefs when serializing HTML since some version
  of Netscape can't grok it, generate decimal ones.
* Moved includes to includedir/libxml2/libxml.
* Added a --convert option to xmlcatalog to convert SGML ones to the XML
  syntax.
* Added a catalog PI.

Revision 1.3 / (download) - annotate - [select for diffs], Fri Sep 14 06:53:34 2001 UTC (22 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.2: +6 -2 lines
Diff to previous 1.2 (colored) to selected 1.35 (colored)

Fix the problem noted by Ben Collver <collver@linuxfreemail.com> in
pkg/13929 where xml2-config lies about the location of the libxml2
headers.  "xml2-config --cflags" now returns:

	-I/usr/pkg/include/libxml2/libxml -I/usr/pkg/include

which correctly finds the libxml2 headers.  When using buildlink, the
config wrapper xml2-config returns:

	-I${BUILDLINK_DIR}/include/libxml -I/usr/pkg/include

which correctly finds the libxml2 headers in their buildlinked locations.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Aug 24 16:59:01 2001 UTC (22 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored) to selected 1.35 (colored)

Update to 2.4.2, provided by Martti Kuparinen in pkg/13741.
Changes: Bugfixes and speedups, details at http://xmlsoft.org (News).

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Jun 29 11:47:12 2001 UTC (22 years, 9 months ago) by rh
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.35 (colored)

Initial import of libxml2, the new and improved GNOME 2 xml parsing
library.  Provided in PR pkg/13338 by Martti Kuparinen
<martti.kuparinen@iki.fi>, thanks!

Revision 1.1 / (download) - annotate - [select for diffs], Fri Jun 29 11:47:12 2001 UTC (22 years, 9 months ago) by rh
Branch: MAIN
Diff to selected 1.35 (colored)

Initial revision

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>