diff options
author | drochner <drochner@pkgsrc.org> | 2003-03-19 11:51:08 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2003-03-19 11:51:08 +0000 |
commit | 44e37b278f1dad0677d565230ffab62e4dd245a1 (patch) | |
tree | 95ca000c7efb1ff28f617773269a7b483ea3dd00 /net/py-soappy/Makefile | |
parent | 986454f707eb181c8cbaf12e6326c181bfc64da5 (diff) | |
download | pkgsrc-44e37b278f1dad0677d565230ffab62e4dd245a1.tar.gz |
update to 0.9.8, provided by Marc Recht (PR pkg/20787)
Notes:
This is SOAPpy 0.9.8. It contains substantial improvements over the last
release.
1) SOAPpy now uses the standard python
package installation tools. Executing the commands
$ python setup.py build
$ python setup.py install
(the second as root) should install SOAPpy into the appropriate Python
library directory.
2) There has been inconsistency in how SOAPpy library components have been
imported. This new release standardizes on:
from SOAPpy import SOAP
3) See the changelog for further enhancements.
Diffstat (limited to 'net/py-soappy/Makefile')
-rw-r--r-- | net/py-soappy/Makefile | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/net/py-soappy/Makefile b/net/py-soappy/Makefile index 053afab315c..31b7c2c8449 100644 --- a/net/py-soappy/Makefile +++ b/net/py-soappy/Makefile @@ -1,28 +1,23 @@ -# $NetBSD: Makefile,v 1.2 2002/10/24 22:33:22 drochner Exp $ +# $NetBSD: Makefile,v 1.3 2003/03/19 11:51:08 drochner Exp $ # -DISTNAME= SOAPpy097 -PKGNAME= ${PYPKGPREFIX}-SOAPpy-0.9.7 +DISTNAME= SOAPpy-0.9.8 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pywebsvcs/} -EXTRACT_SUFX= .tgz -MAINTAINER= packages@netbsd.org +MAINTAINER= marc@informatik.uni-bremen.de HOMEPAGE= http://pywebsvcs.sourceforge.net/ COMMENT= SOAP implementation -NO_BUILD= #yes -PY_PATCHPLIST= #yes -USE_BUILDLINK2= yes +USE_BUILDLINK2= YES -# XXX hack to get rid of RCS keywords in patch files -post-extract: - ${SED} 's@\$$\(Id:.*\)\$$@\1@g' <${WRKSRC}/SOAP.py \ - >${WRKSRC}/SOAP.py.tmp - ${MV} ${WRKSRC}/SOAP.py.tmp ${WRKSRC}/SOAP.py +PYDISTUTILSPKG= YES +PY_PATCHPLIST= YES -do-install: - ${CP} ${WRKSRC}/SOAP.py ${PREFIX}/${PYSITELIB} +post-install: + ${PYTHONBIN} -O ${PREFIX}/${PYLIB}/compileall.py \ + ${PREFIX}/${PYSITELIB}/SOAPpy .include "../../textproc/pyxml/buildlink2.mk" .include "../../lang/python/extension.mk" |