pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/libxml2 update to 2.6.17



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5f8dc695f8df
branches:  trunk
changeset: 487564:5f8dc695f8df
user:      recht <recht%pkgsrc.org@localhost>
date:      Sun Jan 16 22:28:34 2005 +0000

description:
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).

diffstat:

 textproc/libxml2/Makefile         |   4 ++--
 textproc/libxml2/PLIST            |   4 +++-
 textproc/libxml2/distinfo         |  10 +++++-----
 textproc/libxml2/patches/patch-aa |   6 +++---
 textproc/libxml2/patches/patch-ab |   6 +++---
 5 files changed, 16 insertions(+), 14 deletions(-)

diffs (82 lines):

diff -r 2028d434b224 -r 5f8dc695f8df textproc/libxml2/Makefile
--- a/textproc/libxml2/Makefile Sun Jan 16 22:28:01 2005 +0000
+++ b/textproc/libxml2/Makefile Sun Jan 16 22:28:34 2005 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.63 2004/11/11 21:01:15 recht Exp $
+# $NetBSD: Makefile,v 1.64 2005/01/16 22:28:34 recht Exp $
 
-DISTNAME=      libxml2-2.6.16
+DISTNAME=      libxml2-2.6.17
 CATEGORIES=    textproc
 MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/libxml2/2.6/}
 EXTRACT_SUFX=  .tar.bz2
diff -r 2028d434b224 -r 5f8dc695f8df textproc/libxml2/PLIST
--- a/textproc/libxml2/PLIST    Sun Jan 16 22:28:01 2005 +0000
+++ b/textproc/libxml2/PLIST    Sun Jan 16 22:28:34 2005 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.34 2004/09/22 08:09:55 jlam Exp $
+@comment $NetBSD: PLIST,v 1.35 2005/01/16 22:28:34 recht Exp $
 bin/xml2-config
 bin/xmlcatalog
 bin/xmllint
@@ -35,6 +35,7 @@
 include/libxml2/libxml/xmlerror.h
 include/libxml2/libxml/xmlexports.h
 include/libxml2/libxml/xmlmemory.h
+include/libxml2/libxml/xmlmodule.h
 include/libxml2/libxml/xmlreader.h
 include/libxml2/libxml/xmlregexp.h
 include/libxml2/libxml/xmlsave.h
@@ -98,6 +99,7 @@
 share/doc/html/libxml2/html/libxml-xmlerror.html
 share/doc/html/libxml2/html/libxml-xmlexports.html
 share/doc/html/libxml2/html/libxml-xmlmemory.html
+share/doc/html/libxml2/html/libxml-xmlmodule.html
 share/doc/html/libxml2/html/libxml-xmlreader.html
 share/doc/html/libxml2/html/libxml-xmlregexp.html
 share/doc/html/libxml2/html/libxml-xmlsave.html
diff -r 2028d434b224 -r 5f8dc695f8df textproc/libxml2/distinfo
--- a/textproc/libxml2/distinfo Sun Jan 16 22:28:01 2005 +0000
+++ b/textproc/libxml2/distinfo Sun Jan 16 22:28:34 2005 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.45 2004/11/11 21:01:15 recht Exp $
+$NetBSD: distinfo,v 1.46 2005/01/16 22:28:34 recht Exp $
 
-SHA1 (libxml2-2.6.16.tar.bz2) = 0bd0e7217f75abadf0b6389c126e63b6c1b7972b
-Size (libxml2-2.6.16.tar.bz2) = 3100259 bytes
-SHA1 (patch-aa) = dee768bf9ff0fe7de232bcdc4a55bc250ec9ad1a
-SHA1 (patch-ab) = d9dd03a12fc53435804e7a163841bc5d834a48b5
+SHA1 (libxml2-2.6.17.tar.bz2) = 52325ef86a6b3c7e611daea1f7519df8df764479
+Size (libxml2-2.6.17.tar.bz2) = 3067503 bytes
+SHA1 (patch-aa) = a8eb8928330f8bf6827a9d06a07f5e88d6963457
+SHA1 (patch-ab) = e4c782df227b40e2cc70e60695d97952444ea088
diff -r 2028d434b224 -r 5f8dc695f8df textproc/libxml2/patches/patch-aa
--- a/textproc/libxml2/patches/patch-aa Sun Jan 16 22:28:01 2005 +0000
+++ b/textproc/libxml2/patches/patch-aa Sun Jan 16 22:28:34 2005 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.19 2004/11/11 21:01:15 recht Exp $
+$NetBSD: patch-aa,v 1.20 2005/01/16 22:28:34 recht Exp $
 
---- Makefile.in.orig   Wed Nov 10 15:36:58 2004
+--- Makefile.in.orig   Sun Jan 16 21:02:31 2005
 +++ Makefile.in
-@@ -538,7 +538,7 @@ pkgconfig_DATA = libxml-2.0.pc
+@@ -535,7 +535,7 @@ pkgconfig_DATA = libxml-2.0.pc
  #
  BASE_DIR = $(datadir)/doc
  DOC_MODULE = libxml2-$(VERSION)
diff -r 2028d434b224 -r 5f8dc695f8df textproc/libxml2/patches/patch-ab
--- a/textproc/libxml2/patches/patch-ab Sun Jan 16 22:28:01 2005 +0000
+++ b/textproc/libxml2/patches/patch-ab Sun Jan 16 22:28:34 2005 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-ab,v 1.11 2004/11/11 21:01:15 recht Exp $
+$NetBSD: patch-ab,v 1.12 2005/01/16 22:28:34 recht Exp $
 
---- configure.orig     Wed Nov 10 15:33:00 2004
+--- configure.orig     Sun Jan 16 20:24:22 2005
 +++ configure
-@@ -26449,7 +26449,7 @@ fi
+@@ -27432,7 +27432,7 @@ fi
  fi
  
  



Home | Main Index | Thread Index | Old Index