mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
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:
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
|
@ -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
42
net/py-xmlrpclib/Makefile
Normal 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>
|
1
net/py-xmlrpclib/distinfo
Normal file
1
net/py-xmlrpclib/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (xmlrpc-0.9.9-010226.zip) = 49d877913f712e1fa24d1072d4898cb6
|
1
net/py-xmlrpclib/pkg-comment
Normal file
1
net/py-xmlrpclib/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A Python implementation of the XML-RPC protocol
|
11
net/py-xmlrpclib/pkg-descr
Normal file
11
net/py-xmlrpclib/pkg-descr
Normal 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>
|
8
net/py-xmlrpclib/pkg-plist
Normal file
8
net/py-xmlrpclib/pkg-plist
Normal 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
|
Loading…
Add table
Reference in a new issue