diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-16 19:49:43 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-16 19:49:43 +0000 |
commit | ab55a19daee683ea82fc3adf46e8b9321845faa4 (patch) | |
tree | 6a8852fc1a02972f2b596d517481067ca71edf34 /textproc | |
parent | 9f1aa5b69b2eed7c61aa975969b2d4b3c3cf9715 (diff) | |
download | pkgsrc-ab55a19daee683ea82fc3adf46e8b9321845faa4.tar.gz |
Updated libxslt to 1.1.19.
Changes since 1.1.18:
1.1.19: Nov 29 2006:
- Bug fixes: entities within attributes (William Brack), Python detection
problem (Joseph Sacco), in-scope namespace bug (Mike Hommey), Result
value tree caching bug (William Brack)
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/libxslt/Makefile | 5 | ||||
-rw-r--r-- | textproc/libxslt/distinfo | 9 | ||||
-rw-r--r-- | textproc/libxslt/patches/patch-ae | 18 |
3 files changed, 6 insertions, 26 deletions
diff --git a/textproc/libxslt/Makefile b/textproc/libxslt/Makefile index bb3e9fef3cf..e7459a6eb57 100644 --- a/textproc/libxslt/Makefile +++ b/textproc/libxslt/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.72 2006/11/22 17:09:33 ghen Exp $ +# $NetBSD: Makefile,v 1.73 2007/01/16 19:49:43 rillig Exp $ -DISTNAME= libxslt-1.1.18 -PKGREVISION= 1 +DISTNAME= libxslt-1.1.19 CATEGORIES= textproc MASTER_SITES= ftp://xmlsoft.org/libxslt/ #MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libxslt/1.1/} diff --git a/textproc/libxslt/distinfo b/textproc/libxslt/distinfo index 7c20e611d6b..d2368ac7cf5 100644 --- a/textproc/libxslt/distinfo +++ b/textproc/libxslt/distinfo @@ -1,10 +1,9 @@ -$NetBSD: distinfo,v 1.42 2006/11/21 23:55:05 recht Exp $ +$NetBSD: distinfo,v 1.43 2007/01/16 19:49:43 rillig Exp $ -SHA1 (libxslt-1.1.18.tar.gz) = 49aef9520e72b70a9026efa030fad828da0f7b22 -RMD160 (libxslt-1.1.18.tar.gz) = 14241203635a1d83ff3e72efd623177e6dc2aa2f -Size (libxslt-1.1.18.tar.gz) = 2799537 bytes +SHA1 (libxslt-1.1.19.tar.gz) = 74a69c9c8bb4a263a4b9e2a604f7210b34818eaf +RMD160 (libxslt-1.1.19.tar.gz) = ff8dbc7024c66b5f2886e8df2c7ac1bdedb07030 +Size (libxslt-1.1.19.tar.gz) = 2799906 bytes SHA1 (patch-aa) = 3e745804f7f3900eaf88dc6d7ea831b81b0ff765 SHA1 (patch-ab) = 70216897fc4c91d148eeece637df53a0f2555f1c SHA1 (patch-ac) = eed53c657171b5af321470c3f3e9ba222b8d4367 SHA1 (patch-ad) = 8353ad7cc928cb386e57e0bc65f8ebc2c90a1323 -SHA1 (patch-ae) = 4e5a545a8c0e1de3e32c79266b0605fa57bbe6bf diff --git a/textproc/libxslt/patches/patch-ae b/textproc/libxslt/patches/patch-ae deleted file mode 100644 index 0f6347ac7b4..00000000000 --- a/textproc/libxslt/patches/patch-ae +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-ae,v 1.1 2006/11/21 23:55:05 recht Exp $ - ---- libxslt/transform.c.orig 2006-08-16 17:33:08.000000000 +0200 -+++ libxslt/transform.c -@@ -1074,8 +1074,12 @@ xsltCopyAttrListNoOverwrite(xsltTransfor - } else - copyNs = NULL; - } -+ /* -+ * If attribute has a value, we need to copy it (watching out -+ * for possible entities) -+ */ - if (attr->children) -- value = xmlNodeListGetString(attr->doc, attr->children, 1); -+ value = xmlNodeListGetString(attr->doc, attr->children, 0); - /* - * REVISIT: I think xmlNewDocProp() is the only attr function - * which does not eval if the attr is of type ID. This is good, |