Index: head/archivers/Makefile =================================================================== --- head/archivers/Makefile +++ head/archivers/Makefile @@ -188,6 +188,7 @@ SUBDIR += py-rcssmin SUBDIR += py-rjsmin SUBDIR += py-warctools + SUBDIR += py-xopen SUBDIR += py3-libarchive-c SUBDIR += qpress SUBDIR += quazip Index: head/archivers/py-xopen/Makefile =================================================================== --- head/archivers/py-xopen/Makefile +++ head/archivers/py-xopen/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= xopen +PORTVERSION= 0.2.1 +CATEGORIES= archivers python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jwb@FreeBSD.org +COMMENT= Open compressed files transparently + +LICENSE= MIT + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include Index: head/archivers/py-xopen/distinfo =================================================================== --- head/archivers/py-xopen/distinfo +++ head/archivers/py-xopen/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1509552397 +SHA256 (xopen-0.2.1.tar.gz) = 9b054f8c1c906ca416412e8b7430bac4e683a2c5ce1a59e7e62d667418165dfe +SIZE (xopen-0.2.1.tar.gz) = 4353 Index: head/archivers/py-xopen/pkg-descr =================================================================== --- head/archivers/py-xopen/pkg-descr +++ head/archivers/py-xopen/pkg-descr @@ -0,0 +1,6 @@ +This small Python module provides a xopen function that works like the built-in +open function, but can also deal with compressed files. Supported compression +formats are gzip, bzip2 and xz. They are automatically recognized by their file +extensions .gz, .bz2 or .xz. + +WWW: https://pypi.python.org/pypi/xopen