From owner-svn-ports-head@FreeBSD.ORG Mon Dec 22 20:59:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD5498AA; Mon, 22 Dec 2014 20:59:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9FE0F1247; Mon, 22 Dec 2014 20:59:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBMKxYDF055535; Mon, 22 Dec 2014 20:59:34 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBMKxYsS055533; Mon, 22 Dec 2014 20:59:34 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201412222059.sBMKxYsS055533@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Mon, 22 Dec 2014 20:59:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375267 - head/devel/py-palm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Dec 2014 20:59:34 -0000 Author: rm Date: Mon Dec 22 20:59:33 2014 New Revision: 375267 URL: https://svnweb.freebsd.org/changeset/ports/375267 QAT: https://qat.redports.org/buildarchive/r375267/ Log: devel/py-palm: add missing dependencies - add missing dependencies - limit python version to 2.x - let it build with protobuf 2.6 - misc non-functional changes - bump PORTREVISION because of dependency changes Approved by: vg (maintainer) Modified: head/devel/py-palm/Makefile head/devel/py-palm/pkg-descr Modified: head/devel/py-palm/Makefile ============================================================================== --- head/devel/py-palm/Makefile Mon Dec 22 20:49:07 2014 (r375266) +++ head/devel/py-palm/Makefile Mon Dec 22 20:59:33 2014 (r375267) @@ -3,19 +3,27 @@ PORTNAME= palm PORTVERSION= 0.1.7 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= vg@FreeBSD.org -COMMENT= Protobufs Are Lightweight Messages +COMMENT= Fast Protocol Buffer library for Python LICENSE= BSD2CLAUSE -USES= python +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}protobuf>0:${PORTSDIR}/devel/py-protobuf +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}simpleparse>0:${PORTSDIR}/devel/py-simpleparse + +USES= python:2 USE_PYTHON= autoplist distutils +post-patch: + @${REINPLACE_CMD} -e 's|"protobuf>=2.4.1,<=2.4.999"|"protobuf>=2.4.1"|' \ + ${WRKSRC}/setup.py + post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/site-packages/${PORTNAME}/${PORTNAME}.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/palm/palm.so .include Modified: head/devel/py-palm/pkg-descr ============================================================================== --- head/devel/py-palm/pkg-descr Mon Dec 22 20:49:07 2014 (r375266) +++ head/devel/py-palm/pkg-descr Mon Dec 22 20:59:33 2014 (r375267) @@ -2,6 +2,7 @@ PALM is a library for using Google's pro a fast core written in C with a thin Cython binding to Python. The goal of palm was to make improvements to the Google reference implementation, namely: + * Make the library significantly faster * Clean up the API