From owner-svn-ports-head@freebsd.org Fri Feb 24 20:54:41 2017 Return-Path: Delivered-To: svn-ports-head@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 94D4DCEB371; Fri, 24 Feb 2017 20:54:41 +0000 (UTC) (envelope-from rm@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 61CB91044; Fri, 24 Feb 2017 20:54:41 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1OKseeP054139; Fri, 24 Feb 2017 20:54:40 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1OKsevj054138; Fri, 24 Feb 2017 20:54:40 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201702242054.v1OKsevj054138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Fri, 24 Feb 2017 20:54:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434748 - head/devel/py-pathlib2 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.23 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: Fri, 24 Feb 2017 20:54:41 -0000 Author: rm Date: Fri Feb 24 20:54:40 2017 New Revision: 434748 URL: https://svnweb.freebsd.org/changeset/ports/434748 Log: devel/py-pathlib2: add missing dependency Add dependency upon sysutils/py-scandir, because it required for python < 3.5. Bump PORTREVISION. PR: 217238 Submitted by: antoine Reported by: Andrew Approved by: portmgr (blanket approval) MFH: 2017Q1 Modified: head/devel/py-pathlib2/Makefile Modified: head/devel/py-pathlib2/Makefile ============================================================================== --- head/devel/py-pathlib2/Makefile Fri Feb 24 20:14:58 2017 (r434747) +++ head/devel/py-pathlib2/Makefile Fri Feb 24 20:54:40 2017 (r434748) @@ -3,6 +3,7 @@ PORTNAME= pathlib2 PORTVERSION= 2.2.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,9 +20,15 @@ USES= python USE_PYTHON= distutils autoplist NO_ARCH= yes +.include + +.if ${PYTHON_REL} < 3500 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}scandir>=0:sysutils/py-scandir +.endif + do-test: @(cd ${WRKSRC} && \ ${PYTHON_CMD} test_pathlib2.py && \ ${PYTHON_CMD} test_pathlib2_with_py2_unicode_literals.py) -.include +.include