A library for creating, reading and manipulating Web Service Definition

Language (WSDL) files using Python. Requires PyXML and 4Suite.

(Fixes to unbreak the 4Suite port were recently sent to maintainer and
will be committed shortly.)
This commit is contained in:
Mikhail Teterin 2003-07-28 19:45:46 +00:00
parent 3b9d523347
commit d7d817c849
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=85786
7 changed files with 58 additions and 0 deletions

View File

@ -852,6 +852,7 @@
SUBDIR += py-ui
SUBDIR += py-unit
SUBDIR += py-vmaps
SUBDIR += py-wsdllib
SUBDIR += py-xoltar-toolkit
SUBDIR += py-yaml
SUBDIR += py_otp_interface

31
devel/py-wsdllib/Makefile Normal file
View File

@ -0,0 +1,31 @@
# New ports collection makefile for: py-wsdllib
# Date created: 28 July 2003
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
#
# $FreeBSD$
#
PORTNAME= wsdllib
PORTVERSION= 0.6
CATEGORIES= devel python
MASTER_SITES= ftp://www-126.ibm.com/pub/wsdl4py/wsdl4py/${PORTVERSION}/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME}
DIST_SUBDIR= wsdl4py-${PORTVERSION}
MAINTAINER= mi@aldan.algebra.com
COMMENT= A library for using and manipulating WSDL files using Python
RUN_DEPENDS= ${PYXML} \
4xslt:${PORTSDIR}/textproc/py-4suite
USE_PYTHON= yes
USE_PYDISTUTILS=yes
PYSETUP= ${FILESDIR}/setup.py
MAKE_ENV+= PORTNAME="${PORTNAME}" PORTVERSION="${PORTVERSION}" COMMENT="${COMMENT}"
pre-build test:
# Running the vendor's tests:
cd ${WRKSRC}/test && ${SETENV} PYTHONPATH=.. ${PYTHON_CMD} test.py
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (wsdl4py-0.6/wsdllib.tar.gz) = bb7625d352efc59ffd843b7f9a4dcb9b

View File

@ -0,0 +1,14 @@
#!/usr/bin/env python
# To use:
# python setup.py install
#
__version__ = "$FreeBSD$"
from os import environ
from distutils.core import setup
setup(name = environ["PORTNAME"],
version = environ["PORTVERSION"],
description = environ["COMMENT"],
py_modules=["wsdllib"])

View File

@ -0,0 +1,8 @@
A library for creating, reading and manipulating Web Service Definition
Language (WSDL) files using Python. Requires PyXML and 4Suite.
License: IBM Public License
WWW: http://www-124.ibm.com/developerworks/projects/wsdl4py
WWW: http://www.w3.org/TR/wsdl
-- Mikhail Teterin <mi@aldan.algebra.com>

View File

@ -0,0 +1,3 @@
%%PYTHON_SITELIBDIR%%/wsdllib.py
%%PYTHON_SITELIBDIR%%/wsdllib.pyc
%%PYTHON_SITELIBDIR%%/wsdllib.pyo

Binary file not shown.