[csw-devel] SF.net SVN: gar:[6683] csw/mgar/pkg
skayser at users.sourceforge.net
skayser at users.sourceforge.net
Sat Oct 3 16:26:53 CEST 2009
Revision: 6683
http://gar.svn.sourceforge.net/gar/?rev=6683&view=rev
Author: skayser
Date: 2009-10-03 14:26:41 +0000 (Sat, 03 Oct 2009)
Log Message:
-----------
pysoappy: initial commit
Added Paths:
-----------
csw/mgar/pkg/pysoappy/
csw/mgar/pkg/pysoappy/branches/
csw/mgar/pkg/pysoappy/tags/
csw/mgar/pkg/pysoappy/trunk/
csw/mgar/pkg/pysoappy/trunk/Makefile
csw/mgar/pkg/pysoappy/trunk/checksums
csw/mgar/pkg/pysoappy/trunk/files/
csw/mgar/pkg/pysoappy/trunk/files/001-place-import-future-first.patch
csw/mgar/pkg/pysoappy/trunk/files/changelog.CSW
Property changes on: csw/mgar/pkg/pysoappy/trunk
___________________________________________________________________
Added: svn:ignore
+ cookies
download
work
Added: svn:externals
+ gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2
Added: csw/mgar/pkg/pysoappy/trunk/Makefile
===================================================================
--- csw/mgar/pkg/pysoappy/trunk/Makefile (rev 0)
+++ csw/mgar/pkg/pysoappy/trunk/Makefile 2009-10-03 14:26:41 UTC (rev 6683)
@@ -0,0 +1,46 @@
+# TODO
+# - Move this to a pymodules/ subdirectory with the rest of the
+# python modules (similar to the cpan directory).
+GARNAME = pysoappy
+GARVERSION = 0.11.4
+CATEGORIES = python
+
+DESCRIPTION = SOAP library for python
+define BLURB
+ This package contains the SOAPpy Python module, which implements a high-
+ level interface to Simple Object Access Protocol (SOAP) functions from
+ Python. It includes functionality for acting as a SOAP server, client,
+ or proxy, and includes both building and parsing functions. It has been
+ tested against a wide array of other SOAP clients and servers, and is a
+ very robust and well-rounded implementation of the SOAP protocol.
+
+ SOAPpy is not actively supported by upstream anymore - please do not
+ consider to use it in new projects! All functions were merged into ZSI
+endef
+
+SPKG_SOURCEURL = http://pywebsvcs.sourceforge.net/
+MASTER_SITES = $(SF_MIRRORS)
+SF_PROJ = pywebsvcs
+DISTNAME = SOAPpy-$(GARVERSION)
+DISTFILES = $(DISTNAME).tar.gz
+
+ARCHALL = 1
+PACKAGES = CSWpysoappy
+CATALOGNAME = py_soappy
+REQUIRED_PKGS = CSWpyfpconst CSWpyxml
+
+# import __future__ statements need to occur first within a file
+# SyntaxError: from __future__ imports must occur at the beginning of the file
+PATCHFILES = 001-place-import-future-first.patch
+
+# No tests available
+TEST_SCRIPTS =
+
+include gar/category.mk
+
+post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME)
+post-install-modulated:
+ ginstall -d $(DOCDEST)
+ cp $(FILEDIR)/changelog.CSW $(DOCDEST)
+ cp $(WORKSRC)/docs/* $(DOCDEST)
+ @$(MAKECOOKIE)
Added: csw/mgar/pkg/pysoappy/trunk/checksums
===================================================================
--- csw/mgar/pkg/pysoappy/trunk/checksums (rev 0)
+++ csw/mgar/pkg/pysoappy/trunk/checksums 2009-10-03 14:26:41 UTC (rev 6683)
@@ -0,0 +1,2 @@
+fd1ea22ebacd98900074e8add1cf39fe download/001-place-import-future-first.patch
+69a384d9a61b36325a97d81165668b39 download/SOAPpy-0.11.4.tar.gz
Added: csw/mgar/pkg/pysoappy/trunk/files/001-place-import-future-first.patch
===================================================================
--- csw/mgar/pkg/pysoappy/trunk/files/001-place-import-future-first.patch (rev 0)
+++ csw/mgar/pkg/pysoappy/trunk/files/001-place-import-future-first.patch 2009-10-03 14:26:41 UTC (rev 6683)
@@ -0,0 +1,72 @@
+diff --git a/SOAPpy/Client.py b/SOAPpy/Client.py
+index 15542b0..922e098 100644
+--- a/SOAPpy/Client.py
++++ b/SOAPpy/Client.py
+@@ -39,12 +39,11 @@
+ #
+ ################################################################################
+ """
++from __future__ import nested_scopes
+
+ ident = '$Id: Client.py,v 1.20 2004/04/10 04:22:52 irjudson Exp $'
+ from version import __version__
+
+-from __future__ import nested_scopes
+-
+ #import xml.sax
+ import urllib
+ from types import *
+diff --git a/SOAPpy/GSIServer.py b/SOAPpy/GSIServer.py
+index 3c723e7..0c0876a 100644
+--- a/SOAPpy/GSIServer.py
++++ b/SOAPpy/GSIServer.py
+@@ -42,12 +42,11 @@ GSIServer - Contributed by Ivan R. Judson <judson at mcs.anl.gov>
+ #
+ ################################################################################
+ """
++from __future__ import nested_scopes
+
+ ident = '$Id: GSIServer.py,v 1.4 2004/02/04 03:21:02 irjudson Exp $'
+ from version import __version__
+
+-from __future__ import nested_scopes
+-
+ #import xml.sax
+ import re
+ import socket
+diff --git a/SOAPpy/Server.py b/SOAPpy/Server.py
+index d6efce2..1419790 100644
+--- a/SOAPpy/Server.py
++++ b/SOAPpy/Server.py
+@@ -39,12 +39,11 @@
+ #
+ ################################################################################
+ """
++from __future__ import nested_scopes
+
+ ident = '$Id: Server.py,v 1.19 2004/04/27 15:23:46 warnes Exp $'
+ from version import __version__
+
+-from __future__ import nested_scopes
+-
+ #import xml.sax
+ import re
+ import socket
+diff --git a/SOAPpy/Types.py b/SOAPpy/Types.py
+index cc8bc7b..f907dcf 100644
+--- a/SOAPpy/Types.py
++++ b/SOAPpy/Types.py
+@@ -32,12 +32,11 @@
+ #
+ ################################################################################
+ """
++from __future__ import nested_scopes
+
+ ident = '$Id: Types.py,v 1.16 2004/04/14 03:42:50 irjudson Exp $'
+ from version import __version__
+
+-from __future__ import nested_scopes
+-
+ import UserList
+ import base64
+ import cgi
Added: csw/mgar/pkg/pysoappy/trunk/files/changelog.CSW
===================================================================
--- csw/mgar/pkg/pysoappy/trunk/files/changelog.CSW (rev 0)
+++ csw/mgar/pkg/pysoappy/trunk/files/changelog.CSW 2009-10-03 14:26:41 UTC (rev 6683)
@@ -0,0 +1,5 @@
+pysoappy (0.11.4,REV=2009.10.03)
+
+ * Initial release.
+
+ -- Sebastian Kayser <skayser at opencsw.org> Sat, 3 Oct 2009 16:17:22 +0200
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list