svn commit: r455116 - in head/archivers: . py-xopen

Jason W. Bacon jwb at FreeBSD.org
Wed Nov 29 16:00:41 UTC 2017


Author: jwb
Date: Wed Nov 29 16:00:39 2017
New Revision: 455116
URL: https://svnweb.freebsd.org/changeset/ports/455116

Log:
  [new port] archivers/py-xopen: Open compressed files transparently
  
  Approved by:    jrm (mentor)
  Differential Revision:  https://reviews.freebsd.org/D13292

Added:
  head/archivers/py-xopen/
  head/archivers/py-xopen/Makefile   (contents, props changed)
  head/archivers/py-xopen/distinfo   (contents, props changed)
  head/archivers/py-xopen/pkg-descr   (contents, props changed)
Modified:
  head/archivers/Makefile

Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile	Wed Nov 29 15:24:33 2017	(r455115)
+++ head/archivers/Makefile	Wed Nov 29 16:00:39 2017	(r455116)
@@ -188,6 +188,7 @@
     SUBDIR += py-rcssmin
     SUBDIR += py-rjsmin
     SUBDIR += py-warctools
+    SUBDIR += py-xopen
     SUBDIR += py3-libarchive-c
     SUBDIR += qpress
     SUBDIR += quazip

Added: head/archivers/py-xopen/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-xopen/Makefile	Wed Nov 29 16:00:39 2017	(r455116)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	xopen
+PORTVERSION=	0.2.1
+CATEGORIES=	archivers python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	jwb at FreeBSD.org
+COMMENT=	Open compressed files transparently
+
+LICENSE=	MIT
+
+NO_ARCH=	yes
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/archivers/py-xopen/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-xopen/distinfo	Wed Nov 29 16:00:39 2017	(r455116)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1509552397
+SHA256 (xopen-0.2.1.tar.gz) = 9b054f8c1c906ca416412e8b7430bac4e683a2c5ce1a59e7e62d667418165dfe
+SIZE (xopen-0.2.1.tar.gz) = 4353

Added: head/archivers/py-xopen/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-xopen/pkg-descr	Wed Nov 29 16:00:39 2017	(r455116)
@@ -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


More information about the svn-ports-all mailing list