From owner-svn-ports-head@FreeBSD.ORG Thu Jul 3 22:01:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C72384E; Thu, 3 Jul 2014 22:01:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 77A96298C; Thu, 3 Jul 2014 22:01:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s63M1bqD010379; Thu, 3 Jul 2014 22:01:37 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s63M1aEC010373; Thu, 3 Jul 2014 22:01:36 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201407032201.s63M1aEC010373@svn.freebsd.org> From: William Grzybowski Date: Thu, 3 Jul 2014 22:01:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r360467 - in head/devel: . py-unipath 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.18 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, 03 Jul 2014 22:01:37 -0000 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 +# $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 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