Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 May 2019 19:08:48 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r501135 - in head/archivers: . py-zopfli
Message-ID:  <201905091908.x49J8mka003981@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Thu May  9 19:08:48 2019
New Revision: 501135
URL: https://svnweb.freebsd.org/changeset/ports/501135

Log:
  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

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

Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile	Thu May  9 19:05:33 2019	(r501134)
+++ head/archivers/Makefile	Thu May  9 19:08:48 2019	(r501135)
@@ -189,6 +189,7 @@
     SUBDIR += py-rjsmin
     SUBDIR += py-warctools
     SUBDIR += py-xopen
+    SUBDIR += py-zopfli
     SUBDIR += py-zstandard
     SUBDIR += py-zstd
     SUBDIR += qpress

Added: head/archivers/py-zopfli/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-zopfli/Makefile	Thu May  9 19:08:48 2019	(r501135)
@@ -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>

Added: head/archivers/py-zopfli/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-zopfli/distinfo	Thu May  9 19:08:48 2019	(r501135)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1557427238
+SHA256 (zopfli-0.1.6.zip) = ed2293c11c2685bbd70bad0103285279406a77622e06de794d59c2180fecaa6a
+SIZE (zopfli-0.1.6.zip) = 75549

Added: head/archivers/py-zopfli/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/py-zopfli/pkg-descr	Thu May  9 19:08:48 2019	(r501135)
@@ -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



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