From owner-svn-ports-all@freebsd.org Thu Oct 12 17:30:51 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70F41E2FA9C; Thu, 12 Oct 2017 17:30:51 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B645646; Thu, 12 Oct 2017 17:30:51 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9CHUoXt004486; Thu, 12 Oct 2017 17:30:50 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9CHUopO004481; Thu, 12 Oct 2017 17:30:50 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201710121730.v9CHUopO004481@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 12 Oct 2017 17:30:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451917 - in head/archivers: . py-czipfile X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/archivers: . py-czipfile X-SVN-Commit-Revision: 451917 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Oct 2017 17:30:51 -0000 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 +# $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 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