Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Jun 2016 09:25:04 +0000 (UTC)
From:      Olivier Duchateau <olivierd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r416710 - head/biology/py-biom-format
Message-ID:  <201606110925.u5B9P4t4062029@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olivierd
Date: Sat Jun 11 09:25:04 2016
New Revision: 416710
URL: https://svnweb.freebsd.org/changeset/ports/416710

Log:
  - Fix run-time dependency issues
  - Bump PORTREVISION
  
  PR:		209767
  Submitted by:	Joseph Mingrone (maintainer)

Modified:
  head/biology/py-biom-format/Makefile

Modified: head/biology/py-biom-format/Makefile
==============================================================================
--- head/biology/py-biom-format/Makefile	Sat Jun 11 09:13:19 2016	(r416709)
+++ head/biology/py-biom-format/Makefile	Sat Jun 11 09:25:04 2016	(r416710)
@@ -3,6 +3,7 @@
 
 PORTNAME=	biom-format
 PORTVERSION=	2.1.5
+PORTREVISION=	1
 CATEGORIES=	biology python
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
@@ -12,7 +13,11 @@ COMMENT=	Biological Observation Matrix (
 LICENSE=	BSD3CLAUSE
 
 BUILD_DEPENDS=	${PYNUMPY}
-RUN_DEPENDS=	${PYNUMPY} ${PYTHON_PKGNAMEPREFIX}h5py>0:science/py-h5py
+RUN_DEPENDS=	${PYNUMPY} \
+		${PYTHON_PKGNAMEPREFIX}h5py>=2.6.0:science/py-h5py    \
+		${PYTHON_PKGNAMEPREFIX}click>=6.6:devel/py-click      \
+		${PYTHON_PKGNAMEPREFIX}future>=0.15.2:devel/py-future \
+		${PYTHON_PKGNAMEPREFIX}scipy>=0.16.1:science/py-scipy
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	biocore
@@ -20,7 +25,13 @@ GH_ACCOUNT=	biocore
 USES=		python
 USE_PYTHON=	autoplist distutils
 
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} < 3000
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}pyqi>=0.2.0:devel/py-pyqi
+.endif
+
 post-install:
 	${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/biom/*.so
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606110925.u5B9P4t4062029>