1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

add py-xmlrpc

A fast implementation of the xmlrpc spec for Python

PR:		26769
Submitted by:	Chang, Hye-Shik <perky@python.or.kr>
This commit is contained in:
Ying-Chieh Liao 2001-05-24 12:37:22 +00:00
parent 1303808006
commit 837a08f33a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=43009
7 changed files with 58 additions and 0 deletions

View File

@ -282,6 +282,7 @@
SUBDIR += proxy-suite
SUBDIR += pvm
SUBDIR += pvm++
SUBDIR += py-xmlrpc
SUBDIR += queso
SUBDIR += radius
SUBDIR += radiusclient

32
net/py-xmlrpc/Makefile Normal file
View File

@ -0,0 +1,32 @@
# New ports collection makefile for: py-xmlrpc
# Date created: 22 April 2001
# Whom: Hye-Shik Chang <perky@python.or.kr>
#
# $FreeBSD$
#
PORTNAME= xmlrpc
PORTVERSION= 0.8.2
CATEGORIES= net python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
MAINTAINER= perky@python.or.kr
BUILD_DEPENDS= ${PYDISTUTILS}
WRKSRC= ${WRKDIR}/${PORTNAME}
PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S/^${LOCALBASE}\///g}
USE_PYTHON= yes
SETUP_CMD= cd ${WRKSRC} && ${PYTHON_CMD} setup.py
do-build:
${SETUP_CMD} build
do-install:
${SETUP_CMD} install
.include <bsd.port.mk>

1
net/py-xmlrpc/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (py-xmlrpc-0.8.2.tar.gz) = bd484cd20b7b7a418222a39b39bb4c39

View File

@ -0,0 +1,11 @@
--- setup.py.orig Sun Apr 22 23:37:47 2001
+++ setup.py Sun Apr 22 23:37:55 2001
@@ -4,7 +4,7 @@
import sys
-if sys.platform[:5] == 'linux':
+if sys.platform[:7] == 'freebsd':
MACROS = {'define' : []}
LIBS = []
else:

View File

@ -0,0 +1 @@
A fast implementation of the xmlrpc spec for Python

9
net/py-xmlrpc/pkg-descr Normal file
View File

@ -0,0 +1,9 @@
A very fast implementation of the xmlrpc spec
for Python (written in C). It supports both blocking
and non-blocking clients and servers on Windows and
POSIX platforms. Version 0.8.1 is 100% compliant
with the www.xmlrpc.com validator.
WWW: http://sourceforge.net/projects/py-xmlrpc/
- Hye Shik Chang, a.k.a. "Perky"

3
net/py-xmlrpc/pkg-plist Normal file
View File

@ -0,0 +1,3 @@
%%PYTHON_SITELIBDIR%%/_xmlrpc.so
%%PYTHON_SITELIBDIR%%/xmlrpc.py
%%PYTHON_SITELIBDIR%%/xmlrpc.pyc