Date: Thu, 3 Jul 2014 22:01:36 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r360467 - in head/devel: . py-unipath Message-ID: <201407032201.s63M1aEC010373@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Thu Jul 3 22:01:36 2014 New Revision: 360467 URL: http://svnweb.freebsd.org/changeset/ports/360467 QAT: https://qat.redports.org/buildarchive/r360467/ Log: devel/py-unipath Unipath is an object-oriented front end to the file/directory functions scattered throughout several Python library modules. It's based on Jason Orendorff's path.py but does not adhere as strictly to the underlying functions' syntax, in order to provide more user convenience and higher-level functionality. Unipath is stable, well-tested, and has been used in production since 2008. WWW: https://github.com/mikeorr/Unipath Added: head/devel/py-unipath/ head/devel/py-unipath/Makefile (contents, props changed) head/devel/py-unipath/distinfo (contents, props changed) head/devel/py-unipath/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jul 3 21:57:54 2014 (r360466) +++ head/devel/Makefile Thu Jul 3 22:01:36 2014 (r360467) @@ -3900,6 +3900,7 @@ SUBDIR += py-ua_parser SUBDIR += py-ujson SUBDIR += py-uncompyle2 + SUBDIR += py-unipath SUBDIR += py-unittest2 SUBDIR += py-unittestplus SUBDIR += py-urlimport Added: head/devel/py-unipath/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-unipath/Makefile Thu Jul 3 22:01:36 2014 (r360467) @@ -0,0 +1,19 @@ +# Created by: William Grzybowski <wg@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= Unipath +PORTVERSION= 1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Object-oriented alternative to os/os.path/shutil + +LICENSE= PSFL + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/devel/py-unipath/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-unipath/distinfo Thu Jul 3 22:01:36 2014 (r360467) @@ -0,0 +1,2 @@ +SHA256 (Unipath-1.0.tar.gz) = ef0139ac30913b43e8d388a3e776e534a22f81975966968d28369ec0338a69b7 +SIZE (Unipath-1.0.tar.gz) = 29306 Added: head/devel/py-unipath/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-unipath/pkg-descr Thu Jul 3 22:01:36 2014 (r360467) @@ -0,0 +1,10 @@ +Unipath is an object-oriented front end to the file/directory functions +scattered throughout several Python library modules. + +It's based on Jason Orendorff's path.py but does not adhere as strictly to the +underlying functions' syntax, in order to provide more user convenience and +higher-level functionality. + +Unipath is stable, well-tested, and has been used in production since 2008. + +WWW: https://github.com/mikeorr/Unipath
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407032201.s63M1aEC010373>