Date: Thu, 31 Dec 2015 03:28:02 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404905 - in head/archivers: . py-bz2file Message-ID: <201512310328.tBV3S2FO031630@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Thu Dec 31 03:28:02 2015 New Revision: 404905 URL: https://svnweb.freebsd.org/changeset/ports/404905 Log: Bz2file is a Python library for reading and writing bzip2-compressed files. It contains a drop-in replacement for the file interface in the standard library's bz2 module, including features from the latest development version of CPython that are not available in older releases. WWW: https://github.com/nvawda/bz2file/ PR: 205641 Submitted by: Yuri Victorovich <yuri@rawbw.com> Added: head/archivers/py-bz2file/ head/archivers/py-bz2file/Makefile (contents, props changed) head/archivers/py-bz2file/distinfo (contents, props changed) head/archivers/py-bz2file/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Thu Dec 31 03:24:11 2015 (r404904) +++ head/archivers/Makefile Thu Dec 31 03:28:02 2015 (r404905) @@ -163,6 +163,7 @@ SUBDIR += ppunpack SUBDIR += pxz SUBDIR += py-attic + SUBDIR += py-bz2file SUBDIR += py-librtfcomp SUBDIR += py-lz4 SUBDIR += py-lzma Added: head/archivers/py-bz2file/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-bz2file/Makefile Thu Dec 31 03:28:02 2015 (r404905) @@ -0,0 +1,19 @@ +# Created by: Yuri Victorovich <yuri@rawbw.com> +# $FreeBSD$ + +PORTNAME= bz2file +PORTVERSION= 0.98 +CATEGORIES= archivers python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Read and write bzip2-compressed files + +LICENSE= APACHE20 + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/archivers/py-bz2file/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-bz2file/distinfo Thu Dec 31 03:28:02 2015 (r404905) @@ -0,0 +1,2 @@ +SHA256 (bz2file-0.98.tar.gz) = 64c1f811e31556ba9931953c8ec7b397488726c63e09a4c67004f43bdd28da88 +SIZE (bz2file-0.98.tar.gz) = 11333 Added: head/archivers/py-bz2file/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-bz2file/pkg-descr Thu Dec 31 03:28:02 2015 (r404905) @@ -0,0 +1,7 @@ +Bz2file is a Python library for reading and writing bzip2-compressed files. + +It contains a drop-in replacement for the file interface in the standard +library's bz2 module, including features from the latest development version +of CPython that are not available in older releases. + +WWW: https://github.com/nvawda/bz2file/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512310328.tBV3S2FO031630>