diff options
author | drochner <drochner@pkgsrc.org> | 2003-03-19 11:55:10 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2003-03-19 11:55:10 +0000 |
commit | c798733a8cdbdb3db283a9368d508c5962f141c8 (patch) | |
tree | 8298a96545475d26d991fa54853730c6384bea40 /net | |
parent | 44e37b278f1dad0677d565230ffab62e4dd245a1 (diff) | |
download | pkgsrc-c798733a8cdbdb3db283a9368d508c5962f141c8.tar.gz |
make this work with SOAPpy-0.9.8 and bumb PKGREVISION because it
only works with 0.9.8 now
Diffstat (limited to 'net')
-rw-r--r-- | net/py-google/Makefile | 3 | ||||
-rw-r--r-- | net/py-google/distinfo | 6 | ||||
-rw-r--r-- | net/py-google/patches/patch-aa | 13 | ||||
-rw-r--r-- | net/py-google/patches/patch-ab | 14 | ||||
-rw-r--r-- | net/py-google/patches/patch-ac | 10 | ||||
-rw-r--r-- | net/py-google/patches/patch-ad | 10 |
6 files changed, 54 insertions, 2 deletions
diff --git a/net/py-google/Makefile b/net/py-google/Makefile index da752bf4d1e..829ff516bbd 100644 --- a/net/py-google/Makefile +++ b/net/py-google/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.3 2002/10/24 13:05:33 drochner Exp $ +# $NetBSD: Makefile,v 1.4 2003/03/19 11:55:10 drochner Exp $ # DISTNAME= pygoogle-0.5.2 PKGNAME= ${PYPKGPREFIX}-google-0.5.2 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= http://diveintomark.org/projects/pygoogle/ EXTRACT_SUFX= .zip diff --git a/net/py-google/distinfo b/net/py-google/distinfo index 6fa2ad61f55..5b28f92539c 100644 --- a/net/py-google/distinfo +++ b/net/py-google/distinfo @@ -1,4 +1,8 @@ -$NetBSD: distinfo,v 1.1.1.1 2002/10/01 17:23:13 drochner Exp $ +$NetBSD: distinfo,v 1.2 2003/03/19 11:55:11 drochner Exp $ SHA1 (pygoogle-0.5.2.zip) = c152a68759ad97f39e8cab6c71c0e1e2fb9f1103 Size (pygoogle-0.5.2.zip) = 35828 bytes +SHA1 (patch-aa) = 4eca6bc0b72c13cbf23ef94c0d4a2370abc200a7 +SHA1 (patch-ab) = 11cfc3b6c97e52f2be0381a5cb6d12b42a0cd503 +SHA1 (patch-ac) = 92bef26c677fd140626c66ae1c5fc569ffed5d26 +SHA1 (patch-ad) = b063c2229f0e8b288e974ae0f669fe6901351ef3 diff --git a/net/py-google/patches/patch-aa b/net/py-google/patches/patch-aa new file mode 100644 index 00000000000..111b7e42600 --- /dev/null +++ b/net/py-google/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2003/03/19 11:55:11 drochner Exp $ + +--- google.py.orig 2003-03-19 10:53:37.000000000 +0100 ++++ google.py 2003-03-19 10:54:00.000000000 +0100 +@@ -43,7 +43,7 @@ + Erik Max Francis, for the command line interface
+ Michael Twomey, for HTTP proxy support"""
+
+-import SOAP
++from SOAPpy import SOAP
+ import os, sys, getopt
+
+ LICENSE_KEY = None
diff --git a/net/py-google/patches/patch-ab b/net/py-google/patches/patch-ab new file mode 100644 index 00000000000..09ba8f5c7db --- /dev/null +++ b/net/py-google/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.1 2003/03/19 11:55:11 drochner Exp $ + +--- googletest.py.orig 2003-03-19 10:52:18.000000000 +0100 ++++ googletest.py 2003-03-19 10:52:53.000000000 +0100 +@@ -6,7 +6,8 @@ + __copyright__ = "Copyright (c) 2002 Mark Pilgrim"
+ __license__ = "Python"
+
+-import google, SOAP
++import google
++from SOAPpy import SOAP + import unittest
+ import sys, os
+ from StringIO import StringIO
diff --git a/net/py-google/patches/patch-ac b/net/py-google/patches/patch-ac new file mode 100644 index 00000000000..818a98133ed --- /dev/null +++ b/net/py-google/patches/patch-ac @@ -0,0 +1,10 @@ +$NetBSD: patch-ac,v 1.1 2003/03/19 11:55:11 drochner Exp $ + +--- testclient.py.orig 2003-03-19 12:30:01.000000000 +0100 ++++ testclient.py 2003-03-19 12:30:23.000000000 +0100 +@@ -1,4 +1,4 @@ +-import SOAP
++from SOAPpy import SOAP
+
+ server = SOAP.SOAPProxy('http://localhost:8082/')
+ print server.echo("Hello World")
diff --git a/net/py-google/patches/patch-ad b/net/py-google/patches/patch-ad new file mode 100644 index 00000000000..25e9c4dbc18 --- /dev/null +++ b/net/py-google/patches/patch-ad @@ -0,0 +1,10 @@ +$NetBSD: patch-ad,v 1.1 2003/03/19 11:55:11 drochner Exp $ + +--- testserver.py.orig 2003-03-19 12:30:51.000000000 +0100 ++++ testserver.py 2003-03-19 12:31:16.000000000 +0100 +@@ -1,4 +1,4 @@ +-import SOAP
++from SOAPpy import SOAP
+
+ def echo(s):
+ return s + s
|