Received: by mail.netbsd.org (Postfix, from userid 605) id 55B6684D84; Sun, 10 Dec 2017 14:49:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D49BE84D70 for ; Sun, 10 Dec 2017 14:49:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id GZ_ZtYGo-APl for ; Sun, 10 Dec 2017 14:49:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 590A984CDC for ; Sun, 10 Dec 2017 14:49:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A8F1EFB40; Sun, 10 Dec 2017 14:48:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1512917330188530" MIME-Version: 1.0 Date: Sun, 10 Dec 2017 14:48:50 +0000 From: "Jason Bacon" Subject: CVS commit: pkgsrc/devel/py-xopen To: pkgsrc-changes@NetBSD.org Reply-To: bacon@netbsd.org X-Mailer: log_accum Message-Id: <20171210144850.A8F1EFB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1512917330188530 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bacon Date: Sun Dec 10 14:48:50 UTC 2017 Added Files: pkgsrc/devel/py-xopen: DESCR Makefile PLIST distinfo Log Message: devel/py-xopen: import py27-xopen-0.3.2 This small Python module provides an 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. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-xopen/DESCR \ pkgsrc/devel/py-xopen/Makefile pkgsrc/devel/py-xopen/PLIST \ pkgsrc/devel/py-xopen/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1512917330188530 Content-Disposition: inline Content-Length: 2244 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/py-xopen/DESCR diff -u /dev/null pkgsrc/devel/py-xopen/DESCR:1.1 --- /dev/null Sun Dec 10 14:48:50 2017 +++ pkgsrc/devel/py-xopen/DESCR Sun Dec 10 14:48:50 2017 @@ -0,0 +1,4 @@ +This small Python module provides an 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. Index: pkgsrc/devel/py-xopen/Makefile diff -u /dev/null pkgsrc/devel/py-xopen/Makefile:1.1 --- /dev/null Sun Dec 10 14:48:50 2017 +++ pkgsrc/devel/py-xopen/Makefile Sun Dec 10 14:48:50 2017 @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1 2017/12/10 14:48:50 bacon Exp $ + +DISTNAME= xopen-0.3.2 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=x/xopen/} + +MAINTAINER= bacon@NetBSD.org +HOMEPAGE= https://pypi.python.org/pypi/xopen +COMMENT= Open compressed files transparently +LICENSE= mit + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-xopen/PLIST diff -u /dev/null pkgsrc/devel/py-xopen/PLIST:1.1 --- /dev/null Sun Dec 10 14:48:50 2017 +++ pkgsrc/devel/py-xopen/PLIST Sun Dec 10 14:48:50 2017 @@ -0,0 +1,9 @@ +@comment $NetBSD: PLIST,v 1.1 2017/12/10 14:48:50 bacon Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/xopen.py +${PYSITELIB}/xopen.pyc +${PYSITELIB}/xopen.pyo Index: pkgsrc/devel/py-xopen/distinfo diff -u /dev/null pkgsrc/devel/py-xopen/distinfo:1.1 --- /dev/null Sun Dec 10 14:48:50 2017 +++ pkgsrc/devel/py-xopen/distinfo Sun Dec 10 14:48:50 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/12/10 14:48:50 bacon Exp $ + +SHA1 (xopen-0.3.2.tar.gz) = d9fad7acc894acc73fe4c9c4f4999a9adde92921 +RMD160 (xopen-0.3.2.tar.gz) = 770ec07acbf3e6349af1a024febcc0007ec6af13 +SHA512 (xopen-0.3.2.tar.gz) = 06e3e8ac9e3b96d393649bef91ab8ea9c01d03b4ad0d4e59760262d6fd5ea5a751267841de8a5f51ab0317f0d5426a0d99704201a14fd5834f6e26b6e0059bcf +Size (xopen-0.3.2.tar.gz) = 4666 bytes --_----------=_1512917330188530--