devel/py-path.py: Module wrapper for os.path

path.py implements a path objects as first-class entities, allowing common
operations on files to be invoked on those path objects directly.

WWW: https://github.com/jaraco/path.py
This commit is contained in:
William Grzybowski 2014-09-02 23:19:23 +00:00
parent d053e13822
commit 386d6d5c8b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=367134
3 changed files with 23 additions and 0 deletions

17
devel/py-path.py/Makefile Normal file
View file

@ -0,0 +1,17 @@
# $FreeBSD$
PORTNAME= path.py
PORTVERSION= 5.2
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wg@FreeBSD.org
COMMENT= Module wrapper for os.path
LICENSE= MIT
USES= python zip
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (path.py-5.2.zip) = d82923a04b527ff9d6e0161c29d295db4c35d63bb97f4f1071e5b550d7ba3358
SIZE (path.py-5.2.zip) = 27827

View file

@ -0,0 +1,4 @@
path.py implements a path objects as first-class entities, allowing common
operations on files to be invoked on those path objects directly.
WWW: https://github.com/jaraco/path.py