From owner-svn-ports-all@freebsd.org Wed Nov 18 20:01:38 2015 Return-Path: Delivered-To: svn-ports-all@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 47AB3A32122; Wed, 18 Nov 2015 20:01:38 +0000 (UTC) (envelope-from rm@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 EEFD619A7; Wed, 18 Nov 2015 20:01:37 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAIK1bjK042144; Wed, 18 Nov 2015 20:01:37 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAIK1apv042141; Wed, 18 Nov 2015 20:01:36 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201511182001.tAIK1apv042141@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Wed, 18 Nov 2015 20:01:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401890 - head/devel/py-fs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2015 20:01:38 -0000 Author: rm Date: Wed Nov 18 20:01:36 2015 New Revision: 401890 URL: https://svnweb.freebsd.org/changeset/ports/401890 Log: devel/py-fs: update to 0.5.4 0.5: * Ported to Python 3.X * Added a DeleteRootError to exceptions thrown when trying to delete '/' * Added a remove_all function to utils * Added sqlitefs to fs.contrib, contributed by Nitin Bhide * Added archivefs to fs.contrib, contributed by btimby * Added some polish to fstree command and unicode box lines rather than ascii art PR: 204579 Submitted by: douglas@douglasthrift.net (maintainer) Modified: head/devel/py-fs/Makefile head/devel/py-fs/distinfo head/devel/py-fs/pkg-descr Modified: head/devel/py-fs/Makefile ============================================================================== --- head/devel/py-fs/Makefile Wed Nov 18 19:59:51 2015 (r401889) +++ head/devel/py-fs/Makefile Wed Nov 18 20:01:36 2015 (r401890) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= fs -PORTVERSION= 0.4.0 +PORTVERSION= 0.5.4 CATEGORIES= devel python -MASTER_SITES= GOOGLE_CODE -PROJECTHOST= pyfilesystem +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= douglas@douglasthrift.net @@ -13,7 +12,8 @@ COMMENT= Python filesystem abstraction LICENSE= ISCL +NO_ARCH= yes USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils .include Modified: head/devel/py-fs/distinfo ============================================================================== --- head/devel/py-fs/distinfo Wed Nov 18 19:59:51 2015 (r401889) +++ head/devel/py-fs/distinfo Wed Nov 18 20:01:36 2015 (r401890) @@ -1,2 +1,2 @@ -SHA256 (fs-0.4.0.tar.gz) = 7f8fdb1908e25c662d99cbdcd5ffe7ba5705aedc61266e15910f07d0388d67ba -SIZE (fs-0.4.0.tar.gz) = 191749 +SHA256 (fs-0.5.4.tar.gz) = ba2cca8773435a7c86059d57cb4b8ea30fda40f8610941f7822d1ce3ffd36197 +SIZE (fs-0.5.4.tar.gz) = 231333 Modified: head/devel/py-fs/pkg-descr ============================================================================== --- head/devel/py-fs/pkg-descr Wed Nov 18 19:59:51 2015 (r401889) +++ head/devel/py-fs/pkg-descr Wed Nov 18 20:01:36 2015 (r401890) @@ -7,4 +7,4 @@ to work with local files. Differences in abstracted away, and you can write code that sand-boxes any changes to a given directory. -WWW: http://code.google.com/p/pyfilesystem/ +WWW: http://pyfilesystem.org/