From owner-svn-ports-head@freebsd.org Fri Mar 3 10:27:20 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 3561CCF68D0; Fri, 3 Mar 2017 10:27:20 +0000 (UTC) (envelope-from sunpoet@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 DD85E1A2E; Fri, 3 Mar 2017 10:27:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v23ARJci015096; Fri, 3 Mar 2017 10:27:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v23ARIBl015093; Fri, 3 Mar 2017 10:27:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201703031027.v23ARIBl015093@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 3 Mar 2017 10:27:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435339 - in head/devel: . py-prompt_toolkit py3-prompt_toolkit 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, 03 Mar 2017 10:27:20 -0000 Author: sunpoet Date: Fri Mar 3 10:27:18 2017 New Revision: 435339 URL: https://svnweb.freebsd.org/changeset/ports/435339 Log: Add py3-prompt_toolkit 1.0.13 (slave port of py-prompt_toolkit) - While I'm here, add SLAVEDIRS PR: 217478 Submitted by: Danilo G. Baio (dbaio) Added: head/devel/py3-prompt_toolkit/ head/devel/py3-prompt_toolkit/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/py-prompt_toolkit/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Mar 3 10:25:19 2017 (r435338) +++ head/devel/Makefile Fri Mar 3 10:27:18 2017 (r435339) @@ -4915,6 +4915,7 @@ SUBDIR += py3-lxml SUBDIR += py3-mccabe SUBDIR += py3-nose + SUBDIR += py3-prompt_toolkit SUBDIR += py3-py SUBDIR += py3-pycodestyle SUBDIR += py3-pydocstyle Modified: head/devel/py-prompt_toolkit/Makefile ============================================================================== --- head/devel/py-prompt_toolkit/Makefile Fri Mar 3 10:25:19 2017 (r435338) +++ head/devel/py-prompt_toolkit/Makefile Fri Mar 3 10:27:18 2017 (r435339) @@ -13,11 +13,13 @@ COMMENT= Library for building powerful i LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six \ +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six \ ${PYTHON_PKGNAMEPREFIX}wcwidth>=0:devel/py-wcwidth NO_ARCH= yes USE_PYTHON= autoplist concurrent distutils -USES= python +USES?= python + +SLAVEDIRS= devel/py3-prompt_toolkit .include Added: head/devel/py3-prompt_toolkit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-prompt_toolkit/Makefile Fri Mar 3 10:27:18 2017 (r435339) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py3-six \ + ${PYTHON_PKGNAMEPREFIX}wcwidth>=0:devel/py3-wcwidth + +USES= python:3.3+ + +MASTERDIR= ${.CURDIR}/../py-prompt_toolkit + +.include "${MASTERDIR}/Makefile"