svn commit: r404905 - in head/archivers: . py-bz2file

Martin Wilke miwi at FreeBSD.org
Thu Dec 31 03:28:04 UTC 2015


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 at 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 at rawbw.com>
+# $FreeBSD$
+
+PORTNAME=	bz2file
+PORTVERSION=	0.98
+CATEGORIES=	archivers python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at 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/


More information about the svn-ports-head mailing list