Add py-xmlrpclib 0.9.9, a Python implementation of the XML-RPC

protocol.

PR:		27737
Submitted by:	Johann Visagie <johann@egenetics.com>
This commit is contained in:
Johann Visagie 2001-06-19 11:39:02 +00:00
parent 08524ceacc
commit 2693c9221d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=44220
6 changed files with 64 additions and 0 deletions

View file

@ -293,6 +293,7 @@
SUBDIR += pvm++
SUBDIR += py-soap
SUBDIR += py-xmlrpc
SUBDIR += py-xmlrpclib
SUBDIR += queso
SUBDIR += radius
SUBDIR += radiusclient

42
net/py-xmlrpclib/Makefile Normal file
View file

@ -0,0 +1,42 @@
# New ports collection makefile for: py-xmlrpclib
# Date created: 29 May 2001
# Whom: Johann Visagie <johann@egenetics.com>
#
# $FreeBSD$
#
PORTNAME= xmlrpclib
PORTVERSION= 0.9.9
CATEGORIES= net python
MASTER_SITES= http://www.pythonware.com/downloads/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= xmlrpc-${PORTVERSION}-010226
MAINTAINER= wjv@FreeBSD.org
USE_PYTHON= yes
USE_ZIP= yes
NO_WRKSUBDIR= yes
XRL_DOCDIR= ${PREFIX}/share/doc/py-xmlrpclib
XRL_EGDIR= ${PREFIX}/share/examples/py-xmlrpclib
do-build:
@ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}
@ ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}
do-install:
@ ${INSTALL_DATA} ${WRKSRC}/xmlrpclib.py* \
${PREFIX}/lib/${PYTHON_VERSION}/site-packages
@ ${MKDIR} ${XRL_EGDIR}
.for egfile in xmlrpcserver.py xmlrpc_handler.py
@ ${INSTALL_DATA} ${WRKSRC}/${egfile} ${XRL_EGDIR}
.endfor
post-install:
.if !defined(NOPORTDOCS)
@ ${MKDIR} ${XRL_DOCDIR}
@ ${INSTALL_MAN} ${WRKSRC}/README ${XRL_DOCDIR}
.endif
.include <bsd.port.mk>

View file

@ -0,0 +1 @@
MD5 (xmlrpc-0.9.9-010226.zip) = 49d877913f712e1fa24d1072d4898cb6

View file

@ -0,0 +1 @@
A Python implementation of the XML-RPC protocol

View file

@ -0,0 +1,11 @@
Fredrik Lundh's original and widely used Python implementation of Userland's
XML-RPC protocol (http://www.xmlrpc.com/) is tightly integrated with Python
and extremely simple to use. It includes a simple example server based on
Python's SocketServer class, and an XML-RPC handler for Medusa.
Version 0.9.9 is regarded as a beta-quality development release.
Author: Fredrik Lundh <fredrik@pythonware.com>
WWW: http://www.pythonware.com/products/xmlrpc/
-- Johann Visagie <johann@egenetics.com>

View file

@ -0,0 +1,8 @@
%%PORTDOCS%%share/doc/py-xmlrpclib/README
lib/%%PYTHON_VERSION%%/site-packages/xmlrpclib.py
lib/%%PYTHON_VERSION%%/site-packages/xmlrpclib.pyc
lib/%%PYTHON_VERSION%%/site-packages/xmlrpclib.pyo
share/examples/py-xmlrpclib/xmlrpc_handler.py
share/examples/py-xmlrpclib/xmlrpcserver.py
@dirrm share/examples/py-xmlrpclib
%%PORTDOCS%%@dirrm share/doc/py-xmlrpclib