From owner-svn-ports-all@FreeBSD.ORG Thu Apr 3 21:59:19 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6405DDE; Thu, 3 Apr 2014 21:59:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A2FEB313; Thu, 3 Apr 2014 21:59:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s33LxJDU013976; Thu, 3 Apr 2014 21:59:19 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s33LxI2c013972; Thu, 3 Apr 2014 21:59:18 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201404032159.s33LxI2c013972@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 3 Apr 2014 21:59:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350051 - in head/net: . py-simplesoap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 21:59:19 -0000 Author: sunpoet Date: Thu Apr 3 21:59:18 2014 New Revision: 350051 URL: http://svnweb.freebsd.org/changeset/ports/350051 QAT: https://qat.redports.org/buildarchive/r350051/ Log: - Add py-simplesoap 1.10 PySimpleSOAP (Python Simple SOAP) library for client and server webservices interfaces, aimed to be as small and easy as possible, supporting most common functionality. Initially it was inspired by PHP Soap Extension (mimicking it functionality, simplicity and ease of use), with many advanced features added. Goals: - Simple: less than 200LOC client/server concrete implementation for easy maintainability and enhancments. - Flexible: adapted to several SOAP dialects (Java Axis, .Net, JBoss), with the posibility of fine-tuning XML request and responses - Pythonic: no artifacts, no class generation, no special types, RPC calls parameters and return values are simple python structures (dicts, list, etc.) - Dynamic: no definition (WSDL) required, dynamic generation and parsing supported (cached in a pickle file for performance, supporting fixing broken WSDL) - Easy: simple xml manipulation, including basic serialization and raw object-like access to SOAP messages - Extensible: supports several HTTP wrappers (httplib2, pycurl, urllib2) for special transport needs over SSL and proxy (ISA) WWW: https://code.google.com/p/pysimplesoap/ Added: head/net/py-simplesoap/ head/net/py-simplesoap/Makefile (contents, props changed) head/net/py-simplesoap/distinfo (contents, props changed) head/net/py-simplesoap/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Apr 3 21:57:31 2014 (r350050) +++ head/net/Makefile Thu Apr 3 21:59:18 2014 (r350051) @@ -934,6 +934,7 @@ SUBDIR += py-qt4-network SUBDIR += py-radix SUBDIR += py-s3cmd + SUBDIR += py-simplesoap SUBDIR += py-smb SUBDIR += py-smbpasswd SUBDIR += py-soappy Added: head/net/py-simplesoap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-simplesoap/Makefile Thu Apr 3 21:59:18 2014 (r350051) @@ -0,0 +1,23 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= simplesoap +PORTVERSION= 1.10 +CATEGORIES= net www python +MASTER_SITES= GOOGLE_CODE +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= PySimpleSOAP-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Python Simple SOAP Library + +LICENSE= LGPL3 + +PYDISTUTILS_AUTOPLIST= yes +USE_PYDISTUTILS=yes +USE_PYTHON= yes +USES= zip + +PROJECTHOST= py${PORTNAME} + +.include Added: head/net/py-simplesoap/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-simplesoap/distinfo Thu Apr 3 21:59:18 2014 (r350051) @@ -0,0 +1,2 @@ +SHA256 (PySimpleSOAP-1.10.zip) = 421000ec686c92e396beb6bd5c3765e9602aa8b336f86503d930a01a47bc6d94 +SIZE (PySimpleSOAP-1.10.zip) = 29106 Added: head/net/py-simplesoap/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-simplesoap/pkg-descr Thu Apr 3 21:59:18 2014 (r350051) @@ -0,0 +1,21 @@ +PySimpleSOAP (Python Simple SOAP) library for client and server webservices +interfaces, aimed to be as small and easy as possible, supporting most common +functionality. Initially it was inspired by PHP Soap Extension (mimicking it +functionality, simplicity and ease of use), with many advanced features added. + +Goals: +- Simple: less than 200LOC client/server concrete implementation for easy + maintainability and enhancments. +- Flexible: adapted to several SOAP dialects (Java Axis, .Net, JBoss), with the + posibility of fine-tuning XML request and responses +- Pythonic: no artifacts, no class generation, no special types, RPC calls + parameters and return values are simple python structures (dicts, list, etc.) +- Dynamic: no definition (WSDL) required, dynamic generation and parsing + supported (cached in a pickle file for performance, supporting fixing broken + WSDL) +- Easy: simple xml manipulation, including basic serialization and raw + object-like access to SOAP messages +- Extensible: supports several HTTP wrappers (httplib2, pycurl, urllib2) for + special transport needs over SSL and proxy (ISA) + +WWW: https://code.google.com/p/pysimplesoap/