From owner-svn-ports-head@freebsd.org Thu Jun 8 14:28:23 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 1AC74BFFDFE; Thu, 8 Jun 2017 14:28:23 +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 DCEF8843D7; Thu, 8 Jun 2017 14:28:22 +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 v58ESMut021116; Thu, 8 Jun 2017 14:28:22 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v58ESMuu021113; Thu, 8 Jun 2017 14:28:22 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201706081428.v58ESMuu021113@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:28:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442936 - in head/devel: . py-dateutil py3-dateutil 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:28:23 -0000 Author: woodsb02 Date: Thu Jun 8 14:28:21 2017 New Revision: 442936 URL: https://svnweb.freebsd.org/changeset/ports/442936 Log: [NEW] devel/py3-dateutil: Add Python 3.x version of this port PR: 219541 PR: 219833 Submitted by: rs.os Added: head/devel/py3-dateutil/ head/devel/py3-dateutil/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/py-dateutil/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jun 8 14:11:43 2017 (r442935) +++ head/devel/Makefile Thu Jun 8 14:28:21 2017 (r442936) @@ -4948,6 +4948,7 @@ SUBDIR += py3-click-threading SUBDIR += py3-colorama SUBDIR += py3-coloredlogs + SUBDIR += py3-dateutil SUBDIR += py3-dbus SUBDIR += py3-defusedxml SUBDIR += py3-docopt Modified: head/devel/py-dateutil/Makefile ============================================================================== --- head/devel/py-dateutil/Makefile Thu Jun 8 14:11:43 2017 (r442935) +++ head/devel/py-dateutil/Makefile Thu Jun 8 14:28:21 2017 (r442936) @@ -13,9 +13,9 @@ COMMENT= Extensions to the standard Python datetime mo LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.5:devel/py-six +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}six>=1.5:devel/py-six -USES= python +USES?= python USE_GITHUB= yes USE_PYTHON= autoplist distutils Added: head/devel/py3-dateutil/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-dateutil/Makefile Thu Jun 8 14:28:21 2017 (r442936) @@ -0,0 +1,10 @@ +# Created by: rs.os +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-dateutil + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.5:devel/py3-six + +USES= python:3.2+ + +.include "${MASTERDIR}/Makefile"