diff options
author | drochner <drochner@pkgsrc.org> | 2011-07-11 10:26:30 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2011-07-11 10:26:30 +0000 |
commit | 96c61ac95c81b2a2ef49f35d99aa977e13e660c0 (patch) | |
tree | 9dc7c441721c3796cfe879cb0df7e8ce4751e61c /textproc | |
parent | 270c1a54975156643eb3d8899fd1dd6f44aaaee1 (diff) | |
download | pkgsrc-96c61ac95c81b2a2ef49f35d99aa977e13e660c0.tar.gz |
update to 1.2.1
changes:
-bugfixes
-portability fixes in selftest
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/xmlstarlet/Makefile | 4 | ||||
-rw-r--r-- | textproc/xmlstarlet/distinfo | 10 | ||||
-rw-r--r-- | textproc/xmlstarlet/patches/patch-aa | 15 | ||||
-rw-r--r-- | textproc/xmlstarlet/patches/patch-ab | 18 |
4 files changed, 6 insertions, 41 deletions
diff --git a/textproc/xmlstarlet/Makefile b/textproc/xmlstarlet/Makefile index b4ddc03d76d..dc769e0aed7 100644 --- a/textproc/xmlstarlet/Makefile +++ b/textproc/xmlstarlet/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.12 2011/06/06 12:32:01 drochner Exp $ +# $NetBSD: Makefile,v 1.13 2011/07/11 10:26:30 drochner Exp $ # -DISTNAME= xmlstarlet-1.2.0 +DISTNAME= xmlstarlet-1.2.1 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=xmlstar/} diff --git a/textproc/xmlstarlet/distinfo b/textproc/xmlstarlet/distinfo index 8f15d14130b..78febdcd0ff 100644 --- a/textproc/xmlstarlet/distinfo +++ b/textproc/xmlstarlet/distinfo @@ -1,7 +1,5 @@ -$NetBSD: distinfo,v 1.6 2011/06/06 12:32:01 drochner Exp $ +$NetBSD: distinfo,v 1.7 2011/07/11 10:26:30 drochner Exp $ -SHA1 (xmlstarlet-1.2.0.tar.gz) = 6016d4b2dee8805044c3522c65f7cf3449825cf5 -RMD160 (xmlstarlet-1.2.0.tar.gz) = 1b371ed1fdf8a42c9fc1d9a02116c9fa69bbceb2 -Size (xmlstarlet-1.2.0.tar.gz) = 382893 bytes -SHA1 (patch-aa) = b79deefa45fe986bbbf1c25d6c1158ff7fed0a37 -SHA1 (patch-ab) = ad371ef7c360c3c4d758e6e5c5d879e60f4433ad +SHA1 (xmlstarlet-1.2.1.tar.gz) = 04f534bed18fa45200822f073c2aad1ff02d0efe +RMD160 (xmlstarlet-1.2.1.tar.gz) = ae5560dcd473aea151d5124a939030b5a848eded +Size (xmlstarlet-1.2.1.tar.gz) = 383678 bytes diff --git a/textproc/xmlstarlet/patches/patch-aa b/textproc/xmlstarlet/patches/patch-aa deleted file mode 100644 index 8b14ce142ed..00000000000 --- a/textproc/xmlstarlet/patches/patch-aa +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-aa,v 1.5 2011/06/06 12:32:02 drochner Exp $ - -make BRE portable: '+' is not allowed - ---- examples/bigxml.orig 2011-05-26 00:42:39.000000000 +0000 -+++ examples/bigxml -@@ -1,7 +1,7 @@ - #!/bin/sh - # check error messages on lines past 2^16 - --SEDLINUM_PROG='s/^\([^:]\+:[0-9]\{4\}\)[0-9]\.[0-9]\+:.*$/\1x/p' -+SEDLINUM_PROG='s/^\([^:][^:]*:[0-9]\{4\}\)[0-9]\.[0-9][0-9]*:.*$/\1x/p' - - xmldoc() - { diff --git a/textproc/xmlstarlet/patches/patch-ab b/textproc/xmlstarlet/patches/patch-ab deleted file mode 100644 index 3ccd02be733..00000000000 --- a/textproc/xmlstarlet/patches/patch-ab +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2011/06/06 12:32:02 drochner Exp $ - -kill illegal substitution (bashism) - ---- examples/xmlstarlet.orig 2011-05-23 20:45:02.000000000 +0000 -+++ examples/xmlstarlet -@@ -2,11 +2,5 @@ - exepath=`dirname $0` - xml="${abs_builddir-$exepath/..}"/xml - --if [ x"$OSTYPE" = xmsys ] ; then -- # MSYS does unix -> windows path conversion, eg: /x -> C:\Mingw\msys\1.0\x -- # so we double all leading /'s to avoid this -- exec "$xml" "${@/#\////}" --fi -- - exec "$xml" "$@" - |