Date: Thu, 8 Jun 2017 02:03:55 +0000 (UTC) From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442901 - head/sysutils/ohmu Message-ID: <201706080203.v5823tuu017938@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rene Date: Thu Jun 8 02:03:55 2017 New Revision: 442901 URL: https://svnweb.freebsd.org/changeset/ports/442901 Log: sysutils/ohmu: fix port by relaxing runtime dependencies in setup.py Before, this port depended on future==0.15.2 but we have future 0.16 in Ports. Also relax the dependency on scandir. The port ran fine locally after these changes. Approved by: fix-it Modified: head/sysutils/ohmu/Makefile Modified: head/sysutils/ohmu/Makefile ============================================================================== --- head/sysutils/ohmu/Makefile Thu Jun 8 01:46:33 2017 (r442900) +++ head/sysutils/ohmu/Makefile Thu Jun 8 02:03:55 2017 (r442901) @@ -21,4 +21,9 @@ USES= python USE_PYTHON= autoplist distutils NO_ARCH= yes +pre-configure: + ${REINPLACE_CMD} -e 's/scandir==1.3/scandir>=1.3/' \ + -e 's/future==0.15.2/future>=0.15.2/' \ + ${WRKSRC}/setup.py + .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706080203.v5823tuu017938>