From owner-svn-ports-head@freebsd.org Wed Sep 28 20:02:18 2016 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 0AF7DC01382; Wed, 28 Sep 2016 20:02:18 +0000 (UTC) (envelope-from antoine@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 C19701D2F; Wed, 28 Sep 2016 20:02:17 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8SK2GjY016464; Wed, 28 Sep 2016 20:02:16 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8SK2GJk016459; Wed, 28 Sep 2016 20:02:16 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609282002.u8SK2GJk016459@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 28 Sep 2016 20:02:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422885 - in 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: Wed, 28 Sep 2016 20:02:18 -0000 Author: antoine Date: Wed Sep 28 20:02:16 2016 New Revision: 422885 URL: https://svnweb.freebsd.org/changeset/ports/422885 Log: New port: devel/py-pathlib2 Backport of standard pathlib module which tracks the standard library module, so all the newest features of the standard pathlib can be used also on older Python versions. WWW: https://pypi.python.org/pypi/pathlib2/ PR: 213049 Added: head/devel/py-pathlib2/ head/devel/py-pathlib2/Makefile (contents, props changed) head/devel/py-pathlib2/distinfo (contents, props changed) head/devel/py-pathlib2/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Sep 28 20:01:44 2016 (r422884) +++ head/devel/Makefile Wed Sep 28 20:02:16 2016 (r422885) @@ -4302,6 +4302,7 @@ SUBDIR += py-parsedatetime SUBDIR += py-path.py SUBDIR += py-pathlib + SUBDIR += py-pathlib2 SUBDIR += py-pathtools SUBDIR += py-paver SUBDIR += py-pbr Added: head/devel/py-pathlib2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pathlib2/Makefile Wed Sep 28 20:02:16 2016 (r422885) @@ -0,0 +1,27 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= pathlib2 +PORTVERSION= 2.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Object-oriented filesystem paths + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.rst + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +do-test: + @(cd ${WRKSRC} && \ + ${PYTHON_CMD} test_pathlib2.py && \ + ${PYTHON_CMD} test_pathlib2_with_py2_unicode_literals.py) + +.include Added: head/devel/py-pathlib2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pathlib2/distinfo Wed Sep 28 20:02:16 2016 (r422885) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475082260 +SHA256 (pathlib2-2.1.0.tar.gz) = deb3a960c1d55868dfbcac98432358b92ba89d95029cddd4040db1f27405055c +SIZE (pathlib2-2.1.0.tar.gz) = 30390 Added: head/devel/py-pathlib2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pathlib2/pkg-descr Wed Sep 28 20:02:16 2016 (r422885) @@ -0,0 +1,5 @@ +Backport of standard pathlib module which tracks the standard library module, +so all the newest features of the standard pathlib can be used also on older +Python versions. + +WWW: https://pypi.python.org/pypi/pathlib2/