From owner-svn-ports-head@freebsd.org Thu Jun 8 14:43:47 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 4F724C0862A; Thu, 8 Jun 2017 14:43:47 +0000 (UTC) (envelope-from woodsb02@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 12546146; Thu, 8 Jun 2017 14:43:46 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v58EhkDE029474; Thu, 8 Jun 2017 14:43:46 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v58EhjEx029471; Thu, 8 Jun 2017 14:43:45 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201706081443.v58EhjEx029471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Thu, 8 Jun 2017 14:43:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442937 - in head/textproc: . py-numpydoc py3-numpydoc 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: Thu, 08 Jun 2017 14:43:47 -0000 Author: woodsb02 Date: Thu Jun 8 14:43:45 2017 New Revision: 442937 URL: https://svnweb.freebsd.org/changeset/ports/442937 Log: [NEW] textproc/py3-numpydoc: Create Python 3.x version of this port PR: 217483 Submitted by: dbaio Approved by: cpm (maintainer) Added: head/textproc/py3-numpydoc/ head/textproc/py3-numpydoc/Makefile (contents, props changed) Modified: head/textproc/Makefile head/textproc/py-numpydoc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Jun 8 14:28:21 2017 (r442936) +++ head/textproc/Makefile Thu Jun 8 14:43:45 2017 (r442937) @@ -1377,6 +1377,7 @@ SUBDIR += py3-humanfriendly SUBDIR += py3-hunspell SUBDIR += py3-libxml2 + SUBDIR += py3-numpydoc SUBDIR += py3-pager SUBDIR += py3-pygments SUBDIR += py3-pystemmer Modified: head/textproc/py-numpydoc/Makefile ============================================================================== --- head/textproc/py-numpydoc/Makefile Thu Jun 8 14:28:21 2017 (r442936) +++ head/textproc/py-numpydoc/Makefile Thu Jun 8 14:43:45 2017 (r442937) @@ -13,10 +13,10 @@ COMMENT= Sphinx extension to support docstrings in Num LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.0.1:textproc/py-sphinx -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.0.1:textproc/py-sphinx +TEST_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose -USES= python +USES?= python USE_PYTHON= autoplist distutils NO_ARCH= yes Added: head/textproc/py3-numpydoc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py3-numpydoc/Makefile Thu Jun 8 14:43:45 2017 (r442937) @@ -0,0 +1,11 @@ +# Created by: Danilo G. Baio +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-numpydoc + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.0.1:textproc/py3-sphinx +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py3-nose + +USES= python:3.4+ + +.include "${MASTERDIR}/Makefile"