diff options
author | recht <recht@pkgsrc.org> | 2003-12-24 11:42:02 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2003-12-24 11:42:02 +0000 |
commit | 4223b18ba1719e8299499ca37571af4e3f779104 (patch) | |
tree | 3f94a318ef05b765ad339e617f9238db646040ba /net/py-soappy/Makefile | |
parent | 6f8cedf81f612d85c5902a0c05d520dc62e43c52 (diff) | |
download | pkgsrc-4223b18ba1719e8299499ca37571af4e3f779104.tar.gz |
update to 0.11.1
changes:
- Preliminary pyGlobus support (contributed by Ivan R. Judson)
- Fixes for many of the test scripts in tests/*.py, as well as
documentation in tests/README of what tests succeed and fail.
- New/Changed configuration settings:
- Added 'strict' option to the WSDL class constructor. If strict is
true, a RuntimeException will be raised if an unrecogned message is
recieved. If strict is false, a warning will be printed to the
console, the message type will be added to the WSDL schema, and
processing will continue. This is in response to the second half of
bug report [ 817331 ] "Some WSDL.py changes", submitted by Rudolf
Ruland.
- Config.simplify_objects=1 now converts all SOAPpy objects into basic
Python types (list, dictionary, tuple, double, float, etc.). By default,
Config.simplify_objects=0 for backward compatibility.
- Config.dict_encoding='ascii' converts the keys of dictionaries
(e.g. created when Config.simplify_objects=1) to ascii == plain python
strings instead of unicode strings. This variable can be set to any
encoding known to string.encode().
- Config.strict_range=1 forces the SOAP parsing routines to perform
range checks on recieved SOAP float and double objects. When
The following bugs have been fixed:
[ 752882 ] "SSL SOAP Server no longer working."
[ 792258 ] "SOAPBuilder.SOAPBuilder.dump can catch wrong exceptions"
[ 792600 ] "SOAPBuilder.SOAPBuilder.dump possibly should not call gentag"
[ 817331 ] "Some WSDL.py changes"
[ 858168 ] 'xsi:nil="true" causes exception'
In addtion, all of the outstanding bugs in the WSDL implementation
have been fixed, so WSDLProxy should now function properly.
Diffstat (limited to 'net/py-soappy/Makefile')
-rw-r--r-- | net/py-soappy/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/py-soappy/Makefile b/net/py-soappy/Makefile index 9c114b70f62..3aa2aacc4ca 100644 --- a/net/py-soappy/Makefile +++ b/net/py-soappy/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2003/09/14 16:43:54 recht Exp $ +# $NetBSD: Makefile,v 1.8 2003/12/24 11:42:02 recht Exp $ # -DISTNAME= SOAPpy-0.10.2 +DISTNAME= SOAPpy-0.11.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pywebsvcs/} @@ -10,8 +10,9 @@ MAINTAINER= recht@NetBSD.org HOMEPAGE= http://pywebsvcs.sourceforge.net/ COMMENT= SOAP implementation -USE_BUILDLINK2= YES +DEPENDS= ${PYPKGPREFIX}-fpconst>=0.6.0:../../math/py-fpconst +USE_BUILDLINK2= YES PYDISTUTILSPKG= YES PY_PATCHPLIST= YES |