Add py-zopfli 0.1.6

pyzopfli is a straightforward Python wrapper around zopfli's ZlibCompress
method. It also wraps GzipCompress, but the API point does not try to mimic the
gzip module.

WWW: https://github.com/obp/py-zopfli
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-05-09 19:08:48 +00:00
parent 1a737e1bea
commit 0d8b268ea6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=501135
4 changed files with 28 additions and 0 deletions

View File

@ -189,6 +189,7 @@
SUBDIR += py-rjsmin
SUBDIR += py-warctools
SUBDIR += py-xopen
SUBDIR += py-zopfli
SUBDIR += py-zstandard
SUBDIR += py-zstd
SUBDIR += qpress

View File

@ -0,0 +1,19 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= zopfli
PORTVERSION= 0.1.6
CATEGORIES= archivers python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Zopfli module for python
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/COPYING
USES= python zip
USE_PYTHON= autoplist concurrent distutils
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1557427238
SHA256 (zopfli-0.1.6.zip) = ed2293c11c2685bbd70bad0103285279406a77622e06de794d59c2180fecaa6a
SIZE (zopfli-0.1.6.zip) = 75549

View File

@ -0,0 +1,5 @@
pyzopfli is a straightforward Python wrapper around zopfli's ZlibCompress
method. It also wraps GzipCompress, but the API point does not try to mimic the
gzip module.
WWW: https://github.com/obp/py-zopfli