Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Oct 2017 17:30:50 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r451917 - in head/archivers: . py-czipfile
Message-ID:  <201710121730.v9CHUopO004481@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Thu Oct 12 17:30:49 2017
New Revision: 451917
URL: https://svnweb.freebsd.org/changeset/ports/451917

Log:
  czipfile is a replacement for Python's builtin "zipfile" module, and
  provides much faster, C-based zipfile decryption. The code is actually
  95% identical to Python 2.6.5's Lib/zipfile.py, with some very minor
  modifications to allow it to compile in Cython, and the _ZipDecrypter
  class adapted to take advantage of native C datatypes.
  
  WWW: http://pypi.python.org/pypi/czipfile

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

Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile	Thu Oct 12 17:16:30 2017	(r451916)
+++ head/archivers/Makefile	Thu Oct 12 17:30:49 2017	(r451917)
@@ -171,6 +171,7 @@
     SUBDIR += py-borgbackup
     SUBDIR += py-brotli
     SUBDIR += py-bz2file
+    SUBDIR += py-czipfile
     SUBDIR += py-libarchive-c
     SUBDIR += py-librtfcomp
     SUBDIR += py-lz4

Added: head/archivers/py-czipfile/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-czipfile/Makefile	Thu Oct 12 17:30:49 2017	(r451917)
@@ -0,0 +1,18 @@
+# Created by: Mark Felder <feld@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	czipfile
+PORTVERSION=	1.0.0
+CATEGORIES=	archivers python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	feld@FreeBSD.org
+COMMENT=	Fast C-based zipfile decryption for Python
+
+LICENSE=	PSFL
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/archivers/py-czipfile/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-czipfile/distinfo	Thu Oct 12 17:30:49 2017	(r451917)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1507829056
+SHA256 (czipfile-1.0.0.tar.gz) = 1b6f94fabab92eb8e0ca1c7e3fa52c0f20895c05101ca954dd43d60cff84bb0a
+SIZE (czipfile-1.0.0.tar.gz) = 144418

Added: head/archivers/py-czipfile/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-czipfile/pkg-descr	Thu Oct 12 17:30:49 2017	(r451917)
@@ -0,0 +1,7 @@
+czipfile is a replacement for Python's builtin "zipfile" module, and
+provides much faster, C-based zipfile decryption. The code is actually
+95% identical to Python 2.6.5's Lib/zipfile.py, with some very minor
+modifications to allow it to compile in Cython, and the _ZipDecrypter
+class adapted to take advantage of native C datatypes.
+
+WWW: http://pypi.python.org/pypi/czipfile



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710121730.v9CHUopO004481>