Date: Thu, 27 Oct 2016 21:18:50 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> 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 Message-ID: <201610272118.u9RLIpxv075284@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610272118.u9RLIpxv075284>