From owner-svn-ports-all@freebsd.org Thu Jun 8 02:03:56 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7575BBEF825; Thu, 8 Jun 2017 02:03:56 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 444736A9B2; Thu, 8 Jun 2017 02:03:56 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5823tRn017939; Thu, 8 Jun 2017 02:03:55 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5823tuu017938; Thu, 8 Jun 2017 02:03:55 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201706080203.v5823tuu017938@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Thu, 8 Jun 2017 02:03:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442901 - head/sysutils/ohmu X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2017 02:03:56 -0000 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