svn commit: r442901 - head/sysutils/ohmu
Rene Ladan
rene at FreeBSD.org
Thu Jun 8 02:03:56 UTC 2017
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>
More information about the svn-ports-all
mailing list