From owner-svn-ports-all@freebsd.org Thu Oct 27 21:18:52 2016 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 75AF1C244EC; Thu, 27 Oct 2016 21:18:52 +0000 (UTC) (envelope-from jbeich@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 38EA42B5; Thu, 27 Oct 2016 21:18:52 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9RLIpAm075289; Thu, 27 Oct 2016 21:18:51 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9RLIpxv075284; Thu, 27 Oct 2016 21:18:51 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201610272118.u9RLIpxv075284@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 27 Oct 2016 21:18:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424793 - in head/devel: . py-fusefs py-fusepy 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.23 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: Thu, 27 Oct 2016 21:18:52 -0000 Author: jbeich Date: Thu Oct 27 21:18:50 2016 New Revision: 424793 URL: https://svnweb.freebsd.org/changeset/ports/424793 Log: devel/py-fusepy: add new port Based on: ports-mgmt/py-pytoport output fusepy is a Python module that provides a simple interface to FUSE and MacFUSE. It's just one file and is implemented using ctypes. https://pypi.python.org/pypi/fusepy Added: head/devel/py-fusepy/ head/devel/py-fusepy/Makefile (contents, props changed) head/devel/py-fusepy/distinfo (contents, props changed) head/devel/py-fusepy/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) head/devel/py-fusefs/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 27 21:18:32 2016 (r424792) +++ head/devel/Makefile Thu Oct 27 21:18:50 2016 (r424793) @@ -4158,6 +4158,7 @@ SUBDIR += py-funcsigs SUBDIR += py-functools32 SUBDIR += py-fusefs + SUBDIR += py-fusepy SUBDIR += py-future SUBDIR += py-futures SUBDIR += py-futurist Modified: head/devel/py-fusefs/Makefile ============================================================================== --- head/devel/py-fusefs/Makefile Thu Oct 27 21:18:32 2016 (r424792) +++ head/devel/py-fusefs/Makefile Thu Oct 27 21:18:50 2016 (r424793) @@ -15,6 +15,8 @@ COMMENT= FUSE Python bindings LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}fusepy # fuse.py + OPTIONS_DEFINE= DOCS EXAMPLES USES= fuse pkgconfig python iconv Added: head/devel/py-fusepy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fusepy/Makefile Thu Oct 27 21:18:50 2016 (r424793) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= fusepy +PORTVERSION= 2.0.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Simple ctypes bindings for FUSE + +LICENSE= ISCL + +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}fusefs # fuse.py + +NO_ARCH= yes +USES= fuse python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-fusepy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fusepy/distinfo Thu Oct 27 21:18:50 2016 (r424793) @@ -0,0 +1,3 @@ +TIMESTAMP = 1477478547 +SHA256 (fusepy-2.0.4.tar.gz) = 10f5c7f5414241bffecdc333c4d3a725f1d6605cae6b4eaf86a838ff49cdaf6c +SIZE (fusepy-2.0.4.tar.gz) = 9224 Added: head/devel/py-fusepy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fusepy/pkg-descr Thu Oct 27 21:18:50 2016 (r424793) @@ -0,0 +1,4 @@ +fusepy is a Python module that provides a simple interface to FUSE and +MacFUSE. It's just one file and is implemented using ctypes. + +WWW: https://pypi.python.org/pypi/fusepy