svn commit: r305979 - head/devel/py-jsonrpclib

Ruslan Mahmatkhanov rm at FreeBSD.org
Tue Oct 16 15:07:58 UTC 2012


Author: rm
Date: Tue Oct 16 15:07:57 2012
New Revision: 305979
URL: http://svn.freebsd.org/changeset/ports/305979

Log:
  - turn csjon to optional dependency (default off)
  - bump PORTREVISION because of dependency change
  
  while here:
  - trim Makefile header
  - add license (AL2)
  - limit python version to 2.x only
  - do not try to remove directories, that we didn't installed
  
  PR:		171579 (based on)
  Submitted by:	Brian Coca <bcoca+fbsd at tablethotels dot com>
  Approved by:	Attila Nagy <bra at fsn dot hu> (maintainer)
  Feature safe:	yes

Modified:
  head/devel/py-jsonrpclib/Makefile
  head/devel/py-jsonrpclib/pkg-plist

Modified: head/devel/py-jsonrpclib/Makefile
==============================================================================
--- head/devel/py-jsonrpclib/Makefile	Tue Oct 16 14:37:50 2012	(r305978)
+++ head/devel/py-jsonrpclib/Makefile	Tue Oct 16 15:07:57 2012	(r305979)
@@ -1,12 +1,9 @@
-# New ports collection makefile for:	py-jsonrpclib
-# Date created:				09. 21. 2011
-# Whom:					Attila Nagy <bra at fsn.hu>
-#
+# Created by: Attila Nagy <bra at fsn.hu>
 # $FreeBSD$
-#
 
 PORTNAME=	jsonrpclib
 PORTVERSION=	0.1.3
+PORTREVISION=	1
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -14,9 +11,19 @@ PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 MAINTAINER=	bra at fsn.hu
 COMMENT=	Implements the JSON-RPC 2.0 proposed specification in pure Python
 
-RUN_DEPENDS=	${PYTHON_SITELIBDIR}/cjson.so:${PORTSDIR}/devel/py-cjson
+LICENSE=	AL2
 
-USE_PYTHON=		yes
-USE_PYDISTUTILS=	yes
+USE_PYTHON=	-2.7
+USE_PYDISTUTILS=yes
+
+OPTIONSFILE=	${PORT_DBDIR}/${PORTNAME}/options
+OPTIONS_DEFINE=	CJSON
+CJSON_DESC=	Use cjson instead of json or simplejson
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MCJSON}
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}cjson>0:${PORTSDIR}/devel/py-cjson
+.endif
 
 .include <bsd.port.mk>

Modified: head/devel/py-jsonrpclib/pkg-plist
==============================================================================
--- head/devel/py-jsonrpclib/pkg-plist	Tue Oct 16 14:37:50 2012	(r305978)
+++ head/devel/py-jsonrpclib/pkg-plist	Tue Oct 16 15:07:57 2012	(r305979)
@@ -16,5 +16,4 @@
 %%PYTHON_SITELIBDIR%%/jsonrpclib/jsonrpc.py
 %%PYTHON_SITELIBDIR%%/jsonrpclib/jsonrpc.pyc
 %%PYTHON_SITELIBDIR%%/jsonrpclib/jsonrpc.pyo
- at dirrmtry %%PYTHON_SITELIBDIR%%/jsonrpclib
- at dirrmtry %%PYTHON_SITELIBDIR%%
+ at dirrm %%PYTHON_SITELIBDIR%%/jsonrpclib


More information about the svn-ports-all mailing list