Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Apr 2019 22:00:11 +0000 (UTC)
From:      Muhammad Moinur Rahman <bofh@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r498767 - in head/net: . py-zeep
Message-ID:  <201904122200.x3CM0BZu026261@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bofh
Date: Fri Apr 12 22:00:10 2019
New Revision: 498767
URL: https://svnweb.freebsd.org/changeset/ports/498767

Log:
  [NEW] net/py-zeep: Modern/fast Python SOAP client based on lxml / requests
  
  A fast and modern Python SOAP client
  - Compatible with Python 2.7, 3.3, 3.4, 3.5, 3.6, 3.7 and PyPy
  - Build on top of lxml and requests
  - Support for Soap 1.1, Soap 1.2 and HTTP bindings
  - Support for WS-Addressing headers
  - Support for WSSE (UserNameToken / x.509 signing)
  - Support for tornado async transport via gen.coroutine (Python 2.7+)
  - Support for asyncio via aiohttp (Python 3.5+)
  - Experimental support for XOP messages
  
  WWW: https://python-zeep.readthedocs.io/

Added:
  head/net/py-zeep/
  head/net/py-zeep/Makefile   (contents, props changed)
  head/net/py-zeep/distinfo   (contents, props changed)
  head/net/py-zeep/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Fri Apr 12 21:50:49 2019	(r498766)
+++ head/net/Makefile	Fri Apr 12 22:00:10 2019	(r498767)
@@ -1138,6 +1138,7 @@
     SUBDIR += py-wolframalpha
     SUBDIR += py-wsproto
     SUBDIR += py-xmlrpc
+    SUBDIR += py-zeep
     SUBDIR += py-zeroconf
     SUBDIR += py-zope.proxy
     SUBDIR += py-zsi

Added: head/net/py-zeep/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-zeep/Makefile	Fri Apr 12 22:00:10 2019	(r498767)
@@ -0,0 +1,42 @@
+# Created by: Muhammad Moinur Rahman <bbofh@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	zeep
+PORTVERSION=	3.3.1
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	bofh@FreeBSD.org
+COMMENT=	Modern/fast Python SOAP client based on lxml / requests
+
+LICENSE=	BSD3CLAUSE MIT
+LICENSE_COMB=	multi
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}appdirs>=1.4.0:devel/py-appdirs@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}attrs>=16.0.0:devel/py-attrs@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}cached-property>=1.3.0:devel/py-cached-property@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}defusedxml>=0.4.1:devel/py-defusedxml@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}isodate>=0.5.4:devel/py-isodate@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}lxml>=3.1.0:devel/py-lxml@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests>=2.7.0:www/py-requests@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests-toolbelt>=0.7.1:www/py-requests-toolbelt@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}tornado4>=4.0.2:www/py-tornado4@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}xmlsec>=0.6.1:security/py-xmlsec@${PY_FLAVOR}
+
+USES=		python:3.4+
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} > 3402
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}aiohttp>=2.3.5:www/py-aiohttp@${PY_FLAVOR}
+.endif
+
+.include <bsd.port.post.mk>

Added: head/net/py-zeep/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-zeep/distinfo	Fri Apr 12 22:00:10 2019	(r498767)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1554668595
+SHA256 (zeep-3.3.1.tar.gz) = f58328e36264a2fda2484dd20bb1695f4102a9cc918178d60c4d7cf8339c65d0
+SIZE (zeep-3.3.1.tar.gz) = 161684

Added: head/net/py-zeep/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-zeep/pkg-descr	Fri Apr 12 22:00:10 2019	(r498767)
@@ -0,0 +1,11 @@
+A fast and modern Python SOAP client
+- Compatible with Python 2.7, 3.3, 3.4, 3.5, 3.6, 3.7 and PyPy
+- Build on top of lxml and requests
+- Support for Soap 1.1, Soap 1.2 and HTTP bindings
+- Support for WS-Addressing headers
+- Support for WSSE (UserNameToken / x.509 signing)
+- Support for tornado async transport via gen.coroutine (Python 2.7+)
+- Support for asyncio via aiohttp (Python 3.5+)
+- Experimental support for XOP messages
+
+WWW: https://python-zeep.readthedocs.io/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904122200.x3CM0BZu026261>